
.layer-color-lines
{

}


/* Main wrapper
-------------------------------------------------------------------------*/
.slider-external
{
    display: block;
    position: relative;
    overflow: hidden; /* You can change the following attributes */
    width: 100%;
    min-width: 800px;
    padding-top: 75px;
    padding-bottom: 75px;
}


/* Image blocks
-------------------------------------------------------------------------*/
.slider-images
{
    position: absolute;
    top: 0;
    left: 0;
}
.slider-images a.img_holder
{
    display: block;
    float: left;
}
.slider-image
{
    position: relative;
    float: left;
    -moz-box-shadow: 0px 0px 15px Black;
    -webkit-box-shadow: 0px 0px 15px Black;
    box-shadow: 0px 0px 15px Black;
}
.slider-image-outer
{
    float: left;
}


/* Frame for the images
-------------------------------------------------------------------------*/
.slider-frame
{
    margin: 0px auto;
    position: relative;
    z-index: 100; /* Set the width and height to the size of your images */
    width: 800px;
    height: 300px;
}


/* Arrows 
-------------------------------------------------------------------------*/
.slider-arrows
{
    position: absolute;
    background: url("../images/arrows.png");
    cursor: pointer;
    top: 46%;
    width: 35px;
    height: 35px;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.slider-arrows.previous
{
    left: -15px;
    background-position: left;
}
.slider-arrows.next
{
    right: -15px;
    background-position: right;
}


/* Bullets list 
-------------------------------------------------------------------------*/
ul.slider-listNav
{
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    list-style: none;
    bottom: -30px;
}
ul.slider-listNav li
{
    float: left;
    cursor: pointer;
    background: url("../images/switcher.png") right;
    overflow: hidden;
    width: 20px;
    height: 20px;
    margin: 0 2px;
}
ul.slider-listNav li.active
{
    background-position: left;
}


/* Captions
---------------------------------------------------------------------*/
.slider-captions
{
    display: none;
}
.slider-caption
{
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: black;
    width: 100%;
    color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.slider-caption h3
{
    font-size: 1.25em;
    text-transform: uppercase;
    font-family: georgia, 'times new roman' , serif;
}
.slider-caption p
{
    font-family: georgia, 'times new roman' , serif;
    font-size: 0.85em;
}
.slider-caption p, .slider-caption h3
{
    margin: 10px;
}
.slider-caption p
{
    margin-top: -5px;
    margin-bottom: 15px;
}
.slider-caption p a, .slider-caption h3 a
{
    color: white;
}
.slider-caption.top
{
    top: 0;
    bottom: auto;
}
.slider-caption.bottom
{
    left: 0px;
    bottom: 0px;
}
.slider-caption.left
{
    top: 0;
    left: 0;
    width: 33.3%;
    height: 300px;
    overflow: hidden;
}
.slider-caption.right
{
    top: 0;
    left: auto;
    right: 0;
    width: 33.3%;
    height: 300px;
    overflow: hidden;
}


/* Sub Layer 
---------------------------------------------------------------------*/
.slider-layer
{
    position: absolute;
    top: 0;
    left: 0;
}


