/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
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: 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: 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: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


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

/*****************
basic layout 
*****************/
body {
   background: #2e71b8 url(images/cms/bg.jpg) repeat-x; 
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: ;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 80em;   /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   background-color: #fff;;
   color: black;

}


/*** 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: 130px;    /* adjust according your image size */
   background: ;           
}

div#header h1 a {
/* you can set your own image here */
   background: url(images/cms/header.jpg) ;  
   display: block;
   height: 130px;             /* 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 */
}

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

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 dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
}


div#main {
   margin-left: 29%; /* 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 */
}

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 double margin bug */
   margin-left: 0;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #385C72; /* same bg color as in header */
}

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: #fff; /* 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  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 {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #294B5F; 
	font-size: 1.5em; 
	text-align: left; 
/* some air around the text */
	padding-left: 0.5em;
	padding-bottom: 1px;
/* set borders around header */
border-bottom: 1px dotted #E75802;
	 
	border-left: 0em solid #e7ab0b; 
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   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 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   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;
}
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 */
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;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

/*Mon code*/

.fond_liste_tuto
{
  background:url(images/cms/fd_liste.gif) repeat-x ;
  width:650px;
  height:110px;

}

.image_liste
{
  width:150px;
  height:100px;
}


  
.titre{
position: relative;
width: 250px;
left: 120px;
bottom: 95px;
font-size: 90%;


}

.niveau{
position: relative;
width: 150px;
left: 520px;
bottom: 105px;
font-size: 90%;
}
  
.descriptif{
position: relative;
width: 450px;
left: 120px;
bottom: 95px;
font-size: 90%;

}
.duree{
position: relative;
width: 175px;
left: 120px;
bottom: 90px;
font-size: 90%;

}
.video{
position: relative;
width: 125px;
height:30px;
left: 520px;
bottom: 110px;
font-size: 90%;
background: url(images/cms/voir_tuto.gif) no-repeat;

}

.video a{
position:relative;
left: 10px;
top:3px;
text-decoration:none;
 background: transparent;

}

/* css du formulaire de contact*/

  .nom_form, .adresse_mail_form , .confirm_adresse, .objet_form, .message_form, .url_form, .auteur_form{
line-height: 30px;
}

.contact_form{
background: ;

}


* jquery*/

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/

html, body {
min-height: 100%;
height: auto !important;
height: 100%
}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_window {
	font: 13px "Trebuchet MS", Verdana, "Lucida Grande", Tahoma, Helvetica, Sans-Serif;
	color: #666666;
	font-weight: bold;  
}

#TB_secondLine {
	font: 12px "Trebuchet MS", Verdana, "Lucida Grande", Tahoma, Helvetica, Sans-Serif;
	color:#666666;
}

#TB_window a:link {color: #ff9600;}
#TB_window a:visited {color: #ff9600;}
#TB_window a:hover {color: #72bdff;}
#TB_window a:active {color: #72bdff;}
#TB_window a:focus{color: #ff9600;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
	position: absolute;
	z-index:100;
	top: 0px;
	left: 0px;
	background-color:#000000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

#TB_window {
	position: absolute;
	background: #ffffff;
	z-index: 102;
	color:#666666;
	display:none;
	border: 4px solid #555555;
	text-align:left;
}

#TB_window img {
	display:block;
	margin: 15px 0 0 15px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
}

#TB_caption{
	height:25px;
	padding:7px 30px 10px 25px;
	float:left;
}

#TB_closeWindow{
	height: 25px;
	padding: 11px 25px 10px 0;
	float: right;
}

#TB_closeAjaxWindow{
	padding:5px 10px 7px 0;
	margin-bottom:1px;
	text-align:right;
	float:right;
}

#TB_ajaxWindowTitle{
	float:left;
	padding:7px 0 5px 10px;
	margin-bottom:1px;
}

#TB_title{
	background-color:#e8e8e8;
	height:27px;
}

#TB_ajaxContent{
	clear:both;
	padding:2px 15px 15px 15px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

#TB_ajaxContent p{
	padding:5px 0px 5px 0px;
}

#TB_load{
	position: absolute;
	display:none;
	height:100px;
	width:100px;
	z-index:101;
}

#TB_HideSelect{
	z-index:99;
	position:absolute;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}


/*ils  l'ont fait*/

#videos_envoyees{
  background:url(images/cms/bg.jpg) repeat-x ;
  width:630px;
  height:220px;
padding-top:1em;

}
/*fin vid�os envoy�s*/

/*Depannage et formation*/

.liste_services_b{
position:relative;
left: 20px;
}
.liste_services_c{
position:relative;
left: 40px;
}
.liste_services_d{
width:400px;
position:relative;
left: 60px;
font-size: 1.5em;
line-height: 2em;
   margin: 0 0 0.25em 0;
}
.liste_services_a1{
color:#ff0000;
font-size: 1.5em;
margin-bottom: 1.5em;
border-bottom: 1px solid #ff0000;
padding-bottom: 0.3em;
}
.liste_services_a2{
color:#a3075a;
font-size: 1.5em;
margin-bottom: 1.5em;
border-bottom: 1px solid #a3075a;
padding-bottom: 0.3em;

}

.liste_services_a3{
color:#2165e0;
font-size: 1.5em;
margin-bottom: 1.5em;
border-bottom: 1px solid #2165e0;
padding-bottom: 0.3em;


}
 .liste_services_a1 p, .liste_services_a2 p, .liste_services_a3 p {
color:#000000;
font-size: 1em;
}



/*fin liste services* d�pannage et formation*/

/*Bouton orange cliquable*/


#bouton_orange {
position: relative;
left:200px;
  width:200px;
  height:100px;
text-decoration:none;
background-color: #ffffff;
   color: #ffffff;
}
#bouton_orange a{
  width:200px;
  height:100px;
text-decoration:none;
background-color: #ffffff;
   color: #ffffff;
}

#bouton_orange a:hover{

left: 50px;  
width:200px;
  height:100px;
text-decoration:none;
background-color: #ffffff;
   color: #ffffff;
}


/*Fin bouton cliquable*/


/*Liste ils l'ont fait*/

.video_fait{

width:115;
height:120;
float:left;
margin: 1em 1em;


}

.video_fait p {

text-align: center;
Color: #ffffff;
font-weight: bold;
text-decoration: none;
}

.video_fait a{

Color: #ffffff;
font-weight: bold;
text-decoration: none;
}
/*fin ils l'ont fait*/

/*photo plac� dans la page depannage et formation*/

#diagnostic{
float: right;
margin:0 25px 0 0;


}
/*fin*/
/*mail*/

#mail a{

color: #3366ff;
text-decoration: none;

}

#mail a:hover{

color: #3366ff;
text-decoration: none;

}
/*google search*/
.googlesearch{
margin-left: 20px;
}
/* END LISTS */
/* End of 'Layout: Left sidebar + 1 column' */

