body {
	background: #d3b79a  url(/images/bg.jpg) ;
	font-family: "PT Sans", sans-serif;
	color: #222;
	font-size: 16px;
	font-style: italic;
	line-height: 22px;
}
a {
	color: #d90000;
	text-decoration: none;

	-webkit-transition: color 0.2s ease-out;
	-moz-transition: color 0.2s ease-out;
	-ms-transition: color 0.2s ease-out;
	-o-transition: color 0.2s ease-out;
	transition: color 0.2s ease-out;
}
a:hover {
	color: #b7544e;
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	/*color: #452008;*/
}


.btn {
	color: #FFFFFF;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #422119;
	*background-color: #422119;
	background-image: -moz-linear-gradient(top, #613F36, #422119);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#613F36), to(#422119));
	background-image: -webkit-linear-gradient(top, #613F36, #422119);
	background-image: -o-linear-gradient(top, #613F36, #422119);
	background-image: linear-gradient(to bottom, #613F36, #422119);
	background-repeat: repeat-x;
	border-color: #422119;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#613F36', endColorstr='#422119', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	color: #FFFFFF;
	background-color: #422119;
	*background-color: #003bb3;
}


.wrapper {
	background: #F3E7D7;
	padding: 0 20px;
	width: 940px;
	margin: 0 auto;

	min-height: 600px;
}

#top-panel {
	background-color: #72523D;
	height: 50px;
	margin: 0 -20px;
	padding: 0 20px;
}
#top-panel .icons {
	float: left;
	margin-top: 10px;
}
#top-panel .icons a {
	padding: 4px;
	margin: 0 2px;
	text-align: center;
	display: inline-block;
	border-radius: 20px;
	background-color: rgba(69, 32, 8, .3);
	width: 20px;
	height: 20px;
	opacity: .5;

	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}
#top-panel .icons a:hover {
	opacity: 1;
}
#top-panel .tags {
	float: right;
	font-size: 18px;
	margin-top: 12px;
}
#top-panel .tags a {
	color: #F3E7D7;
	font-weight: bold;
	margin-left: 15px;
}
#top-panel .tags a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
#header {
	height: 200px;
	position: relative;
	z-index: 20;
	background: url(/images/header-bg.jpg) no-repeat center top;
	margin: 0 -20px;
	padding: 0 20px;
}
#header  h1 {
	position: absolute;
	color: #6c4e3a;
	font-size: 30px;
	text-transform: uppercase;
	top: 30px;
	text-shadow: 0 1px 0 #f3e7d7;
}
#header .ovchina {
	height: 163px;
	width: 224px;
	background: url(/images/header-ovchina.png) no-repeat top;
	position: absolute;
	left: 20px;
	bottom: -40px;
}
#header .image {
	position: absolute;
	right: 20px;
	top: 28px;
}
#header .image img {
	border-radius: 10px;
	margin: 0 5px;
	border: 2px solid #72523D;
}


/*== Nav menu top */
#menutop {
	text-transform: uppercase;
	font-weight: bold;
	height: 52px;
	margin-bottom: 20px;
	z-index: 10;

	background: #795640; /* Old browsers */
	background: -moz-linear-gradient(top,  #795640 0%, #6c4d39 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#795640), color-stop(100%,#6c4d39)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #795640 0%,#6c4d39 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#795640', endColorstr='#6c4d39',GradientType=0 ); /* IE6-9 */

	overflow: hidden;
	webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

#menutop a {
	color: #FFFFFF;
	padding: 16px 20px;
	float: left;
	display: inline-block;
	position: relative;
	overflow: hidden;
	font-size: 18px;
}
#menutop a::before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
  top:0;
  left:0;
  background-color: rgba(0, 0, 0, .15);

  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#menutop a:hover {
	text-decoration: none;
	color: #d6c1b1;
}
#menutop a:hover::before {
	height: 52px;
}

#menutop a:hover {
	opacity: 1;

  -moz-transition: opacity 0.4s ease-out;
  -ms-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}
#menutop span {
	position: relative;

}


#column-left {
	float: left;
	width: 200px;
}

#content {
	float: left;
	margin-left: 20px;
	width: 480px;
}

#column-right {
	float: right;
	width: 220px;
}

.box {
	margin-bottom: 20px;
	background-color: #FFF9F0;
	overflow: auto;

	webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
.box-title {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 10px;
	color: #FFF;

	background: #795640; /* Old browsers */
	background: -moz-linear-gradient(top,  #795640 0%, #6c4d39 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#795640), color-stop(100%,#6c4d39)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #795640 0%,#6c4d39 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#795640', endColorstr='#6c4d39',GradientType=0 ); /* IE6-9 */
}
.box-middle {
	padding: 10px;
}

.box.category {
	background: #795640; /* Old browsers */
	background: -moz-linear-gradient(top,  #795640 0%, #6c4d39 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#795640), color-stop(100%,#6c4d39)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #795640 0%,#6c4d39 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #795640 0%,#6c4d39 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#795640', endColorstr='#6c4d39',GradientType=0 ); /* IE6-9 */
}
ul.nav {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.nav li {

	margin: 0;
	position: relative;
	background: none;
}
ul.nav li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 4px;
	height: 4px;
	background-color: #d6c1b1;

	-webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

ul.nav a {
	color: #FFFFFF;
	padding: 4px 0 4px 12px;
	display: block;
	text-decoration: none;
	position: relative;
	font-size: 20px;
}
ul.nav a:hover {
	color: #d6c1b1;
}
ul.list-one {
	margin: 0;
	padding: 0;
}
ul.list-one li {
	margin-left: 20px;
}

.page-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1em;
	margin-bottom: 20px;
}


.partner .img-caption {position:relative;display:block;text-align:center;width:168px;margin:0 auto 10px;}
.partner .img-caption span {position:absolute;left:0;bottom:0;background-color:rgba(0,0,0,.4);color:#fff;width:100%;padding:4px 0;font-size:15px; font-weight:700; line-height:26px; text-transform:uppercase;}


/* footer */
#footer {
	margin: 0 -20px;
	margin-top: 40px;
}

#footer .inner {
	padding: 20px;
	background-color: #72523D;
	font-size: 14px;
	color: #ab9481;
}
#footer a {
	color: #ab9481;
}

/* =Navigation
-------------------------------------------------------------- */
.navigation {width: 100%; overflow: hidden; font-size: 13px; line-height: 20px; margin: 6px 0 6px; padding: 1px 0 20px; text-align:center}
.navigation a,
.navigation span {display: inline-block; padding: 2px 4px; height: 20px; text-align: center; margin: 0 1px; text-decoration: none; border: 1px solid #E1E1E1; border-radius: 2px;}
.navigation a {}
.navigation a:hover {border: 1px solid #CCC;}
.navigation span.current {border: 1px solid #E9E9E9; border-right: 1px solid #CCC; border-bottom: 1px solid #CCC; background: #F0F0F0; color: #444;}
.navigation span.extend {	border: 0; margin: 0; padding-left: 2px;}

.tovitem {display: inline-block; width: 140px; margin: 2px; padding: 5px; text-align: center; vertical-align: top; border: 1px dotted #000;}
