/*** --- Default objects --- ***/
p {
	padding-bottom:1em;
}
.i-clear {
	clear:both;
}


/*** --- Links --- ***/
a, .b-link {
	color:#FFF;
	text-decoration:underline;
	outline:none;
}
a:hover, .b-link:hover {
	color:#ff2637;
}
.b-link {
	text-decoration:none;
	cursor:pointer;
}
.b-link span {
	text-decoration:underline;
	vertical-align:middle;
}
/* Pseudo */
.b-link_pseudo span {
	text-decoration:none;
	border-bottom:1px dotted #FFF;
}
.b-link_pseudo:hover span {
	border-bottom-color:#ff2637;
}
	
/*** --- Container --- ***/
.b-container {
	position:relative;
	margin-bottom: 40px;
	/* margin:75px 0 110px; */
}


/*** --- Canvas --- ***/
.b-canvas {
	position: relative;
	width: 100%;
	margin-top: -75px;
	min-height: 400px;
	overflow: hidden;
}


/*** --- Canvas --- ***/
.b-cover {
	display:block;
	position:relative;
	overflow:hidden;
	width:100%;
	height:100%;
	background:url(../images/b-cover__graphics_bg.gif) no-repeat 50% 50%;
}
.b-cover_loaded {
	background:none;
}
.b-cover__graphics {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter:alpha(opacity=0);
	-khtml-opacity:0;
	opacity:0;
}
.b-cover__graphics__image {
	position:absolute;
}
.b-cover__graphics__label {
	position:absolute;
	z-index:10;
	margin-left:100%;
}


/*** --- Content --- ***/
.b-content {
	padding: 0 25px 40px;
	margin:0 auto;
	max-width:950px;
}
.b-content_width_auto {
	width: auto;
	max-width: 100%;
}


/*** --- Title --- ***/
.b-title {
	margin-bottom:0.5em;
	color:#FFF;
	font:normal 72px/1 'Futura Light', Arial, Helvetica, sans-serif;
	text-transform:uppercase;
}
.b-title_medium {
	font-size:40px;
}
.b-title_small {
	font-size:30px;
}
.b-title_mini {
	font-size:25px;
}
.b-title_h4 {
	font-size:22px;
}
.b-title_h5 {
	font-size:20px;
}
/*** --- Button --- ***/
.b-button {
	height:50px;
	padding:0 25px;
	border:none;
	background:#e42c3e url(../images/b-button_bg.gif) repeat-x 0 50px;
	color:#FFF;
	font:normal 18px/50px 'Futura Light', Arial, Helvetica, sans-serif;
	text-align:center;
	text-transform:uppercase;
	text-decoration:none;
	cursor:pointer;
	vertical-align:middle;
	/* transition */
	-webkit-transition:background-position 0.2s ease-out;
	-moz-transition:background-position 0.2s ease-out;
	-o-transition:background-position 0.2s ease-out;
	-ms-transition:background-position 0.2s ease-out;
	transition:background-position 0.2s ease-out;
}
a.b-button, span.b-button {
	display:inline-block;
}
.b-button::-moz-focus-inner {
	border:0;
}
.b-button:hover {
	color:#FFF;
	background-position:0 0;
}
.b-button_dark {
	background-color:#212121;
}


/*** --- Field --- ***/
.b-field {
	border:1px solid #dfc5c8;
	padding:9px;
	height:18px;
	background:#FFF;
	color:#555;
	font:normal 15px Tahoma, Arial, Helvetica, sans-serif;
	vertical-align:middle;
	outline:none;
	/* transition */
	-webkit-transition:background-color 0.1s ease-out;
	-moz-transition:background-color 0.1s ease-out;
	-o-transition:background-color 0.1s ease-out;
	-ms-transition:background-color 0.1s ease-out;
	transition:background-color 0.1s ease-out;
}
textarea.b-field {
	height:auto;
}
.b-field:focus {
	background-color:#fff2f4;
}
.b-field.placeholder {
	color:#888;
}
.b-field::-webkit-input-placeholder {
	color:#888;
}
.b-field:-moz-placeholder {
	color:#888;
}

span.b-special__param__value__currency {
	display: none;
}