/* Définit le style du container pour les commentaires */
#addCommentContainer{
	padding:12px;
	width:200px;
	background-color:#fcfcfc;
	border:1px solid #CCC;
	color:#888;
}

/* Définit le style d'un commentaire */
.comment{
	padding:5px;
	width:180px;
	background-color:#fcfcfc;
	color:#888;
}
.comment .avatar{
	height:50px;
	width:50px;
	/* background:url('../images/default_avatar.gif') no-repeat #fcfcfc; */

	-moz-box-shadow:1px 1px 0 #c2c2c2;
	-webkit-box-shadow:1px 1px 0 #c2c2c2;
	box-shadow:1px 1px 0 #c2c2c2;
}
.comment .avatar img{
	display:block;
}
.comment .name{
	font-size:16px;
	color:#ccc;
}
.comment .date{
	font-size:10px;
	padding:6px 0;
	color:#bbb;
}
.commentTitle {
	font-size:18px;
	line-height:1.5;
	overflow-x:hidden;
}
.commentContent {
	font-size:12px;
	line-height:1.5;
	overflow-x:hidden;
}

/* Style des inputs */
#addCommentContainer input[type=text],
#addCommentContainer textarea{
	display:block;
	border:1px solid #ccc;
	margin:5px 0 5px;
	padding:3px;
	font-size:12px;
	color:#555;
	font-family:Arial, Helvetica, sans-serif;
}

#addCommentContainer textarea{
	width:200px;
}

/* Style du bouton de sauvegarde */
#submitComment{
	color:#CC0000;
	cursor:pointer;
	font-weight:bold;
}
#submitComment:hover{
	background-color:#80cdf5;
	border-color:#52b1e2;
}


label{
	font-size:10px;
}

label span.error{
	color:red;
	position:relative;
	right:-10px;
}