/* @CopixTable styles pour tableaux */
/**************************************************/
.CopixTable,
.CopixVerticalTable {
	border: 1px solid #054248;
	border-collapse: collapse;
	margin-left: 0;
	width: 100%;
	background: #fff;
}
.CopixTable td {
	border-right: 1px solid #054248;
}
.CopixTable tr th,
.CopixTable thead th,
.CopixTable thead th tr,
.CopixVerticalTable tr th,
.CopixVerticalTable thead th,
.CopixVerticalTable thead tr th {
	background-color: #054248;
	color: #fff;
	text-align: left;
	border-right: 1px solid;
}
/* On retire la bordure droite pour le dernier element. Pour que ca marche sur IE6, il faut rajouter la classe '.last' */
.CopixTable th:last-child {
	border-right-width: 0;
}
.CopixTable th.last {
	border-right-width: 0;
}

.alternate {
	background-color: #f6f9f9;
}

.CopixTable tr:hover,
.CopixVerticalTable tr:hover {
	background-color: #9c3;
}

.CopixTable td,
.CopixVerticalTable td {
	height:25px;
}

.CopixTable th a,
.CopixTable th a:link,
.CopixTable th a:visited,
.CopixTable thead th a,
.CopixTable thead th a:link,
.CopixTable thead th a:visited,
.CopixTable tbody th a:link,
.CopixTable tbody th a:visited,
.CopixVerticalTable th a,
.CopixVerticalTable th a:link,
.CopixVerticalTable th a:visited,
.CopixVerticalTable thead th a,
.CopixVerticalTable thead th a:link,
.CopixVerticalTable thead th a:visited,
.CopixVerticalTable tbody th a,
.CopixVerticalTable tbody th a:link,
.CopixVerticalTable tbody th a:visited {
	color: #fff;
}


/*****************COPIX WINDOW*************/
/*
 @copixwindow fenetres pseudo modales javascript
Structure HTML :
<div class="copixwindow unfocus"> <!-- unfocus est ajoute quand plusieurs fenetres sont visibles simultanement -->
	<div class="copixwindow_title"></div>
	<div class="copixwindow_content"></div>
</div>
*/
/**************************************************/
.copixwindow {
	background-color: #fff;
	border-color: #CCC #CFCFCF #CFCFCF #CCC;
	border-style: solid;
	border-width: 1px;
	position: absolute;
	text-align: left;
	padding-bottom: 5px;	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}
.copixwindow_title {
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;	
	height: auto;
	padding: 3px 5px 0 5px;
	border-bottom: 1px solid #CCC;
	color: #FFF;
	font-weight: bold;
	cursor: move;
	background:#005F5F;
}
.copixwindow_content {
	background-color: #fff;
	padding: 3px;
	min-width: 400px;
	overflow: auto;
}
.copixwindow_content table {
	width: auto;
}

.copixwindow.unfocus {
	opacity:0.65;
}

.unfocus {
	border-color: #bebebe #eeede5 #eeede5 #bebebe;
}
.unfocus table.adherent thead th {
	background: #cf844d;
}

/* Tag popupInformation : infobulles d'information */
.popupInformation {
	padding: 10px;
	cursor: help;
	color: #000;
	border: 1px solid #ccc;
	background: #f5fbe0;
	position: absolute;
	-webkit-box-shadow: 2px 2px 8px #666;
	-moz-box-shadow: 2px 2px 8px #666;
	box-shadow: 2px 2px 8px #666;
}