/* Start of CMSMS style sheet 'AISMT13 CSS : Gabarit Base' */
/*****************
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: "Trebuchet MS", Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 11pt; /* 75.01 */
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
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 {
   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: #003399;  /* #18507C; */
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #003399; /* #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: #4B97FF;
}

/*****************
basic layout 
*****************/
body {
    /* background-color: #E7DDFF; #DFE5FF; #FFFCDE; #E5C6B8; #D5E5D0; vert  #C8DDE5; bleu #FFB852; #bac; */
   /* background: #2A2A2A url(uploads/images/site/fond-n.gif) repeat-x 0 0; */
   /* background: #A84E1C url(uploads/images/site/fond-ter.gif) repeat-x 0 0; */
   /* background: #A08CDD url(uploads/images/site/fond.gif) repeat-x 0 0; */
    background: #E7DDFF url(uploads/images/site/fdtrame.gif) repeat 0 0;
    color: #333;
    margin: 1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid #868686;
   margin: 0 auto;       /* this centers wrapper */
   /* max-width: 80em;   IE wont understand these, so we will use javascript magick */
   /* min-width: 60em; */
   max-width: 1200px;
   min-width: 840px;
   background: #fff url(uploads/images/site/ciel17b.jpg) no-repeat 0px -4px;
   color: black;
}

/*** 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#header {
   height: 90px;    /* adjust according your image size */
   background: transparent; /* 4B97FF */
}

div#header h1 a {
   background: url(uploads/images/site/logo_vide.gif) no-repeat 20px 12px;
   display: block;
   height: 90px;             /* 80px 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 */
}

/* position for the search box */
div#search {
   width: 200px;
   margin: 24px 18px 0px auto;
   text-align: right;
}

div#line_break {
   clear: both;
   height: 4px;
   background: url(images/cms/ligne.png) repeat-x top;
}

div.breadcrumbs {
   float: left;
   padding: 2px 0 2px 0;
   font-size: 90%; /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 14px auto 14px 170px;
}

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

div#content {
   background-color: #fff; /* url(uploads/images/site/stetho.jpg) no-repeat -6px 0px; */
   min-height: 464px;
   clear: both; /* Fix IE7 stupid Bug */
   float: left; /* Fix IE7 stupid Bug */
   display: inline; /* Fix IE7 stupid Bug */
   width: 100%;  /* Fix IE7 stupid Bug */
   margin: 0px auto 20px 0;   /* 1.5em auto 2em 0 some air above and under menu and content */
}

div#main {
   margin-left: 290px; /* 29% this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 18px; /* 2% and some air on the right */
}

div#sidebar {
   clear: both;
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 240px;     /* 26% sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-top: 0px;
   margin-left: 13px;
   /* background: url(uploads/images/site/bord-sb.jpg) repeat-y 0 0; */
}

div#sidebar_bottom {
   min-height: 20px;
   /* background-color: #fff; */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #222;
   background: #C0DCF0 url(uploads/images/site/footer.jpg) no-repeat 0px 0px;
   /* border-top: 1px dotted #000; */
   height: 70px;
}

div#footer p {
   font-size: 10pt; /* 0.8em; */
   padding: 14px;  /* 1.5em;      some air for footer */
   text-align: center;
   font-weight: bold;
   margin: 0;
   line-height: 12pt;
}

div#footer p a {
   color: #555; /* #868686 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: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}
div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

div.left33 {
   /* clear: both; */
   float: left;
   width: 33%;
   font-size: 0.9em;
}
div.center33 {
   float: left;
   width: 33%;
   text-align: center;
   font-size: 0.9em;
}
div.right33 {
   float: right;
   width: 33%;
   text-align: right;
   font-size: 0.9em;
}


/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #399; //#294B5F;
        font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
        font-weight: bold;
	font-size: 1.4em; 
	text-align: left;
/* some air around the text */
	/* padding-left: 0.5em; */
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 1px solid #4B97FF;
	/* border-left: 1.1em solid #4B97FF; */
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #399;
   font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #399;
   font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #399;
   font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #333; /* #CC6633; #CC9933; #287878; #236A6A; #399; #285574; */
   /* text-decoration: underline; */
   font-family: "Trebuchet MS", Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
   /* Ajout du 24-10-08 */
   background-color: #FFEECC; /* #FFCC99; */
   padding-left: 0.4em;
   padding-right: 0.4em;
   text-align: left;
   border : 1px solid #999;
}
/* 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%;
}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   /*margin: 0 0 1.5em 0;*/
   margin: 0;
}

div#main ul li,
div#main ol li {
    margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */
/* End of 'AISMT13 CSS : Gabarit Base' */

/* Start of CMSMS style sheet 'AISMT13 CSS : Module News' */
div#news {
  margin: 0 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 2px inset #bac; 
  background: #EEE; /* #FFEECC; #FFCC82; #E3E2FF; #FFE9AF; */
  /* -moz-border-radius: 10px; */
  width: 37%;
  max-width: 388px;
  height: 17em; /* Ajout le 15-12-08 -> à supprimer si problème */
  float: right;
}

div#news h2 {
   line-height: 1.6em;
   background: #fff;
   text-align: center;
   color: crimson;
}

.NewsSummary {
    /* padding: 0.5em 0.5em 1em;  padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    /* border-bottom: 1px solid #ccc; */
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryLink a {
    color: crimson;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
    line-height: 140%;
}

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/* 
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/
/* End of 'AISMT13 CSS : Module News' */

/* Start of CMSMS style sheet 'AISMT13 CSS : Menu Vertical' */
/********************
MENU
*********************/
#menu_vert0 {
    font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1em;
    padding-left: 0;
    margin-left: 6px; /* 1em; */
}
#menu_vert {
    width: 240px; /* 12em; */
    border-right: 1px solid #000;
    padding: 0;
    margin-bottom: 0.8em;
    font-family: "Trebuchet MS", Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
    background-color: #90bade;
    color: #333;
/* Old face */
    font-weight: bold;
    font-size: 0.9em;
}

div#menu_vert0 ul ul {
    background: url(uploads/images/site/colonne-n.gif) repeat-y 0 0;
    border-bottom: 2px solid #222;
}
div#menu_vert ul ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
/* Bloc menu */
#menu_vert0 li {
    list-style: none;
    margin: 0;
    display: block;
}
#menu_vert li {
    list-style: none;
    margin: 0;
    display: block;
    border-bottom: 1px solid #90bade;
}

/* Sous menu*/
#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 **/

html>body #menu_vert li a {
    width: auto;
}

/* first level links */
div#menu_vert0 a {
   text-decoration: none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.6em 0.5em 0.6em 1.5em;  /* 0.8em 0.5em 0.8em 1.5em; some air for it */
   color: #B70074; /* #003399;   #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 */
}
div#menu_vert li a {
    text-decoration: none; /* no underline for links */
    display: block; /* IE has problems with this, fixed above */
    padding: 5px 5px 5px 0.5em;
    border-left: 10px solid #1958b7;
    border-right: 10px solid #508fc4;
    /* couleur fond menu */
    background-color: #2581D0; /* #2175bc; */
    color: #fff;
    /*width: 100%;*/
    /*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.4em 0em 0.3em 2em;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.4em 0.5em 0.4em 3em;
   /*background: url(images/cms/dash.gif) no-repeat 2.8em center;*/
}

/* hover state for all links */
div#menu_vert0 a:hover {
   background-color: #E3E2FF; /* #C3D4DF; gris-bleu */
   color: #003399; /* #B70074; #C99E79; */
}
div#menu_vert a:hover {
    border-left: 10px solid #1c64d1;
    border-right: 10px solid #5ba3e0;
    background-color: #2994EE; /* #2586d7; */
    color: #fff;
}

div#menu_vert a.activeparent:hover {
   background-color: #C3D4DF; /* gris-bleu */
   color: #18507C; /* bleu foncé */
}

/* hover state for 1st level child */
div#menu_vert ul ul a:hover {
   /* margin: 0 10px 0 10px; */
   /* padding: 0.5em 0.2em 0.5em 2.1em; */
}

/* 
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(uploads/images/site/bouton-cb.gif) no-repeat 0 0;
   background-color: transparent; /* #385C72; */
   color: #def; /* #868686 gris foncé */
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   /*color: #18507C;  bleu foncé */
}


/* 
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(uploads/images/site/bouton-cb.gif) no-repeat 0 0; /* #A08CDD */
   border-bottom: 1px solid black;
   display: block; 
   padding: 0.4em 0.2em 0.4em 1em;  /* 0.8em 0.5em 0.8em 1.5em some air for it */
   color: #99ffcc;                             /* #339999 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 2em;
    /* couleur fond menu */
    background: #509FD4 url(images/aismt13/radio-blue-active.gif) no-repeat 0.5em center; /* #508FC4 */
    border: none;
    color: #000;
    margin-left: 10px;
    margin-right: 10px;
}

/* 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/aismt13/radio-blue-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 */
}
/* End of 'AISMT13 CSS : Menu Vertical' */

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
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: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* 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: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'AISMT13 CSS : Plus' */
.center {text-align: center;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.chanson:first-letter {
    font-family: "Courier New", "Comic sans MS", "Trebuchet MS";
    color: red;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 0.1em;
}

.retour-page-haut {
    text-align: right;
    font-size: 1em;
    color: #996688;
    border-bottom: 1px solid #B70074; /*purple;*/
    border-right: 0.5em solid #B70074; /*purple;*/
    padding-right: 0.4em;
    line-height: 1em;
}
.retour-page-haut a {
    text-decoration: none;
}
.retour-page-haut a:visited {
    text-decoration: none;
}

div#login_box {
   width: 40%;    /* 23em - enough width for the login input box */
   text-align: right;
   /* padding: 0.5em 0 0.2em 1em; */
   padding: 6px 2em 6px 0;
   margin: 0 auto 10px auto;
   /* background: url(uploads/images/site/login_fd.jpg) no-repeat 0 0; */
   border: 2px solid grey;
}

div#login_line {
   width: 96%;
   text-align: left;
   padding: 0.5em 0 0em 1em;
   margin: 0 1em;
/* border: 1px solid black; */
/* background-color: grey; */
}

/********************************/
/* CSS Pour le formulaire de contact */
/********************************/
#contact-form-content {
    margin: 0 auto 0.6em auto;
    width: 90%; /* 38em; */
    background-color: #FFFFEE; /* #FFEECC;  #ffeecc; */
    border: 1px solid #999; /* #B73374; #aa7788; */
}
#contact-form-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    padding: 0.65em 1em;
    border: 1px outset #DDD; /* #90bade; #B73374; */
    background-color: #90bade; /* #B73374; */
    background: #DDD url(uploads/images/site/entete-g.gif) repeat-x 0 0;
    /* color: #EEF; */
}
#contact-form-footer {
    text-align: right;
    padding: 0.4em 1em;
    border: 1px inset #DDD; /* inset #90bade; #B73374; */
    background-color: #90bade; /* #B73374; */
    background: #DDD url(uploads/images/site/entete-g.gif) repeat-x 0 0;
    /* color: #EEF; */
}
#contact-form-content fieldset {
    margin: 0 1em 1em 1em;
    padding: 0 1em 0 1em;
}
#contact-form-content legend {
    padding: 0.4em;
    margin: 0.4em;
}
#contact-form-content label {
    width: 24%;
    float: left;
    text-align: right;
    line-height: 1.4em;
    padding: 0 0.8em 0 0;
}
#contact-form-content p {
    margin-bottom: 0.4em;
}
.contact-form-exemple {
    font-style: italic;
    color: #999;
    font-size: 0.8em;
}

.sendmail-succes {
    margin: 1em 8em;
    padding: 0.8em;
    text-align: center;
    font-weight: bold;
    border: 2px solid green;
    background-color: #EEF; /* #ffeecc; */
}
.sendmail-echec {
    margin: 1em 8em;
    padding: 0.8em;
    text-align: center;
    font-weight: bold;
    border: 2px solid red;
    background-color: #EEF; /* #ffeecc; */
}

/*******************/
/* CCS Page Camion */
/******************/
.camion-box {
    color: #399;
    margin: 0 auto 0.5em auto;
    padding: 0.6em;
    border: 2px solid #999;
    background-color: #FFFFEE;
    width: 86%;
}
.camion-titre {
    font-size: 1.2em;
    text-align: left;
    font-weight: bold;
    font-style: italic;
    /* text-decoration: underline; */
    margin: 0.2em 0 0.6em 130px;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #4B97FF;
}
.camion-liste {
    margin: 0 0.5em 0 150px;
    color: black;
    text-decoration: none;
}

/****************/
/* CCS Sommaire */
/****************/
.cadre-sommaire {
    font-size: 1em;
    /* color: #399; */
    line-height: 1.3em;
    margin: 1.5em 2em 2em 2em;
    padding: 0.6em 1em;
    border: 2px solid #999; /* #999; */
    background-color: #EEF;
}
.cadre-sommaire a {
    color: #333;
    text-decoration: none;
}
.cadre-sommaire a:hover {
    color: #399;
    font-weight: bold;
    background-color: #EEF;
}
.cadre-sommaire a:visited {
    text-decoration: none;
}

#liste-sommaire {
    padding: 0 3em 0 0;
}
#liste-sommaire ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#liste-sommaire li {
    background-color: #EEF;
    border: 2px solid #999;
    padding: 0;
    margin: 0;
}
#liste-sommaire a {
    display: block;
    text-decoration: none;
    padding: 0 2em 0 0.5em;
    /* background: #90bade url(uploads/images/site/entete-ter.gif) repeat-x 0 0; */
    /* color: #123; */
}
#liste-sommaire a:hover {
    font-weight: bold;
    margin: 0em;
    padding: 0 2em 0 0.5em;
    background-color: #CCD;
    color: #399;
    font-weight: bold;
}
#liste-sommaire a:visited {
    text-decoration: none;
}

/*********/
#button {
	width: 12em;
	border-right: 1px solid #000;
	padding: 0 0 1em 0;
	margin-bottom: 1em;
	font-family: 'Trebuchet MS', 'Lucida Grande',
	  Verdana, Lucida, Geneva, Helvetica, 
	  Arial, sans-serif;
	background-color: #90bade;
	color: #333;
}
#button ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}
#button li {
    border-bottom: 1px solid #90bade;
    margin: 0;
}
#button li a {
    display: block;
    padding: 5px 5px 5px 0.5em;
    border-left: 10px solid #1958b7;
    border-right: 10px solid #508fc4;
    background-color: #2175bc;
    color: #fff;
    text-decoration: none;
    width: 100%;
}

html>body #button li a {
    width: auto;
}

#button li a:hover {
    border-left: 10px solid #1c64d1;
    border-right: 10px solid #5ba3e0;
    background-color: #2586d7;
    color: #fff;
}
/*********/

.titre-1 {
    font-size: 1.1em;
    font-weight: bold;
    color: #399;
    line-height: 1.3em;
    margin: 0 0 0.5em 0;
    padding: 0.4em 0.6em;
    border: 2px solid #999;
    background-color: #EEF;
}

.titre-2 {
    font-size: 1em;
    color: #399;
    line-height: 1.3em;
    margin: 0 auto 0.5em auto;
    padding: 0.4em 0.6em;
    border: 2px solid #999;
    background-color: #EEF;
}

.titre-1 a {
    color: #399;
    text-decoration: none;
}
.titre-1 a:hover {
    background: none; /* correction d'un bug IE */
}
.titre-1 a span { /* définition de la balise <span> inclue dans <a> */
display: none;
}
.titre-1 a:hover span { /* définition de la balise <span> au survol */
display: inline;
position: relative;
top: 10px; /* positions et dimensions du calque, que vous pouvez changer à loisir */
left: 10px;
color: black;
}

.titre-1 a div { /* définition de la balise <div> inclue dans <a> */
    display: none;
}
.titre-1 a:hover div { /* définition de la balise <div> au survol */
    display: block;
    margin: 0 0 0.6em 0;
    padding: 0.8em;
    position: relative;
    top: 10px; /* positions et dimensions du calque, que vous pouvez changer à loisir */
    left: 0px;
    color: black;
    background-color: #FFFFEE;
    font-size: 0.8em;
    font-weight: normal;
}
.titre-1 a:active div { /* définition de la balise <div> au clic */
}

.title-box-main {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    /* height: 260px; */
    background-color: transparent;
border: 1px solid red;
}

.title-box-tab {
    font-weight: bold;
}

.title-box-panel {
    position: absolute;
    border: 2px;
    border-color: #999999;
    background-color:#ffffee;
    /* border-style: outset; */
    border: 1px solid grey;
    width: 98%;
    /* height: 214px; */
    left: 0px;
    top: 0px;
    margin: 0px;
    padding: 6px;
}

/********************/
/* CCS Fiche pratiques */
/********************/
.tab-fiche-pratique {
    /* border: 2px dashed grey; */
    margin: 1em auto;
}
.tab-fiche-p-case {
    width: 49%;
    vertical-align: top;
    text-align: left;
}
.fiche-p {
    font-weight: bold;
    /* margin: 4px 1em 0.5em 16px; */
    padding: 0 1em 0.5em 0.5em;
    margin: 5px 1.5em 0.4em 1.5em;
    /* color: orange; */
    border: 2px solid grey;
    /* min-height: 38px; */
}

/*************/
/* CSS Cartes */
/************/
.tab-cartes-prompt {
    margin: 0 auto; /* 0.8em auto; */
}
.tab-cartes {
    border: 2px dashed grey;
    margin: 1em auto;
}
.tab-cartes-titre {
    padding: 0.5em 2.5em;
    vertical-align: middle;
    background-color: #ddd;
    /* background: #ddd url(uploads/images/site/fd-carte.gif) repeat-x 0 0; */
    font-weight: bold;
}
.tab-carte-BdR {
    vertical-align: top;
    padding: 1em 1em 0 0;
}
.tab-carte-Mars {
    vertical-align: top;
    padding: 1em 0 0 1em;
}

/***************************/
/* CSS Pour le Tag ViewCentre */
/***************************/
.tb-centre-table {
    table-layout: fixed;
    margin: 0.8em auto 1em auto;
    border-collapse: collapse;
}

.tb-centre-tr1 {
    height: 1.5em;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    font-weight: bold;
    text-align: left;
    background: #DDDDDD;
}

.tb-centre-tr2 {
    height: 1.2em;
    text-align: left;
    background: #FFEECC;
}

.tb-centre-trsep {
    padding-bottom: 0.5em;
}

.tb-centre-nom {
    padding: 0.2em 0.5em;
}

.tb-centre-metro {
    padding: 0.2em 0.5em;
    font-weight: normal;
}

.tb-centre-adresse {
    padding: 0.2em 0.5em;
}

.tb-centre-ville {
    font-weight: bold;
    padding: 0.2em 0.5em;
}

.tb-centre-tel1 {
    padding: 0.2em 0.5em;
}

.tb-centre-fax1 {
    padding: 0.2em 0.5em;
}

.tb-centre-tel2 {
    padding: 0.2em 0.5em;
}

.tb-centre-fax2 {
    padding: 0.2em 0.5em;
}

.tb-centre-email {
    padding: 0.2em 0.5em;
    font-style: italic;
}

.tb-centre-commentaires {
    padding: 0.2em 0.5em;
    font-style: italic;
    background: #DDDDDD;
}

/************************************/
/* CSS Pour la liste des centres (gestion) */
/************************************/
.rep-table {
	table-layout: fixed;
	margin: 0 auto 0.6em 4em;
	border-collapse: collapse;
}

.rep-cell1 {
    /* width: 20em; */
    width: 40%;
    height: 1.8em;
    margin: 0.7em 0 0 0.7em;
    padding: 0.2em 0.4em 0.2em 0.7em;
    border-bottom: 1px dotted black;
    font-weight: bold;
    text-align: left;
    background: #DDDDDD;
}

.rep-tel1 {
    width: 20%;
    text-align: right;
    margin: 0 0.5em;
    border-bottom: 1px dotted black;
}

.rep-cell3 {
    width: 30%;
    text-align: right;
    margin: 0 0.5em;
    border-bottom: 1px dotted black;
}

.rep-cell2 {
    /* width: 20em; */
    /* margin: 0.7em 0 0 0.7em; */
    /* padding: 0.2em 0.4em 0.3em 0.4em; */
    /* border-bottom: 1px solid black; */
    font-style: italic;
    text-align: right;
    /* font-size: 0.3em; */
}

.rep-tel2 {
    width: 28px;
    margin: 2px;
    background: url(uploads/images/site/tel2.gif) no-repeat 50% 50%;
    border-bottom: 1px solid black;
}

.rep-cell4 {
    width: 10em;
    margin: 0.7em 0 0 0.7em;
    border-bottom: 1px solid black;
    padding: 0.2em 0.4em 0.2em 0.4em;
    text-align: left;
}

/***************/
/* CSS Diverses */
/***************/
.requete {
   margin: 1em 10% 1em 10%;
   padding: 0.8em 1em 0.8em 1em;
   background-color: #bcbcbc;
   border: 1px solid #090909;
   text-align: left;
}

.resume-card {
   margin: 10px 150px 10px 150px;
   padding: 1em 2em 1em 2em;
   background-color: #ababab;
   border: 1px solid #090909;
   text-align: left;
}

.succes {
   margin: 10px 150px 0px 150px;
   border: 1px solid green;
   font-weight: bold;
   color: green;
}

.echec {
   margin: 10px 100px 0px 100px;
   border: 1px solid red;
   font-weight: bold;
   color: red;
}

/********************
Arrondi - Sommaire
*********************/
.rndcor_box_yellow {
    background: url(uploads/images/site/rndcor_tl_yellow.png) no-repeat top left;
    margin: 0 auto;
}
.rndcor_top_yellow {
    background: url(uploads/images/site/rndcor_tr_yellow.png) no-repeat top right;
}
.rndcor_bottom_yellow {
    background: url(uploads/images/site/rndcor_bl_yellow.png) no-repeat bottom left;
}
.rndcor_bottom_yellow div {
    background: url(uploads/images/site/rndcor_br_yellow.png) no-repeat bottom right;
}
.rndcor_content_yellow {
    background: url(uploads/images/site/rndcor_r.png) top right repeat-y;
    margin: 20px 0;
}

.rndcor_top_yellow div, .rndcor_top_yellow,
.rndcor_bottom_yellow div, .rndcor_bottom_yellow {
    width: 100%;
    height: 15px;
    font-size: 1px;
}
.rndcor_content_yellow, .rndcor_bottom_yellow {
    margin-top: -22px;
}
.rndcor_content_yellow {
    padding: 0 15px;
    margin-top: 0px;
}

/********************
Arrondi - Menus
*********************/
.rndcor_box_menu {
    background: url(uploads/images/site/rndcor_tl_menu.png) no-repeat top left;
    margin: 0 auto;
}
.rndcor_top_menu {
    background: url(uploads/images/site/rndcor_tr_menu.png) no-repeat top right;
margin-top: 0px;
}
.rndcor_bottom_menu {
    background: url(uploads/images/site/rndcor_bl_menu.png) no-repeat bottom left;
}
.rndcor_bottom_menu div {
    background: url(uploads/images/site/rndcor_br_menu.png) no-repeat bottom right;
}
.rndcor_content_menu {
    background: url(uploads/images/site/rndcor_r.png) top right repeat-y;
    margin: 20px 0;
}

.rndcor_top_menu div, .rndcor_top_menu,
.rndcor_bottom_menu div, .rndcor_bottom_menu {
    width: 100%;
    height: 15px;
    font-size: 1px;
}
.rndcor_content_menu, .rndcor_bottom_menu {
    margin-top: -22px;
}
.rndcor_content_menu {
    padding: 0 15px;
    margin-top: 0px;
}

/****************/
/* CSS WinTab */
/************/
.wt-main {
    width: 500px;
    position: relative;
    top: 0px;
    left: 0px;
    height: 260px;
    background-color: transparent;
}

.wt-tab {
    /* font-family: sans-serif; */
    line-height: 150%;
    font-weight: bold;
    position: absolute;
    text-align: center;
    border: 2px;
    border-color: #999999;
    background-color: #ffffee;
    border-style: outset;
    border-bottom-style: none;
    width: 90px;
    margin: 0px;
    height: 30px;
    top: 0px;
}

.wt-panel {
    /* font-family: sans-serif; */
    font-size: smaller;
    position: absolute;
    border: 2px;
    border-color: #999999;
    background-color:#ffffee;
    border-style: outset;
    width: 500px;
    height: 214px;
    left: 0px;
    top: 30px;
    margin: 0px;
    padding: 6px;
}

/* End of 'AISMT13 CSS : Plus' */

/* Start of CMSMS style sheet 'AISMT13 CSS : Centre Détail' */
.centre-detail {
    text-font: arial;
}
/* End of 'AISMT13 CSS : Centre Détail' */

/* Start of CMSMS style sheet 'Calendar CSS - AISMT13' */
/*
{cms_module module='Calendar' table_id='big'}
*/

/* make all links red */
.calendar tr td a {
  color: red;
}

/* highlight "today" for the small calendar */
.calendar-today {
  font-weight: bold;
}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title {
  display: none;
}

#cal-upcominglist h2
,#cal-upcominglist .calendar-date
,#cal-upcominglist .calendar-summary {
  display: inline;
  margin-right: 5px;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1 {
  color: red;
  font-size: 120%;
}
#cal-list h2, cal-upcominglist h2 {
  font-size: 110%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big {
  margin: 0px;
  border-collapse: collapse;
  border: 1px solid black;
}

/* nice squares for the #big table */
#big th {
  border: 1px solid black;
  padding: 3px;
  width: 75px;
}

#big td {
  border: 1px solid black;
  vertical-align: top;
  padding: 3px;
  height: 75px;
  width: 75px;
}

/* format summaries nicely in #big */
#big ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #big */
#big td
{
  background-color: silver;
}

#big .calendar-day
{
  background-color: #80ff80;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #8080ff;
}

/** large calendar rules (assuming table_id='smallcal') **/
/* border on for #smallcal */
#smallcal {
   margin: 0px;
   width: 190px;
   border-collapse: collapse;
   border: 1px solid black;
   text-align: center;
   font-family: Arial, sans-serif;
   font-size: 8pt;
}

/* nice squares for the #smallcal table */
#smallcal th {
   border: 1px solid black;
   padding: 1px;
   height: 18px;
   width: 20px;
   background-color: #FFEECC; /* #F8D2AC;  #A9E; */
}

#smallcal td {
   border: 1px solid black;
   vertical-align: top;
   padding: 1px;
   height: 16px;
   width: 20px;
}

/* format summaries nicely in #smallcal */
#smallcal ul {
  margin: 0px;
  padding: 0px;
  padding-left: 2px;
}

#smallcal li {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #smallcal */
#smallcal td {
    /*background-color: #efefef;*/
    color: #eee;
    background-color: #333;
}

#smallcal .calendar-day {
  background-color: #80ff80;
}

#smallcal .calendar-today {
  font-weight: normal;
  color: #423;
  background-color: #90bade; /*#8080ff;*/
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title {
  display: none;
}
/* End of 'Calendar CSS - AISMT13' */

