/*

HOW TO CREATE A CSS3 DROPDOWN MENU [TUTORIAL]

"How to create a CSS3 Dropdown Menu [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net/
https://twitter.com/vtimbuc
http://designmodo.com
http://vladimirkudinov.com

*/
@font-face {
  font-family: 'Electromagnetic-Lungs';
    src:  url('../fonts/Electromagnetic-Lungs.ttf.woff') format('woff'),
    url('../fonts/Electromagnetic-Lungs.ttf.svg#Electromagnetic-Lungs') format('svg'),
    url('../fonts/Electromagnetic-Lungs.ttf.eot'),
    url('../fonts/Electromagnetic-Lungs.eot?#iefix') format('embedded-opentype'); 
}
@font-face {
    font-family: 'orbitron';
    src: 
		 url('../fonts/Orbitron-Medium.ttf') format('truetype'),
		 url('../fonts/orbitron-black.otf') format('otf');
}
*,
*:after,
*:before {
    box-sizing: border-box;
}
#panel
{
	position: relative;
	width: 900px;
	margin: auto;
	text-align: center;
	height: 100%;
	padding-top: 10px;
}

body
{
	font-family: 'Lato', Calibri, Arial, sans-serif;
	margin: 0px;
	/*background: #ebe7df url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAFZCAIAAAA96mnzAAACKklEQVR4Xn2VUW7kMAxD+QLf/1x7gv71LNwdKTLhZFtggMCwSVEUPdb3159/v0uSrM8HtGRZuoQk1R69J12o9ixJWvSnVyfLdbNw0XAXWe1fIL8BoqmNGiV/cHc9Gq4NXxLKHhteRyLpA28cl0SLdx0BckSWL4gkPlIVTg1nN9Ys3iyWI5AGDA5xOXB5BJaWmOw6KSLeU6+0P50QshQyEL2im/YMIL60dTSZ3RXenlkiJpMj8XPMAl1FtjMRW19NxzOE5VGWPVGrc7aSJgz1Y9ku57mpYSwn1h0ivFOXxoCKMCXiahbbZNIZR+tkphllPsomipCwb4GMkXTmPfVg40Jt2y4RQM/PqX5JTM4iiTN8Zz1XvbIAEEvoEW+3nxTLL3lB7t7J3WwyI7g5OVxKIeFEH4FIGLC9I+XqvSd4AxJM5O6WTPr54RAxLG44FVrEuz+kFdXyLiuX6kLPVLZL2ISlcHNlBIKm5rR8nEi9wJeA6Y8JZlJOyDiin0K5ag+AXHtALBicXasjIUu9h0STBbCMU+89gMnu/J05MU1QWqdbPMRPIZIzDgsi8Olg5t7wHhUg/pv5RUzO+BHDmczHkAfZWxlSYgNI5Ig5XRoc66dW9L45eHDkbkqCO7RLG5cna/HD7YhZnfINkFo8iNyj5kx6pFrxNGRlfhV2e1Zt5DnGU8T7Tud1ivi8jU8/3Zy88pkn6+zdXiJ7AVSFBZA3VcwDfXtt5UUHS38B35hQVuJip4MAAAAASUVORK5CYII=") repeat-x;
	*/
	background: url(../img/wallpaper-1443134.png) fixed;
	background-size: cover;
}
/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	z-index: 80;
}

/* Menu */
.menu {	
	height: 40px;
	width: 899px;

	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);

	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 40px;
	width: 18%;
}

.menu li.homebutton { width: 8%; }
/* Links */
.menu li i:not(#iconhome) { color: #f3f3f3; text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	float: left; margin-left: 10px;  text-align: center; margin-top: 8px;
	
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out; } 
.menu li a {
	text-align: center;
	display: block;
	padding: 0 14px;
	margin: 6px 0;
	line-height: 28px;
	text-decoration: none;
	
	border-left: 1px solid #393942;
	border-right: 1px solid #4f5058;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;

	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #47a3da; }
.menu li:hover > i:not(#iconhome) { color: #47a3da; }
/* Sub Menu */

.menu ul {
	position: absolute;
	top: 40px;
	left: 0;
	width: 240px;
	opacity: 0;
	
	background: #1f2024;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	width: 240px;
	height: 0;
	overflow: hidden;
	padding: 0;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {

	padding: 4px 0 4px 40px;
	margin: 0;

	border: none;
	border-bottom: 1px solid #353539;
}

.menu ul li:last-child a { border: none; }

/* Icons */

.menu a.documents { background: url(../img/docs.png) no-repeat 6px center; }
.menu a.messages { background: url(../img/bubble.png) no-repeat 6px center; }
.menu a.signout { background: url(../img/arrow.png) no-repeat 6px center; }
.menu  ul li a { text-align: left !important; }

#page
{
	width: 900px;
	margin: auto;
	margin-bottom: 50px;
	padding-top: 50px;

}
#corps
{
	background: white;
	border-right: 1px solid black;
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	min-height: 500px;
	padding-bottom: 50px;
}
#editor
{
	margin-top: 30px;
}
#trigger h2
{
	font-size: 0.8em;
	font-family: Helvetica, Arial, sans-serif;
	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	margin-top: 13px;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}
#pcontainer
{
	position: relative;
}
#HiddenContent
{
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	height: 500px;

	z-index: 5;
	display: none;
 
}
#trigger
{
	position: absolute;
	width: 90px;
	height: 40px;
	top: -2px;
	margin-left: 10%;
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #2c2d33 0%, #4c4e5a 100%);
	background: -moz-linear-gradient(top, #2c2d33 0%, #4c4e5a 100%);
	background: -o-linear-gradient(top, #2c2d33 0%,#4c4e5a 100%);
	background: -ms-linear-gradient(top, #2c2d33 0%, #4c4e5a 100%);
	background: linear-gradient(top, #2c2d33 0%, #4c4e5a 100%);
	border-radius: 0 0 10px 10px;
	border-top: none;
	z-index: 1;
	text-align: center;
	box-sizing:border-box;
	border-top: none;
	cursor: pointer;

}
#trigger h2:hover
{
	color: #47a3da;
}
.error
{
	color: red;
	font-size: 1.2em;
	
}
.success
{
	color: green;
	font-size: 1.2em;
}

#panel
{

	font-family: 'Lato', Calibri, Arial, sans-serif;

}

#left_pan
{
	position: relative;
	width: 50%;
	color: #d3e2ed;
	height: 100%;
	float: left;
	padding: 10px;
	border-right: 1px solid #d3e2ed;
}
#right_pan
{
	position: relative;
	color: #d3e2ed;
	padding: 10px;
	width: 50%;
	float: right;
	height: 100%;
	
}
#left_pan h1, #right_pan h1
{
	margin: auto;
	margin-bottom: 20px;
}
#panel table
{
	width: 100%;
	margin: auto;

}
#panel table td
{
	border-collapse: collapse;
	padding: 10px;
}
#panel table img { border-radius: 6px; box-shadow: 0px 0px 2px #d3e2ed; }
#infos_membre {  margin: auto; margin-top: 20px; }
#infos_membre td { padding: 10px; }
#infos_membre img { border-radius: 6px; box-shadow: 0px 0px 2px black; }
#output
{
	width: 211px;
	height: 174px;
}
.opt_buttons
{
	position: absolute;
	width: 100%;

	padding-bottom: 20px;
	text-align: center;
	bottom: 0px;

	left: 0px;
}

#panel input[type="button"], .blackbutt
{
	font-family: 'Lato', Helvetica Neue, Arial, Helvetica, Verdana, sans-serif;
	height: 30px;
	color: black;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	padding-right: 15px;
	padding-left: 15px;
	background: #feffff; /* Old browsers */
background: -moz-linear-gradient(top,  #feffff 0%, #d2ebf9 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#feffff), color-stop(100%,#d2ebf9)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #feffff 0%,#d2ebf9 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #feffff 0%,#d2ebf9 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #feffff 0%,#d2ebf9 100%); /* IE10+ */
background: linear-gradient(to bottom,  #feffff 0%,#d2ebf9 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feffff', endColorstr='#d2ebf9',GradientType=0 ); /* IE6-9 */

	letter-spacing:2px;
	transition: color ease-in-out .015s;
	-webkit-transition: color ease-in-out .15s;
}
#panel input[type="button"]:active, .blackbutt:active
{
	border-shadow: 0px 0px 5px #47A3DA;
}
#panel input[type="button"]:hover .blackbutt:active
{
	color: #47A3DA;
}
#modal
{
	width: 900px;
	height: 600px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	background-color: #FFF;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	outline: 0 none;
	padding-bottom: 10px;
}
.box-header
{
	padding: 20px;
}
.close
{
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .4;
}
#modal h4, #modal_second h4
{
	font-size: 18px;
	margin: 0;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 500;
	line-height: 1.1;
}
.box-body
{
	border-top: 1px solid #E5E5E5;
	padding: 20px;
}
.box-body p
{
	margin: 0px;
}
#modal form input[type="text"], .blackbutt
{
	display: block;
	width: 90%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: black;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nav_buttons
{
	text-align: center;
	padding-top: 20px;
}
#modal form textarea
{
	display: block;
	width: 100%;
	min-height: 80px;
	margin: 0px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: black;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	resize: none;
	
}

#modal input[type="button"],input[type="submit"]
{	
	font-family: 'orbitron', Helvetica Neue, Arial, Helvetica, Verdana, sans-serif;
	height: 40px;
	color: white;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	padding-right: 15px;
	padding-left: 15px;
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	letter-spacing:2px;
	transition: color ease-in-out .015s;
	-webkit-transition: color ease-in-out .15s;
}
#modal input[type="button"]:active,input[type="button"]:active
{
	border-shadow: 0px 0px 5px white;
}
#modal input[type="button"]:hover,input[type="button"]:hover
{
	color: #47a3da;
}
#modal form select
{
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: start;
	color: #444;
	background: #eee;
	background: -webkit-linear-gradient(#fff, #ddd);
	background: -moz-linear-gradient(#fff, #ddd);
	background: -o-linear-gradient(#fff, #ddd);
	background: -ms-linear-gradient(#fff, #ddd);
	background: linear-gradient(#fff, #ddd);
	border: 1px solid #aaa;
	border-bottom-color: #919191;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	-webkit-border-radius: 3.01px;
	border-radius: 3.01px;
	padding: .55em 1.5em;
	cursor: pointer;
}

#modal_second
{
	width: 900px;
	height: 600px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	background-color: #FFF;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	outline: 0 none;
	padding-bottom: 10px;
	font-family: "Trebuchet MS";
}
.ajax-file-upload-statusbar, .ajax-upload-dragdrop
{
	margin: auto !important;
}
.main
{
	width: 170px !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
	font-weight: normal;
}
.content_page
{
	width: 90%;
	margin: auto;
	font-family: 'Trebuchet MS' !important;
	padding: 5px;
	padding-top: 50px;
	overflow: hidden;
}
.content_page h1
{
	font-family: orbitron;
	text-align: center;

}
.content_page ul, .content_page dt
{
	padding-left: 50px;
}

.f-img-wrap
{
	display: inline-block;
	overflow: hidden;
}
.f-img-wrap > img
{
	border-radius: 6px;
	box-shadow: 0px 0px 2px black;
	
}
#custombox-modal, #custombox-modal .news_disp
{
	max-height: 600px;
}
@media screen and (max-height: 600px) {
#custombox-modal
{
	top: 320px;
}
}
/* SLIDER STYLES */
	@font-face {
  font-family: 'Electromagnetic-Lungs';
    src:  url('../fonts/Electromagnetic-Lungs.ttf.woff') format('woff'),
    url('../fonts/Electromagnetic-Lungs.ttf.svg#Electromagnetic-Lungs') format('svg'),
    url('../fonts/Electromagnetic-Lungs.ttf.eot'),
    url('../fonts/Electromagnetic-Lungs.eot?#iefix') format('embedded-opentype'); 
}


.slider-wrapper *, .slider *:after, .slider *:before {
-webkit-box-sizing: content-box; 
-moz-box-sizing: content-box;
-ms-box-sizing: content-box;
-o-box-sizing: content-box;
box-sizing: content-box; }

.slider-wrapper{
	font-family:Arial, Sans-Serif !important;

	-webkit-font-kerning: auto;
	-webkit-font-smoothing: antialiased;
	position:relative;
	overflow:hidden;
	width:100%;
	margin:0px auto;
	
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	
	border:1px solid #000;
	box-shadow:0 3px 5px #666;
}

.slider{
	position:relative;
	width:100%; 
	height:250px;
	margin:0 auto;
	
}

@media only screen and (min-width: 1000px){
	.slider{
		width:900px;
	}
}

@media only screen and (min-width: 1440px){
	.slider{
		width:900px;
	}
}

/* ELEMENT STYLES */

.slider p{
	position:absolute;
	z-index:8000;
	/* padding:1% 3%; */
	line-height:100%;
	color:#fff ;
	white-space: nowrap;
	/* text-transform:uppercase; */
	border-radius: 10px;

}
.black p
{
	color: black;
}
.claim{
	letter-spacing: 3px;
	color: #47a3da !important;
	line-height:100%;
	font-family: Electromagnetic-Lungs;
	font-size: 3em;
	font-weight: bold;
}	

.teaser{
	padding:0.5% 1.5%;
	font-size:14px;
	 line-height:100%
}

.small{
	width:270px;
   padding-left:5px; padding-right:5px;
	text-align:center;
}

.light-green{background:transparent}
.green{background:#7CB761}
.orange{background:#EF7D00}
.turky{background:#348E8A}
.white{background:#fff; color:#333}


.eq
{
	margin-bottom: 30px;  padding: 0px;

}
.eq a:visited { color: #333; }
.eq a { box-shadow: 0px 0px 6px black;  background: rgb(254,255,255); /* Old browsers */
background: rgb(254,255,255); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(254,255,255,1) 0%, rgba(183,183,183,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(254,255,255,1)), color-stop(100%,rgba(183,183,183,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(183,183,183,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(183,183,183,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(183,183,183,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(254,255,255,1) 0%,rgba(183,183,183,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feffff', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */
transition-property: box-shadow background color; transition-duration: .35s; }
.eq:hover
{
	 color: #47a3da;
}
.eq a:hover
{
	color: #47a3da; box-shadow: 0px 0px 6px #47a3da;
background: rgb(254,255,255); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(254,255,255,1) 0%, rgba(221,241,249,1) 35%, rgba(160,216,239,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(254,255,255,1)), color-stop(35%,rgba(221,241,249,1)), color-stop(100%,rgba(160,216,239,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(221,241,249,1) 35%,rgba(160,216,239,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(221,241,249,1) 35%,rgba(160,216,239,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(254,255,255,1) 0%,rgba(221,241,249,1) 35%,rgba(160,216,239,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(254,255,255,1) 0%,rgba(221,241,249,1) 35%,rgba(160,216,239,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feffff', endColorstr='#a0d8ef',GradientType=0 ); /* IE6-9 */
}
.eq a { padding: 5px; display: block; width: 100%; height: 100%; }

.link:hover { color: #47a3da !important; }
.infos_pub { overflow: hidden; max-width: 450px; margin: auto; width: 450px; }
.infos_pub td { padding: 10px; }
#article_pub { margin: auto; margin-top: 30px; margin-bottom: 30px; box-shadow: 0px 0px 2px black; padding: 10px; }
#panel .link { color: #d3e2ed; }
#panel .link:visited { color: #d3e2ed; }
#news_container .link { color: #F18F09 }

.pagination {
  display: block;
  width: 240px;
  margin: 60px auto;
  border-radius: 3px; }
  
.pagination a {
  display: block;
  float: left;
  width: 30px;
  height: 20px;
  outline: none;
  border-right: 1px solid #CDCDCD;
  border-left: 1px solid #CDCDCD;
  color: white;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  font-family: Times, 'Times New Roman', Georgia, Palatino;
  /* ATTN: need a better font stack */
  	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	}
  .pagination a:hover, .pagination a:focus, .pagination a:active {
    background-color: #cecece;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e4e4e4), color-stop(100%, #cecece));
    background-image: -webkit-linear-gradient(#e4e4e4, #cecece);
    background-image: linear-gradient(#e4e4e4, #cecece);
	color: black; }
  .pagination a.disabled, .pagination a.disabled:hover, .pagination a.disabled:focus, .pagination a.disabled:active {
    background-color: #f3f3f3;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f3f3f3), color-stop(100%, lightgrey));
    background-image: -webkit-linear-gradient(#f3f3f3, lightgrey);
    background-image: linear-gradient(#f3f3f3, lightgrey);
    color: #A8A8A8;
    cursor: default; }
	
.pagination a:first-child {
  border: none;
  border-radius: 2px 0 0 2px; }

.pagination a:last-child {
  border: none;
  border-radius: 0 2px 2px 0; }

.pagination input {
  float: left;
  margin: 0;
  padding: 0;
  width: 120px;
  height: 20px;
  outline: none;
  border: 1px solid black;
  vertical-align: middle;
  text-align: center; }
.news_disp
{

	position: relative;
	background: white;
	width: 750px;
	padding: 5px;
	margin: 10px auto;
	box-shadow: 0px 0px 5px black;
	border-radius: 6px;
	margin-top: 20px;
	font-family: 'trebuchet ms';
}
.art
{
	padding-left: 10px;
	padding-right: 10px;
	overflow: hidden;
}
.titre_news
{
	
	width: 600px;
	padding-top: 10px;
	min-height: 80px;
	text-align: center;
	font-family: Arial,sans-serif;
}
.titre_news h2
{
	font-size: 1.4em;
	margin: 5px;
	padding-right: 15px;
}
.date
{
	position: absolute;
	clear: both;
	width: 90px;
	height: 90px;
	top: 0px;
	right: 10px;
	background: gray;
	border-radius: 0px 0px 10px 10px;
	text-shadow: 0px 0px 5px #47a3da;
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
}
.desc_news
{
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	font-style: italic;
}
.desc_event
{
	padding-left: 10px; padding-right: 10px;
}
.jour, .mois
{
	padding: 0px;
	position: absolute;
	height: 45px;
	width: 90px;	
	text-align: center;
	color: white;

}
.jour h4, .mois h4
{
	margin: 5px;
	font-size: 1.5em;
}
.titre_news h2
{
	margin: 5px;
	padding-right: 15px;
}
.mois
{
	top: 45px;
	border-radius: 0px 0px 10px 10px;
}
blockquote
{
	border-left: 3px solid #8E8A91;
	padding: 5px;
}
.content_page
{
	font-size: 0.92em;
	font-family: 'Lato';
}
.hr { margin: 0px; height: 4px; background: black;}
.less_padding { width: 98%; margin: auto !important; margin-top: 50px !important;}
.left_div, .right_div{	width: 49%; }
.subdiv .link { display: inline-block; color: #F18F09 }
.subdiv { font-size: 14px !important; padding: 10px; }
.subdiv h1, .subdiv h2, .subdiv h3 , .subdiv h4 { font-size: 0.95em; font-family: Tahoma } 
.left_div h4, .right_div h4 { padding-left: 6px; margin-bottom: 2px; }
.subdiv img { width: 80px; }
.left_div { float: left;  }
.right_div { float: right; }
.mdd h4 { color: #94C542;} .mdd .hr { background: #94C542; }
.evnt h4 { color: #F8A50A;} .evnt .hr { background: #F8A50A; }
.acts h4 { color: #A322E8} .acts .hr { background: #A322E8 }
.pbs h4 { color: #47A3DA; } .pbs .hr { background: #47A3DA }
.gest_protable td { padding: 5px; }
.gest_prodiv { border: 1px solid black; margin-bottom: 5px }
#container_pros { height: 400px; overflow: auto; }