﻿/***************** IMAGE ALBUM ***************/

.albumImageBack {
	background: url(images/backAlbumList.png) no-repeat;
	width: 241px;
	height: 201px;
	display: inline-block;
	*display: inline;
	zoom: 1;
	overflow: hidden;
	font-family: b koodak, tahoma, arial;
	text-align: center;
}
.albumWH {
	width: 218px;
	height: 179px;
}
.album-minWH {
	min-width: 218px;
	min-height: 179px;
}

.albumImage {
	background-color: white;
	/*border: solid 1px #c7c7c7;*/
	overflow: hidden;
	cursor: pointer;
}
.albumImage .image {
	background-color: green;
	margin-bottom: 0;

	transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
}
.albumImage .title {
	background-color: black;
	opacity: 0.55;
	-mos-opacity: 0.55;
	

	transition: all .5s;
	-webkit-transition: all .5s;
	-ms-transition: all .5s;

	display: table;
	width: 100%;
	text-align: center;

	height: 100%;
	margin-top: -50px;

}

.albumImage .title span
{
	font-weight: bold;
	color: #31B2F3;
	line-height: 20px;
	display: table-cell;
	padding: 0px;
	vertical-align: top;

	transition: vertical-align 1s;
	font-size: 9pt;
}
.albumImage:hover .title span 
{
	vertical-align: middle;
	font-size: 12pt;

}
.albumImage:hover .title{
	margin-top: -187px;
	opacity: 0.8;
	-mos-opacity: 0.8;
}
.albumImage:hover .image {
	transform: scale(1.5,1.5) rotate(0deg);
	-webkit-transform: scale(1.5,1.5) rotate(0deg);
	-ms-transform: scale(1.5,1.5) rotate(0deg);
}

.albumListItem
{
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-left: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: right;
	text-decoration: none;
}
.imageAlbumContainer {
	vertical-align: top;
	padding-right: 10px;
	padding-top: 10px;
}

/********************************************/
