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


/*css for the outer box or the main container of the slider*/
#outer{
	position: relative;
	left:20px;
	overflow:hidden;
	width: 892px;
	height: 74px;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
}


/*css for the left and right arrows*/
#leftarr, #rightarr{
	position: absolute;
	opacity: 0.9;
	width: 33px;
	height: 74px;
	border: 0px solid #333333;
	z-index:10;
}
#leftarr{
	left:0;
	background: #333333 url(../arrows/gray_left.png) no-repeat center; 
	/*add background-image here!*/
}
#rightarr{
	left:860px;
	background: #333333 url(../arrows/gray_right.png) no-repeat center;
	/*add background-image here!*/
}
 
 
 /*css for the individual div of the thmbnail*/
.slide{
	width: 55px;
	height: 55px;
	float: left; 
	background-color: #ffffff;
	margin-top:12px;
	margin-left:10px;
}


