/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* @override http://www.casanova-regie.com/stylesheet.php?cssid=42&mediatype=screen */

/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* @override http://www.casanova-regie.com/stylesheet.php?cssid=42&mediatype=screen */

/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* @override http://www.casanova-regie.com/stylesheet.php?cssid=42&mediatype=screen */

/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* @override http://www.casanova-regie.com/stylesheet.php?cssid=42&mediatype=screen */

/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* Start of CMSMS style sheet 'CasaNovaStyle' */
/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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: 75%/1em "Lucida Grande", Lucida, Verdana, sans-serif;
}

/*
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: none;
/* 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: #fff; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;/* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #fff;
}

/*****************
basic layout 
*****************/
body {
   margin: 0;
	background: #331122 repeat-x;

}

/* center wrapper, min max width */
div#pagewrapper {     /* this centers wrapper */
   max-width: 100%; /* IE wont understand these, so we will use javascript magick */
   min-width: 1024px;
   background-color: #331122;
   color: white;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 180px;
	background-color: #FFF;
}

div#header h1 a {
/* you can set your own image here */
   background: url(uploads/images/Logo-Casa.jpg) no-repeat 50% 12px; 
   display: block; 
   height: 180px;             /* 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#search {
   float: left;
     /* enough width for the search input box */
   text-align: center;
   padding: 0.6em 0 0.2em 0;
	width: 150px;
}

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 solid #D6C8A5;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 


div#main {
   margin-left: 30%;
	float: none;
}

div#main p strong{
	font-size: 30px;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 200px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;
	margin-right: 20px;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #331122;
   background-color: #D6C8A5;
	border-top: 1px solid #D6C8A5;
	height: 200px;
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #331122; /* needed becouse 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;
   border-bottom: 1px solid #1D0914;
	margin-bottom: 1em;
	margin-right: 0;
	margin-left: 0;
}

/* relational links under content */
div.left49 p {

	font-weight: normal;
	font-style: normal;
	color: #1D0914;
	margin-bottom: 0;
	padding-top: 20px;
	padding-bottom: 20px;
}

div.left49 a:hover {
	font-weight: normal;
	font-style: normal;
	color: #F76204;
}

a span.searchhilite {
	font-weight: bold;
	color: #F76204;
	font-size: 3em;
}

span.searchhilite {
	font-weight: bold;
	color: white;

	list-style-type: none;
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {
	background-color: #331122;
	padding-top: 1em;
	margin-left:25px; clear:both;
	padding-bottom: 1em;
}
}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0;
/* set borders around header */
   border-bottom: 1px none #e7ab0b; 
   border-left: 1.1em none #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em;
	font-weight: normal;
	font-style: normal;
	padding-bottom: 0;
}
div#content h3 {

   line-height: 1.5em;
   margin: 1em 0;
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
}
div#content h4 {
   color: #D6C8A5; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
font-size: 1.2em;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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 */

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%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */

span.instructiontext a{
		color: #F76204;
}

span.instructiontext {
	font-weight: normal;
	font-style: normal;
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}


dl#menu dt a:hover h2{
	color: white;
}

#menu li {
text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 1.2em;
	color: white;
}

#menu ul {
	list-style-type: none;
	margin-bottom: 15px;
}

#menu ul li a {
	color: white;
	font-weight: bold;
}

#menu ul li a:hover {
	color: #D6C8A5;
	font-weight: bold;
}

dl#menu{
	margin-bottom: 20px;
	border-bottom: 1px solid white;
	padding-bottom: 15px;
}

dd#smenu{
	
}

div#sidecontact{
	margin-top: 20px;
	margin-bottom: 40px;
}

div.textcontact {
	padding-left: 15px;
}

div.textcontact h2{
	color: #F76204;
}

div#catalogue {
	margin-bottom: 30px;
	margin-top: 20px;
}

div.textnew {
	padding-left: 15px;
	padding-right: 15px;
}

div.textnew2 {
	padding-left: 15px;
	padding-right: 15px;
	color: #1D0914;
}

div.textnew2 ul {
	padding-left: 20px;
	padding-right: 15px;
	color: #1D0914;
	list-style-type: square;
	font-size: 15px;
	margin-bottom: 1em;
}

div.textnew2 ul li {
color: #1D0914;
	padding-top: 5px;
	padding-bottom: 5px;
}

div.textnew h2{
	color: #F76204;
}

div.textcata{
	padding-right: 15px;
	padding-left: 15px;
}

div.textcata h2{
	color: #F76204;
}

div.linkhouse{
	text-align: right;
	padding-top: 10px;
}

div.linkhouse a{
	color: #fff;
}

div.linkhouse a:hover{
	color: #331122;
}

div.linkhouse2{
	text-align: right;
	padding-top: 10px;

}

div.linkhouse2 a{
	color: #1D0914;
}

div.linkhouse2 a:hover{
	color: #331122;
}

/* End of 'CasaNovaStyle' */
/* End of 'CasaNovaStyle' */

/* 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 */




/* 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 { 
		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 'Navigation: Simple - Horizontal' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
   background-color: #D6C8A5;  /* background color for the entire menu row */
   width: 2024px;

	padding-bottom: 0;
	height: 50px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
}


/* the links, that is each list item */
div#menu_horiz a { /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #331122;
   display: block;
	font-size: 1.2em;
	height: 30px;
	padding: 20px 25px 0;
}

div#menu_horiz form { /* padding inside the list item box */
   color: #F76204;
	height: 30px;
	padding: 20px 25px 0;
	float: left;
	background: url(uploads/images/fondsearch.png) no-repeat -70px 10px;
}

div#menu_horiz form h2 { /* padding inside the list item box */
	float: left;
	font-size: 1.2em;
	font-weight: normal;
	font-style: normal;
	margin-right: 10px;
}

div#menu_horiz form input{ /* padding inside the list item box */
	float: left;
	font-size: 1.2em;
	font-weight: normal;
	font-style: normal;
	margin-right: 10px;
	border-style: none;
	color: #F76204;
}

#bouton{
	float: right;
}

#bouton input{
	float: right;
	border-style: none;
		background-color: #331122;
}



/* hover state for links */
div#menu_horiz li a:hover {
	color: white;

}
div#menu_horiz a.activeparent:hover {
   color: #331122;
      background-color: #D6C8A5;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a.activeparent {
      color: white;
	background-color: #331122;
}

div#menu_horiz li.activeparent a.activeparent:hover {
      color: white;
      background-color: #D6C8A5;
}

div#menu_horiz li.currentpage h3{
   color: white;
	font-weight: normal;
	font-style: normal;
	background-color: #331122;
}

div#menu_horiz li.currentpage:hover h3{
   color: white;
	font-weight: normal;
	font-style: normal;
      background-color: #D6C8A5
}

div#menu_horiz h3 { /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #331122;
   display: block;
	font-size: 1.2em;
	padding: 20px 1em 0;
	height: 30px;
}

/* End of 'Navigation: Simple - Horizontal' */

/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/


/* third level has some padding to have it stand out */

/* menu li block */

/** fix stupid ie bug with display:block; **/
/** end fix **/

/* first level links */

/* next level links, more padding and smaller font */

/* third level links, more padding */

/* hover state for all links */

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/

/* current page on third level, more padding */

/* section header */



/* separator */
/* End of 'Navigation: Simple - Vertical' */


div#cat{
	float: left;
}

div.ref{
	width: 47%;
	border: 1px solid #331122;
	margin-bottom: 1em;
	float: left;
	margin-right: 2%;
}

div.ref p{
	margin: 0.5em;
	color: #331122;
}

div.ref a img{
	width: 100%;
}



div.refac{
	width: 151px;
	margin-bottom: 1em;
	float: left;
	margin-left: 0.5em;
	margin-right: 0.5em;
	background: #D6C8A5;
}

div.refac p{
	margin: 0.5em;
	color: #331122;
	font-size: 1em;
	line-height: 1em;
}

div.refac a img{
	width: 149px;
		border: 1px solid #D6C8A5;
}

div#bas{
	background-color: #331122;
	float: left;
	width: 100%;
}


div#sidebar h3 {
   font-size: 1.5em; 
   }

.arrowlistmenu{
	padding-left: 15px;
	margin-bottom: 0;
}

.arrowlistmenu .menuheader{ 
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
	margin-bottom: 0;

}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/

}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px;

}

.arrowlistmenu ul li{
padding-bottom: 5px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #fff;
background: none no-repeat center; /*custom bullet list image*/
display: block;
padding: 4px 0 4px 5px;
 /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
font-size: 90%;
	margin-right: 35px;
}

.arrowlistmenu ul li a:visited{
	color: #F76204;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #F76204;
	background-color: white;
}

#contact{
	float: left;
	margin-bottom: 20px;
	width: 200px;
}

.regie{
	float: left;
	margin-bottom: 20px;
	width: 200px;
}

#blabla{
	float: left;
	width: 200px;
	margin-right: 20px;
}

#formulaire{
	float: left;
	margin-bottom: 30px;
}

.contactform fieldset {border-style: none;
}
.contactform fieldset legend {
	font-weight: normal;
	font-style: normal;
	font-size: 1.5em;
	color: #F76204;
	padding-bottom: 25px;
}
.contactform {
	padding: 8px 15px;
}
.contactform div {
	margin-top: 8px;
	margin-bottom: 8px;
}
.contactform div label {display: block; width: 15em;
	padding-bottom: 10px;
	font-size: 1.2em;
}
.contactform div .required {}

.contactform fieldset div input{
	background-color: #D6C8A5;
	height: 25px;
	border-style: none;
	margin-bottom: 1em;
}

.contactform fieldset div textarea{
	background-color: #D6C8A5;
	border-style: none;

}

.submit {margin-top: 1em;
	text-align: right;
}


/* set millions of background images */
.rbroundbox { background: url(uploads/images/nt.gif) repeat; }
.rbtop div { background: url(uploads/images/tl.gif) no-repeat top left; }
.rbtop { background: url(uploads/images/tr.gif) no-repeat top right; }
.rbbot div { background: url(uploads/images/bl.gif) no-repeat bottom left; }
.rbbot { background: url(uploads/images/br.gif) no-repeat bottom right; }

/* height and width stuff, width not really nessisary. */
.rbtop div, .rbtop, .rbbot div, .rbbot {
width: 100%;
height: 10px;
font-size: 1px;
}
.rbcontent { margin: 0 10px; }
.rbroundbox { width: 100%; margin: 0 auto; }



.newhouse{
	margin-top: 20px;
}

#tophouse{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

#newhousecontent01{

	float: left;
	width: 200px;
	margin-right: 20px;
}

#newhousecontent02{
	float: left;
	width: 200px;
	margin-right: 20px;
}

#newhousecontent03{
	float: left;
	width: 200px;
	margin-right: 20px;
}

#newhousecontent04{
	float: left;
	width: 200px;
	margin-right: 20px;
}

#into{

}

div.newhouse .rbroundbox2 {
	background: #F76204;
}
/* set millions of background images */
.rbroundbox2 { 	background-color: #F76204;
	background-image: none;
}
.rbtop2 div { background: url(uploads/images/tl3.gif) no-repeat top left; }
.rbtop2 { background: url(uploads/images/tr3.gif) no-repeat top right; }
.rbbot2 div { background: url(uploads/images/bl3.gif) no-repeat bottom left; }
.rbbot2 { background: url(uploads/images/br3.gif) no-repeat bottom right; }

/* height and width stuff, width not really nessisary. */
.rbtop2 div, .rbtop2, .rbbot2 div, .rbbot2 {
width: 100%;
height: 10px;
font-size: 1px;
}
.rbcontent2 { margin: 0 10px; }
.rbroundbox2 { width: 100%; margin: 0 auto; }

div.newlink2{
	width: 170px;
	height: 131px;
}

div.newlink2 img{
	float: left;
	width: 170px;
	height: 131px;
}

div#proprios{
	margin-bottom: 1.5em;
}

div.titrequi{
	padding-left: 15px;
	padding-right: 15px;
	color: #1D0914;
}

div#proprios p{
	margin-right: 15px;
	margin-left: 15px;
	border-top: 1px solid #F76204;
	padding-top: 10px;
		margin-bottom: 0px;
	color: #1D0914;
}

div#pros{
	margin-bottom: 1.5em;
}

div#pros p{
	margin-right: 15px;
	margin-left: 15px;
	border-top: 1px solid #F76204;
	padding-top: 10px;
		margin-bottom: 0px;
	color: #1D0914;
}

div#parts{
	margin-bottom: 1.5em;
}

div#parts p{
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 0px;

}

div.topqui{


	padding-top: 20px;
	color: #FFF;
		padding-bottom: 20px;
}

div.topqui h2{

	border-top: 1px solid #1D0914;
	padding-top: 20px;
	color: #FFF;
}

#recherche{
	margin-bottom: 20px;
}

#m3moduleform_1 h2{
	color: #F76204;
}

#m3moduleform_1{
	padding-left: 15px;
}

#m3moduleform_1 input{
	margin-left: 0;
	padding-left: 0;
	border: 2px solid white;

}


#recherche div.rbroundbox ul li{
	list-style-type: none;
	padding-left: 15px;
}

#recherche div.rbroundbox div.result{
	font-weight: normal;
	font-style: normal;
	font-size: 1.5em;
	list-style-type: none;
		color: #F76204;
	padding-left: 15px;
	padding-bottom: 10px;
	line-height: 1.2em;
}

.rbroundbox h2
{
	background-color: #1D0914;
	color: #F76204;
}

.rbroundbox2 h2
{
	color: #FFF;

}

span.nouveau{
		color: #F76204;
	font-weight: bold;
}

.album_content{
	float: left;
}

ul.albumlist{
	float: left;
}

li.thumb{
float:left; width:220px; margin:0px 10px 10px 0px; padding:0 0 0 0; height:195px; position:relative;
	list-style-type: none;
		border: 1px solid #331122;
}

li.thumb img{
float:left; width:200px; margin: 0 0 10px; padding:0 0 0 0; height:155px; position:relative;}

li.thumb a{
	width: 200px; height: 185px;
float:left;
	list-style-type: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

li.thumb a span.nouveau{
	width: 200px; height: 185px;
float:left;
	list-style-type: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

li.thumb a:hover{
		background-color: #44192e;
float:left;
	list-style-type: none;
}
p.nom{
	float: left;
	margin-bottom: 0;
}



ul.albumlist2{
	float: left;
}

li.thumb2{
float:left; width:220px; margin:0px 10px 10px 0px; padding:0 0 0 0; height:195px; position:relative;
	list-style-type: none;
	border: 1px solid #F76204;
}

li.thumb2 img{
float:left; width:200px; margin: 0 0 10px; padding:0 0 0 0; height:155px; position:relative;}

li.thumb2 a{
	width: 200px; height: 185px;
float:left;
	list-style-type: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

li.thumb2 a:hover{
		background-color: #44192e;
float:left;
	list-style-type: none;
}
p.nom{
	float: left;
	margin-bottom: 0;
}


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */


/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

/* End of 'CasaNovaStyle' */

