/* RESET
======================================*/
*:focus {
	outline: none;
}
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	margin: 0;
	padding: 0;
	/*transition: all .3s ease-out;*/
	color: #444;
}
body {
	background: url() #fbfbfb;
	font: 100%/1.5em 'PT Sans', Tahoma, Helvetica, Arial;
	color: #444;
}
input {
	border: none;
	font-size: 16px;
}
ul, li {
	list-style: none;
}
a {
	text-decoration: none;
	color: #5abfde;
}
header, nav, aside, section, article, footer {
	display: block;
}
/* GRID
======================================*/
.row:after {
	display: block;
	content: '';
	clear: both;
	height: 0;
	visibility: hidden;
}

[class*="col-"] {
	float: left;
}

.col-1  { width: 8.333333333333334% ; }
.col-2  { width: 16.666666666666668% ; }
.col-3  { width: 25% ; }
.col-4  { width: 33.333333333333336% ; }
.col-5  { width: 41.66666666666667% ; }
.col-6  { width: 50.00000000000001% ; }
.col-7  { width: 58.33333333333334% ; }
.col-8  { width: 66.66666666666667% ; }
.col-9  { width: 75% ; }
.col-10 { width: 83.33333333333333% ; }
.col-11 { width: 91.66666666666666% ; }
.col-12 { width: 99.99999999999999% ; }

/* MAIN
======================================*/
/*SCROLLS*/
::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #2d7fc4;
}
::-webkit-scrollbar {
	width: 5px;
}
/*HEADER*/
.container {
	margin: 0 auto;
	width: 85%;
}
#site-header{
	height: 100px;
	position: absolute;
	width: 100%;
	background: transparent;
	line-height: 100px;
	z-index: 10;
}
#site-header .container {
	height: 100px;
}

.logo {
	width: 90px;
	float: left;
	line-height: 0;
	margin-top: 10px;
}
.logo-desc {
	float: left;
	line-height: 23px;
	margin-top: 15px;
}
.logo-desc h2 {
	font-size: 23px;
	width: 345px;
	color: #fff;
}
.logo-desc p {
	color: #2d7fc4;
}
.search-box {
	float: right;
	position: relative;
}
.site-date {
	display: block;
	position: absolute;
	top: 20px;
	right: 0;
}
.site-date>div {
	padding: 0;
	margin: 0;
	font-size: 1em;
	font-weight: bold;
	color: #fff !important;
	text-align: right;
	line-height: 25px;
}
.search-box input {
	margin-top: 30px;
}
.search-input {
	border: 1px solid #e3e3e3;
	padding: 10px;
	width: 140px;
	float:right;
	transition: width .3s ease-out;
}
.search-input:focus {
	width: 350px;
	border-color: #2d7fc4;
}
.search-box input[type="submit"] {
	background: url("../img/search.png") #2d7fc4 no-repeat;
	background-position: 12px 12px;
	padding: 10px 20px;
	border: 1px solid #2d7fc4;
	cursor: pointer;
	float:right;
}
/*SLIDER*/
.slider {
	height: 300px;
	position: relative;
	overflow: hidden;
}
.slider:after {
	content: '';
	display: block;
	width: 100%;
	height: 400px;
	background: rgba(0,0,0,.6);
	z-index: 9;
	position: absolute;
	top: 0;
}
.slider-image {
	width: 100%;
	height: auto;
	display: block;
}
/*MAIN NAV*/
#site-nav {
	background: #2d7fc4;
}
.main-nav {
	margin: 0 auto;
	text-align: center;
}
.main-nav li {
	display: inline-block;
	position: relative;
}
.dropdown {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: visibility .2s, opacity .2s linear;
	z-index: 1;
	width: 250px;
	border: 1px solid #fff;
	border-top: none;
	background: #2d7fc4;
}
.dropdown li {
	width: 100%;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dropdown li a {
	padding: 10px 10px !important;
	text-align: left;
}
.main-nav li:hover .dropdown {
	visibility: visible;
	opacity: 1;
}
.dropdown li:hover .thrid-dropdown {
	visibility: visible;
	opacity: 1;
}
.thrid-dropdown {
	background: #2d7fc4;
	width: 250px;
	position: absolute;
	border: 1px solid #fff;
	top: 0;
	left: 250px;
	visibility: hidden;
	opacity: 0;
	transition: visibility .2s, opacity .2s linear;
}
.thrid-dropdowned:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left:8px solid #fff;
	margin-left: 3px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.dropdowned:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-top:8px solid #fff;
	margin-left: 3px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}
.main-nav li a {
	color: #e6e6e6;
	display: block;
	padding: 23px 30px;
	transition: background .3s;
}
.main-nav li a:hover {
	color: #fff;
	background: rgba(0,0,0,.2);
}
/*BREAD CRUMBS*/
#bread-crumbs {
	background: #eff8f7;
}
#bread-crumbs li {
	display: inline-block;
}
#bread-crumbs a {
	font-size: 14px;
	display: block;
	padding: 5px 0;
	color: #2d7fc4;
	text-decoration: underline;
}
/*Content*/
#site-content {
	margin-top: 35px;
}
#site-content .container {
	width: 1200px;
}
.page-title {
	margin-bottom: 20px;
}
#content {
	padding-right: 20px;
}
.content-title {
	float: left;
	padding-right: 20px;
}
.action-link {
	font-size: 13px;
	padding: 5px;
	background: #ee5c51;
	color: #fff;
}
.wide-post {
	margin-bottom: 25px;
}
.wide-post-img {
    position: relative;
    width: 290px;
    float: left;
    height: 216px;
}
.wide-post-img img {
	width: 100%;
	border: 1px solid rgba(45, 127, 196,.3);
	height: 100%;
}
.date-post {
    font-size: 11.5px;
    padding-top: 10px;
    text-align: justify;
    line-height: 15px;
    width: 140px;
    height: 34px;
    background: rgb(255 255 255 / 95%);
    position: absolute;
    bottom: 1.3px;
    left: 1.3px;
    border-top: 1px solid rgba(45, 127, 196, .3);
    border-left: 1px solid rgba(45, 127, 196, .3);
    text-indent: 7px;
    border-radius: 2px;
}
.day-post {
	color: #eb493e;
	font-size: 20px;
}
.month-post {
	text-transform: uppercase;
	padding-top: 3px;
}
.desc-post {
	width: 590px;
	padding: 0 0 0 20px;
}
.title-post {
	padding: 0 0 10px 0;
	font-size: 20px;
}
.category-post a {
	padding: 3px 6px;
	font-size: 14px;
	border-radius: 20px;
	border: 1px solid rgba(238, 92, 81, .2);
}
.content-post {
	text-align: justify;
	font-size: 14px;
}
.gallery-photos li{
	display: inline-block;
}
.gallery-element {
	position: relative;
	overflow: hidden;
}
.gallery-element a img {
	width: 200px;
	height: 200px;
}
.album-element {
	margin-left: 10px;
}
.album-element img{
	border: 1px solid rgb(45, 127, 196);
}
.gallery-element:hover .gallery-element-desc {
	top: 0;
	visibility: visible;
}
.gallery-element-desc {
	padding: 5px 10px;
	background: rgba(0,0,0,.67);
	width: 200px;
	font-size: 14px;
	overflow-y: scroll;
	visibility: visible;
	height: 200px;
	top:-200px;
	transition: .2s top ease, .2s visibility ease;
	position: absolute;
}
.album-title {
	font-size: 1.2em;
	background: rgba(0,0,0,.4);
	text-transform: uppercase;
}
.gallery-element-desc p {
	color: #fff;
}
.list-partners li {
	display: inline-block;
	margin-bottom: 20px;
	position: relative;
}
.list-partners li a{
	display: block;
	height: 170px;
	width: 200px;
	margin-right: 10px;
	border-radius: 1px;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 0 3px rgba(0,0,0,.5);
}
.list-partners img {
	width: 100%;
	height: 100%;
}
.partner-desc {
	color: #444;
	border: 1px solid rgba(45, 127, 196, 0.31);
	text-align: justify;
	padding: 5px 5px;
	margin-bottom: 10px;
}
.blue-list>li>a{
	display: block;
	position: relative;
	padding: 5px 5px 5px 10px;
	cursor: pointer;
	margin-left: 43px;
	margin-bottom: 10px;
	border: 1px solid rgba(90, 191, 222,.2);
	transition: border .3s;
	color: rgb(45, 127, 196);
}
.blue-list li {
	counter-increment: li;
}
.blue-list>li>a:after{
	display: block;
	content: counter(li);
	position: absolute;
	padding: 4px 10px;
	top: 0;
	left: -43px;
	color: #777;
	transition: color .3s, background .3s;
	border: 1px solid rgba(90, 191, 222,.2);
}
.blue-list>li>a:hover{
	border-color: rgba(90, 191, 222,.9);
}
.blue-list>li>a:hover:after{
	color: #fff;
	background: rgb(45, 127, 196);
}
.list-desc {
	margin-left: 40px;
	padding: 0 10px 10px 10px;
	display: none;
}
.trade-more {
	border-bottom: 1px dashed #999;
}
.tradeunion-img {
	display: block;
	margin: 0 auto;
}
.tradeunion-img {
	border: 1px solid rgba(45, 127, 196, .5);
}
.tradeunion-predsedatel {
	text-align: center;
	text-transform: uppercase;
	font-style: italic;
	font-size: 14px;
	padding: 5px 0;
}
.union-desc-label {
	color: rgb(45, 127, 196);
}
.newspaper-wrapper {
	padding: 0 0 10px 0;
}
.newspaper-wrapper>ul>li {
	padding: 10px 0;
	margin-bottom: 10px;
}
.newspaper-months-block {
	padding: 10px 0;
	display: none;
}
.newspaper-months-block a {
	border-bottom: 1px solid rgba(45, 127, 196, 0.5);
	opacity: .6;
}
.newspaper-months-block a:hover {
	opacity: 1;
}
.newspaper-months-block li {
	display: inline-block;
	padding: 0 5px;
}
.newspaper-months-block li:first-child {
	padding: 0;
}
.newspaper-wrapper>ul>li:first-child {
	padding: 0 0;
}
.document-year-title ul>li {
	display: block;
	padding: 0;
	margin-bottom: 10px;
}
.newspaper-year-title>a,
.document-year-title>a {
	font-size: 1.7em;
	border-bottom: 1px solid rgba(45, 127, 196, 0.1);
	cursor: pointer;
	color: rgba(45, 127, 196, 0.6);
}
.document-category-title {
	font-size: 1.2em;
	margin-left: 10px;
	cursor: pointer;
}
.document-list-wrapper a {
	margin-left: 20px;
	border-bottom: 1px dashed #ccc;
	color: #333;
	display: inline;
}
.document-list-wrapper {
	list-style: circle !important;
}
.document-list-wrapper li {
	padding: 0;
	list-style: circle !important;
	margin-bottom: 25px !important;
}
.agreement-block {
	display: block;
}
.agreement-block li{
	display: block;
	padding: 0 !important;
}
.agreement-block a {
	margin-left: 0;
	font-size: 1em;
}
.newspaper-year-title>a:hover,
.document-year-title>a:hover {
	border-color: rgba(45, 127, 196, 0.5);
	color: #2d7fc4;
}
.folders-container {
	padding-bottom: 100px;
}
.folder {
	display: inline-block;
	padding: 0 !important;
	margin-right: 15px;
}
.folder a {
	display: block;
	width: 150px;
	height: 150px;
	position: relative;
	background: url(/img/folder-icon.png) no-repeat;
	background-size: cover;
}
.folder-title {
	text-transform: uppercase;
	position: absolute;
	top: 125px;
	padding: 0 4px;
	left: 0;
	display: block;
	width: 150px;
	text-align: center;
	font-size: .78em;
}
/*Sidebar*/
.sidebar-block {
	background: rgba(45, 127, 196, 0.05);
	border: 1px solid rgba(45, 127, 196, 0.31);
	margin-bottom: 15px;
}
.side-element-margin {
	margin-bottom: 15px;
}
.sidebar-container {
	padding: 15px;
}
.sidebar-container h3 {
	color: #444;
	font-size: 18px;
}
.show-login-panel {
	display: block;
	border: 1px solid rgba(45, 127, 196, .1);
	border-radius: 2px;
	color: rgba(0,0,0,.3);
	cursor: pointer;
	text-align: center;
	padding: 0 3px;
	font-size: 14px;
	margin-bottom: 3px;
}
.show-login-panel:hover {
	border: 1px solid rgba(45, 127, 196, 0.31);
	color: rgba(0,0,0,.7);
}
.login-panel-title {
	color: #fff !important;
	text-align: center;
}
.login-panel {
	padding: 10px;
	display: none;
	background: #2d7fc4;
}
#login-form input {
	background: transparent;
	color: #fff;
	border: 1px solid transparent;
	padding: 10px;
	display: block;
	width: 100%;
	margin-top: 15px;
	font-size: 14px;
	border-bottom-color: #fff;
}
#login-form input:focus {
	border-color: #fff;
}
#login-form input::-webkit-input-placeholder {
	color: #fff;
}
.login-button {
	background: rgba(0,0,0,.2) !important;
	border-color: transparent !important;
	color: #fff;
	cursor: pointer;
}
.login-button:hover {
	border-color: #fff !important;
}
/*history*/
.history img {
	float: left;
	padding: 10px 15px 5px 0;
}
.history p {
    text-align: justify;
    margin-bottom: 3px;
	text-indent: 20px;
}
/*News Feed*/
.news-feed {
	background: rgba(45, 127, 196, 0.05);
	border: 1px solid rgba(45, 127, 196, 0.31);
	padding: 15px 0 15px 10px;
	border-radius: 3px;
}
.news-feed h3 {
	padding-left: 3px;
	margin-bottom: 10px;
}
.pagination {
	text-align: center;
	display: block;
	margin-bottom: 10px
}
.pagination li {
	display: inline-block;
	margin-left: 3px;
}
.pagination li a {
	display: block;
	padding: 5px 12px;
	color: #555;
	border: 1px solid #ccc;
}
#news-year-form select {
	-webkit-appearance: none;
	display: block;
	margin: 10px auto;
	padding: 7px 12px;
	border-radius: 0px;
	color: #555;
	font-size: .8em;
	border-color: #2d7fc4;
	color: #2d7fc4;
	cursor: pointer;
}
#news-year-form select:hover{
	background: #2d7fc4;
	color: #fff;
}
.active-news-page a{
	background: #2d7fc4;
	color: #fff !important;
	border-color: #2d7fc4 !important;
}
#news-feed-table {
	display: block;
	text-align: left;
	font-size: 15px;
}
#news-feed-table a {
	color: #444;
	text-decoration: underline;
}
#news-feed-table a:hover {
	color: #2d7fc4;
}
#news-feed-table tr {
	display: block;
	margin-bottom: 7px;
}
#news-feed-table th {
	font-weight: normal;
}
.news-feed-date {
	width: 140px;
	color: #2d7fc4;
}
.staff-person {
	padding: 5px 10px;
	margin-bottom: 10px;
}
.staff-person img {
	width: 300px;
	height: 350px;
	padding-right: 10px;
	display: block;
	float: left;
}
.staff-desc h3 {
	text-transform: uppercase;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 2px;
}
.staff-post {
	font-style: italic;
	font-size: 16px !important;
	font-weight: 400 !important;
}
/*Sidebar Photo Galery*/
.sidebar-photo-element {
	margin: 10px 0 18px;
}
.sidebar-photo-element img {
	float: left;
	padding-right: 10px;
	width: 80px;
	height: 70px;
}
.sidebar-photo-element a {
	text-decoration: underline;
	font-size: 14px;
	display: block;
	line-height: 20px;
	color: #444;
}
/*Sidebar profunion partners*/
.profunion li {
	margin: 7px 0;
}
.profunion li:first-child {
	margin-top: 7px;
}
.profunion a img{
	width: 265px;
	margin: 0 auto;
	display: block;
	border-radius: 2px;
	border: 1px solid rgba(45, 127, 196, 0.31);
	height: 200px;
}
/*Sidebar video reports*/
.side-video-block {
	margin-top: 15px;
	font-size: 13px;
}
.video-wrapper {
	width: 100%;
	height: 140px;
	background: #ccc;
	position: relative;
}
.video-page-wrapper {
	height: 300px !important;
}
.video-wrapper iframe {
	width: 100%;
	height: 100%;
}
.side-video-desc{
	padding: 5px 0;
	display: block;
	text-decoration: underline;
	color: #444;
}
.side-video-date {
	color: #2d7fc4;
}
/*Footer*/
#site-footer {
	background: #2d7fc4;
	margin-top: 10px;
	padding-top: 20px;
	color: #fff !important;
}
.footer-site-about {
	padding: 0 25px 0 0;
}
#site-footer h3 {
	color: #fff;
}
#site-footer hr {
	border:0;
	border-top: 1px solid rgba(0,0,0,.2);
	border-bottom: 1px solid rgba(255,255,255,.2);
	margin: 10px 0;
}
.footer-logo-desc h2,
.footer-logo-desc p{
	color: #fff !important;
}
.company-address {
	font-size: 14px;
	color: rgba(255,255,255,.8);
	margin: 10px 0 20px 0;
}
.footer-desc {
	color: rgba(255,255,255,.8);
	font-size: 14px;
}
.footer-copyright {
	color: #fff;
}
.footer-site-inform li:before {
	color: #fff !important;
	content: "■";
	padding-right: 10px;
	font-size: 12px;
}
.footer-site-inform a {
	text-decoration: underline !important;
	color: #fff;
	font-size: 14px;
}
.feedback h3 {
	font-size: 15px;
	text-align: center;
}
.feedback input, .feedback textarea, .feedback button {
	display: block;
	margin: 0 auto;
	width: 330px;
	border: none;
	resize: none;
	padding: 10px;
	color: #fff;
	background: transparent;
	border: 1px solid transparent;
	border-bottom-color: #fff;
	margin-bottom: 10px;
}
.feedback input:focus, .feedback textarea:focus {
	border: 1px solid #fff;
}
.feedback input::-webkit-input-placeholder, .feedback textarea::-webkit-input-placeholder{
	color: #fff;
}
.feedback input {
	font-size: 14px;
	padding: 10px;
}
.feedback textarea {
	height: 100px;
	border: 1px solid #fff;
}
.feedback button {
	border: 1px solid transparent;
	cursor: pointer;
	background: rgba(0,0,0,.2);
	font-size: 14px;
	color: #fff;
}
.feedback button:hover {
	border: 1px solid #fff;
}
.disclamer {
	width: 300px;
	line-height: 15px;
	color: #50f395;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
}
.feedback-send, .feedback-not-send {
	display: none;
	width: 300px;
	text-align: center;
	color: #50f395;
	border: 1px solid #50f395;
	margin: 5px auto;
}
/* CSS QUERIES
======================================*/
/*1214px*/
@media screen and (max-width: 1214px){
	.container {
		width: 95%;
	}
	.main-nav li a {
		padding: 23px 25px;
	}
}
/*1024px*/
@media screen and (max-width: 1024px){
	.container {
		width: 98%;
	}
	.main-nav li a {
		padding: 23px 20px;
	}
}
/*960px*/
@media screen and (max-width: 960px){
	.search-input:focus {
		width: 280px;
	}
}
/*910px*/
@media screen and (max-width: 910px){
	#site-content .container {
		width: 90%;
	}
	.slider-image {
		height: 100%;
	}
	#site-header {
		height: 260px;
	}
	.profunion a img {
		width: 200px;
		margin: 0 auto;
	}
	.video-wrapper {
		width: 500px;
		height: 250px;
		margin: 0 auto;
	}
	.side-video-block {
		text-align: center;
	}
	#site-header .container {
		margin-top: 35px;
	}
	.logo {
		float: none;
		margin: 15px auto;
	}
	.logo-desc {
		margin: 0 auto;
		float: none;
		text-align: center;
	}
	.logo-desc h2 {
		font-size: 25px;
		line-height: 30px;
		margin: 0 auto;
	}
/*	.logo-desc p {
		font-size: 14px;
	}*/
	.search-box {
		display: none;
	}
	/*.search-box input {
		margin-top: 15px;
	}
	.search-input,
	.search-input:focus {
		width: 100%;
	}
	.search-box input[type="submit"] {
		display: none;
	}*/
	.main-nav li a {
		padding: 23px 10px;
	}
	[class*="col-"] {
		width: 100%;
	}
	#content {
		padding-right: 0;
	}
	.wide-post-img {
		width: 25%;
	}
	.desc-post {
		width: 75%;
		padding: 0 20px 0 20px;
	}
	.category-post a {
		padding: 1px 4px;
	}
	.show-login-panel {
		display: none;
	}
	.photo-galery,
	.events {
		margin-top: 15px;
	}
	.footer-site-about {
		padding: 0;
	}
	.company-address {
		text-align: center;
	}
	.footer-site-inform {
		padding-top: 10px;
		margin-top: 10px;
		border-top: 1px solid rgba(0,0,0,.2);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
	}
}


.video {
	display: none;
}

p {
    text-align: justify;
    margin-bottom: 3px;
	text-indent: 18px;
}