html,body {
	margin: 0;
	padding: 0;
	
	width: 100%;
}

body {
	font-family: Arial,Microsoft Sans Serif;
	font-size: 14px;
	background: #e7e4e4 url(auth/images/bg.png) repeat;
	color: #5c646e;
}

::selection {
	background-color: #9f385b;
	color: white;
}

::-moz-selection {
	background-color: #9f385b;
	color: white;
}

*{
	margin: 0;
	padding: 0;
}

p {
	margin: 15px 0;
	line-height: 20px;
}

a img {
	border: none;
	outline: none;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	line-height: normal;
}

h1 {
	font-size: 24px;
	color: #a5adb8;
	text-transform: capitalize;
}

h1::first-letter {
	color: #ae4b5d;
}

h2 {
	font-size: 16px;
	color: #282d33;
}

h3 {
	font-size: 16px;
	color: #9f24f6;
	margin: 7px 0;
}

h4 {
	font-size: 14px;
	margin: 7px 0;
	text-decoration: underline;
}

h5 {
	
}

h6 {

}

/*Lists*/
ul {
	list-style-type: disc;
	padding-left: 20px;
	margin: 0;
}

ul li, ol li {
	line-height: 22px;
}

ul li ul {
	padding-left: 20px;
	margin: 0;
}

ul.unstyled {
	list-style-type: none;
	padding-left: 0;
}

ul.unstyled ul li {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
	padding-left: 25px;
}

code {
	padding: 1px 3px;
	background-color: #dedede;
	
	font-weight: normal;
	font-size: 11px;
}

/*Tables*/






/*Forms
form {
    display: inline-block;
}

label {
    line-height: 24px;
	margin-left: 3px;
	float: none;
}

input,select,textarea {
    display: inline-block;
	width: 100px;
    height: 30px;
    padding: 5px 5px;
    line-height: 18px;
    border: 1px solid white;
	background-color: #e3e4e5;
	-webkit-transition: background linear 0.2s;
	-moz-transition: background linear 0.2s;
	-ms-transition: background linear 0.2s;
	-o-transition: background linear 0.2s;
	transition: background linear 0.2s;
	
	
	box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.2);
	margin: 5px 0;
	font-size: 14px;
}

input:-moz-placeholder {
  color: #757575;
}

input::-webkit-input-placeholder {
  color: #757575;
}

input:focus,textarea:focus {
    background-color: #d6d6d6;
	outline: none;
}

select {
    width: auto;
    height: auto;
	border: 1px solid #a2a2a2;
}

textarea {
    height: auto;
}

button {
    cursor: pointer;
	display: inline-block;
	background-color: #95161f;
	background-repeat: no-repeat;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b0252e), color-stop(25%, #b0252e), to(#95161f));
	background-image: -webkit-linear-gradient(#b0252e, #b0252e 25%, #95161f);
	background-image: -moz-linear-gradient(top, #b0252e, #b0252e 25%, #95161f);
	background-image: -ms-linear-gradient(#b0252e, #b0252e 25%, #95161f);
	background-image: -o-linear-gradient(#b0252e, #b0252e 25%, #95161f);
	background-image: linear-gradient(#b0252e, #b0252e 25%, #95161f);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b0252e', endColorstr='#95161f', GradientType=0);
	padding: 10px 18px 11px;	
	color: white;
	font-size: 15px;
	line-height: normal;
	font-weight: bold;
	
	border: 5px solid #95161f;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-transition: 0.1s linear all;
	-moz-transition: 0.1s linear all;
	-ms-transition: 0.1s linear all;
	-o-transition: 0.1s linear all;
	transition: 0.1s linear all;
	margin-bottom: 10px;
}

button[type=reset] {
	background-color: #e6e6e6;
	background-repeat: no-repeat;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), color-stop(25%, #f5f5f5), to(#e6e6e6));
	background-image: -webkit-linear-gradient(#f5f5f5, #f5f5f5 25%, #e6e6e6);
	background-image: -moz-linear-gradient(top, #f5f5f5, #f5f5f5 25%, #e6e6e6);
	background-image: -ms-linear-gradient(#f5f5f5, #f5f5f5 25%, #e6e6e6);
	background-image: -o-linear-gradient(#f5f5f5, #f5f5f5 25%, #e6e6e6);
	background-image: linear-gradient(#f5f5f5, #f5f5f5 25%, #e6e6e6);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#e6e6e6', GradientType=0);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
	color: #666;
}
h2 a{
	color: #778899;
	text-decoration: none;
	font-size: 15px;
	line-height: normal;
	font-weight: lighter;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}
h2 a:hover{
	font-style: italic;
	text-shadow: 0 1px 1px #FF0000;
	font-weight: bold;
	text-decoration: underline;
}*/
/*
button:hover,button[type=reset]:hover {
    background-position: 0 -15px;
}

button.minWidth {
	width: 187px;
}

input[type=checkbox],input[type=radio] {
    width: auto;
    height: auto;
    margin-left: 0;
    padding: 0;
    line-height: normal;
    float: left;
    border: none;
}

input[type=file] {
    height: 27px;
    border: none;
}

input[type=file]:focus, input[type=checkbox]:focus, select:focus {
    outline: 1px dotted #666;
}

input[disabled] {
    cursor: not-allowed;
	background-color: #d1d1d1;
	border: 1px solid white;
	color: #bdbdbd;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
*/
.row {
	display: block;
	clear: both;
	overflow: hidden;
	margin: 5px 0;
	
}

.span,.span1 {
	float: left;
	display: inline;
	
}

.span {
	width: 300px;
	*/margin-right: 100px;
	margin-left: 30px;
	float: left;
	display: inline;
}

.span1 {
	width: 270px;
	margin: 0 25px;
}

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.wrapper {
	width: 100%;
		top: 0;
	position: absolute;
}
/*Header*/
.header {
	width: 100%;
	height: 70px;
	background: linear-gradient(#778899, #808080);
	
}

.header .headerContent {
	width: 1800;
	padding: 0px 10px 10px;
	height: 70px;
	margin-left: 25px;
	
	
}

.headerContent h1 {
	font-size: 30px;
	margin: 0;
	text-transform: uppercase;
	line-height: 24px;
}

.headerContent h1 a {
	text-decoration: none;
	color: #a5adb8;
}

.headerContent p {
	margin: 0;
	line-height: 18px;
}
/*
form.search {
	display: inline-block;
	float: right;
}

form.search > input[type=text] {
	width: 205px;
	height: 22px;
	padding: 5px;
	color: #a5adb8;
	background-color: #24272d;
	border: 1px solid #875f66;
	font-size: 14px;
	
	float: left;
	margin: 0 5px 0 0;
	box-shadow: inset 0 5px 5px rgba(0,0,0, 0.3);
	-webkit-box-shadow: inset 0 5px 5px rgba(0,0,0, 0.3);
	-moz-box-shadow: inset 0 5px 5px rgba(0,0,0, 0.3);
}

form.search > input[type=image] {
	width: 36px;
	height: 34px;
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	background: transparent;
}

form.search > input:-moz-placeholder {
  color: #5b636e;
}
form.search > input::-webkit-input-placeholder {
  color: #5b636e;
}	

form.search > input[type=text]:focus {
	border: 1px solid #a5adb8;
}*/
/*Slider*/
.slider {
	width: 1000px;
	height: 227px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.itemSlider {
	width: 980px;
	height: 240px;
}

.itemSlider .bgSlide {
	width: 1000px;
	height: 240px;
	position: absolute;
	top: 0;
	left: 0;
}

.itemSlider .descSlide {
	position: absolute;
	top: 40px;
	left: 30px;
	width: 500px;
	overflow: hidden;
}

.descSlide>h1 {
	font-size: 30px;
}

.descSlide h1+p {
	color: #282D33;
	font-size: 18px;
	font-weight: bold;
	margin: 0;
}

.descSlide>span {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	color: #a5adb8;
	margin: 20px 0 6px;
}

.descSlide>p {
	color: #d9dcdf;
	margin-top: 0;
}
/*Navigation*/
.nav {
	width: 1010px;
	height: 30px;
	background: #17456c url(http://vkhl-online.ru/forum/wi/ia/tc.gif) repeat-x;
	margin: 0 auto;
	padding-top: 3px;
}

ul.menu {
	display: inline-block;
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.menu li {
	float: left;
}

ul.menu li a {
	color: white;
	font-weight: bold;
	text-decoration: none;
	padding: 0 20px;
	-webkit-transition: text-shadow linear 0.2s;
	-moz-transition: text-shadow linear 0.2s;
	-ms-transition: text-shadow linear 0.2s;
	-o-transition: text-shadow linear 0.2s;
	transition: text-shadow linear 0.2s;
}

ul.menu li a:hover {
	text-shadow: 0 0 15px rgba(255,255,255, 0.8);
}
/*.breadcrumbs {
	width: 940px;
	padding: 4px 20px 6px;
	font-size: 11px;
	margin: 0 auto;
	background-color: #f3f3f3;
}
Main*/
.main {
	
	width: 990px;
	padding: 10px 10px 0px;
	overflow: hidden;
	background-color: white;
	margin: 0 auto;
	
}
/*Left Column*/
.leftCol {
	width: 223px;
	float: left;
	margin-right: 20px;
	color: #757575;
}

.leftCol div {
	width: 193px;
	background-color: #f3f3f3;
	border: 1px solid #d8dbde;
	padding: 10px;
	color: #757575;
}

.leftCol td {
	width: 183px;
	border: 1px solid #ffffff;
}
/*
.leftCol select {
	width: 193px;
}

.leftCol select:focus {
	outline: none;
}

.leftCol input[type=radio],.leftCol input[type=checkbox] {
	width: auto;
}

.leftCol p {
	font-size: 12px;
	margin: 8px 0;
}
*/
/*Social button*/
.tw,.vk,.google {
	margin-bottom: 5px;
	height: 20px;
}
/*Right Column*/
.rightCol {
	overflow: hidden;
}

ul.img {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0 7px 15px;
}

ul.img li {
	float: left;
	box-shadow: 0 5px 5px rgba(0,0,0, 0.3);
	-webkit-box-shadow: 0 5px 5px rgba(0,0,0, 0.3);
	-moz-box-shadow: 0 5px 5px rgba(0,0,0, 0.3);
	-webkit-transition: border linear 0.2s;
	-moz-transition: border linear 0.2s;
	-ms-transition: border linear 0.2s;
	-o-transition: border linear 0.2s;
	transition: border linear 0.2s;
	margin-right: 15px;
	border: 1px solid white;
}

ul.img li a {
	width: 194px;
	height: 140px;
	display: block;
	overflow: hidden;
}

ul.img li:hover {
	border: 1px solid #95161f;
}
/*Footer*/
.footer {
	position: absolute;
	bottom: 1px;
	
	width: 100%;
	background: #1D9FE2 url(http://vkhl-online.ru/forum/images/evid_blue/gradients/tcat_r.gif) repeat-x top left;
	height: 20px;
	overflow: hidden;
}

.footerContent {
	padding: 10px;
	color: white;
	width: 960px;
	margin: 0 auto;
	font-size: 12px;
	color: #85898f;
	overflow: hidden;
}

.footerContent p {
	margin: 7px 0;
}

.footerContent p strong {
	font-size: 14px;
	color: #a5adb8;
}

.footerContent a {
	color: #d08b98;
}

.footerContent .borderBottom {
	width: 270px;
	height: 1px;
	background-color: #191c20;
	border-bottom: 1px solid #40474f;
	margin-top: 5px;
}

.footerContent ul.clock {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.clock li {
	background: url("images/clock.png") left center no-repeat;
	padding-left: 20px;
	margin-top: 7px;
}
/*Social*/
.social {
	font-size: 12px;
	margin-right: 20px;
}

.social>div {
	display: block;
	float: left;
	margin: 18px 5px 0 0;
}

.social ul {
	display: inline-block;
	margin: 15px 0 0 0;
	padding: 0;
	list-style: none;
	float: left;
}

.social ul li {
	float: left;
	margin-right: 5px;
}
.table_menu {
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 14px;
border-collapse: collapse;
border-spacing: 0;
text-align: center;
}
.table_menu a{
text-decoration: none;
color: #778899;	

}
.table_menu a:hover{
	font-style: italic;
	*/text-shadow: 0 1px 1px #FF0000;
	font-weight: bold;
	text-decoration: underline;
}
.table_menu th {
background: #494849 url(http://vkhl-online.ru/forum/images/evid_blue/gradients/tcat_r.gif) repeat-x top left;
color: white;
text-shadow: 0 1px 1px #FF0000;
padding: 10px 15px;
text-align: center;
border: 1px solid #2f3441;
}



.table_menu td {
padding: 10px 20px;
background: #f3f3f3;
border: 1px solid #d8dbde;
}
.table_avatar {
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 14px;
border-collapse: collapse;
border-spacing: 0;
text-align: center;
border: 1px solid #d8dbde;
}
.table_avatar td{
background: #f3f3f3;
border: 1px solid #d8dbde;
border-right: 1px solid #d8dbde;
text-align: center;
color: black;
}
.table_avatar a{
	text-decoration: none;
	color: #B22222;
}
.table_avatar a:hover{
	font-weight: bold;
	text-decoration: underline;
}
select
{
  display: inline-block;
  width: 60px;
  height: 34px;
  line-height: 30px;
  position: relative;
  text-align: center;
}
.ot {
	width: 100px;
}

			.nhl {
float: left;
			
margin-left: 100px;

width: 390px; /* Ширина рисунка */

height: 312px; /* Высота рисунка */

}
.iihf{
	margin-left: 300px;
}
.tcat_one{
	background: #1D9FE2 url(http://vkhl-online.ru/forum/images/evid_blue/gradients/tcat_r.gif) repeat-x top left;
	height: 3px;
	width: 990px;
	margin: 0 auto;
	padding: 10px 10px 1px;
}
.tcat_two{
	background: #1D9FE2 url(http://vkhl-online.ru/forum/images/evid_blue/gradients/tcat_r.gif) repeat-x top left;
	height: 15px;
	width: 990px;
	margin: 0 auto;
	padding: 10px 10px 1px;
}
.c{
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 8px;
	background-color: white;
	height: 60px;
	width: 990px;
	margin: 0 auto;
	padding: 10px 10px 15px;
}
.c_table{
 padding-top: 0px;
 float: left;
 margin-left: 400px;
 text-align: center;
}
.c_table a{
	text-decoration: none;
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 230px;
  transition: all 0.5s;
  cursor: pointer;
  margin-left: 3px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button a{
	text-decoration: none;
	color: white;
}
.button span:after {
  content: '\21D0';
  position: absolute;
  opacity: 0;
  top: 0;
  left: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-left: 25px;
}

.button:hover span:after {
  opacity: 1;
  left: 0;
}







.dv_button{
margin: 0 auto; 
text-align: right;
}

.button1 {
  display: inline-block;
  border-radius: 4px;
  background: #17456c url(http://vkhl-online.ru/forum/wi/ia/tc.gif) repeat-x;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 230px;
  transition: all 0.5s;
  cursor: pointer;
  margin-right: 3px;
}
.button1 a{
	text-decoration: none;
	color: white;
}
.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button1 span:after {
  content: '\21D2';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button1:hover span {
  padding-right: 25px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
}

/*MAIN MENU*/
.button_m {
  display: inline-block;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  width: 117px;
  transition: all 0.1s;
  cursor: pointer;
  margin-left: 2px;
}

.button_m span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.1s;
}
.button_m a{
	text-decoration: none;
	color: white;
}
.button_m span:after {
  
  position: absolute;
  opacity: 0;
  top: 0;
  left: -17px;
  transition: 0.1s;
}

.button_m:hover span {
  padding-left: 5px;
  font-weight: bold;
}

.button_m:hover span:after {
  opacity: 1;
  left: 0;
}

.button_m input {
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: all 0.1s;
  margin-left: 2px;
 
}

.button_m input:after {
   
  position: absolute;
  opacity: 0;
  top: 0;
  left: -17px;
  transition: 0.1s;
}

.button_m:hover input {
  padding-left: 5px;
  font-weight: bold;
  
  
}

.button_m:hover input:after {
  opacity: 1;
  left: 0;
  
}
/* .button_m input{
  display: inline-block;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  width: 117px;
  transition: all 0.5s;
  cursor: pointer;
  margin-left: 2px;
} */