/* CSS Document */

@page landscape { size: landscape; }
@page portrait { size: portrait; }

body {
	page: landscape;

	margin: 0;
	padding: 15px 0 15px 0;
	
	background-color: #dfdede;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center; /* pour correction de centrage de la <div> principale sous IE */
}

div {
	margin: 0;
	padding: 0;
}

p {
	margin: 10px auto; /* harmonisation des marges haut et bas sous IE */
}

h1 { display: none; }
h2 { }
h3 { }
h4 { }
h5 { }
h6 { }

.kill { display: none; }
.printkill { display: none; } /* INFO : utilisé dans 'print.css' uniquement : n'affiche pas l'élément affecté par cette classe lors de l'impression */
.invisible { visibility: hidden; }
.top { vertical-align: top; } /* alignement en haut (valable uniquement pour les tableaux */
.middle { vertical-align: middle; } /* alignement au milieu (valable uniquement pour les tableaux */
.left { text-align: left; } /* alignement à gauche du contenu */
.center { text-align: center; } /* centrage du contenu */
.justify { text-align: justify; } /* justification du contenu (valable uniquement pour les textes) */
.right { text-align: right; } /* alignement à droite du contenu */
.bottom { vertical-align: bottom; } /* alignement en bas (valable uniquement pour les tableaux */

.full {	width: 100%; } /* largeur maximale */
.shiftleft { margin-left: /* paramétrable */; } /* retrait à gauche */
.shiftright { margin-right: /* paramétrable */; } /* retrait à droite */

.strike { text-decoration: line-through; } /* texte barré */

.divleft {
	margin-right: /* paramétrable */; /* conteneur "flotte" à gauche */
	float: left;
}
.divcenter {
	margin-left: auto;
	margin-right: auto;
	float: none;
}
.divright {
	margin-left: 14px;/* conteneur "flotte" à droite */
	float: right;
}
.clear { clear: both; }

.borderless { border: none;	} /* supprime les bordures */
.bordered { border: 1px solid #777777; } /* ajoute une bordure */
.stuck { margin: 0; } /* les balises affectées par cette classe se touchent */
.table { display: table; } /* les balises affectées par cette classe réagissent comme des tableaux */
.block { display: block; } /* correction bug IE d'espaces indésirables autour des images */
.inline { display: inline; } /* les balises affectées par cette classe tiennent, dans la mesure du possible, sur la même ligne */
.scroll { overflow: auto; } /* génère des ascenceurs dans un élément conteneur dans le cas où son contenu est plus vaste que lui */
.scroll-x {
	display: block;
	overflow: hidden;
	overflow-x: auto; /* IE */
	overflow-y: hidden; /* IE */
	overflow : -moz-scrollbars-horizontal; /* Firefox */
}
.scroll-y {
	display: block;
	overflow: hidden;
	overflow-x: hidden; /* IE */
	overflow-y: auto; /* IE */
	overflow : -moz-scrollbars-vertical; /* Firefox */
}

a img { /* supprime les bordures autour des images affectées par un lien sous IE */
	padding: 0;

	border: none;
}

a:link,
a:visited {
	color: ;
	text-decoration: underline;
}
a:active,
a:hover{
	color: ;
	text-decoration: none;
}

.framed { /* crée un encadré et eventuellement un fond sur un bloc */
	width: /* paramétrable */; 
	
	margin: 5px;/* paramétrable */; 
	padding: 10px; 
	
	border: 1px solid #ccc;
	
	background-color: #eee;
}
	.framed h2,
	.framed h3,
	.framed h4 {
		margin-top: 0;
	}
	
.comment { /* bloc de commentaire utilisé par exemple dans l'interface administrateur */
	width: 70%;
	
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 14px;
	padding: 10px;
	
	border: 1px solid #ccc;
	
	background-color: #eee;
	
	-moz-border-radius: 12px; /* Arrondi des angles */
	border-radius: 12px; /* Arrondi des angles */
}

#searching {
	margin-bottom: 14px;

	text-align: center; }

table {
	border: none;
	border-collapse: collapse;
}
	caption {
		text-align: left;
	}
	td { border: none; }
		td.bordered {
			border-left: 1px solid #999;
			border-right: 1px solid #999;
			border-bottom: 1px solid #999;
		}
	th {
		border: 1px solid #999;
		
		background-color: #c4c4c4;
		
		font-weight: bold;
		color: white;
		text-align: center;
	}
	
ol li { margin-bottom: 5px; }
ol li ol li { list-style: lower-latin; }
ul li { }
	ul li ul li { }

hr {
	/* Corrige le bug des marges de HR sous IE */
	display: block;
	height: 1px;
	padding: 0;
	color: #999; /* Couleur sous IE */
	background-color: #999; /* Couleur sous Firefox */
	border: 0;
}

.classic { background-color: #ccc; } /* alternative couleur utilisée pour distinguer les lignes de tableaux */
.altern { background-color: white; } /* alternative couleur utilisée pour distinguer les lignes de tableaux */

/* ******************************************** */
/* Gestion des formulaires */

form {
	margin: 0;
	padding: 0;
}

fieldset {
	margin-bottom: 28px;
	
	padding: 10px;
	
	border: 1px solid #ccc;
	
	background-color: #f5f5f5;
}
	fieldset ul {
		margin-left: 0;
		padding-left: 0;
	}
		fieldset ul li ul {
			margin-left: 25px;
			padding-left: 25px;
		}
		fieldset li {
			list-style: none;
			list-style-image: none;
		}
	fieldset fieldset {
		margin-bottom: 14px; 	
		
		border: 1px solid #828177;
		
		background-color: #eee;
	}
	legend { display: none; }
	label {
		font-weight: bold;
		color: #276382;
	}
		.lbleft {
			width: 135px; /* 150 */
			
			padding-right: 15px;
			
			float: left;
			display: inline;
			
			font-weight: bold;
			color: #276382;
		}
		.lbleft-short {
			width: 90px; /* 105 */
			
			padding-right: 15px;
			
			float: left;
			display: inline;
		}
		.lbleft-long {
			width: 210px; /* 225 */
			
			padding-right: 15px;
			
			float: left;
			display: inline;
		}
		input,
		select,
		textarea {
		    font-family: Arial, Helvetica, sans-serif;
			font-size: 11px;
			color: ;
		}
		input.text,
		select.text,
		textarea.text {
			border: 1px solid #777777;
		}
		textarea.text {
			width: 100%;
		}
	
	.denied { /* messages d'erreurs lors du remplissage des formulaires */
		width: 70%;
		
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 14px;
		padding: 15px 15px 15px 75px;
		
		border: 1px solid #ddd;
		
		background-color: #eee;
		background-image: url(../images/fond/denied.gif);
		background-position: 15px;
		background-repeat: no-repeat;

		color: #000;
	}
		.denied ul li {
			list-style-image: ;	
		}
		
/* ******************************************** */

/* ******************************************** */
/* Surlignement du texte sous Firefox */

::-moz-selection{
	background-color: #5295c0;
	
	color: white;
}
::selection {
	background-color: #5295c0;
	
	color: white;
} 

/* ******************************************** */

 /* ************************************************************************************************
GESTION  DES BLOCS
************************************************************************************************* */

/* ***********************************************
BLOCS PRINCIPAUX
*********************************************** */

#main {
	text-align: left; /* rétablit l'alignement à gauche (voir body{} ) */
}

	#header { display: none; }
	#menu-top {	display: none;	}
	#body {	width: 100%; }
	#menu-left { display: none; }
	#menu-right { display: none; }

/* ***********************************************
CONTENU DES PAGES
*********************************************** */

		#content {
			width: 625px;
			/*height: 5000px;*/
			
			/*padding-left: 14px;
			padding-right: 14px;*/
			
			/*background-color: yellow;*/
		}
			#content a:link,
			#content a:visited {
				font-weight: bold;
				color: #2c5b65;
				text-decoration: none;
			}
			#content a:hover,
			#content a:active {
				border-bottom: 1px dashed #999;
				
				color: #ff8614;
				text-decoration: none;
			}
			#content ul {
				list-style-image: url(../images/puce/fleche_bleue.gif);
			}
			
			.scrollblock {
				height: 150px;
				
				padding: 10px;
				
				display: block;
				overflow: hidden;
				overflow-x: hidden; /* IE */
				overflow-y: auto; /* IE */
				overflow : -moz-scrollbars-vertical; /* Firefox */
				
				border: 1px solid #828177;
				
				background-color: #eee;
			}
		
/* ******************************************** */
/* annonces */
			#last-announces {
				margin-bottom: 14px;
				
				color: #276382;;
			}
				.annonces {
					padding: 5px 10px;
					
					border: 1px solid #d4deec;
				}
					.annonces a:link,
					.annonces a:visited {
						color: #276382;
						text-decoration: none;
					}
					.annonces a:hover,
					.annonces a:active {
						color: #276382;
						text-decoration: none;
					}
					.annonces table {
					
					}
					.annonces table tbody td {
						border-bottom: 1px solid #95adce;
					}
					
/* ******************************************** */
/* Inscription rapides */
			#quick-registration {
				margin-bottom: 14px;
			}

/* ******************************************** */
/* bloc contact */
			#contact {
				width: 490px;
			}
				.contact_top {
					padding: 15px 15px 0 15px;
					
					background-color: #3665a3;
					background-image: url(../images/fond/contact_top.jpg);
					background-position: top;
					background-repeat: no-repeat;
					
					color: white;
				}
					.contact_top h2 {
						margin-top: 0;
					}
				.contact_bottom {
					height: 15px;
					
					background-image: url(../images/fond/contact_bottom.jpg);
				}
				
/* ******************************************** */
/* CVs */
			table.cv {
				border-top: 1px solid #999;
			}
				.cv .libelle {
					border-left: 1px solid #999;
					border-right: 1px solid #999;
					border-bottom: 1px solid #999;
					
					background-color: #eee;
				}
				.cv .infos {
					padding-left: 20px;
					
					border-left: 1px solid #999;
					border-right: 1px solid #999;
					border-bottom: 1px solid #999;
				}
					.cv .infos ul {
						margin-left: 0;
						padding-left: 0;
					}
						.cv .infos ul li {
							list-style-image: url(../images/puce/fleche_noire.gif);
						}

				.toplink { display: none; }
		
/* ***********************************************
PIED DE PAGE
*********************************************** */

	#footer {
		width: 100%;
		
		padding: 10px 0 10px 0;
		
		margin-left: auto;
		margin-right: auto;
		
		color: black;
	}
		#footer a:link,
		#footer a:visited {
			color: #777777;
			text-decoration: none;
		}
		#footer a:hover,
		#footer a:active {
			text-decoration: underline;
		}
		
		
		
		
#blocActuleftbeeing  { display: none; }

#blocActuleftbeeing2  { display: none; }

#blocActuleftbeeing3 { display: none; }

