/* 
	Resets defualt browser settings
	reset.css
*/

#main_image {
	width:950px;
    height:475px;
	padding:0px;
	margin:0 auto;
	position:relative;
	z-index:0;
}


/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0;
	left:0;
	z-index:100; /* for IE6,7 */
}







/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:950px;
	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:950px;
	height:446px;
	display:block;
}

.slides_container a img {
	display:block;

}



/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:223px;
	left:5px;
	width:37px;
	height:37px;
	display:block;
	z-index:1000; /* for IE6,7 */
}

#slides .next {
	left:908px;
}

/*
	Pagination
*/

.pagination {
  position: absolute;
  top: 461px;
  left: 50%;
  margin-left: -50px;
  width: 200px;
  }

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
  float: left;
  margin: 8px 8px 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 8px;
  height: 8px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4) inset;
  background: #B4CEC9;
  text-indent: -9999px;
  vertical-align: middle;
  behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
}

.pagination li.current a {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) inset, 0 0 2px rgba(68, 170, 238, 0.5);
  -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) inset, 0 0 2px rgba(68, 170, 238, 0.5);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) inset, 0 0 2px rgba(68, 170, 238, 0.5);
  background: #282828;
  behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
}

