@charset "UTF-8";
/* CSS Document */


#slider {
	/* You MUST specify the width and height */
	width:800px;
	height:291px;
	position:relative;
	overflow:hidden;
	margin: 0 0 0 33px;
}
#mask-gallery {
	overflow:hidden;
}
#gallery {
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	z-index:0;
	/* width = total items multiply with #mask gallery width */
	width:900px;
	overflow:hidden;
}
#gallery li {
	/* float left, so that the items are arrangged horizontally */
		float:left;
}
#mask-excerpt {
	/* Set the position */
	position:absolute;
	top:213px;
	left:12px;
	z-index:500px;
	/* width should be lesser than #slider width */
	width:600px;
	overflow:hidden;
}
#excerpt {
	/* Opacity setting for different browsers */
	/*filter:alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;*/
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	/* Set the position */
	z-index:10;
	position:absolute;
	top:0;
	left:0;
	/* Set the style */
	width:600px;
	/*background-color:#000;*/
	overflow:hidden;
	font-size:40px;
	color:#fff;
}

#excerpt h2 {
	font-weight: normal;
}
#excerpt h2 em {
	font-weight: normal;
}

#excerpt li {
	padding:12px;
}
.clear {
	clear:both;
}

#slider-buttons {
	position: absolute;
	margin: 12px 0 0 700px;
}

#slider-buttons a {
	color: #000;
	background-image: url(../includes/slider-button-bg.png);
	text-decoration: none;
	padding: 3px 4px;
	font-size: 10px;
}

#slider-buttons a:hover {
	background-color: #fff;
	color: #000;
}
