/*
	Slideshow style
*/
#container {
	width:100%;
	z-index:0;
}
#slides {
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	margin:0 auto;
	width:900px;
	height:570px;
	overflow:hidden;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	width:900px;
	height:570px;
	display:block;
}
#slides .slide h1 {
	font-size:30px;
	margin-top:120px
}
#slides .slide p {
	color:#666;
	width:400px
}
/*
	Next/prev buttons
*/
#slides .next, #slides .prev {
	position:absolute;
	top:347px;
	left:0;
	padding:20px 6px 20px 12px;
	display:block;
	z-index:101;
	border-radius: 0 3px 3px 0;
	background-color:#999;
	background-color:rgba(153,153,153,.5);
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
}

#slides .next {
	left:auto;
	right:0;
	padding:20px 12px 20px 6px;
	border-radius: 3px 0 0 3px;
}
a img {
	border:none
}

/*
	Pagination
*/

.pagination {
	margin:0 auto;
	width:100%;
	text-align:center;
	height:30px;
}

.pagination li {
	display:inline-block;
	*display:inline;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	margin:3px;
	background-color:#999;
	background-color:rgba(153,153,153,.5);
	border-radius: 50%;
	box-shadow: 
		1px 1px 1px rgba(0,0,0,0.1) inset, 
		1px 1px 1px rgba(255,255,255,0.1);
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	box-shadow: 
		-1px -1px 1px rgba(153,153,153,0.5) inset, 
		-1px -1px 1px rgba(153,153,153,.5);
}

body{
	background:#fff url(../images/bg_main.gif) repeat top left;
	margin:0;
	padding:0;
}
.headerbm{
	position:relative;
	width:100%;
	border-bottom:solid 1px #aaa;
	padding-top:10px;
	padding-bottom:10px;
	z-index:15;
	box-shadow:0 3px 10px rgba(0,0,0,.2);
	min-width:900px;
}
.headerbm .logo {
	margin-left:15px
}
.btmBorder {
	position:absolute;
	width:100%;
	min-width:900px;
	top:670px;
	left:0;
	border-top:solid 6px #666;
	z-index:15;
}
.copyright {
	min-width:900px;
}