html, body {
	height: 100%;
	min-width: 1024px;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	font-size: 14px;
	color: #79381b;
	background: #e9c491 url('../img/bg/main.jpg') 50% 0 no-repeat;
}

form {
	margin: 0;
}

fieldset, a img {
	border: 0;
}

a, button {
	cursor: pointer;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 0;
}

button {
	position: relative;
	overflow: visible;
	margin: 0;
	padding: 0;
}

button::-moz-focus-inner {
	margin: 0;
	padding: 0;
	border: 0;
}

body, input, select, option, textarea {
	font-family: Tahoma, Verdana, Segoe, sans-serif;
}


/* ====== Helpers ====== */

	/* === Colors === */
	.color-base {color: #79381b;} /* brown */
	.color-light {color: #9b6542;} /* light-brown */
	.color-link-1 {color: #d42a2a;} /* red */
	.color-link-2 {color: #11537a;} /* blue */
	.color-link-3 {color: #f9be69;} /* gold */
	/* === /Colors === */

	/* === Text Align === */
	.text-center {
		text-align: center;
	}

	.text-left {
		text-align: left;
	}

	.text-right {
		text-align: right;
	}
	/* === /Text Align === */

	/* === Box Layout === */
	.off-margin {
		margin: 0 !important;
	}

	.off-padding {
		padding: 0 !important;
	}
	/* === /Box Layout === */

	/* === Clearfix === */
	.clearfix:before,
	.clearfix:after {
		content: '';
		display: table;
	} 
	.clearfix:after {
		clear: both;
	}
	.clearfix {
		zoom: 1; /* For IE 6/7 (trigger hasLayout) */
	}
	/* === /Clearfix === */

	/* === Before/After for IE7 === */
	.ie-before {
		*zoom: expression( 
			this.runtimeStyle.zoom = '1',
			this.insertBefore(document.createElement('span'), this.childNodes[0]).className = 'before'
		);
	}

	.ie-after {
		*filter: expression( 
			this.runtimeStyle.filter = '1',
			this.appendChild(document.createElement('span')).className = 'after'
		);
	}
	/* === /Before/After for IE7 === */

/* ====== /Helpers ====== */


/* ====== Layout ====== */

	/* === Wrapper === */
	.b-wrapper {
		width: 1024px;
		margin: 0 auto;
	}
	/* === /Wrapper === */

	/* === Header === */
	.b-header {
		position: relative;
		height: 370px;
	}
	/* === /Header === */

	/* === Side Columns === */
	.b-column-left,
	.b-column-right {
		float: left;
		width: 306px;
	}
	/* === /Side Columns === */

	/* === Center Column === */
	.b-column-center {
		float: left;
		width: 418px;
		margin: 0 -8px;
	}
	/* === /Center Column === */

/* ====== /Layout ====== */


/* ====== Frames ====== */

	/* === Main Frame === */
	.b-main-frame {
		position: relative;
	}

		.b-main-frame__tl,
		.b-main-frame__tr,
		.b-main-frame__bl,
		.b-main-frame__br {
			position: absolute;
			background: url('../img/frames/main-corners.png') no-repeat;
		}

		.b-main-frame__tl,
		.b-main-frame__tr,
		.b-main-frame__t {
			top: 0;
			height: 3px;
		}

		.b-main-frame__bl,
		.b-main-frame__br,
		.b-main-frame__b {
			bottom: 0;
			height: 13px;
		}

		.b-main-frame__tl,
		.b-main-frame__bl,
		.b-main-frame__l {
			left: 0;
			width: 6px;
		}

		.b-main-frame__tr,
		.b-main-frame__br,
		.b-main-frame__r {
			right: 0;
			width: 9px;
		}

		.b-main-frame__tr {
			background-position: 100% 0;
		}

		.b-main-frame__bl {
			background-position: 0 100%;
		}

		.b-main-frame__br {
			background-position: 100% 100%;
		}

		.b-main-frame__t,
		.b-main-frame__b {
			position: absolute;
			left: 6px;
			right: 9px;
			background: url('../img/frames/main-tb.png') repeat-x;
		}

		.b-main-frame__b {
			background-position: 0 100%;
		}

		.b-main-frame__l,
		.b-main-frame__r {
			position: absolute;
			top: 3px;
			bottom: 13px;
			background: url('../img/frames/main-lr.png') repeat-y;
		}

		.b-main-frame__r {
			background-position: 100% 0;
		}

		.b-main-frame__bg {
			position: absolute;
			top: 3px;
			left: 6px;
			right: 9px;
			bottom: 13px;
			background: url('../img/frames/main-bg.jpg');
		}

		.b-main-frame__body {
			position: relative;
			z-index: 2;
			padding: 6px 10px 10px 0;
		}
	/* === /Main Frame === */

	/* === Inner Frame === */
	.b-inner-frame {
		position: relative;
	}

		.b-inner-frame__tl,
		.b-inner-frame__tr,
		.b-inner-frame__bl,
		.b-inner-frame__br {
			position: absolute;
			background: url('../img/frames/inner-corners.png') no-repeat;
		}

		.b-inner-frame__tl,
		.b-inner-frame__tr,
		.b-inner-frame__t {
			top: 0;
			height: 7px;
		}

		.b-inner-frame__bl,
		.b-inner-frame__br,
		.b-inner-frame__b {
			bottom: 0;
			height: 12px;
		}

		.b-inner-frame__tl,
		.b-inner-frame__bl,
		.b-inner-frame__l {
			left: 0;
			width: 22px;
		}

		.b-inner-frame__tr,
		.b-inner-frame__br,
		.b-inner-frame__r {
			right: 0;
			width: 20px;
		}

		.b-inner-frame__tr {
			background-position: 100% 0;
		}

		.b-inner-frame__bl {
			background-position: 0 100%;
		}

		.b-inner-frame__br {
			background-position: 100% 100%;
		}

		.b-inner-frame__t,
		.b-inner-frame__b {
			position: absolute;
			left: 22px;
			right: 20px;
			background: url('../img/frames/inner-tb.png') repeat-x;
		}

		.b-inner-frame__b {
			background-position: 0 100%;
		}

		.b-inner-frame__l,
		.b-inner-frame__r {
			position: absolute;
			top: 7px;
			bottom: 12px;
			background: url('../img/frames/inner-lr.png') repeat-y;
		}

		.b-inner-frame__r {
			background-position: 100% 0;
		}

		.b-inner-frame__bg {
			position: absolute;
			top: 7px;
			left: 22px;
			right: 20px;
			bottom: 12px;
			background: url('../img/frames/inner-bg.jpg');
		}

		.b-inner-frame__decor-tl,
		.b-inner-frame__decor-tr,
		.b-inner-frame__decor-bl,
		.b-inner-frame__decor-br {
			position: absolute;
			z-index: 1;
			width: 32px;
			height: 31px;
			background: url('../img/frames/inner-decor.png') no-repeat;
		}

		.b-inner-frame__decor-tl {
			top: 4px;
			left: 7px;
		}

		.b-inner-frame__decor-tr {
			top: 4px;
			right: 3px;
			background-position: 100% 0;
		}

		.b-inner-frame__decor-bl {
			bottom: 7px;
			left: 7px;
			background-position: 0 100%;
		}

		.b-inner-frame__decor-br {
			bottom: 7px;
			right: 3px;
			background-position: 100% 100%;
		}

		.b-inner-frame__body {
			position: relative;
			z-index: 2;
			padding: 0 0 20px;
		}
	/* === /Inner Frame === */

	/* === Banner === */
	.b-banner {
		position: relative;
		width: 360px;
		margin: 0 auto;
		padding: 17px 18px 18px 17px;

		zoom: 1;
	}

		.b-banner__tl-1,
		.b-banner__tl-2,
		.b-banner__tr-1,
		.b-banner__tr-2,
		.b-banner__bl-1,
		.b-banner__bl-2,
		.b-banner__br-1,
		.b-banner__br-2 {
			position: absolute;
			z-index: 3;
			background: url('../img/frames/banner-corners.png') no-repeat;
		}

		.b-banner__tl-1,
		.b-banner__tr-1 {
			top: 0;
			width: 68px;
			height: 17px;
		}

		.b-banner__tl-2,
		.b-banner__tr-2 {
			top: 17px;
			height: 49px;
		}

		.b-banner__tl-1,
		.b-banner__tl-2 {
			left: 0;
		}

		.b-banner__tr-1,
		.b-banner__tr-2 {
			right: 0;
		}

		.b-banner__tr-1 {
			background-position: 100% 0;
		}

		.b-banner__tl-2 {
			width: 17px;
			background-position: 0 -17px;
		}

		.b-banner__tr-2 {
			width: 18px;
			background-position: 100% -17px;
		}

		.b-banner__bl-1,
		.b-banner__br-1 {
			bottom: 0;
			width: 68px;
			height: 18px;
		}

		.b-banner__bl-2,
		.b-banner__br-2 {
			bottom: 18px;
			height: 48px;
		}

		.b-banner__bl-1,
		.b-banner__bl-2 {
			left: 0;
		}

		.b-banner__br-1,
		.b-banner__br-2 {
			right: 0;
		}

		.b-banner__bl-1 {
			background-position: 0 100%;
		}

		.b-banner__br-1 {
			background-position: 100% 100%;
		}

		.b-banner__bl-2 {
			width: 17px;
			background-position: 0 -66px;
		}

		.b-banner__br-2 {
			width: 18px;
			background-position: 100% -66px;
		}

		.b-banner__l,
		.b-banner__r {
			position: absolute;
			z-index: 2;
			top: 17px;
			bottom: 18px;
			width: 16px;
			background: url('../img/frames/banner-lr.png') repeat-y;
		}

		.b-banner__l {
			left: 6px;
		}

		.b-banner__r {
			right: 7px;
			background-position: 100% 0;
		}

		.b-banner__t,
		.b-banner__b {
			position: absolute;
			z-index: 2;
			left: 17px;
			right: 18px;
			height: 16px;
			background: url('../img/frames/banner-tb.png') repeat-x;
		}

		.b-banner__t {
			top: 6px;
		}

		.b-banner__b {
			bottom: 7px;
			background-position: 0 100%;
		}

		.b-banner__bg {
			position: relative;
			overflow: hidden;
			background-color: #073b67;
		}

			.b-banner__item {
				display: block;
				float: left;
				width: 360px;
				height: 170px;
			}

				.b-banner__item a,
				.b-banner__item img {
					display: block;
					width: 100%;
					height: 100%;
				}

				.b-banner__item a {
					position: absolute;
					left: 0;
					top: 0;
				}

		.b-banner .b-banner-pagination {
			z-index: 4;
			top: 8px;
			left: 53px;
		}
	/* === /Banner === */

	/* === Baner 2 === */
	.b-banner-2 {
		position: relative;
		padding: 9px 10px 10px 10px;

		zoom: 1;
	}

	span.b-banner-2 {
		display: inline-block;
	}

		.b-banner-2__decor-tl,
		.b-banner-2__decor-tr,
		.b-banner-2__decor-bl,
		.b-banner-2__decor-br {
			position: absolute;
			z-index: 4;
			width: 22px;
			height: 20px;
			background: url('../img/frames/banner-2-corners-2.png') no-repeat;
		}

		.b-banner-2__decor-tl {
			top: -2px;
			left: -3px;
		}

		.b-banner-2__decor-tr {
			top: -2px;
			right: -3px;
			background-position: 100% 0;
		}

		.b-banner-2__decor-bl {
			bottom: -2px;
			left: -3px;
			background-position: 0 100%;
		}

		.b-banner-2__decor-br {
			bottom: -2px;
			right: -3px;
			background-position: 100% 100%;
		}

		.b-banner-2__tl-1,
		.b-banner-2__tl-2,
		.b-banner-2__tr-1,
		.b-banner-2__tr-2,
		.b-banner-2__bl-1,
		.b-banner-2__bl-2,
		.b-banner-2__br-1,
		.b-banner-2__br-2 {
			position: absolute;
			z-index: 3;
			background: url('../img/frames/banner-2-corners.png') no-repeat;
		}

		.b-banner-2__tl-1,
		.b-banner-2__tr-1 {
			top: 0;
			width: 34px;
			height: 11px;
		}

		.b-banner-2__tl-2,
		.b-banner-2__tr-2 {
			top: 11px;
			width: 12px;
			height: 24px;
		}

		.b-banner-2__tl-1,
		.b-banner-2__tl-2 {
			left: 0;
		}

		.b-banner-2__tr-1,
		.b-banner-2__tr-2 {
			right: 0;
		}

		.b-banner-2__tr-1 {
			background-position: 100% 0;
		}

		.b-banner-2__tl-2 {
			background-position: 0 -11px;
		}

		.b-banner-2__tr-2 {
			background-position: 100% -11px;
		}

		.b-banner-2__bl-1,
		.b-banner-2__br-1 {
			bottom: 0;
			width: 34px;
			height: 11px;
		}

		.b-banner-2__bl-2,
		.b-banner-2__br-2 {
			bottom: 11px;
			width: 12px;
			height: 24px;
		}

		.b-banner-2__bl-1,
		.b-banner-2__bl-2 {
			left: 0;
		}

		.b-banner-2__br-1,
		.b-banner-2__br-2 {
			right: 0;
		}

		.b-banner-2__bl-1 {
			background-position: 0 100%;
		}

		.b-banner-2__br-1 {
			background-position: 100% 100%;
		}

		.b-banner-2__bl-2 {
			background-position: 0 -35px;
		}

		.b-banner-2__br-2 {
			background-position: 100% -35px;
		}

		.b-banner-2__l,
		.b-banner-2__r {
			position: absolute;
			z-index: 2;
			top: 2px;
			bottom: 2px;
			width: 14px;
			background: url('../img/frames/banner-2-lr.png') repeat-y;
		}

		.b-banner-2__l {
			left: 0;
		}

		.b-banner-2__r {
			right: 0;
			background-position: 100% 0;
		}

		.b-banner-2__t,
		.b-banner-2__b {
			position: absolute;
			z-index: 2;
			left: 3px;
			right: 3px;
			height: 15px;
			background: url('../img/frames/banner-2-tb.png') repeat-x;
		}

		.b-banner-2__t {
			top: 0;
		}

		.b-banner-2__b {
			bottom: 0;
			background-position: 0 100%;
		}

		.b-banner-2__bg {
			display: block;
			position: relative;
			overflow: hidden;
			background-color: #073b67;
		}

			.b-banner-2__blick {
				position: absolute;
				z-index: 1;
				top: 0;
				width: 100%;
				height: 17px;
				background: url('../img/frames/banner-blick.png') repeat-x;
			}
	/* === /Baner 2 === */

	/* === Common === */
	.b-common-frame {
		position: relative;
		padding: 8px 3px 9px 2px;

		zoom: 1;
	}

		.b-common-frame__tl,
		.b-common-frame__tr,
		.b-common-frame__bl,
		.b-common-frame__br {
			position: absolute;
			z-index: 1;
			width: 9px;
			height: 14px;
			background: url('../img/frames/common-corners.png') no-repeat;
		}

		.b-common-frame__tl {
			top: 0;
			left: 0;
		}

		.b-common-frame__tr {
			top: 0;
			right: 0;
			background-position: 100% 0;
		}

		.b-common-frame__bl {
			bottom: 0;
			left: 0;
			background-position: 0 100%;
		}

		.b-common-frame__br {
			bottom: 0;
			right: 0;
			background-position: 100% 100%;
		}

		.b-common-frame__l,
		.b-common-frame__r {
			position: absolute;
			z-index: 1;
			top: 14px;
			bottom: 14px;
			width: 9px;
			background: url('../img/frames/common-lr.png') repeat-y;
		}

		.b-common-frame__l {
			left: 0;
		}

		.b-common-frame__r {
			right: 0;
			background-position: 100% 0;
		}

		.b-common-frame__t,
		.b-common-frame__b {
			position: absolute;
			z-index: 1;
			left: 9px;
			right: 9px;
			height: 14px;
			background: url('../img/frames/common-tb.png') repeat-x;
		}

		.b-common-frame__t {
			top: 0;
		}

		.b-common-frame__b {
			bottom: 0;
			background-position: 0 100%;
		}

		.b-common-frame__decor-t,
		.b-common-frame__decor-b {
			position: absolute;
			z-index: 2;
			left: 50%;
			width: 22px;
			height: 14px;
			margin: 0 0 0 -11px;
			background: url('../img/frames/common-decor.png') no-repeat;
		}

		.b-common-frame__decor-t {
			top: 0;
		}

		.b-common-frame__decor-b {
			bottom: 0;
			background-position: 0 100%;
		}

		.b-common-frame__inner {
			position: relative;
		}
	/* === /Common === */

	/* === Image === */
	.b-image-frame {
		position: relative;
		padding: 9px 10px 8px 9px;

		zoom: 1;
	}

	.b-image-frame.inline {
		display: inline-block;
	}

		.b-image-frame__tl,
		.b-image-frame__tr,
		.b-image-frame__bl,
		.b-image-frame__br {
			position: absolute;
			width: 14px;
			height: 14px;
			background: url('../img/frames/image-corners.png') no-repeat;
		}

		.b-image-frame__tl {
			top: 0;
			left: 0;
		}

		.b-image-frame__tr {
			top: 0;
			right: 0;
			background-position: 100% 0;
		}

		.b-image-frame__bl {
			bottom: 0;
			left: 0;
			background-position: 0 100%;
		}

		.b-image-frame__br {
			bottom: 0;
			right: 0;
			background-position: 100% 100%;
		}

		.b-image-frame__l,
		.b-image-frame__r {
			position: absolute;
			top: 14px;
			bottom: 14px;
			width: 14px;
			background: url('../img/frames/image-lr.png') repeat-y;
		}

		.b-image-frame__l {
			left: 0;
		}

		.b-image-frame__r {
			right: 0;
			background-position: 100% 0;
		}

		.b-image-frame__t,
		.b-image-frame__b {
			position: absolute;
			left: 14px;
			right: 14px;
			height: 14px;
			background: url('../img/frames/image-tb.png') repeat-x;
		}

		.b-image-frame__t {
			top: 0;
		}

		.b-image-frame__b {
			bottom: 0;
			background-position: 0 100%;
		}

		.b-image-frame__inner {
			position: relative;
		}

	span.b-image-frame {
		display: inline-block;
	}

		span.b-image-frame__inner {
			display: block;
		}
	/* === /Image === */

	/* === Image 2 === */
	.b-image-2-frame {
		position: relative;
		padding: 2px 3px 3px 2px;

		zoom: 1;
	}

		.b-image-2-frame__tl,
		.b-image-2-frame__tr,
		.b-image-2-frame__bl,
		.b-image-2-frame__br {
			position: absolute;
			width: 11px;
			height: 11px;
			background: url('../img/frames/image-2-corners.png') no-repeat;
		}

		.b-image-2-frame__tl {
			top: 0;
			left: 0;
		}

		.b-image-2-frame__tr {
			top: 0;
			right: 0;
			background-position: 100% 0;
		}

		.b-image-2-frame__bl {
			bottom: 0;
			left: 0;
			background-position: 0 100%;
		}

		.b-image-2-frame__br {
			bottom: 0;
			right: 0;
			background-position: 100% 100%;
		}

		.b-image-2-frame__l,
		.b-image-2-frame__r {
			position: absolute;
			top: 11px;
			bottom: 11px;
			width: 11px;
			background: url('../img/frames/image-2-lr.png') repeat-y;
		}

		.b-image-2-frame__l {
			left: 0;
		}

		.b-image-2-frame__r {
			right: 0;
			background-position: 100% 0;
		}

		.b-image-2-frame__t,
		.b-image-2-frame__b {
			position: absolute;
			left: 11px;
			right: 11px;
			height: 11px;
			background: url('../img/frames/image-2-tb.png') repeat-x;
		}

		.b-image-2-frame__t {
			top: 0;
		}

		.b-image-2-frame__b {
			bottom: 0;
			background-position: 0 100%;
		}

		.b-image-2-frame__bg {
			position: absolute;
			top: 11px;
			right: 11px;
			bottom: 11px;
			left: 11px;
			background: url('../img/frames/image-2-bg.png');
		}

		.b-image-2-frame__inner {
			position: relative;
		}

	span.b-image-2-frame {
		display: inline-block;
	}

		span.b-image-2-frame__inner {
			display: block;
		}
	/* === /Image 2 === */

/* ====== /Frames ====== */


/* ====== Buttons ====== */
	
	/* === Large === */
		.b-but-red,
		.b-but-blue,
		.b-but-small {
			display: inline-block;
			position: relative;
			overflow: hidden;
			vertical-align: middle;
			text-decoration: none;
			cursor: pointer;
			border: 0;
		}

		.b-but-red.block,
		.b-but-blue.block,
		.b-but-small.block {
			display: block;
			width: 100%;
		}

			.b-but-red__inner,
			.b-but-blue__inner {
				display: block;
				min-width: 150px;
				margin: 0 0 0 53px;
				padding: 0 53px 0 0;
				font-weight: bold;
				font-size: 16px;
				line-height: 50px;
				text-align: center;
				color: #ffad4a;
				background-position: 100% -50px;
			}

				.b-but-red__decor,
				.b-but-blue__decor {
					position: absolute;
					z-index: 1;
					top: 0;
					left: 50%;
					width: 160px;
					margin: 0 0 0 -80px;
					background-position: 0 -100px;
				}

				.b-but-red__text,
				.b-but-blue__text {
					position: relative;
					z-index: 2;
				}

		.b-but-red:hover,
		.b-but-blue:hover {
			background-position: 0 -150px;
		}

			.b-but-red:hover .b-but-red__inner,
			.b-but-blue:hover .b-but-blue__inner {
				background-position: 100% -200px;
			}

				.b-but-red:hover .b-but-red__decor,
				.b-but-blue:hover .b-but-blue__decor {
					background-position: 0 -250px;
				}

		.b-but-red:active,
		.b-but-blue:active {
			background-position: 0 -300px;
		}

			.b-but-red:active .b-but-red__inner,
			.b-but-blue:active .b-but-blue__inner {
				background-position: 100% -350px;
			}

				.b-but-red:active .b-but-red__decor,
				.b-but-blue:active .b-but-blue__decor {
					background-position: 0 -400px;
				}

		/* === Red === */
		.b-but-red,
		.b-but-red__inner,
		.b-but-red__decor {
			height: 50px;
			background-color: transparent;
			background-image: url('../img/buttons/large-red.png');
			background-repeat: no-repeat;
		}
		/* === /Red === */

		/* === Blue === */
		.b-but-blue,
		.b-but-blue__inner,
		.b-but-blue__decor {
			height: 50px;
			background-color: transparent;
			background-image: url('../img/buttons/large-blue.png');
			background-repeat: no-repeat;
		}
		/* === /Blue === */
	/* === /Large === */

	/* === Small === */
	.b-but-small {
		height: 31px;
	}

		.b-but-small__txt {
			display: block;
			position: relative;
			z-index: 1;
			padding: 8px 8px 0;
			font-size: 11px;
			text-align: center;
		}

			.b-but-small__txt .ico-rating {
				position: relative;
				top: -1px;
			}

		.b-but-small__bg,
		.b-but-small__bg-inner {
			height: 31px;
			background: url('../img/buttons/small.png') no-repeat;
		}

		.b-but-small__bg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
		}

			.b-but-small__bg-inner {
				display: block;
				margin: 0 0 0 14px;
				background-position: 100% -31px;
			}

		.b-but-small:hover .b-but-small__bg,
		.b-but-small.active .b-but-small__bg {
			background-position: 0 -62px;
		}

			.b-but-small:hover .b-but-small__bg-inner,
			.b-but-small.active .b-but-small__bg-inner {
				background-position: 100% -93px;
			}
	/* === /Small === */

/* ====== /Buttons ====== */


/* ====== Dividers ====== */

	.b-divider-1,
	.b-divider-2,
	.b-divider-3 {
		clear: both;
	}

	.b-divider-1,
	.b-divider-2,
	.b-divider-2:before,
	.b-divider-2:after,
	.b-divider-2 .before,
	.b-divider-2 .after,
	.b-divider-3,
	.b-divider-3:before,
	.b-divider-3:after,
	.b-divider-3 .before,
	.b-divider-3 .after {
		display: block;
		overflow: hidden;
		font-size: 0;
	}

	/* === Divider 1 === */
	.b-divider-1 {
		height: 2px;
		margin: 0 0 10px;
		background: url('../img/dividers/divider-1.png') repeat-x;
	}
	/* === /Divider 1 === */

	/* === Divider 2 === */
	.b-divider-2,
	.b-divider-2:before,
	.b-divider-2:after,
	.b-divider-2 .before,
	.b-divider-2 .after {
		height: 18px;
		background: url('../img/dividers/divider-2.png') no-repeat;
	}

	.b-divider-2:before,
	.b-divider-2:after {
		content: '';
	}

	.b-divider-2 {
		position: relative;
		margin: 0 0 10px;
	}
		
		.b-divider-2:before,
		.b-divider-2 .before {
			margin: 0 0 0 16px;
			background-position: 100% -18px;
		}

		.b-divider-2:after,
		.b-divider-2 .after {
			position: absolute;
			top: 0;
			left: 50%;
			width: 40px;
			margin: 0 0 0 -20px;
			background-position: 0 -36px;
		}
		
	/* === /Divider 2 === */

	/* === Divider 3 === */
	.b-divider-3,
	.b-divider-3:before,
	.b-divider-3:after,
	.b-divider-3 .before,
	.b-divider-3 .after {
		height: 10px;
		background: url('../img/dividers/divider-3.png') no-repeat;
	}

	.b-divider-3:before,
	.b-divider-3:after {
		content: '';
	}

	.b-divider-3 {
		clear: both;
		position: relative;
		margin: 0 0 10px;
	}
		
		.b-divider-3:before,
		.b-divider-3 .before {
			margin: 0 0 0 8px;
			background-position: 100% -10px;
		}

		.b-divider-3:after,
		.b-divider-3 .after {
			position: absolute;
			top: 0;
			left: 50%;
			width: 15px;
			margin: 0 0 0 -7px;
			background-position: 0 -20px;
		}
		
	/* === /Divider 3 === */

/* ====== /Dividers ====== */


/* ====== Icons ====== */
	
	/* === Social === */
	.ico-soc {
		display: inline-block;
		width: 49px;
		height: 49px;
		vertical-align: middle;
		background: url('../img/ico/soc.png') no-repeat;
	}

	.ico-soc.mm:hover {
		background-position: 0 -49px;
	}
	.ico-soc.mm:active{
		background-position: 0 -98px;
	}

	.ico-soc.ok {
		background-position: -49px 0;
	}
	.ico-soc.ok:hover {
		background-position: -49px -49px;
	}
	.ico-soc.ok:active {
		background-position: -49px -98px;
	}

	.ico-soc.gp {
		background-position: -98px 0;
	}
	.ico-soc.gp:hover {
		background-position: -98px -49px;
	}
	.ico-soc.gp:active {
		background-position: -98px -98px;
	}

	.ico-soc.vk {
		background-position: -147px 0;
	}
	.ico-soc.vk:hover {
		background-position: -147px -49px;
	}
	.ico-soc.vk:active {
		background-position: -147px -98px;
	}

	.ico-soc.fb {
		background-position: -196px 0;
	}
	.ico-soc.fb:hover {
		background-position: -196px -49px;
	}
	.ico-soc.fb:active {
		background-position: -196px -98px;
	}

	.ico-soc.rss {
		background-position: -245px 0;
	}
	.ico-soc.rss:hover {
		background-position: -245px -49px;
	}
	.ico-soc.rss:active {
		background-position: -245px -98px;
	}
	/* === /Social === */

	/* === Rating Controls === */
	.ico-rating {
		display: inline-block;
		width: 17px;
		height: 17px;
		vertical-align: middle;
		background: url('../img/ico/rating-controls.png?r=1') no-repeat;
	}

	.ico-rating.kind-2 {
		background-position: 0 -17px;
	}

	.ico-rating.rate {
		background-position: 0 -34px;
	}

	.ico-rating.achivement {
		background-position: 0 -51px;
	}

	.ico-rating.great-fight {
		background-position: 0 -68px;
	}

	.ico-rating.fight {
		background-position: 0 -85px;
	}

	.ico-rating.glory {
		background-position: 0 -102px;
	}
	/* === /Rating Controls === */

/* ====== /Icons ====== */


/* ====== Forms ====== */

	/* === Input === */
	.b-input {
		display: inline-block;
		position: relative;
		height: 23px;
		padding: 3px 8px;
	}

	.b-input .before,
	.b-input .after,
	.b-input:before,
	.b-input:after {
		content: '';
		position: absolute;
		height: 29px;
		background: url('../img/forms/input.png') no-repeat;
	}

	.b-input .before,
	.b-input:before {
		top: 0;
		left: 0;
		width: 8px;
	}

	.b-input .after,
	.b-input:after {
		top: 0;
		left: 8px;
		right: 0;
		background-position: 100% -29px;
	}

		.b-input input {
			display: block;
			position: relative;
			z-index: 1;
			min-width: 180px;
			width: 100%;
			padding: 0;
			margin: 0;
			font-size: 18px;
			line-height: 18px;
			color: #79381b;
			border: 0;
			background: none;
		}
	/* === /Input === */

/* ====== /Forms ====== */


/* ====== Headers ====== */

.b-common-header,
.b-common-header__inner {
	position: relative;
	height: 26px;
	background: url('../img/headers/header-1.png') no-repeat;
}

.b-common-header {
	margin: 0 10px 10px;
}

	.b-common-header__inner {
		margin: 0 0 0 31px;
		padding: 0 31px 0 0;
		font-weight: bold;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		background-position: 100% 100%;
	}

/* ====== /Headers ====== */


/* ====== Common Elements ====== */
	
	/* === Block === */
	.b-common-block {
		margin: 0 22px;
	}

	.b-common-block.half-margin {
		margin: 0 11px;
	}

	.b-common-tabs {
		position: relative;
		overflow: hidden;
		font-size: 0;
		text-align: left;
	}

		.b-common-tabs__item,
		.b-common-tabs__item-inner {
			height: 32px;
			color: #79381b;
			background: url('../img/buttons/tabs.png') no-repeat;
		}

		.b-common-tabs__item {
			display: inline-block;
			margin: 0 2px;
			cursor: pointer;
		}

			.b-common-tabs__item-inner {
				display: block;
				margin: 0 0 0 13px;
				padding: 0 13px 0 0;
				font-size: 11px;
				line-height: 31px;
				text-align: center;
				background-position: 100% -32px;
			}

		.b-common-tabs__item.active {
			background-position: 0 -64px;
		}

			.b-common-tabs__item.active .b-common-tabs__item-inner {
				color: #d42a2a;
				background-position: 100% -96px;
			}

	.b-banner-pagination {
		position: absolute;
		font-size: 0;
	}

		.b-banner-pagination__page {
			display: inline-block;
			width: 33px;
			height: 33px;
			margin: 0 -4px;
			font-size: 14px;
			line-height: 28px;
			text-align: center;
			background: url('../img/buttons/banner-pagination.png') no-repeat;
		}

		.b-banner-pagination__page.active,
		.b-banner-pagination__page.selected {
			background-position: 0 -33px;
		}
	/* === /Block === */

	/* === Inline === */

	/* === /Inline === */

/* ====== /Common Elements ====== */


/*********************************************************************************/
/*********************************************************************************/
/*********************************************************************************/


/* ====== Logo ====== */

.b-logo {
	display: block;
	width: 774px;
	height: 177px;
	margin: 0 auto;
}

	.b-logo img {
		display: block;
		width: 100%;
	}

/* ====== /Logo ====== */


/* ====== Login Form ====== */

.b-login-form {
	padding: 15px 0 0;
	margin-bottom: 10px;
}

	.b-login-form .b-common-header {
		margin-left: 15px;
		margin-right: 15px;
	}

	.b-login-form__social {
		margin: 0 0 10px;
		font-size: 0;
		text-align: center;
	}

		.b-login-form__social .ico-soc {
			margin: 0 1px;
		}

		.b-login-form__soc-user {
			display: inline-block;
			vertical-align: middle;
		}

	.b-login-form__fields {
		position: relative;
		width: 100%;
		border-collapse: collapse;
	}

		.b-login-form__fields td {
			padding: 0 0 0 5px;
		}

		.b-login-form__fields td:first-child {
			padding-left: 0;
		}

		.b-login-form__label {
			width: 1%;
			height: 32px;
		}

		.b-login-form__nopass {
			text-align: right;
		}

			.b-login-form__nopass a {
				display: inline-block;
				font-size: 12px;
				line-height: 26px;
				text-decoration: none;
			}

			.b-login-form__nopass a:before,
			.b-login-form__nopass a .before {
				content: '';
				display: inline-block;
				width: 26px;
				height: 26px;
				margin: 0 3px 0 0;
				vertical-align: middle;
				background: url('../img/link-decor.png') no-repeat;
			}

	.b-login-form .b-input {
		display: block;
	}

	.b-login-form .b-but-red {
		margin-bottom: 5px;
	}

	.b-login-form__user-auth {
		font-size: 16px;	
	}

/* ====== /Login Form ====== */


/* ====== Victory Statistics ====== */

.b-vitory-statistics {
	margin-bottom: 10px;
}

	.b-vitory-statistics .b-image-frame {
		margin: 0 0 10px;
		padding: 5px 6px 6px 5px;
	}

	.b-vitory-statistics__progress {
		position: relative;
		height: 26px;
	}

	.b-vitory-statistics__top {
		margin: 0 12px -3px 12px;
		overflow: hidden
	}

		.b-vitory-statistics__top .race-1 {
			color: #11537a;
			float: left;
		}

		.b-vitory-statistics__top .race-2 {
			color: #d42a2a;
			float: right;
		}

	.b-vitory-statistics__bottom {
		font-weight: bold;
		margin: -15px 12px 0 12px;
		overflow: hidden;
		text-shadow: 1px 1px 0 #FEC
	}

		.b-vitory-statistics__bottom .race-1,
		.b-vitory-statistics__bottom .race-2 {
			height: 31px;
			min-width: 64px;
			position: relative;
			text-align: center;
		}

		.b-vitory-statistics__bottom .race-inner {
			display: inline-block;
			font-size: 10px;
			line-height: 30px;
			padding: 0 12px;
			position: relative;
			vertical-align: middle;
			z-index: 1;
		}

		.b-vitory-statistics__bottom .race-1 {
			color: #11537a;
			float: left;
		}

		.b-vitory-statistics__bottom .race-2 {
			color: #d42a2a;
			float: right;
		}

.b-victory-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 26px;
	padding: 0 24px;
}

	.b-victory-progress__ico,
	.b-victory-progress__bar {
		background-image: url('../img/bg/victory-statistics.png');
	}

	.b-victory-progress__ico {
		position: absolute;
		top: 0;
		left: 0;
		width: 24px;
		height: 26px;
		background-repeat: no-repeat;
	}

	.b-victory-progress__bar {
		height: 26px;
		background-repeat: repeat-x;
	}

.b-victory-progress.blue {}

	.b-victory-progress.blue .b-victory-progress__bar {
		background-position: 0 -26px;
	}

.b-victory-progress.red {}

	.b-victory-progress.red .b-victory-progress__ico {
		left: auto;
		right: 0;
		background-position: 0 -52px;
	}

	.b-victory-progress.red .b-victory-progress__bar {
		float: right;
		background-position: 100% -78px;
	}

.b-victory-points {
	position: relative;
	height: 50px;
	margin: 0 0 10px;
}

	.b-victory-points__blue,
	.b-victory-points__red {
		position: absolute;
		top: 0;
		width: 135px;
		height: 50px;
		background: url('../img/bg/victory-points.png') no-repeat;
	}

		.b-victory-points__name {
			font-size: 11px;
			text-align: center;
			text-transform: uppercase;
		}

		.b-victory-points__points {
			position: absolute;
			top: 0;
			width: 57px;
			height: 50px;
			font-weight: bold;
			font-size: 22px;
			line-height: 50px;
			text-align: center;
		}

	.b-victory-points__blue {
		left: -5px;
	}

		.b-victory-points__blue .b-victory-points__name {
			margin: 18px 57px 0 15px;
			color: #11537a;
		}

		.b-victory-points__blue .b-victory-points__points {
			right: 0;
		}

	.b-victory-points__red {
		right: -5px;
		background-position: 0 100%;
	}

		.b-victory-points__red .b-victory-points__name {
			margin: 18px 15px 0 57px;
			color: #d42a2a;
		}

		.b-victory-points__red .b-victory-points__points {
			left: 0;
		}

/* ====== /Victory Statistics ====== */


/* ====== Ratings ====== */

.b-ratings {
	margin-bottom: 10px;
}

	.b-ratings .b-common-tabs {
		margin-bottom: -6px;
		text-align: center;
	}

	.b-ratings__table {
		width: 100%;
		border-collapse: collapse;
	}

		.b-ratings__table tr.odd td {
			background-color: #fdebc8;
		}

		.b-ratings__table td {
			height: 22px;
			padding: 0 5px;
			font-size: 12px;
		}

		.b-ratings__faction {
			width: 1%;
		}

			.b-ratings__faction img {
				width: 13px;
			}

	.b-ratings__controls {
		position: relative;
		font-size: 0;
	}

		.b-ratings__controls .b-but-small {
			margin: 0 -1px;

			zoom: 1;
		}

		.b-ratings__controls-left {
			float: left;
		}

		.b-ratings__controls-right {
			float: right;
		}

		.b-ratings__controls-center {
			clear: both;
			text-align: center;
		}
/* ====== /Ratings ====== */


/* ====== News ====== */

.b-news {
	padding: 5px 0 0;
	margin-bottom: 10px;
}

	.b-news__item {
		margin: 0 0 10px;
	}

		.b-news__header {
			margin: 0 10px;
			padding: 3px 0;
			font-size: 16px;
		}

			.b-news__header a {
				text-decoration: none;
			}

		.b-news__item .b-divider-1 {
			margin: 0;
		}

		.b-news__subheader {
			margin: 0 10px;
			padding: 3px 0;
			font-size: 11px;
		}

		.b-news__body {
			margin: 0 10px;
			padding: 10px 0;
		}

			.b-news__body p {
				margin: 0 0 10px;
			}

		.b-news__footer a {
			text-decoration: none;
		}

		.b-news__footer-left {
			float: left;
		}

		.b-news__footer-right {
			float: right;
		}

	.b-news__bottom {
		padding-top: 30px;
	}

		.b-news__soc-mm {
			display: inline-block;
			width: 109px;
			height: 29px;
			background: url('../img/buttons/soc-mm.png') no-repeat;
		}

		.b-news__soc-mm:hover {
			background-position: 0 -29px;
		}
		.b-news__soc-mm:active {
			background-position: 0 -58px;
		}

/* ====== /News ====== */


/* ====== Try Fight ====== */

.b-try-fight {
	display: block;
	position: relative;
	padding: 10px 0 0;
	text-align: center;
}

	.b-try-fight img {
		display: block;
	}

	.b-try-fight__banner {
		position: absolute;
		z-index: 4;
		left: 30px;
		bottom: 0;
		width: 339px;
		height: 73px;
		background: url('../img/buttons/try-fight.png') no-repeat;
	}

	.b-try-fight:hover .b-try-fight__banner {
		background-position: 0 -73px;
	}
	.b-try-fight:active .b-try-fight__banner {
		background-position: 0 -146px;
	}

/* ====== /Try Fight ====== */


/* ====== About ====== */

.b-about {
	position: relative;
	height: 160px;
	margin-top: -10px;
	margin-bottom: 10px;
	background: url('../img/bg/about.png') no-repeat;
}

	.b-about .b-but-blue {
		position: absolute;
		bottom: 0;
		left: 0;
	}

/* ====== /About ====== */


/* ====== Screen Gallery ====== */

.b-screen-gallery {
	margin-bottom: 10px;
	padding: 0 15px;
	text-align: center;
}

	.b-screen-gallery img {
		vertical-align: bottom;
	}

	.b-screen-gallery .b-common-frame__inner {
		position: static;
		padding: 10px 0;
	}

	.b-screen-gallery__arrow {
		position: absolute;
		z-index: 2;
		top: 50%;
		width: 40px;
		height: 40px;
		margin-top: -20px;
		background: url('../img/buttons/arrows.png') no-repeat;
	}

	.b-screen-gallery__arrow.left {
		left: -20px;
	}
	.b-screen-gallery__arrow.left:hover {
		background-position: 0 -40px;
	}
	.b-screen-gallery__arrow.left:active {
		background-position: 0 -80px;
	}

	.b-screen-gallery__arrow.right {
		right: -20px;
		background-position: -40px 0;
	}
	.b-screen-gallery__arrow.right:hover {
		background-position: -40px -40px;
	}
	.b-screen-gallery__arrow.right:active {
		background-position: -40px -80px;
	}

/* ====== /Screen Gallery ====== */


/* ====== Portal Buttons ====== */

.b-portal-buttons .b-but-blue,
.b-portal-buttons .b-but-red {
	margin: 0 0 10px;
}

/* ====== /Portal Buttons ====== */


/* ====== Artifact Alt ====== */

.b-artifact-alt {
	font-size: 10px;
	position: absolute;
	z-index: 9999;
	width: 300px;
}

.b-artifact-alt img {
	vertical-align: top;
}

.b-artifact-alt .tbl1 {
	border-collapse: collapse;
}

.b-artifact-alt .tbl1 td {
	background-image: url("/images/int/tbl1bg1.gif");
}

.b-artifact-alt .tbl1 .hi,
.b-artifact-alt .tbl1 .hi td
{
	background: url('/images/null.gif');
}

/* ====== /Artifact Alt ====== */


/* ====== SEO ====== */

.b-seo {
	padding: 10px;
}

	.b-seo h2,
	.b-seo p {
		margin: 0 0 10px;
		font-weight: normal;
		font-size: 12px;
	}

	.b-seo strong {
		font-weight: normal;
	}

	.b-seo em {
		font-style: normal;
	}

/* ====== /SEO ====== */
.mygames-logo {vertical-align: top;}
.icon-rating {margin-bottom: 5px; vertical-align: top;}
.mygames-logo-w {display: none; vertical-align: top;}
.white-copy * {color: #fff;}
.white-copy .mygames-logo {display: none;}
.white-copy .mygames-logo-w {display: inline;}

/* ====== Footer ====== */

.b-footer {
	position: relative;
	padding-top: 2px;
}

	.b-footer__item {
		display: inline-block;
		vertical-align: middle;
		margin: 0 10px;
		font-size: 12px;
	}

/* ====== /Footer ====== */


/* ====== Error ====== */

.b-error {
	display: none;
	z-index: 1000;
}

/* ====== /Error ====== */