#viewport{
	width: 176px; /* Defines the size of the visible part of the carousel
		Attention : if you only want to see plain items in the viewport,
		the width of the viewport should take into account of :
		- the items width
		- the right and left padding of items
		- the number of items you want to see in the viewport
	 */
	overflow:hidden; /* Hides extra elements, those outside the viewport area */
	/* Fix for IE */
	position:relative;
}

#viewport ul {
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
	margin: 0;
}

#viewport li {
	width: 85px; /* Defines the size of inner element */
	height: 85px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	
	/* Cosmetic */
	background-color: #fff;;
	margin: 0;
	padding: 3px;
	text-align:center;
}
#viewport li img {
	width: 85px; /* Defines the size of inner element */
	height: 85px;
}

/* Cosmetic */
.simplePrevious, 
.simpleNext,
.more {
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: none;	
}


#album-container ul.album {
	width: 100%;
}
#album-container ul.album li {
	float:left;
	margin-right: 18px;
	margin-bottom: 18px;
	width: 170px;
}
#album-container .album-list {
	width: 100%;
}
#album-container .album-list li {
	float:left;
	width: 250px;
}
#album-container .album-list a:link {
	text-decoration: none;
}
#album-container .album-list-alt a:link {
	text-decoration: none;
	color: #ccc;
}
#album-container .album-list-alt a:visited,
#album-container .album-list-alt a:hover {
	text-decoration: none;
	color: #fff;
}

#album-container .imgteaser {
	margin: 0;
	overflow: hidden;
	float: left;
	position: relative;
}
#album-container .imgteaser a img {
	float: left;
	margin: 0;
	border: none;
	padding: 5px;
	background: #F0F0F0;
}
#album-container .imgteaser a {
	text-decoration: none;
	float: left;
}
#album-container .imgteaser a:hover {
	cursor: pointer;
}
#album-container .imgteaser a .desc {
	display: block;
	font-size: 0.8em;
	background: #111;
	filter:alpha(opacity=65);
	opacity:.65;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; /*--IE 8 Transparency--*/
	color: #fff;
	position: absolute;
	bottom: 5px;
	left: 5px;
	padding: 6px 10px 6px 10px;
	margin: 0;
	width: 140px;
	border-top: 1px solid #999;
}

#gallery-container {
	width: 100%;	
}

ul.thumbs {
	clear: both;
	margin: 0;
	padding: 0;
	
}
ul.thumbs li {
	float: left;
	padding: 0;
	margin: 5px 10px 5px 0;
	list-style: none;
}
a.thumb {
	padding: 0px;
	display: block;
}
ul.thumbs li.selected a.thumb {
	background: #000;
}
a.thumb:focus {
	outline: none;
}
ul.thumbs img {
	border: none;
	display: block;
	padding: 5px;
	background: #F0F0F0;		
}
