div#popup,
ul#legende,
p.textPopup
{
	display: none;
}

html, body
{
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #404040;
	background-color: #DFDFDF;
	line-height: 1;
}

#header
{
	height: 72px;
	width: 100%;
	background-color: #4CB0EA;
}

#header *
{
	box-sizing: border-box;
}

#contenu_header
{
	margin: 0;
	width: 100%;
	height: 72px;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	
	align-items: center;
}

#contenu_header #title
{
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;
	font-size: 36px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	font-style: italic;
	transition: all .5s linear;
}

#contenu_header #title a
{
	display: block;
	position: relative;
	width: 100%;
	height: 72px;
	padding: 13px 0px;
	margin: 0;
	color: #FFFFFF;
	text-decoration: none;
}

#contenu_header #title a:after
{
	transition: all .4s ease-in;
	opacity: 0;
	position: absolute;
	height: 46px;
	bottom: 150%;
	left: 10px;
	content: url(../media/home.svg);
}

#contenu_header #title a:hover:after
{
	opacity: 1;
	position: absolute;
	bottom: calc(50% - 23px);
}

#contenu_header #logo
{
	flex: 1.2;
	width: 100%;
	padding: 13px 0;
	transition: all .5s linear;
}

#contenu_header #listeResidence,
#contenu_header #menu
{
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;
	 
	padding: 22px 5px 20px 15px;
	border-bottom: 2px solid #4CB0EA;
	width: 100%;
	color: #FFFFFF;
	height: 100%;
	transition: all .5s linear;
}

#contenu_header #listeResidence
{
	/* width: 25%; */
}

.secondary
{
	color: #BF1111;
}

.dropDown
{
	cursor: pointer;
	position: relative;
	transition: all linear .4s;
}

.dropDown:hover
{
	background: #0A86D0;
	border-bottom: 2px solid #4EB1EB;
}


.dropDown-heading
{
	font-size: 23px;
	/* text-shadow: 1px 2px 1px rgba(0,0,0, .6); */
}

.dropDown-heading span
{
	width: calc(98% - 20px);
	overflow: hidden;
	line-height: 1em;
	height: 1em;
}

.dropDown-heading img
{
	width: 20px;
}

.dropDown-heading img,
.dropDown-heading span
{
	display: inline-block;
	vertical-align: middle;
	border: 0;
	margin: 0;
	padding: 0;
}

.dropDown-list
{
	position: absolute;
	top: calc( 100% + 2px );
	left:0;
	width: 100%;
	z-index: 10;
}

.dropDown-list
{
	margin: 0;
	padding: 0;
	list-style: none;
	background: #D8D8D8;
	border: 2px solid #B5B5B5;
	max-height: 508px;
	overflow: auto;
}

.dropDown-list .dropDown-list-item
{
	display: block;
	width: 100%;
	margin: 0;
	color: #0A86D0;
	font-size: 16px;
	padding: 10px 0 10px 10px;
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #B5B5B5;
	cursor: pointer;
	overflow: hidden;
}

.dropDown-list a.dropDown-list-item
{
	text-decoration: none;
}

.dropDown-list .module.dropDown-list-item *
{
	display: inline-block;
	vertical-align: middle;
}

.dropDown-list .module.dropDown-list-item img
{
	width: 20px;
}

.dropDown-list .module.dropDown-list-item span
{
	width: calc(98% - 20px);
}

.dropDown-list .dropDown-list-item:first-child
{
	border-top: none;
}

.dropDown-list .dropDown-list-item:last-child
{
	border-bottom: none;
}

.dropDown-list .dropDown-list-item#selected,
.dropDown-list .dropDown-list-item:hover
{
	background: #4EB1EB;
	color: #FFFFFF;
}

nav
{
	align-items: stretch;
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
	background: #D3E3EA;
}

nav .nav-list
{
	display: inline-flex;
	list-style: outside none none;
	margin: 0;
	padding: 0;
	width: 100%;
}

nav .nav-list-item
{
	-moz-box-flex: 1;
	border-left: 1px solid #d3d3d3;
	flex: 1 1 0;
	text-align: center;
	width: 100%;
}

nav .nav-list-item:first-child
{
	border-left: medium none;
}

.nav-list-item a
{
	display: block;
	width: 100%;
	padding: 8px 0;
	font-weight: bold;
	text-decoration: none;
	background: transparent;
	color: #000000;
	position: relative;
}

.nav-list-item a:before
{
	position: absolute;
	left: 50%;
	bottom: -20%;
	width: 0;
	opacity: 0;
	height: 6px;
	background: rgba(0,0,0, .4);
	content: '';
	transition: all 0.3s;
}

.nav-list-item a:hover:before
{
	opacity: 1;
	width: 100%;
	bottom: 0;
	left: 0;
}

.nav-list-item a.selected,
.nav-list-item a:hover
{
	color: #FFFFFF;
	background: #4CB0EA;
}

div#callback
{
	background-color: #FFFFFF;
}

#callback .sous-menu
{
	margin: 0;
	padding: 8px;
	text-align: center;
}

#callback .sous-menu .switch
{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 3px;
	padding: 8px 15px;
	margin: 15px 5px;
	width: 20%;
	
	background-color: #D3E3EA;
	outline: none;
	color: rgba(0,0,0,.2);
	
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.15em;
	font-weight: 700;
	text-shadow: none;
	text-align: center;

	cursor: pointer;
}

#callback .sous-menu .switch:before
{
	color: #fff;
	content: attr(data-hover);
	position: absolute;
    text-transform: uppercase;
	transition: opacity .3s linear, transform .3s linear;
}

#callback .sous-menu .switch.selected
{
	background-color: #4CB0EA;
}

#callback .sous-menu .switch:hover
{
	background-color: #4CB0EA;
	transition: all .3s linear;
}

#callback .sous-menu .switch:hover:before
{
	transform: scale(0.9);
	opacity: 0;
}

div.dataTables_wrapper
{
	background-color: #EFEFEF;
	margin: 0 5px;
}

.footerCallback
{
	height: 60px;
	background-color: #9DD4F3;
	width: 100%;
	border: 1px solid #808080;
	border-top: none !important;
	box-sizing: border-box;
}

div.dataTables_wrapper .footerCallback #tableCallback_info
{
	margin: 1%;
	padding:0;
}

div#headerCallback
{
	height: 50px;
	width: 100%;
}

div#headerCallback .dataTables_filter
{
	width: 600px;
	height: 100%;
	color: #000;
	font-weight: bold;
}

div#headerCallback .dataTables_filter input
{
	width: 50%;
	height: 30px;
	margin: 10px;
}

thead tr
{
	background-color: #9DD4F3;
	color: #fff;
	font-size: 14px;
	height: 50px;
}

table#tableCallback,
table#tableCallbackJour
{
	border: 1px solid #808080;
	border-bottom: none !important;
	box-sizing: border-box;
}

table#tableCallback thead tr th
{
	color: #202020;
	font-size: 16px;
	font-weight: lighter;
	border-right: 1px solid #fff;
	border-bottom: medium none !important;
}

table#tableCallback thead tr th.actions
{
	border-right: medium none !important;
}

table#tableCallback thead tr th:last-child
{
	border-left: 1px solid #fff;
	border-right: medium none !important;
}

.hidden
{
	display: none !important;
}

.customSelect
{
	display: inline-block;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	height: 28px;
	border: 1px solid #A0A0A0;
	background: #fff url("../media/arrowdown.gif") no-repeat 98% 50%;
	vertical-align: middle;
	cursor: pointer;
	padding: 0;
}

div.customSelect:hover
{
	border: 1px solid #404040;
}

.customSelect select
{
	cursor: pointer;
	outline: none;
	padding: 0 !important;
	width: calc(100% + 2px);
	height: 28px;
	border: none !important;
	outline: 0 !important;
	box-shadow: none;
	background-color: transparent;
	background-image: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	margin-left: -1px;
}

.customSelect select option
{
	padding: 6px 3px;
	height: 16px;
}

div#page table td
{
	text-align: center;
	padding: 5px 10px;
	border-right: 1px solid #fff;
}

div#page table td:last-child
{
	border-right: 0;
	border-left: 1px solid #fff;
}

div#page table tbody td.telephone
{
	font-weight: bold;
	text-align: center;
	color: #000;
}

div#page table tbody td.temps
{
	text-align: right;
}

div#page table tbody td.provenance:first-letter, div#page table tbody td.residence:first-letter
{
	text-transform: uppercase;
}

div#page table tbody td.provenance
{
	text-transform: lowercase;
}

div#page table tbody td.residence
{
	text-transform: lowercase;
}

div#page table tbody td.actions
{
	border-right: 0;
	display: inline-flex;
	width: 100%;
	padding:0;
	padding: 5px 0;
}

div#page table tbody td.actions input
{
	flex: none;
	width: 90%;
	margin: 0;
}

div#page table tbody td.actions input.traitement
{
	flex: 1;
	width: 100%;
	border-left: none;
	border-radius: 0 2px 2px 0;
}

div#page table tbody td.actions .customSelect 
{
	flex:3;
	border: 1px solid #4CB0EA;
	border-right: none;
	border-radius: 2px 0 0 2px;
}

div#page table tbody td.commentaire p
{
	margin : 2px auto;
}

div#page table tbody td.commentaire
{
	text-align: left;
}

div#page table tbody td.commentaire
{
	font-size: 12px;
	height: 30px;
	padding: 3px 10px;
}

thead tr
{
	background-color: #9DD4F3;
	color: #fff;
	font-size: 14px;
}

thead tr th
{
	border-bottom: 1px solid #808080 !important;
	padding: 5px 10px !important;
}

#tableCallback input,
#tableCallback textarea
{
	border-radius: 2px;
}

#tableCallback input[type=text],
#tableCallback input[type=search],
#tableCallback textarea
{
	border: 1px solid #A0A0A0;
}

#tableCallback input[type=text],
#tableCallback input[type=search]
{
	width: 200px;
	height: 18px;
}

#tableCallback textarea
{
	padding: 5px 10px;
	width: 448px;
	height: 36px;
}

#tableCallback input[type=text]:focus,
#tableCallback input[type=text]:hover,
#tableCallback input[type=search]:focus,
#tableCallback input[type=search]:hover,
#tableCallback textarea:focus,
#tableCallback textarea:hover
{
	border: 1px solid #808080;
}

#tableCallback input[type=button]
{
	font-size: 14px;
	padding: 3px 0;
	margin: 0 5px 0 0;
	cursor: pointer;
	border: 1px solid #4CB0EA;
	background-color: #0A86D0;
	color: #fff;
	width: 160px;
}

#tableCallback input[type=button]:hover
{
	border: 1px solid #4CB0EA;
	background-color: #4CB0EA;
}

#tableCallback input[type=button][disabled]
{
	cursor: default;
	border: 1px solid #C0C0C0;
	color: #C0C0C0;
	background-color: #FFFFFF;
	background: linear-gradient(to bottom, #FFFFFF 0%, #DFDFDF 100%);
}

.ui-widget-overlay
{
	background-image: none;
	background-color: #020811;
	opacity: 0.60;
	filter: alpha(opacity=60);
}

.ui-button-text
{
	padding: 0 !important;
}

div#pagination
{
	display: inline;
}

ul#legende
{
	float: right;
	padding: 0; 
	margin: 1%;
	font-style: italic;
}

ul#legende li
{
	display: inline;
}

ul#legende li span.couleur
{
	display: block;
	float: left;
	padding: 0; 
	margin: 0 5px 0 15px; 
	width: 20px;
	height: 20px;
	border: 1px solid #A0A0A0;
}

ul#legende li span.libelle
{
	float: left;
	padding: 0; 
	margin: 0;
	line-height: 22px;
}

ul#legende li span.libelle b
{
	font-weight: normal;
}


/** STYLE DE BASE **/
.dataTables_wrapper table.dataTable thead .sorting {
	background: url("../javascript/datatables-1.10.0/media/images/sort_both.png") no-repeat 98% center;
}
.dataTables_wrapper table.dataTable thead .sorting_asc {
	background: url("../javascript/datatables-1.10.0/media/images/sort_asc.png") no-repeat 98% center;
}
.dataTables_wrapper table.dataTable thead .sorting_desc {
	background: url("../javascript/datatables-1.10.0/media/images/sort_desc.png") no-repeat 98% center;
}


ul#legende li.traite span.couleur,
table.dataTable tbody tr
{
	background-color: white;
}

table.dataTable tbody tr.selected
{
	background-color: gray;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td
{
	border-top: 1px solid white;
}

table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td
{
	border-top: 1px solid white;
	border-right: 1px solid white;
}

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child
{
	border-left: 1px solid white;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd
{
	background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected
{
	background-color: #7c7c7c;
}

table.dataTable.hover tbody tr:hover,
table.dataTable.hover tbody tr.odd:hover,
table.dataTable.hover tbody tr.even:hover,
table.dataTable.display tbody tr:hover,
table.dataTable.display tbody tr.odd:hover,
table.dataTable.display tbody tr.even:hover
{
	background-color: whitesmoke;
}

table.dataTable.hover tbody tr:hover.selected,
table.dataTable.hover tbody tr.odd:hover.selected,
table.dataTable.hover tbody tr.even:hover.selected,
table.dataTable.display tbody tr:hover.selected,
table.dataTable.display tbody tr.odd:hover.selected,
table.dataTable.display tbody tr.even:hover.selected
{
	background-color: #7b7b7b;
}

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3,
table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3
{
	background-color: #f9f9f9;
}

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3,
table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3
{
	background-color: #7d7d7d;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1
{
	background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd > .sorting_2,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_2
{
	background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd > .sorting_3,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_3
{
	background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1
{
	background-color: #797979;
}

table.dataTable.display tbody tr.odd.selected > .sorting_2,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2
{
	background-color: #797979;
}

table.dataTable.display tbody tr.odd.selected > .sorting_3,
table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3
{
	background-color: #7b7b7b;
}

table.dataTable.display tbody tr.even > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even > .sorting_1
{
	background-color: #f9f9f9;
}

table.dataTable.display tbody tr.even > .sorting_2,
table.dataTable.order-column.stripe tbody tr.even > .sorting_2
{
	background-color: #fbfbfb;
}

table.dataTable.display tbody tr.even > .sorting_3,
table.dataTable.order-column.stripe tbody tr.even > .sorting_3
{
	background-color: #fdfdfd;
}

table.dataTable.display tbody tr.even.selected > .sorting_1,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1
{
	background-color: #7d7d7d;
}

table.dataTable.display tbody tr.even.selected > .sorting_2,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2
{
	background-color: #7e7e7e;
}

table.dataTable.display tbody tr.even.selected > .sorting_3,
table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3
{
	background-color: #7f7f7f;
}

table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.display tbody tr.odd:hover > .sorting_1,
table.dataTable.display tbody tr.even:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1
{
	background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.display tbody tr.odd:hover > .sorting_2,
table.dataTable.display tbody tr.even:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2
{
	background-color: #ebebeb;
}

table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.display tbody tr.odd:hover > .sorting_3,
table.dataTable.display tbody tr.even:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3
{
	background-color: #eeeeee;
}

table.dataTable.display tbody tr:hover.selected > .sorting_1,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
table.dataTable.display tbody tr.even:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1
{
	background-color: #757575;
}

table.dataTable.display tbody tr:hover.selected > .sorting_2,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
table.dataTable.display tbody tr.even:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2
{
	background-color: #767676;
}

table.dataTable.display tbody tr:hover.selected > .sorting_3,
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
table.dataTable.display tbody tr.even:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3
{
	background-color: #777777;
}

/*** DIALOG & POP-UP ***/
.ui-dialog
{
	padding: 0;
	border-radius: 3px;
	border: 1px solid #289CE0;
}

.ui-dialog-titlebar
{
	margin: 0;
	background: #4CB0EA;
	border-radius: 0;
	border: none;
	color: #FFF;
}

.ui-dialog-titlebar-close
{
	background: #73C2F1 !important;
	border-radius: 0;
	border: none;
	color: #FFF;
	border: none !important;
}

.ui-dialog-titlebar-close:hover
{
	background: #289CE0 !important;
}

#popup
{
	margin: 0;
	font-size: 11px
}

#popup label,
#popup input
{
	vertical-align: middle;
	margin: 0 5px;
}

#popup #boutons
{
	margin: 10px 0;
	width: 100%;
	text-align: center;
}

#popup #boutons input[type=button]
{
	display: inline-block;
	vertical-align: middle;
	background: #73C2F1;
	padding: 3px 5px;
	border: 1px solid #289CE0;
	border-radius: 3px;
	color: #FFF;
	font-weight: bold;
	cursor: pointer;
}

#popup #boutons input[disabled]
{
	cursor: default;
	color: #808080;
	border-color: #808080;
	background: #CDCDCD;
}

#popup #boutons input[type=button]:hover
{
	background: #289CE0;
}

#popup #boutons input[type=button][disabled]:hover
{
	background: #CDCDCD;
}

#popup textarea
{
	border: 1px solid #4CB0EA;
	width: 100%;
	box-sizing: border-box;
	margin-top: 10px;
}

/* STATS CALLBACK */
#statistiques
{
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#statistiques form
{
	display: block;
	margin: 0;
	padding: 2%;
	background: #9DD4F3;
}

#statistiques .dataTables_wrapper .filter
{
	display: inline-block;
	vertical-align: middle;
	float: right;
}

#statistiques input[type=button]
{
	float: left;
	display: inline-block;
	vertical-align: middle;
	background: #73C2F1;
	padding: 3px 5px;
	border: 1px solid #289CE0;
	border-radius: 3px;
	color: #FFF;
	font-weight: bold;
	cursor: pointer;
	line-height: 20px;
	margin: 10px;
}

#statistiques input[disabled]
{
	cursor: default;
	color: #808080;
	border-color: #808080;
	background: #CDCDCD;
}

#statistiques input[type=button]:hover
{
	background: #289CE0;
}

#statistiques input[type=button][disabled]:hover
{
	background: #CDCDCD;
}

#statistiques h1
{
	text-align:center;
	color: #4CB0EA;
}

#statistiques .customSelect
{
	width: 100px;
	border-color: #289CE0;
}

#statistiques table#tableCallback,
#statistiques table#tableCallbackJour,
#statistiques span.dateMini
{
	display: none;
}

#statistiques table#tableCallback tr td.annee,
#statistiques table#tableCallback tr td.mois,
#statistiques table#tableCallback tr td.jour
{
	text-decoration: none;
}

#statistiques table#tableCallback tr td.annee:hover,
#statistiques table#tableCallback tr td.mois:hover,
#statistiques table#tableCallback tr td.jour:hover
{
	cursor: pointer;
	text-decoration: underline;
}

/** IDENTIFICATION **/
#login ,
#login *
{
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.requestForm
{
	cursor: default;
	width: 100%;
	margin: 0;
	padding: 10px 0;
	background: #FEFEFE;
	border-radius: 3px;
	border: 1px solid #4CB0EA;
}

.requestForm .field
{
	width: 100%;
	margin: 8px 0;
	font-size: 16px;
	padding: 0 10px;
}

.requestForm .field label,
.requestForm .field input[type=text],
.requestForm .field input[type=password]
{
	cursor: default;
	vertical-align: middle;
	display: inline-block;
	width: 49%;
}

.requestForm .field input[type=text]:hover,
.requestForm .field input[type=text]:focus,
.requestForm .field input[type=password]:hover,
.requestForm .field input[type=password]:focus
{
	border-color: #4CB0EA !important;
}

.requestForm .field .data,
.requestForm .field input[type=text],
.requestForm .field textarea
{
	line-height: 25px;
	font-size: 16px !important;
	padding: 4px;
	border-radius: 3px;
	border: 1px solid #DDDDDE !important;
}

.requestForm .field .data
{
	color: rgba(0, 0, 0, .5);
}

.submitOnEnter
{
	display: none;
}

.submit
{
	cursor: pointer;
	display: inline-block;
	color: #FFF;
	background-color: #6DAD6E;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 11px;
	padding: 5px 8px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.3);
	border-bottom-width: 3px;
}

.submit.grey
{
	background-color: #F8F8F8;
	color: #666;
}

.submit.cancel
{
	background-color: #E48681;
}

.submit:hover
{
	background-color: #40AD43;
	border-color: rgba(0,0,0,0.5);
	border-bottom-width: 3px;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.submit.grey:hover 
{
	color: #105AB4;
	background-color: #A1CEFF;
}

.submit.cancel:hover 
{
	background-color: #DA4F49;
}

#login
{
	clear: both;
	width: 100%;
	padding: 0 2% 5%;
	color: #2B2B2B;
	font-family: Calibri !important;
}

#mdpOublie 
{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 997;
	background: rgba(0,0,0, .6);
}

#mdpOublie h2
{
	margin: 0;
	padding: 15px;
	background: #4cb0ea;
}

#mdpOublie h2 > *
{
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

#mdpOublie h2 a img
{
	display: block;
	height: 100%;
	border: none;
	padding: 0;
	margin: 0;
}

#submit,
.submit-field
{
	width: 100%;
	text-align: center;
	padding: 0 10px;
}

#mdpOublie .cadreOverlay
{
	display: block !important;
	width: 74%;
	margin: 5% 13%;
	padding: 0 0 15px;
	opacity: 1 !important;
	background: #FFFFFF;
	border-radius: 3px;
}

.cadreOverlay > div
{
	padding: 0 15px;
}

#recupererMotDePasse
{
	width: 48%;
	margin: 5px 20px 5px 49.5%;
	text-align: center;
}

#retourAjax
{
	display: none;
}

#mdpOublie #descriptionMdpOublie
{
	margin: 10px 0px;
	text-align: justify;
}

#mdpOublie #retourAjax
{
	display: none;
	color: #4CB0EA;
	text-align: center;
	margin: 0 0 15px;
	font-weight: bold;
}