@charset "utf-8";
/* CSS Document */

.news img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    transition: 0.3s ease-in;
}

.news img:hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(0%);
}

h2 {
	font-family: 'Cuprum', "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight:700;
}

h2 span {
	color:#ea4335;
}

h4 {
	margin-left:15px;
}

	
a, a:Visited {
	color: #333333;
	text-decoration:underline;
}

a:hover {
	color: #e85d5d;
	text-decoration: underline;
}

.container-95 {
	max-width: 1600px;
}

.main {
  padding: 25px 0px;
}

.container-main {
  margin-right: auto;
  margin-left: auto;
  padding: 30px 10px;
  max-width:640px;
  font-size:18px;
}

.navbar {
/*  position: relative; */
  min-height: 70px;
  padding:0;
  margin:0;
/*  margin-top:10px;
  margin-bottom: 20px; */
  border: 1px solid transparent;
  font-family: 'PT Sans Narrow', "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size:18px; /*16 */
/*  font-weight: bold; */
  text-transform:uppercase;
}

.navbar a,
.navbar a:visited,
.navbar a:hover {
	text-decoration:none;
}

.dropdown-menu {
  min-width: 160px;
  padding: 0px 0px;
  margin: 2px 0 0;
  border:none;
}

.dropdown-menu > li > a {
   padding: 7px 20px;
}

.navbar-brand {
  float: left;
  padding: 0px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 70px;
}

/* --------------- carousel ------------------*/

.carousel-control {
/*  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  */
}

.carousel-control.left {
/*  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); */
}
.carousel-control.right {
  left: auto;
  right: 0;
 /*
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  */
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
/*--------------------------------*/

.pagination > li > a,
.pagination > li > span {
  color: #e85d5d;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #555555;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #ffffff;
  background-color: #e85d5d;
  border-color: #e85d5d;
  cursor: default;
}

/*-- Colors --*/

.wrap-grey {
	background-color: #f5f5f5;
}

.wrap-darkgrey {
	background-color:#333;
}

.wrap-white {
	background-color:#fff;
}

.wrap-red {
    background-color:#e85d5d /* F1A733 #5EB28F */;
	color: #ffffff;
}

.lr_borders {
	border-left: 1px solid #F1F1F1;
	border-right:  1px solid #F1F1F1;
}

/* ----- Boxes --*/

.box {
	margin:20px;
	background-color:#FFFFFF;
}

.news {
	min-height:250px;
	padding-bottom:10px;
	margin:15px;
	background:#FFF;
}

.news h3 {
 padding: 5px 15px;
 margin:0;
 font-family: 'PT Sans Narrow', 'Cuprum', 'Lora', "Trebuchet MS", Arial, Helvetica, sans-serif;
 font-size:24px;
 font-weight:400;
}

.news p {
	margin-left: 15px;
	margin-right: 15px;
	font-family: 'PT Sans', 'Lora' ,Arial, Helvetica, sans-serif;
}

.news a, 
.news a:visited {
	text-decoration:none;
	color: #333333;
}

.news a:hover {
	color:#555555;
}

.newsdate {
	font-size:14px;
	color:#DC5F61;
	margin-top:10px;
	padding-left:15px;
	text-align:left;
}

img {
    width:100%;
	height: auto;
	border: 0;
}

.img_margins {
	margin-top: 10px;
	margin-bottom: 15px;
	display: block;
}

.footer {
	color:#ccc;
}

.footer ul {
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   font-size:17px;
/*   font-weight:bold; */
   color:#e85d5d;
/*   line-height:1;
   /*   font-family:Arial, Helvetica, sans-serif; */
}
.footer ul .ul-1 {
    text-transform: uppercase;
}

.footer ul li {
   display:block;
   list-style:none;
   margin:0;
   padding:1px 2px;
   position:relative;
}

.footer a,
.footer a:visited {
	color:#ccc;
	text-decoration:none;
}

.footer a:hover {
	color: #e85d5d;
}

.footer ul li a {
   margin:0 0 0 1px;
   color:#ccc;
   text-decoration:none;
/*   font-weight:normal; */
}

.footer ul li a:hover {
   color:#e85d5d;
}

.footer ul li a.active,
.footer ul li a.active:hover {
   color:#fff;
}

.footer ul hr, .footer hr {
	padding:0;
	margin:2px 0 6px 0;
    border: none; 
	height: 1px;
	color: #808080;
	background-color:#808080;
}
.adress {
	font-size:17px;
    color:#e85d5d;
}

.carousel-caption {
  position: absolute;
  left: 7%;
  right: 60%;
  bottom: 30px;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #e77900;
  font-size:40px;
  font-weight:bold;
  line-height:.9;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

a.btn {
	text-decoration:none;
	color: #ffffff;
}

a.btn:hover {	
	text-decoration:none;
	color: #ffffff;
}

.btn-warning {
	background:#e77900;
	border-color:#e77900;
}

@media (min-width: 768px) {
    .pull-right-sm {
        float: right;
    }
}

.center_language {
    text-transform: lowercase;
    overflow: hidden;
    white-space: nowrap;
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
}
.center_language a.active {
    color: #e85d5d;
}