@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

*
{
	outline: none;
	box-sizing: border-box;
}
HTML
{
	height: 100%;
}
BODY
{
	margin: 0;
	padding: 0;
	height: 100%;
	
	font-family: arial;
	font-size: 13px;
	color: #000;
	
	/*background: #EEEEEF url(../img/fond.jpg) repeat-x 50% 0 fixed;*/
	background-color: #f5f5f5;
}
h1
{
	margin: 0;
	padding: 10px 0;
	color: #000;
	font-weight: normal;
}
a
{
	color: #000;
	text-decoration: none;
}
.middle
{
	display: flex!important;
    align-items: center!important;
}
/*#page > div > div > table > tbody > tr > td > .bouton:first-child
{
	padding: 5px;
}
#page > div > div > table > tbody > tr > td > .bouton:first-child > i
{
	padding-right: 4px;
}*/
.bouton
{
	position: relative;
	display: inline-block;
	padding: 5px 25px;
	margin: 5px 0;
	
	color: #000;
	/*text-shadow: 0 -1px rgba(0,0,0,0.2);*/
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	
	background: #f8c818;
	border-radius: 3px;
	border: 0;
	
	cursor: pointer;
	
	-webkit-transition: ease-in-out 200ms;
	-moz-transition: ease-in-out 200ms;
	-ms-transition: ease-in-out 200ms;
	-o-transition: ease-in-out 200ms;
	transition: ease-in-out 200ms;
}
.bouton:hover
{
	background: #ffea5b;
}
.bouton.small
{
	padding: 5px 10px;
	margin-right: 2px;
}


#site > #header > #menu
{
	position: fixed;
	
	width: 100%;
	height: 35px;
	
	background: rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	
	z-index: 3;
}
#site > #header > #menu > ul
{
	margin: 0;
	padding: 0;
	list-style: none;
}
#site > #header > #menu > ul > li
{
	float: left;
	
	margin: 0;
	padding: 0;
}
#site > #header > #menu > ul > li > a
{
	position: relative;
	display: inline-block;
	padding: 5px 25px;
	margin: 3px 2px;
	
	color: #000;
	/*text-shadow: 0 -1px rgba(0,0,0,0.2);*/
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	
	background: #f8c818;
	/*border-radius: 3px;*/
	
	-webkit-transition: ease-in-out 200ms;
	-moz-transition: ease-in-out 200ms;
	-ms-transition: ease-in-out 200ms;
	-o-transition: ease-in-out 200ms;
	transition: ease-in-out 200ms;
}
#site > #header > #menu > ul > li > a:hover,
#site > #header > #menu > ul > li > a.select
{
	background: #ffea5b;
}
#site > #header > #menu > ul > li > a.select
{
	font-weight: 700;
}


#site
{
	height: 100%;
}
#site > #page
{
	padding: 46px 10px 10px 10px;
	/*background: url(../img/logo_big.png) 50% 50% no-repeat;*/
	height: calc(100% - 56px);
}

.onglets
{
	position: relative;
	font-size: 0;
    padding: 10px;
    background-color: rgba(255,255,255,1);
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
    border-radius: 3px;
}
.onglets > a
{
	position: relative;
	display: inline-block;
	padding: 5px 25px;
	margin: 5px 0;
	border-left: 1px solid #E2E2E2;
	
	color: #000;
	/*text-shadow: 0 -1px rgba(0,0,0,0.2);*/
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	
	background: #F4F4F4;
	
	cursor: pointer;
	
	-webkit-transition: ease-in-out 200ms;
	-moz-transition: ease-in-out 200ms;
	-ms-transition: ease-in-out 200ms;
	-o-transition: ease-in-out 200ms;
	transition: ease-in-out 200ms;
}
.onglets > a.select
{
	background: #f8c818;
}
.onglets > a:hover
{
	background: #ffea5b;
}
.onglets a > .close
{
	position: absolute;
	right: 5px;
	top: 5px;
	font-size: 17px;
}
.onglets > div
{
	display: none;
    padding: 5px;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    font-size: 14px;
}
.onglets > div.select
{
	display: block;
}

.onglets input[name='recherche']
{
	position: absolute;
    top: 16px;
	right: 10px;
	padding-left: 25px;
	background: #FFF url(../img/icones/loupe.jpg) no-repeat 6px 50%;
}

/*Pagination*/
.pagination form
{
	display: inline-block;
}
.pagination
{
	margin: 10px auto;
	display: block;
	text-align: center;	
}
.pagination input
{
	display: inline-block;
	width: 20px;
	padding: 3px 4px;
	margin: 5px;
	text-align: center;
}
.pagination a
{
	display: inline-block;
	padding: 5px 10px;
	margin: 1px;
	border-radius: 3px;	
	background: #f8c818;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	
	-webkit-transition: ease-in-out 200ms;
	-moz-transition: ease-in-out 200ms;
	-ms-transition: ease-in-out 200ms;
	-o-transition: ease-in-out 200ms;
	transition: ease-in-out 200ms;
}
.pagination a:hover
{
	background: #ffea5b;
	color: #000;
}
.pagination a:active
{
	background: #E8E8E8;
	color: #000000;
}
.pagination a.disabled
{
	background: #E8E8E8;
	color: #CCCCCC;
}


fieldset
{
	border: 0;
	padding: 0;
	margin-bottom: 20px;
}
fieldset > legend,
h2
{
	font-size: 20px;
	display: block;
	width: 100%;
	border-bottom: 1px solid #f8c818;
	margin: 0 0 5px 0;
	font-weight: normal;
}
fieldset > legend > select
{
	
}
fieldset > ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 50%;
	display: inline-block;
	vertical-align: top;
	min-width: 400px;
}
fieldset > ul.double
{
	width: 100%;
}
fieldset > ul > li
{
	margin: 0;
	padding: 0;
}
fieldset > ul > li > label:first-child
{
	display: inline-block;
	padding: 5px;
	margin: 1px 0;
	width: 170px;
	line-height: 30px;
	
	color: #000;
	/*text-shadow: 0 -1px rgba(0,0,0,0.2);*/
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: bold;
	vertical-align: middle;
	
	/*background-color: #f8c818;*/
}
fieldset > ul > li.table
{
	display: table;
	margin: 1px 1px 1px 0;
	width: 100%;
}
fieldset > ul > li.table > *
{
	display: table-cell!important;
}
fieldset > ul > li
{
	font-size: 0;
}
fieldset > ul > li > div
{
	display: inline-block;
	font-size: 14px;
	width: calc(100% - 170px);
	padding: 0 5px;
	vertical-align: middle;
}



input[type='text'],
input[type='password'],
textarea,
select
{
	margin: 0;
	border-radius: 3px;
	border: 1px solid #CCC;
	box-shadow: inset 1px 1px 2px 0 rgba(50,50,50,0.1);
	padding: 5px;
	font-family: arial;
	font-size: 13px;
	vertical-align: middle;
}
select
{
	padding: 4px 5px;
}
input[type='text']:focus,
textarea:focus,
select:focus
{
	border: 1px solid #ffea5b;
}


fieldset > ul > li > div input[type='text'],
fieldset > ul > li > div input[type='password'],
fieldset > ul > li > div textarea,
fieldset > ul > li > div select
{
	width: 100%;
}

textarea
{
	display: inline-block;
	width: calc(100% - 186px);
	/*max-width: 500px;*/
	box-sizing: border-box;
	vertical-align: top;
}
select
{
	width: calc(100% - 186px);
}
input[type='checkbox'].checkbox
{
	display: none;
}
.checkbox_js
{
	display: inline-block;
	position: relative;
	width: 69px;
	height: 21px;
	overflow: hidden;
	background-image: url(../img/checkbox.jpg);
	background-position: 100%;
	border-radius: 4px;
	border: 1px solid #CCC;
	cursor: pointer;
	margin: -6px 0;
}

table.liste
{
	border-collapse: collapse;
	width: 100%;
}
table.liste > thead > tr > th
{
	border-bottom: 2px solid #f8c818;
	text-align: left;
}
table.liste > tbody > tr > td
{
	border-bottom: 1px solid #CCC;
}
table.liste > tbody > tr:hover > td
{
	background: rgba(248, 219, 24, 0.2);
}

.notification
{
	padding: 10px 20px;
    border-radius: 3px;
    color: #FFF;
    text-align: left;
    
    margin: 10px;
   /* max-width: 1400px;*/
}
.notification:before
{
    display: inline-block;
	font-size: 18px;
    font-family: "FontAwesome";
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin: 0 10px 0 0;
}
.notification > span
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 40px);
}
.notification > span a
{
	color: #FFF;
}
.notification.closable:after
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: "\f00d";
	font-size: 18px;
    font-family: "FontAwesome";
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin: 0 10px 0 0;
    cursor: pointer;
}
.notification.absolute
{
	position:  absolute;
    top: 0;
    left: 0;
    right: 0;
}
.notification.validation
{
	background-color: #37bc9b;
}
.notification.validation:before
{
	content: "\f00c";
}
.notification.information
{
	background-color: #5D9CEC;
}
.notification.information:before
{
	content: "\f05a";
}
.notification.erreur
{
	background-color: #F05050;
}
.notification.erreur:before
{
	content: "\f06a";
}
.notification.alert
{
	background-color: #f0bd50;
}
.notification.alert:before
{
	content: "\f071";
}



.autocompletion
{
	display: inline-block;
	position: relative;
	width: 440px;
}
.autocompletion > ul
{
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	background: #FFF;
	border-radius: 3px 3px 0 0;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.5);
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 100px;
	overflow: auto;
}
.autocompletion > ul > li
{
	margin: 0;
	padding: 5px;
	color: #000;
	cursor: pointer;
	border-radius: 5px;
	margin: 2px;
}
.autocompletion > ul > li:hover
{
	color: #FFF;
	background: #f8c818;
}

.data_liste
{
	list-style: none;
	padding: 0;
	margin: 0;
}
.data_liste > li
{
	border-top: 1px solid #CCC;
	padding: 10px 0;
}
.data_liste > li > *
{
	vertical-align: middle;
}
.data_liste.sortable .handle
{
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../img/icones/move_up_down_24.png) no-repeat 50% 50%;
	cursor: move;
	vertical-align: middle;
}
.data_liste.sortable input[name*='position']
{
	width: 20px;
	height: 27px;
	border: 0;
	background: none;
	display: inline-block;
	*float: left;
	text-align: center;
	vertical-align: middle;
	box-shadow: none;
}

.ui-dialog-titlebar
{
	border: 1px solid #f8c818;
	background: #f8c818;
	color: #000;
}
.ui-state-default, .ui-widget-content .ui-state-default
{
	color: #f8c818;
	
}
.ui-state-hover, .ui-widget-content .ui-state-hover,
.ui-state-focus, .ui-widget-content .ui-state-focus
{
	border: 1px solid #f8c818;
	color: #000;
	background: #f8c818;
}
.ui-widget-header
{
	background: #f8c818;
	border: none;
}
#ui-datepicker-div td > a.ui-state-highlight
{
	background: #f8c818;
	color: #000!important;
}
.ui-widget-header .ui-state-default
{
	background: none;
	border: none;
}
.ui-state-default .ui-icon
{
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	background: none;
	text-indent: inherit;
	color: #000;
}

.ui-state-default .ui-icon:before
{
    content: "\f00d";
}



.zone_photos
{
	display: none;
	background: #FFF;
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
	
	position: absolute;
	left: 50%;
	margin-left: -270px;
	bottom: 50px;
	z-index: 2;
	padding-bottom: 30px;
	width: 535px;
}
.zone_photos > div:first-child
{
	padding: .4em 1em;
	background: #f8c818;
	border-radius: 4px;
	border: 1px solid #f8c818;
	color: #FFF;
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.zone_photos > div > a
{
	position: absolute;
	right: 4px;
	top: 0px;
	line-height: 15px;
}
.zone_photos .drop-zone
{
	color: #000;
	height: 110px;
}
.zone_photos > a
{
	position: absolute;
	left: 50%;
	margin-left: -50px;
	bottom: 0;
	line-height: 15px;
}

.zone_photo
{
	width: 205px;
	display: inline-block;
	vertical-align: top;
}
.zone_photo .drop-zone
{
	height: 110px;
}

#identification
{
	display: table;
	margin: 250px auto;
	padding: 10px;
	background: rgba(255,255,255,0.8);
	border-radius: 3px;
}

#loader
{
	position: fixed;
	background: rgba(0,0,0,0.5) url(../img/loader.gif) 50% 50% no-repeat;
	display: none;
	width: 100%;
	height: 100%;
	z-index: 999;
}

#ui-datepicker-div .ui-state-highlight, #ui-datepicker-div .ui-widget-content .ui-state-highlight
{
	color: #FFF !important;
}

input.travaux
{
	display: none;
}
.pdfActuel
{
	-webkit-user-select: none;
	background:url(../img/CJUploader/ico_pdf.png) #FFFFFF no-repeat center; 
	height:100px; 
	width:190px; 
	box-shadow: 0px 0px 1px #000; 
	position:relative;
	display: inline-block;
	vertical-align: top;
	top: -15px;
}
.pdfActuel > span:first-child
{
	width: 180px;
	position: absolute;
	bottom: 2px;padding: 3px 0px;border: 1px solid #AAA;
	border-radius: 6px;
	color: #AAA;
	text-align: center;left:4px;
}
.uploadPdf
{
	display: inline-block;
}


#pop
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	right: 0;
	z-index: 999;
	background-color: #f5f5f5;
}
#pop > div:first-child
{
	position: relative;
	width: 100%;
	height: calc(100% - 50px);
}
#pop > div:first-child + div
{
	width: 100%;
	height: 50px;
	text-align: center;
}

#pop_loader
{
	/*display: none;*/
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
}
#pop_loader > div
{
	display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.9);
	z-index: 3;/**/
}
#pop_loader > div > div
{
	color: #f8c818;
	font-size: 90px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	margin: 45px;
	position: relative;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
	animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
#pop_loader > div > span
{
	position: absolute;
    max-width: 110px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@-webkit-keyframes load6
{
	0%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}
@keyframes load6
{
	0%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
	}
	38%
	{
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
	}
	100%
	{
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}
@-webkit-keyframes round
{
	0%
	{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes round
{
	0%
	{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



.ui-widget-overlay
{
	background: rgba(0,0,0,0.5);
}
.ui-datepicker
{
    z-index: 2!important;
}





