@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica/helvetica-webfont.eot');
    src: url('../fonts/helvetica/helvetica-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/helvetica/helvetica-webfont.woff') format('woff'),
         url('../fonts/helvetica/helvetica-webfont.ttf') format('truetype'),
         url('../fonts/helvetica/helvetica-webfont.svg#ubuntulight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helveticabold';
    src: url('../fonts/helvetica/helveticabold-webfont.eot');
    src: url('../fonts/helvetica/helveticabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/helvetica/helveticabold-webfont.woff') format('woff'),
         url('../fonts/helvetica/helveticabold-webfont.ttf') format('truetype'),
         url('../fonts/helvetica/helveticabold-webfont.svg#ubuntulight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'another_shabbyregular';
    src: url('../fonts/anothershabby/anothershabby_trial-webfont.woff2') format('woff2'),
         url('../fonts/anothershabby/anothershabby_trial-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/**** DEBUT STYLE DE BASE ****/

*{
	padding: 0;
	margin: 0;
}

div, a, p, span, td, th, caption, li, h1, h2, h3, h4, legend, input, label, textarea{
	color: #154423;
	font-size: 15px;
	line-height: 1.2em;
	font-family: 'helvetica', arial;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

a[href^=tel]{
    color:inherit;
    text-decoration:none;
}

a, p, textarea, input[type="text"], input[type="email"], input[type="submit"], input[type="password"]{
	-webkit-appearance: none;
}

img{
	vertical-align: bottom;
	border: none;
}

p{
	margin: 10px 0;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}
/**** STYLE DES LISTES ****/

ul li{
	list-style-type: disc;
	list-style-position: inside;
	margin: 5px 0;
}

nav ul li{
	list-style: none;
}

body{
	margin: 0 auto;
	-webkit-text-size-adjust: 100%;
}

/**** FIN STYLE DE BASE ****/
/**** STYLE BOUTONS / TEXTE ****/

.bt-orange{
	display: inline-block;
	border-radius: 25px;
	padding: 10px 15px;
	background-color: #b87808;
	color: #fff !important;
	font-size: 17px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
	position: relative;
}
.bt-orange:hover, .bt-orange:active{
	background-color: #b4234f;
	text-decoration: none;
}

.align-center{
	text-align: center;
}

.txt-violet{
	color: #b4234f !important;
}

.loading, .loading-img{
	position: relative;
	overflow: hidden;
}
.loading:after, .loading-img:after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/loader.svg') no-repeat center center;
	background-color: #fff;
}
/**** FIN STYLE BOUTONS / TEXTE ****/

/**** STYLE ACCUEIL ****/
.background-image{
	background: url('../images/background_home.jpg') no-repeat center center;
	background-size: cover;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
}

header{
	position: relative;
	z-index: 1;
}

.headbar-green{
	background-color: #009039;
}
.headbar-green .logout{
	float: right;
}
.headbar-green .logout a{
	color: #fff;
	font-size: 18px;
	display: block;
	padding: 10px 20px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
.headbar-green .logout a:hover{
	background-color: #016B27;
	text-decoration: none;
}

.headbar-transparent{
	background-color: #fff;
	background-color: rgba(255,255,255,0.95);
	padding: 30px 0;
}

#logo{
	margin: 0 auto;
	text-align: center;
}

#wrap{
	position: relative;
	z-index: 1;
}
#wrap .center{
	padding-top: 50px;
	text-align: center;
}
#wrap .center h1{
	font-size: 48px;
	display: block;
	margin: 0;
	color: #fff;
	text-shadow: 0px 2px 5px rgba(0,0,0,0.8);
    font-family: 'another_shabbyregular', 'Arial';
}
#wrap .center #connexion{
	margin: 50px auto;
	background-color: #fff;
	background-color: rgba(255,255,255,0.85);
	padding: 20px;
	border-radius: 20px;
	width: 275px;
}
#wrap .center #connexion legend{
	border: none;
	font-size: 44px;
	color: #009039;
	font-weight: 700;
}
#wrap .center #connexion fieldset >div{
}
#wrap .center #connexion input{
	font-size: 16px;
	color: #95989A;
	border-radius: 10px;
	height: auto;
	padding: 10px 15px;
	border-color: #95989A;
	margin: 0px 0 20px 0;
}
#wrap .center #connexion input[type="submit"]{
	margin: 0;
	background-color: #009039;
	border: none;
	font-size: 20px;
	color: #fff;
	padding: 10px 20px;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
#wrap .center #connexion a{
	color: #777777;
	font-size: 14px;
}
#wrap .center #connexion input[type="submit"]:hover{
	background-color: #016B27;
}

/**** FIN STYLE ACCUEIL ****/

/**** STYLE LISTE FACTURE ****/

.headbar-green2{
	background-color: #c4e5d1;
}

.headbar-green2 .container{
	/*max-width: 1360px;*/
	width: 100%;
}
.headbar-green2 .container .row {
	margin: 0;
}
.headbar-green2 .container .row >div{
	padding: 0;
}
.headbar-green2 #logo{
	padding: 18px 0;
	margin-top: -41px;
	background-color: #fff;
}
.headbar-green2 #logo img{
	max-width: 100%;
	height: auto;
}

.headbar-green2 .row >div{
	text-align: center;
}
.headbar-green2 #search{
	text-align: center;
	padding: 17px 0 17px 45px;
	display: inline-block;
	background: url('../images/icon_search.png') no-repeat left center;
}
.headbar-green2 #search input[type="text"]{
	border-color: #95989a;
	border-radius: 0;
	width: 300px;
	max-width: 100%;
	font-size: 16px;
	height: 40px;
	padding: 0 20px;
	margin-right: 20px;
}
.headbar-green2 #search input[type="submit"]{
	font-size: 20px;
	border: 1px solid #95989a;
	background-color: #009039;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
}


#wrap2 .container, #wrap2 .container .row{
	height: 100%;
}
#wrap2 .container{
	/*max-width: 1360px;*/
	width: 100%;
}
#wrap2 .container .row{
	margin: 0;
}
#wrap2 .container .row >div{
	padding: 0;
}
#wrap2 .container .row .left{
	background-color: #c4e5d1;
	padding: 20px;
	height: 100%;
}
#wrap2 #left-menu ul li{
	list-style: none;
	margin: 0;
}
#wrap2 #left-menu ul li a{
	color: #009039;
	padding: 10px 0;
	font-size: 20px;
	display: block;
}
#wrap2 #left-menu ul li.link-home a{
	padding-left: 35px;
	background: url('../images/icon_home.png') no-repeat left center;
}	
#wrap2 #left-menu ul li.link-order a{
	padding-left: 35px;
	background: url('../images/icon_order.png') no-repeat left center;
}	

#wrap2 .container .row .right{
	padding: 20px 0 0 80px;
}
#wrap2 .table >thead >tr >th{
	border: none;
	font-size: 18px;
	color: #95989a;
	font-weight: 400;
	cursor: pointer;
}
#wrap2 .table >thead >tr >th.th-tri:after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 11px;
	margin-left: 10px;
	background: url('../images/icon_tri.png') no-repeat center 100%;
}

#wrap2 .table >thead >tr >th.td-buttons:after{
	display: none;
}

#wrap2 .table >thead >tr >th.td-buttons a.link-mail{
	/*background: url('../images/icon_mail.png') no-repeat center center;*/
}

#wrap2 .table >thead >tr >th.td-buttons a.link-send{
	/*background: url('../images/icon_send.png') no-repeat center center;*/
}

#wrap2 .table >thead >tr >th.td-buttons a.link-down{
	/*background: url('../images/icon_download.png') no-repeat center center;*/
}

#wrap2 .table >thead >tr >th.filter:after{
	background-position: center 0;
}

#wrap2 .table-striped >tbody >tr:nth-of-type(odd){
	background-color: #f4f4f4;
}
#wrap2 .table-hover >tbody >tr:hover{
	background-color: #e0e0e0;
}
#wrap2 .table >tbody >tr >td{
	border-top: 1px solid #95989a;
	font-size: 15px;
	color: #000;
	vertical-align: middle;
}


#wrap2 .table >thead >tr >td.td-buttons{
	text-align: center;
	width: 75px;
}
#wrap2 .table >thead >tr >td.td-buttons a{
	display: inline-block;
	width: 35px;
	height: 30px;
	/*text-indent: -9999px;*/
	margin: 0 5px;
	text-align: left;
}

#wrap2 .table >tbody >tr >td.td-center{
	text-align: center;
}
#wrap2 .table >tbody >tr >td.td-buttons{
	text-align: center;
	width: 75px;
}
#wrap2 .table >tbody >tr >td.td-buttons a{
	display: inline-block;
	width: 35px;
	height: 30px;
	/*text-indent: -9999px;*/
	margin: 0 5px;
	text-align: left;
}
#wrap2 .table >tbody >tr >td.td-buttons a.link-mail{
	/*background: url('../images/icon_mail.png') no-repeat center center;*/
}
#wrap2 .table >tbody >tr >td.td-buttons a.link-send{
	/*background: url('../images/icon_send.png') no-repeat center center;*/
}

#wrap2 .table >tbody >tr >td.td-buttons a.link-down{
	/*background: url('../images/icon_download.png') no-repeat center center;*/
}



/**** FIN STYLE LISTE FACTURE ****/

/**** STYLE FOOTER ****/
footer{
	position: relative;
}
footer.fixed{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}
footer .headbar-green{
	padding: 10px 0;
	text-align: right;
}

#copyright ul{
	margin: 0;
	color: #fff;
	font-size: 14px;
}
#copyright ul li{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	padding: 0 5px;
	height: 10px;
	line-height: 10px;
	position: relative;
}
#copyright ul li a{
	line-height: 10px;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}
#copyright ul li:first-child{
	border-left: none;
	padding-left: 0;
}
/**** FIN STYLE FOOTER ****/

@media screen and (min-width: 751px) {

}
