/* CSS Document */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BLOCK GENERIQUE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
On définit un block génerique qui va servir à encadrer les listes si besoin
Bloc extensible avec bord arrondis possible
Utilisé par les listes
*/
.block { /* Partie haute du block */

}
.block_bas { /* Partie basse du block */

}
.block_bg { /* Arrière plan  du block */

}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE BLOCK_ARTICLE_DOC */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Utilisé par :
		liste_actus
		liste_article
		recherche_liste_article
		liste_evnmnt
*/

/* ARTICLE */
.block_article_bg { /* Arrière plan du bloc de présentation d'un article */
	padding: 0;
	margin: 0 0 15px 0;
	text-align:justify;	
	clear:both;
	background: url(images/block_article_bg.gif) repeat-y;
	width: 478px;
	zoom: 1;
}
.block_article { /* Partie haute du block de présentation d'un article */
	background: url(images/block_article_haut.gif) no-repeat top;
	padding: 6px 0 0 0;
	width: 478px;
	zoom: 1;
}
.block_article_bas { /* Partie basse du block de présentation d'un article */
	background: url(images/block_article_bas.gif) no-repeat bottom;
	padding: 0 10px 5px 12px;
	width: 456px;
	zoom: 1;
}

/* POUR LES BLOCS BLANCS */
.block_article_bg.blancbg { /* Arrière plan du bloc de présentation d'un article */
	background-image: url(images/block_article_bg_blanc.gif);
}
.block_article.blanchaut { /* Partie haute du block de présentation d'un article */
	background-image: url(images/block_article_haut_blanc.gif);
}
.block_article_bas.blancbas { /* Partie basse du block de présentation d'un article */
	background-image: url(images/block_article_bas_blanc.gif);
}


.block_article .dateliste, .block_article .cheminliste { /* Date de l'article *//* Chemin vers l'article */
	text-align: left;
	color: #543C32;
	font-size: 0.95em;
	margin-left: 20px;
	margin-bottom: 0;
}
.block_article .dateevmnt, .block_article .complement {
	margin: 0 0 0 20px;
	font-size: 0.9em;
	font-weight: bold;
}

.block_article .complement {
	padding-bottom: 2px;
}

.block_article .spip {
	margin: 0;
	padding: 0 0 0 20px;
}
.block_article .photo_block { /* Block de la vignette */
	width: 146px;
	float: left;
	text-align: center;
	margin-top: 0;
	display: inline;
}


.block_article .block_droite { /* Block qui contient le texte de l'article */
	float: right;
	width: 303px;
	display: inline;
}
.block_article .savoirplus { /* Lien en savoir plus */
	text-align: right;
}

/* SQUELETTE LISTE RECHERCHE DOCUMENT */
.block_document { /* Block document dans liste d articles */
	padding: 0 0 10px 0;
	margin: 0 0 15px 0;
	text-align:justify;	
	clear:both;
}
.block_document .dateliste {
	font-weight: normal;
}
.block_document .dateevmnt, .block_document .compldoc, .block_document .titredoc {
	margin: 0px;
	padding: 0px;
}
.block_document .photo_block {
	width: 99px;
	float: left;
	text-align: left;
	background: url(images/puce_titre.gif) no-repeat 92% 50%;
}

.block_document .block_droite {
	float: right;
	width: 370px;
}
.block_document .savoirplus {
	padding-left: 0;
}
.block_document .savoirplus a {
	color: #e89f22;
	text-decoration: underline;
}
.block_document .savoirplus a:hover {
	text-decoration: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Mise en forme liste doc sur le affiche article */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*.affarticle .titredoc a {
	color: #0090D0;
}
.affarticle .titredoc a:hover {
	color: #0090D0;
}
*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*  PAGINATION */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.pagination {
	float: right;
	clear: both;
	width: auto;
	color: #e89f22;
	margin: 10px 0px 10px 0px;
	padding: 5px 0px 5px 30px;
	font-weight: bold;
	clear: both;
	font-size: 1.1em;
	
	background: url(images/bg_rotation.gif) no-repeat 0 50%;
}
.pagination a {
	text-decoration: none;
}
.pagination a:hover {
	text-decoration: underline;
}
.pagination span.on {
	color: #010100;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_SITE, RECHERCHE_LISTE_SITE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.block_site { /* Block document dans liste d articles */
	padding: 0px 0px 2px 0px;
	margin: 0px 0px 15px 0px;
	border-bottom: 1px solid #e8e7e7;
	text-align:justify;	
	clear:both;
}
.block_site .dateliste {
	font-weight: normal;
}
.block_site .dateevmnt, .block_site .compldoc, .block_site .titredoc {
	margin: 0px;
	padding: 0px;
}

.block_site .photo_block {
	width: 95px;
	height: 56px;
	float: left;
	text-align: center;
}
html>body .block_site .photo_block {
	height: auto;
	min-height: 56px;
}
.block_site .block_droite {
	float: right;
	width: 345px;
	margin-right: 40px!important;
	margin-right: 20px;
}

.block_titre { /* Block articles dans liste de titres */
	padding: 0px 0px 0px 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_DOC_COL */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.document_col { /* Liste liste_doc_col sur plusieurs colonnes */
	margin-left: 0px;
	padding: 0 0 10px 0;
	margin-right: 5px;
	float: left;
	width: 48%; /* Valeur à adapter en fonction du nombre de colonnes pour les documents affichés */
}
.document_col_logo {
	float: left;
	margin-right: 5px;
	margin-bottom: 10px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* GESTION DES VIGNETTES MODELE BASIQUE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/*
MODE D'EMPLOI	
Dans le cas d'une présentation soignée, désactiver les styles appliqués sur .block_article img
Les garder pour le modele basique

OMBRAGE :
pour jouer sur l'aspect de l'ombrage il faut modifier les valeurs flou et alpha dans le squelette
*/
.block_article img { /* Image */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE INC_VIGNETTE  MODELE BASIQUE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Utilisé pour affichage d'une vignette avec ombrage généré par un masque, gère le décalage a régler sur le masque utilisé
Si pas d'ombrage, commenter la ligne ci dessous
*/
.block_article img.dessus {
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE INC_VIGNETTE MODELE SOIGNE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Utilisé pour affichage d'une vignette avec ombrage généré par un masque, gère le décalage a régler sur le masque utilisé
Si pas d'ombrage, commenter la ligne ci dessous
*/
.block_article img.dessus.soigne {
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_TITRE_EXCLUS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_titre_exclus {
	list-style-type: none;
}
ul.liste_titre_exclus li {
	display: inline;
}
ul.liste_titre_exclus li.actif { /* Couleur de l'article actif (celui qui n'a pas de lien dans la liste */
	color: #000000;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_TITRE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_titre {
	list-style-type: none;
}
ul.liste_titre li {
	display: inline;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_TITRE_ALL */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_titre_all {
	list-style-type: none;
}
ul.liste_titre_all li {
	display: inline;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_TITRE_MOT */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_titre_mot {
	list-style-type: none;
}
ul.liste_titre_mot li {
	display: inline;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_ZA */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_za {
	list-style-type: none;
}
.liste_za li {
	display: inline;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE AFFICHE_COMMUNE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
ul#commune  { /* Menu2  liste */
	list-style-type: none;
	margin-top: 20px;
}
ul#commune  li { /* Menu2  element liste */
	display: inline;
}
ul#commune  li a { 
	display: block!important;
	text-decoration:none;
	color: #dcaac2;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1em;
	float: left;
	width: 122px!important;
	width: 177px;
	height: 38px!important;
	height: 68px;
	padding: 30px 10px 0px 45px!important;
	padding: 30px 0px 0px 0px;
	margin-bottom: -15px!important;
	margin-bottom: 0px;
	background-image: url(images/comm.gif);
	background-repeat: no-repeat;
}
html>/**/body ul#commune  li a {
margin-bottom: 0px!important;
}

html>body ul#commune  li a {
	height: auto;
	min-height: 38px;
}
ul#commune  li a:hover {
	background-image: url(images/comm-over.gif);
	color: #a30050;

}
ul#commune  li a span {
	display: block;
	width: 120px;
	overflow-x: visible!important;
	overflow-x: hidden;
	padding: 0px 0px 0px 0px!important;
	padding: 0px 10px 0px 45px;
}

ul#commune  li a.actif {
	position: relative;
	z-index: 90;
	color: #000;
	width: 177px;
	background-image: url(images/commactif.gif);
	background-repeat: no-repeat;
}
ul#commune  li a.actif:hover {	
	background-image: url(images/commactif.gif);
	color: #000;
}
.decalage0 {
	position: relative;
	z-index: 90;
}
.decalage1 {
	position: relative;
	margin-left: -18px;
	z-index: 80;
}
.decalage2 {
	position: relative;
	margin-left: -18px;
	z-index: 70;
}

#block_commune {
	clear: both;
	padding: 0px 0px 9px 0px;
}
#block_commune.marge_block_commune {
	margin-top: -10px!important;
	margin-top: -60px;
}
.bas_block_commune {
	padding: 0px 0px 9px 0px;	
}
.ssblock_commune { /* Block document dans liste d articles */
	padding: 0px 0px 2px 0px;
	margin: 0px 0px 15px 0px;
	text-align: justify;	
	padding: 0px 30px 0px 90px;
	clear: both;
}
.web {
}
.ssblock_commune .compldoc, .ssblock_commune .titrecommune {
	margin: 0px;
	padding: 0px;
}

.ssblock_commune .titrecommune {
	color: #a30050;
	font-weight: bold;
}

.texte_commune {
	margin: 10px;
}
.ssblock_commune .compldoc ul {
	margin-left: 10px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE AFFICHE AAPC */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.ssblock_aapc { /* Block document dans liste d articles */
	padding: 0px 0px 2px 0px;
	margin: 0px 0px 15px 0px;
	text-align: justify;	
	padding: 0px 30px 0px 0px;
	clear: both;
	font-size: 110%;
}
.ssblock_aapc .compldoc, .ssblock_aapc .titrecommune {
	margin: 0px;
	padding: 0px;
}

.ssblock_aapc h3 {
	font-weight: bold;
	font-size: 1em;
}
.ssblock_aapc .compldoc ul {
	margin-left: 10px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_TITRE_DOSSIER*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#encart {
	border-top: 2px solid #f9f9f9;
	clear: both;
	position: relative;
	margin-top: 20px;
	padding: 0px 0px 9px 0px;
	z-index: 100;
}
.bas_encart {
	padding: 10px 0px 9px 0px;
	width: 495px;
}

#encart .padding {
	padding: 0px 30px 30px 30px;
}

.liste_titre_dossier {
	list-style-type: none;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTES LISTE_FICHE_LETTRE, LISTE_FICHE, LISTE_FICHE_DEPLIAGE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* EXTRAS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.block_extras { /* Block extra */
	clear: both;
}
.block_extras .complement { /* Complement */
	margin: 0px;
	padding: 0px;
}

.extras { /* Ligne d'extra */
	clear: both;
	margin-left: 0px;
}

.extras strong { /* Intitule en gras */
	color: #cd7f5f;
	background: url(images/liste_niv1.gif) no-repeat 0 0.5em;
	padding: 0 0 0 15px;
	margin: 0;
	display: block;
}

/* utilise par liste_fiche_mot_tout et liste_fiche */
#extrassansbordure { /* Ligne d'extra sans bordure */
	border-top: none

}

.alignextra, .alignextra2 { /* Présentation sur deux colonnes */
	padding: 2px 0 2px 0;
	margin: 0 0 10px 0;
	float: left;
	display: inline;
	text-align: left;
}

.alignextra { /* Colonne 1 */
	width: 32%;
	margin: 0 0 0 50px;
	word-wrap: break-word;
}
.alignextra2 { /* Colonne 2 */
	width: 56%;
}


/* Pour les zones d'activité */
.alignextra.za, .alignextra2.za2 { /* Présentation sur deux colonnes */
	padding: 2px 0 2px 0;
	margin: 0 0 10px 0;
	float: left;
	display: inline;
	text-align: left;
}
.alignextra.za { /* Colonne 1 */
	width: 43%;
	margin: 0 0 0 50px;
	word-wrap: break-word;
}
.alignextra2.za2 { /* Colonne 2 */
	width: 46%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* MODIF LARGEURS COLONNES SUR AFFICHE FICHE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.alignextraphoto, .alignextra2photo { /* Présentation sur deux colonnes */
	padding-top: 2px;
	padding-bottom: 2px;
	float: left;
	text-align: left;
}

.alignextraphoto { /* Colonne 1 */
	width: 35%;
	color: #afc400;
	margin: 0 0 0 50px;

}
.alignextra2photo { /* Colonne 2 */
	width: 50%;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTES TROMBINOSCOPE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Utilisés dans block_elu_trombi, block_elus_detail, liste_elus_titre, affiche_elu */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BLOCK_ELU_TROMBI */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.fiche_boss, .fiche_trombi p { /* General */
	font-size: 100%;
}
.fiche_boss {  /* Le boss */
	margin: 0em 0em 2em 0em;
	text-align: center;
}
.fiche_trombi {  /* Le block élu */
	float: left;
	text-align: left;
	width: 126px;
	margin: 0em 0em 2em 0em;
	height: 200px; /* Cf Hack */
	margin: 5px 12px 10px 12px;
	background: url(images/bg_fiche_trombi.gif) no-repeat bottom center;
	padding: 0 0 4px 0;
}
.fiche_boss img, .fiche_trombi img { /*  Pas de float sur les images */
	float: left;
	margin: -5px 0 0 0;
	padding: 0;
}
.fiche_trombi img.photoelu { /*  Pas de float sur les images */
	margin: -122px 0 8px 2px;
}
/* hack pour le min-height sous IE : donner une hauteur mini au contenu */
html>body .fiche_trombi, html>body .fiche_boss {
	height: auto;
	min-height: 200px;
}

.fiche_trombi p { 
	color: #000101;
	margin: 0 3px 0 3px;
}
.fiche_trombi p strong  {
	background: url(images/liste_niv1.gif) no-repeat 0 0.4em;
	display: block;
	padding: 0 0 0 20px;
}
.fiche_trombi p.textetrombi  {
	padding: 0 0 0 20px;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BLOCK_ELU_DETAIL */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.portrait_elu { /* Block un elu bg */
	margin: 0 0 10px 0;
	width: 480px;
	background: url(images/block_elu_bg.jpg) repeat-y;
}
.portrait_elu_haut { /* Block un elu haut */
	background: url(images/block_elu_haut.jpg) no-repeat top;
	padding: 0 0 0 0;
	width: 480px;
}
.portrait_elu_bas { /* Block un elu bas */
	background: url(images/block_elu_bas.jpg) no-repeat bottom;
	padding: 0 0 0 0;
	width: 480px;
}

.photo_elu { /* Photo de l elu */
	width: 126px;
	float: left;
	display: inline;
	margin: 0 25px 0 20px;
}
.photo_elu img { /* Photo de l elu */
	float: left;
}
.photo_elu img.photoelu { /* Photo de l elu */
	margin: -122px 0 0 2px;
}
.info_elu { /* Informations sur l elu */
	float: left;
	display: inline;
	width: 300px;
	margin: 22px 0 15px 0;
	}

h4.elu { /* Nom de l elu */
	font-size: 110%;
	color: #000100;
}
.info_elu strong { /* Informations sur l elu */
	color: #716058;

	}

.info_elu ul {
	list-style: none;
}
.info_elu p { /* Paragraphe Informations sur l elu */
	margin: 0px 0px 00px 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LISTE_ELU_TITRE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.block_titre_elu { /* Position et forme du block */
	padding: 0px 0px 0px 0px;
	width: 480px;
}
.troiscol1 { /* Colonne 1 */
	float: left;
	width:32%;
	margin: 0% 1% 0% 0%;
}
.troiscol2 { /* Colonne 2 */
	float: left;
	width: 32%;
	margin: 0% 1% 0% 0%;
}
.troiscol3 { /* Colonne 3 */
	float: left;
	width: 32%;
	margin: 0% 0% 0% 0%;
}
.block_titre_elu ul li { /* Element de liste */
	list-style-type:none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* AFFICHE_ELU */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.logos_elu { /* Photo de l'élu */
	float:right;
	margin: 10px 0 4px 4px;

	border: 1px solid #999A9D;
}
.colonne_gauche { /* Colonne de gauche */
	width: 50%;
	float: left;
	margin: 10px 0px 0px 0px;
}
.colonne_gauche_logo { /* Colonne de gauche */
	width: 80%;
	float: left;
	margin: 10px 0px 0px 0px;
}

.colonne_gauche ul {
	list-style-type: none;
}
.alignextra3, .alignextra4 { /* Deux colonnes */
	padding-top: 2px;
	padding-bottom: 2px;
	float: left;
	text-align: left;
}

.alignextra3 { /* Colonne 1 */
	width: 37%;
}

.alignextra4 { /* Colonne 2 */
	width: 62%;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LISTE_ELU_*  */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Block qui englobe les listes des elus 
*/
.liste_elu_titre { /* Position et forme du block */
	padding: 0px 0px 0px 0px;
}
.liste_elu_trombi { /* Position et forme du block */
	padding: 0px 0px 0px 0px;
}
.liste_elu_detail { /* Position et forme du block */
	padding: 0px 0px 0px 0px;
}
.liste_elu_nom { /* Position et forme du block */
	padding: 0px 0px 0px 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LISTE_ELU_LIGNE_* */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Présentation des élus sur une ligne (genre)
*/
ul.liste_elu_titre li {
	list-style: none;
	height: 2em;
	margin: 2px 0px 2px 0px;
}
.ligne_elucol1 {
	float: left;
	width: 40%;
	margin: 1px 0 2px 0;

}
.ligne_elucol2 {
	float: left;
	width: 34%;
}
.ligne_elucol3 {
	float: left;
	width: 25%;
}
.ligne_elucol4 {
	float: left;
	width: 20%;
	margin: 2px 0px 5px 10px;
}

.ligne_elucol1 strong { /* Informations sur l elu */
	color: #707D65;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* LISTE DES ELUS PAR COMMUNAUTE DE COMMUNE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.block_comm {
	background-color: #E9ECF1;
	border:1px solid #BAC2D5;
	float:left;
	margin:5px 5px 0 1px;
	padding: 0 5px 5px 5px;
	width: 46%;
	height:85px;
}

html>body .block_comm {
	height: auto;
	min-height: 85px;
}
.block_comm ul.spip {
	margin: 0;
	list-style-image: none;
}
.block_comm ul li {
	font-size: 0.9em;
	text-align: left;
	margin: 0 5px 0 0;
}
.block_comm h3.spip {
	margin-top: 5px;
	margin-bottom: 7px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* MISE EN FORME DES LISTES DE PHOTOS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
table.cadrecommune { /* Le tableau contenant la photo */
	float: left;
	background-color: #F9F9FB;
	border: 1px solid #CCC;
	border-collapse:collapse;
	width: 150px; /* La marge droite sous firefox provoque un debordement */
	margin: 5px 5px 0px 1px;
	
}
td.cadrecommuneliste { /* La cellule contenant la photo */
	height: 100px;
	text-align: left;
	vertical-align: top;
	padding: 0px 0px 10px 0px;
 }
 
 
 
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_AGENDA */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.troiscol { /* Liste des mois sur 3 colonnes */
	float: left;
	width: 33%;
	margin: 0% 0% 0% 0%;
}

ul.listemois { /* Liste des mois */
	list-style-type: none;
}

ul.listemois li { /* Mois de la liste */
	float: left;
	width: 22%;
	margin: 0% 2% 0% 0%;
}
.listemois {
	float:left;
	margin:0 2% 0 0;
	width:30%;
}
/* Largeur des colonnes sur le liste agenda */
.largeur1 {
	width: 25%;
}
.largeur2 {
	width: 25%;
}
.largeur3 {
	width: 25%;
}
.largeur4 {
	width: 25%;
}
.largeur5 {
	width: 25%;
}
	
.couleur_defaut {
	background-color: #f3f7e3;
}
.couleur_conseil {
	background-color: #E5E1D3;
}
.couleur_bureau {
	background-color: #D2D87C;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_LETTRE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.liste_lettre {
	text-align: center;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*  SQUELETTE LISTE_MOT_2COL, LIST_MOT_SSCAT */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.deuxcol { /* Colonne */
	float: left;
	width: 49%;
}
h4.sscat { /* a remonter */
	margin: 10px 0 3px 0;
	font-size: 0.9em;
	color: #543D33;
}

div.lien.deuxcolclear {
	clear:none;
	width: 49%;
	float: left;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*  SQUELETTE AFFICHE_PHOTO (DIAPORAMA) */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#navigation {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 100;
}
#photo_avantapres {
	position: relative;
	padding-top: 0px;
	margin-left: 0px;
	z-index: 10;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* MISE EN FORME DES LISTES DE PHOTOS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Utilise dans  liste_article_photo_pardate, affiche_article, affiche_fiche */

table.fondecran { /* Le tableau contenant la photo */
	float: left;
	display: inline;
	background-color: #e4e1e0;
	border-collapse:collapse;
	width: 130px; /* La marge droite sous firefox provoque un debordement */
	margin: 10px 12px 10px 12px;
	text-align: center;
}
html>body table.fondecran {
	text-align: -moz-center;
}
table.fondecran.clair { /* Le tableau contenant la photo */
	background-color: #f7f6f4;
}

td.fondecranphoto { /* La cellule contenant la photo */
	height: 130px;
	vertical-align: top;
 }
html>body td.fondecranphoto { /* La cellule contenant la photo */

}



.titredoc2, .titredoc2 a, .fondecrancomplement { /* Titre et info sur la photo */
	height: 20px;
	font-size: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align:center;
	vertical-align: top;
}
html>body .titredoc2, html>body .titredoc2 a, html>body .fondecrancomplement { /* Titre et info sur la photo */
	height: auto;
	min-height: 20px;
 }
.fondecrancomplement { /* Complément sur la photo */ 
	text-align:center;
	padding-top:1px;
	color:#7a6b63;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_ARTICLE_IMG */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Utilise dans Liste_article_img (phototheque) */
table.phototheque { /* Le tableau contenant la photo */
	float: left;
	background-color: #e4e1e0;
	border-collapse:collapse;
	width: 150px; /* La marge droite sous firefox provoque un debordement */
	height: 195px;
	margin: 10px 2px 0px 2px;
}
html>body td.phototheque { /* La cellule contenant la photo */
	height: auto;
	min-height: 195px;
}
table.phototheque.clair { /* Le tableau contenant la photo */
	background-color: #f7f6f4;
}

td.photothequephoto { /* La cellule contenant la photo */
	height: 150px;
	text-align: center;
	vertical-align: top;
 }
td.photothequephoto img { /* La cellule contenant la photo */
	margin: 0px;
 }
.photothequephoto .titredoc2, .photothequephoto .titredoc2 a, .photothequecomplement { /* Titre et info sur la photo */
	height: 30px;
	font-size: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align:center;
	vertical-align: top;
}
html>body td.photothequephoto .titredoc2, html>body td.photothequephoto .titredoc2 a, html>body td.photothequephoto .photothequecomplement { /* Titre et info sur la photo */
	height: auto;
	min-height: 30px;
 }



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* AFFICHE_COMMISSION 	 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Présentation des élus sur une ligne (genre)
*/
ul.liste_commissions li {
	list-style: none;
	display: inline;
}
ul.liste_commissions li h3.depliage, ul.liste_commissions li h4.depliage {
	margin: 0 0 5px 0;
}

.titre_elu_p {
	clear: both;
}
.titre_elu_p.president {
	margin: 3px 0 10px 0;
}
div.layerdeplie.commissions {
	margin: 0 0 5px 22px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE ANNUAIRE, LISTE_FICHE, LISTE_ARTICLE_DEPLIAGE, LISTE_DOC_DEPLIAGE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
h3.depliage, h4.depliage { /* Titre servant à deplier */
	font-size:100%;
	margin: 0;
	clear: both;
	background: url(images/bg_h3_depliage.gif) repeat-y;
	padding: 7px 0 9px 17px;
}
h3.depliage.doc, h4.depliage.doc {/* Titre servant à deplier sur le liste_doc_depliage */
	margin: 0 0 5px 0;
}
h3.depliage a, h4.depliage a {
	text-decoration: none;
	display: block;
	margin: 1px 0px 0px 2px;
	padding: 3px 0px 0px 5px;
	color: #6f6d6f;
}
h3.depliage a:hover, h4.depliage:hover {
	text-decoration: underline;
}
.layerdeplie { /* Layer de contenu */
	padding: 1px 0 0 0;
	margin: 0 0 10px 0;
	clear: both;
}

h3.depliage img { /* Image de depliage */
	float: left;
	margin: 0;
}

.affiche  .layerdeplie{
	margin: 10px 0 0 0;
	clear: none;
	float: left;
}
.masque .layerdeplie {
	margin: -2000px 0 0 0;
	clear: none;
	float: left;
}


/* Pour modif de l'action du clic sur le texte : on enlève le lien remplacé par un span */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
h3.depliage span, h4.depliage span {
	text-decoration: none;
	margin: 1px 0px 3px 2px;
	padding: 3px 0 0 0;
	color: #98737E;
	font-weight: normal;
	cursor: pointer;
	vertical-align: middle;
}
h3.depliage img, h4.depliage img {
	cursor: pointer;
	vertical-align: middle;
}
h3.depliage span:hover, h4.depliage span:hover {
	text-decoration: underline;
}



h3.fiches { /* Titre des fiches dans les listes */
	color: #42AFDF; 
	font-size: 100%;
}


.block_annuaire {
	clear: both!important;
	clear: none;
	margin-top: 0px;
	padding: 0 0 2px 0;
}
.bas_block_annuaire {
	padding: 0;
	width: 495px;
}
.fond_block_annuaire {
	clear: both;
	padding: 0;
}

.ssblock_annuaire { /* Block document dans liste d articles */
	clear:both;
	margin: 0 0 15px;
	padding: 0 30px 0 90px;
	text-align:justify;
}

.ssblock_annuaire .compldoc, .ssblock_annuaire .titreannuaire {
	margin:0;
	padding:0;
}

.ssblock_annuaire .titreannuaire {
	color: #a30050;
	font-weight: bold;
}

.texte_annuaire {
	margin: 10px;
}
.ssblock_annuaire .compldoc ul {
	margin-left: 10px;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE CARTO DU TERRITOIRE	 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
h3.depliage.carto, h4.depliage.carto {
	padding:7px 0 0px 5px;
	margin: 0 0 3px 0;
	font-size: 0.9em;
}

h3.depliage.carto span, h4.depliage.carto span {
	text-decoration: none;
	margin: 3px 0 9px 5px;
	padding: 3px 0 0 0;
	color: #98737E;
	font-weight: normal;
	cursor: pointer;
	vertical-align: middle;
}
h3.depliage.carto img, h4.depliage.carto img {
	cursor: pointer;
	vertical-align: middle;
}
h3.depliage.carto span:hover, h4.depliage.carto span:hover {
	text-decoration: underline;
}
.layerdepliecarto, .layerdepliecarto {
	 margin: 0 0 10px 32px;
	font-size: 0.9em;
}

.stylelayer {
	max-height: 120px;
	overflow: auto;
}
h3.depliage.carto span.clear, h4.depliage.carto span.clear {
	margin: 0;
	padding:  0;
	display: block;
}

h3.depliage.carto span, h4.depliage.carto span, h3.depliage.carto img, h4.depliage.carto img, h3.depliage.carto input, h4.depliage.carto input {
	vertical-align: middle;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE CARTE_AFFICHE_CARTE, CARTE_AFFICHE_SITE	 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* 
Il est maintenant possible d'appeller differents affiches site selon les besoin, on doit donc pouvoir positionner differement les encart affiche_site selon l'appel. Pour ca, créer autant de .infos_* que nécessaire, en remplacant * par le nom de l'extension appellée (celui qui est dans l'appel du carte_affiche_carte)

Regler : 
mise en forme commune
Position et taille individuels
Ajouter pour calage alignement .spip

.infos_* {
	position:absolute;
	left: 453px;
	top: 300px;
	width: 200px;
	height: 370px;
}

 */

.infos, .infos_collecte, .infos_za, .infos_qualite {/* Mis en forme div infos communes (couleurs...) */
	z-index: 99;
	visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #F9F0E9;
	padding: 5px;
	overflow: auto;
}

.infos { /* Mis en forme div infos */
	position:absolute;
	left: 453px;
	top: 300px;
	width: 200px;
	height: 100px;
}

.infos_collecte { /* Position et taille div infos dechetterie */
	position:absolute;
	left: -186px;
	top: 0px;
	width: 145px;
	height: 150px;
	text-align: left;
}
.infos_za { /* Position et taille div infos dechetterie */
	position:absolute;
	left: 490px;
	top: 0px;
	width: 190px;
	height: 350px;
	text-align: left;
}
.infos_qualite { /* Position et taille div infos dechetterie */
	position:absolute;
	left: 490px;
	top: 0px;
	width: 190px;
	height: 350px;
	text-align: left;
}

.infos .spip, .infos_collecte .spip, .infos_za .spip, .infos_qualite .spip { /* Alignement du class spip */
	text-align: left;
	margin: 0;
}
.infos h2, #contenugauche .infos_collecte h2, #contenugauche .infos_za h2, #contenugauche .infos_qualite h2 { /* taille du h2 */
	font-size: 1.3em;
	font-weight:bold;
	margin: 0 0 10px 0;
	padding: 0;
	background: none;
	
}
.infos .chapo, .infos_collecte .chapo, .infos_qualite .chapo { /* Alignement du chapo */
	text-align: left;
	margin: 2px 0px 2px 0px;
}


.infos_qualite h3.titredoc {
	margin: 2px 0px 2px 0px;
	font-size: 0.9em;
}
.infos_qualite .savoirplus {
	margin: 0 0 10px 0;
}



.fermeture { /* Bouton fermeture */
	width: 1em;
	height: 1em;
	line-height: 1em;
	float: right;
	background-color: #EA910B;
	margin: 2px 2px 2px 0px;
	text-align: center;
}

.fermeture a { /* Bouton fermeture lien */
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE CARTE_AFFICHE_DECHETTERIE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
table.dechetterie {
	width: auto;
}
.ouvert {
	background-color: #a2c7a3;
	color: #a2c7a3;
	text-align: center;
	width: 33%;
}
.ferme {
	background-color: #be9761;
	color: #be9761;
	text-align: center;
	width: 33%;
}
.infos table {
	margin-bottom: 20px;
	width: 100%;

}
.infos table td, .infos table th {
	text-align: center;
	height: auto;
}
.infos table.spip caption {
	text-transform: uppercase;
	color: #000000;
	margin: 0px;
	padding: 0px;
	line-height: normal;
	font-size: 0.9em;
}

.caption {
	color:#000;
	padding-top: 0px;
	line-height: normal;
	font-size:0.9em;
	text-transform:uppercase;
	text-align: center;
}
table.nogras th {
	font-weight: normal;
	width: auto;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE LISTE_CHOIX_MOT */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/*
Liste déroulante de mots clés
*/

#liste_choix_mot { /* liste deroulante en haut à droite */
	margin: 30px 0px 15px 0px;
	clear: both;
	text-align: right;
	background: transparent;
}

#liste_choix_mot label {
	display:none;
}
.liste { /* Liste deroulante */
	font-size: 90%;
	background-color: #fff;	
	padding: 0px;
}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FORMULAIRES */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* SQUELETTE FORM_CONTACT, FORM_DEMANDE_BAC */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

form { /* Le formulaire */
	/* width: 100%; */
	background-color: #ebeff6;
	color: #000; /* Ne pas effacer : utilisé par le formulaire sur la page abonnement à la newsletter */
	padding: 10px;
}

form ul { /* Liste */
	list-style-type: none;
}

.formulaire_inscription fieldset, form fieldset, div.reponse_sondage{ /* Cadre d'info */
	margin-bottom: 10px;
	border: none;
	padding: 5px;
	/* /position: relative;
	/margin: 25px 0 0 0; */
}

.formulaire_inscription legend, form legend{ /* Legende cadre */
	color: #6383b7;
	font-weight: bold;
	font-size: 1em;
	background: url(images/picto_legend.gif) no-repeat 0 70%;
	padding: 15px 0 5px 40px;
	/margin: 0 0 5px -10px;
   /* /position:absolute;
    /top: -1.6em;
    /left: 10px; */
}

form input { /* Zone de saisie */
	width: 200px;
	border: 1px solid #6887b9;
}

form input.radio { /* Champ radio */
	width: auto;
	border: none;
	
}
form input:focus, form textarea:focus, form select:focus { /* Zone de saisie */
	background-color: #FFF5DF;
}

form select {
	border: 1px solid #6887b9;
	width: 200px;

}
form option {
	color: #54595C;
}

form textarea { /* Zone de saisie texte */
	width: 200px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	
	border: 1px solid #6887b9;
}

.spip_boutoncss, .spip_bouton { /* Bouton de validation */
	background-color:#6887b9;
	font-size:100%;
	color:#FFFFFF;
	width: auto;
	cursor:pointer;
	text-align:center;
	border: 1px solid #ccc;
	margin: 2px 0px 2px 0px;
	padding: 1px;
}

.formulaire_spip input {
	width: auto;
}
.formulaire_spip textarea {
	width: 100%;
}

.contact1, .contact2 { /* Presentation du formulaire sur deux colonnes */
	padding-top: 2px;
	padding-bottom: 2px;
	float: left;
	text-align: left;
	color: #000;
}

.contact1 {
	width: 35%;
	text-align: left;
	font-size: 0.9em;
	margin: 0 0 0 16px;
}

.contact2 {
	width: 55%;
	margin-bottom: 5px;
}

form ul.contact2 { /* Liste de choix avec texte long => on met sur une ligne entière */
	clear: both;
	width: auto;
}
form ul.contact2 li { /* Liste de choix avec texte long => on met sur une ligne entière */
	margin: 0px 0px 0px 30px;
	clear: both;
}
.reponse_formulaire { /* Message de reponse du formulaire de candidature */
	color: #FF3300;
	font-size: 100%;

}
.nbplaces {
	width: 30px;
}



#login, #oubli_form { /* Le formulaire */
	width:100%;
}

#login input , #login_admin input {
	width: auto;
}

#login div, #inscription div,  #login_admin div, , #oubli_form div {
	text-align: left;
	margin-top: 5px;
}

#login p, #inscription p,  #login_admin p, #oubli_form p {
	margin-bottom: 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FORMULAIRES NEWSLETTER*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.reponsenews {
	color: #FF0000;
	font-size: 0.8em;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FORMULAIRES REPONSE FORUM*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
form#form_forum{
	margin: 0px 20px 0px 20px;
	width: auto;
}

h3.reponse_forum {
	color: #a30050;
	text-transform: uppercase;
	margin: 0px 0px 20px 0px;
}
form#form_forum label {
	color: #000;
	font-weight: bold;
	padding-top: 10px;
	display: block;
}
form#form_forum textarea {
	width: 80%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FORMULAIRES BILLETERIE */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
form#form_billeterie input { /* Zone de saisie */
	width: auto;
}



/* FORUM */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
h2.forum {
	padding: 5px 0px 0px 50px;
	height: 35px;
	clear: both;
	margin: 5px 0px 0px!important;
	margin: 5px 0px 0px;
}
html>body h2.forum {
	height: auto;
	min-height: 35px;
}
html>/* */body h2.forum {
	margin: 50px 0px 0px!important;
}
.discussion {
	border-bottom: 1px dashed #d7d6d7;
	padding-bottom: 5px;
}

p.message { /* Titre servant à deplier */
	font-size:100%;
	margin-bottom: 0em;
	padding-top : 0.5em;
	margin-left: 2px;
}

p.message.dessous { /* Titre servant à deplier */
	margin-left: -15px;
	padding-left: 15px;
	height: 15px;
}


p.message a {
	text-decoration: none;
	color: #a30050;
	font-weight: bold;
	display: block;
	float: left;
	margin: 0px 0px 0px 5px;
}
p.message a:hover {
	text-decoration: underline;
}
p.message img { /* Image de depliage */
	float: left;
}

p.dateforum { 
	margin: 0px 0px 5px 27px;
	color: #a30050;
	font-size: 0.9em;
	font-weight: bold;
}
p.texteforum { 
	margin: 0px 0px 0px 0px;
}
.ssniveau {
	margin: 0px 0px 0px 27px;
	padding: 0px 0px 0px 12px;
	
}

/* Conditions generales d'utilisation du forum */
.cgu {
	height: 100px;
	overflow-y: scroll;
	padding: 2px 10px 0px 0px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* PLAN */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

h3.plan { 
	margin: 15px 0 0 0;
}

/* Niveau 1 */
.plan1 {
	padding:  5px 0px 10px 20px;
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.plan1 li {
	display: inline;
}
.plan1 li a {
		display: block;
		margin:  3px 0px 2px 0px;
}
/* Style lien et roll over */
.plan1 li a.niveau1 {
	background-image: url(images/puce_ssmenu.gif);
	background-position: 0em 0.4em;
	background-repeat: no-repeat;
	padding: 0px 0px 0px 15px;
	margin-top:8px;
	padding-bottom:5px;
	font-size: 1em;
	color: #004595;
	font-weight: bold;
	text-decoration: none;
}

.plan1 li a.niveau1:hover {	
	background-image: url(images/puce_ssmenu.gif);
	text-decoration: underline;
}


/* Niveau 2 */

.plan2 { /* liste Plan niveau 2 */
	list-style-type: none;
	margin: 0px 0px 0px 40px;
}

.plan2 li a.niveau2 { /* Elément liste Plan lien niveau 2 */
	text-decoration: none;
	display: block;
	padding: 1px 0 0 0;
	color: #80B7D9;
	font-size: 100%;
	font-weight: bold;
}

.plan2 li a.niveau2:hover { /* Elément liste Plan lien niveau 2 over  */
	color: #80B7D9;
	text-decoration:underline;
}

/* Niveau 3 */
ul.plan3 { /* liste Plan niveau 3 */
	list-style-type: none;
	margin: 0px 0px 0px 20px;
}

 ul.plan3 li a {
	display: block;
	padding: 1px 0px 3px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #6F6F6F;
}

li a.niveau3 { /* Elément liste Plan lien niveau 3 */
	text-decoration: none;
}

ul.plan3 li a.niveau3:hover { /* Elément liste Plan lien niveau 3 over  */
	color: #6F6F6F;
	text-decoration:underline;
}

/* Niveau 4 */
ul.plan4 { /* liste Plan niveau 4 */
	list-style-type: none;
	margin: 0px 0px 0px 20px;
}

ul.plan4 li a {
	display: block;
	padding: 1px 0px 3px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 95%;
	color: #6F6F6F;
}

ul.plan4 li a.niveau4 { /* Elément liste Plan lien niveau 3 */
	text-decoration: none;
}

ul.plan4 li a.niveau4:hover { /* Elément liste Plan lien niveau 3 over  */
	text-decoration:underline;
}

/* Niveau 5 */
ul.plan5 { /* liste Plan niveau 5 */
	list-style-type: none;
	margin: 0px 0px 0px 20px;
}

ul.plan5 li a.niveau5 { /* Elément liste Sous menu lien niveau 3 */
	display: block;
	padding: 1px 0px 0px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 95%;
	color: #aaaaaa;
	text-decoration: none;
}

ul.plan5 li a.niveau5:hover { /* Elément liste Sous menu lien niveau 3 over  */
	color: #aaaaaa;
	text-decoration:underline;
}

/* AFFICHE AAPC */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.marge_contrat {
	margin: 30px 0 10px 0;
}


/* ENCART COLONNE DROITE CONTACT DOSSIER ET PLUS D'INFOS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div#encartdossiers {
	background: url(images/bg_encart.gif) repeat-y left;
	padding: 14px 0 0 0;
}
h2.encartdossiers {
	background: url(images/bg_h2_encart.gif) repeat-y left;
	padding: 0 0 0 12px;
	font-size: 0.9em;
	color: #fff;
}

ul.encartdossiers {
	padding: 8px 19px 12px 0;
	margin: 0 0 23px 0;
}

	ul.encartdossiers li {
		margin: 0 0 0 18px;
		border-bottom: 1px solid #dedad7;
		padding: 10px 0 10px 0;
	}
	ul.encartdossiers li a {
		padding: 0 0 0 17px;
		background: url(images/puce_titre.gif) no-repeat 0 0.2em;
		font-size: 0.8em;
		color: #201d21;
		text-decoration: none;
		display: block;

	}

	ul.encartdossiers li a:hover, ul.encartdossiers li a.actif {
		text-decoration: underline;
	}


div.encartdossiers {
	background: url(images/bg_encart.gif) repeat-y left;
	padding: 8px 19px 12px 17px;
	margin: 0 0 23px 0;
	color: #6383b7;
	font-size: 0.8em;
}

/* ENCART COLONNE DROITE ACTUS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div#encartactus {
	background: url(images/bg_encart_actus.gif) repeat-y left;
	width: 178px;
}

div#encartactusbas {
	background: url(images/bg_encart_actus_bas.jpg) no-repeat bottom left;
	padding: 14px 15px 120px 0;
}
h2.encartactus {
	background: url(images/bg_h2_encart_actus.gif) repeat-y left;
	padding: 0 0 0 12px;
	font-size: 0.9em;
	color: #fff;
}
h3.encartactus {
	background: url(images/puce_titre.gif) no-repeat 0 0.3em;
	padding: 0 0 0 12px;
	margin: 7px 0 7px 5px;
	font-size: 0.85em;
	color: #201d21;
}

#encartactus .complement {
	color: #716058;
	margin: 0 0 0 17px;
	font-size: 0.7em;
}

#encartactus .savoirplus {
	text-align: right;
	margin: 10px 0 10px 7px;
	border-bottom: 1px solid #d6d7da;
	padding: 0 0 8px 0;
}



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* DIVERS */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.annulewidth {
	width: auto;
}
