/*****************
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: Georgia, Geneva, Arial, Helvetica, sans-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;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   color: #f8a601; 
}

a:visited {
   text-decoration: none;
   color: #f8a601;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #000;
   color: #f8a601;
}

/*****************
basic layout 
*****************/
body {
   background-color: #fff;
  background-image: url(../uploads/images/back.jpg);
  	background-repeat: no-repeat;
	background-repeat: repeat-x; 
   color: #333;
   /*margin:1em;  gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   max-width: 723px; /* IE wont understand these, so we will use javascript magick */
   min-width: 723px;
   background-color: #272625;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 150px; /* adjust according your image size */
   width:723px;
   background-image:url(../uploads/images/instruments2.jpg);          
}

div#logo {
/* you can set your own image here */
   background: url(../uploads/images/logo_ecole.gif) no-repeat 0 25px; 
   display: block;
   width:199px;
   height: 110px;             /* 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 */
   top:40px;
   margin-left:16px;
   padding-top:25px;
   float: left;
}

div#search {
   float: right;
  /*  width: 23em;     enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   color:#999999;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   text-decoration:none;
   margin: 10px 0 10px 25px;     /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 10px;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
}
div.breadcrumbs a{ 
   text-decoration:none;
   color:#999;
}
div.breadcrumbs a:hover{ 
   text-decoration:none;
   color:#999;
   background-color:#000;
}
 div.breadcrumbs span.lastitem { 
   color:#999;
} 





div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 170px;    /* sidebar width, if you change this please also change #main margins */
   height:100%;
   /* display: inline;  FIX ie doublemargin bug */
   background-color:#1a1a1a;
   margin-left:25px;
   margin-right:25px;
   padding:10px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #999;
   background-color: #272625; /* same bg color as in header */
   font-size:9px;
   text-align:center;
   height:60px;
   padding-top:40px;
}




.colonne {
	width:190px;
	float:left;
	margin-bottom:45px;
}

div#colonne1 {
	margin-right:45px;
}
div#colonne2 {
	margin-right:45px;
}
div#colonne3 {
}
div#colonne4 {
	margin-right:45px;
}
div#colonne5 {
	margin-right:45px;
}
div#colonne6 {
}


/********************
CONTENT STYLING
*********************/

div#content {
	color:#e0e0e0;
	font-size:12px;
	line-height: 18px;
	margin-top:40px;
}


div#main {
	margin-left:25px;
 
}
div#main input, textarea, select{
	margin-bottom:5px;
	margin-top:-3px;
}
div#main textarea{
	width:400px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}



div#main_text {
	margin-right:25px;
	margin-top:25px;
	float:left;
	width:400px;
	display:block;
}

div#main_text_calendrier {
	margin-right:25px;
	margin-top:25px;
	float:left;
	width:450px;
	display:block;
}

div#main_photo {
	margin-right:25px;
	margin-top:25px;
	float:left;
	display:block;
}
div#main_carte {
	margin-right:25px;
	margin-top:0px;
	float:left;
	width:400px;
	display:block;
}


/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color:#f8a601;
   	font-size: 24px; 
   	text-align: left; 
	margin-right:30px;
	line-height:25px;
}h2 {
	color:#f8a601;
   	font-size: 24px; 
   	text-align: left; 
	margin-right:30px;
	line-height:25px;
}

div#content h3 {
   color: #999999; 
   font-size: 14px;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
   font-weight:lighter;
}
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 */
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%;   /* 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;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}



/* END LISTS */

.calendrier-mois{
	margin-bottom:15px;
}
.calendrier-cell-jour{
	float:left;
	width:50px;
	height:18px;
	overflow:hidden;
}
.calendrier-cell-qui{
	float:left;
	width:250px;
	height:18px;
	overflow:hidden;
}
.calendrier-cell-ou{
	float:left;
	width:150px;
	height:18px;
	overflow:hidden;
}
div#yoyo{
	background-color:#CC0099;
	margin-bottom:70px;
}

.calendar th {
	width:45px;
}
.upcominglist{
margin-bottom:15px;
}
