#container {
    width:100%;
    padding:10px;
    margin:0 auto;
    position:relative;
    z-index:0;
}

/*
	Slideshow
*/

#products {
    position:relative;
    margin-left:0;
}

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

#products .slides_container {
    width:100%;
    overflow:hidden;
    float:left;
    display:none;
    background-color: #1761c0;
}

/*
	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 div.slide {
    width:100%;
    height:800px;
    display:block;
    text-align:center;
}

/*
	Next/prev buttons
*/

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


/*
	Pagination
*/

#products .pagination {
    position:absolute;
    bottom:10px;
    right:50%;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    z-index:10000;
}

#products .pagination li {
    float:left;
    margin:2px 4px 0px 0px;
    list-style:none;
    background:#ccc;
    padding:1px;
}

#products .pagination li a {
    display:block;
    width:20px;
    height:20px;
    float:left;
    color:white;
}

#products .pagination li.current a {
    background-color:#0756b2;
    margin:0;
    color:white;
}

