/* 
	Resets defualt browser settings
	reset.css
*/

/*
	Page style
*/

#container {
	width:1000px;
	height:670px;
	margin-top:25px;
	z-index:0;
	margin-right: auto;
	margin-left: auto;
	float:left;
	position:relative;
}



#pieces_container{
	width:1000px;
	height:670px;
	position:relative;
	margin-left:50px;
}

/*
	Slideshow
*/

#pieces {
	margin-left:30px;
}

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

#pieces .slides_container {
	width:750px;
	heigh:670px;
	overflow:hidden;
	float:left;
	position:relative;
	display:none;
	margin-left:0px;
}

/*
	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 li{
	width:750px;
	height:670px;
	display:block;
	text-align:center;
}


/*
	Next/prev buttons
*/

#pieces .next,#pieces .prev {
	position:absolute;
	top:240px;
	left:0;
	width:15px;
	height:0;
	padding-top:21px;
	overflow:hidden;
	display:block;
	z-index:101;
}

#pieces .prev {
	background:url(../img/previousbtn.png);
}

#pieces .prev:hover{
	opacity:.7;	
}

#pieces .next {
	left:790px;
	background:url(../img/nextbtn.png);
}

#pieces .next:hover {
	opacity:.7;	
}

/*
	Pagination
*/

#pieces .pagination {
	background:;
	width:160px;
	padding:4px 4px;
	float:left;
	margin-left:800px;
	margin-top:-677px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

#pieces .pagination li {
	float:left;
	margin:4px 4px;
	list-style:none;
}

#pieces .pagination li a {
	display:block;
	width:70px;
	height:70px;
	margin:1px;
	float:left;
	background:#f9f9f9;
}

#pieces .pagination li.current a {
	border:1px solid #7f7f7f;
	margin:0;
}




/*
	Footer
*/

#footer {
	clear:both;
	text-align:center;
	width:580px;
	margin-top:9px;
	padding:4.5px 0 18px;
	border-top:1px solid #dfdfdf;
}

#footer p {
	margin:4.5px 0;
	font-size:1.0em;
}


/*
	Anchors
*/

a:link,a:visited {
	color:#599100;
	text-decoration:none;
}

a:hover,a:active {
	color:#599100;
	text-decoration:underline;
}

/* 
thumbs fade 
*/

.pagination li img{
    float:left;
	background: black;
    display:block;
    -moz-transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    -ms-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear;	
}

.pagination li img:hover{
	opacity: .8;
    cursor: pointer;
	background:black;
	}


