@charset "utf-8";
/* CSS Document */

/* * { margin:0; padding:0; } */

#conteneur { /*conteneur général du module*/
	width:600px;
	margin: auto;
	margin-top:30px;
	/**/
	padding-right: 50px;
	padding-left: 50px;
	padding-bottom:20px;
	padding-top:10px;
/*peut s'écrire : *//* padding: 10px 50px 20px 50px; */
	position:relative;
	border: solid 1px #000000;	
	}
	
.user-wrapper {  /*pseudo et date du commentaire */
	font-size: 12px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: normal;
	color: #666;
	background: #CCC;
	margin-top: 10px;
	padding: 2px 2px 2px 5px;
	border-radius: 4px 4px 0 0;
	border-top: solid 1px #000000;
	border-right: solid 1px #000000;
	border-left: solid 1px #000000;
	border-bottom: 1px dashed #666;
	}
	
.com-user-wrapper { /*commentaire affiché  */
	font-size: 14px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	line-height: 18px;
	color: #000000;
	background: #F3F3F3;
	padding:5px;
	border-radius: 0 0 4px 4px;
	border-bottom: solid 1px #000000;
	border-right: solid 1px #000000;
	border-left: solid 1px #000000;
	}
	
.post-pseudo-style { /*style du pseudo affiché  dans user-wrapper */
	font-size: 14px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	line-height: 18px;
	font-weight: bold;
	color: #000000;
	}
	
.title-post-wrapper { /* intitulé du formulaire  de commentaire */
	font-size: 18px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	line-height: 20px;
	font-weight: bold;
	color: #000000;
	text-align:center;
	margin-bottom:10px;
	}
	
.title-com-wrapper { /* intitulé des commentaires déjà postés */
	font-size: 18px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	line-height: 20px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	margin-top: 50px;
	border-radius: 0 0 4px 4px;
	}
	
.pseudo-box { /*champ input - pseudo du formulaire */
	margin-bottom:10px;
	padding: 3px;
	width:200px;
	border: solid 1px #000000;
	}
	
.com-box { /*champ textarea - votre commentaire du formulaire */
	border: solid 1px #000000;
	padding: 3px;
	}
	
.pseudo-style { /*label du champ input*/
	/* color: #FFF; */
	}
	
.com-style { /*label du champ textarea*/
	/* color: #FFF; */
	}
	
.button-style { /* bouton du formulaire */
	padding: 2px 15px 2px 15px;
	margin-left: 350px;
	margin-top:10px;
	}
	

@media only screen and (max-width: 640px) {
#conteneur { /*conteneur général du module*/
	width:90%;
	margin: auto;
	margin-top:30px;
	/**/
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom:20px;
	padding-top:10px;
/*peut s'écrire : *//* padding: 10px 50px 20px 50px; */
	position:relative;
	border: solid 1px #000000;	
	}	
.button-style { /* bouton du formulaire */
	padding: 2px 15px 2px 15px;
	margin-left: 0px;
	margin-top:10px;
	}
}