.powered_by {
	font-size: 0.7em;
	font-weight: bold;
	font-style: italic;
	text-align: right;
}

BODY {
	background-color: #FBF1C5;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

A {
	text-decoration: none;
	color: #5280CE;
}
A:hover {
	text-decoration: underline;
}

/*B {
	font-weight: normal;
}*/

TABLE.container {
	background-color: #808080;
	border-spacing: 1px;
	border-collapse: separate;
}

TABLE.aligntop TR {
	vertical-align: top;
}

.container TD {
	padding: 2px;
}

.row_header {
	background-color: #FFC67B;
}

.row_title {
	background-color: #FFC67B;
	font-weight: bold;
	text-align: center;
}

.row_footer {
	background-color: #FFC67B;
}

.col_submit {
	background-color: #FFC67B;
	text-align: center;
}

.bouton {
    text-align: center;
}

.row {
	background-color: #FFFFFF;
}

.row_pcpal {
	background-color: #FFFFFF;
	font-weight: bold;
}

.row_on {
	background-color: #D9D9D9;
}
.sortable .row_highlight,.sortable .row_on:hover,.sortable .row_off:hover {
	background-color: #EEEEEE;
}
.row_off {
	background-color: #FEDF8B;
}

.row_xsmall {
	background-color: #FFFFFF;
	font-size: 0.8em;
}

.row_sep {
	font-size: 0.7em;
	background-color: #FBF1C5;
}

.small {
	font-size: 0.9em;
}
.xsmall {
	font-size: 0.8em;
}
.xxsmall {
	font-size: 0.7em;
}

.alert {
	color: #FF0000;
}

.transp {
	background-color: transparent;
}

.msg {
	text-align: center;
	font-weight: bold;
	color: green;
}

.warn {
	text-align: center;
	font-weight: bold;
	color: orange;
}

.error {
   text-align: center;
   font-weight: bold;
	color: red;
}

.result_title {
	text-align: center;
	font-weight: bold;
}

.result_action {
	text-align: center;
}

.res_success {
	text-align: center;
	background-color: #66FF00;
}

.res_failure {
	text-align: center;
	background-color: #FF9900;
}

.hide {
	display: none;
}


.nowrap {
	white-space: nowrap;
}

@media print {
	.noprint {
		display: none;
	}
}

/** CSS Tooltip **/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #D9D9D9;
    color: #000000;
    text-align: center;
    padding: 3px 4px;
    border-radius: 5px;
    
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    top: 110%;
    left: 25%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}
/* Arrow */
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 30px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #D9D9D9 transparent;
}