/*Apparence générale de la page*/
@font-face {
	font-family: "Police1";
	src: url('polices/SaniTrixieSans.ttf');
}
html /*Corps de la page*/
{
	background:#101D2B;
	background-attachment: fixed;
	font-family: "Police1";
	color:#6D6E70;
	padding: 0;
	margin:0;
}
#corps
{
	width: 40%;
	margin-top: 35vh;
	margin-left: 29.5vw;
	background:white;
	padding:0.25%;
}
/*Menu du haut de la page*/

#menu_haut
{
	width:100%;
}
#logo
{
	width:10%;
	margin-left: 0.5%;
	position: fixed;
	top:90vh;
}
#titre
{
	width:16vw;
	margin-left:30%;
}

#corps_de_page /*Encadré blanc qui sert de corps de page*/
{
	background:white;
	width:650px;
	margin:0 auto;
	margin-top:-60px;
	padding:10px;
	box-shadow: 2px 2px 12px #6D6E70;
}

/*Formulaire de connexion*/
#div_champs
{
	margin-top: 2vh;
}
#champ_connexion /*Champ indentifiant et mot de passe*/
{
	width: 25vw;
	height: 2.5vw;
	font-size: 1vw;
	text-align: center;
	margin: 0.5vh;
	border:1px solid #6D6E70; 
}
#submit /*Bouton de connexion*/
{	
	width: 25vw;
	height: 2.5vw;
	font-size: 1vw;
	border-radius: 3px;
	border-style:solid;
	border-color:#101D2B;
	border-width: 1px;
	color: white;
	margin:2vh;
	margin-bottom: 1vh;
	background:#101D2B ;
}
#submit:hover
{
	background: white;
	transition-duration: 0.5s;
	color:#101D2B;
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
	-moz-transform: scale(1.05);
}

.clear
{
	clear: both;
	text-align:center;
}
footer
{
	padding:5px;
	text-align:center;
	font-size: 0.9vw;
	color: #5E5E5E;
}
footer a
{
	text-decoration: none;
	text-decoration: underline;
	color:#5E5E5E;
	text-shadow: none;
}

.popup
{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.entetePopup
{
    padding: 1px 16px;
    background-color: #DF0101;
    color: white;
}

.entetePopup h3
{
	margin-top:5px;
	margin-bottom:5px;
}
.entetePopupInfo
{
    padding: 1px 16px;
    background-color: #FFAA00;
    color: white;
}

.entetePopupInfo h3
{
	margin-top:5px;
	margin-bottom:5px;
}
.corpsPopup
{
	padding: 2px 16px;
}

.corpsPopup p
{
	font-size: 0.8em;
}


.contenuPopup
{
    background-color: #fefefe;
    margin: 7% auto; /* 15% from the top and centered */
    padding: 0px;
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
}

.closeErreur
{
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeErreur:hover,.closeErreur:focus 
{
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#boutonOui
{
	background-color: #FFAA00;
	color:white;
	border: 1px solid #FFAA00;
	height: 30px;
	margin-bottom:10px;
}
#boutonOui:hover,#boutonOui:focus
{
	background-color: white;
	color:#FFAA00;
	border: 1px solid #FFAA00;
}
#sousTitre
{
	font-size: 1.1vw;
	text-align:center;
	margin-top:0vh;
}