@charset "UTF-8";

/* Pour firefox */
header, footer {
	display: block;
}

::-moz-selection { /* Pour firefox */
	background:#fa0;
	color:white;
}
::selection { /* Pour les autres */
	background: #fa0;
	color:white;
}

/* Style pour les header***************************/
html {
	/*
	background: url("../img/background_login_v2.png");
	background-size: auto 100%;
	background-repeat: no-repeat;
	*/
}
body {
	/*
	height:100%;
	background: url("../img/logo_background.png");
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
	*/
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	font-family: 'arial' ;
}

.inputButton{
	padding:5px; 
	border-radius: 4px;
	background: -webkit-linear-gradient(90deg, #ddd 0%, #ddd 50%, #fff 70%, #fff 100%);
	border: solid;
	border-width: 1px;
	border-color: #888;
	border-style:outset;
	box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5) inset;
}

.inputButton:hover{
	box-shadow: 0px 0px 10px 0px rgba(250,175,0,1.0);
	-webkit-user-select: none;
	cursor: default;
}
.inputButton:active{
	box-shadow: 0px 0px 15px 0px rgba(200,200,200,1.0);/*0px 0px 0px 0px rgba(250,175,0,0.5) inset;*/
	-webkit-user-select: none;
	border-style:inset;
	cursor: default;
}