/* container style */
#pod_container {
	width: 490px;
	height: 175px;
	margin: 0;
	padding: 0;
	border: 1px solid #333;
	text-align: left;
	overflow: hidden;
}
/* full photo container style */
#photo-container {
	width: 506px;
	overflow: hidden;
}

/****************
 =carousel styles
 ****************/
/* default styles  */
.jcarousel-container { position: relative; }
.jcarousel-clip { z-index: 2; padding: 0; margin: 0; overflow: hidden; position: relative; width: 483px; }
.jcarousel-list { z-index: 1; overflow: hidden; position: relative; top: 0; left: 0; margin: 0; padding: 0; }
 
 /* customize items to scroll. NOTE: height and width required */
#container ul#slider li,
.jcarousel-item { 
	float: left; 
	list-style: none; 
	height: 175px;
	width: 100px;
	margin: 5px 0 0 5px;
	padding: 0;
	text-align: center;
}

/* customize prev and next buttons that are auto inserted. NOTE: absolute postion best bet */
.jcarousel-next { 
	position: absolute; 
	top: 155px; 
	right: 10px; 
	width: 35px; 
	height; 20px; 
	z-index: 200; 
	cursor: pointer; 
	text-align: right;
	font-weight: bold;
	color: #333;	
}
.jcarousel-prev { 
	position: absolute; 
	top: 155px; 
	left: 10px; 
	width: 35px; 
	height; 20px; 
	z-index: 200; 
	cursor: pointer; 
	font-weight: bold;
	color: #333;	
}

