/* 
	Resets defualt browser settings
	reset.css
*/
/*
	Page Style
*/
#container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    border-top: 1px solid #FFF
    }
#frame {
    position: absolute;
    z-index: 0;
    width: 739px;
    height: 300px;
    top: -3px;
    left: -80px
    }
#example {
    width: 1000px;
    height: 300px;
    position: relative
    }
/*
	Slideshow style SI MODIFICO EL TOP SE REDUCE BASTANTE EL MARGEN, QUIZAS HABRIA QUE METER UN BOTTOM 0
*/
#slides {
    position: absolute;
    top: 0;
    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 {
    width: 1000px;
    height: 300px;
    overflow: hidden;
    position: relative;
    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: 1000px;
    height: 300px;
    display: block
    }
/*
	Next/prev buttons
*/
#slides .next, #slides .prev {
    position: absolute;
    top: 155px;
    left: 0;
    width: 96px;
    height: 38px;
    display: block;
    z-index: 101
    }
#slides .next {
    left: 904px
    }
/*
	Pagination
*/
.pagination {
    z-index: 1000;
    margin: 0 auto 0;
    width: 150px;
    margin-top: 0;
    visibility: hidden
    }
.pagination li {
    float: left;
    margin: 0 1px;
    list-style: none
    }
.pagination li a {
    display: block;
    width: 12px;
    height: 0;
    padding-top: 12px;
    background-image: url(JS/slideshow/img/pagination.png);
    background-position: 0 0;
    float: left;
    list-style: none
    }
.pagination li.current a {
    background-position: 0 0
    }
/*
	Type and anchors
*/
a:link, a:visited {
    color: #C30;
    text-decoration: none;
    font-size: 11px
    }
a:hover, a:active {
    color: #F30;
    text-decoration: underline;
    font-size: 11px
    }
h1 {
    font-size: 2em
    }
p {
    font-size: 1.3em
    }
#slides .link {
    display: block;
    margin-top: 10px;
    font-weight: 800
    }