/* Start of CMSMS style sheet 'css cassegrain' */
/* Start of CMSMS style sheet 'css cassegrain' */
/*****************
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: Adobe Caslon Pro, serif;
   font-size: 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;
   display: block;
}

/*
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: #840f25; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #840f25;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: inherit;
   color: #840f25;
}

/*****************
basic layout 
*****************/
body {
   background-color: #BAAE7F;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;

  width: 800px; 
  margin-left: auto;
  margin-right: auto;
   text-align: left;
   background-color: #DDDA9B;
}


/*
*** 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: 149px;    /* adjust according your image size */
   background: #DDDA9B url(uploads/images/img_cassegrain/fond_header.png) no-repeat right;      
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px; 
   display: block;
   height: 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 */
}

/*** menu 2 (le horizontal one) ***/

div#menu2 {
   height: 25px;    /* adjust according your image size */
   background-image: url(uploads/images/img_cassegrain/fond_menu2.png);
   background-repeat:  repeat-x;
   text-align: right;
}


div#menu2 li {
   list-style-type: none;
   display: inline;
}

div#menu2 a {
   margin-right: 40px;
   margin-top: 2px;
   font-size: 20px;
   color: #B55710;
   font-weight: bold;
   font-family: serif;
   text-decoration: none;
   line-height: 100%;
}

div#menu2 a:hover {
   color: #843D0D;
   text-decoration: none;
   background-color: transparent;
}





/* MENU 1 */

div#menu1 {
   background-color: transparent;
   /*float: left;*/
   z-index: 10;
}


div#menu1 a {
   display: block;
}


div#menu1 a#lien1 {
   background-image: url(uploads/images/img_cassegrain/salle.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
   width: 249px;
}
div#menu1 a#lien1:hover {
   background-image: url(uploads/images/img_cassegrain/salle_over.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
}


div#menu1 a#lien2 {
   background-image: url(uploads/images/img_cassegrain/menu.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
   width: 300px;
}
div#menu1 a#lien2:hover {
   background-image: url(uploads/images/img_cassegrain/menu_over.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
}


div#menu1 a#lien3 {
   background-image: url(uploads/images/img_cassegrain/condition.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
   width: 352px;
}
div#menu1 a#lien3:hover {
   background-image: url(uploads/images/img_cassegrain/condition_over.png);
   background-repeat: no-repeat;
   background-position: left top;
   background-color: transparent;
}






/********************
CONTENT STYLING
*********************/
div#content {
   background: #DDDA9B url(uploads/images/img_cassegrain/fond_content.png) no-repeat right top;
   z-index: 1;
   position: relative;
}



/* HEADINGS */
div#content h1 {
   font-size: 4em; /* font size for h1 */
   font-style: italic;
   position: absolute;
   top: 40px;
   right: 40px;
   color: #e27112;
}
div#content h2 {
	color: #E27113; /*Color Accueil*/
	color: #B55710;
	font-size: 2.2em;
   line-height: 1.5em;
	margin: 0;
}
div#content h3 {
   color: #7C9E22; 
   font-size: 1.6em;
   line-height: 1.3em;
   margin: 0;
}
div#content h4 {
   color: #E27113; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0;
}
div#content h5 {
   color: #7C9E22; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #7C9E22; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */



/* TEXT */
p {
   font-size: 1em;
   margin: 0;
   padding: 0;
	color: #B55710;
}

hr {
	clear: both;
}


div#content a {
	color: #7C9E22;
	font-size: 1.2em;
}
div#content a:hover {
	color: #7C9E22;
	font-size: 1.2em;
}

blockquote {
   
}
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 */
ul.list1,
ol.list1,
dl.list1 {
   font-size: 1.6em;
   /*line-height: 2em;*/
   margin: 0.5em 0 0.5em 20px;
   color: #6DB720;
   font-weight: bold;
}
.list1 li {
	list-style-image: url(uploads/images/img_cassegrain/fleche16.png);
	list-style-position: inside;
   padding-top: 0.5em;
}

/* END LISTS */


/*******************/
/* SpÃ©cial accueil */

/* PROMO */
div#content div#promo {
	text-decoration: blink;
	text-align: center;
	width: 400px;
	margin: 2em 1em 2em 20px;
}

div#content div#adresse {
   position: absolute;
	bottom: 1.5em;
	right: 20px;
	text-align: right;
}

div#content #accroche {
	position: absolute;
	top: 140px;
	right: 20px;
}

div#content #promominute {
	position: absolute;
	top: 140px;
	right: 20px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 1.2em;
	background-image: url(uploads/images/img_cassegrain/fond_promo_minute.png);
	background-repeat: no-repeat;
	width: 288px;
	height: 120px;
}
div#content #promominute p {
	margin: 16px 0 12px 0;
	color: #843d0d;
	line-height: 2em;
}

/************************/
/* FIN accueil */



/************************/
/* DEBUT Menus */

div#content p#food {
	position: absolute;
	right: 30px;
	bottom: 53px;
}

div#content #menu {
	width: 400px;
	margin: 2em 0 4em 1.5em;
	text-align: center;
}
div#content #menu p {
	margin: 1.5em 0 0em 0;
	padding-top: 40px;
	background-image: url(uploads/images/img_cassegrain/separateur_menu.png);
	background-repeat: no-repeat;
	background-position: top center;
	font-weight: normal;
	font-size: 1.5em;
	font-style: italic;
	color: #b5570f;
}
div#content #menu dfn {
	font-size: 0.7em;
	color: #333;
}
div#content #menu a {
	font-size: 1.6em;
	text-decoration: none;
	padding-top: 3em;
}
div#content #menu a:hover {
	text-decoration: underline;
}

div#content #menu br {
	font-size: 0.4em;
}
div#content #menu #infolegal {
	font-size: 1em;
	color: #333;
	font-style: normal;
	background-image : none;
}

/************************/
/* FIN Menus */



/************************/
/* DEBUT Conditions */

div#content #condition {
	margin: 1.6em 0 1em 20px;
}

div#content #condition h2 {
	
}
div#content #condition h3 {
	
}
div#content #condition p {
	font-size: 1.2em;
	margin: 0.2em 0 1.5em 0;
}
div#content #condition img {
	display: inline;
}

/************************/
/* FIN Conditions */



/************************/
/* DEBUT Salles(détails) */

div#content #photo_salle {
	position: absolute;
	top: 112px;
	left: 20px;
}
div#content #photo_salle img {
	border: 0.2em solid #502618;
}
div#content #photo_salle a {
	font-weight: bold;
	text-decoration: none;
	font-size: 2.8em;
	color: #c7c259;
}
div#content #photo_salle a:hover {
	font-weight: bold;
	color: #7b9e21;
}

div#content #coment_salle {
	margin: 20px 20px 1em 20px;
	text-align: left;
	width: 260px;
	float: right;
	font-size: 1.3em;
}
div#content #coment_salle strong {
	color: #502517;
	font-weight: bold;
}

div#content #equipement_salle {
	background-color: #502618;
	border: 0.3em solid #502618;
	margin: 1.4em 0 0 0;
	color: #e9c5b9;
	font-weight: bold;
	font-size: 0.8em;
	width: 180px;
	text-align: center;
}
div#content #equipement_salle img {
	display: block;
	margin-top: 0.2em;
	/*width: 10em;
	height: 10em;*/
}

/************************/
/* FIN Salles (détails) */












/*******************/
/* SPECIAL CLASS */

/* Coté GAUCHE */
.col2gch {
	float: left;
	margin: 1.5em 0 1em 1.5em;
	text-align: left;
	width: 370px;
}

.col2gch p {
	color: #502719;
	font-size: 1.2em;
}

.col2gch img {
	float: left;
	border: 3px solid #502719;
	margin-right: 10px;
}

/* CotÃ© DROIT */
.col2drt {
	float: right;
	margin: 1.5em 1.5em 1em 0;
	text-align: right;
	width: 370px;
}

.col2drt p {
	color: #502719;
	font-size: 1.2em;
}

.col2drt img {
	float: right;
	border: 3px solid #502719;
	margin-left: 10px;
}


.mainline {
	font-size: 1.4em;
	background-image: url(uploads/images/img_cassegrain/fleche12.png);
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 30px;
}


/************************/
/* FIN SPECIAL CLASS */






/* FOOOOOOTER */

div#footer {
   width: 800px;
   margin-left: auto;
   margin-right: auto;
}

/* End of 'css cassegrain' */


/* End of 'css cassegrain' */

