/*reset*/
*
{
	margin: 0px;
	padding: 0px;
	border: 0px;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*end reset*/
.clear {
	clear: both;
}
/*Header*/
.container {
	width: 1000px;
	margin: 0 auto;
}
.container h1 {
	font-family: 'Questrial', sans-serif;
	color: #434343;
	text-align: center;
	font-size: 30px;
	font-weight: normal;
	padding: 30px 0px 10px 0px;
}
.container h2 {
	font-family: 'Questrial', sans-serif;
	color: #6b6b6b;
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	padding-bottom: 40px;
}
.container h1 span {
	color: #800080;
	margin: 0 12px; 
}
.logo a {
	background: url(../Images/logo.png) no-repeat;
	width: 260px;
	height: 66px;
	float: left;
	display: block;
	margin-top: 5px;
}
.menu {
	float: right;
	min-width: 470px;
	margin-bottom: -3px;
}
.menu ul li {
	list-style-type: none; 
	position:relative;
	display:inline-block;
}
.menu ul li a {
	padding: 32px 15px;
	display: inline-block;
	text-decoration: underline;
	float: left;
	font-family: 'PT Sans', sans-serif;
	color: #2f2f2f;
	font-size: 14px;
	text-decoration: none;
	background: url(../Images/menu-hover.png) no-repeat left bottom;
}
.menu ul li a:hover {
	background: url(../Images/menu-hover.png) no-repeat left top;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
.menu ul li .active {
	color: #6c006c;
	background: #f2f2f2;
	border-top: 3px solid #800080;
	line-height: 10px;
	padding-bottom: 34px;
}
.menu ul li .active:hover {
	background-image: none;
	background: #f2f2f2;
}
.underHeader {
	height: 2px;
	background: #f2f2f2;
}
/*dropdown*/
.menu ul .subMenu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu ul .subMenu {
	margin: 20px 0 0 0;
	_margin: 0; /*Только для IE6*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 68px;
	left: 0px;
	z-index: 9999;    
	-webkit-transition: margin .2s ease-in-out;
	-moz-transition: margin .2s ease-in-out;
	-ms-transition: margin .2s ease-in-out;
	-o-transition: margin .2s ease-in-out;
	transition: margin .2s ease-in-out;
}
.menu ul li:hover > .subMenu {
	opacity: 1;
	visibility: visible;
	margin: 0;
	border-top:10px solid rgba(255,255,255,0.0);
	/*margin-top:10px;*/
}
.menu ul .subMenu ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*Только для IE6*/
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	box-shadow: -1px 0 0 rgba(255,255,255,.3);
}

.menu ul .subMenu li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*Только для IE6*/
	text-align:left;
	background:#f7f7f7;
	border-left: 1px solid #c0c0c0;
	border-right: 1px solid #c0c0c0;
	padding: 0px 9px;
}
.menu ul .subMenu li a {
	padding: 12px 5px;
}
.menu ul .subMenu li:last-child {   
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom: 1px solid #c0c0c0;
}

.menu ul .subMenu a {    
	
	/*width: 130px;*/
	_height: 10px; /*Только для IE6*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	border:none;
	font-size:14px;
	border-bottom: 1px solid #c0c0c0;
}
.menu ul .subMenu li:last-child a {
	border-bottom: none;
}

.menu ul .subMenu a:hover {
	/*background: #f7f7f7 url(../assets/sep.png) no-repeat center bottom;*/
	background:transparent;
}
.menu ul li:hover > a {
	color: #35a4f2;
	background: #f7f7f7;
}
.menu ul .subMenu li:hover, .menu ul .subMenu li:hover a {
	background: #ededed;
}

.menu ul .subMenu li:last-child a:hover {
	/*background: #f7f7f7;*/
}
.menu ul .subMenu li:first-child > a {
	-moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}
.menu ul .subMenu li:first-child {
	border-top:3px solid #800080;
}
.menu ul .subMenu li:first-child > a:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -11px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #800080;
}
.menu ul .subMenu ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}

.menu ul .subMenu li:first-child a:hover:after {
	border-bottom-color: #800080; 
}

.menu ul .subMenu ul li:first-child a:hover:after {
	border-right-color: #0299d3; 
	border-bottom-color: transparent; 	
}

.menu ul .subMenu li:last-child > a {
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}
/*end*/
.headerSection {
	background: #f2f2f2;
}
.cornerSection {
	background: url(../Images/corner-section.png) no-repeat center top;
	height: 34px;
}
/*end Header*/
/*Second Section*/
.leftProduct, .rightProduct {
	background: url(../Images/product-panel.png) no-repeat left top;
}
.leftProduct {
	float: left;
	min-width: 450px;
}
.rightProduct {
	float: right;
	min-width: 450px;
}
.leftProduct .logoProduct {
	float: left;
	width: 69px;
	height: 62px;
	margin-left: 19px;
    margin-top: 24px;
	background: url(../Images/mb-logo.png) no-repeat left top;
}
.rightProduct .logoProduct {
	float: left;
	width: 74px;
	height: 62px;
	margin-left: 19px;
    margin-top: 24px;
	background: url(../Images/mm-logo.png) no-repeat left top;
}
.titleProduct {
	font-family: 'Questrial', sans-serif;
	color: #494949;
	font-size: 15px;
	float: left;
	margin-left: 41px;
    margin-top: 40px;
}
.rightProduct .titleProduct {
	margin-left: 35px;
}
.titleProduct span {
	color: #800080;
	font-size: 18px;
}
.descriptionProduct {
	font-size: 14px;
	color: #545454;
	font-family: 'Questrial', sans-serif;
	margin-left: 129px;
    width: 260px;
    margin-top: 5px;
}
.leftProduct a {
	font-size: 14px;
	color: #800080;
	font-family: 'Questrial', sans-serif;
	text-decoration: underline;
	margin-top: 15px;
	display: inline-block;
}
.leftProduct a:hover {
	text-decoration: none;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
.integral {

}
.rightProduct a {
	font-size: 14px;
	color: #800080;
	font-family: 'Questrial', sans-serif;
	text-decoration: underline;
	margin-top: 15px;
	display: inline-block;
}
.rightProduct a:hover {
	text-decoration: none;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
.integral {
	background: url(../Images/integral.png) no-repeat center center;
}
/*end Second Section*/
/*Third Section*/
.thirdSection {
	background: #f2f2f2;
	margin-top: 40px;
}
.topLevel .leftPart {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	width: 210px;
	display: inline-block;
}
.topLevel .leftPart span {
	color: #800080;
}
.topLevel .rightPart {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	float: right;
	width: 210px;
	display: inline-block;
}
.topLevel .rightPart span {
	color: #800080;
}
.bottomLevel .leftPart {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	width: 210px;
	display: inline-block;
}
.bottomLevel .rightPart {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	float: right;
	width: 210px;
	display: inline-block;
}
.databaseLinks {
	background: url(../Images/databases-links.png) no-repeat center 185px;
}
.bottomLevel {
	margin-top: 150px;
	padding-bottom: 30px;
}
/*end Third Section*/
/*4 Section*/
.leftColumn {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	float: left;
	width: 385px;
	text-align: right;
	line-height: 20px;
}
.leftColumn div span, .rightColumn div span {
	color: #800080;
	font-size: 20px;
	font-family: 'Questrial', sans-serif;
	display: block;
	text-align: right;
}
.rightColumn div span {
	text-align: left;
}
.rightColumn {
	font-size: 16px;
	color: #414141;
	font-family: 'Questrial', sans-serif;
	float: right;
	width: 385px;
	line-height: 20px;
}
.gears {
	/*background: url(../Images/gears.png) no-repeat center 145px;*/
	margin-bottom: 30px;
}
.animateGears {
	margin-left: 15px;
	width: 200px;
	margin-top: 20px;
}
.bottomText {
	margin-top: 45px;
}
/*end 4 Section*/
.greyLine {
	height: 2px;
	background: #cbcbcb;
}
/*Footer*/
.footer {
	background: #ebebeb;
	margin-top: 60px;
	padding: 30px 0;
}
.firstFootCol {
	float: left;
	width: 210px;
	margin-right: 10px;
}
.secondFootCol {
	float: left;
	width: 320px;
	margin-right: 20px;
}
.thirdFootCol {
	float: left;
	width: 200px;
	margin-right: 20px;
}
.fourthFootCol {
	float: right;
	width: 200px;
}
.footerMenuList a {
	font-size: 14px;
	color: #6b6b6b;
	text-decoration: none;
	font-family: 'Questrial', sans-serif;
}
.columnTitle {
	font-size: 16px;
	color: #800080;
	text-decoration: none;
	font-family: 'Questrial', sans-serif;
}
.whiteLine {
	height: 1px;
	background: #fff;
	margin: 15px 0;
}
.footerMenuList li {
	list-style-type: none; 
}
.footerMenuList li a {
	background: url(../Images/footer-arrow.png) no-repeat left 7px;
	padding: 4px 5px 4px 10px;
	display: inline-block;
}
.footerMenuList li a:hover {
	background: url(../Images/footer-arrow.png) no-repeat 2px 7px;
	color: #800080;
}
.spaceMenu {
	margin-bottom: 20px;
}
.copy {
	background: #f2f2f2;
	padding: 15px 0;
}
.copy h3 {
	font-size: 14px;
	color: #6b6b6b;
	text-align: center;
	font-family: 'Questrial', sans-serif;
	font-weight: normal;
}
.copy h3 span {
	color: #800080;
}
.copyDescription {
	font-size: 12px;
	color: #6b6b6b;
	text-align: center;
	font-family: 'Questrial', sans-serif;
	margin-top: 15px;
}

/*carousel*/
.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}
.bx-wrapper img {
	max-width: 100%;
	display: block;
}
.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(../Images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}
.bx-wrapper .bx-prev {
	left: -65px;
	background: url(../Images/arrow-l.png) no-repeat;
}
.bx-wrapper .bx-next {
	right: -65px;
	background: url(../Images/arrow-r.png) no-repeat;
}
.bx-wrapper .bx-prev:hover {
	
}
.bx-wrapper .bx-next:hover {
	
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 40%;
	margin-top: -16px;
	outline: 0;
	width: 48px;
	height: 48px;
	text-indent: -9999px;
	z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

.bx-wrapper .bx-viewport .slider3 div a {
    display: table-cell;
    height: 89px;
    vertical-align: middle;
}

/*Inner pages*/
.wrapperCont {
    width: 1000px;
    margin: 20px auto;
    font-family: arial,helvetica,sans-serif;
    font-size: 10pt;
}
.wrapperCont ul li {
    margin-left: 20px;
    list-style: disc;
}
.wrapperCont ul li ul li {
    list-style: circle;
}
.wrapperCont ul li ul li ul li {
    list-style: square;
}
.wrapperCont h1 {
    font-family: "Questrial",sans-serif;
    font-size: 28px;
    text-align: center;
    font-weight: normal;
    color: #920092;
    margin-bottom: 20px;
    margin-top: 20px;
}
.wrapperCont h1 span {
    color: #434343;
}
.wrapperCont h2 {
    font-family: "Questrial",sans-serif;
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    color: #920092;
    margin-bottom: 10px;
    margin-top: 20px;
}
.wrapperCont h2 span {
	color: #434343;
}
.wrapperCont h3 {
    font-family: "Questrial",sans-serif;
    font-size: 21px;
    text-align: left;
    font-weight: normal;
    color: #920092;
    margin-bottom: 10px;
}
.wrapperCont h4, h5, h6 {
    font-family: "Questrial",sans-serif;
    font-size: 18px;
    text-align: left;
    font-weight: normal;
    color: #920092;
    margin-bottom: 10px;
    margin-top: 10px;
}
.wrapperCont h6 {
    margin-left: 25px;
}
.wrapperCont .charactTable {
	border: none;
	font-family: "Questrial",sans-serif;
	margin-bottom: 20px;
	margin-top: 20px;
	border: 1px solid #f2f2f2;
}
.wrapperCont .charactTable tr td {
	padding: 0px;
}
.wrapperCont .charactTable tr td:nth-child(1) {
	width: 16px;
	padding: 0 4px;
}
.wrapperCont .charactTable tr td:nth-child(2) {
	font-family: Arial, sans-serif;
	color: #555;
	width: 90px;
}
.wrapperCont .charactTable tr:nth-child(2n) {
	background: #fafafa;
}
.wrapperCont .standsTable {
	border: 1px solid #f2f2f2;
	margin-bottom: 60px;
	margin-top: 40px;
	line-height: 17px;
	color: #555;
	font-family: arial;
	width: 100%;
}
.wrapperCont .standsTable a {
	color: #1a7bc0;
	text-decoration: underline;
}
.wrapperCont .standsTable a:hover {
	text-decoration: none;
}
.wrapperCont .standsTable td {
	vertical-align: middle;
	padding: 10px;
}
.line {
    background: #e2e2e2;
    height: 1px;
    width: 40%;
    margin: 0 auto;
}
/**/
.content {
    line-height: 17px;
}
.content a {
	color: #3892d2;
	text-decoration: underline;
}
.content a:hover {
	text-decoration: none;
}
.content h3 a, .content h4 a, .content h5 a {
	color: #920092;
	text-decoration: none;
}
.content li a {
    color: #1a7bc0;
}
.content li a:hover {
    text-decoration: none;
}
.content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.content u {
    color: #666666;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}
.content b {
    margin: 10px 0;
    display: inline-block;
}
.content table {
	border: 1px solid #eee;
	border-collapse: collapse;
}
.content table td {
	border: 1px solid #eee;
	vertical-align: middle;
	padding: 5px;
}
.content table tr:nth-child(2n-1) {
	background: #fafafa;
}
.content table tr:nth-child(1) {
	background: #f5f5f5;
	text-align: center;
}
.contentsBlock {
    border: 1px solid #e5bfe5;
    padding: 20px;
    background: #f2f2f2;
    font-family: arial,helvetica,sans-serif;
    color: #555;
    line-height: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.contentsBlock a {
	color: #3892d2;
	text-decoration: underline;
}
.contentsBlock a:hover {
	text-decoration: none;
}
.contentsBlock h4 {
    font-size: 25px;
    margin-bottom: 15px;
}
.contentsBlock ol li {
    font-family: arial,helvetica,sans-serif;
    font-size: 10pt;
    list-style: decimal;
    margin-left: 0px;
}
.contentsBlock ol {
	counter-reset: item;
}
.contentsBlock ol li {
	display: block;
}
.contentsBlock ol li:before {
	content: counters(item, ".") " "; 
	counter-increment: item;
}
.contentsBlock ol li li {
    margin-left: 17px;
}
/*Inner Menu*/
.menuInnerPage {
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.menuInnerPage ul {
}
.menuInnerPage ul li  {
	list-style: none;
	margin: 0;
}
.menuInnerPage ul li a {
	float: left;
	display: inline-block;
	padding: 8px 20px;
	font-family: "Questrial",sans-serif;
    font-size: 14px;
    background: #f0f0f0;
    color: #3892d2;
    
    text-decoration: none;
    margin-right: 5px;
    border: 1px solid #e0e0e0;
    width: 160px;
    text-align: center;
}
.menuInnerPage ul li a:hover {
	background: #fff;
    color: #3892d2;
    font-weight: bold;
    
    transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
.menuInnerPageCenter ul {
	margin: 0 auto;
	width: 840px;
}
/*end Inner Menu*/
/*Filter Panel*/
.filterBlock {
	margin-bottom: 40px;
	margin-top: 20px;
	background: #f5f5f5;
	padding: 5px;
	border-left: 5px solid #800080;
}
.filterBlock ul li {
	list-style: none;
	float: left;
	font-family: "Questrial",sans-serif;
    font-size: 15px;
    line-height: 31px;
    color: #333;
}
.filterBlock ul li input, .filterBlock ul li select {
	border: 1px solid #cbcbcb;
	padding: 5px;
}
.filterBlock ul li input:focus, .filterBlock ul li select:focus {
	border: 1px solid #800080;
}
.filterBlock ul li button {
	border: 1px solid #adadad;
	background: #e6e6e6;
	padding: 5px 15px;
	text-transform: uppercase;
	font-size: 12px;
	cursor: pointer;
	color: #333;
}
.filterBlock ul li button:hover {
	border: 1px solid #5f095f;
	background: #800080;
	color: #fff;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
/*end Filter Panel*/
/*Support*/
.descriptInBottom {
	color: #555;
	line-height: 17px;
}
#map_canvas {
	height:360px;
}
.beforeMap {
	height: 3px;
	border-top: 1px solid #e7e7e7;
}
.afterMap {
	border-bottom: 1px solid #e7e7e7;
	height: 3px;
	position: relative;
}
.adress {
	position: absolute;
	top:-265px;
	left: 86px;
	background: rgba(255,255,255,0.8);
	padding: 15px 30;
	border-left: 3px solid #800080;
	font-family: 'Open Sans', sans-serif;
	color: #404040;
	font-size: 16px;
	width: 210px;
	height: 145px;
	line-height: 20px;
}
.adress span {
	color: #3892d2;
	font-size: 19px;
	text-transform: uppercase;
}
.phoneBlock {
	padding: 15px 37px 23px 155px;
	color: #404040;
	font-size: 16px;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid #ededed;
	font-family: "PT Sans", sans-serif;
	background: url(../Images/phone.png) no-repeat 43px center;
}
.phoneBlock span {
	color: #800080;
}
.mailBlock {
	padding: 15px 37px 23px 155px;
	color: #404040;
	font-size: 16px;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid #ededed;
	font-family: "PT Sans", sans-serif;
	line-height: 10px;
	background: url(../Images/mail.png) no-repeat 43px center;
}
.mailBlock span {
	color: #800080;
}
.mailBlock a {
	color: #3892d2;
	text-decoration: underline;
	line-height: 7px;
}
.mailBlock a:hover {
	text-decoration: none;
}