.test{
	border  : 1px solid red;
	padding : 1px 1px 1px 1px;
}

.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 : 116px;
    background-repeat : no-repeat;
    background-position : top right;
    margin-bottom : 6px;
}

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:55px;
	margin-left:720px;
	font-size:120%;
	font-weight:bold;
}


/*-------------------------------------------------
              LAYOUT 3 COLONNES
-------------------------------------------------*/
#content {
    position : relative;
    width : 100%;
}

#leftContent {
    position: absolute;
    left:0px;
    top: 0px;
    width:135px;
}

#centerContent {
    position : relative;
	margin-left: 147px;
    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-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     : Arial, Helvetica, sans-serif;
	font-size       : 10px;
	empty-cells     : show;

}

table.classicTable th, .classicTitle{
	border-bottom : 1px solid #DEEBFF;
    background-image    : url("image/comFontMenuF40px.jpg");
    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;
}




/*-------------------------------------------------
                     DIVERS
-------------------------------------------------*/

.row1        {background-color : white}
.row2        {background-color : #F1F5F9}
.rowSelected {background-color : #FFE9C8;}
.rowOver     {background-color : #DDFFEE;}

input.button{
   	background-repeat:repeat-x;
   	background-image: url("../../css/commun/image/fond_btn.png");
	background-color:  #5876BF;
    
	margin-top : 5px;
	margin-bottom : 5px;

	padding: 1px 5px 2px 5px;

	height: 22px;

	color: White;
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	cursor: pointer;

    border:1px solid #5876BF;
}


input.buttonL{
    display : block;
	margin-right: auto;
}

input.buttonR{
    display : block;
    margin-left: auto;
}

input.buttonC{
    display : block;
    margin: auto;
}

input, select, textarea, label.radio {
    background-color : #FFFFFF;
  	color : #5876BF;
}

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;
}


/* 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;
}


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;
}



/*-------------------------------------------------------
                    BOUTTONS
-------------------------------------------------------*/
.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;
}
