/* 
	Resets defualt browser settings
	reset.css
*/
#ribbon {
	position:absolute;
	top:-3px;
	left:-15px;
	z-index:100;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	z-index:1;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:655px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container a {
	width:655px;
	height:323px;
	display:block;
}

.slides_container a img {
	display:block;
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:180px;
	left:5px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:965px;
}

/*
	Pagination
*/

.pagination {
/*	margin:0px auto 0;
	width:100px;*/
	position:absolute;
	top:300px;
	z-index:100;
	right:10px
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
	
}

.pagination li a {
	/*display:none;*/
	width:12px;
	height:12px;
	background:#0271cf url(../images/normal.png) no-repeat;
	background-position:0 0;
	float:left;
	overflow:hidden;
	text-indent:-99999px;
}

.pagination li.current a {
	background:#fff url(../images/active.png) no-repeat;
	width:12px;
	height:12px;
}

