*
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

/*@font-face
{
	font-family: 'AkzidenzGroteskBQ-Cnd';
	src: url('../fonts/AkzidenzGroteskBQ-Cnd.eot');
	src: url('../fonts/AkzidenzGroteskBQ-Cnd.woff2') format('woff2'),
		 url('../fonts/AkzidenzGroteskBQ-Cnd.woff') format('woff'),
		 url('../fonts/AkzidenzGroteskBQ-Cnd.ttf') format('truetype'),
		 url('../fonts/AkzidenzGroteskBQ-Cnd.svg#AkzidenzGroteskBQ-Cnd') format('svg'),
		 url('../fonts/AkzidenzGroteskBQ-Cnd.eot?#iefix') format('embedded-opentype');
	font-weight: normal;
	font-style: normal;
}*/
html
{
	height: 100%;
}

/*DEFAUT*/
BODY
{
	background-color: #EEEEEE;
	margin: 0;
	padding: 0;

	color: #000;
	font-family: arial;
	font-size: 14px;

	height: 100%;
}

/*GENERAL*/
a
{
	color: #5D9CEC;
	text-decoration: none;
}
.center
{
	text-align: center;
}
.middle
{
	display: flex;
	align-items: center;
	height: 100%;
}
.middle.center
{
	justify-content: center;
}
.container
{
	width: 100%;
	max-width: 1200px;
}
.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;
    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.closable:after
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: "\f00d";
	font-size: 18px;
    font-family: FontAwesome;
    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,
.badge.validation,
.button.validation,
button.validation
{
	background-color: #37bc9b;
}
.notification.validation:before
{
	content: "\f00c";
}
.notification.information,
.badge.information,
.button.information,
button.information
{
	background-color: #5D9CEC;
}
.notification.information:before
{
	content: "\f05a";
}
.notification.erreur,
.badge.erreur,
.button.erreur,
button.erreur
{
	background-color: #F05050;
}
.notification.erreur:before
{
	content: "\f06a";
}
.notification.alert,
.badge.alert,
.button.alert,
button.alert
{
	background-color: #f0bd50;
}
.notification.alert:before
{
	content: "\f071";
}

.badge
{
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	color: #FFF;
	padding: 2px 5px;
	border-radius: 2px;
}
.badge > i
{
	margin-right: 5px;
}

table
{
	border-collapse: collapse;
	width: 100%;
	border: 1px solid #CCC;
	margin: 10px 0;
}
table > tbody > tr > td
{
	height: 40px;
	padding: 5px;
}
table > tbody > tr > th,
table > tbody > tr:nth-child(odd) > td
{
	background-color: #F7F7F7;
	padding: 5px;
}
table > tbody > tr:hover > td
{
	background-color: #E6F1FE;
}

/*FORMULAIRE*/
input[type='text'],
input[type='password'],
textarea,
select
{
	border: 1px solid #CCC;
	border-radius: 2px;
	background-color: #FFF;
	padding: 5px;

	font-family: arial;

	width: 100%;
}
select
{
	padding: 4px 5px;
}

fieldset
{
	border: 0;
	margin: 0;
	padding: 0;
}
fieldset > ul
{
	margin: 0;
	padding: 0;
	list-style: none;
}
fieldset > ul > li
{
	margin: 10px 0;
	padding: 0;
}
fieldset > ul > li > .input.civilite-nom-prenom select
{
	width: 80px;
}
fieldset > ul > li > .input.civilite-nom-prenom input
{
	width: calc(50% - 40px);
}
fieldset > ul > li > .input > label
{
	display: block;
	padding: 5px 0;
}
fieldset > ul > li > .input > div
{

}

.button,
button
{
	display: inline-block;
	padding: 6px 15px;
	margin: 1px;
	font-size: 14px;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	border: 0;
	border-radius: 2px;
	background-color: #5D9CEC;
	cursor: pointer;

	transition: ease-in-out 200ms;
}
.button.small,
button.small
{
	padding: 6px;
	width: 40px;
}
.button.absolute,
button.absolute
{
	position: absolute;
	top: 0;
	right: 0;
}
.button:not(.small) > i,
button:not(.small) > i
{
	margin-right: 5px;
}

.button:hover,
button:hover
{
	color: #FFF;
	background-color: #89B9F6;
}
.button.highlight,
button.highlight
{
	color: #5D9CEC;
	background-color: #FFF;
	border: 0;
}
.button.highlight:hover,
button.highlight:hover
{
	color: #FFF;
	background-color: #5D9CEC;
}

/*SPECIFIQUE*/


/*CONTENU*/
#site
{
	background-color: #FFF;
	padding: 10px;
	margin: 10px auto;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
	border-radius: 3px;
}
#site header
{
	border-radius: 3px;
	position: relative;
	background-image: url(../img/header.jpg);
	margin: -10px -10px 0;
}
#site header #logo
{
	display: inline-block;
	margin: 45px 20px;
}
#site header #logo > img
{
	width: 200px;
}
#site header #compte
{
	position: absolute;
	top: 10px;
	right: 10px;
}
h1
{
	margin: 20px 0;
	padding: 0;
	font-size: 20px;
	color: #5D9CEC;
}

body.connexion #site
{
	max-width: 350px;
	margin: 20px auto;
}
body:not(.connexion) #site > div
{
	position: relative;
	min-height: 400px;
}

/*FOOTER*/
footer
{
	clear: both;
	padding: 10px 5px;
	text-align: center;
	border-radius: 0 0 3px 3px;

	background-image: url(../img/header.jpg);
	margin: 20px -10px -10px;

	color: #000;
}

/*Jquery*/
.ui-dialog
{
	z-index: 9999;
}
.ui-dialog > .ui-dialog-content
{
	display: table;
}
.ui-dialog > .ui-dialog-content > div
{
	display: table-cell;
	vertical-align: middle;
}
.ui-dialog > .ui-dialog-content > div:first-child + div
{
	padding-left: 10px;
}