/* Basic jQuery Slider essential styles */

ul.bjqs
{
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: none;
}
li.bjqs-slide
{
    display: none;
    position: absolute;
}

ul.bjqs-controls
{
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

ol.bjqs-markers
{
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9999;
}
ol.bjqs-markers li
{
    float: left;
}

p.bjqs-caption
{
    display: block;
    width: 96%;
    margin: 0;
    padding: 2%;
    position: absolute;
    bottom: 0;
}

/* demo styles */

#container
{
    width: 980px;
    padding: 100px 0;
    margin: 0 auto;
    overflow: hidden;
}

#banner
{
    height: 300px;
    width: 700px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border: 20px #fff solid;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

ul.bjqs-controls li a
{
    display: block;
    padding: 5px 10px;
    position: absolute;
    background: #fff;
    color: #fd0100;
    text-decoration: none;
    text-transform: uppercase;
}

a.bjqs-prev
{
    left: 0;
}

a.bjqs-next
{
    right: 0;
}

p.bjqs-caption
{
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
}

ol.bjqs-markers
{
    position: absolute;
    float:right;
    bottom: 80px;
}

ol.bjqs-markers li
{
    float: left;
    margin: 0 3px;
    width: 30px;
    height: 30px;
}

ol.bjqs-markers li a
{
    background: url(images/Number.png) no-repeat left top;
    width: 30px;
    height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-weight: bold;
    display: block;
    padding-top: 5px;
    text-decoration: none;
}

ol.bjqs-markers li.active-marker a
{
    background: url(images/Number-Blank.png) no-repeat left top;
	width: 30px;
	height: 30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	color: #808080;
	cursor:pointer;
	padding-top:5px;
}
