/* Start of CMSMS style sheet 'iconcept' */
/* @override http://www.i-concept.ch/cmsms/stylesheet.php?cssid=42&mediatype=all */

/* Start of CMSMS style sheet 'iconcept' */
span.accesskey {
   text-decoration:none;
}

div.breadcrumbs {
	padding-left: 1em;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #0031a6;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #6377a5; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #fff;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: #4863a5 url(images/cms/external.gif) no-repeat 100% 0;
}
/* end wiki style external links */
/********************
MENU
*********************/

/* third level has some padding to have it stand out */
div#menu_vert ul{
	margin: 0;
}

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; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   color: #18507C; /* this will be link color for all levels */
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* 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: #0054DE;
   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 .currentpage strong {
   padding: 0.8em 0.5em 0.8em 1.5em;  /* some air for it */
   background: #80abc2 url(images/cms/arrow-right-active.gif) no-repeat 0.4em center;
   display: block;
   color: #fff;
   margin: 0;
   font: 1em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul .currentpage strong {
   font-size: 90%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul .currentpage strong {
   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 h3,
div#menu_vert li.sectionheader_activeparent h3{
   border-bottom: 1px solid #c0c0c0;
   font-size: 100%;
   font-weight: bold;
   margin: 0;
   padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
   background: url(images/cms/arrow-right.gif) no-repeat 0.5em center; 
 
}


div#menu_vert li.sectionheader_activeparent h3{
   background: #008ad3 url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   color: #fff;
}

/* 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 */
}
/*
default link styles
*/
a,
a:link 
a:active {
   text-decoration: underline;
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #0054DE;
}

/*****************
basic layout 
*****************/
body {
   background-color: #a2a4a5;
   color: #333;
}

#doc4 {
	background-color: #fff;
	position: relative;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#hd {
	border-bottom: 1px dotted #000;
	background-color: white;
	margin: 0 0 .5em;
	padding: 0 0 .5em;
	position: relative;
	height: 163px;
}

#menu-client {
	top: 0;
	right: 0;
	position: absolute;
	background-color: #fff;
	padding: 3px 0;
}

#menu-client h6 {
	display: inline;
	margin-right: .5em;
}

#menu-client a {
	margin: 0 .5em 0 0;
}

div#hd h1 {
   margin: 0;
}

div#hd h1 a {
/* you can set your own image here */
   background: url(uploads/images/logo.jpg) no-repeat 0 12px; 
   display: block;
   text-indent: -9999em;
   height: 145px;
   text-decoration:none;
}

div#search {
	padding-right: 1em;
	text-align: right;
	line-height: 2.5em;
	right: 0;
	bottom: 0;
	position: absolute;
}

div#breadcrumbs {
	padding-left: 1em;
	line-height: 2.5em;
}

 div#breadcrumbs span.lastitem { 
   font-weight:bold; 
}


div#address, div#horaires {
  margin-top: 1em;
  background: #efefef; 
}

div#address div,
div#horaires div{
    padding: 1em;
}

#doc4 div#address h2 {
	font-size: 1.2em;
	margin-top: 0.5em;
	color: black;
}

div#address ul{
	margin: 0;
}

div#horaires dl{
	margin: 1em 0;
}

div#address li{
    list-style: none;
}

div#horaires dt{
    color: #002fa5;
	font-weight: bold;
}

div#address a#map{
display: block;
    padding-left: 20px;
    line-height: 20px;
    background: url('uploads/images/map.png') no-repeat center left; 
}

div#address a#mail{
display: block;
    padding-left: 20px;
    line-height: 20px;
    background: url('uploads/images/mail.png') no-repeat center left; 
}

div#ft {
   background-color: #fff; /* same bg color as in header */
   text-align: center;
	border-top: 1px dotted #000;
	margin: .5em 0 0;
	padding: .5em 0 0;
}


/********************
CONTENT STYLING
*********************/

/* HEADINGS */

h2,h3,h4,h5,h6 {
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
        clear: both;
}

div#bd h2 {
	color: #0030a5; 
	font-size: 2em;
	font-weight: normal;
	font-style: normal;
	margin: 0.6em 0;
}
div#bd h3 {
   color: #0030a5; 
   font-size: 1.2em;
	font-weight: normal;
	font-style: normal;
	margin: 0 0 .5em;
}
div#bd h4 {
   color: #0030a5; 
   font-size: 1.1em;
}
div#bd h5 {
   color: #0030a5; 
}
h6 {
   color: #0030a5; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
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 {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
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%;


}
/* End of 'iconcept' */


/* End of 'iconcept' */

