@charset "utf-8";
/* CSS Document */

.galleries .album{
	background: #eee;
	border: 1px dotted #aaa;
	text-decoration: none;
	
	display: block;
	margin: 0 20px 20px 0;
	padding: 10px;
	
	float: left;	
	width: 150px;
	overflow: hidden;
}
/*
.galleries .album .cover{
	width: 100%;
	height: 150px;
	
	overflow: hidden;
}
*/
.galleries .album .cover img{
	border: 0;
	width: 150px;
	height: 90px;
}

.galleries .album .caption{
	color: #777;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	
	height: 30px;
	padding: 10px 0 0 0;
}


/* RollOver */

.galleries .album:hover{
	background: #f7b217;
	border: 1px dotted #d39713;
}

.galleries .album:hover .caption{
	color: #000;
}