/******************************************/
/*   CSS pour le site college			*/
/*   auteur : Fabien Romanens			*/
/******************************************/

html{
	font-size: 100%;				/* Pour résoudre un bug d'affichage d'IE */
	font-family: Tahoma, Verdana, sans-serif;
	background-color: #F2F2F2;		/* couleur de fond pour toute la page */
}

body{
	margin: 10px 0;			 		/* marge haut/bas à 10px pas de marge droite/gauche */
	padding: 0;						/* padding à 0 pour le navigateur Opera qui définit des padding par défaut pour le body */
}

div#conteneur{						/* Contient toute la page sauf 10px de marge haut/bas */
	font-size: 0.9em;				/* taille de texte de référence pour toute la page */
	width: 900px;					/* largeur pour afichage en 1024, à supprimer pour une colonne du milieu fluide */
	margin: 0 10px;					/* centrage du contenu du div#conteneur */
	text-align: left;				/* Rétabli l'alignement modifié dans body */
}

div.spacer{							/* div vide */
	clear : both;
}

/*** Tous les liens du site en bordeaux non souligné sauf si hover ***/
div#conteneur a{text-decoration: none; color : #b53b34;}
div#conteneur a:hover{text-decoration: underline;}

/*** HEADER ***/
div#entete_header{
	background: url(../images/header/bdn_fond.gif) top right;	/* image de fond (bandeau rouge) fixée à droite */
	height: 100px ;
}

/*** IMAGES CLIQUABLES DU HEADER ***/
div#boutons_entete{
	margin-top: -39px ;
	margin-left: 400px ;
}
div#boutons_entete a{
	display: block ;				/* on passe en display block pour pouvoir donner une taille */
	width: 42px;
	height: 34px;
	float: left;					/* pour mettre tous les boutons sur la meme ligne */
}
/* Images de fond des images cliquables du bandeau d'entete */
a#bouton_lamap{background: url(../images/header/bouton_lamap_off.gif);}
a#bouton_lamap:hover {background: url(../images/header/bouton_lamap_on.gif);}
a#bouton_aide{background: url(../images/header/bouton_aide_off.gif);}
a#bouton_aide:hover {background: url(../images/header/bouton_aide_on.gif);}
a#bouton_faq{background: url(../images/header/bouton_faq_off.gif);}
a#bouton_faq:hover {background: url(../images/header/bouton_faq_on.gif);}
a#bouton_contact{background: url(../images/header/bouton_contact_off.gif);}
a#bouton_contact:hover {background: url(../images/header/bouton_contact_on.gif);}
a#bouton_plan{background: url(../images/header/bouton_plan_off.gif);}
a#bouton_plan:hover {background: url(../images/header/bouton_plan_on.gif);}


/*** FORMULAIRE RECHERCHE ***/
div#formulaire_recherche{
	float: right ;
	font-size: 0.75em ;
	margin-top: -35px ;
	color: white ;
}
div#formulaire_recherche a{
	color: white ;
	text-decoration: none;
}
div#formulaire_recherche a:hover{
	text-decoration: underline;
}

/*** MENU DE GAUCHE ***/
div#gauche {
	float: left;
	width: 170px;
	margin-right: 10px;
	background: #F2F2F2;
}
div.titre_menu_gauche{
	color: #FFFFFF;
	background-color: #666666;
	padding-left: 10px;
	font-weight: bold;
}
/* Login */
div#conteneur_login{
	background-color: #C9C0BC;
	margin-bottom: 15px;
}
div#login{
	font-size: 0.7em;
	padding: 5px;
}
/* Menu de navigation */
div#menu_nav_gauche a{
	color: white;
}
a.lien_rubrique_menu_gauche{
	display: block;
	height: 20px;
	width: 150px;   /* 170 px de large moins le pading */
	margin: 5px 0;
	padding-left : 20px;
	background-color: #b53b34;
	background-image: url(../images/flecheFermee.gif);
}
a.lien_rubrique_admin_menu_gauche {
	display: block;
	height: 20px;
	width: 150px;
	margin: 5px 0;
	padding-left : 20px;
	color: white;
	background-color: #b53b34;
	background-image: url(../images/flecheFermee_admin.gif);
}
div#nav_gauche_sous_menu{
	font-size: 0.8em;
	width: 168px;		/* 170 moins les 2 pixels de border */
	border : 1px solid #b53b34;
	margin-top: -5px; /* Pour faire coller le sous menu au menu */
	padding: 0px;
	background-color: white;
}
div#nav_gauche_sous_menu ul{
	list-style-image:url(../images/puce_bdn_gauche.gif);
	color: #b53b34;
	margin-left: -20px;
}
div#nav_gauche_sous_menu li{
	padding-bottom: 5px;
}
div#nav_gauche_sous_menu a{
	color: #b53b34;
}

/*** MENU DE DROITE ***/
div#droite {
	float: right;
	width: 180px;
	margin-left: 10px;
}

div.titre_droite{
	font-weight : bold;
	background: #C9C0BC;
	text-align: center;
	margin-bottom: 5px
}
div#outils{
	background: white;
	border: 1px solid #C9C0BC;
	margin-bottom: 10px; 
}
div.outil_lien{
	width: 168px;
	height: 40px;
	margin-bottom:5px;
	padding: 0 5px;
	border-bottom : solid 1px #C9C0BC;
	font-size:0.8em;
}
div.outil_lien  img{
	float : right;
}
div#infos{
	background: white;
	border: 1px solid #C9C0BC;
}
div#infos p{
	font-size:0.8em;
}
div#infos_contenu{
	padding: 0 5px;
	font-size: 0.9em;
}

/*** CONTENU CENTRAL ***/
div#centre{ 
	background: white;
	border: 1px solid #B7373E;
	overflow: hidden;		/* Pour ne pas déborder sur les flottants gauche et droite */
}
div#centre_home{ 
	overflow: hidden;		
}
div#texte_home {
	background: white;
	border: 1px solid #B7373E;
/* 	height:400px;
 */}
div#texte_home img{
	float: right;
	padding: 20px;
}
div#texte_home h1{
	font-weight: bold;
	font-size: 1.3em;
	padding : 10px;
}
div#texte_home p{
	text-align: justify;
	padding : 10px;
}
div#last_questions{
	float: right;
	width: 293px;
	background: white;
	border: 1px solid #B7373E;
	text-align: justify;
	font-size: 0.8em;
	padding: 0 5px;
}
div#last_questions img{
	margin-left: -6px;
	margin-top: -1px;
	padding:0;
}
div#edito{
	float: left;
	width: 293px;
	background: white;
	border: 1px solid #B7373E;
	text-align: justify;
	font-size: 0.8em;
	padding: 0 5px;
}
div#edito img{
	margin-left: -6px;
	margin-top: -1px;
	padding:0;
}
div#centre_ariane{
	background: #B7373E;
	font-size: 0.8em;
	color : white;
	margin:0;
	padding: 0 5px;
	float: left;
}
div#centre_ariane a{
	color: white;
}
/* Contenu page : toute la page sauf son titre et introduction */
div#contenu_page{
	font-size: 0.9em;
	padding: 0 10px;
	text-align: justify;
}

/* Entete : Titre de la page + chapeau du texte */
div#entete{
	margin: 25px 0;
	padding: 0 10px;
}
div#entete h1{
	background-color:#B7373E;
	color: white;
	font-size: 1.1em;
	font-weight: bold;
	height: 20px;
	padding: 0 20px;
	overflow: hidden;		/* Pour ne pas déborder sur les flottants gauche et droite */
}
div#entete p{
	text-align: justify;
}
img#titre_picto{
	float: left;
	height: 20px;
}
div#titre_droite{
	float: right;
	height: 20px;
	width:2px;
	background-image:url(../images/titrePageDroite.gif);
}

/* début footer */
div#footer {
	/* clear: both; */
	margin-top: 10px;
	background-color: #B7373E;
	font-size : 0.7em;
	overflow: hidden;
	padding : 2px 5px;
}
div#footer_gauche {
	float:left;
	color: white;
}
div#footer_gauche  a{
	color: white;
}
div#footer_droite {
	float: right;
	margin-right: 0px;
	color: white;
}
/* fin footer */



/***** REPRISE ANCIEN STYLE *****/
.onglets {
	margin-bottom:	10px;
	margin-top:	10px;
	border-bottom-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	float:left;
	width:610px;
}
.onglets a {
	color:#FFFFFF;
}
.onglets img {
	margin-right: 3px;
}
.onglet_inactif {
padding-left:15px;
padding-right:15px;
background-color:#FFFFFF;
color:#b7373e;
font-weight:bold;
border-width:1px;
border-bottom-width:0;
border-style: solid;
border-color:#b7373e;
font-size:11px;
padding-top:4px;
padding-bottom:2px;
margin-right:2px;
float:left;
}
.onglet_inactif_legende {
padding-left:15px;
padding-right:15px;
background-color:#FFFFFF;
color:#000;
border-width:1px;
border-bottom-width:0;
border-style: solid;
border-color:#b7373e;
font-size:11px;
padding-top:4px;
padding-bottom:2px;
float:right;
}
.onglet_actif {
padding-left:15px;
padding-right:15px;
background-color:#e2afb2;
color:#FFFFFF;
font-weight:bold;
font-size:11px;
border-width:1px;
border-style: solid;
border-color:#b7373e;
border-bottom-width:0;
float:left;
padding-top:4px;
padding-bottom:2px;
margin-right:2px;
}
.onglet_actif a {
color:#FFFFFF;
text-decoration:underline;
}

/* questions admin */
.legendes {
	margin-bottom:	10px;
	margin-top:	10px;
	padding:10px;
	border-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	float:left;
	width:590px;
}
.legendes_content {
	margin-right:	10px;
	float:left;
	font-size: 12px;

}
.legendes_content img {
	margin-right:	10px;
	float:left;

}
.status0 {
background-image:url(../images/admin_questions_01waiting.gif);
background-repeat:no-repeat;
display:block;
width:15px;
height:15px;
float:left;
margin-right:1px;
}
.status1 {
background-image:url(../images/admin_questions_02pending.gif);
background-repeat:no-repeat;
display:block;
width:15px;
height:15px;
float:left;
margin-right:1px;
}
.status2 {
background-image:url(../images/admin_questions_03validated.gif);
background-repeat:no-repeat;
display:block;
width:15px;
height:15px;
float:left;
margin-right:1px;
}
.status3 {
background-image:url(../images/admin_questions_04online.gif);
background-repeat:no-repeat;
display:block;
width:15px;
height:15px;
float:left;
margin-right:1px;
}
.status4 {
background-image:url(../images/admin_questions_04offline.gif);
background-repeat:no-repeat;
display:block;
width:15px;
height:15px;
float:left;
margin-right:1px;
}
.questionsreponses {
	margin-top:10px;
	margin-bottom:	5px;
	border-bottom-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	width:568px;
	padding-bottom:5px;
	padding-top:5px;
	font-size:1.1em;
	font-weight:bold;
}

/* Formstyle input */
.formstyle_input {
	border: 1px solid #333333;
	margin-bottom: 2px;
	padding: 2px;
	vertical-align: top;
	font-size: 10px;
	font-weight : bold;
	background-color: #F8F8F8;
}
.formstyle_input2 {
	border: 1px solid #b53b34;
	margin-bottom: 2px;
	margin-top: 1px;
	padding: 2px;
	vertical-align: top;
	font-size: 11px;
	background-color: #F8F8F8;
}
.formstyle_input3 {
	border: 1px solid #333333;
	vertical-align: top;
	font-size: 11px;
	background-color: #b7373e;
	color: #FFFFFF;
	font-weight: bold;
	width: 24px;	
	cursor: pointer;
}
.formstyle_input4 {
	border: 1px solid #67B148;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #b7373e;
	color: #FFFFFF;
	font-weight: bold;
	display: block;
	width: 24px;
	height: 18px;
}
.formstyle_input5 {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #FDC72F;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
}
.formstyle_input5_bis {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #b7373e;
	color: #FFFFFF;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
}
.formstyle_input6 {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #FDC72F;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
	width:140px;
	float:left;
}
.formstyle_input7 {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #FF5400;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
	width:140px;
	float:right;
}
.formstyle_input8 {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #b7373e;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
	width:140px;
}
.formstyle_input9 {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 11px;
	background-color: #b7373e;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 18px;
	cursor: pointer;
	width:140px;
	float:right;
}
.formstyle_input5_right {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	font-size: 11px;
	background-color: #FDC72F;
	color: #333333;
	font-weight: bold;
	display: block;
	height: 20px;
	cursor: pointer;
	float:right;
}
.formstyle_input_del {
	border: 1px solid #333333;
	margin-left: 5px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 10px;
	background-color: #ea1d26;
	color: #FFFFFF;
	font-weight: bold;
	display: inline;
	height: 15px;
	width: 50px;
	cursor: pointer;
}
.formstyle_input_send {
	border: 1px solid #333333;
	margin-left: 5px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 10px;
	background-color: #FDC72F;
	color: #000000;
	font-weight: bold;
	display: inline;
	height: 15px;
	cursor: pointer;
}
.formstyle_input_upd {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 10px;
	background-color: #b7373e;
	color: #FFFFFF;
	font-weight: bold;
	display: inline;
	height: 15px;
	width: 50px;
	cursor: pointer;
}
.formstyle_button_green {
	border: 1px solid #333333;
	margin-left: 1px;
	margin-bottom: 2px;
	margin-top: 1px;
	font-size: 10px;
	background-color: #b7373e;
	color: #FFFFFF;
	font-weight: bold;
	display: inline;
	height: 17px;
	cursor: pointer;
}

table{
	background-color: #f2f2f3;
	empty-cells: show;
}
table.center {border-collapse:collapse; font-size:0.85em;}	/*classe des tableaux d'admin */
table.center td {border:1px solid #000000; padding: 1px 0; text-align : center;}
th{
	background-color: #b7373e;
	padding: 5px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	border-width: 1px;
	border-style: solid;
	border-color: #000000;
}

#contenu_page_droite{
	text-align:right;
}
#contenu_page_droite img{
border-width: 0px;
border-style: none;
border-color: -moz-use-text-color;
}
/*** Intro : des div pour la mise en forme des infos Auteur, Titre, Date... dans le détail des évènements ***/
.intro {
	width: 468px;
	float: left;
	font-size: 0.85em;
}
.intro_gauche_1 {
	float: left;
	width: 120px;
	font-size: 1em;
}
.intro_droite_1 {
	float: right;
	width: 330px;
	border-left-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	padding-left: 10px;
	padding-bottom: 5px;
	font-size: 1em;
}
.intro_gauche_2 {
	float: left;
	width: 120px;
	font-size: 1em;
}
.intro_droite_2 {
	float: right;
	width: 330px;
	border-left-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	padding-left: 10px;
	padding-top: 4px;
}
.intro_droite_2 img {
	padding-right: 1px;
}
/*** Decoupage_form : styles des formulaires ***/
.titre_form {
	font-size: 1.1em;
	border-bottom-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	color: #b7373e;
	font-weight: bold;
	margin-bottom: 10px;
}
.decoupage_form {

}
.decoupage_form_gauche {
	float: left;
	width: 160px;
	font-size: 0.85em;
	padding : 5px 0;
}
.decoupage_form_droite {
	float: right;
	width: 430px;
	border-left-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	padding : 5px;
	top: auto;
}

/* popup plus d'infos */
#popup_div_central {
	width:450px;
	margin-top: 10px;
	margin-left: 10px;
	padding: 10px;
	border-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	background-color: #FFFFFF;
	float: left;
}
#popup_container_entete {
	width: 430px;
}
#popup_icone_page {
	width: 60px;
	float: left;
	margin: 0px;
	padding: 0px;
}
#popup_entete{
	float: right;
	font-size: 1em;
	width:370px;
}
#popup_titre_page {
	border-bottom-style: solid;
	border-color: #b7373e;
	border-width: 1px;	
	padding-bottom: 5px;
	font-weight: bold;
	margin-bottom: 15px;
	float: right;
	width: 360px;
	margin-right: 0px;
	vertical-align: top;	
	font-size: 1.5em;
}
#popup_introduction {
	width: 360px;
	float: right;
}
.popup_intro {
	width: 360px;
	float: left;
	font-size: 1.1em;
}
.popup_intro_gauche_1 {
	float: left;
	width: 100px;
}
.popup_intro_droite_1 {
	float: right;
	width: 240px;
	border-left-style: solid;
	border-color: #b7373e;
	border-width: 1px;
	padding-left: 10px;
	padding-bottom: 5px;
}
.popup_intro_droite_1 a {
	color: #b7373e;
	text-decoration: none;
}
.popup_intro_droite_1 a:hover {
	color: #ea1d26;
	text-decoration: underline;
}
/* fin popup plus d'infos */

