a.albumPreview {
	display: block;
	width: 500px;
	margin: 30px auto;
	padding: 10px 0px;
	background-color: #405565;
	border: 2px solid #99aebe;
	border-radius: 25px;
	box-shadow: 2px 6px 4px gray;
	color: white;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

a.albumPreview:hover {
	background-color: #566B7B;
	border-color: white;
	color: white;
}
a.albumPreview:hover .albumLabel {
	text-decoration: underline;
}

a.albumPreview * {
	vertical-align: middle;
}

a.albumPreview .albumLabel {
	margin-left: 20px;
	font-weight: bold;
	font-size: 33px;
	color: white;
}



#albumOverlay {
	display: none;
	position: fixed;
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
	background-color: black;
}

#albumOverlay .closeBtn {
	display: block;
	width: 36px;
	height: 36px;
	background-image: url(./gfx/icon_overlay_close.png);
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 20;
}

#albumOverlay .scrollSelector {
	float: left;
	height: 100%;
	padding: 0 10px;
	width: 150px;
	background-color: white;
	background-image: url(./gfx/background_albumviewer_navi.png);
	background-repeat: repeat-y;
	overflow: auto;
	overflow-y: scroll;
}

#albumOverlay .scrollSelector a {
	display: block;
}

#albumOverlay .scrollSelector a img {
	display: block;
	margin: 15px auto;
	padding: 3px;
	background-color: white;
	border: 1px solid gray;
	opacity: 0.85;
}

#albumOverlay .scrollSelector a:hover img {
	box-shadow: 0px 0px 15px black !important;
	box-shadow: 0px 0px 15px black;
	opacity: 1;
}

#albumOverlay .scrollSelector a.selected img {
	background-color: black;
	box-shadow: 0px 0px 5px black;
	opacity: 1;
}

#albumOverlay .viewHeader {
	display: none;
	position: absolute;
	left: 170px;
	top: 0px;
	padding: 6px 20px;
	background-image: url("./gfx/banner_overlay_bg.png");
	background-repeat: repeat;
	cursor: default;
	z-index: 15;
}

#albumOverlay .viewHeader .albumCaption {
	display: inline;
	font-weight: bold;
	font-size: 30px;
	line-height: 32px;
	color: white;
	text-shadow: 1px 2px 4px black;
	text-decoration: underline;
}

#albumOverlay .viewHeader .activeCounter {
	display: inline;
	font-size: 20px;
	line-height: 32px;
	color: #222222;
	margin-left: 20px;
}

#albumOverlay .viewHeader .description {
	display: inline;
	font-size: 26px;
	line-height: 32px;
	color: black;
	margin-left: 25px;
}

#imageViewContainer {
	height: 100%;
	margin-left: 170px;
	text-align: center;
	overflow: hidden;
}

#imageView {
	display: table;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#imageView .wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	overflow: hidden;
}

#imageView img {
	display: block;
	margin: auto;
	cursor: pointer;
}

