@charset "utf-8";
/* CSS Document */



#carousel {
	width:170px;
	height:259px;	
	margin:0 auto;
	overflow:hidden;
	border:solid 1px #ccc;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#FEFEFE
}

#carousel form {
	margin-top:6px
}

#carousel input[type=text] {
	width:60px; 
	height:18px; 
	background-color:#F8F8F8; 
	border-top: solid 1px #333333; 
	border-left: solid 1px #333333; 
	border-right: solid 1px #999999; 
	border-bottom: solid 1px #999999;
	margin:0px 10px 0 5px
}
#slides2 {
	overflow:hidden;
	/* fix ie overflow issue */
	position:relative;
	width:170px;
	height:220px;
	border:1px solid #ccc;
	background-image:url(images/bg.jpg);
	background-repeat:no-repeat
	
}

/* remove the list styles, width : item width * total items */	
#slides2 ul {
	position:relative;
	left:0;
	top:0;
	list-style:none;
	margin:10px;
	padding:0;	
	width:750px;			
}

/* width of the item, in this case I put 250x250x gif */
#slides2 li {
	width:180px;
	height:220px;	
	float:left;
	
}

#slides2 li img {
	padding:4px;
}

#slides2 a {
	font-size:10px
}

#search {
 float:left
 }

/* Styling for prev and next buttons */
#buttons {
	padding:0 0 5px 0;	
	float:right;
}

#buttons a {
	display:block; 
	width:31px; 
	height:32px;
	text-indent:-999em;
	float:left;
	outline:0;
}

a#prev2 {
	background:url(arrow.gif) 0 -31px no-repeat; 
}

a#prev2:hover {
	background:url(arrow.gif) 0 0 no-repeat;
}

a#next2 {
	background:url(arrow.gif) -32px -31px no-repeat; 
}

a#next2:hover {
	background:url(arrow.gif) -32px 0 no-repeat;
}

.clear {clear:both}

