@charset "UTF-8";
/* CSS Document */

/* ----------------IMAGE SLIDER------------- */
#SlideItMoo_outer {
	width: 1000px;
	display: block;
	position: relative;
	padding: 0;
	margin:10px auto;
	}
/* create custom forward-backward buttons for this container */
#SlideItMoo_outer .SlideItMoo_forward,
#SlideItMoo_outer .SlideItMoo_back{
	display:block;
	position:absolute;
	cursor:pointer;
	width:20px;
	height:210px; 
	bottom:0px; 
	right:-1px;
	background-image: url(../images/r_arrow.png);
	background-repeat: no-repeat;
	background-position: center;
}
#SlideItMoo_outer .SlideItMoo_back {
	left:-1px;
	background-image: url(../images/l_arrow.png);
	background-repeat: no-repeat;
	background-position: center;
}

/* the width is set to show the number of thumbnails that will be visible */
#SlideItMoo_inner{
	position:relative;
	overflow:hidden;
	width:920px; /* set a display width to make the slider look good in case js is disabled */
	margin:0px auto 0px;
	padding: 0px 0px;
}
/* the thumbnails container; set a width on it so everything will be fine */
#SlideItMoo_items {
	display:block;
	position:relative;
	width: 920px;
	margin-right: 16px;
	margin-left: 16px;
}
/* single element design */
#SlideItMoo_items div.SlideItMoo_element {
	display:block;
	position:relative;
	float:left;
	width:185px;
	margin-top: 0px;
	margin-right: 3px;
	margin-bottom: 0px;
	margin-left: 3px;
}
#SlideItMoo_items a { padding:0px; margin:0px; clear:both; display:block; ; padding:2px; }
#SlideItMoo_items a img {
	border:1px solid #777;
}
 
