

/*basic reset*/
* {margin: 0; padding: 0;}

/*form styles*/
#msform {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
#msform .infos {
	margin:5px 10px;

}
#msform fieldset {
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 90%;
	margin: 0 5%;
	background:#f3f3f3;
	text-align: left;
	/*stacking fieldsets above each other*/
	position: absolute;
}
#msform fieldset p {
	margin:8px 0px;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 8px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
	margin-left:3px;
}
#msform input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  padding: 10px;
} 
#msform .checkboxtext
{
  /* Checkbox text */
  font-size: 110%;
  margin-left:10px;
  display: inline;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #3f9db8;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #3f9db8;
}
#msform .removeclass
	{
	font-size:1.5em;color:red;margin:5px;font-weight:bold;
	}
#msform .AddMore
	{
	color:green;font-weight:bold;margin-bottom:10px;line-height:30px;
	}
/*headings*/
.fs-title {
	text-transform: uppercase;
	color: #3f9db8;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {

	margin-bottom: 15px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	font-size: 13px;
	font-weight:bold;
	color:#555;
	text-transform:uppercase;
	width: 16%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	color: #555;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	color:black;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #3f9db8;
	color: white;
}

.CanList {border-bottom:1px solid #babdb6;margin:3px 0;padding:5px 0;margin-bottom:0;padding-bottom:0;}
.CanList li { display:inline-block;width:23%;}
.CanList img {height:64px;width:64px;}
.RecapLine1, .Candidats, .Collaborateurs , .Tests { width:100%;overflow:auto;border-bottom:3px solid #333;}
.DetAnnonces, .Questions { width:48%;float:left;}
.CheckText {font-size: 1.1em;margin:0 3px; font-weight: bold;color: darkslategrey;}










