/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-image: url(uploads/images/charte/arriere-plan.jpg);
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 12px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active
a:visited  {
	text-decoration: underline;
	/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit;
	color: #94AE39;
}

/* remove underline on hover and change color */
a:hover {
	color: #64763A;
}

/*****************
basic layout 
*****************/
body {
	background-image: url(uploads/images/charte/arriere-plan.jpg);
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

/* center wrapper, min max width */
div#pagewrapper {

	width: 994px;
	margin-right: auto;
	margin-left: auto;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
	height: 168px;
	background-image: url(uploads/images/charte/bandeau.jpg);
	background-repeat: no-repeat;
}

div#header h1 {
    font-size: 2px;
	text-indent: -999em;  /* this hides the text */
	text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */

}
#calage-menu {
	height: 145px;
}
div#main {
	padding-right: 20px;
	padding-left: 20px;
	color: #4f4f4f;
	margin-bottom: 0px;
	padding-bottom: 0px;
	background-image: url(uploads/images/charte/fond-page.gif);
}
div.entete {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e1e1e1;
	padding-top: 5px;
	padding-bottom: 5px;
}
div#search {
	text-align: right;
	float: right;
	width: 295px;
	margin: 0;
}

div#search input {
	border: 1px solid #c7c7c7;
	color: #4f4f4f;
	margin: 2px;
	height: 1.3em;
	font-size: 12px;
}

div#search input[type=submit]{
	font-size: 11px;
                font-weight:bold; 
	color: #ffffff;
	background-color: #738941;
	border: 1px solid #596934;
	height: 18px;
}

 div.breadcrumbs {
	margin-top: 5px;
	margin-bottom: 5px;
 } 

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 
 div.breadcrumbs input {
	font-size: 80%;
	color: #FFFFFF;
	background-color: #607138;
	height: 15px;
	border-width: 1px;
	border-style: solid;
	border-color: #343E1E;
}


div#sidebar {
	width: 225px;
	float: left;
	padding-top: 20px;
}
div#sidebar img.bordure {
	border: 1px solid #717171;
}
 div#content {
	padding-top: 7px;
	width: 550px;
	float: right;
}
#content p {
	text-align: justify;
}


.marge-page {
	padding-right: 60px;
	padding-left: 60px;
}
/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
 /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
	color: #FFFFFF;
	text-align: center;
	font-size: 11px;
	background-image: url(uploads/images/charte/footer.gif);
	background-repeat: no-repeat;
	height: 24px;
	padding-top: 1px;

}
div#footer p {
	margin:2px;
}

div#footer a {
	color: #FFFFFF; /* needed because footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
	height: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
}

/* relational links under content */

div.top {
	padding-top: 5px;
	text-align: right;
	padding-bottom: 5px;
                font-size:10px;
}

div.links01 {
	float: left;
	width:300px;
}
div.links02 {
	text-align: right;
	width:300px;
	float: right;
}



/********************
CONTENT STYLING
*********************/

p.legende {
	font-size: 11px;
	font-style: italic;
}

/* HEADINGS */
div#content h1 {
	color: #607138;
	font-size: 1.4em;
	text-align: left;
	padding : 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #C7C7C7;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 0.5em;
	margin-left: 0;
}
h2 {
	color: #ff7f01;
	font-size: 18px;
	text-align: left;
	padding : 3px;
	background-image: url(uploads/images/charte/puce-titre-page.gif);
	background-repeat: no-repeat;
	text-indent: 15px;
	margin-top: 15px;
	margin-bottom: 10px;
}
h3 {
	color: #698410;
	font-size: 14px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
	background-color: #e9f3ca;
	padding: 3px;
}
h4 {
	color: #698410;
	font-size: 13px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;

}
h5 {
	color: #698410;
	font-size: 11px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;

}
h6 {
	color: #698410;
	font-size: 10px;
	font-weight: bold;
	font-style: italic;
}
.fond-couleur {
	background-color: #E9F3CA;
	padding: 5px;
}
/* END HEADINGS */

/* TEXT */
p {
   margin: 5px 0 5px 0;  /* some air around p elements */
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
}
div#main ul li,
div#main ol li {
}

div#dl dt {
   font-weight: bold;
}
div#dl dd {
}
/* END LISTS */


.clearb {
	font-size: 1px;
	clear: both;
	margin: 0px;
	padding: 0px;
}

/* End of 'Layout: Top menu + 2 columns' */

