/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	Margin et padding : droit ("right"), gauche ("left"), supérieur ("top") et inférieur ("bottom").
	
	margin-top: 100px;
	margin-right: 40px;
	margin-bottom: 10px;
	margin-left: 70px;

	margin: 100px 40px 10px 70px;
	
	¦one value, such as 10px, to specify equal padding on every side
	¦two values, such as 10px 5px, to specify top/bottom (first value) and right/left (second value) padding
	¦three values, such as 10px 5px 2px, to specify top (first value), right/left (second value) and bottom (third value) padding
	¦four values, such as 10px 5px 2px 1px to specify top, right, bottom and left padding respectively
============================================================================================================================================================================================
===========================================================================================================================================================================================*/

/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	BODY & HEADER
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
html {
	background: rgb(43,35,24);
}

body {
	margin: 0;
	padding:0;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	width: 100%;
	display: table;
	/*background: rgb(44,34,24);#212121;*/
}

a:link, a:visited {	color: #fff; text-decoration: none; }
a:active, a:hover { color: #fff; text-decoration: underline; }

p {
	font-size: 13px;
	color: #a7e3f2;
	text-align: justify;
	margin: 0 0 10px 0;	
}

h1 {
	font-size: 25px;
	color: #fff;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
	margin: 0 0 15px 0;
}

h2 {
	font-size: 14px;
	color: #0a90b0;
	margin: 0 0 10px 0;	
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	HEADER
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#header_section {
	width: 100%;
	height: 180px;
	background: rgb(80,60,40) no-repeat;
}
#header {
	width: 798px;
	/*height: 132px;*/
	padding: 1px 0 0 0;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	LANGUES
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.header_langues{ 
	background: transparent none repeat scroll 0% 50%;
    z-index: auto;
    right: inherit;
    width: 798px;
	margin: 0 auto;
    }

.header_langues_nav { margin: 10pt;
    padding: 5pt;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em;
    }

.header_langues_nav ul { 
	border-left: 1px solid rgb(115, 162, 182);
    margin: 0pt;
    padding: 0pt 10px 0pt 0pt;
    float: left;
    background-color: transparent;
    font-weight: bold;
    color: rgb(255, 255, 255);
    }

.header_langues_nav li { 
	margin: 0pt;
    padding: 0pt;
    display: inline;
    list-style-type: none;
    list-style-image: none;
    list-style-position: outside;
    color: rgb(0, 0, 153);
    }

.header_langues_nav li a { 
	border-right: 1px solid rgb(115, 162, 182);
    margin: 0pt;
    padding: 2px 5px;
    display: block;
    float: left;
    text-decoration: none;
    font-size: 12px;
    color: rgb(0, 0, 153);
    }
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	LOGO
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#logo {
	float: left;
	font-family: "Times New Roman", Times, serif;
	color: rgb(255,255,255);
	/*width: 400px;
	height: 75px;*/
	margin: 30px 0 0 0;
}

#logo h2 {
	font-size: 34px;
	color: rgb(128,160,0);
	margin: 0 0 10px 0;
}

#logo p {
	font-size: 13px;
	color: rgb(255,255,255);
	margin: 0 0 0 5px;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	CHEMIN
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#chemin {
	float: left;
	font-family: "Times New Roman", Times, serif;
	color: rgb(255,255,255);
	/*width: 400px;
	height: 75px;*/
	margin: 100px 0 0 0;
}

#chemin h2 {
	font-size: 34px;
	color: rgb(128,160,0);
	margin: 0 0 10px 0;
}

#chemin p {
	font-size: 13px;
	color: rgb(255,255,255);
	margin: 0 0 0 5px;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	MENU
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#menu {
	float: right;
	width: 540px;
	height: 40px;
	margin: 10px 0 0 0;
	padding: 0 0 0 0;
}

#menu ul {
	float: right;
	margin: 0px;
	padding: 0 0 0 0;
	width: 640px;
	list-style: none;
}

#menu ul li {
	display: inline;
}

#menu ul li a {
	float: left;
	padding: 12px 0 0 0;	
	text-align: center;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	background: url(../images/templates/menu.png) no-repeat;
	width: 90px;
	height: 32px;
	/*font-size: 15px;*/
	outline: none;
	color: #fff;
}

#menu li a:hover, #menu li .current {
	background: url(../images/templates/menu_current.png) no-repeat;
}

/* end of menu*/
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	CONTENT
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#content_section {
	width: 100%;
	background-position: bottom;
	background-color: rgb(128,160,0);
	background-repeat: repeat-x;
	height: 440px;
	border-top: solid 4px #FFFFFF;
	border-bottom: solid 4px #FFFFFF;
}
.container {
	width: 798px;
	margin: 0 auto;
}
.content {
	width: 100%;
	padding: 10px 0;
	color: rgb(0,0,0);
}
.content p{
	color: rgb(43,35,24);
	font-size: 14px;
}
.content a{
	color: rgb(0,0,0);
	font-weight: bold;
}

/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	FOOTER
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#footer_section {
	width: 100%;
	/*height: 133px;*/
	/*background: rgb(80,60,40) no-repeat;*/
}
#footer {
	width: 100%;
	color: rgb(255,255,255);
	margin: 0;
	text-align: center;
	padding: 20px 0;
}

#footer a {
	color: rgb(255,255,255);
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	COLONNES
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
#colonne_gauche {
	clear: left;
	float: left;
	width: 220px;
	padding-top: 10px;
}
#colonne_droite {
	clear: right;
	float: right;
	width: 560px;
	padding-top: 10px;
}
#colonne_droite img {
	border: 3px solid rgb(255,255,255);
	/*margin: 2px 0 0 0;*/
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	PANEL LEFT
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.panel_left {
	margin-right: 0px;
	border: 1px solid;
	border-color: rgb(187,176,130)
}
.panel_left_title {
	padding: 8px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: rgb(0,0,0);
	background-color: rgb(191,175,150);	
}
.panel_left_description {
	padding: 10px;
	font-size: 12px;
	line-height: 1.2em;
	background-color: rgb(230,220,210);
}

/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	BOUTON
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
a.bouton, 
button.bouton { 
    display:-moz-inline-box; 
    display:inline-block; 
    margin:0; 
    padding:0;
    /*font:16px/1.5 Trebuchet MS, Arial, Helvetica, sans-serif; */
    white-space:nowrap; 
    text-align:center; 
    vertical-align:middle;
    cursor:pointer; 
    border:0; 
    background:none; 
	/*font-size: 14px;
	font-weight: bold;*/
} 
a.bouton span, 
button.bouton span { 
    position:relative; 
    float:left; 
    padding:0 0 0 20px; 
    vertical-align:middle; 
    background:url(../images/boutons/bouton_gauche.gif) left top no-repeat; 
} 
a.bouton span span, 
button.bouton span span { 
    padding:0 20px 0 0; 
    background:url(../images/boutons/bouton_droite.gif) right top no-repeat;	
} 
a.bouton span span span, 
button.bouton span span span { 
    height:40px; 
    padding:0; 
    line-height:3;
    background:url(../images/boutons/bouton_centre.gif) left top repeat-x; 
} 
/*button::-moz-focus-inner { padding:0; border:0; } */
* html button {width:1%; overflow:visible;} 
*:first-child+html button {overflow:visible;}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	2 COLONNES
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.two_col {
	width: 380px;
	float: left;
	margin: 0 0 10px 0;	
}
.two_col img {
	border: 5px solid #fff;
	margin: 10px 0 0 0;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	3 COLONNES
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.three_col {
	width: 310px;
	float: left;
	margin: 0 0 10px 0;
}
.three_col img {
	border: 10px solid #fff;
	margin: 0 0 10px 0;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	COLONNES
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.left_col {
	float: left;
	/*width:340px;*/
}
.middle_col {
	margin: 0 20px 10px 20px;
}
.right_col {
	float: right;
	/*width:340px;*/
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	TITRE
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
.title {
	width: 100%;
	padding: 10px 0;
	background: url(images/title.png) no-repeat right center;
	border-bottom: 1px solid #464646;
	margin: 0 0 10px 0;
}

.title h1 {
	margin: 0;	
}
.retourligne{
vertical-align : top;
}
.left{
text-align:left;
}
.right{
text-align:right;
}
.center{
text-align:center;
}
caption {
font-family:sans-serif;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	DIVERS
============================================================================================================================================================================================
===========================================================================================================================================================================================*/

#middle_section_2 {
	width: 100%;
	background: url(../images/templates/middle_bg_01.jpg);
	background-position: top;
	background-color: #434343;
	background-repeat: repeat-x; 
	border-bottom: 3px solid #000;
}

#middle_content {
	width: 100%;
	background: url(../images/templates/middle_bg_02.jpg) no-repeat;
	background-position: top;
	padding: 10px 0 0 0;
}



.bottom_section p {
	color: #b0b0b0;
}

.bottom_section img {
	float: left;
	margin: 0 10px 10px 0;
	border: none;
}

.bottom_middle_col {
	width: 290px;
	margin: 0 0 10px 30px;
}
.quote_open {
	background: url(images/quote_open.png) no-repeat top left;
	width: 100%;
}

.quote_close {
	background: url(images/quote_close.png) no-repeat bottom right;
	width: 100%;
	padding: 10px 0;
	margin: 0 0 10px 0;
}

.gallery {
	width: 100%;
}

.gallery img {
	float: left;
	margin: 0;
	padding: 0;
}

.gallery img.mid {
	margin: 0 12px 12px 12px;	
}

.h_line {
	height: 0px;
	border-top: 1px solid #3d3d3d;
	border-bottom: 1px solid #434343;
	margin: 0 0 10px 0;
}

.more {
	float: right;
	background: url(../images/templates/readmore.png);
	width: 101px;
	height: 25px;
	font-size: 13px;
	text-align: center;
	margin: 10px 10px 10px 0;
	color: #ffebb5;
	padding: 3px 0 0 0;
}

.more a {
	color: #ffebb5;
	text-decoration: none;
}

.more:hover {
	text-decoration: underline;	
}

.list {
	list-style: none;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	color: #b0b0b0;
	padding: 0;
}

.list li {
	background: url(../images/templates/bullet.png) no-repeat;
	background-position: 0 7px;
	border-bottom: 1px solid #535353;
	padding: 0 0 5px 15px;
	margin: 0 0 5px 0;
}

.list a {
	color: #b0b0b0;
	text-decoration: none;
}

.list a:hover {
	color: #ccc;
	text-decoration: none;
}

.cleaner {
	clear: both;
	height: 0;
	margin: 0;
	padding: 0;
}

.cleaner_width_left {
	float: left;
	width: 50px;
	height: 1px;
}

.cleaner_width_right {
	float: right;
	width: 50px;
	height: 1px;
}
/*==========================================================================================================================================================================================
============================================================================================================================================================================================
	TABLE
============================================================================================================================================================================================
===========================================================================================================================================================================================*/
table {
border:3px solid rgb(80, 70, 50);/*#6495ed;*/
border-collapse:collapse;
width:98%;
margin:10px auto;
}
thead, tfoot {
background-color: rgb(0,0,0);/*background-color:#D0E3FA;*/
border:1px solid rgb(80, 70, 50);/*#6495ed;*/

}
tbody {
background-color: rgb(230,220,210);/*background-color:#FFFFFF;*/
border:1px solid rgb(80, 70, 50);/*#6495ed;*/
}
th {
/*font-family:monospace;*/
font-size:90%;
border:1px dotted rgb(80, 70, 50);/*#6495ed;*/
padding:5px;
background-color: rgb(191,175,150);/*background-color:#EFF6FF;*/
}
td {
font-family:tahoma;
font-size:90%;
border:1px solid rgb(80, 70, 50);/*#6495ed;*/
padding:5px;
text-align:right;
width:12%;
}
