
/*
** font face
*/

@font-face {
	font-family: 'Vogel';
	src: url('../fonts/vogel.eot');
	src: local('☺'), 
		url('../fonts/vogel.woff') format('woff'), 
		url('../fonts/vogel.ttf') format('truetype'), 
		url('../fonts/vogel.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*
** utils
*/

.rounded {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.shaded {
	-moz-box-shadow:rgba(0,0,0,0.5) 0 4px 18px;
	-webkit-box-shadow:rgba(0,0,0,0.0.5) 0 4px 18px;
	-khtml-box-shadow:rgba(0,0,0,0.5) 0 4px 18px;
	box-shadow:rgba(0,0,0,0.5) 0 4px 18px;
}

.shaded-small {
	-moz-box-shadow:rgba(0,0,0,0.5) 0 2px 9px;
	-webkit-box-shadow:rgba(0,0,0,0.0.5) 0 2px 9px;
	-khtml-box-shadow:rgba(0,0,0,0.5) 0 2px 9px;
	box-shadow:rgba(0,0,0,0.5) 0 2px 9px;
}

.transparent {
	opacity : 0.2;
	-moz-opacity : 0.2;
	-ms-filter: "alpha(opacity=20)";
	filter : alpha(opacity=20);
}

/*
** common
*/

html,body {
	font-family: 'Vogel', Verdana, Arial, Helvetica, sans-serif; 
}

html {
	font-size: .85em;
	letter-spacing: 0.06em;
	line-height: 2em;
}

h1, h2, h3, h4, h5, h6, strong {
	color: #000;
	font-weight: normal;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	color: #000;
	text-transform: uppercase;
}

nav ul, nav ol {
	list-style: none;
	list-style-image: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: #000;
}

a:hover {

}

a:focus {
    outline: none;
}

/*
** layout
*/

#main {
	max-width: 100em;
	margin: auto;
}

#header {
	position: fixed;
	font-size: 0.9em;
	padding: 10em 2em 4em 2em;
	z-index: 999;
}

#content {
	position: relative;
	padding: 3.5em 0 4em 0;
	margin-left: 19em;
	margin-right: 4em;
}

#footer {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 100%;
	font-size: 0.7em;
	padding: .5em;
	text-align: center;
	background: #fff;
	z-index: 998;
}

/*
** header
*/

#header h1.title {
	font-size: 1.7em;
	font-weight: normal;
}

#header .navigation {
	padding: 2em 0em;
	line-height: 1.8em;
}

#header .navigation .menu {
	margin-bottom: 1em;
}

#header .navigation .menu .selected a,
#header .navigation .menu a:hover {
	text-decoration: underline;
}

#header .navigation .langs .item {
	display: inline;
	margin-right: 0.5em;
}

/*
** content
*/

#content .content-loader {
	background-position: 50% 20em;
}

#content .content-content {

}

#content .content-content h2.title {
	display: none;
}

/*
** loader
*/

.loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff url('../img/ajax-loader.gif') 50% 50% no-repeat;
	z-index: 1;
}

/*
** top
*/

.top {
	display: none;
	padding-right: 15px;
	background: transparent url('../img/top.png') top right no-repeat;
}

/*
** back
*/

.back {
	font-size: 0.8em;
	padding-left: 15px;
	background: transparent url('../img/back.png') left 40% no-repeat;
	margin-bottom: 1em;
}

/*
** mosaic
*/

.mosaic .item {
	width: 33%;
	float: left;
}

.mosaic .item .image {
	line-height: 0;
	overflow: hidden;
}

.mosaic .item .image a {
	position: relative;
	display: block;
}

.mosaic .item .image img {
	width: 100%;
	height: auto!important;
}

.mosaic .item .image .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.mosaic .item .image .overlay-round {
	position: absolute;
	top: -1%;
	left: -1%;
	width: 102%;
	height: 102%;
}

.mosaic .item .image .overlay-round .off,
.mosaic .item .image .overlay-round .on {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mosaic .item .image .overlay-simple {
	background: transparent url('../img/overlay-simple.png');
}

.mosaic .item .name {
	font-size: .85em;
	line-height: 3em;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow:hidden;
	hyphens: auto;
	-moz-hyphens: auto;
	font-weight: normal;
	text-align: center;
}

.mosaic .item .name:before,
.mosaic .item .name:after {
	content: '-';
}


/*
** pagination
*/

.pagination {
	font-size: 0.8em;
	padding: 4em 0;
	text-align: center;
}

.pagination .previous {
	margin-left: .5em;
}

.pagination .next {
	margin-right: .5em;
}

.pagination .digit,
.pagination .selected {
	margin: 0 .5em;
}

.pagination a:hover,
.pagination .selected {
	text-decoration: underline;
}

/*
** media queries
*/

@media only screen and (max-width: 800px) {

	html {
		font-size: 1em;
	}

	#header {
		position: static;
		padding: 2em 1em;
	}
	
	#header .navigation .menu .item {
		display: inline;
	}

	#header .navigation .menu .item:after {
		content: ' / ';
	}

	#header .navigation .menu .item:last-child:after {
		content: '';
	}

	#content {
		margin: 0em;
		padding: 1em;
	}
	
	#header .navigation {
		padding: 1em 0em 0em;
	}

	.mosaic .item {
		width: 100%;
	}
}

@media only screen and (min-width: 800px) {
	.mosaic .item {width: 50%;}
}

@media only screen and (min-width: 1000px) {
	.mosaic .item {width: 30%;}
}


/*
** fullscreen-image-player
*/

.jquery-fullscreen-image-player {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 999;
}

.jquery-fullscreen-image-player .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #000;
}

.jquery-fullscreen-image-player .loading {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	width: 24px;
	height: 24px;
	background: transparent url('../img/ajax-loader-black.gif') no-repeat;
	z-index: 2;
}

.jquery-fullscreen-image-player .image {
	position: absolute;
	top: 0;
	left: 2;
	z-index: 3;
}

.jquery-fullscreen-image-player .buffer {
	display: none;
}

.jquery-fullscreen-image-player .info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 4;
}

.jquery-fullscreen-image-player .navigation {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.jquery-fullscreen-image-player .navigation .close,
.jquery-fullscreen-image-player .navigation .previous,
.jquery-fullscreen-image-player .navigation .next {
	position: absolute;
	top: 0;
	width: 30%;
	height: 100%;
	overflow: hidden;
	text-indent: 100%;
	cursor: pointer;
	background: #000;
	opacity : 0;
	-moz-opacity : 0;
	-ms-filter: "alpha(opacity=0)";
	filter : alpha(opacity=0);
}

.jquery-fullscreen-image-player .navigation .close {
	left: 30%;
	width: 40%;
	z-index: 50;
	cursor: url('../img/cursor-close.png'), crosshair;
}

.jquery-fullscreen-image-player .navigation .previous {
	left: 0;
	z-index: 51;
	cursor: url('../img/cursor-previous.png'), crosshair;
}

.jquery-fullscreen-image-player .navigation .next {
	right: 0;
	z-index: 52;
	cursor: url('../img/cursor-next.png'), crosshair;
}

/*
** underline
*/
.jquery-underline-container {
	position: relative;
}

.jquery-underline-container,
.jquery-underline-container:hover {
	text-decoration: none!important;
}

.jquery-underline {
	position: absolute; 
	display: block;
	top: 0px; 
	left: 0px; 
	width: 100%; 
	height: 100%; 
	border-bottom: 4px solid #898989;
}

