/* Start of CMSMS style sheet 'theme : le guitariste' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1.25em;
}

/*
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 */
   color: #000; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #666;            /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   color: #be0027; 
}

/*****************
basic layout 
*****************/
body {

   color: #333;
   margin-top:5px; /* gives some air for the pagewrapper */
   background: #ccc url(uploads/theme/bodybg.gif) repeat-x; 
}

/* center wrapper, min max width */
div#pagewrapper {
   /*border: 1px solid #000;*/
   margin: 0 auto;     /* this centers wrapper */
width : 950px;

color: black;
position:relative;  
border: 1px solid #461F00;
   background: transparent url(uploads/theme/guitaristes.gif) no-repeat bottom right; 
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
margin:0;
padding:0;
 /* adjust according your image size */
position:relative;
background:  url(images/cms/header.jpg) no-repeat; 
height: 145px;
display:block;
top:-1px;
}



div#header a {
display:block;
height:100px;
width:220px;
position:absolute;
left:330px;
top:10px;
}




div#search {
   background:  url(images/cms/bg-search.gif) no-repeat top right; 
   float: right;
   width: 26em;     /* enough width for the search input box */
   text-align: right;
   padding: 0 2.5em 0.4em 0;
margin-right: 0.2em;
   color:#fff;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 1.5em; /* 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 */
   
   border-bottom: 1px dotted #000;
background: url(uploads/theme/bgcontent.gif) repeat-x; 

}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#content {
   background: #fff;
}

div#main {
   margin-left: 2%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
   margin-top: 0; /* and some air on the right */


}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
background:#ececec;
   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: #6F6F6F;
   background: #DFDFDF;

}

div#footer p {
   font-size: 0.8em;
   padding: 0.2em;      /* some air for footer */
   text-align: right;
   margin:0;
   color: #6F6F6F;
}

div#footer p a {
   color: #6F6F6F; /* needed becouse footer link would be same color as background otherwise */
}

div#horaires {
font-family: Tahoma, Arial, Helvetica, sans-serif;
   clear:both; 
   float:right;
padding:5px 3px 0 0;
   color: #fff;
}

div#horaires h2 {
text-align:right;
   font-size: 1.1em;
padding-bottom:0.2em;
   color: #f62d1e;
}


div#horaires p {
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 0.9em;
   padding: 0.1em;
   text-align: right;
   margin:0;
}

div#horaires p.tel{
   font-size: 1em;
   color: #fadc20;
padding-top:0.1em;
font-weight:bold;
}




/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 0.8em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  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;
}




/********************
CONTENT STYLING
*********************/
div#content {
padding-top:5px;

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: black;
  background: url(uploads/theme/bgtitle.jpg) no-repeat; 
   font-size: 1.2em; 
   text-align: left; 
/* some air around the text */
   padding-left: 37px;
   padding-top: 3px;
   line-height: 2em;
/* and some air under the border */
   margin: 0.4em 0 0.6em 0;
}
div#content h3 {
   color: #DF2B1A;
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   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 {
   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;
}
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 */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
list-style-type:none;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

a.button{
/*-x-system-font:none;*/
background:#ED6502 url(images/cms/btn_bg.gif) repeat-x scroll 0pt 100%;
border-color:#FF981F ;
border-style:solid;
border-width:1px;
color:#FFFFFF;
cursor:pointer;
font-family:arial,helvetica,sans-serif;
font-size:14px;
font-weight:bold;
padding:2px 4px;
text-align:center;
text-decoration:none;
display:inline-block;
}
/* End of 'theme : le guitariste' */

