/* Basic Example CSS */

.wrapper { width: 640px; margin: 0; color: white; }

/* ===== Scrollable CSS ===== */
/* Primary Container */
div.scrollable {
	position: relative; 
	width: 640px;
	height: 450px;
	overflow: hidden;
	margin-bottom: 8px;
}

/* Items Container */
div.scrollable div.items { 
	width: 20000em;
	position: absolute;
	clear: both;
	background-color: black;
}

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	width: 640px;
	height: 450px;
	padding: 0;
	margin: 0;
}

/* Next and Previous buttons */
a.next {
	float: right;
	cursor:pointer;
	color: white;
	font-family: lucida grande;
	font-size: 10px;
}

a.prev {
	float:left;
	cursor:pointer;
	color: white;
	font-family: lucida grande;
	font-size: 10px;
}

a.prev:hover, a.next:hover { color: gray; }

#artists_description {
	font-family: Lucida Grande;
	width: 610px;
	height: auto;
	background-color: white;
	padding: 4px 15px 5px 15px;
	margin-bottom: 8px;
}

#artists_viewer {
	width: 640px;
	height: 320px;
	margin-bottom: 8px;
	background-color: black;
}