/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

















/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

h1 {
	color:#f4e78c;
	font-size:70px;
}

h2 {
	color:#f4e78c;
}


body {
	background:url(../img/bg.png) #ababab left top repeat-x;
}

.wrapper {
	width:1000px;
	margin:0 auto;
}

header {
	height:68px;
	border-bottom:4px solid #f4e78c;
	display:block;
	margin:0;
	padding:26px 0 0 0;
}

	header .top-menu {
		margin:0;
		padding:0;
		font-size:16px;
		list-style:none;
	}

	header .top-menu li {
		display:block;
		height:35px;
		float:left;
		line-height:35px;
		font-weight:bold;
	}


	header .top-menu li  a {
		text-transform:uppercase;
		color:#f4e78c;
		padding:0 16px;
		text-decoration:none;
	}

	header .top-menu li.active, header .top-menu li:hover {
		background-color:#f4e78c;
	}

	header .top-menu li.active  a, header .top-menu li:hover  a{
		color:#000;
	}

	header  .user-links {
		float:right;
		color:#f4e78c;
		font-size:12px;
		line-height:16px;
		text-align:right;
	}
	
	header  .user-links  a {
		color:#f4e78c;
	}

#main-logo {
	width:556px;
	height:559px;
	background:url(..//img/main-logo.png) center center no-repeat;
	margin:70px auto 0 auto;
}

#features {
	display:block;
	list-style:none;
	width:100%;
	margin:0;
	padding:0;
	text-align:center;
}

	#features  li {
		height:88px;
		width:200px;
		display:inline-block;
		text-align:left;
		padding-left:84px;
		overflow:hidden;
		font-size:20px;
		line-height:25px;
		color:#232323;
		vertical-align:top;
	}

	#features  li  i {
		display:block;
		height:88px;
		width:62px;
		background:url(../img/mp-ico.png) 0 0 no-repeat;
		float:left;
		margin-left:-84px;
		display:inline-block;
	}

	#features  li.item-2 {
		width:189px;
	}
	
	#features  li.item-2 i{
		width:73px;
		background-position:-62px 0;
	}
	
	#features  li.item-2 b{
		font-size:59px;
		line-height:59px;
	}
	
	#features  li.item-3 {
		width:117px;
		padding-left:103px;
		
	}
	
	
	#features  li.item-3 i{
		width:80px;
		margin-left:-103px;
		background-position:-135px 0;
	}

section {
	position:relative;
}

#heroes-wrapper {
	list-style:none;
	padding:0;
	margin:0;
}

.hero {
	height:641px;
	width:405px;
	background:url(../img/heroes.png) 0 0 no-repeat;
	position:absolute;
	top:-105px;
	display:block;
}


.hero.left {
	left:-60px;
}

.hero.right {
	right:-64px
}

.hero.riginal.left {
	background-position:-810px 0;
}
.hero.riginal.right {
	background-position:-1215px 0;
}

.hero.redmark.left {
	background-position:-1620px 0;
}
.hero.redmark.right {
	background-position:-2025px 0;
}


.hero.volton.left {
	background-position:-2430px 0;
}
.hero.volton.right {
	background-position:-2835px 0;
}



#heroes-small-wrapper  {
	position:relative;
	text-align: justify;
	line-height: 0;
	font-size: 1px;
	text-justify: newspaper;
	zoom:1;
	text-align-last: justify;
	margin:0;
	padding:0;
}
	#heroes-small-wrapper:after
	{
		width: 100%; 
		height: 0px;
		visibility: hidden;
		overflow: hidden;
		content: '';
		display: inline-block;
		}

	#heroes-small-wrapper .hero {
		height:252px;
		width:159px;
		background:url(../img/heroes-small.png) 0 0 no-repeat;
		position:relative;
		display:inline-block;
		top:0;
	}

	#heroes-small-wrapper .hero:hover{
		 transform: translate(0,-20px);
		-webkit-transform: translate(0,-20px);
		-o-transform: translate(0,-20px);
		-moz-transform: translate(0,-20px);
		transition-delay: 0s;
		transition-duration: 0.5s;
		transition-property: all;
	}
	
	#heroes-small-wrapper .hero.niagara {
		background-position:-159px 0;
		width:150px;
	}

	#heroes-small-wrapper .hero.volton {
		background-position:-309px 0;
		width:134px;
	}

	#heroes-small-wrapper .hero.redmark {
		background-position:-451px 0;
		width:124px;
	}

	
.rating h1 {
	text-align:center;
	margin-bottom:0;
	margin-top:0;
	text-transform:uppercase;
}

	.rating .rating-tab {
		text-align:center;
	}

	.rating .rating-tab a {
		display:inline-block;
		height:32px;
		width:180px;
		line-height:32px;
		border:1px #f4e78c solid;
		background:#232323;
		color:#f4e78c;
		text-decoration:none;
	}
	
	.rating .rating-tab a.active {
		background:#f4e78c;
		color:#232323;
	}

.register {
	background:url(../img/ico-reg.png) left top no-repeat;
	padding-left:436px;
	min-height:760px;
	color:#fff;
}

.register h1 {
	margin-bottom:110px;
}

.button {
	display:block;
	width:100%;
	height:57px;
	line-height:57px;
	text-align:center;
	background:#f4e78c;
	color:#232323;
	margin-bottom:15px;
	text-decoration:none;
	font-size:24px;
	font-weight:bold;
}

.button.auth {
	color:#f4e78c;
	background:#232323;
}

.register .button.reg {
	margin-top:170px;
}

.main_text {
	background:#ababab;
	color:#232323;
	padding:20px 40px;
	font-size:18px;
}

.rules h1 {
	margin-top:45px;
	margin-bottom:20px;
}

.rules h2 {
	margin-bottom:20px;
	font-weight:normal
}



.price_table td {
	padding:10px;
	text-align:center;
	background:#fff;
}

.price_table .selected td {
	background:#f4e78c;
}

.price_table  .head td {
	font-size:22px;
}


footer {
	margin-top:60px;
	margin-bottom:40px;
	border-top:1px solid #232323;
	padding:20px 0px;
	font-size:12px;
}

footer a {
	color:#232323;
}

footer p {
	float:left;
}

footer .lcol {
	float:right;
}

.example {
	padding-left:20px;
	border-left:1px solid #232323;
}

.example p {
	font-size:12px;
}


#bitva-rating {
	list-style:none;
	margin:0;
	padding:0;
	color:#fff;
	position:relative;
}

	.rating-top-sep{
		height:24px;
		background: url('data:image/gif;base64,R0lGODlhAQATAIABAP///////yH5BAEAAAEALAAAAAABABMAAAIHRA6GeZFZAAA7') left top no-repeat;	
	}
	
	
	.rating-top-sep.top {
		background:none;
	}
	.rating-bottom-sep{
		height:19px;
		background: url('data:image/gif;base64,R0lGODlhAQATAIABAP///////yH5BAEAAAEALAAAAAABABMAAAIHhBF5GcZQAAA7') left top no-repeat;	
	}
	.rating-bottom-sep.bottom{
		background:none;
	}
	
	#bitva-rating .item{
		height:50px;
		padding-bottom:6px;
		vertical-align:top;
		padding-left:25px;
		background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAACRCAMAAAAB1OPkAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAAK0lEQVR42uzQoQEAAAjDsPH/01wwjSC1cU2mFEIIIeSp9NwhhBBCLmQFGABwZw2Bc77ilgAAAABJRU5ErkJggg==') left center no-repeat;
	}
	
	#bitva-rating .item.pos-1{
		background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAACgCAMAAADO8jfsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAALUlEQVR42uzLsQ0AAAjDMPj/aWaGcgByVivVqSKEEELIBznKDyGEEELIbgQYAOucDzd7YbF3AAAAAElFTkSuQmCC');
	}
	
	#bitva-rating .item.last{
		background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAACgCAMAAADO8jfsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////////VXz1bAAAAAJ0Uk5T/wDltzBKAAAALUlEQVR42uzLQREAAAjDsOHfNApmANJvrsmUQgghhJDjUpv6EEIIIeSprAADAHR6DzmkWj8lAAAAAElFTkSuQmCC');
	}
	
	#bitva-rating .item.dummy{
		background:none;
		border-left:none;
	}
	
	#bitva-rating .rating-info {
		position:absolute;
		right:97px;
		bottom:0px;
		text-align:right;
	}
		#bitva-rating .rating-info  .first-line{
			font-size:18px;
		}
		
		#bitva-rating .rating-info  .first-line a{
			color:#f4e78c;
		}
	
		#bitva-rating .rating-info  .second-line{
			font-size:30px;
			line-height:28px;
			font-weight:bold;
		}
		
		#bitva-rating .rating-info  .second-line i{
			font-size:14px;
			line-height:16px;
			font-weight:bold;
			display:block;
			color:#f4e78c;
			font-weight:normal;
		}
		
	
	#bitva-rating .item .position{
		height:48px;
		border:1px solid #fff;
		background:#ababab;
		color:#000;
		font-size:18px;
		text-align:center;
		line-height:50px;
		display:block;
		width:55px;
		margin:0 6px 0 0;
		padding:0;
		float:left;
	}
		
	#bitva-rating .item .points{
		height:36px;
		border:1px solid #fff;
		background:#232323;
		color:#fff;
		font-size:18px;
		line-height:50px;
		display:block;
		width:220px;
		margin:0 6px 0 0;
		padding:6px;
		overflow:hidden;
		line-height:20px;
		text-align:left;
		
	}
	
	#bitva-rating .item .points .point {
		line-height:20px;
		width:33%;
		display:block;
		font-size:24px;
		float:left;
		
	}
	
	#bitva-rating .item .points .total {
		color:#f4e78c;
	}
	
	#bitva-rating .item .points .inn {
		color:#ababab;
		font-size:10px;
		display:block;
		width:100%;
	}
	
	#bitva-rating .item.active {
			height:120px;
			width:100%;
			position:relative;
		}
		
		#bitva-rating .item.active  .position{
			height:120px;
			line-height:120px;
			background:#232323;
			color:#f4e78c;
		}
	
		#bitva-rating .item.active  .points{
			height:108px;
			line-height:120px;
			width:800px
		}
		
		#bitva-rating .item.active .points .point{
			font-size:60px;
			text-align:center;
			line-height:60px;
			 margin-top: 12px;
		}
		
		#bitva-rating .item .points .point u {
			text-decoration:none;
			font-weight:bold;
		}
		
		#bitva-rating .item.active .points .point i {
			font-size:18px;
			line-height:18px;
			color:#f4e78c;
			font-style:normal;
			display:block;
			text-align:center;
			text-transform:uppercase;
		}
		
		#bitva-rating .item.active  .tab-control {
			text-align:left;
			position:absolute;
			right:123px;
			top:-26px;
		}
		
		
		#bitva-rating .item.active  .tab-control a {
			display:block;
			height:26px;
			line-height:26px;
			font-size:14px;
			color:#232323;
			padding:0  16px;
			background:#9d9d9d;
			margin:0;
			text-decoration:none;
			border-top:1px solid #fff;	
			border-top:1px solid #fff;	
			border-right:1px solid #fff;	
			float:left;
		}
		
		#bitva-rating .item.active  .tab-control a:first-child {
			border-left:1px solid #fff;	
		}
		
		#bitva-rating .item.active  .tab-control a.active {
			background:#232323;
			color:#fff;
		}
		
.rate_messge {
	margin-top:40px;
	margin-bottom:40px;
	text-align:center;
	color: #fff;
}