/* Utis.css */

@media (max-width: 768px){
	

ul li {
  list-style: none;
  background: url(../images/li_marker.gif) no-repeat 0 9px;
  padding-left: 10px;
  }
  


.jf_mm_trigger {
    margin: -6px 0px;
 
}
	
ul.nav li {
	display:inline-block;
	background:none;
}

.nav a {
	color:#fff;
	text-align:center;
	text-decoration:underline;
}

#footer-area {
	color:#fff;
	text-align:center;
}

.span4 .item-title {
	border-bottom: 1px solid #eee;	
}

.span4 h2 {
 font-size:120%;
}

.span4 h3 a {
 text-decoration:underline;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size:15px;
}
.item-image{
	width:100%;
	text-align: center;
}

.page-header {
	padding-bottom:0px;
}

.item-page {
	margin:-45px 0px;
	padding: 0 0 50px;
}

.blog-featured {
	margin:-45px 0px;
}

.news-intro, .article-intro {
	color:gray;
}

.news-info {
	display:none;
}

.news-title,.news-info, .article-title {
	margin:0px 0px;
}

#content {
	margin:9px 0px;
}
#content-right {
	min-height:600px;
}



#logo-mobile {
	position:fixed;
	background-color: #335891;
	z-index:960;
}

#logo-mobile img {
	height:25px;
	float:right;
	margin:6px;
}

.jf_mm_wrapper ul li {
	background: none;
}

.youtube-video {
	width:100%;
	max-width:560px;
	max-height:415px;
}

/* Breadcrumb */
.breadcrumb {
  list-style-type: none;
  padding: 1em 0;
  font-size: 80%;
  margin:36px 0px;
  background: #fff;
  border-radius:none;
}

.breadcrumb li {
	background:none;
}

.breadcrumb ul li {
  display: inline;
  background: none;
  padding: 0;
}

.divider img {
	margin:-3px 0px 0px;
}

.t1 {
  width: 100%;
  border-top: solid 2px #5774ba;
  border-bottom: solid 2px #5774ba;
  border-left: solid 1px #bebac9;
  border-right: solid 1px #bebac9;
  border-collapse: collapse;
  font-size: 80%;
}

.t1 thead {
  border-bottom: solid 2px #5774ba;
  color: #4d75b0;
}

.t1 th {
  padding: 5px;
  border-left: 1px solid #bebac9;
  border-bottom: solid 2px #5774ba;
  color: #4d75b0;
}

.t1 td {
  padding: 5px;
  border-top: 1px solid #bebac9;
  border-left: 1px solid #bebac9;
}

.t1 tr:nth-child(2n){
  background: #e4eAf8;
  background: #edf2fc;
}

.img-scale {
  width: auto;
  max-width: 100%;
  height: auto;
}

#footer-area {
  background: #335891; /* Old browsers */
  min-height: 40px;
  position: relative;
  clear: both;
  
}

#footer-area > div {
  min-height: 40px;
  height: 100%;
  background: url(../images/footer_bg.png) no-repeat top left;
}
.control-group {
    padding: 7px 0px;
	font-family: 'Roboto', sans-serif;
	font-weight:400;
} 

.control-group label {
	font-weight:500;
}

/* скрываем чекбоксы и блоки с содержанием */
.hide,
.hide + label ~ div {
    display: none;
}
/* вид текста label */
.hide + label {
    margin: 5px;
    padding: 0;
    color: black;
    cursor: pointer;
    display: inline-block;
	font-size: 14px;
	font-family: Tahoma, Arial, sans-serif;
}
/* вид текста label при активном переключателе */
.hide:checked + label {
    color: #336CB8;
    border-bottom: 0;
	padding: 0 5px;
}
/* когда чекбокс активен показываем блоки с содержанием  */
.hide:checked + label + div {
    display: block; 
    background: #eff1f2;  /* fallback for old browsers */
/* IE10+ */ 
    background-image: -ms-linear-gradient(left, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Mozilla Firefox */ 
    background-image: -moz-linear-gradient(left, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Opera */ 
    background-image: -o-linear-gradient(left, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Webkit (Safari/Chrome 10) */ 
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ffffff), color-stop(47, #F6F6F6), color-stop(100, #ededed));

/* Webkit (Chrome 11+) */ 
    background-image: -webkit-linear-gradient(left, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* W3C Markup */ 
    background-image: linear-gradient(to right, #ffffff 0%, #F6F6F6 47%, #ededed 100%);
    margin-left: 32px;
    padding: 10px;
    /* чуточку анимации при появлении */
     -webkit-animation:fade ease-in 0.6s; 
     -moz-animation:fade ease-in 0.6s;
     animation:fade ease-in 0.6s; 
}
/* анимация при появлении скрытых блоков */
@-moz-keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }
}
@-webkit-keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }
}
@keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }   
}
.hide + label:before {
    background-color: #336CB8;
    color: #fff;
    content: "\002B";
    display: block;
    float: left;
    font-size: 17px; 
    font-weight: bold;
    height: 17px;
    line-height: 17px;
    margin: 0px 7px;
    text-align: center;
    width: 17px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.hide:checked + label:before {
    content: "\2212";
}

.hide + label:hover  {
	color: #336CB8;
    border-bottom: 0;
	padding: 0 5px;
}

.hide:checked:hover + label {
	padding: 0 5px;
	color: #336CB8;
}



}

@media (min-width: 768px){

#jform_contact_message {
	min-height: 130px;
}	
	
#filter-status {
	height:30px;
}
	
.ats-ticket-view-title {
	background: rgb(245, 245, 245);
    padding-left: 10px;
}
	
.validate-password	{
	height:25px;
}
	
.pagination li {
	background:none;
}

/*Мои запросы heldesk*/
.mod_atstickets div{
	margin: 0px 0px 5px 0px;
}

.mod_atstickets.akeeba-bootstrap {
	width: 260px;
	background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0px rgba(154, 147, 140, 0.5), 1px 1px 5px rgba(255, 255, 255, 1);
}

.mod_atstickets.akeeba-bootstrap span {
	min-width: 35px;
}

.mod_atstickets a {
	margin: 0px 145px;
}

#ats-timespent {
	width: 60px;
    height: 30px;
}

#akeeba-bootstrap.input-append.add-on span{
	width: 60px;
    height: 30px;
/*-------------------------------------*/	
}
#ticketSubmit {
	width:200px;
	margin: 0 160px;
}
#timerBtn {
	margin:0px;
	float: left;
    width: 120px;
}

ul.markItUpHeader li {
	margin: 0px;
    padding: 0px;
    outline: none;
}
	
/*---------------------------------------------------------*/
.login {
	width:230px;
}

.login .btn {
	margin:0 4px;
}

.controls .btn{
	margin-top: 5px;
    width: 210px;
}


* {
  margin: 0;
  padding: 0;
}

html {
  position: relative;
  min-height: 100%;
}

html, body {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
}

body {
  height:100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
  font-size: 100%;
  line-height: 120%;
  -webkit-text-size-adjust: none;
}

#wrapper {
  min-height: 100%;
}


h2 a {
	text-decoration:underline;
}

p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dd,
.page-header, form {
  margin: 0;
  padding: 0;
  line-height: normal;
  border: none;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: underline;
  background: none;
}

a,
a:hover,
a:focus {
  color: #035ab1;
  text-decoration: underline;
  outline: none;
}

img {
  border: 0;
}

/* Areas */

/* Header */
#header {
  padding: 15px 0 0 0;
  text-align: justify;
}

#header:after {
  content: "";
  width: 100%;
  display: inline-block;
}

#logo {
  display: inline-block;
  vertical-align: top;
  font-size: 200%;
  font-weight: 700;
}

#header-right {
  vertical-align: bottom;
  display: inline-block;
  text-align: right;
  color: #4a67b0;
  font-size: 225%;
  font-weight: 700;
}


#header-area {
  background: #c4e2fd; /* Old browsers */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eff8fe), color-stop(100%, #a1c8ef)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #eff8fe, #a1c8ef); /* Chrome10+,Safari5.1+ */
  background:    -moz-linear-gradient(top, #eff8fe, #a1c8ef); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #eff8fe, #a1c8ef); /* IE10+ */
  background:      -o-linear-gradient(top, #eff8fe, #a1c8ef); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #eff8fe, #a1c8ef) #c4e2fd; /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eff8fe', endColorstr='#a1c8ef', GradientType=0 ); /* IE6-9 */
}

#header-area > div {
  background: url(../images/header_bg.png) no-repeat right;
}

#lang {
  text-align: right;
}

#menu-area {
  color: #fff;
  background: #070c9c; /* Old browsers */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3E4CA6), color-stop(100%, #3E4CA6)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3E4CA6, #3E4CA6); /* Chrome10+,Safari5.1+ */
  background:    -moz-linear-gradient(top, #3E4CA6, #3E4CA6); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #3E4CA6, #3E4CA6); /* IE10+ */
  background:      -o-linear-gradient(top, #3E4CA6, #3E4CA6); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #3E4CA6, #3E4CA6) #070c9c; /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E4CA6', endColorstr='#3E4CA6', GradientType=0 ); /* IE6-9 */
}

#footer-area {
  background: #c4e2fd; /* Old browsers */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #81c0ea), color-stop(100%, #313893)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #81c0ea, #313893); /* Chrome10+,Safari5.1+ */
  background:    -moz-linear-gradient(top, #81c0ea, #313893); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #81c0ea, #313893); /* IE10+ */
  background:      -o-linear-gradient(top, #81c0ea, #313893); /* Opera 11.10+ */
  background: linear-gradient(to bottom, #81c0ea, #313893) #c4e2fd; /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#81c0ea', endColorstr='#313893', GradientType=0 ); /* IE6-9 */
  min-height: 105px;
  border-top: 8px solid #c4e2fd;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: -200px;
  color:#fff;
  text-align:center;
  clear: both;
}

#footer-area > div {
  min-height: 105px;
  height: 100%;
  background: url(../images/footer_bg.png) no-repeat top left;
}

/*content*/	

.page-header {
	border-bottom:0px;
}	

#message {
	display:block;
}

#content {
	width:100%;
}

#content-left {
	width:25%;
	padding-left: 10px;
}

#content-right {
	margin:0px 0px;
	padding-left:70px;
}	
	
.news-title {
	text-decoration:underline;
	font-size: 120%;
}	

.divider {
  padding: 0 5px;
}

.divider img {
	margin:-3px 0px 0px;
}
	
ul.nav li {
	display:inline-block;
}	

.nav a {
	color:#fff;
	text-align:center;
	text-decoration:underline;
}

.news-info {
	color:gray;
	margin-bottom:0px;
}

.span4 {
  min-width: 10em;
  float:left;
  width:33%;
  padding: 0px 10px;

}

.span4 li {
	margin: 5px 0px;
	font-size:13px;
} 

.span4 h2 {
 font-size:120%;
}

.span4 h3 a {
 text-decoration:underline;
}

.span4 .item-title {
	border-bottom: 1px solid #eee;
	
}

a {
	font-family: 'Roboto', sans-serif;
	font-size: 100%;
}

p,
ul,
ol {
  margin-bottom: 1em;
  font-size: 100%;
}

ol {
  margin-left: 2em;
}

ul li {
  list-style: none;
  background: url(../images/li_marker.gif) no-repeat 0 5px;
  padding-left: 10px;
  }
  
#item {
	display:inline-block;
}

/* Menu */
.menu {
  display: inline;
  list-style-type: none;
}

.menu {
  margin: 0; 
}

ul.menu {
  font-size: 100%;
}

.menu li {
  display: inline;
  padding: 0;
}

.nav > li > a,
.menu-space {
  font-size: 100%;
  font-weight: 400;
  display: inline-block;
  padding: 6px 8px;
  min-height: 24px;
}

/*Новое горизонтальное выпадающее меню*/
#gruemenu li{
   list-style: none;
   background: none;
}

/* Breadcrumb */
.breadcrumb {
  list-style-type: none;
  padding: 1em 0;
  font-size: 80%;
  margin: 0;
  background: #fff;
}

.breadcrumb li {
  display: inline;
  background: none;
  padding: 0;
}

.pathway {
  color: #666;
}

#lang li,
.menu li {
  background: none;
}

blockquote {
  background: #dff0ff;
  padding: 11px 17px;
  font-size: 80%;
  border-left: 4px solid #4a67b0;
  margin-bottom: 1em;
}

.row-fluid .item-image {
  text-align: center;
}

.news-title,
.article-title {
  display: block;
  margin: 0;
}

.news-date,
.article-date {
  display: inline-block;
  font-size: 100%;
}

.article-info .news-date,
.article-info .article-date {
  margin-bottom: 1em;
}

.news-intro,
.article-intro {
  margin-bottom: 1em;
}

.news-intro p,
.article-intro p {
  margin: 0;
}

.icon-calendar {
  vertical-align: middle;
}

a > img {
  vertical-align: middle;
}

.img-scale {
  width: auto;
  max-width: 70%;
  height: auto;
}

.pull-left {
  float: left;
  padding: 0;
  margin: 0 10px 10px 0;
}

.pull-right {
  float: right;
  padding: 0;
  margin: 0 0 10px 10px;
}

.inline {
  display: inline-block;
  margin: 0 20px 0 0;
  vertical-align: top;
}

.doc-link {
  margin-bottom: 1em;
}

.doc-link img {
  vertical-align: top;
  margin-right: 5px;
}

.doc-link-text {
  display: inline-block;
}

.doc-link-text a {
  font-size: 100%;
  display: block;
}

.doc-link p {
  margin: 0;
  display: block;
  color:gray;
  font-size: 90%;
}

.usig-thumb {
  display: inline-block;
  vertical-align: top;
  margin: 0 2em 2em 0;
}

.usig-thumb-caption {
  margin: 0;
}

.usig-thumb-text {
  font-size: 80%;
  
}

.usig-thumb img {
  border: 1px solid #c4e2fd;
  margin: 0 5px 5px 0;
  box-shadow: 3px 3px 5px #c4e2fd;
  box-shadow: 3px 3px 5px #ccc;
}

.notice {
  margin-bottom: 1.5em;
  font-size: 80%;
}

.notice:after {
  clear: both;
  display: block;
  content: "";
}

.notice img {
  width: 58px;
  height: auto;
  float: left;
  margin-right: 5px;
}

.counter {
  width: 100%;
  height: 0;
}

.form-actions {
  border: none;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

#jform_contact_message {
  box-sizing: border-box;
  width: 100%;
}

label, input, button, select, textarea, legend {
  font-size: 100%;
  font-weight: 400;
  line-height: 1em;
  border-radius: 4px 4px 4px 4px;
  border-width: 1px;
  }



legend {
  border: none;
}

.left-contact-tittle {
  display: block;
  color: #337ab7;
  font-size: 100%;
  font-weight: 700;
  border: none;
  padding: 0;
  margin: 3em 0 0.5em 0;
}

.left-contact-wrapper {
  font-size: 100%;
  margin: 0 0 3em 0;
}

.left-contact-wrapper > div {
  display: inline-block;
  vertical-align: top;
}

.left-contact-phone {
  font-weight: 700;
}

.btn {
  font-size: 100%;
}

a.btn {
  text-decoration: none;
}


table {
  margin-bottom: 1em;
}

table caption {
  caption-side: top;
  text-align: left;
  color: #337ab7;
  font-weight: 700;
  margin-bottom: 4px;
  font-size:14px;
}

.t1 {
  width: 100%;
  border-top: solid 2px #5774ba;
  border-bottom: solid 2px #5774ba;
  border-left: solid 1px #bebac9;
  border-right: solid 1px #bebac9;
  border-collapse: collapse;
  font-size: 80%;
}

.t1 thead {
  border-bottom: solid 2px #5774ba;
  color: #4d75b0;
}

.t1 th {
  padding: 5px;
  border-left: 1px solid #bebac9;
  border-bottom: solid 2px #5774ba;
  color: #4d75b0;
}

.t1 td {
  padding: 5px;
  border-top: 1px solid #bebac9;
  border-left: 1px solid #bebac9;
}

.t1 tr:nth-child(2n){
  background: #e4eAf8;
  background: #edf2fc;
}

#prod,
#prod li {
  display: block;
  margin: 0;
  padding: 0;
  z-index:0;
}


#prod a {
  display: inline-block;
  margin: 0;
  padding: 0;
  color:#337ab7;
  font-size:14px;
}

#prod > li {
  margin: 0 0 20px 0;
}

#prod .small {
  font-size: 80%;
}

#prod .small li {
  margin: 0 0 0.3em 2em;
}

.prod-photo {
  font-size: 80%;
}

.image-caption {
  color: #6793cd;
  font-weight: 700;
  margin-bottom: 1em;
}

.content-links li {
  list-style: none;
  background: none;
  margin: 0;
  padding: 0;
}

/*кнопки забыли пароль, забыли логин*/
.nav li {
	background: none;
}

/*выпадающие списки в akeeba*/
.chzn-results li {
	background: none;
	font-size: 13px;
}

.dropdown-menu li {
	background: none;
}
/*
.parent {
	z-index:99;
}
*/
.chzn-choices li {
	background: none;
}

.markItUpHeader ul li {
	background:none;
}

.ats-ticket-content-info {
	font-size:14px;
}


.form-horizontal .help-block {
	font-size:12px;
}

/* скрываем чекбоксы и блоки с содержанием */
.hide,
.hide + label ~ div {
    display: none;
}
/* вид текста label */
.hide + label {
    margin: 5px;
    padding: 0;
    color: black;
    cursor: pointer;
    display: inline-block;
	font-size: 14px;
	font-family: Tahoma, Arial, sans-serif;
}
/* вид текста label при активном переключателе */
.hide:checked + label {
    color: #336CB8;
    border-bottom: 0;
	padding: 0 5px;
}
/* когда чекбокс активен показываем блоки с содержанием  */
.hide:checked + label + div {
    display: block; 
    background: #eff1f2;  /* fallback for old browsers */
/* IE10+ */ 
    background-image: -ms-linear-gradient(right, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Mozilla Firefox */ 
    background-image: -moz-linear-gradient(right, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Opera */ 
    background-image: -o-linear-gradient(right, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* Webkit (Safari/Chrome 10) */ 
    background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #ffffff), color-stop(47, #F6F6F6), color-stop(100, #ededed));

/* Webkit (Chrome 11+) */ 
    background-image: -webkit-linear-gradient(right, #ffffff 0%, #F6F6F6 47%, #ededed 100%);

/* W3C Markup */ 
    background-image: linear-gradient(to left, #ffffff 0%, #F6F6F6 47%, #ededed 100%);
    margin-left: 32px;
    padding: 10px;
    /* чуточку анимации при появлении */
     -webkit-animation:fade ease-in 0.6s; 
     -moz-animation:fade ease-in 0.6s;
     animation:fade ease-in 0.6s; 
}
/* анимация при появлении скрытых блоков */
@-moz-keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }
}
@-webkit-keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }
}
@keyframes fade {
    from { opacity: 0; }
to { opacity: 1 }   
}
.hide + label:before {
    background-color: #336CB8;
    color: #fff;
    content: "\002B";
    display: block;
    float: left;
    font-size: 17px; 
    font-weight: bold;
    height: 17px;
    line-height: 17px;
    margin: 0px 7px;
    text-align: center;
    width: 17px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.hide:checked + label:before {
    content: "\2212";
}

.hide + label:hover  {
	color: #336CB8;
    border-bottom: 0;
	padding: 0 5px;
}

.hide:checked:hover + label {
	padding: 0 5px;
	color: #336CB8;
}


/*кнопка ats Мои запрсы*/

.mod_atstickets-mytickets { 				
	margin: 10px;
}

.akeeba-bootstrap h1 {
	font-size:14px;
}

/*Анонсы*/	

.news-box {
	width:250px;
	height:95px;
	display:flex;
	font-size:15px;
	margin-bottom: 5px;
	
}

.latestnews {
	clear:both;
	box-shadow: none;
}

.left-box {
	float:left;
	background:#a7adb5;
	height:100%;
	width: 5%;


}

.right-box {
	width:95%;
	overflow: hidden;
	background:#f7f7f7;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0px 5px;
}

.title {
	flex: 1 0 auto;
	text-align:left;
	overflow: hidden;
	max-height: 74%;
	padding: 0px 5px;
}

.date {
	flex: 0 0 auto;
	text-align:right;
	color:#a2a2a2;
	font-size:12px;
	padding: 5px 5px;
}

.news-box:hover .left-box {
	background:#2b61a9;
}

.latestnews:hover  .news-box {

-webkit-box-shadow: 2px 2px 4px 0px rgba(224,224,224,1);
-moz-box-shadow: 2px 2px 4px 0px rgba(224,224,224,1);
box-shadow: 2px 2px 4px 0px rgba(224,224,224,1);

}
.latestnews:hover  .date {
	color:#8c8c8c;
}
}

@media (min-width: 992px){
#menu-area {
	padding-left:0%;
	padding-right:0%;
}
	
#content {
	width:90%;
}
#content-left {
	width:25%;
	padding-left: 0px;
}

#content-right {
	margin:0px 0px;
	padding-left:30px;
}	
	
}

@media (min-width: 1200px){
	
#menu-area {
	padding-left:10%;
	padding-right:10%;
}
	
	
#content {
	width:80%;
}
#content-left {
	width:25%;
	padding-left: 0px;
}

#content-right {
	
	margin:0px 0px;
	padding-left:30px;
}	
	
	
}

@media (min-width: 1700px){
	
#menu-area {
	padding-left:15%;
	padding-right:15%;
}
	
#content {
	width:70%;
}
#content-left {
	width:25%;
	padding-left: 0px;;
}

#content-right {
	
	margin:0px 0px;
	padding-left:0px;
}	
	
	
}









































