@charset "utf-8";

/* ----------- */
/* HTML & BODY */
/* ----------- */
html, body {
	height:100%;	
	margin:0;
	padding:0;
}

/* ------------ */
/* NO OVERFLOW  */
/* ------------ */
.nooverflow {
	overflow:hidden;
}

/* ------------ */
/* FOND DEGRADE */
/* ------------ */
.fonddegrade {
	background:#ffffff; /* Old browsers */
	background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI0NyUiIHN0b3AtY29sb3I9IiNmNmY2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmFiYWJhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background-image:-moz-radial-gradient(center, ellipse cover,  #ffffff 0%, #f6f6f6 47%, #bababa 100%); /* FF3.6+ */
	background-image:-webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#bababa)); /* Chrome,Safari4+ */
	background-image:-webkit-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#bababa 100%); /* Chrome10+,Safari5.1+ */
	background-image:-o-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#bababa 100%); /* Opera 12+ */
	background-image:-ms-radial-gradient(center, ellipse cover,  #ffffff 0%,#f6f6f6 47%,#bababa 100%); /* IE10+ */
	background-image:radial-gradient(ellipse at center,  #ffffff 0%,#f6f6f6 47%,#bababa 100%); /* W3C */
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#bababa',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* -------- */
/* CLEARFIX */
/* -------- */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {display: block;}
html[xmlns] .clearfix {display: block;}
* html .clearfix {height: 1%;}	

/* ------ */
/* TITRES */
/* ------ */
h1, h2, h3, h4 {
	font-weight:300;
}

/* -------------- */
/* POLICE BLANCHE */
/* -------------- */
.blanc {
	color:#fff;
}

/* --------------------------- */
/* SEPARATEUR HORIZONTAL CLAIR */
/* --------------------------- */
hr.fondclair {
	clear:both; 
	float:none; 
	width:100%; 
	height:2px;
	margin:1.4em 0;
	border:none; 
	background:#ddd;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0.5, rgb(221,221,221)),
		color-stop(0.5, rgb(255,255,255))
	);
	background-image: -moz-linear-gradient(
		center top,
		rgb(221,221,221) 50%,
		rgb(255,255,255) 50%
	);}

/* --------------------------- */
/* SEPARATEUR HORIZONTAL FONCÉ */
/* --------------------------- */
hr.fondfonce {
	clear:both; 
	float:none; 
	height:2px;
	margin:1.4em 0;
	border:none; 
	background:#333;
	background-image:-webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0.5, rgb(0,0,0)),
		color-stop(0.5, rgb(80,80,80))
	);
	background-image:-moz-linear-gradient(
		center top,
		rgb(0,0,0) 50%,
		rgb(80,80,80) 50%
	);
}

/* ---------------- */
/* CHAMPS DE SAISIE */
/* ---------------- */
input,
textarea,
select,
input {
	font-family:'Open Sans', sans-serif;
	font-weight:300;
	font-size:13px;
	padding:6px;
	border-radius:4px;
}

/* ------ */
/* BOUTON */
/* ------ */
.bouton {
	background-color:#52a8e8;
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #52a8e8), color-stop(100%, #377ad0));
	background-image:-webkit-linear-gradient(top, #52a8e8, #377ad0);
	background-image:-moz-linear-gradient(top, #52a8e8, #377ad0);
	background-image:-ms-linear-gradient(top, #52a8e8, #377ad0);
	background-image:-o-linear-gradient(top, #52a8e8, #377ad0);
	background-image:linear-gradient(top, #52a8e8, #377ad0);
	border-top:1px solid #4081af;
	border-right:1px solid #2e69a3;
	border-bottom:1px solid #20559a;
	border-left:1px solid #2e69a3;
	border-radius:4px;
	font-weight:300;
	font-size:13px;
	color:#fff;
	padding:6px;
	text-align:center;
	text-shadow:0 -1px 1px #3275bc;
	-webkit-background-clip:padding-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration:none;
}
.bouton:hover {
	background-color:#3e9ee5;
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e9ee5), color-stop(100%, #206bcb));
	background-image:-webkit-linear-gradient(top, #3e9ee5 0%, #206bcb 100%);
	background-image:-moz-linear-gradient(top, #3e9ee5 0%, #206bcb 100%);
	background-image:-ms-linear-gradient(top, #3e9ee5 0%, #206bcb 100%);
	background-image:-o-linear-gradient(top, #3e9ee5 0%, #206bcb 100%);
	background-image:linear-gradient(top, #3e9ee5 0%, #206bcb 100%);
	border-top:1px solid #2a73a6;
	border-right:1px solid #165899;
	border-bottom:1px solid #07428f;
	border-left:1px solid #165899;
	cursor:pointer;
	text-shadow:0 -1px 1px #1d62ab;
	-webkit-background-clip:padding-box;
}
.bouton:active {
	background:#3282d3;
	border:1px solid #154c8c;
	border-bottom:1px solid #0e408e;
	text-shadow:0 -1px 1px #2361a4;
	-webkit-background-clip:padding-box;
}
.boutonflottant {
	float:left;
	width:auto;
	margin:6px 6px 0 0;
}
.boutonrouge {
	background-color:#ff4242;
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff4242), color-stop(100%, #660000));
	background-image:-webkit-linear-gradient(top, #ff4242, #660000);
	background-image:-moz-linear-gradient(top, #ff4242, #660000);
	background-image:-ms-linear-gradient(top, #ff4242, #660000);
	background-image:-o-linear-gradient(top, #ff4242, #660000);
	background-image:linear-gradient(top, #ff4242, #660000);
	border-top:1px solid #af4040;
	border-right:1px solid #9a2020;
	border-bottom:1px solid #9a2020;
	border-left:1px solid #9a2020;
	border-radius:4px;
	font-weight:300;
	font-size:13px;
	color:#fff;
	padding:6px;
	text-align:center;
	text-shadow:0 -1px 1px #bc3232;
	-webkit-background-clip:padding-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration:none;
}
.boutonrouge:hover {
	background-color:#f01f1f;
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #f01f1f), color-stop(100%, #570000));
	background-image:-webkit-linear-gradient(top, #f01f1f 0%, #570000 100%);
	background-image:-moz-linear-gradient(top, #f01f1f 0%, #570000 100%);
	background-image:-ms-linear-gradient(top, #f01f1f 0%, #570000 100%);
	background-image:-o-linear-gradient(top, #f01f1f 0%, #570000 100%);
	background-image:linear-gradient(top, #f01f1f 0%, #570000 100%);
	border-top:1px solid #a62a2a;
	border-right:1px solid #991616;
	border-bottom:1px solid #991616;
	border-left:1px solid #991616;
	cursor:pointer;
	text-shadow:0 -1px 1px #bc3232;
	-webkit-background-clip:padding-box;
}
.boutonrouge:active {
	background:#c42828;
	border:1px solid #a62a2a;
	border-bottom:1px solid #991616;
	text-shadow:0 -1px 1px #bc3232;
	-webkit-background-clip:padding-box;
}

/* --------- */
/* CONTENEUR */
/* --------- */
#conteneur {
	position:absolute;
	width:100%;
	height:100%;
	font-family:'Open Sans', sans-serif;
}

	/* ----------------------------- */
	/* IDENTIFICATION PAGE D'ACCUEIL */
	/* ----------------------------- */
	#conteneur #splashidentification {
		position:absolute;
		width:300px;
		height:400px;
		padding:30px 0;
		top:50%;
		left:50%;
		margin:-230px 0 0 -150px;
		text-align:center;
		background:#eee;
		border-radius:10px;
		border:1px solid #fff;
		box-shadow:0 2px 8px 0 #666;
		font-size:13px;
	}

		/* --------------------- */
		/* TEXTE IDENTIFIEZ-VOUS */
		/* --------------------- */
		#conteneur #splashidentification #identifiezvous {
			padding:0 30px;
		}

		/* --------------- */
		/* TEXTE ATTENTION */
		/* --------------- */
		#conteneur #splashidentification #attention {
			padding:0 30px;
		}
			#conteneur #splashidentification #icone {
				float:left;
				width:70px;
				font-size:5em;
				color:#ccc;
			}
			#conteneur #splashidentification #texte {
				font-size:.85em;
				float:right;
				width:160px;
				text-align:left;
			}

		/* ---------------------- */
		/* CHAMPS DE MOT DE PASSE */
		/* ---------------------- */
		#conteneur #splashidentification input#mdp {
			border-radius:4px;
			border:1px solid #ccc;
			padding:6px;
			background:#fff;
			width:150px;
		}

		/* ------ */
		/* ERREUR */
		/* ------ */
		.erreur {
			border:1px solid #f00 !important;
			background:#fee !important;
		}

	/* ------------- */
	/* PRECHARGEMENT */
	/* ------------- */
	#conteneur #prechargement {
		position:absolute;
		width:100%;
		height:100%;
		z-index:97;
	}
		#conteneur  #prechargement img {
			position:absolute;
			width:128px;
			height:128px;
			top:50%;
			left:50%;
			margin:-64px 0 0 -64px;
			background:#fff;
			border-radius:10px;
			border:1px solid #fff;
			box-shadow:0 2px 8px 0 #666;
		}

	/* --------------- */
	/* VOLET DE GAUCHE */
	/* --------------- */
	#conteneur #voletgauche {
		position:absolute;
		width:350px;
		height:100%;
		background:#333;
	}
		#conteneur #voletgauche #informations {
			padding:20px;
			color:#ccc;
		}

			/* --------------- */
			/* CHAMPS DE TEXTE */
			/* --------------- */
			#conteneur #voletgauche #informations input.texte,
			#conteneur #voletgauche #informations input.search-input {
				display:block;
				color:#fff;
				border:1px solid #666;
				background:#444;
				margin-top:10px;
				width:175px;
				float:left;
				text-transform:uppercase;
			}

			/* ------- */
			/* EXEMPLE */
			/* ------- */
			#conteneur #voletgauche #informations .exemple {
				font-style:italic;
				margin-top:8px;
				font-size:.8em;
			}

			/* ------- */
			/* BOUTONS */
			/* ------- */
			#conteneur #voletgauche #informations .bouton {
				display:block;
				float:right;
				width:100px;
				margin-top:10px;
				text-decoration:none;
			}
			#conteneur #voletgauche #informations #deconnexion.bouton, 
			#conteneur #voletgauche #informations #administration.bouton {
				display:block;
				width:150px;
				margin:0;
			}
			#conteneur #voletgauche #informations #deconnexion.bouton {
				float:left;
			}
			#conteneur #voletgauche #informations #administration.bouton {
				float:right;
			}

	/* --------------- */
	/* VOLET DE DROITE */
	/* --------------- */
	#conteneur #voletdroite {
		position:absolute;
		left:350px;
		height:100%;
	}

		/* ----- */
		/* FICHE */
		/* ----- */
		#conteneur #voletdroite .fiche {
			position:absolute;
			height:100%;
			z-index:0;
		}

			/* ------------------- */
			/* ENTETE DE LA FICHE  */
			/* ------------------- */
			#conteneur #voletdroite .fiche #entete {
				width:100%;
				background:#555;
				padding:20px;
				border-bottom:1px solid #333;
			}


					/* --------------------- */
					/* CROIX FERMETURE FICHE */
					/* --------------------- */
					#conteneur #voletdroite .fiche #entete #croix {
						position:absolute;
						right:38px;
						top:36px;
						width:50px;
						cursor:pointer;
						z-index:1;
					}

			/* ------------------- */
			/* CONTENU DE LA FICHE */
			/* ------------------- */
			#conteneur #voletdroite .fiche #contenu {
				height:100%;
				background:#444;
				padding:0 20px 20px 20px;
				color:#aaa;
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
				overflow:auto;
			}

				/* ----------------- */
				/* TITRE DE NIVEAU 2 */
				/* ----------------- */
				#conteneur #voletdroite .fiche #contenu h2 {
					margin:50px 0 4px 0;
				}

				/* --------- */
				/* GAPHIQUES */
				/* --------- */
				#conteneur #voletdroite .fiche #contenu .graphique {
					margin-top:20px;
					width:100%;
					height:400px;
				}

				/* --------------- */
				/* RONDS VIGILANCE */
				/* --------------- */
				.vigilance {
					display:inline-block;
					margin:0;
					padding:5px !important;
					width:19px !important;
					height:19px !important;
					border-radius:15px !important;
				}
					.vigilance.rougefonce { background:#9c1c1b !important;}
					.vigilance.rouge { background:#ff3937 !important;}
					.vigilance.orange { background:#ff8e1c !important;}
					.vigilance.jaune { background:#ffff9d !important;}
					.vigilance.vert { background:#aad94b !important;}
					.vigilance.vertfonce { background:#1cb864 !important;}

				/* ------------------ */
				/* TABLEAU DE DONNEES */
				/* ------------------ */
				#conteneur #voletdroite .fiche #contenu .tableaudonnees {
					width:100%;
					font-size:.8em;
				}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr td {
						padding:5px;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr td.nom {
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees.apl tr th.nom {
						width:150px;
						text-align:left;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees.apl tr td.nom {
						width:150px;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr td.valeur {
						width:35px;
						text-align:right;
					}
				#conteneur #voletdroite .fiche #contenu .tableaudonnees.vigilances {
					margin-top:20px;
				}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees.vigilances tr th h3 {
						text-align:left;
						font-weight:bold;
						margin:5px 0;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees.vigilances tr td.valeur {
						text-align:center;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees.apl tr td.valeur {
						width:auto;
						text-align:center;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr:nth-child(odd) td {
						background:#555;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr:nth-child(even) td {
						background:#444;
					}
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr:hover td.nom,
					#conteneur #voletdroite .fiche #contenu .tableaudonnees tr:hover td.valeur {
						background:#222;
						color:#fff;
					}
						#conteneur #voletdroite .fiche #contenu .tableaudonnees tr td.valeur .donnees {
							display:inline-block;
							background:#fff;
							color:#000;
							padding:2px 5px;
							border-radius:3px;
							font-weight:600;
							width:25px;
							text-align:center;
						}
						#conteneur #voletdroite .fiche #contenu .fichelogement .tableaudonnees tr td.valeur .donnees {
							width:100px;
						}
						#conteneur #voletdroite .fiche #contenu .tableaudonnees tr td.valeur .donnees.nr {
							background:rgba(0,0,0,.25);
							color:#555;
						}
						#conteneur #voletdroite .fiche #contenu .tableaudonnees tr:hover td.valeur .donnees.nr {
							background:rgba(0,0,0,.25);
							color:#666;
						}

		/* ----- */
		/* CARTE */
		/* ----- */
		#conteneur #voletdroite #map {
			position:absolute;
			width:100%;
			height:100%;
			z-index:1;
		}

			/* ----- */
			/* POPUP */
			/* ----- */
			#conteneur #voletdroite #map .popup {
				color:#fff;
				font-weight:300;
				font-size:20px;
				position:absolute;
				bottom:50px;
				left:50px;
				z-index:99;
				padding:20px;
				border-radius:4px;
				background:#000;
				border-radius:4px;
				box-shadow:0 2px 8px 0 #666;
			}

	/* ----------------------------------------- */
	/* ADMINISTRATION : PAGE DE SELECTION DES UV */
	/* ----------------------------------------- */
	#conteneur #enteteadmin {
		width:960px;
		margin:40px auto;
		font-size:13px;
	}
		#conteneur #enteteadmin a {
			color:#166aa9;
			text-decoration:none;
		}
		#conteneur #enteteadmin a:hover {
			color:inherit;
		}
	#conteneur #selectionuv {
		width:900px;
		height:auto;
		padding:30px;
		margin:20px auto;
		background:#fff;
		border-radius:10px;
		border:1px solid #fff;
		box-shadow:0 2px 8px 0 #666;
		font-size:13px;
	}

		/* ----------------- */
		/* ICONES DU TABLEAU */
		/* ----------------- */
		#conteneur #selectionuv table tr td i {
			color:#e1e1e1;
			cursor:pointer;
		}
		#conteneur #selectionuv table tr:hover td i {
			color:#666;
			cursor:pointer;
		}
		#conteneur #selectionuv table tr td i.check {
			color:#3e9ee5;
		}
		#conteneur #selectionuv table tr td i:hover {
			color:#fff;
		}

	/* -------------------------------------- */
	/* ADMINISTRATION : PAGE DE SAISIE DES UV */
	/* -------------------------------------- */
	#conteneur #saisieadmin {
		width:870px;
	}

	/* ------------------------------------------------- */
	/* MESSAGE DE CREATION ET DE SUPPRESSION DE LA TABLE */
	/* ------------------------------------------------- */
	#conteneur #actionmessage {
		background-color:rgba(0, 0, 0, 0.85);
		color:#FFFFFF;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1;
		display:none;
	}

		/* ----------------- */
		/* TITRE DE NIVEAU 1 */
		/* ----------------- */
		#conteneur #saisieadmin h1 {
			color:#3e9ee5;
		}

		/* ----------------------- */
		/* ELEMENTS DE FORMULAIRE  */
		/* ----------------------- */
		#conteneur #saisieadmin fieldset {
			display:block;
			margin-bottom:30px;
			background:#ddd;
			border-radius:8px;
			border:none;
		}
			#conteneur #saisieadmin fieldset legend {
				border:2px solid #ddd;
				background:#fff;
				border-radius:8px;
				padding:10px;
				font-weight:600;
				color:#3e9ee5;
			}
			#conteneur #saisieadmin fieldset div {
				margin-bottom:8px;
				font-size:.8em;
			}
			#conteneur #saisieadmin fieldset label.nr {
				cursor:pointer;
			}
				#conteneur #saisieadmin fieldset label input {
					color:#3e9ee5;
					padding:2px 6px;
					font-weight:600;
				}
			#conteneur #saisieadmin #Supprimer {
				width:200px;
				padding:20px;
				font-size:1.2em;
				font-weight:600;
				margin-bottom:20px;
				float:left;
			}
			#conteneur #saisieadmin #Envoyer {
				width:650px;
				padding:20px;
				font-size:1.2em;
				font-weight:600;
				margin-bottom:20px;
				float:right;
			}
			#conteneur #saisieadmin #Envoyer.pleinelargeur {
				width:100%;
			}
			#conteneur #saisieadmin .vigilanceadmin {
				color:#fff;
				line-height:30px;
				padding:4px;
				border-radius:5px;
			}
				#conteneur #saisieadmin .vigilanceadmin.rougefonce { background:#9c1c1b;}
				#conteneur #saisieadmin .vigilanceadmin.rouge { background:#ff3937;}
				#conteneur #saisieadmin .vigilanceadmin.orange { background:#ff8e1c;}
				#conteneur #saisieadmin .vigilanceadmin.jaune { background:#ffff9d; color:#000;}
				#conteneur #saisieadmin .vigilanceadmin.vert { background:#aad94b;}
				#conteneur #saisieadmin .vigilanceadmin.vertfonce { background:#1cb864;}
