 /* Morph Button: Default Styles */

.morph-button {
	position: relative;
	display: block;
	margin: 0 auto;
}

.morph-button > button {
	position: relative;
	/*padding: 0 1em;*/
	border: none;
	/*background-color: #e85657;*/
	/*color: #f9f6e5;*/
	/*text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	line-height: 80px;*/
	overflow: hidden;
	padding: 0;
}

.morph-button.open > button {
	pointer-events: none;
}

.morph-content {
	pointer-events: none;
}

.morph-button.open .morph-content {
	pointer-events: auto;
}

/* Common styles for overlay and modal type (fixed morph) */
.morph-button-fixed,
.morph-button-fixed .morph-content {
	/*width: 300px;*/
	height: 80px;
	float: right;
    width: 189px;
    height: 39px;
    border: 1px solid #075235;
    cursor: pointer;
    margin-bottom: 18px;
}

.morph-button-fixed > button {
	z-index: 1000;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity 0.1s 0.5s;
	transition: opacity 0.1s 0.5s;
	    background-color: #fff;
}

.morph-button-fixed.open > button {
	opacity: 0;
	-webkit-transition: opacity 0.1s;
	transition: opacity 0.1s;
}

.morph-button-fixed .morph-content {
	position: fixed;
	z-index: 900;
	opacity: 0;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-fixed.open .morph-content {
	opacity: 1;
}

.morph-button-fixed .morph-content > div {
	visibility: hidden;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
	transition: opacity 0.1s, visibility 0s 0.1s, height 0s 0.1s;
}

.morph-button-fixed.open .morph-content > div {
	visibility: visible;
	height: auto;
	opacity: 1;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.morph-button-fixed.active > button {
	z-index: 2000;
}

.morph-button-fixed.active .morph-content {
	z-index: 1900;
}

/* Transitions for overlay button and sidebar button */
.morph-button-overlay .morph-content,
.morph-button-sidebar .morph-content {
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

.morph-button-overlay.open .morph-content,
.morph-button-sidebar.open .morph-content {
	-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
}

/* Morph Button Style: Overlay */
.morph-button.morph-button-overlay {
	margin: 50px auto;
}

.morph-button-overlay .morph-content {
	overflow: hidden;
	/*background: #e85657;*/
}

.morph-button-overlay.open .morph-content {
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	height: 100%;
}

/* Morph Button Style: Modal */
.morph-button-modal::before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 800;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	pointer-events: none;
}

.morph-button-modal.open::before {
	opacity: 1;
	pointer-events: auto;
}

.morph-button-modal.active::before {
	z-index: 1800;
}

.morph-button-modal .morph-content {
	overflow: hidden;
	-webkit-transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: opacity 0.3s 0.5s, width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

.morph-button-modal.open .morph-content {
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	margin: -210px 0 0 -300px;
	width: 600px;
	height: 420px;
	-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
	transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s, margin 0.4s 0.1s;
}

/* Colors and sizes for individual modals */
.morph-button.morph-button-modal-1 {
	float: left;
}

.morph-button.morph-button-modal-2,
.morph-button.morph-button-modal-3 {
	display: inline-block;
	margin: 4px 15px;
}

/*.morph-button-modal-1 > button,
.morph-button-modal-1 .morph-content {
	background-color: #553445;
}

.morph-button-modal-2 > button,
.morph-button-modal-2 .morph-content,
.morph-button-modal-3 > button,
.morph-button-modal-3 .morph-content {
	background-color: #fef0e3;
	color: #e75854;
}*/

.morph-button-modal-4 {
	display: inline-block;
}

/*.morph-button-modal-4 > button,
.morph-button-modal-4 .morph-content {
	background-color: #faf1e0;
	color: #553445;
}*/

/*.morph-button-modal-4 > button span,
.morph-button-modal-4 .morph-clone {
	padding-left: 10px;
	color: #286f81;
}
*/
.morph-button-modal-4 .morph-clone {
	position: absolute;
	right: 34px;
	bottom: 30px;
	z-index: 100;
	letter-spacing: 1px;
	font-weight: 700;
	-webkit-transition: bottom 0.4s 0.1s, right 0.4s 0.1s;
	transition: bottom 0.4s 0.1s, right 0.4s 0.1s;
}

.morph-button-modal-4.open .morph-clone,
.no-js .morph-button-modal-4 .morph-clone {
	right: 10px;
	bottom: 10px;
}

.morph-button-modal-1::before {
	background: rgba(240,221,204,0.7);
}

.morph-button-modal-2 .morph-content {
	max-width: 640px;
	width: calc(100% - 48px);
	border-radius: 24px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
	background: #fff;
	margin: 0;
	padding: 0;
}

.morph-button-modal-2.open .morph-content .titleText {
	display: none;
}

.morph-button-modal-2.open .morph-content {
	width: calc(100% - 48px);
	height: auto;
	left: 50% !important;
	top: 30px !important;
	transform: translateX(-50%) !important;
	margin: 0 !important;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

@media (max-width: 767px) {
	.morph-button-modal-2.open .morph-content {
		width: calc(100% - 32px);
		max-width: none;
		max-height: calc(100vh - 32px);
		border-radius: 18px;
		top: 50% !important;
		transform: translate(-50%, -50%) !important;
	}
}

.morph-button-modal-3.open .morph-content {
	margin: -255px 0 0 -210px;
	width: 420px;
	height: 510px;
}

.morph-button-modal-3.open .morph-content > div {
	height: 420px;
}

.morph-button-modal-2.open .morph-content > div,
.morph-button-modal-3.open .morph-content > div {
 	-webkit-transition: opacity 0.3s 0.3s;
	transition: opacity 0.3s 0.3s;
}

.morph-button-modal-4.open .morph-content {
	margin: -200px 0 0 -320px;
	width: 640px;
	height: 400px;
}

/* Morph Button Style: In the content flow */
.morph-button-inflow {
	overflow: hidden;
	max-width: 100%;
	height: 70px;
}

.morph-button-inflow > button {
	width: 100%;
	line-height: 70px;
}

.morph-button-inflow .morph-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.morph-button-inflow .morph-content .morph-clone {
	padding: 0;
	font-weight: 700;
	font-size: 1.5em;
	line-height: 70px;
}

/* Colors and sizes for individual in flow buttons */
.morph-button-inflow-1 {
	width: 600px;
	margin: 2em auto;
	-webkit-transition: height 0.5s cubic-bezier(0.7,0,0.3,1);
	transition: height 0.5s cubic-bezier(0.7,0,0.3,1);
}

.morph-button-inflow-1 > button span {
	visibility: hidden;
}

/*.morph-button-inflow-1 .morph-content .morph-clone {
	color: #f9f6e5;
	background: #e85657;
}*/

.morph-button-inflow-2 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 220px;
	/*background-color: #fef0e3;*/
	-webkit-transition: height 0.3s, width 0.3s, -webkit-transform 0.3s;
	transition: height 0.3s, width 0.3s, transform 0.3s;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.morph-button-inflow-2 > button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	/*color: #e75854;*/
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.morph-button-inflow-2.open > button {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.morph-button-inflow-2 .morph-content {
	width: 260px;
	height: 200px;
}

.morph-button-inflow-2.open {
	width: 260px;
}

/* Morph Button Style: Sidebar */
.morph-button-sidebar,
.morph-button-sidebar .morph-content {
	width: 60px;
	height: 60px;
}

.morph-button-sidebar {
	position: fixed;
	bottom: 50px;
	left: 50px;
}

.morph-button-sidebar > button {
	line-height: 60px;
	font-size: 1.6em;
	padding: 0;
}

.morph-button-sidebar .morph-content {
	background: #e85657;
}

.morph-button-sidebar.open .morph-content {
	top: 0 !important;
	left: 0 !important;
	width: 300px;
	height: 100%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}

/* Let's add some nice easing for all cases */
.morph-button .morph-content,
.morph-button.open .morph-content,
.morph-button-modal-4 .morph-clone {
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Helper classes */
.noscroll {
	overflow: hidden;
}

.morph-button-overlay.scroll .morph-content {
	overflow-y: scroll;
}

.morph-button-sidebar.scroll .morph-content {
	overflow: auto;
}

/* No JS fallback: let's hide the button and show the content */
.no-js .morph-button > button {
	display: none;
}

.no-js .morph-button {
	margin: 10px 0;
	float: none;
}

.no-js .morph-button,
.no-js .morph-button .morph-content,
.no-js .morph-button .morph-content > div {
	position: relative;
	width: auto;
	height: auto;
	opacity: 1;
	visibility: visible;
	top: auto;
	left: auto;
	-webkit-transform: none;
	transform: none;
	pointer-events: auto;
}

.no-js .morph-button .morph-content .icon-close {
	display: none;
}

.no-js .morph-button-sidebar {
	width: 300px;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	height: 100%;
	background: #e85657;
	overflow: auto;
}

.no-transition {
	-webkit-transition: none !important;
	transition: none !important;
}

/* Media Queries */
@media screen and (max-width: 600px) {
	.morph-button-modal.open .morph-content {
		top: 0% !important;
		left: 0% !important;
		margin: 0;
		width: 100%;
		height: 100%;
		overflow-y: scroll;
		-webkit-transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
		transition: width 0.4s 0.1s, height 0.4s 0.1s, top 0.4s 0.1s, left 0.4s 0.1s;
	}
}

@media screen and (max-width: 400px) {
	.morph-button-fixed,
	.morph-button-fixed .morph-content {
		width: 200px;
		height: 80px;
	}

	.morph-button-fixed > button {
		font-size: 75%;
	}

	.morph-button-sidebar > button {
		font-size: 1.6em;
	}

	.morph-button-inflow .morph-content .morph-clone {
		font-size: 0.9em;
	}

	.morph-button-modal-4,
	.morph-button-modal-4 .morph-content {
		width: 220px;
		height: 120px;
	}

	.morph-button-modal-4 > button {
		font-size: 100%;
		line-height: 50px;
	}

	.morph-button-modal-4 > button span {
		display: block;
	}

	.morph-button-modal-4 .morph-clone {
		right: 83px;
		bottom: 26px;
	}

	.morph-button-sidebar,
	.morph-button-sidebar .morph-content {
		width: 100% !important;
		height: 60px !important;
	}

	.morph-button-sidebar {
		bottom: 0px;
		left: 0px;
	}

	.morph-button-sidebar.open .morph-content {
		height: 100% !important;
	}
}
/*start change 14/03/2016*/
@media (min-width: 768px) {
	.morph-button-modal.open .morph-content {
		top: 30px !important;
		overflow: visible;
	}
	.morph-button-modal-2.open .morph-content {
		width: 1140px;
	}

	.papWindow {
		max-width: 1145px!important;
		padding: 0 81px;
	}
}

@media (max-width: 767px) {
	.morph-button-modal.open .morph-content {
		overflow: hidden;
	}

	.morph-button.morph-button-modal-2.open .morph-content {
		width: calc(100% - 32px) !important;
		max-width: none !important;
		height: auto !important;
		left: 50% !important;
		top: 50% !important;
		transform: translate(-50%, -50%) !important;
		max-height: calc(100vh - 32px) !important;
		overflow-y: auto !important;
	}

	.morph-button.morph-button-modal-2.open .morph-content > div {
		height: auto !important;
		min-height: 0 !important;
	}

	.papWindow {
		max-width: none !important;
		padding: 24px 16px !important;
	}

	.icon.icon-close.cloze {
		top: 8px;
		right: 8px;
	}
}
.icon.icon-close.cloze {
    position: absolute;
    top: -16px;
    right: -15px;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    background: #868686;
    font-size: 20px;
    text-align: center;
    padding: -2px 1px!important;
    vertical-align: middle;
}
.icon.icon-close.cloze:before {
	content: "+";
	position: absolute;
	border-radius: 50%;
	color: #fff;
	font-size: 37px;
	text-align: center;
	top: -14px;
	left: 3px;
	vertical-align: middle;
    -moz-transform: rotate(45deg); /* Для Firefox */
    -ms-transform: rotate(45deg); /* Для IE */
    -webkit-transform: rotate(45deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(45deg); /* Для Opera */
    transform: rotate(45deg);
}
.morph-button-fixed .morph-content {
    border: 1px solid #fff;
}
.papWindow .title_right {
    width: 68%!important;
}
.papWindow .titleText {
    margin-top: 67px!important;
}

.titleText .title_centr {
    font-size: 28px;
}
.titleText + div p {
	margin-top: 22px;
	font-size: 18px!important;
}

/*over change 14/03/2016*/

/* Start change 30/03/2016 */
/*================ News =====================*/
.FifthBlock.news {
    position: relative;
  /*   height: min-296px; */
}
.FifthBlock.news .readmore{
	position: relative;
	float: right;
	vertical-align: top;
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: underline;
	display: inline-block;
	line-height: 3;
}
.moduletable_news {
    margin: 62px 0 0;
/*     max-height: 415px; */
    max-height: 380px;
  /*   max-height: 365px; */
  overflow: hidden;
}
.newsflash-vert_news{
	width: 100%;
}

.moduletable_news > p{
	font-size: 28px;
	display: block;
	position: relative;
	height: 40px;
	width: 100%;
	z-index: 5;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
}
.moduletable_news > p:before{
	content:"";
	height: 1px;
	width: 85%;
	background-color: #504e4e;
	margin: 20px 0;
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 1;
}
.newsflash-item {
    width: 27%;
    margin: 50px 70px 48px 0;
	display: inline-block;
	vertical-align: top;
}
.moduletable_news .newsflash-title_news{
	background-position: left center;
	background-size:35px 35px;
	background-repeat: no-repeat;
	height: 50px;
}
.moduletable_news .newsflash-item:nth-child(1) .newsflash-title_news{
	background-image: url("../images/newsIcon1.png");
}
.moduletable_news .newsflash-item:nth-child(2) .newsflash-title_news{
	background-image: url("../images/newsIcon2.png");
}
.moduletable_news .newsflash-item:nth-child(3) .newsflash-title_news{
	background-image: url("../images/newsIcon3.png");
}
.moduletable_news .newsflash-title_news a{
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: none;
	float: right;
	width: 257px;
}

.moduletable_news .newsflash-item p{
	margin-top: 10px;
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: none;
	float: left;
	clear: left;
/* 	height: 40px; */
	overflow: hidden;
	white-space: nowrap;
	width: 302px;
	text-overflow: ellipsis;
}


/*============= Start news Page ====================*/

.blog_newsPage > h2{
	position: relative;
}
.blog_newsPage > h2 span{
	font-size: 28px;
	display: block;
	position: relative;
	height: 40px;
	width: 100%;
	z-index: 5;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
}
.blog_newsPage > h2:before{
	content:"";
	height: 1px;
	width: 85%;
	background-color: #504e4e;
	margin: 20px 0;
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 1;
}

.blog_newsPage .span6 {
    width: 49%;
    display: inline-block;
    min-height: 1px;
    /* max-height: 59px; */
    height: auto;
    padding-right: 30px;
    vertical-align: top;
}
.blog_newsPage .items-row{
    width: 100%;
    max-height: 350px;
    margin: 0 auto 20px;
}

.blog_newsPage .span6 .article-info.muted{
    margin-bottom: 0px!important;
}
.blog_newsPage .article-info-term{
	display: none;
}
.blog_newsPage .article-info-term{
	display: none;
}
.blog_newsPage .create{
	display: block;
	text-align: left;
	font-weight: bold;
}

.blog_newsPage .pull-left.item-image {
    width: 78px;
}

/*=========== Articles =================*/



.FifthBlock.art {
    position: relative;
    height: 296px;
}
.FifthBlock.art .readmore{
	position: relative;
	float: right;
	vertical-align: top;
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: underline;
	display: inline-block;
}
.moduletable_articles {
    margin: 62px 0 0;
    max-height: 205px;
}
.moduletable_articles{
	width: 100%;
}

.moduletable_articles > h3{
	font-size: 28px;
	display: block;
	position: relative;
	height: 40px;
	width: 100%;
	z-index: 5;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
}
.moduletable_articles > h3:before{
	content:"";
	height: 1px;
	width: 85%;
	background-color: #504e4e;
	margin: 20px 0;
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 1;
}
.newsflash-item {
    width: 27%;
/*     margin: 50px 70px 48px 0;   */
	/*margin: 50px 70px 35px 0;*/
	margin: 0px 70px 35px 0;
	display: inline-block;
	vertical-align: top;
}
.moduletable_articles .newsflash-item{
	background-position: top left;
	background-size: 61px 95px;
	background-repeat: no-repeat;
	height: 95px;
	background-image: url("../images/pdf-ic.png");
}

.moduletable_articles .newsflash-vert_articles a{
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: none;
	float: right;
	width: 240px;
}

.moduletable_articles .newsflash-item p{
	display: none;
}

.fourthBlock .readmore{
	position: relative;
	float: right;
	vertical-align: top;
	font-family: roboto;
	font-size: 14px;
	font-weight: 400;
	color: #504e4e!important;
	text-decoration: underline;
	display: inline-block;
}


.socialFoot .footerSocial li.vk {
    background-image: url(../images/social2.png);
    background-position: center;
    background-repeat: no-repeat;
}
.socialFoot .footerSocial li.vk:hover {
    background-image: url(../images/social2a.png);
}
.socialFoot .footerSocial li.tw {
    background-image: url(../images/social1.png);
    background-position: center;
    background-repeat: no-repeat;
}
.socialFoot .footerSocial li.tw:hover {
    background-image: url(../images/social1a.png);
}
.socialFoot .footerSocial li.inst {
    background-image: url(../images/social6.png);
    background-position: center;
    background-repeat: no-repeat;
}
.socialFoot .footerSocial li.inst:hover {
    background-image: url(../images/social6a.png);
}
.socialFoot .footerSocial li.yT {
    background-image: url(../images/social5.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 111%;
    margin: 0 0 0 0px;
}

.socialFoot .footerSocial li.yT .hide_gl {
	opacity: 0;
}

.socialFoot .footerSocial li.yT:hover {
    background-image: url(../images/social5a.png);
}

.bg-brCr .container{
	/* width: 1016px; */
}
/*================= Map ==========================*/

.map {
    position: relative;
    width: 100%;
    height: 600px;
    margin: -20px auto 0;
}
.map iframe{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.cont-addres {
    width: 434px;
    height: 100%;
    background: #fff;
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
    padding: 5vh 9vw;
}

.cont-addres p{
	color: #504e4e;
	font-weight: 400;
	font-size: 18px;
	white-space: nowrap;
}
.cont-addres p a{
	color: #504e4e;
	font-weight: 400;
	font-size: 18px;
	white-space: nowrap;
}

/*============== Foto Gallery ==================*/
.blog_fotoPage > h2{
	position: relative;
	margin-bottom: 57px;
}
.blog_fotoPage > h2 span{
	font-size: 28px;
	display: block;
	position: relative;
	height: 40px;
	width: 100%;
	z-index: 5;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
}
.blog_fotoPage > h2:before{
	content:"";
	height: 1px;
	width: 80%;
	background-color: #504e4e;
	margin: 20px 0;
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 1;
}

.blog_fotoPage .span6 {
    width: 49%;
    display: inline-block;
    min-height: 1px;
    /*max-height: 195px;*/
    height: auto;
    padding-right: 30px;
    vertical-align: top;
}
.blog_fotoPage .items-row{
    width: 100%;
    /*max-height: 259px;*/
    margin: 0 auto 20px;
}

.blog_fotoPage .span6 .article-info.muted{
    margin-bottom: 0px!important;
}
.blog_fotoPage .article-info-term{
	display: none;
}
.blog_fotoPage .article-info-term{
	display: none;
}
.blog_fotoPage .create{
	display: block;
	text-align: left;
	font-weight: bold;
}

.blog_fotoPage .pull-left.item-image {
	width: 275px;
	overflow: hidden;
	height: 218px;
}
.blog_fotoPage .pull-left.item-image img{
	width: 100%;
	height: auto;
}
.blog_fotoPage .span6 .page-header {
	float: right;
	width: 240px;
	vertical-align: top;
	margin: 0;
	border: none;
}
.blog_fotoPage .span6 .page-header h2{
	margin: 0;
	font-size: 14px;
}
.blog_fotoPage .span6 .page-header a{
	font-family: roboto;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	color: #504e4e;
	vertical-align: top;
}


.listGalleryPic a {
   margin: 20px 23px!important;
}
.listGalleryPic a:nth-child(1),
.listGalleryPic a:nth-child(4n+1){
   margin-left: 0px!important;
}
.listGalleryPic a:nth-child(4n){
	margin-right: 0px!important;
}

.fourthBlock .titleText {
    margin-bottom: 41px;
}
.technology {
    margin: 32px -16px 0;
}

.item-page_fotoPage h2{
	font-size: 28px;
	display: block;
	position: relative;
	height: 40px;
	width: 100%;
	z-index: 5;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
}
/* Over change 30/03/2016 */


/* start change 31/03/2016 */
.advantageItem p a{
    font-family: roboto;
    font-size: 14px;
    font-weight: 400;
    color: #504e4e;
    text-transform: uppercase;
    margin-bottom: 42px;
    position: relative;
    text-decoration: underline;
}
#blink {
	-webkit-animation: blink 1s linear infinite;
	animation: blink 1s linear infinite;
	font-weight: bold;
	color: #F00;
  text-decoration: none;
  font-size: 25px;
  position: absolute;
  right: 2%;
  top: -10px;
  z-index: 5;
}

@-webkit-keyframes blink {
	0% { color: #F00; }
	50% { color: #FBB; }
	100% { color: #F00; }
}

@keyframes blink {
	0% { color: #F00; }
	50% { color: #FBB; }
	100% { color: #F00; }
}
.advantageItem p a:hover{
    color: #075235;
}
.breadcrumb > li + li::before {
    padding: 0px!important;
}
.breadcrumb {
    padding: 8px 0 !important;
    /* padding: 8px 25px !important; */
}
.titleText a span{
    color: #8faed5!important;
    font-family: roboto;
    font-size: 28px;
    font-weight: 400;
    margin-left: 0px;
    text-transform: uppercase;
    display: inline-block;
}
/* header page style */
.item-page_fotoPage .page-header{
	position: relative;
}
.item-page_fotoPage .page-header h2 {
	font-size: 28px;
	display: inline-block;
	position: relative;
	height: 40px;
	width: auto;
	z-index: 6;
	font-weight: 400;
	text-transform: uppercase;
	color: #504e4e;
	background: #fff;
	padding-right: 20px;
}
.item-page_fotoPage .page-header:before{
	content:"";
	height: 1px;
	width: 40%;
	background-color: #504e4e;
	margin: 36px 0;
	position: absolute;
	top: 0;
	right: 0px;
	z-index: 1;
}

/* Over change 31/03/2016 */


/* start change 22/04/2016*/
.newsflash-item img:nth-child(1) {
    display: none;
}

/* .newsflash-item p:nth-child(5) {
    display: none;
} */
/* .newsflash-item p:nth-child(6) {
    display: none;
}
.newsflash-item p:nth-child(7) {
    display: none;
}
.newsflash-item p:nth-child(8) {
    display: none;
}
.newsflash-item p:nth-child(9) {
    display: none;
}
.newsflash-item p:nth-child(10) {
    display: none;
} */
/* start change 22/04/2016*/

/* start change 28/04/16 */

/* .item.blog_pretext.column-1 img:nth-child(5) {
    display: none;
}
 */
.blog_newsPage img {
    height: 220px;
    /* width: 100%; */

    max-width: 100%;
    margin: 0 auto;
    display: inherit;
}
/* start change 28/04/16 */
.newsflash-item img {
    width: 100%;
    height: 185px;
}

.item-page_newsPage > div > img {
	max-width: 600px;
}
@media screen and (max-width: 625px) {
	.blog_fotoPage .items-row {
		max-height: auto !important;
	}
}
