.backPlugin {
	background: #222;
	display: block;
	width: 67px;
	padding: 4px 15px;
	border-radius: 3px;
	color:#FFF;
	line-height: 25px;
}

.backPlugin:hover {
	color:#FFF;
}

.backPluginEn {
	background: #222;
	display: block;
	width: 56px;
	padding: 4px 15px;
	border-radius: 3px;
	color:#FFF;
	line-height: 25px;
}

.backPluginEn:hover {
	color:#FFF;
}

.backDetailPlugin {
	background: #206696;
	padding: 4px 15px;
	border-radius: 3px;
	color:#FFF;
	border: 0px;
	margin: 10px;
	cursor: pointer;
}

.backDetailPlugin:hover {
	color:#FFF;
}



.breadcrumb {
	/*centering*/
	display: inline-block;
	box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag;
	margin-left: 29px; 
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 13px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 70px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	text-align: center;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
	text-align: center;
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 1px rgba(0, 0, 0, 0.4), 
		3px -3px 0 1px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
}


.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #9EEB62;
}











div#bandeau {
	width:100%;
	height:70px;
	background-color:#FFF;
	}
div#contenu {
	width:1220px;
	height:100%;
	margin: 0px auto;
	background-color:#F2F2F2;
	box-shadow: 0px 30px 30px -4px #222;
	overflow: hidden;
	}
	
.formContenu {
	width:939px;
	float:left;
	border-left: 1px solid #DDD;
	}
.formContenuPanier {
	width:939px;
	float:left;
	border-left: 1px solid #DDD;
	background: #FFF;
	}
.formContenuInner {
	padding:30px;
	float:left;
	background: #FFF;
	}
	
	
	
	
	
/* Bloc */
.formContenuInner .bloc {
	float:left;
	width: 100%;
	display: block;
	padding-bottom: 30px
	}
/* Bloc */
	
	
	
	
		
/* Bloc 1 */
.formContenuInner .bloc1 {
	margin-right: 48px;
	width: 260px;
	float:left;
	}
.formContenuInner .bloc1 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 1 */




/* Bloc 2 */
.formContenuInner .bloc2 {
	width: 260px;
	float:left;
	}
.formContenuInner .bloc2 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 2 */




/* Bloc 3 */
.formContenuInner .bloc3 {
	margin-left: 48px;
	width: 260px;
	float:left;
	}
.formContenuInner .bloc3 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 3 */




/* Bloc 4 */
.formContenuInner .bloc4 {
	margin-right: 69px;
	float:left;
	width: 430px;
	float:left;
	}
.formContenuInner .bloc4 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 4 */




/* Bloc 5 */
.formContenuInner .bloc5 {
	width: 499px;
	float:left;
	}
.formContenuInner .bloc5 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	line-height: 22px;
	}
/* Bloc 5 */




/* Bloc 6 */
.formContenuInner .bloc6 {
	width: 499px;
	float:left;
	}
.formContenuInner .bloc6 h1 {
text-align: left;
font-size:17px;
color:#444;
padding-bottom: 18px;
line-height: 22px;
	}
/* Bloc 6 */


/* Bloc 7 */
.formContenuInner .bloc7 {
	width: 430px;
	float:left;
	}
.formContenuInner .bloc7 h1 {
text-align: left;
font-size:17px;
color:#444;
padding-bottom: 18px;
line-height: 22px;
	}
/* Bloc 7 */

/* Bloc 8 */
.formContenuInner .bloc8 {
	float:left;
	}
.formContenuInner .bloc8 h1 {
text-align: left;
font-size:17px;
color:#444;
padding-bottom: 18px;
line-height: 22px;
	}
/* Bloc 8 */






	
.NextPrev {
	float: left;
	width: 848px;
	padding: 20px;
	background:#EEE;
	}
.buttonclick {
	/*padding: 20px;*/
	float:right
	}
.contenu-box-entry {
	width: 907px;
	float:left;
	padding:0px;
	background: #F5F5F5;
	}	

	
/* Form 1 */	
.contenu-form1 {
	padding: 30px;
	}
.contenu-form1 p {
	color:#606060;
	text-align:left;
	font-size:13px;
	padding-bottom: 10px;
	}
.contenu-form1 h1 {
	text-align: center;
	font-size:35px;
	color:#444;
	padding-bottom: 10px;
	padding-top: 10px;
	}
.contenu-form1 h2 {
	font-size:13px;
	color:#444;
	padding-top: 9px;
	padding-bottom: 10px;
	text-align: left;
	font-weight: bold;
	}
.contenu-form1 h3 {
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	}

.contenu-form1 h4 {
	font-size: 13px;
	color: #606060;
	line-height: 18px;
	}
.contenu-form1 .center {
	text-align:center;
	}
	
/* Form 2 */	
.contenu-form2 {
	padding: 1px 25px 0px 25px;
	overflow: hidden;
	min-width: 1170px;
	background:#FFF;
	border-bottom:1px solid #E1E1E1;
	}	
.contenu-form2-bloc {
	float:left;
	background-color:#FFF;
	padding: 9px;
	/*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	border: 1px solid #E5E5E5;
	margin: 0px 6px 10px 6px;*/
	border-radius:3px;
	width: 206px;
	}
.contenu-form2-bloc h2 {
	color:#545454; 
	font-size:19px;
	padding-bottom: 7px;
	text-align:center;
	letter-spacing: 0px;
	}
.contenu-form2-bloc p {
	color:#555; 
	font-size:14px;
	text-align:center;
	line-height: 20px;
	}
	
	
	
	.contenu-form222 {
	padding: 1px 25px 0px 25px;
	overflow: hidden;
	min-width: 1170px;
	background:#FFF;
	border-bottom:1px solid #E1E1E1;
	}
	.contenu-form222-bloc {
	float:left;
	background-color:#FFF;
	padding: 9px;
	/*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	border: 1px solid #E5E5E5;
	margin: 0px 6px 10px 6px;*/
	border-radius:3px;
	width: 484px;
	}
.contenu-form222-bloc h2 {
	color:#545454; 
	font-size:19px;
	padding-bottom: 7px;
	text-align:center;
	letter-spacing: 0px;
	}
.contenu-form222-bloc p {
	color:#555; 
	font-size:14px;
	text-align:left;
	line-height: 48px;
	}
	
	
	
	.contenu-box {
	padding: 25px 95px;
	overflow: hidden;
	background: #EEE;
	border-top: 1px solid #DDD;
	}
.contenu-box h1 {
	color:#FF6600;
	font-size:30px;
	text-align:center;
	font-weight: bold;
	}
.contenu-box h3 {
	color:#FF6600;
	font-size:17px;
	text-align:center;
	}
	
.contenu-box-bloc {
	float:left;
	background-color:#FFF;
	padding: 20px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	margin: 0px 7px 15px 7px;
	width: 335px;
	}
.contenu-box-bloc1 {
	float:left;
	background-color:#FFF;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	width: 100%;
	margin-top: 25px;
	height: 250px;
	}
.contenu-box-bloc1 h2 {
	color:#FF6600; 
	font-size:25px;
	text-align:left;
	padding-bottom:0px;
	padding-top: 25px;
	}
	
.contenu-box-bloc1 h1 {
	color:#353535; 
	font-size:20px;
	text-align:left;
	padding-bottom:2px;
	padding-top: 30px;
	font-weight:bold;
	}
	
/* Form 3 */	
.contenu-form3 {
	padding: 20px 25px 0px 25px;
	overflow: hidden;
	min-width: 1170px;
	background: #EEE;
	}	
.contenu-form3-bloc {
	float:left;
	background-color:#FFF;
	padding: 20px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	margin: 0px 7px 15px 7px;
	width: 335px;
	}
.contenu-form3-bloc_webinars {
	background-color:#FFF;
	padding: 20px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	margin: 0px 7px 15px 7px;
	width: 335px;
	}
.contenu-form3-bloc_webinars h1 {
	text-align: left;
	font-size:20px;
	color:#222;
	padding-bottom: 18px;
	padding-top: 4px;
	line-height: 22px;
	}

.contenu-form3-bloc1 {
	float:left;
	background-color:#FFF;
	padding: 0px 20px 0px 20px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	margin: 0px 7px 15px 7px;
	width: 727px;
	height: 260px;
	}
.contenu-form3-bloc1 p {
	color:#555; 
	font-size:13px;
	text-align:left;
	line-height: 20px;
	}
.contenu-form3-bloc1 h2 {
	color:#FF6600; 
	font-size:25px;
	text-align:left;
	padding-bottom:0px;
	padding-top: 25px;
	}
	
.contenu-form3-bloc1 h1 {
	color:#353535; 
	font-size:20px;
	text-align:left;
	padding-bottom:2px;
	padding-top: 30px;
	font-weight:bold;
	}

.contenu-form3-bloc p {
	color:#555; 
	font-size:14px;
	text-align:center;
	line-height: 20px;
	}
.contenu-form3-bloc a {
	color: #FFF;
	border-radius: 2px;
	font-size: 14px;
	background: #AD2585;
	padding: 10px 25px;
	}
.contenu-form3-bloc a:hover {
	color: #FFF;;
	}
.contenu-form3-bloc h2 {
	color:#353535; 
	font-size:30px;
	padding-bottom: 0px;
	text-align:center;
	/*letter-spacing: -1px;
	font-family:"Myriad Set Pro","Lucida Grande","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";*/
	}
.contenu-form3-bloc h3 {
	font-size:17px;
	color:#222;
	text-align: center;
	}
.contenu-form3-bloc h4 {
	font-size:20px;
	padding-bottom: 10px;
	color:#AD2585;
	text-align:center;
	}
	
.contenu-form33-bloc {
	float:left;
	padding: 0px 20px 20px 20px;
	width: 727px;
	}
.contenu-form33-bloc h1 {
	color: #F60;
	font-size: 30px;
	text-align: center;
	font-weight: bold;
	}
.contenu-form33-bloc h3 {
	color: #F60;
	font-size: 17px;
	text-align: center;
	}

/* Form 4 */	
.contenu-form4 {
	padding: 15px 25px 0px 25px;
	overflow: hidden;
	min-width: 1170px;
	}	
.contenu-form4-bloc1 {
	float:left;
	background-color:#FFF;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	margin: 0px 7px 15px 7px;
	padding: 20px;
	width: 336px;
	}
.contenu-form4-bloc1 h2 {
	color:#353535; 
	font-size:19px;
	text-align:left;
	letter-spacing: 0px;
	}
.contenu-form4-bloc1 p {
	color:#555; 
	font-size:14px;
	text-align:left;
	}
	
/* Form 5 */	
.contenu-form5 {
	padding: 30px;
	background:#FFF;
	border-top: 1px solid #E1E1E1;
	}
.contenu-form5 h1 {
	color:#353535; 
	font-size:35px;
	text-align:center;
	letter-spacing: 0px;
	}
.contenu-form5 p {
	color:#808080; 
	font-size:12px;
	text-align:left;
	}
	
/* Form 555 */	
.contenu-form555 {
	padding: 30px;
	background:#FFF;
	border-top: 0px solid #E1E1E1;
	margin: 10px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	}
.contenu-form555 h1 {
	color:#353535; 
	font-size:35px;
	text-align:center;
	letter-spacing: 0px;
	}
.contenu-form555 p {
	color:#808080; 
	font-size:12px;
	text-align:left;
	}

/* Form 6 */	
.contenu-form6 {
	padding: 50px;
	overflow: hidden;
	background: none repeat scroll 0% 0% #FFF;
	border-top: 1px solid #E1E1E1;
	width: 879px;
	}	
.contenu-form6-bloc {
	float:left;
	background-color:#FFF;
	padding: 20px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	margin: 0px 7px 15px 7px;
	width: 186px;
	}
.contenu-form6-bloc h2 {
	color:#545454; 
	font-size:19px;
	padding-bottom: 7px;
	text-align:center;
	letter-spacing: 0px;
	}
.contenu-form6-bloc p {
	color:#808080; 
	font-size:14px;
	text-align:center;
	}

/* panier 1 */	
.contenu-form1panier {
	padding: 30px;
	}
.contenu-form1panier p {
	color:#606060;
	text-align:left;
	font-size:12px;
	padding-bottom: 0px;
	}
.contenu-form1panier h1 {
	text-align: center;
	font-size:35px;
	color:#444;
	padding-bottom: 10px;
	padding-top: 10px;
	}
.contenu-form1panier h2 {
	font-size:13px;
	color:#444;
	padding-top: 9px;
	padding-bottom: 10px;
	text-align: left;
	font-weight: bold;
	}
.contenu-form1panier h3 {
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	}

.contenu-form1panier h4 {
	font-size: 13px;
	color: #606060;
	line-height: 18px;
	}
.contenu-form1panier .center {
	text-align:center;
	}	
	
	
	
	
	
	
	
	
	
.alias-title {
	/*padding-top:35px;*/
	}
.alias-undertitle {
	color:#555; 
	font-size:17px;
	text-align:center;
	line-height: 22px;
	}
.alias-important {
	color:#FF6600; 
	font-size:13px;
	padding-top:5px;
	text-align:center;
	font-weight: normal;
	}
.alias-important:hover {
	color:#FF6600;
	}
.alias-undertitle2 {
	color:#444; 
	font-size:18px;
	padding-top:8px;
	text-align:center;
	text-transform:uppercase;
	font-weight:normal;
	}
div#piedpage {
	width:100%;
	height:50px;
	background-color:#222;
	clear:both;
	}
.header-bloc {
	width:1195px;
	height:70px;
	background-color:transparent;
	margin: 0px auto;
	}
.header-bloc .header-bloc-left {
	/*width:200px;*/
	width:150px;
	height:70px;
	background-color:transparent;
	float:left;
	}
.header-bloc .header-bloc-left2 {
	/*width:440px;*/
	width:535px;
	background-color:transparent;
	float:left;
	padding-top: 27px;
	}
.header-bloc .header-bloc-right {
	/*width:550px;*/
	width:460px;
	height:70px;
	background-color: transparent;
	float:right;
	}
.header-bloc-right ul {
	display:inline;
	list-style-type:none;
	margin:25px 0px 0px 0px;
	padding:0px;
	float: right;
	}
.header-bloc-right ul li {
	display:inline;
	}
.header-bloc-right ul li a {
	padding:10px 15px;
	font-size:14px;
	}
	
.alias-connexion {
	/*text-shadow: 1px 1px 0px rgb(186, 33, 0);*/
	color:#FFF;
	background:#FF6600;
	border-radius: 3px;
	border:1px solid #E54C00;
	/*font-weight: 700;*/
	}
	
.alias-connexion:hover {color:#FFF;border:1px solid #E54C00;background:#FF6600; background: -webkit-gradient(linear, center bottom, center top, from(#E54C00), to(#FF6600)); background: -moz-linear-gradient(bottom, #E54C00, #FF6600);box-shadow:0px 1px 1px rgba(0, 0, 0, 0.1);}

.alias-plugin-connexion {
	/*text-shadow: 1px 1px 0px rgb(186, 33, 0);*/
	color:#FFF;
	background:#029AC3;
	border-radius: 3px;
	border:1px solid #029AC3;
	/*font-weight: 700;*/
	}
	
.alias-plugin-connexion:hover {color:#FFF;border:1px solid #029AC3;background:#029AC3; background: -webkit-gradient(linear, center bottom, center top, from(#00749D), to(#029AC3)); background: -moz-linear-gradient(bottom, #00749D, #029AC3);box-shadow:0px 1px 1px rgba(0, 0, 0, 0.1);}

.alias-register {
	color:#222;
	}
.alias-register:hover {
	color:#222;
	}
.alias-logiciel {
	color:#AD2585;
	padding-bottom: 5px;
	}
.alias-logiciel:hover {
	color:#AD2585;
	}
.alias-logo {
	padding-top: 12px;
	width: 97px;
	}


div#bandeau-nav {
	width:100%;
	height:45px;
	background-color:#222;
	}
.header-nav {
	width:1220px;
	height:45px;
	background-color:transparent;
	margin: 0px auto;
	}
.header-nav .header-nav-left {
	/*width:750px;*/
	width:auto;
	height:45px;
	background-color:transparent;
	float:left;
	}
.header-nav-left ul {
	display:inline;
	list-style-type:none;
	margin:13px 0px 0px 0px;
	padding:0px;
	float: left;
	}
.header-nav-left ul li {
	display:inline;
	}
.header-nav-left ul li a {
	padding:10px 15px;
	border-radius: 0px;
	font-size:14px;
	}
.nav-left-links {
	color:#FFF;
	}
.nav-left-links:hover {
	color:#FFF;
	}
.nav-right-links {
	color:#FFF;
	}
.nav-right-links:hover {
	color:#FF6600;
	}

.header-nav .header-nav-right {
	/*width:450px;*/
	width:auto;
	height:45px;
	background-color: transparent;
	float:right;
	}
.header-nav-right ul {
	display:inline;
	list-style-type:none;
	margin:13px 0px 0px 0px;
	padding:0px;
	float: right;
	}
.header-nav-right ul li {
	display:inline;
	}
.header-nav-right ul li a {
	padding:10px 15px;
	border-radius: 0px;
	font-size:14px;
	}
.alias-decouvrir {
	text-align:center;
	padding-top:20px;
	}
.alias-decouvrir-link {
	color:#FF6600;
	border-radius: 2px;
	border:1px solid #FF6600;
	font-size: 14px;
	background:#FFF;
	padding: 10px 25px;
	}
.alias-decouvrir-link:hover {
	color:#FF6600;
	}
.alias-asd-link {
	color: #FFF;
	border-radius: 2px;
	font-size: 14px;
	background: none repeat scroll 0% 0% #AD2585;
	padding: 7px 20px;
	float: left;
	}
.alias-asd-link:hover {
	color:#FFF;
	}
.alias-asd-next {
	color:#FFF;
	border-radius: 2px;
	font-size: 13px;
	background:#AD2585;
	border:1px solid #AD2585;
	padding: 8px 15px;
	}
.alias-asd-next:hover {
	color:#FFF;
	}
.alias-asd-prev {
	color:#AD2585;
	border-radius: 2px;
	font-size: 13px;
	background:#FFF;
	border:1px solid #FFF;
	padding: 8px 15px;
	}
.alias-asd-AD2585:hover {
	color:#FFF;
	}
.alias-ensavoirplus-link {
	color:#FFF;
	border-radius: 2px;
	font-size: 15px;
	background:#222;
	padding: 5px 10px;
	}
.alias-ensavoirplus-link:hover {
	color:#FFF;
	}
.alias-voir-link {
	color:#AD2585;
	font-size: 14px;
	display: block;
	margin-top: 18px;
	}
.alias-voir-link:hover {
	color:#AD2585;
	}
.alias-box-people {
	padding-top:0px;
	width: 282px;
	}
.alias-testez {
	text-align:center;
	padding-top:25px;
	}
.alias-testez-link {
	color:#FFF;
	border-radius: 3px;
	font-size: 14px;
	background:#FF6600;
	border:1px solid #FF6600;
	padding: 10px 25px;
	border:1px solid #E54C00;
	/*font-weight: 700;*/
	}
.alias-testez-link:hover {
	color:#FFF;border:1px solid #E54C00;background:#FF6600; background: -webkit-gradient(linear, center bottom, center top, from(#E54C00), to(#FF6600)); background: -moz-linear-gradient(bottom, #E54C00, #FF6600);box-shadow:0px 1px 1px rgba(0, 0, 0, 0.1);
	}
	
.alias-asd-link {
	color:#FFF;
	border-radius: 2px;
	font-size: 14px;
	background:#AD2585;
	border:1px solid #AD2585;
	padding: 10px 25px;
	}
.alias-asd-link:hover {
	color:#FFF;
	}
.alias-other {
	text-align:center;
	padding-top:25px;
	}
.alias-other-link {
	color:#FFF;
	border-radius: 2px;
	font-size: 15px;
	background:#222;
	padding: 10px 25px;
	}
.alias-other-link:hover {
	color:#FFF;
	}
.linkhover {
	border: 1px solid #E5E5E5;
	color:#FF6600;
	font-size:15px;
	float:left;
	margin: 0px 6px 10px;
	border-radius:3px;
	}
.linkhover:hover {
	border: 1px solid #FF6600;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	}
	
	.linkhoverlanding {
	border: 1px solid #FFF;
	color:#FF6600;
	font-size:15px;
	float:left;
	margin: 0px 6px 10px;
	border-radius:3px;
	}
.linkhoverlanding:hover {
	border: 1px solid #222;
	/*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);*/
	}
	
.contenu-form7 {
	padding: 0px 30px 30px 30px;
	background:#F2F2F2;
	}
	
	
/*  Start Title */	
.contenu-title {
	padding: 30px 0px 30px;
	background: #FFF
	}
	
.contenu-title h2 {
	color:#353535; 
	font-size:25px;
	text-align:center;
	font-family:"Myriad Set Pro","Lucida Grande","Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
	}
.contenu-title h3 {
	color:#353535; 
	font-size:18px;
	text-align:center;
	}
/*  Start Title */



/*  Start Navigation */
	
#navAlias {
	width: 280px;
	float:left;
	padding-top: 15px;
	}
	
#navAlias li {
	display:block;
	}

#navAlias h1 {
	text-align: left;
	padding-top:30px;
	padding-bottom:10px;
	padding-left: 24px;
	font-size:16px;
	color:#444;
	font-weight:bold;
	}
	
#navAlias li a {
	color:#555;
	padding: 3px 15px;
	font-size: 13px;
	display: block;
	}	
	
#navAlias li a:hover {
	color:#FF6600;
	background:#FFF;
	}
#navAlias li a.current {
	color:#FF6600;
	background:#FFF;
}

#navAlias li img {
	float:left;
	width: 24px;
	height: 24px;
	}		
	
#navAlias li a.current {
    color:#FF6600;
	background:#FFF;
}

/*  End Navigation */







.imgtop {
	margin-top: -3px;
	}
	
	
	
/* espace client */


/* Bloc */
.formContenuInner .client_bloc {
	float:left;
	width: 100%;
	display: block;
	/*padding-bottom: 30px;*/
	}
/* Bloc */
	
	
	
	
		
/* Bloc 1 */
.formContenuInner .client_bloc1 {
	margin-right: 30px;
	width: 230px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .client_bloc1 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 1 */




/* Bloc 2 */
.formContenuInner .client_bloc2 {
	width: 230px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .client_bloc2 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 2 */




/* Bloc 3 */
.formContenuInner .client_bloc3 {
	margin-left: 30px;
	width: 230px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .client_bloc3 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 3 */



/* Bloc */
.formContenuInner .formation_bloc {
	float:left;
	width: 100%;
	display: block;
	/*padding-bottom: 30px;*/
	}
/* Bloc */
	
	
	
	
		
/* Bloc 1 */
.formContenuInner .formation_bloc1 {
	margin-right: 30px;
	width: 380px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .formation_bloc1 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 1 */




/* Bloc 2 */
.formContenuInner .formation_bloc2 {
	width: 380px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .formation_bloc2 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 2 */




/* Bloc 3 */
.formContenuInner .formation_bloc3 {
	margin-left: 30px;
	width: 380px;
	float:left;
	border: 1px solid #CCC;
	border-radius: 5px;
	padding: 20px;
	}
.formContenuInner .formation_bloc3 h1 {
	text-align: center;
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	padding-top: 10px;
	line-height: 22px;
	}
/* Bloc 3 */



/* Form 1 */	
.contenu-form1etape {
	padding: 10px 30px 10px 30px;
	height: 20px;
	background: none repeat scroll 0% 0% #FFF;
	margin: 0px 95px 30px 95px;
	border: 1px solid #DDD;
	border-radius: 3px;
	}
.contenu-form1etape li {
	display: block;
	margin-right: 25px;
	float:left;
	}
.contenu-form1etape li .last {
	display: block;
	margin-right: 0px;
	float:left;
	}
.contenu-form1etape ul {
	margin: 0px;
	}

.contenu-form1etape p {
	color:#606060;
	text-align:center;
	font-size:13px;
	padding-bottom: 0px;
	float:left;
	margin-right: 10px;
	}
.contenu-form1etape p.last {
	color:#606060;
	text-align:center;
	font-size:13px;
	padding-bottom: 0px;
	float:left;
	margin-right: 0px;
	}
.contenu-form1etape h1 {
	text-align: center;
	font-size:35px;
	color:#444;
	padding-bottom: 10px;
	padding-top: 10px;
	}
.contenu-form1etape h2 {
	font-size:13px;
	color:#444;
	padding-top: 9px;
	padding-bottom: 10px;
	text-align: left;
	font-weight: bold;
	}
.contenu-form1etape h3 {
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	}

.contenu-form1etape h4 {
	font-size: 13px;
	color: #606060;
	line-height: 18px;
	}
.contenu-form1etape .center {
	text-align:center;
	}



.champs {}
	
.champs p {
margin: 0px auto;
font-size: 11px;
text-align: center;
background: #E8E8E8;
display: block;
width: 287px;
padding: 10px;
border-radius: 3px;
border: 1px solid #DDD;		
}

.champs span {
color:#fd0101		
}

.credit {padding-bottom: 25px;}
	
.credit p {
margin: 0px auto;
font-size: 12px;
text-align: center;
background: #E8E8E8;
display: block;
padding: 10px;
border-radius: 3px;
border: 1px solid #DDD;		
}

.credit span {
color:#fd0101		
}


.EntryGratuitMsg {
  color:#FF6600;
	font-size: 13px;
	text-align:center;
	background: none repeat scroll 0% 0% #F7F7F7;
	border: 1px solid #EEE;
	padding: 10px;
	margin-bottom: 15px;
}







.new {
	color:#0C0;
	padding:5px;
	font-weight:bold;
	text-align: left;
	font-size: 17px;
	float: right;
	border: 1px solid rgb(0, 204, 0);
	}
	
	
/* Form 30 */	
.contenu-form30 {
	padding: 30px;
	}
.contenu-form30 p {
	}
.contenu-form30 h1 {
	text-align: center;
	font-size:35px;
	color:#444;
	padding-bottom: 10px;
	padding-top: 10px;
	}
.contenu-form30 h2 {
	font-size:13px;
	color:#444;
	padding-top: 9px;
	padding-bottom: 10px;
	text-align: left;
	font-weight: bold;
	}
.contenu-form30 h3 {
	font-size:17px;
	color:#444;
	padding-bottom: 18px;
	}

.contenu-form30 h4 {
	font-size: 13px;
	color: #606060;
	line-height: 18px;
	}
.contenu-form30 .center {
	text-align:center;
	}
/* index*/
#shadowing
    {
        display: none;
        position: fixed;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: #000 ;
        z-index:9998;
        opacity:0.5;
        filter: alpha(opacity=80);
    }

    .aSavoir1{
        background: #FF6600;
        border:1px solid #FFF;
    }

    .aSavoir2{
        background: #ffc90e;
        border:1px solid #FFF;
    }

    .aSavoir1:hover{
        background: #e95e02;
        border:1px solid #FFF;
    }

    .aSavoir2:hover{
        background: #eab601;
        border:1px solid #FFF;
    }

    .button_jedecouvre{
        background: #AD2585;
        border:1px solid #87005F;
        color: #FFF;
        font-weight: normal;
        padding: 7px 20px;
        border-radius: 4px;
        font-size: 13px;
    }
    .button_jedecouvre:hover{
        color: #FFF;
    }

    .button_indexcommande{
        background: #FF6600;
        border:1px solid #CD3400;
        color: #FFF;
        font-weight: normal;
        padding: 7px 20px;
        border-radius: 4px;
        font-size: 13px;
    }
    .button_indexcommande:hover{
        color: #FFF;
    }

    .button_indexproduit{
        background: #F7F7F7;
        color: #000;
        font-weight: normal;
        padding: 7px 20px;
        border-radius: 4px;
        font-size: 13px;
        border:1px solid #B5B5B5;
        margin-right: 3px;
    }
    .button_indexproduit:hover{
        color: #000;
    }