<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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&gt;body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2006-07-25 21:22:32 */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.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;
}

.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 {}
*/
/* Stylesheet: Module: News Modified On 2008-10-15 16:55:53 */
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }

#menuwrapper{ 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden;  */ 
   background-color: transparent;
   margin: 0 auto;
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li { 
   width: 200px; 
   background-color:#fff;
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0 0 0 20px; 
   padding: 0px; 
   height:37px;
}

#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
}

#primary-nav ul ul { 
   margin-top: 1px;
   margin-left: -1px;
   left: 100%; 
   top: 0px; 
}
	
#primary-nav li { 
   margin-left: -1px;
   float: left; 

}
#primary-nav li li { 
   margin-left: 0px;
   margin-top: -1px;
   float: none; 
   position: relative; 
}

/* Styling the basic apperance of the menu elements */
#primary-nav a { 
   display: block; 
   margin: 0px; 
   text-decoration: none; 
   color: #FFF;
}
#primary-nav li a { 
   border-right: 1px solid #C0C0C0;
   border-left: 1px solid #C0C0C0;
   padding: 12px 10px; 
}
#primary-nav li li a { 
   border: 1px solid #C0C0C0;
}	
#primary-nav li, #primary-nav li.menuparent { 
   background-color: transparent; 
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav li.menuactive { 
    color:#FFB421;
}


/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
/* arrow for menuparents */
   background-image: url('/reservation/images/cms/arrow.gif'); 
   background-position: center right; 
   background-repeat: no-repeat; 
}


/* Styling the apperance of menu items on hover */

#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
    background: transparent url('/reservation/images/auto-planning/fond-liens-entete-on.gif') repeat-x 0 0;
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}


/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}
/* Stylesheet: menu_horiz_css Modified On 2017-11-28 15:21:12 */
*{
    margin:0;
    padding:0;
    border:0;
}

body{
    text-align:center;
    margin:0;
    background:#1094D2 url('/reservation/images/auto-planning/bleu-fond-page.jpg') repeat-x;
    font-family:Verdana;
    color:#333333;
    font-size:0.8em;
}

h1{
    color:#066BB3;
    font-size:1.5em;
    margin:15px 0 10px 0;
}

h2{
    color:#066BB3;
    font-size:1.5em;
    margin:15px 0 10px 0;
    text-align:center;
}

h3{
    color:#066BB3;
    font-size:1.3em;
    margin:15px 0 10px 0;
}

h4{
    color:#666666;
    font-size:1em;
    margin:15px 0 10px 0;
    text-align:right;
     text-decoration:none;
}


p{
    margin:10px 0 10px 0;
}

#ombre{
    width: 972px; 
    margin: 0 auto;
    z-index:-1;
    background:transparent url('/reservation/images/auto-planning/ombre-page.jpg') no-repeat;
}

#conteneur{
    background:white url('/reservation/images/auto-planning/fond-corps-page-sommaire.gif') repeat;
    width:950px;
    margin:0px auto;
    position: relative;
}

#conteneur2{
    background:transparent url('/reservation/images/auto-planning/fond-sommaire-voiture-bas.jpg') no-repeat left bottom;
    width:950px;
    margin:0px auto;
    position: relative;
}


#entete{
    width:950px;
    margin:0px auto;
    height:139px;
    position: relative;
    text-align:left;
    background: #FFF url('/reservation/images/auto-planning/fond-entete.jpg') no-repeat left top;
}

#entete h1 {
    text-indent: -999em;
    text-decoration:none;
    margin:0;
    float:left;
}

#entete img {
    margin:0;
    float:left;
}

#liensHaut{
    width:950px;
    background: transparent url('/reservation/images/auto-planning/fond-liens-entete.jpg') repeat;
    height:37px; 
    text-align:center;
}

#liensHaut a{
    font-size:0.9em;
    font-weight:bold;
    color:white;
    text-align:right;
}

#sommaire{
    float:left;
    width:244px;
    height:500px;
    padding-top:30px;
    background:transparent;
}

#menu_vert li{
    list-style:none;
}

#menu_vert ul li a{
    background:transparent url('/reservation/images/auto-planning/fond-lien-sommaire.gif') no-repeat 0 0;
    display:block;
    line-height:25px;
    text-align:left;
    padding:0 22px;
    margin-top:-1px;
    text-decoration:none;
    border-top:1px solid #B8D3E6;
    border-bottom:1px solid #B8D3E6;
}

#menu_vert a:hover{
    background:transparent url('/reservation/images/auto-planning/fond-lien-sommaire-on.gif') no-repeat 0 0;
}

#sommaire img{
   float: left;
   width: 192px;
   display: inline;  /* FIX ie doublemargin bug */
   margin: 0 20px 0 0;
   padding-top:10px;
}

#contenu{
    text-align:left;
    margin:30px 30px 0 275px;
    font-size:1em;
}
div#contenu ul,
div#contenu ol,
div#contenu dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#contenu  ul li,
div#contenu  ol li {
   margin: 0 0 0.25em 3em;
}


#piedPage{
    width:950px;
    margin:0px auto;
    background: url('/reservation/images/auto-planning/fond-liens-bas.gif') repeat;
    height:44px;
    text-align:center;
    line-height:37px;
    color:#BFE0EE;
    clear:both;
    font-size:0.88em;
}

#piedPage a{
    color:#BFE0EE;
    text-decoration:none;
}

.ptitBleu{
    font-size:10px;
    color:#066BB3; 
    border:1px #2F93BD dashed;
    padding:7px;
    background-color:#E1F0F7;
}

a.bouge img {
    margin: 10px 0px 12px 0px; 
    padding:0;
    background:transparent;
}

a.bouge:hover img {
    margin: 12px 0px 10px 0px; 
    padding:0;
    background:transparent;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}
input,textarea,select{
	border:1px #0099CC solid
}
/* Stylesheet: auto-planning Modified On 2017-11-28 15:10:48 */
</pre></body></html>