.tabs {
    position: relative;
	float:right;
	margin: 2px auto;
	width: 750px;
}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 140px;
	height: 40px;
	left: 0px;
	top: 0px;
	opacity: 0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	left: 120px;
}
.tabs input#tab-3{
	left: 240px;
}
.tabs input#tab-4{
	left: 360px;
}

.tabs label {
	background: #c8d32d;
	background: -moz-linear-gradient(top, #eefe43 0%, #d9e901 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eefe43), color-stop(100%,#d9e901));
	background: -webkit-linear-gradient(top, #eefe43 0%,#d9e901 100%);
	background: -o-linear-gradient(top, #eefe43 0%,#d9e901 100%);
	background: -ms-linear-gradient(top, #eefe43 0%,#d9e901 100%);
	background: linear-gradient(top, #eefe43 0%,#d9e901 100%);
	font-family:"Times New Roman", Times, serif;
	font-style:italic;
	font-size: 0.8em;
	line-height: 40px;
	height: 40px;
	position: relative;
	padding: 0 20px;
    float: left;
	display: block;
	width: 100px;
	color: #000;
	top: 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
    border-radius: 3px 3px 0 0;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 8px;
	display: block;
}

.tabs input:hover + label {
	background: #d9e901;
	top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}
.tabs input:hover + label:after{
	background: #d9e901;
}
.tabs input:hover + label ~ .clear-shadow {
    top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.tabs input:checked:hover + label {
    top: 0;
}
.tabs input:checked:hover + label:after{
	background: #fff;
}
.tabs input:checked:hover + label ~ .clear-shadow {
    top: 0;
	background: #fff;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

.tabs input.tab-selector-1:hover + label.tab-label-1 ~ .clear-shadow{
    z-index: 3;
	
}

.tabs input.tab-selector-2:hover + label.tab-label-2 ~ .clear-shadow {
    z-index: 2;
}

.tabs input.tab-selector-3:hover + label.tab-label-3 ~ .clear-shadow {
    z-index: 1;
}

.tabs input.tab-selector-4:hover + label.tab-label-4 ~ .clear-shadow {
    z-index: 0;
}
.tabs label:first-of-type {
    z-index: 4;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 3;
}

.tab-label-3 {
    z-index: 2;
}

.tab-label-4 {
    z-index: 1;
}

.tabs input:checked + label {
    background: #fff;
	z-index: 6;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.clear-shadow {
    background: #d9e901;
	position: relative;
	top: 0;
    height: 10px;
	margin-bottom: -10px;
    clear: both;
	z-index: -2;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2);
    border-radius: 3px;
}

.content {
    background: #fff;
	position: relative;
	text-align:justify;
    width: 100%;
	height:900px;
	z-index: 5;
	overflow: hidden;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2), 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 0 3px 3px 3px;
}

.content div {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 100%;
	padding: 10px 40px;
	overflow: hidden;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all linear 0.1s;
	-moz-transition: all linear 0.1s;
	-o-transition: all linear 0.1s;
	-ms-transition: all linear 0.1s;
	transition: all linear 0.1s;
	height: 900px;
}
.content div a
{
	color: #388a0a;	
	
}
.content div a:hover
{
	color: #e94f50;
	
}

.tabs input.tab-selector-1:checked ~ .content .content-1,
.tabs input.tab-selector-2:checked ~ .content .content-2,
.tabs input.tab-selector-3:checked ~ .content .content-3,
.tabs input.tab-selector-4:checked ~ .content .content-4 {
	width:80%;
	margin:auto;
	bottom: 0px;
    z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.2s;
    -moz-transition: all ease-out 0.2s 0.2s;
    -o-transition: all ease-out 0.2s 0.2s;
    -ms-transition: all ease-out 0.2s 0.2s;
    transition: all ease-out 0.2s 0.2s;
}

.content div h2,
.content div h3{
	color: #388a0a;
}
.content div p {
	font-size: 1em;
	line-height: 22px;
	
	text-align: left;
	margin: 0;
	color: #777;
	padding-left: 8px;
	font-family: Cambria, Georgia, serif;
	border-left: 8px solid rgba(63,148,148, 0.1);
}
aside
{

    position: relative;
    width: 20%;
	background-color:#d9e901;
    box-shadow: 1px 2px 2px #dcdcdc;
    border-radius: 5px;
    padding: 5px;
	text-align: center;
    color: white;
    font-size: 1.1em;
	
	margin-top:2px;
	margin-left:2px;
	margin-bottom:5px;
	
}
header h3{
	color:#F06;
	text-decoration:blink;
	font-size:2em;
}
header h3 a{
	color:#F06;
}
header h3 a:hover {
	color:#093;
}

aside h1 {
	
	font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 1.5em;
    font-weight: normal;
}
aside h2 {
	font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 1em;
    font-weight: normal;
}
	
aside a
{
	color: #e9fb66;	
	
}
aside a:hover
{
	color: #e94f50;
	
}
#bloc_page
{
	font-family:Georgia, "Times New Roman", Times, serif;
	width: 1024px;
    margin: auto;
}
#bloc_bandeau
{
	
	height:350px;
	width:100%;
	text-align:center;
	
	
}
#banniere_photo
{
    margin-top: 0px;
	height:250px;
    border-radius: 5px;
   
    position: relative;
	display: block;
    margin-bottom: 0px;
}
footer
{
	text-align:center;
	 margin-top: 0px;
	 width:auto;
	 height:auto;
	
    position: relative;
	
    margin-bottom: 0px;
}
#baspage
{
	 background-image:url(../images/fondbaspage.png);
	 height:250px;
}