/*
 * jQuery Nivo Slider v2.4
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */
/* The Nivo Slider styles */

 body{
 /* fallback */ 
 background-color: #1a82f7; 
 background: url(images/linear_bg_2.png); 
 background-repeat: repeat-x; 
 /* Safari 4-5, Chrome 1-9 */ 
 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727)); 
 /* Safari 5.1, Chrome 10+ */ 
 background: -webkit-linear-gradient(top, #2F2727, #1a82f7); 
 /* Firefox 3.6+ */
 background: -moz-linear-gradient(top, #2F2727, #1a82f7); 
 /* IE 10 */ 
 background: -ms-linear-gradient(top, #2F2727, #1a82f7); 
 /* Opera 11.10+ */ 
 background: -o-linear-gradient(top, #2F2727, #1a82f7); 
 }

 

.nivoSlider
{
    position: relative;
    margin: 10px auto;
    width: 940px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.7); 
    background-repeat: no-repeat;
    margin-bottom: 18px;
    margin-left: 2px;
    margin-right: 2px;
    overflow: hidden;
    background-color: #000;
    display: block;  
    clear: both;
    height: 253px;
}

.nivoSlider img
{
    position: absolute;
    top: 0px;
    left: 0px;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 60;
    display: none;
}

/* The slices in the Slider */
.nivo-slice
{
    display: block;
    position: absolute;
    z-index: 50;
    height: 100%;
}

/* Caption styles */
.nivo-caption
{
    position: absolute;
    left: 14px;
    bottom: 9px;
    color: #fff;
    opacity: 0.8; /* Overridden by captionOpacity setting */
    width: 100%;
    z-index: 89;
}

.nivo-caption p
{
    padding: 5px;
    margin: 0;
    font-size: 14px;
    color: #000;
}

.nivo-caption a
{
    display: inline !important;
    color: #09F;
}

.nivo-html-caption
{
    display: none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a
{
    position: absolute;
    top: 45%;
    z-index: 99;
    cursor: pointer;
}

.nivo-prevNav
{
    left: 0px;
}

.nivo-nextNav
{
    right: 0px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a
{
    position: relative;
    z-index: 99;
    cursor: pointer;
}

.nivo-controlNav a.active
{
    font-weight: bold;
}



/*
SLIDER
-------------------------------------------------------------*/
#slider
{
    width: 940px;
    height: 253px;
    background: url(images/image/loading.gif) no-repeat 50% 50%;
    z-index: 0;
}

#sliderLevel2
{
    width: 992px;
    height: 217px;
    background: url(images/image/loading.gif) no-repeat 50% 50%;
    z-index: 0;
}

#slider img
{
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}

#slider a
{
    border: 0;
    display: block;
    font-weight: 700;
}

.nivo-controlNav
{
    position: absolute;
    right: 12px;
    top: 12px;
}

.nivo-controlNav a
{
    display: block;
    width: 22px;
    height: 22px;
    background: url(http://localhost/erecruit/images/image/bullets.png) no-repeat;
    text-indent: -9999px;
    border: 0;
    margin-right: 3px;
    float: left;
}

.nivo-controlNav a.active
{
    background-position: 0 -22px;
}

.nivo-directionNav a
{
    display: block;
    width: 30px;
    height: 30px;
    background: url(http://localhost/erecruit/images/image/arrows.png) no-repeat;
    text-indent: -9999px;
    border: 0;
}

a.nivo-nextNav
{
    background-position: -30px 0;
    right: 15px;
}

a.nivo-prevNav
{
    left: 15px;
}

.nivo-caption
{
    text-shadow: none;
    font-family: Helvetica, Arial, sans-serif;
}

.nivo-caption a
{
    color: #efe9d1;
    text-decoration: underline;
}
 