/*****************
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;
}

body {
   text-align: left;
   font-family: Arial, sans-serif, Verdana, Geneva, Helvetica;
   font-size: 75.01%;
   background-color: #ccc;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

div { font-size: 1em; }

img { border: 0; }

h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
   font-weight: bold;
}
em, i {
   font-style:italic;
}

code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;
}

div.templatecode {
  margin: 0 0 2.5em;
}

a,
a:link 
a:visited 
a:active {
   text-decoration: none;
   background-color: inherit; 
   color: #18507C;
   font-size: 11px;
   font-weight: bold;
}
a:hover {
   text-decoration: underline;
   color: #385C72;
}

.pdf_file {
	padding-left: 25px;
	background: url('images/acrobaticon.jpg') no-repeat;
}

/* Basic layout*/
div#pagewrapper {
   border: 1px solid #eee;
   margin: 0px auto;     /* this centers wrapper */
   max-width: 930px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 930px;
   background-color: #fff;
   color: black;
	width: 930px;
}

div#header {
   height: 57px;
   width: 100%;
   background: url(images/header.jpg) repeat-x; 
}

div#header h1 a {
   display: block;
   height: 57px;         /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#toolbar {
   height: 22px;
   width: 100%;
   background: url('images/toolbar.jpg') no-repeat; 
}

div#toolbar ul {
	display: block;
	margin: 0px 0px 0px 15px;
	padding: 5px 0px 0px 0px;
}

div#toolbar li {
	float: left;
	list-style-type: none;
	display: list-item;
	margin: 0px 25px 0px 0px;
}

div#banner {
   height: 301px;
   width: 930px;
   background: #000; 
}

div#tabs {
   height: 284px;
   width: 100%;
   background: url(images/tabbar.jpg) no-repeat; 
   padding: 0px;
}

/* position for the search box */
div#search {
	text-align: right;
	float: right;
	margin: 21px 10px 0px 0px;
}

input#cntnt01searchinput {
	border: 0px solid #000;
	padding: 2px;
	background: url('images/submit-inner.gif') #e6e6e6 no-repeat;
	margin: 0px 0px 5px 0px;
	width: 150px;
	text-indent: 5px;
	font-size: 11px;
	height: 14px;
	float: left;
}
input.btn-search {
	padding: 1px 6px 1px 6px;
	margin: 0px 0px 4px 0px;
	background: url('images/submit.gif') #000 no-repeat 100% 30%;
	cursor: pointer;
	color: #fff;
	border-style: none;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	height: 18px;
	float: left;
}

input.btn-search:hover {
	background: url('images/submit-highlight.gif') #000 no-repeat 100% 30%;
	color: orange;
}

.res_search h3, .res_search .timetaken{
	display: none;
}

.res_search {
	margin-left: 20px;
}

.res_search .pourc {
	width: 40px;
	float: left;
	text-align: right;
	padding-right: 5px;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
} 

div#main {
   margin-left: 29%;
   margin-right: 2%;
}

div#main h2 {
	font-size: 16px;
	color: #999;
	padding: 5px 0px 10px 0px;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #000; /* same bg color as in header */
   height: 24px;
}

div#footer p {
   font-size: 0.8em;
   padding: 5px;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0px;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#news {
	height: 90px; overflow: hidden;
	margin: 15px 0px 0px 0px;
	padding: 0px 25px 0px 25px;
	width: 870px;
}

div#news h2 {
	font-size: 16px;
	color: #999;
	padding: 5px 0px 3px 0px;
	border-bottom: 1px solid #ccc;
	margin: 0px 0px 8px 0px;
}

div#content {
	margin: 1.5em 0px 2em 0px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}


div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #294B5F; 
	font-size: 1.5em; 
	text-align: left; 
	padding-left: 0.5em;
	padding-bottom: 1px;
	border-bottom: 1px solid #e7ab0b; 
	border-left: 1.1em solid #e7ab0b; 
        line-height: 1.5em;
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

div.left49 {
	width: 49%;
}

div.right49 {
	float: right;
	width: 49%;
	text-align: right;
}


/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 1em;
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px solid #c0c0c0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none;
   display: block;
   padding: 0.8em 0.5em 0.8em 1.5em;
   color: #18507C;
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; 
   min-height:1em; 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 90%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   background-color: #C3D4DF;
}
div#menu_vert a.activeparent:hover {
   background-color: #C3D4DF;
   color: #18507C;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background: url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   background-color: #385C72;
   color: #fff;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #18507C;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
   background-color: #385C72;
   display: block; 
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   color: #fff;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
   background-color: transparent;
   border-bottom: none;
   color: #000;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}


dfn {
display:none;
}


.tetiere {
	height: 60px;
	width: 635px;
	margin-bottom: 10px;
	background: url('../flashrotator/banniere1.jpg') no-repeat bottom right;
}

#tetiere00003 {
	background: url('../flashrotator/banniere3.jpg') no-repeat bottom right;
}

#tetiere00004 {
	background: url('../flashrotator/banniere2.jpg') no-repeat 0px -160px;
}

#tetiere00005 {
	background: url('../flashrotator/banniere4.jpg') no-repeat 0px -160px;
}

#tetiere00006 {
	background: url('../flashrotator/banniere5.jpg') no-repeat 0px -160px;
}




.NewsSummary {
}

.NewsSummaryPostdate {
	font-size: 90%;
	font-weight: bold;
	float: left;
}

.NewsSummaryLink {
    font-weight: bold;
    padding-left: 5px;
	float: left;
}

.NewsSummaryCategory {
	font-style: italic;
	margin: 5px 0;
}

.NewsSummaryAuthor {
	font-style: italic;
	padding-bottom: 0.5em;
}

.NewsSummarySummary {
	padding: 3px 0px 0px 0px;
	text-align: left;
}

.NewsSummarySummary, .NewsSummaryContent {
}

.NewsSummaryMorelink {
	padding: 0em 15px 10px 0px;
}

#NewsPostDetailDate {
	font-size: 90%;
	margin-bottom: 5px;
	font-weight: bold;
}

#NewsPostDetailSummary {
}

#NewsPostDetailCategory {
	font-style: italic;
	border-top: 1px solid #ccc;
	margin-top: 0.5em;
	padding: 0.2em 0;
}

#NewsPostDetailContent {
	margin-bottom: 15px;
}

#NewsPostDetailAuthor {
	padding-bottom: 1.5em;
	font-style: italic;
}

.detail_news .right49 { display: none; }