@charset 'UTF-8';
 /**
  * Styles normilization 
  *
  * @section normilization
  * @author Dmitry Zelenetskiy
  * @version 0.3
  * @license Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
  */
/**
 * box-sizing not compatible with bitrix 
 */  
* {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align: baseline;
  -webkit-touch-callout:none;
  /*
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  */
}
html {
  overflow-y:scroll;
  -moz-text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
  -ms-text-size-adjust:100%;
  text-size-adjust:100%;
  /* Use a 12px base font size with a 18px line height */
  /*font-size:0.75em;*/ /* 16px x .75 = 12px */
  font-size: 0.8125em;
  line-height: 1.5;  /* 12px x 1.5 = 18px */
}
html,
body {
  height:100%;
}

/**
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section
{
  display: block;
}

/**
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  zoom: 1; 
  *display: inline; /* IE < 8: fake inline-block */
}

/**
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}

/**
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0;
}

/**
 * Addresses styling not present in IE7/8/9, S5, Chrome
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
 */
b,
strong {
  font-weight: bold;
}

/**
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}

/**
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Addresses margins set differently in IE6/7
 */
p {
    margin:0 0 1em;
}
p + p,
pre {
  margin: 1em 0;
}

/**
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/**
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 * 3. don’t split images over pages, duh very little browser support for this
 * 4. Картинки. При отсутствующем аттрибуте title всплывает подсказка, текст которой берется у alt (ie6, ie7)
 *    delete title, where alt="..."  Если подключена програмика - удалить
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  page-break-inside: avoid; /* 3 */
  behavior: expression( runtimeStyle.scrollbarFaceColor = '#fff', (alt&&!title) ? title = '' : '' );
}

/**
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

/**
 * Corrects alignment displayed oddly in IE6/7
 */
legend {
  *margin-left: -7px;
}

/**
 * Improves appearance and consistency in all browsers
 * Define consistent vertical alignment display in all browsers (formilize)
 */
button,
input,
select,
textarea {
  vertical-align: baseline;
  *vertical-align: middle;
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer; /* 1 */
  -webkit-appearance: button; /* 2 */
  *overflow: visible;  /* 3 */
}

/**
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/**
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE7
 *    Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  *height: 13px; /* 2 */
  *width: 13px; /* 2 */
}

/**
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/**
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/**
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table,
tr,
th,
td {
  vertical-align: top;
}
a,
a span {
    *cursor: pointer;
}
::-moz-selection {
  text-shadow:none;
}
::selection {
  text-shadow:none;
}

/**
 * plush “et cetera”
 * Mac: try for a combined ‘e’ and ‘t’ style,
 * Windows: try match Palatino’s style. “Constantia” is a Vista font
 */
abbr[title="et cetera"] {
  font-family: "Hoefler Text", Palatino, Constantia, "Palatino Linotype", cursive;
  font-style: italic;
  font-size: 1.2em;
  line-height: 0;
}

hr {
  display: block;
  border: 0;
  border-top: 1px solid #ebeef1;
  height: 1px;
  padding: 0;
  clear: both;
  float: none;
  width: 100%;
  margin: 0.74em 0;
  _margin:-8px auto 11px;
}
/**
 * Responsive images. Remember to not set width and height for images and objects
 */
/*img, object {
  max-width: 100%;
}*/
/**
 * General vestapark template styles
 */
body {
    background:#f3f6fb;
    margin: 0 !important;
}
ul.nav,
ol.nav {
    background: none !important;
    list-style:none;
    margin:0;
    padding:0;
}
ul.nav li,
ol.nav li {
    margin-bottom:0;
}
.nav {
    list-style:none;
    *list-style-image: none !important;
    margin:0;
    padding:0;
}
.nav ul,
.nav li {
    background: none !important;
    *list-style-image:none !important;
    list-style:none;
    margin:0;
    padding:0;
}
button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {border:0;} 
a {
    color: #007c7c;
    text-decoration: none;
}
a:hover {
    color:#009d9d;
    text-decoration: underline;
}
.layout_bg {
    background: url(images/gray_line.jpg) repeat-y;
}
.layout {
    width: 1050px;
    min-width: 1050px;
    margin: 0 auto;
    position: relative;
}
.layout_2col .column_first {
    width: 40%;
}
.layout_2col .column_last {
    width: 60%;
}
.layout_2col .column_first .column__inner {
    padding-right: 70px;
}
.layout_2col .column_last .column__inner {
    padding-top: 112px;
    padding-right: 10px;	
    
}
.layout_2col {
    background: url(images/emblem.png) no-repeat right 27px;
}
.layout_2col .phone {
    padding-right: 20px;
}
.layout_row .column {
    display: block;
}
.wrap {
    min-height: 100%;
	background: url(images/head.png) no-repeat;
	background-color: white;
}
.columns {
    overflow:hidden;
	padding-bottom: 205px;
	padding-top: 27px;
}
.footer {
    position: relative;
	margin-top: -200px; /* negative value of footer height */
	height: 185px;
	clear:both;
	border-top:2px solid #007373;
	
}
.layout_footer {
	background: url(images/footer.png) no-repeat left top;
}
.footer__inner {
    padding: 30px 30px 0 60px;
}
.logo {
    height: 144px;
    width: 280px;
    background: url(images/logo-bg.png) no-repeat top right;
    position: relative;
    display: inline-block;
    *dispaly: inline;
    zoom: 1;
    overflow: visible;
    margin-top: 30px;
}
.logo .r1 {
    width: 68px;
    height: 68px;
    background: url(images/logo-r1.png) no-repeat left top;
    position: absolute;
    left:22px;
    top:39px;
}
.logo .r2 {
    width: 86px;
    height: 86px;
    background: url(images/logo-r2.png) no-repeat left top;
    position: absolute;
    left:14px;
    top:30px;
}
.logo .r3 {
    width: 110px;
    height: 110px;
    background: url(images/logo-r3.png) no-repeat left top;
    position: absolute;
    left:2px;
    top:19px;
}
.logo .r4 {
    width: 135px;
    height: 135px;
    background: url(images/logo-r4.png) no-repeat left top;
    position: absolute;
    left:-13px;
    top:5px;
}

.certificate-list{
text-align:center;
}

.moto{
position:absolute;
margin-top:150px;
margin-left:-20px;
}

.phone {
    padding-right:55px;
	padding-top: 15px;
	font-size:24px;
}

.main_menu{
width:310px;
margin-left: 320px;
margin-top:20px;
}

.menu-sitemap-tree {
    padding: 0 0 0 0;
}
.menu-sitemap-tree .menu-item {
    text-align: left;
    margin-bottom: 10px;
}
.menu-sitemap-tree a {
    font-size:17px;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-left: 30%;
}
.menu-sitemap-tree a:hover {
    text-decoration: underline;
}
.menu-top .menu-item {
    padding-left: 80px;
}
.menu-sitemap-tree .close .sub {
    display: none;
}
.menu-top .menu-item__title {
    color: #006969;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 15px;
    line-height: 1;
}
.menu-top .menu-item__title a {
    color: inherit;
}
.menu-top .menu-item__text {
}
.menu-sitemap-tree .sub {
    padding-left: 40px;
}
.menu-sitemap-tree .sub .menu-item {
    display: block;
    width: auto;
    margin-bottom: 0;
    white-space: nowrap;
}
.menu-sitemap-tree .sub a {
    font-size: 13px;
    margin-left: 20px;
}
a.details {
    font-style: italic;
}
.search-form {
    background: url(images/search.png) no-repeat left top;
    height: 52px;
	width:281px;
    position: relative;
}
.search-form__input {
    position: absolute;
    left: 13px;
    top: 17px;
    font-size: 16px;
    width: 240px;
    border: 0;
}
.search-form__button {
    background: url(images/lupa_icon.jpg) no-repeat left top;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 9;
    display: block;
    top: 21px;
    border: 0;
    right: 30px;
}

.feedbackForm{
text-align:right;
font-size:17px;
margin-right: 55px;

}

.slider-wrapper {
    margin-top: 15px;
    position: relative;
}
.slider-wrapper .caroufredsel_wrapper {
    /*margin: 0 auto !important;*/
}
.slider__next {
    position: absolute;
    display: block;
    background: url(images/next.png) no-repeat left top;
    width:59px;
    height: 59px;
    right:5px;
    top:145px;
    z-index: 99;
}
.slider__prev {
    position: absolute;
    display: block;
    background: url(images/prev.png) no-repeat left top;
    width:59px;
    height: 59px;
    top:145px;
    left: 5px;
    z-index: 99;
}
.slider_border{
    position: absolute;
    display: block;
    background: url(images/border.png) no-repeat left top;
    width:1032px;
    height: 455px;
    top:-20px;
    left:9px;
    z-index: 90;
}
.slider .pagination {
    list-style:none;
    background: none !important;
    margin: 0;
    padding: 0;
}
.slider .pagination,
.slider__pagination {
    position: absolute;
    bottom: 10px;
    left: 100px;
    z-index: 99;
}
.slider .pagination li,
.slider__pagination a {
    margin: 0 5px 0 0;
    display: inline-block;
    *display: inline;
    zoom: 1;
    background: url(images/pagination.png) no-repeat center center;
    width: 29px;
    height: 29px;
}
.slider .pagination a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-indent: 1000px;
}
.slider .pagination li.current,
.slider__pagination a.selected {
    cursor: default;
    background: url(images/pagination-selected.png) no-repeat center center;
}
.slider__pagination a span {
    display: none;
}
.slider__title {
    position: absolute;
    top:0;
    left: 61px;
    width: 290px;
    height: 90px;
    font-weight: 700;
    color: #fff;
    font-size: 48px;
    background: url(images/black-bg.png);
    z-index: 99;
    text-align: center;
}
.slider .slider-item {
    /*display: block;
    float: left;
    width: 854px;
    height: 450px;
    position: relative;*/
}

.top_menu_pictures{
text-align:center;
margin-top:20px;
}
.top_menu_pictures td{
padding:15px;
padding-bottom:5px;
padding-top:0px;
white-space: nowrap;
}

.top_menu_pictures table{
margin-left: auto;
margin-right: auto;
}

.bar_menu{
position: relative;
display:block;
text-align:center;
margin-top:20px;
}


.bar_menu table {
margin-left: auto;
margin-right: auto;
}

.index-news-list {
    background: url(images/news-bg.png) repeat-y left top;
    width: 952px;
    margin:0 auto;
	margin-top:50px;
    min-height: 205px;
}
.index-news-list .inner {
    padding: 14px 20px 30px 0;
}
.index-news-list__title {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    padding-left: 30px;
    padding-bottom: 25px;
}
.index-news-list .news-item {
    font-size: 12px;
}
.index-news-list .news-item a {
    color:#fff;
    text-decoration: underline;
}

.index-news-list .news-item__inner {
    padding-left: 20px;
    padding-right: 15px;
}
.index-news-list .news-item__date {
    font-size: 10px;
    color: #fff;
    background: #023e3e;
    display: inline-block;
    *display: inline;
    zoom:1;
    padding: 3px;
    margin-bottom: 10px;
}
.layout_row .column_last .column__inner{
    width: 880px;
    padding: 30px 30px 0;
    margin:0 auto;
    color:#444;
}
.certificate-list__item {
    display: inline-block;
    *display: inline;
    zoom: 1;
}


.feedback-grid__item {
    display: inline-block;
    *display: inline;
    zoom: 1;
    padding: 3% 1% 1%;
    margin: 1%;
    width: 29%;
    text-align: center;
    background: #edf2eb;
    min-height: 250px;
    transition:background-color 0.2s ease-in-out 0s;
    -moz-transition:background-color 0.2s ease-in-out 0s;
    -webkit-transition:background-color 0.2s ease-in-out 0s;
    -ms-transition:background-color 0.2s ease-in-out 0s;
    -o-transition:background-color 0.2s ease-in-out 0s;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
}
.feedback-grid__item_height {
    min-height: inherit;
}
.feedback-grid__item_section {
    min-height: 170px;
}
.feedback-grid__item_ext {
    width: 62%
}
.feedback-grid__item_ext2 {
    width: 92%
}
.feedback-grid__item:hover {
    background:#c4d7bc;
}
.feedback-grid__link img {
    border: 1px solid transparent;
}
.feedback-grid__link:hover img {
    border:1px solid #009D9D;
}
.feedback-grid__name {
    height: 50px;
    line-height: 1;
    vertical-align: middle;
    height: 100%;
    display: inline-block;
    *display: inline;
    zoom: 1;
}
.partner-list__item .partner-col {
    padding-top: 20px;
    padding-bottom: 10px;
}
.partner-list__item .partner-logo {
    width: 170px;
}
.partner-list__item {
    border-bottom: 1px solid #edf2eb;
}
.sub-menu__item {
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 3;
}
.sub-menu__item a {
    color: #DDDDDD;
    font-size: 14px;
    margin-left: 25px;
}
.sub-menu__item .selected {
    text-decoration: none;
}
.sub-menu {
    border: 1px solid #fff;
}
.sub-menu_gray {
    background: #afafaf;
    box-shadow: inset 0 0 5px 3px #7d7d7d;
    -moz-box-shadow: inset 0 0 5px 3px #7d7d7d;
    -webkit-box-shadow: inset 0 0 5px 3px #7d7d7d;
    -o-box-shadow: inset 0 0 5px 3px #7d7d7d;
}
.sub-menu_gray .sub-menu__item a {
    color: #EEEEEE;
}
.sub-menu_gray .sub-menu__item a:hover {
    color: #fff;
}
.sub-menu_gray .sub-menu__item .selected {
    color: #D9D9D9;
}
.sub-menu_red {
    background: #e70d01;
    box-shadow: inset 0 0 5px 3px #940f00;
    -moz-box-shadow: inset 0 0 5px 3px #940f00;
    -webkit-box-shadow: inset 0 0 5px 3px #940f00;
    -o-box-shadow: inset 0 0 5px 3px #940f00;
}
.sub-menu_red .sub-menu__item .selected {
    color: #F16256;
}
.sub-menu_green {
    background:#71e82a;
    box-shadow: inset 0 0 5px 3px #59cc15;
    -moz-box-shadow: inset 0 0 5px 3px #59cc15;
    -webkit-box-shadow: inset 0 0 5px 3px #59cc15;
    -o-box-shadow: inset 0 0 5px 3px #59cc15;
}
.sub-menu_green .sub-menu__item .selected {
    color: #DDFBC5;
}
.sub-menu_green .sub-menu__item a {
    color: #eee;
}
.sub-menu_green .sub-menu__item a:hover {
    color: #fff;
}
.sub__title {
    font-family: Trebuchet MS,Tahoma,Arial;
    font-size: 28px;
}
.sub__title_gray {
    color: #989FA8;
}
.sub__title_red {
    color: #E53735;
}
.sub__title_green {
    color:#859F06;
}
.category-menu {
    text-align: left;
    color: #007C7C;
    margin-left: 40px !important;
}
.category-menu,
.category-menu li {
    list-style-type: disc !important;
}
.category-menu > li {
    list-style-type: none !important;
}
.category-menu .root-item,
.category-menu .root-item-selected {
    text-transform: uppercase;
    font-size: 20px;

}

li.item-selected  a{
font-size:14px !important; font-weight:bold !important; ;
}

.category-menu ul {
    margin-left: 5px;
    margin-bottom: 20px;
}
.category-menu a {
    color:#989FA8;
}
.category-menu a:hover {
    color:#A9AFB9;
}
.category-menu ul a {
    text-decoration: underline;
}

li.category-menu__item_1 {    
    padding-left: 45px;
}
li.category-menu__item_1 a {
    color:#007C7C;
}
li.category-menu__item_1 a:hover {
    color:#009d9d;
}
li.category-menu__item_1 span {
    color:#007C7C;
}
li.category-menu__item_1 span:hover {
    color:#009d9d;
}

li.category-menu__item_2 {
    background: url(images/1.png) no-repeat left top !important;
    padding-left: 45px;
}
li.category-menu__item_2 a {
    color:#E53735;
}
li.category-menu__item_2 a:hover {
    color:#F64846;
}
li.category-menu__item_2 span {
    color:#E53735;
}
li.category-menu__item_2 span:hover {
    color:#F64846;
}
li.category-menu__item_3 {
    background: url(images/2.png) no-repeat left top !important;
    padding-left: 45px;
}
li.category-menu__item_4 {
    background: url(images/3.png) no-repeat left top !important;
    padding-left: 45px;
}
li.category-menu__item_4 a {
    color:#859F06;
}
li.category-menu__item_4 a:hover {
    color:#C6DF17;
}
li.category-menu__item_4 span {
    color:#859F06;
}
li.category-menu__item_4 span:hover {
    color:#C6DF17;
}
li.category-menu__item_3 span {
    color:#989FA8;
}
li.category-menu__item_3 span:hover {
    color:#A9AFB9;
}
.menu-download {

}
.menu-download__item {
    position: relative;
    color: #fff;
    height: 35px;
    line-height:3.5;
    width: 24.6%;
    margin:0 0.2%;
}
.menu-download__item-caption-wrapper {
    display: inline-block;
    *display: inline;
    zoom:1;
    width: 100%;
    height: 100%;
}
.menu-download__item-caption {
    line-height: 1;
    display: inline-block;
    *display: inline;
    zoom:1;
    width: 100%;
    height: 100%;
    color: inherit;
}
.menu-download__item-caption:hover {
    text-decoration: inherit;
    color: inherit;
}
.menu-download__sub {
    display: none;
    width: 100%;
}
.menu-download__sub_1,
.menu-download__item_1 {
    background:#71e82a;
    box-shadow: inset 0 0 5px 3px #59cc15;
    -moz-box-shadow: inset 0 0 5px 3px #59cc15;
    -webkit-box-shadow: inset 0 0 5px 3px #59cc15;
    -o-box-shadow: inset 0 0 5px 3px #59cc15;
}
.menu-download__sub_2,
.menu-download__item_2 {
    background: #e70d01;
    box-shadow: inset 0 0 5px 3px #940f00;
    -moz-box-shadow: inset 0 0 5px 3px #940f00;
    -webkit-box-shadow: inset 0 0 5px 3px #940f00;
    -o-box-shadow: inset 0 0 5px 3px #940f00;
}
.menu-download__sub_3,
.menu-download__item_3 {
    background: #1643be;
    box-shadow: inset 0 0 5px 3px #1c3d85;
    -moz-box-shadow: inset 0 0 5px 3px #1c3d85;
    -webkit-box-shadow: inset 0 0 5px 3px #1c3d85;
    -o-box-shadow: inset 0 0 5px 3px #1c3d85;
}
.menu-download__sub_4,
.menu-download__item_4 {
    background: #0cb45c;
    box-shadow: inset 0 0 5px 3px #158f4d;
    -moz-box-shadow: inset 0 0 5px 3px #158f4d;
    -webkit-box-shadow: inset 0 0 5px 3px #158f4d;
    -o-box-shadow: inset 0 0 5px 3px #158f4d;
    line-height: 2.5;
}
.menu-download__sub {
    position: absolute;
    top: 35px;
    left:0;
    z-index: 999;
    line-height: 2;
}
.menu-download__sub-item {
    display: inline-block;
    *display: inline;
    zoom:1;
    width: 100%;
    color:#fff;
    border-top: 1px dotted #fff;
}
.menu-download__sub-item:hover {
    color: inherit;
}
.breadcrumb-navigation li {
    display: inline-block;
    *display: inline;
    zoom: 1;
}
.feedback-form {
    background: #EDF2EB;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 10px;
    /*width: 50%;*/
    transition: background-color 0.2s ease-in-out 0s;
    -moz-transition: background-color 0.2s ease-in-out 0s;
    -webkit-transition: background-color 0.2s ease-in-out 0s;
    -o-transition: background-color 0.2s ease-in-out 0s;
    -ms-transition: background-color 0.2s ease-in-out 0s;
}
.feedback-form:hover {
    background:#C4D7BC;
}
.feedback-form__table {
    width: 100%;
    font-size: 14px;
    margin: 10px 0;
}
.feedback-form__table td {
    padding: 5px 0;
}
.feedback-form__table .inputtext {
    width: 100%;
    height: 30px;
    border-top: 1px solid #0E7979;
    border-right: 1px solid #0E7979;
    border-left: 1px solid #189c9c;
    border-bottom: 1px solid #189c9c;
    box-shadow:0 5px 10px 0 #EDF2EB inset;
    font-size: 16px;
}
.feedback-form__table .inputtext:focus {
    outline: 2px solid #fff;
}
.submit-btn {
    padding: 5px;
    color:#fff;
    border-radius:5px;
    border:1px solid transparent;
    background: rgb(157,213,58);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzlkZDUzYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ExZDU0ZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzgwYzIxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3Y2JjMGEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(157,213,58,1) 0%, rgba(161,213,79,1) 50%, rgba(128,194,23,1) 51%, rgba(124,188,10,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(157,213,58,1)), color-stop(50%,rgba(161,213,79,1)), color-stop(51%,rgba(128,194,23,1)), color-stop(100%,rgba(124,188,10,1)));
background: -webkit-linear-gradient(top, rgba(157,213,58,1) 0%,rgba(161,213,79,1) 50%,rgba(128,194,23,1) 51%,rgba(124,188,10,1) 100%);
background: -o-linear-gradient(top, rgba(157,213,58,1) 0%,rgba(161,213,79,1) 50%,rgba(128,194,23,1) 51%,rgba(124,188,10,1) 100%);
background: -ms-linear-gradient(top, rgba(157,213,58,1) 0%,rgba(161,213,79,1) 50%,rgba(128,194,23,1) 51%,rgba(124,188,10,1) 100%);
background: linear-gradient(to bottom, rgba(157,213,58,1) 0%,rgba(161,213,79,1) 50%,rgba(128,194,23,1) 51%,rgba(124,188,10,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dd53a', endColorstr='#7cbc0a',GradientType=0 );
}
.submit-btn:focus {
    box-shadow: 0 0 3px 1px #FFE583;
}
.block-info-item {
    width: 426px;
    float:left;
}
.block-info-item__title {
    background: url(images/vitr_pr_hdr.png) no-repeat center top;
    height: 45px;
    text-align: center;
    color:#fff;
    font-size: 15px;
    text-decoration: underline;
    font-weight: 700;
    line-height: 2.8;
}
.block-info-item__title a {
    color:inherit;
}
.block-info-item__body {
    background: url(images/vitr_pr_body.png) no-repeat center top;
    height: 223px;
}
.block-info-item__body .inner {
    padding:17px 22px 17px 14px;
}
.reviews-reply-form,
.forgot-form,
.register-form,
.login-form,
.changepswd-form {
    background: #EDF2EB;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 100%;
    transition: background-color 0.2s ease-in-out 0s;
    -moz-transition: background-color 0.2s ease-in-out 0s;
    -webkit-transition: background-color 0.2s ease-in-out 0s;
    -o-transition: background-color 0.2s ease-in-out 0s;
    -ms-transition: background-color 0.2s ease-in-out 0s;
}
.changepswd-form .fields,
.forgot-form .fields,
.register-form .fields,
.login-form .fields {
    padding: 10px;
}
.changepswd-form:hover,
.forgot-form:hover,
.register-form:hover,
.login-form:hover {
 background:#C4D7BC;
}
.bx-auth-reg input,
.changepswd-form .form-input input,
.forgot-form .form-input input,
.register-form .form-input input,
.login-form .input-field {
    width: 100%;
    height: 30px;
    border-top: 1px solid #0E7979;
    border-right: 1px solid #0E7979;
    border-left: 1px solid #189c9c;
    border-bottom: 1px solid #189c9c;
    box-shadow:0 5px 10px 0 #EDF2EB inset;
    font-size: 16px;
}
.bx-auth-reg input:focus,
.changepswd-form .form-input input:focus,
.forgot-form .form-input input:focus,
.register-form .form-input input:focus,
.login-form .input-field:focus {
    outline: 2px solid #fff;
}
.login-form .field-option {
    margin: 10px 0;
}
#feedback-form {
    position: absolute;
    left: 0;
    top: 19px;
    width: 400px;
}
.lhe-button {
    border-color: #C4D7BC !important;
}
.bxlhe-frame table.bxlhe-frame-table td.bxlhe-editor-buttons {
    background:  #C4D7BC !important;
}

.fancybox-wrap {
}

/*! fancyBox v2.1.0 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('images/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('images/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('images/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -9999px;
	left: -9999px;
	visibility: hidden;
}

/* Overlay helper */

.fancybox-lock {
	/*overflow: hidden;*/
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('images/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	/*overflow-y: scroll;*/
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}
#fancybox-buttons {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-image: url('images/fancybox_buttons.png');
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
}
#fancybox-thumbs {
	position: fixed;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 8050;
}

#fancybox-thumbs.bottom {
	bottom: 2px;
}

#fancybox-thumbs.top {
	top: 2px;
}

#fancybox-thumbs ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

#fancybox-thumbs ul li {
	float: left;
	padding: 1px;
	opacity: 0.5;
}

#fancybox-thumbs ul li.active {
	opacity: 0.75;
	padding: 0;
	border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
	opacity: 1;
}

#fancybox-thumbs ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #222;
	background: #111;
	outline: none;
}

#fancybox-thumbs ul li img {
	display: block;
	position: relative;
	border: 0;
	padding: 0;
}





/**
 * Global styles
 *
 * @author Dmitry Zelenetskiy
 * @section globals
 * @version 0.4
 * @license Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
 
.g-clear {
	clear: both;
}
/**
 * http://nicolasgallagher.com/micro-clearfix-hack/
 */
.g-clearfix {
	*zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
.g-clearfix:before,
.g-clearfix:after {
    content: "";
	display: table;
}
.g-clearfix:after {
	clear: both;
}
.g-hidden {
  display: none;
}
.g-invisible {
  visibility: hidden;
}
.g-secret {
  display: none;
  visibility: hidden;
}
.g-fixed {
	table-layout: fixed;
	width: 100%;
}
.g-wide {
	width: 100%;
}
.g-float-r {
    float: right;
}
.g-float-l {
    float: left;
}
.g-text-center {
    text-align: center;
}
.g-text-left {
    text-align: left;
}
.g-text-right {
    text-align: right;
}
.g-font-11 {
    font-size: 11px;
}
.menu-top-top  li{
    float: left;
}
.menu-top-top  li a{
    margin-right: 10px;
	margin-left: 5px;
	letter-spacing: 0;
}
.menu-top-top  li.active{
    text-decoration: underline;
	color: #007C7C;
}