/* @override 
	http://localhost:8888/csia/squelettes/css/oneColFixCtr.css
	http://soleo-asso.net/csia/squelettes/css/oneColFixCtr.css
*/

@charset "UTF-8";
body {
	font: 100%/1.4 Arial, Helvetica, sans-serif;
	background: #F60;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 20px 0px 20px 80px;
	
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
	color: #FD1A03;
	font-size:18px;
}

h2 {
	color: #BABABA;
	font-size:16px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 1156px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background: url("../images/background_center_border.png") repeat-y scroll 0 0 transparent ;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	margin: 0px;
}

.content-inner {
	margin: 0px 64px;
	padding: 0 26px 30px 26px;
	background: url("../images/background_center.png") no-repeat #ababab;
}
.navigation {
	clear: both;
    background: url("../images/shadow_menu.png") no-repeat scroll left bottom transparent;
    height: 87px;
    left: 0;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
    top: 10px;
    width: 950px;
    z-index: 100;
}

.bouton{
    background: url("../images/btn_entrer.png") no-repeat scroll left bottom transparent;
    height: 73px;
	width:160px;
    margin: 0 auto !important;
    padding: 0 auto !important;
    position: relative;
    z-index: 90;
	text-align:center;
}

.bouton a, a:hover, a:link, a:visited{
	color:black ;
	text-decoration:none ;
	font-weight:bold ;
	list-style:none;
}

.footline a, a:hover, a:link, a:visited{
	color: #EA8513;
	text-decoration:none ;
	list-style:none;
}

.search .search-input {
    background: url("../images/search_bg.png") no-repeat scroll 0 0 transparent;
    display: inline;
    float: left;
    height: 31px;
    width: 181px;
}
.search .search-button {
    float: left;
    margin: -2px 0 0;
}
.search .inputbox {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    color: #212121;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    height: 21px;
    line-height: 16px;
    padding: 5px 3px 0 9px;
    width: 150px;
}
.search .button {
    background: url("../images/search_button.gif") repeat scroll 0 0 transparent;
    border: medium none;
    display: block;
    height: 34px;
    padding: 0 !important;
    width: 38px;
}
.search .button:hover {
    background: url("../images/search_button_hover.gif") repeat scroll 0 0 transparent;
}
span.count {
    color: #352A2E;
}
.search_result {
    padding: 0 20px 0 0;
}
.search_result h3 {
    color: #808080;
    font-size: 14px;
}
.searchintro b, .searchintro strong, .highlight {
    color: #333333;
    font-weight: bold;
}

.post {
    left: 0;
    margin: 0 auto !important;
    padding: 0 !important;
    position: relative;
    width: 948px;
    z-index: 90;
	color: white ;
	top:20px;
	overflow: hidden;
}
.post-title{
	color: white;
	font-size:18px;
	font-weight:bold;
}
.post-subtitle{
	color: white;
	font-size:12px;
}
.post-left {
    background: url("../images/background_post.jpg") no-repeat scroll left bottom transparent;
	float: left;
    width: 648px;
    height: 448px;
	-moz-border-radius: 15px;
	border-radius: 15px;

}
.post-left a {
	color: #000;
}
.post-content-left {
    margin: 20px !important;
    padding: 0px !important;
	height: 408px;
}
.post-right {
    background: url("") no-repeat scroll left bottom transparent;
	float:right;
    width: 278px;
    height: 448px;
}

.post-content-right {
    margin: 0px !important;
    padding: 0px !important;
	color:#333;
}

.post-full {
    background: url("") no-repeat scroll left bottom white;
	font: 100%/1.4 Arial, Helvetica, sans-serif;
    width: 940px;
	color: black;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.post-content-full {
    padding: 20px;
}

.post-content-full div {
	margin-top: 10px;
}
.post-content-full div.texte p {
	margin: 1em 0;
}
.post-content-full #documents_portfolio {
	margin-top: 20px;
	overflow: hidden;
}
.post-content-full #documents_joints {
	clear: both;
	margin-top: 20px;
}
.post-content-full #documents_joints ul {
	margin: 10px;
	padding: 0;
	font-size: 15px;
	list-style: none;
	overflow: hidden;
}
.post-content-full #documents_joints ul li {
	clear: both;
}
.post-content-full #documents_joints img {
	margin: 0 10px 10px 0;
}
.post-content-full div.notes {
	clear: both;
	margin-top: 20px;
}
.post-content-full div.notes p {
	font-size: 15px;
}

.post-title-full {
	color: black;
	font-size:18px;
	font-weight:bold;
}

.post-subtitle-full{
	color: black;
	font-size:12px;
}

.post-content-list {
	clear: both;
    margin: 0 auto !important;
    padding: 10px 0 !important;
    border-top: 1px solid #999;
}
.post-content-list.premier {
	border: none;
}

.pagination {
	letter-spacing: 0.1em;
}
.pagination a, .pagination .on {
	font-weight: normal;
}
.pagination-items {
  margin: 0;
  list-style: none;
}
.pagination-item {
  display: inline-block;
}

.footer {
	position: relative;
	background-color:#333;
	color:#fff;
	margin: 0 64px;
}

.footer-content{
    position: relative;
    height: 160px;
}

.footer-left{
	float:left;
    margin: 20px !important;
    padding: 0px !important;
	height:116px;
	width:645px;
	
}
.footer-right{
	float:right;
    margin: 10px 20px 10px 20px!important;
    padding: 10px 0px 5px 0px !important;
	width: 250px;
}
.colonnes{
	clear: both;
	position: relative;
	width: 100%;
	height: 260px;
}

.colonne{
	float: left;
	width: 21%;
	padding: 20px;
	height: 220px;
}

.peltier {
	position: absolute;
	left: 250px;
	top: 175px;
	width: 540px;
	height: 64px;
}

.footline{
	background-color:black;
	height:130px;
    margin: 0px !important;
    padding: 0px !important;
	line-height:60px;
	color:#fff;
	text-align:center;
}
.colored{
	color:#EA8513;
}

.opacity25 {
    opacity: 0.25;
}
.opacity50 {
    opacity: 0.5;
}
.opacity75 {
    opacity: 0.75;
}
.opacity100 {
    opacity: 1;
}
.opacityOff {
}
.opacityOff:hover {
    opacity: 1;
}
div.box {
    background: none repeat scroll 0 0 transparent;
    display: none;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


/* logos */
.spip_logos,
.spip_logo {
	float: left;
	margin: 10px 10px 10px 0;
}
.post-content-list .spip_logos {
	margin-top: 0;
}


.formulaire_spip ul {
	margin: 0;
	list-style: none;
}
.formulaire_spip ul li {
	clear: both;
	margin: 0;
	padding: 0.5em 0;
}

.formulaire_recherche {
	float: left;
	margin: 10px 0 0 20px;
	width: 221px;
}


#login-visiteurs {
	float: right;
	margin: 10px 0 0 0;
	width: 650px;
	font-size: 13px;	
}
#login-visiteurs div, #login-visiteurs p {
	display: inline-block;
	margin: 0;
}

#formulaire_login_visiteurs li, #formulaire_login_visiteurs fieldset, 
#formulaire_login_visiteurs label, 
#formulaire_login_visiteurs input, #formulaire_login_visiteurs p.boutons {
	display: inline;
}
#formulaire_login_visiteurs fieldset {
	border: 0 none;
}
#formulaire_login_visiteurs input.text, #formulaire_login_visiteurs input.password {
	padding: 5px 3px 0 9px;
	width: 110px;
	color: #212121;
	background: none repeat scroll 0 0 transparent;
	border: none;
}
.formulaire_login_visiteurs .fond-champ, .formulaire_login_visiteurs .fond-champ {
	background: url("../images/fond-champ.png") no-repeat scroll 0 0 transparent;
	width: 141px;
    height: 31px;
}
.formulaire_login_visiteurs .boutons .submit {
	background: url("../images/fond-bouton.png") repeat scroll 0 0 transparent;
    border: medium none;
    height: 34px;
    padding: 0 !important;
    width: 38px;
    margin: -4px 0 0 0;
}
.formulaire_login_visiteurs .boutons .submit:hover {
	color: #FFF;
	background: url("../images/fond-bouton-hover.png") repeat scroll 0 0 transparent;
}


#formulaire_abonnement_lettre {
	margin-bottom: 0;
}
#formulaire_abonnement_lettre div {
	display: inline-block;
}
#formulaire_abonnement_lettre input {
	font-size: 1em;
}
#formulaire_abonnement_lettre input.text {
	padding: 5px 3px 0 9px;
	width: 110px;
	color: #212121;
	background: none repeat scroll 0 0 transparent;
	border: none;

}
#formulaire_abonnement_lettre .fond-champ {
	#padding: 5px 0;
	#width: 141px;
    #background-color: #E5E5E5;
    #border-radius: 5px;
	background: url("../images/fond-champ.png") no-repeat scroll 0 0 transparent;
    height: 31px;
    width: 141px;
    }
#formulaire_abonnement_lettre .submit {
	margin-top: -2px;
    width: 38px;
    padding: 5px 0;
    background-color: #E5E5E5;
	border: 2px solid #AAA;
	border-radius: 5px
}
#formulaire_abonnement_lettre .submit:hover {
	color: #FFF;
	background-color: #323232;
}

.derniers-articles {
	display: table;
	margin: 0 -20px;
	font-size: 0.9375em;
	border-collapse: separate;
	border-spacing: 20px;
}
.bloc-article {
	display: table-cell;
	width: 300px;
	padding: 5px;
	background-color: #FFF;
	border-radius: 10px;
}
.bloc-article .surtitre {
	display: block;
	color: #000;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
	position: static;
    padding-left: 75px;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}