/* CSS Document */

body {
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #38150F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
a {
	color: #F29527;
}
a:link {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
a:active {
text-decoration:none;
}
a:visited {
text-decoration:none;
color: #F29527;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	/*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	width: 980px;
	background: #FFFFFF;
	text-align: left;
	border: 1px solid #38150F;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColElsCtrHdr #container_sw_accueil {
	width: 980px;
	text-align: left;
	border: 1px solid #38150F;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #38150F;
	background-image: url(img/interface/SW_accueil_fond.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.oneColElsCtrHdr #container_sw_primes {
	width: 980px;
	text-align: left;
	border: 1px solid #38150F;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #f29527;
	background-image: url(img/interface/sw_primes_fond.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.oneColElsCtrHdr #container_sw_objets {
	width: 980px;
	text-align: left;
	border: 1px solid #38150F;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #38150F;
	background-image: url(img/interface/sw_objets_fond.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.oneColElsCtrHdr #container_home {
	width: 980px;
	text-align: left;
	border: 1px solid #38150F;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #f29527;
	background-image: url(img/interface/accueil_fond.gif);
	background-repeat: no-repeat;
	background-position: left -150px;
}
.oneColElsCtrHdr #header {
	background-color: #38150F;
	color: #F29527;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
	height: 105px;
	background-image: url(img/interface/fond_header.gif);
	background-repeat: repeat-x;
} 
.oneColElsCtrHdr #top_txt {

	color: #38150f;
	float:right;
	padding-top:50px;
	font-size:14px;
	font-weight:bold;
	width: 580px;
	text-align: right;
/*	border: 1px solid #00FF99; 
	background-color: #00CC66;*/
} 
.oneColElsCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 14px;
	padding-top: 7px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: right;
	font-weight: normal;
	text-transform: uppercase;
	float: right;
/*	border: 1px solid #FF0066;
	background-color: #FF9999;*/
}
.oneColElsCtrHdr #header a {
	color: #F29527;
	text-decoration:none;
}
.oneColElsCtrHdr #header a:hover {
	color: #FFFFFF;
	text-decoration:none;
}
.oneColElsCtrHdr #subheader {
	background-color: #F29527;
	background-image: url(img/interface/fond_subheader.gif);
	background-repeat: repeat-x;
	height: 52px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 30px;
} 
.oneColElsCtrHdr #subheader h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}
.oneColElsCtrHdr #subheader a {
	color: #38150F;
	text-decoration:none;
}
.oneColElsCtrHdr #subheader a:hover {
	color: #FFFFFF;
	text-decoration:none;
}

.oneColElsCtrHdr #mainContent {
	width: 920px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-top: 10px;
}

h1{
font-size:20px;
}

h2{
font-size:16px;
}
h3{
font-size:16px;
}
.oneColElsCtrHdr #subContent {
	width: 850px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #FFFFFF;
	margin-top: 20px;
}

.oneColElsCtrHdr #footer {
	padding: 0 10px;
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #38150F;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	text-align: center;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	font-size: 10px;
} 
.oneColElsCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 9px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
			 			 

.oneColElsCtrHdr #menuDroit {
	float: right;
	margin-bottom: auto;
}

.boite {
	margin:0 auto;
	text-align:left;
	width:800px;/* #a05050*/
	padding-left:30px;
	padding-top:10px;
	background-color: #FFFBF8;
	background-image: url(img/interface/border_left.png);
	background-repeat: no-repeat;
	background-position: left top;
             }
.sub_boite {
             background:url(img/interface/border_right.png) no-repeat right bottom;
			 
             }
			 
.sub_boite  p {
	margin-top: 10px;
	margin-right: 30px;
	margin-bottom: 10px;
	margin-left: 15px;
             }
/*.sub_boite  *  * {
             margin:10px auto 10px auto;
             }
			 */

.sub_boite  h1 {
	background:url(img/interface/border_top.png) no-repeat right top;
	position:relative;
	top:-10px;
	margin:0;
	padding-top: 7px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 16px;
	height: 35px;
	color: #F29527;
	text-transform: uppercase;
             }
.sub_boite  h5 {
	background:url(img/interface/border_top.png) no-repeat right top;
	position:relative;
	top:-10px;
	margin:0;
	padding-top: 7px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 13px;
	height: 35px;
	color: #F29527;
	text-transform: none;
	font-weight: normal;
             }
.espace_td {
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
	font-size: 11px;
}
.sub_boite  .last_element {
	background:url(img/interface/border_bottom.png) no-repeat left bottom;
	margin-right:30px;
	margin-left:-30px;
	margin-bottom:0;
	padding:0 22px 60px 25px;
             }	

			 		 
			 
			 
.boite_ss_fond {
	margin:0 auto;
	text-align:left;
	width:800px;/* #a05050*/
	padding-left:30px;
	padding-top:10px;
	background-image: url(img/interface/arrondi_marron_g.png);
	background-repeat: no-repeat;
	background-position: left top;
             }
.sub_boite_ss_fond {

             }
/*
.sub_boite_ss_fond  * {
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
             }
.sub_boite_ss_fond  *  * {
             margin:10px auto 10px auto;
             }
			 
*/
.sub_boite_ss_fond  h1 {
	position:relative;
	top:-10px;
	margin:0;
	padding-top: 7px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 16px;
	height: 30px;
	color: #F29527;
	text-transform: uppercase;
	background-image: url(img/interface/arrondi_marron_d.png);
	background-repeat: no-repeat;
	background-position: right top;
             }

.sub_boite_ss_fond  .menu {
	float:right;
	margin: 0px;
	padding: 0px;
	text-transform: none;
	font-size: 14px;
	font-style: italic;
	font-weight: normal;

             }
#logo {
	float: left;
	margin: 0px;
	padding: 0px;

}
.fl_boite {
	background-image: url(img/interface/fl_titres_bas.gif);
	background-repeat: no-repeat;
	background-position: 5px 5px;
	margin-top: 25px;
	margin-bottom: 50px;
}
.fl_ferme_orange {
	margin-top: 5px;
	padding: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.fl_ferme_orange img {
	float:left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.fl_ouvert_orange {
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.fl_ouvert_orange img {
	float:left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


.boite_orange {
	text-align:left;
	width:720px;/* #a05050*/
	padding-left:30px;
	padding-top:-10px;
	background-color: #FFFBF8;
	background-image: url(img/interface/border_orange_left.png);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
             }
.sub_boite_orange {
	background:url(img/interface/border_right.png) no-repeat right bottom;
             }
		 
.sub_boite_orange  * {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
             }
/*			 
.sub_boite_orange  *  * {
             margin:10px auto 10px auto;
             }
*/
.sub_boite_orange  table {
	font-size:12px;
}
.sub_boite_orange  h1 {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	background-image: url(img/interface/border_orange_top.png);
	background-repeat: no-repeat;
	background-position: right top;
	text-transform: none;
             }
.sub_boite_orange  h2 {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
             }

.sub_boite_orange  .last_element {
	background:url(img/interface/border_bottom.png) no-repeat left bottom;
	margin-right:30px;
	margin-left:-30px;
	margin-bottom:0;
	padding:0 22px 60px 25px;
             }	

.boite_orange_ss_fond {
	text-align:left;
	width:720px;
	padding-left:30px;
	padding-top:-10px;
	background-image: url(img/interface/arrondi_orange_g.png);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
             }

.sub_boite_orange_ss_fond {
             }
.sub_boite_orange_ss_fond  * {
	margin-top: 10px;
	margin-right: 30px;
	margin-bottom: 10px;
	margin-left: 15px;
             }
.sub_boite_orange_ss_fond  *  * {
             margin:10px auto 10px auto;
             }
			 
.sub_boite_orange_ss_fond  h1 {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	background-image: url(img/interface/arrondi_orange_d.png);
	background-repeat: no-repeat;
	background-position: right top;
	text-transform: none;
             }
	
.arrondi_fixe {
	width: 430px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.arrondi_fixe h2 {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	
}
.arrondi_fixe_marron_haut {
	background-image: url(img/interface/arrondi-fixe_marron_haut.gif);
	height: 31px;
	background-repeat: no-repeat;
	color: #F29527;
	font-weight: bold;
	padding-top: 6px;
	padding-left: 13px;
	font-size: 14px;
}
.arrondi_fixe_vide_haut {
	background-image: url(img/interface/arrondi-fixe_vide_haut.gif);
	height: 10px;
	background-repeat: no-repeat;
	color: #F29527;
	font-weight: bold;
	padding-top: 6px;
	padding-left: 13px;
	font-size: 14px;
}
.arrondi_fixe_bas {
	background-image: url(img/interface/arrondi-fixe_bas.gif);
	background-repeat: no-repeat;
	height: 14px;
}
.arrondi_fixe_int {
	background-image: url(img/interface/arrond-fixe_fond.gif);
	background-repeat: repeat-y;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
	font-size: 12px;
}
.arrondi_fixe_top {
	padding-top: 5px;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
	font-size: 12px;
}
.barre_etapes {
	background-image: url(img/interface/barre_etapes_fond.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 55px;
	width: 473px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 15px;
	margin-bottom: 0px;
	color: #F29527;
	font-weight: bold;
	padding-top: 0px;
}

.barre_etapes h2 {
	display:block;
	color: #F29527;
	font-size: 14px;
	padding-left: 15px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	margin: 0;

}
.bulles_num {
	margin-right: 10px;
	margin-left: 10px;
}



.arrondi_login {
	width: 303px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.arrondi_login h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	
}
.arrondi_login_haut {
	background-image: url(img/interface/arrondi-login_haut.gif);
	height: 34px;
	background-repeat: no-repeat;
	color: #F29527;
	font-weight: bold;
	padding-top: 6px;
	padding-left: 0px;
	font-size: 14px;
	text-transform: capitalize;
	text-align: center;
	width: 303px;
}
.arrondi_login_bas {
	background-image: url(img/interface/arrondi-login_bas.gif);
	background-repeat: no-repeat;
	height: 32px;
	text-align: center;
}
.arrondi_login_int {
	background-image: url(img/interface/arrondi-login_fond.gif);
	background-repeat: repeat-y;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
	font-size: 12px;
	text-align: center;
}
.arrondi_login_int a {
	color: #38150F;
	text-decoration: none;
}
.arrondi_login_top {
	padding-top: 5px;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
	font-size: 12px;
}
.deblayage {
	clear: both;
}



.boite_vide {
	text-align:left;
	width:720px;/* #a05050*/
	padding-left:30px;
	padding-top:-10px;
	background-color: #FFFBF8;
	background-image: url(img/interface/border_vide_left.png);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
             }
.sub_boite_vide {
	background:url(img/interface/border_right.png) no-repeat right bottom;
             }
	 
.sub_boite_vide  * {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
             }
.sub_boite_vide  * * {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
             }

/*			 
.sub_boite_orange  *  * {
             margin:10px auto 10px auto;
             }
*/
.sub_boite_vide  table td{
	font-size:12px;
	padding:2px;
}
.sub_boite_vide  h1 {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	background-image: url(img/interface/border_vide_top.png);
	background-repeat: no-repeat;
	background-position: right top;
	text-transform: none;
             }
.sub_boite_vide  h2 {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
             }

.sub_boite_vide  .last_element {
	background:url(img/interface/border_bottom.png) no-repeat left bottom;
	margin-right:30px;
	margin-left:-30px;
	margin-bottom:0;
	padding:0 22px 60px 25px;
             }	

.sub_boite_vide  .last_element_court {
	background:url(img/interface/border_bottom.png) no-repeat left bottom;
	margin-right:30px;
	margin-left:-30px;
	margin-bottom:0;
	padding:0 22px 10px 25px;
             }
			 
.sub_boite_vide img {
	float: none;	
}


/* AJOUT REMI */
.div_cheque {
	background-color: #FFFFFF;
	border: 1px solid #333333;
/*	margin-right: 30px; */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	width: 750px;
	text-align: left;
}
.div_cheque h2{
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 5px 0px 5px 0px;
	padding: 0px;
}
.div_cheque table{
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
.div_entete_cheque {
	height: 170px;
	background-image: url(img/paiement/enteteCheque.gif);
	background-repeat: repeat-x;
}
.div_cadre {
	border: 1px solid #999999;
	padding: 10px 10px 10px 10px;
}
.div_ligne_pointille {
	border-top: 1px dotted #999999;
	width: 450px;
}
.tab_commande_titre1 {
	border-bottom: 1px solid #999999;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 5px 0px 5px 5px;
}
.tab_commande_titre2 {
	border-bottom: 1px solid #999999;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	border-left: none;
	padding: 5px 0px 5px 0px;
}
.tab_commande_txt1 {
	border-bottom: none;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 2px 2px 5px 2px;
}
.tab_commande_txt2 {
	border-bottom: none;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: none;
	padding: 2px 10px 5px 2px;
}
.tab_commande_bas1 {
	border-bottom: 1px solid #999999;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 5px 2px 0px 2px;
}
.tab_commande_bas2 {
	border-bottom: 1px solid #999999;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: none;
	padding: 5px 2px 0px 2px;
}
.tab_commande_total1 {
	border-bottom: none;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 5px 2px 0px 10px;
}
.tab_commande_total2 {
	border-bottom: none;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: none;
	padding: 5px 10px 0px 2px;
}
.tab_commande_total3 {
	border-bottom: 1px solid #999999;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 5px 2px 10px 10px;
}
.tab_commande_total4 {
	border-bottom: 1px solid #999999;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: none;
	padding: 5px 10px 10px 2px;
}
.div_net_payer1 {
	border: 1px solid #999999;
	padding: 5px 0px 5px 0px;
	text-align: center;
	width: 150px;
	font-weight: bold;
}
.div_net_payer2 {
	border-bottom: 1px solid #999999;
	border-top: none;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	padding: 5px 0px 5px 0px;
	text-align: center;
	width: 150px;
	font-weight: bold;
}

.tr_commande_bas {
	height: 30px;
}

.nav {
height: 25px;
}
.nav_g {
	background-image: url(img/interface/bouton_nav_g.gif);
	background-repeat: no-repeat;
	height: 25px;
	width:10px;
	float:left;
}
.nav_int {
	background-image: url(img/interface/bouton_nav_fond.gif);
	background-repeat:repeat-x;
	padding-top:3px;
	color:#F29527;
	font-size:14px;
	font-weight:bold;
	float:left;
	height: 25px;

}
.nav_int_fl {
	background-image: url(img/interface/bouton_nav_fond.gif);
	background-repeat:repeat-x;
	float:left;
	height: 25px;
}
.nav_d {
background-image: url(img/interface/bouton_nav_d.gif);
	background-repeat: no-repeat;
	height: 25px;
	width:10px;
	float:left;

}

.lien_objet {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	text-transform: none;
	text-decoration: none;
             }
.lien_objet:link {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	text-transform: none;
	text-decoration: none;
             }
.lien_objet:visited {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #38150F;
	text-transform: none;
	text-decoration: none;
             }
.lien_objet:hover {
	position:relative;
	top:0px;
	margin:0;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	height: 22px;
	color: #FFFFFF;
	text-transform: none;
	text-decoration: none;
             }

.sch_obj_tt_marron {
	background-image: url(img/interface/sch_objet_fond_marron3.gif);
	background-repeat: no-repeat;
	height: 35px;
	width: 350px;
	overflow: hidden;
/*	border: 1px solid #33FF33;*/
	margin: 3px 0px 2px 0px; 
	padding: 0px 0px 0px 0px;
	text-align: left;
}
.sch_obj_tt_marron2 {
	background-image: url(img/interface/sch_objet_fond_marron2.gif);
	background-repeat: no-repeat;
	height: 28px;
	width: 320px;
	overflow: hidden;
/*	border: 1px solid #33FF33;*/
	margin: 3px 0px 2px 0px; 
	padding: 0px 0px 0px 0px;
	text-align: left;
}
.sch_obj_tt_marron_entete_g {
	text-align: left;
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 4px 0px 0px 0px;
	width:265px;
	color:#f29527;
	font-weight:bold;
	font-size:14px;
/*	border: 1px solid #FF33CC;*/
}
.sch_obj_tt_marron_entete_g2 {
	text-align: left;
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 4px 0px 0px 0px;
	width:235px;
	color:#f29527;
	font-weight:bold;
	font-size:14px;
/*	border: 1px solid #FF33CC;*/
}
.sch_obj_tt_marron_entete_d {
	text-align: right;
	float: left;
	width: 50px;
	color:#f29527;
	font-weight:bold;
	font-size:14px;
/*	border: 1px solid #33CCFF;*/
	margin: 0px 0px 0px 0px; 
	padding: 2px 0px 0px 0px;
}
.sch_obj_tt_marron_entete_d2 {
	text-align: right;
	float: left;
	width: 50px;
	color:#f29527;
	font-weight:bold;
	font-size:14px;
/*	border: 1px solid #33CCFF;*/
	margin: 0px 0px 0px 0px; 
	padding: 4px 0px 0px 0px;
}
.sch_objet_titre_marron_petit {
	color:#38150F;
	font-size: 12px;
	font-weight:bold;
}
.sch_objet_titre_marron_petit a {
	color:#38150F;
	font-size: 12px;
	font-weight:bold;
	text-decoration: none;
}
.sch_objet_titre_marron_petit a:link {
	color:#38150F;
	font-size: 12px;
	font-weight:bold;
	text-decoration: none;
}
.sch_objet_titre_marron_petit a:visited {
	color:#38150F;
	font-size: 12px;
	font-weight:bold;
	text-decoration: none;
}
.sch_objet_titre_marron_petit a:hover {
	color:#38150F;
	font-size: 12px;
	font-weight:bold;
	text-decoration: none;
}




.arrondi_login2 {
	width: 303px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 1px;
	float: left;
}
.arrondi_login2 h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0px 0px 0px;
	padding: 0px;
	
}
.arrondi_login_haut2 {
	background-image: url(img/interface/arrondi-login_haut2.gif);
	height: 34px;
	background-repeat: no-repeat;
	color: #F29527;
	font-weight: bold;
	padding-top: 7px;
	padding-left: 0px;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	width: 303px;
}
.arrondi_login_bas2 {
	background-image: url(img/interface/arrondi-login_bas3.gif);
	background-repeat: no-repeat;
	height: 32px;
	text-align: center;
}
.arrondi_login_int2 {
	background-image: url(img/interface/arrondi-login_fond2.gif);
	background-repeat: repeat-y;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
	font-size: 12px;
	text-align: center;
	height: 130px;
}
.arrondi_login_int2 a {
	color: #38150F;
	text-decoration: none;
}
.arrondi_login_top2 {
	padding-top: 5px;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
	font-size: 12px;
}

.arrondi_login3 {
	width: 303px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 1px;
	float: left;
}
.arrondi_login3 h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0px 0px 0px;
	padding: 0px;
	
}
.arrondi_login_haut3 {
	background-image: url(img/interface/arrondi-login_haut.gif);
	height: 34px;
	background-repeat: no-repeat;
	color: #F29527;
	font-weight: bold;
	padding-top: 7px;
	padding-left: 0px;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	width: 303px;
}
.arrondi_login_bas3 {
	background-image: url(img/interface/arrondi-login_bas.gif);
	background-repeat: no-repeat;
	height: 32px;
	text-align: center;
}
.arrondi_login_int3 {
	background-image: url(img/interface/arrondi-login_fond.gif);
	background-repeat: repeat-y;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 5px;
	font-size: 12px;
	text-align: center;
	height: 130px;
}
.arrondi_login_int3 a {
	color: #38150F;
	text-decoration: none;
}
.arrondi_login_top3 {
	padding-top: 5px;
	padding-right: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
	font-size: 12px;
}

.explicatifPrimes {
	font-size: 12px;
}