@charset "UTF-8";
/* CSS Document 
 *
 * UTILS
 *
 * .btn
 * Change a links with text, buttons, input reset and submit
 * into img button with hover and active.
 * Completely works on :
 * - Safari 3
 * - Firefox 3
 * - IE 7
 */
.btn {
	display:-moz-inline-box;
	display:inline-block;
	height:0;
	border:none;
	background:none;
	padding:0;
	outline:none;
	overflow:hidden;
	white-space:nowrap;
	vertical-align:middle;
	cursor:default;
}

.btn:hover {
	background-position:right top;
}
.btn:active {
	background-position:center top;
}

// Styled Buttons //
.btn_print{
	background: url(img/btn_print.png) no-repeat 0 center;
	display: inline-block;
	padding-left: 21px;
	line-height: 20px;
}

.btn_send-to-friend{
	background: url(img/btn_send-to-friend.png) no-repeat 0 center;
	display: inline-block;
	padding-left: 21px;
	line-height: 20px;
}

.btn_retour{
	background: url(img/btn_retour.png) no-repeat 0 center;
	display: inline-block;
	padding-left: 21px;
	line-height: 20px;
}

// Form //
.error{
	color: #D00;
}