#alerteNavConnexion{
	position		 : absolute;
	width			 : 98%;
	left			 : 1%;
	top				 : 170px;
	height			 : 300px;
	z-index			 : 1000;
	background-color : white;
}

#alerteNavConnexionMsg{
	width  : 200px;
	height : 280px;
	border : 2px solid black;
	color  : black;
}

#alerteNavConnexionMsg .entete{
	padding			 : 3px;
	border-bottom	 : 2px solid black;
	background-color : orange;
	font-weight		 : bold;
}

#alerteNavConnexionMsg .info{
	width : 380px;
	margin-left : 10px;
	font-weight	: bold;
	padding-top : 5px;
	text-align		: left !important;
}

#alerteNavConnexionMsg img{
	margin-left : 20px;
}

#alerteNavConnexionContinuer{
	margin-top : 50px;
	align : center;
}

#alerteNav{
	border			 : 3px solid black;
	text-align		 : center;
	margin			 : 10px;
	padding			 : 10px;
	background-image : url('../../image/alerte-bg-small.jpg');
	color			 : yellow;
	font-weight		 : bold;
	font-size		 : 10pt;
}

.test{
	border  : 1px solid red;
	padding : 1px 1px 1px 1px;
}

.dAvertissement{
	border  : 1px solid #FF6D00;
	padding : 1px;
    font-weight : bold;
    color : #FF6D00;
    text-align : center;
}


.hidden {
    display : none;
}

.invisible {
    visibility :hidden;
}


div#conteneur {
	background-color: white;
	position: relative;
	width: 955px;
	margin: auto;
	border-left-width : 1px;
    border-left-style : solid;
	border-right-width : 1px;
    border-right-style : solid;
	border-left-color  : #5876BF;
	border-right-color : #5876BF;
}

body {
	background-color: #EBEFF9;
    color : #5876BF;
}

/*-------------------------------------------------
                    ENTETE
-------------------------------------------------*/

div#header {
    position : relative;
    width : 100%;
    height : 150px;
    background-repeat : no-repeat;
    background-position : top right;
    margin-bottom : 6px;
    /*z-index : 2;*/
    z-index : 1;
}

div.msg {
    position : relative;
    top : 94px;
    width : 100%;
    margin : 0;
    padding : 3px 0 3px 0;
    background-color : #EBEBE8;
    border-top-width : 1px;
    border-bottom-width : 1px;
    border-top-style : solid;
    border-bottom-style : solid;
    background-repeat: repeat-x;
    background-image: url('image/fontMenuGray20px.jpg');
    border-top-color : #6593BA;
    border-bottom-color : #6593BA;
}


div#msg span{
    color : #5876BF;
}

div.ticker{
	visibility: hidden;
  	display : none;
	overflow:hidden;
	width:100%;
}

div.scrollVisible{
	 visibility: visible;
	 display : block;
}

div#msg span.up{
    background-image: url('image/comUp.gif');
}

div#msg span.down{
    background-image: url('image/comDown.gif');
}

div#msg span.upDown{
    position : absolute;
    top   : 0px;
    right : 0px;
    width : 15px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-left : 1px solid;
    cursor: pointer;
    border-left-color : #6593BA;
}

#visuelEntete {
    position : absolute;
    top : 18px;
    right : 236px;
    width : 64px;
    height : 64px;
    background-repeat: no-repeat;
}

/*#infoSession{
	position : absolute;
	top : 35px;
    right : 5px;
    width : 22px;
    height : 22px;
	cursor : help;
}*/

img#logoCFA {
    position : absolute;
    top : 5px;
    left : 5px;
    width: 100px;
    height: 85px;
}

h1#libelleCentre {
    position : absolute;
    margin : 0;
    padding : 0;
    top : 10px;
    left : 125px;
    font-family : "Bookman Old Style";
    font-size : 20px;
}


h1#libelleCentre, h1#title, .colorTxt {
    color : #004B8C;
}

h1#title {
    position : absolute;
    margin : 0;
    padding : 0;
    top : 50px;
    left : 150px;
    font-family : "Bookman Old Style";
    font-size : 15px;
    font-style: italic;
}

span#welcome {
    position : absolute;
    margin : 0;
    padding : 0;
    top : 80px;
    left : 125px;
    font-family : "Arial";
    font-size : 8pt;
	font-weight:bold;
}

img#bouttonDeconnecter{
    position : absolute;
    top : 84px;
    right : 50px;
    border: none;
}

#session{
	margin-top:28px;
	margin-left:720px;
	font-size:120%;
	font-weight:bold;
}


/*-------------------------------------------------
              LAYOUT 3 COLONNES
-------------------------------------------------*/
#content {
    position : relative;
    width : 100%;
    /*z-index : 1;*/
    z-index : 0;
}

#leftContent {
	/*
    position: absolute;
    left:0px;
    top: 0px;
    width:135px;
    */

    display : none; /* nouveau menu */
}

#centerContent {
    position : relative;
	/*margin-left: 147px;*/
	margin-left : 5px; /* nouveau menu */
    padding-right : 5px;

    /*
    IE5x PC mis-implements the box model. Because of that we sometimes have
    to perform a little CSS trickery to get pixel-perfect display across browsers.
    The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
    parsing bug in IE5x PC that will prematurly close a style rule when it runs
    into the string "\"}\"". After that string appears in a rule, then, we can override
    previously set attribute values and only browsers without the parse bug will
    recognize the new values. So any of the name-value pairs above this comment
    that we need to override for browsers with correct box-model implementations
    will be listed below.

    We use the voice-family property because it is likely to be used very infrequently,
    and where it is used it will be set on the body tag. So the second voice-family value
    of "inherit" will override our bogus "\"}\"" value and allow the proper value to
    cascade down from the body tag.

    The style rule immediately following this rule offers another chance for CSS2
    aware browsers to pick up the values meant for correct box-model implementations.
    It uses a CSS2 selector that will be ignored by IE5x PC.

    Read more at http://www.glish.com/css/hacks.asp
    */

    voice-family: "\"}\"";
    voice-family: inherit;
    /*margin-left: 149px;*/

	/*
		Gestion du min-height pour IE
		http://blog.alsacreations.com/2004/08/17/54-min-height-sur-internet-explorer

		On définit un height fixe, IE va l'interpréter comme un min-height
		Ensuite, on redéfinit le comportement normal à l'aide de l'instruction
		body>html (qui n'est pas reconnue pas IE)
	*/

	/*height : 250px;*/
}

/*body>html #centerContent{
	height : auto;
	min-height : 250px;
}*/

.centerContentTroisMenus {
	margin-left  : 162px !important;
	margin-right : 146px;
    voice-family : "\"}\"";
    voice-family : inherit;
	margin-right : 148px;
}

html>body #centerContentTroisMenus {
	margin-right : 148px;
}

#rightContent {
    position: absolute;
    right:0px;
    top:0px;
    width:135px;
}



/*-------------------------------------------------
       	MENUS COLONNES GAUCHE & DROITE
-------------------------------------------------*/
ul.nav {
    margin : 0;
    padding : 0;
    width : 100%;
    margin-bottom : 6px;
}

ul.nav li {
    margin : 0;
    padding : 0;
    list-style-type : none;
    border-bottom-width : 1px;
    border-bottom-style : solid;
    border-bottom-color : #5876BF;
    background-color: #DCE4F9;
}

#leftContent ul.nav li {
    border-right-width : 1px;
    border-right-style : solid;
    border-right-color : #C3CEEC;
}

#rightContent ul.nav li {
    border-left-width : 1px;
    border-left-style : solid;
    border-left-color : #C3CEEC;
}

ul.nav a {
	color: #5876BF;
	background-image: url('image/comPuceNav.gif');

	width: 117px;

	text-decoration: none;
	display: block;
	padding: 3px 0 3px 17px;
	background-repeat: no-repeat;
	background-position: left center;
}


ul.nav li.titre {
	background-color : #5876BF;
    color : #FFFFFF;
    font-family : Verdana;
    font-weight : bold;
}

ul.nav li.selected {
    color : #FFFFFF;
    font-family : Verdana;
    font-weight : bold;
}

ul.nav a:hover{
    background-color: #efefef;
}

#leftContent ul.nav li.titre {
   background-image    : url("image/comMenuButtonLeft.jpg");
   background-repeat   : no-repeat;
   padding             : 5px 0 4px 6px;
   border-right        : none;
}

#rightContent ul.nav li.titre {
    background-image    : url("image/comMenuButtonRight.jpg");
    background-repeat: no-repeat;
    padding             : 5px 0px 4px 19px;
    border-left         : none;
}




/*-------------------------------------------------
                     FOOTER
-------------------------------------------------*/
div#footer {
    background-image : url("image/comBkgrndFooter.gif");
	position : relative;
    background-repeat : no-repeat;
    width : 100%;
    height : 35px;
    text-align : center;
    line-height : 34px;
	clear : both;
}









/*-------------------------------------------------------
                     TABLEAU
-------------------------------------------------------*/

/*-------------------- TABLEAU CLASSIC ------------------*/
.classicTable{
	border-top-color      : #DEEBFF;
	border-bottom-color   : #DEEBFF;
	color                 : #3868A0;
	width           : 100%;
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
    border-collapse : collapse;
	font-family     : Helvetica, Arial, sans-serif;
	font-size       : 10px;
	empty-cells     : show;

}

table.classicTable th, .classicTitle{
	background-color : white;
	border-bottom : 1px solid #DEEBFF;
    background-image : url("image/fond_btn_grey.png");
	background-position : left bottom;
    color : #5876BF;
}


table.classicTable th{
    height			 : 20px;
	font-weight      : bold;
	font-size        : 12px;
	border-bottom-width : 1px;
	border-bottom-style : solid;
    background-repeat: repeat-x;
}

table.classicTable th a{
    background-color : transparent;
}

table.classicTable th.colLegende{
    width: 20px;
}

table.classicTable td{
	border-right-color : #E6E6E6;
    border-bottom-color: #E6E6E6;
	border-right-width : 1px;
	border-right-style : solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

table.classicTable img{
	vertical-align: middle;
}
table.classicTable .center {
    text-align: center;
}

.classicTitle{
    font-weight: bold;
    text-align : center;
    height : 20px;
    padding-top : 2px;
}





/*-------------------- TABLEAU INFO ------------------*/
table.ficheInfo{
    border-color : #DEEBFF;
    width           : 100%;
    margin-top      : 5px;
    border-width    : 1px;
    border-style    : solid;
    empty-cells     : show;
}

table.ficheInfo td{
    border: none;
}

table.ficheInfo td.valeur{
	color: #5876BF;
	font-weight: bolder;
}






/*-------------------- TABLEAU CONTRAINTE ------------------*/
#contrainte{
    width: 100%;
	border-collapse : collapse;
    empty-cells: show;
}

#contrainte th{
    background-image    : url("image/comFontMenuF40px.jpg");
	border-bottom-color : #C1CDE7;
	border-right-color  : #C1CDE7;
    color : #5876BF;
    height: 20px;
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-right-width : 1px;
	border-right-style : solid;
    font-weight      : bold;
    background-repeat: repeat-x;
}

#contrainte td{
 	border-bottom-color : #C1CDE7;
	border-right-color: #C1CDE7;
    font-size : 10px;
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-right-width: 1px;
    border-right-style: solid;
}

/*-------------------- TABLEAU AVEC EMPHASE ------------------*/
.emphasisTable{
    border-collapse : collapse;
    font-size : 12px;
    width : 100%;

    background-color : #FFF;
    border-top : 1px solid #DDD;

    text-shadow : 0 1px 0 rgba(255, 255, 255, 0.4);
}

.emphasisTable th, .emphasisTable td{
    padding : 5px;
    vertical-align : baseline;
}

/* IE7 ne permet pas de styler les bordures des colgroup */
.emphasisTable .emphasisCol, .emphasisTable .colGroup{
    border-left : 1px solid #BBB;
    border-right : 1px solid #BBB;
}

/* colonne d'emphase */
.emphasisTable .emphasisCol{
    background-color : #E8EAF1;
}

/* entête du tableau */
.emphasisTable thead{
    background-image : -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.075));
    background-image : -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.075));
    background-image : -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.075));
    background-image : -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.075));
    background-image : linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.075));

    background-position : left bottom;
    background-repeat : repeat-x;

    color : #555;
}

.emphasisTable th{
    font-weight : bold; /* Si on remonte cette définition dans .emphasisTable thead, sur IE9(sous vista) ça devient plus gras que gras :( */
}

/* classe de sous titre, à mettre sur le th ou le tr */
.emphasisTable .subtitle th, .emphasisTable .subtitle{
    font-weight : normal;
}

/* classe pour les colonnes en surbrillance : à mettre sur chaque td */
.emphasisTable .hlCol{
    background-color : #FFFFD2;
}

.emphasisTable td{
    border-top : 1px solid #DDD;
    border-bottom : 1px solid #DDD;
}

/* hover avec les dégradés */
.cssgradients .emphasisTable tbody tr:hover td{
    background-image : -moz-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.075));
    background-image : -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.075));
    background-image : -o-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.075));
    background-image : -ms-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.075));
    background-image : linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.075));
}

/* hover sans les dégradés */
.no-cssgradients .emphasisTable tbody tr:hover td{
    background-color : #F4F4F4;
}



/*-------------------------------------------------
                     DIVERS
-------------------------------------------------*/
input, select, textarea, label.radio, button {
    background-color : #FFFFFF;
  	color : #5876BF;
}

.cssgradients input.button, .cssgradients button.button{
    background-image : -moz-linear-gradient(top, #FFFFFF, #ECEDE8);
    background-image : -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#ECEDE8));
    background-image : -webkit-linear-gradient(top, #FFFFFF, #ECEDE8);
    background-image : -o-linear-gradient(top, #FFFFFF, #ECEDE8);
    background-image : -ms-linear-gradient(top, #FFFFFF, #ECEDE8);
    background-image : linear-gradient(top, #FFFFFF, #ECEDE8);
}

.no-cssgradients input.button, .no-cssgradients button.button{
    background-image : url('../../css/commun/image/fond_btn_grey.png');
}

input.button, button.button{
	margin : 5px 0 5px 0;
	padding : 1px 5px 2px 5px;

    background-repeat : repeat-x;
    background-position : left bottom ;

	height : 22px;

	font-weight : bold;
	font-size : 11px;
	text-align : center;
	cursor : pointer;

    border : 1px solid #5876BF;
    -moz-border-radius : 5px;
    -webkit-border-radius : 5px;
    border-radius : 5px;

    -moz-box-shadow : 0 0 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow : 0 0 3px rgba(0, 0, 0, 0.4);
    box-shadow : 0 0 3px rgba(0, 0, 0, 0.4);
}

.button[disabled]{
    color : #BDBDBD;
}

.button:hover{
    -moz-box-shadow : 0 0 5px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow : 0 0 5px rgba(0, 0, 0, 0.7);
    box-shadow : 0 0 5px rgba(0, 0, 0, 0.7);
}

.buttonL{
    display : block;
	margin-right: auto;
}

.buttonR{
    display : block;
    margin-left: auto;
}

.buttonC{
    display : block;
    margin: auto;
}

label.radio {
    cursor: pointer;
}

input, select, textarea {
    border-color : #7F9DB9;
    border-width : 1px;
    border-style : solid;
}

input[type=radio], input[type=checkbox]{
  	color 	   : #5876BF;
    border     : none;
    cursor     : pointer;
	background : transparent;
}

input.disable{
	cursor     : default;
}


select .optionPlusUtilise{
    font-style : italic;
    background-color : #D9D9D9;
}

/* Spécif Mozilla pour griser le contenu des cellules inactives */
input[disabled], select[disabled], textarea[disabled] {
    color : #808080;
    background-color : #efefef;
}

input:focus, textarea:focus, select:focus {
	background : #DEEBFF;
    color : #5876BF;
}


.constrText{
    background-color : #5876BF;
    color : #FFFFFF;

    padding-top 	: 5px;
    padding-bottom 	: 5px;
    font-family 	: Verdana;
    font-weight 	: bold;
    font-size 		: 18px;

    display 		: block;
    width 			: 100%;
    border			: 1px solid black;
    text-align		: center;
}

.constrImg{
    margin:auto;
    margin-top: 25px;
    display : block;
    width : 100%;
    height: 160px;
    width: 340px;
}


.font1{
    background-color : #e8eef7;
    border-color : #5876BF;
    position : relative;
    padding: 5px;
    border-width : 1px;
    border-style : solid;
}


.imgTopLeft{
    position: absolute;
    left:40px;
    top: 20px;
    height:64px;
    width:64px;
}


#msgPatience {
    color:#5876BF;
    position : relative;
    display : none;
    text-align : center;
    font-weight : bold;
    font-size: 14px;
    width : 100%;
    margin : 0;
    padding : 0;
    padding-top : 20px;
    height: 200px;
}

#progressBarPatience{
    position : relative;
    width : 305px;
    margin : auto;
    height : 20px;
    padding-top : 5px;
}

#progressBarPatienceGif{
	/*PY : remplacement de la barre gèrée en javascript par un gif animé*/
/*	border : 1px solid black;*/
    position : relative;
    margin : auto;
	text-align        : center;
	width             : 40px;
	height			  : 40px;
	background-repeat : no-repeat;
	background-image  : url('../../image/progress_roller.gif');

}

.infoTrtTermine{
    position : relative;
    padding-left  : 5px;
    padding-right : 5px;

    color : white;
    font-weight: bold;
    background-color : #cc4444;

    float : right;

	z-index : 2;
}


hr{
    background-color : #3868A0;
}

.styleLien{
	text-decoration : underline;
	cursor : pointer;
	color : #3868A0;
}



/*-------------------------------------------------------
              GESTION DU TPL ERREUR
-------------------------------------------------------*/

#errorContent{
    padding-top: 20px;
    margin-right: 10px;
}


#errorMsg{
    background-color : #5876BF;
    color : #FFFFFF;
    border-color: black;

    display : block;
    width : 100%;

    font-family : Verdana;
    font-weight : bold;
    font-size : 15px;
    text-align: center;

    border:1px solid black;
}



/*-------------------------------------------------------
                    BOUTONS
-------------------------------------------------------*/
.bigButton{
    border-color : #DEEBFF;
    background-color: #F2F7FD;
    height: 30px;
    padding : 0;
    margin : 0;
    text-align: left;
    padding-left: 30px;
    border-width : 1px;
    border-style : solid;
    background-repeat: no-repeat;
    background-position : 2px 50% ;
    cursor: pointer;
    /*Le width est a géré dans chaque boutton ainsi que l'image (16x16)
    width : 200px;*/
}

.bigButton:hover{
	border-color : #c8d4e6;
}

.bigButton:focus{
    background-repeat: no-repeat;
    background-position : 2px 50% ;
}

.bigButton.btInactif{
	cursor 			 : default;
	color  			 : #808080;
	background-color : #EFEFEF;
	border-color     : #EFEFEF;
}

.bigButton.btInactif:hover{
	border-color : #EFEFEF;
}


/*-------------------------------------------------------
                    GESTION DU HINT
-------------------------------------------------------*/
body div#toolTip {
    border-color :#6593BA;
    color : #5876BF;
}
