/* CSS Document */

/* J'inclus la typo (facultatif si la typo est installée sur les tablettes */

@font-face {
	font-family: Segoe UI;
	src: url("../fonts/segoeui.ttf") format("truetype");
}
@font-face {
	font-family: Segoe UI;
	font-style: italic;
	src: url("../fonts/segoeuii.ttf") format("truetype");
}
@font-face {
	font-family: Segoe UI;
	font-weight: bold;
	src: url("../fonts/segoeuib.ttf") format("truetype");
}
@font-face {
	font-family: Segoe UI;
	font-weight: bold;
	font-style: italic;
	src: url("../fonts/segoeuiz.ttf") format("truetype");
}

/* CSS Global */

html, body, h1, h2, h3, h4, ul, li, ol, a, img, p{
	margin: 0;
	padding: 0;
	font-family: Segoe UI;
	font-weight: normal;
	font-size: 21px;
	color: #333333; 
	list-style: none;
	text-decoration: none;
	border: 0;
	
}
body {
	width: 1280px;/*100%*/
	height: 800px;
	background: #e6e6e6 url("../images/icones/elipso.png") no-repeat fixed 90% -275px;
	background-size: 350px;
	}
#header {
	display: block;
	margin: 30px 0 20px 120px;
	position: fixed;
	top: 0;
	left:0;
	z-index: 8;
}
h1,h2 {
	display: inline-block;
	color: #161a26;
}
h1 {
	font-size: 286%;	
}
h2 {
	font-size: 171%;
}
h3 {
	font-size: 133%;
	color: #8fa7c8;/*#2896be;*/
	padding-bottom: 20px;
	display:inline-block;
}

#section {
	display: block;
	float: left;
	width: 57%;/* ecran 1366(L) => 740px (53%) */
	margin-left: 40px;
	margin-top: 140px;
	/*overflow: scroll voir navigation.css*/
}
#section .actions{
	float: right;
}
#section .actions li{
	float:left;
}

.article, .replier .article  {
	border-bottom: 1px solid #8fa7c8;/*#2896be;*/ 
	overflow: hidden;
	padding:20px 20px 50px 20px;
	background-color: #FFFFFF;
	text-align: left;
}
.entete {
	overflow: hidden;
	padding:20px;
	background-color: #F2F2F2;
}
.deplier a.bt, .replier a.bt {
	display: block;
	overflow:hidden;
	/*background-color et color, voir navigation.css*/
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: 95% 20px;
	background-size: 32px;
}
.deplier a.bt {
	background-image: url("../images/icones/mauve/bas.png");
}
.deplier a:hover.bt, .ss-categorie.deplier a.bt {
	background-image: url("../images/icones/blanc/bas.png");
}
.replier a.bt {
	background-image: url("../images/icones/blanc/haut.png");
}

/* je masque l'article en mode "plié" */
.deplier .article {
	display: none;
}

 .table .td {
	display:block;
	overflow:hidden;
	float:left;
	padding: 20px 0 20px 20px;
	text-align:left;
}
label {
	color: #808080;
}
a.lientexte {
	color: #8fa7c8;/*#2896be;*/
	padding: 5px;
	margin: 0 20px;
}


/* CSS de champs de formulaire */

input, select, textarea {
	border: 1px solid #8fa7c8;
	font-family: Segoe UI;
	font-weight: normal;
	font-size: 90%;
	color: #333333;
	padding: 10px 5px;
	margin: 0 10px 10px 0;
}
input[type="placeholder"] { 
	font-size: 80%;
	color:#999; 
}
::-webkit-input-placeholder { color:#999; }
:-moz-placeholder { color:#999; }
:-ms-input-placeholder { color:#999; }

input[type="tel"]  {
	background-image: url("../images/icones/mauve/telephone.png");
	background-repeat: no-repeat;
	background-position: 95% 6px;
	background-size: 32px;
	padding-right: 50px;
}
input[type="email"]  {
	background-image: url("../images/icones/mauve/enveloppe.png");
	background-repeat: no-repeat;
	background-position: 95% 6px;
	background-size: 32px;
	padding-right: 50px;
}
select {
	border: 0;
	background: transparent;
	-webkit-appearance: none; 
}
select option {
	background-color: #FFF;
	color: #333;
	padding: 10px;
}
.select {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	border: 1px solid #8fa7c8;
	height: 45px;
	margin: 0 10px 10px 0;
	background-image: url("../images/icones/mauve/bas.png");
	background-repeat: no-repeat;
	background-color: #FFF;
	background-size: 25px;
}
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	display: block;
	float: left;
	border: 1px solid #8fa7c8;
	width: 30px;
	height: 30px;
	margin: 0 10px 10px 0;
	background-image: none;
	background-color: #EEE;
	background-repeat: no-repeat;
	background-position: 3px;
	background-size: 24px;

}
input[type="checkbox"]:checked + label:active {
	background-image: none;
	background-color: #EEE;
}
input[type="checkbox"] + label:active, input[type="checkbox"]:checked + label {
	background-image: url("../images/icones/mauve/coche.png");
	background-color: transparent;
}