@font-face {
	font-family: 'Montserrat-Regular';
	src: url('Montserrat-Regular.eot?#iefix') format('embedded-opentype'),  url('Montserrat-Regular.woff') format('woff'), url('Montserrat-Regular.ttf')  format('truetype'), url('Montserrat-Regular.svg#Montserrat-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}
html {
	height: 100%;
}
*
{
	margin: 0;
}
body 
{
	font: 11px 'Montserrat-Regular';
	color: #fff;
	/*background: #090909;*/
	background: url('../img/background.jpg');
	background-size: cover;
	background-position: 0 60px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
/*.main body
{

}*/
form {
	padding: 0;
	margin: 0;
}
a, a:visited {
	color: #fff;
}
input[type=checkbox] {
	vertical-align: middle;
}
/* header */
#header 
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	color: #fff;
	background-color: #090909;
}
#siteName
{
	display: flex;
	align-items: center;
	flex-grow: 0;
	width: 90px;
	padding-left: 52px;
	margin: 8px;
	height: 44px;
	background: url(../img/bach.jpg) no-repeat;
}
#navigation
{
	margin: 0 80px;
	display: flex;
	flex-basis: auto;
	flex-grow: 1;
	font-size: 14px;
	list-style: none;
}
#navigation li
{
	display: flex;
	flex-basis: auto;
	flex-grow: 1;
	padding: 0 20px 0 0;
}

#header .mobileMenu {
	display: none;
}

#header .langWrap
{
	flex-grow: 0;
	display: flex;
	justify-content: flex-end;
}
.lang
{
	margin-right: 20px;
	border: none;
	color: #666;
	font-size: 16px;
	text-transform: uppercase;
	background-color: transparent;
}

/*
--------------------------------------------------------------*/
#center
{
	flex-grow: 1;
	width: 70%;
	margin: auto;
}
h1 {
	margin: 50px 0;
	font-size: 50px;
	line-height: 61px;
	text-transform: uppercase;
}
.main h1
{
	display: none;
}
#navigation-line 
{
	margin-top: 50px;
	font-size: 15px;
}
.main #navigation-line 
{
	display: none;
}
#navigation-line a
{
	font-weight: bold;
	color: #666;
	text-decoration: none;
}
#navigation-line a.active
{
	color: #fff;
}

@media only screen and (max-width: 1000px)
{
	#header .mobileMenu 
	{
		margin-right: 18px;
		height: 23px;
		width: 25px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
		position: relative;
	}
	#header .mobileMenu div {
		height: 3px;
		width: 25px;
		background-color: #fff;
	}
	#navigation.opened {
		display: flex;
	}
	#navigation 
	{
		display: none;
		margin: 0;
		padding: 0;
		background: #090909;
		position: absolute;
		top: 60px;
		z-index: 10;
		flex-direction: column;
		height: auto;
		width: 100%;
	}
	#navigation li
	{
		font-size: 18px;
		line-height: 22px;
		padding: 0 0 40px 30%;
	}
	#header .mobileMenu.opened div#menuR1 {
		transform: rotate(135deg);
	}
	#header .mobileMenu.opened div 
	{
		position: absolute;
		top: 10px;
		width: 24px;
		transform: rotate(45deg);
	}
	#header .langWrap
	{
		flex-grow: 1;
	}
	#navigation-line 
	{
		margin-top: 20px;
	}
	h1 {
		margin: 20px 0;
		font-size: 25px;
		line-height: 35px;
	}
	#center
	{
		width: 90%;
	}
}
/*
-------------------------------------------------------------------------*/
#dedication
{
	text-align: center;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 50px;
}
#dedication .about
{
	margin-bottom: 18px;
	font-weight: bold;
}
#dedication .about:after
{
	content: "";
	display: block;
	background: #1f1f1f;
	width: 108px;
	height: 3px;
	margin: auto;
	margin-top: 19px;
}
#dedication .years
{
	margin-bottom: 74px;
}
#dedication .photo-wrap
{
	position: relative;
}
#dedication .photo-wrap div 
{
	width: 300px;
	height: 300px;
	margin: auto;
	border-radius: 150px;
	background: url('../img/vladimir_zimmerling.jpg');
	background-size: cover;
	background-position: -125px 0px;
}
#dedication .photo-wrap:after
{
	display:block;
	content: "";
	position: absolute;
	top: 100px;
	width: 100%;
	height: 100px;
	background-color: rgba( 255, 255, 255, 0.1 );
}
/**/
#contentWrapper
{
}

/*
-------------------------------------------------------------*/
.album {
	margin-bottom: 50px;
	position: relative;
}
.leftarrow, .rightarrow
{
	position: absolute;
	width: 22px;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	cursor: pointer;
}
.leftarrow
{
	left: 20px;
}
.rightarrow
{
	right: 20px;
}
.leftarrow:before, .rightarrow:before, .leftarrow:after, .rightarrow:after
{
	content: "";
	display:block;
	height: 28px;
	width: 4px;
	background: #fff;
}
.leftarrow:before
{
	margin-top:-3px;
	margin-left: 8px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.leftarrow:after
{
	margin-top:-10px;
	margin-left: 8px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
}
.rightarrow:before
{
	margin-top:-3px;
	margin-left: 8px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
}
.rightarrow:after
{
	margin-top:-10px;
	margin-left: 8px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

.album div 
{
	padding: 0 60px;
	overflow: hidden;
	height: 300px;
}
.album div span
{
	height: 300px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
}
.album div span img
{
	max-width: 384px;
	max-height: 300px;
}
#slideShow img
{
	max-height: 80%;
	max-width: 60%;
}

@media only screen and (max-width: 600px)
{
	.leftarrow
	{
		left: 10px;
	}
	.rightarrow
	{
		right: 10px;
	}
	.album div 
	{
		padding: 0 40px;
	}
	.album div span
	{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.album div span img
	{
		max-width: 100%;
	}
}

/*
-------------------------------------------------------------------------*/
.audioAlbum h3
{
	font-size: 20px;
	font-weight: bold;
	padding-top: 40px;
}

.audioAlbum div {
	display: inline-block;
	vertical-align: top;
	width: 300px;
	height: 100px;
	margin: 40px 40px 0px 0;
}
audio 
{
	max-width: 100%;
	display: block;
	margin-bottom: 10px;
}
@media only screen and (max-width: 400px)
{
	.audioAlbum div {
		display: block;
		width: 100%;
		margin: 20px 0 0 0;
	}
}
/* footer
---------------------------------------------------------------------------------*/
div#copyright 
{
	text-align: center;
	margin: 48px 0 21px 0;
}
/* PopUp
-------------------------------------------------------------------------------- */
.popupBody {
	height: auto;
	margin: 0;
	padding: 0;
}
.popupBody .tree {
	border: 1px solid #EFEFEF;
}
#popupPage {
	margin: 20px 10px;
	border: 1px solid #AAA;
	position: relative;
}
#popupClose
{
	position: absolute;
	top: 10px;
	right: 10px;
}
#popupClose span {
	font-size: 50px;
	line-height: 20px;
}

/*
---------------------------------------------------------------------------------*/
#content
{
	font-size: 14px;
}
#content div, #content p
{
	padding-bottom: 10px;
}
#content li
{
	margin-bottom: 8px;
}
#content div.hiddenCollection
{
	padding: 0;
}
#content a, .content a:visited {
	color: #999;
	font-weight: bold;
	cursor: pointer;
}
#content img
{
	max-width: 100%;
}
.albumLinkWrap
{
	vertical-align: top;
	text-align: center;
	display: inline-block;
	width: 300px;
	max-width: 100%;
	margin: 0 20px 20px 0;
}
#content .albumLinkWrap a
{
	color: #fff;
}
#content .albumLinkWrap a label
{
	cursor: pointer;
}
.albumLinkWrap img
{
	max-height: 200px;
}
/* новости
------------------------------------------------------------------------------*/
.newsTitle
{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}
.newsShortText
{
	margin-bottom: 40px;
}
dd.newsShortText:after {
	display: block;
	content: "";
	clear: both;
}
.newsFullTextLink:before, .back-link:before {
	content: "";
	display: block;
	clear: both;
	margin-bottom: 10px;
}
.newsFullTextLink a, .newsFullTextLink a:visited, .back-link, .back-link:visited
{
	text-transform: capitalize;
	font-size: 18px;
	color: #fff !important;
}

#all-news-form .FilterPage, #all-news-form .ToolBarCell, #all-news-form .pagerMenu 
{
	display: none;
}

/*
-------------------------------------------------------------*/
.txtHighlighted, .txtInfo 
{
	font-style: italic;
	color: #FFFF33;
}
.errorclass
{
	border-color: #f00;
}
.button
{
	border: 1px solid #fff;
}
.button input, .buttonDisabled input 
{
	font: 14px 'Montserrat-Regular';
}