/* Easy Slider */

#slider ul,
#slider li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#slider,
#slider li {
    /*
            define width and height of container element and list item (slide)
            list items must be the same size as the slider area
        */
    height: 400px;
    width: 897px;
    overflow: hidden;
}

div#sl-nav {
    float: right;
    margin-top: -50px;
    margin-right: 20px;
}

div#nextBtn,
div#prevBtn {
    height: 26px;
    text-align: center;
    width: 28px;
    float: left;
    margin-left: 4px;
    background: #343f6a;
    filter: alpha(opacity=70);
    opacity: .70;
    -moz-opacity: .70;
}


div#nextBtn a,
div#prevBtn a {
    font-size: 20px;
    color: #FFF;
    text-decoration: none;
    font-weight: bolder;
    display: block;
}

div#nextBtn:hover,
div#prevBtn:hover {
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

#makeMeScrollable {
    width: 840px;
    height: 547;
    position: relative;
}

#makeMeScrollable div.scrollableArea * {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

.awesome,
.awesome:visited {
    background: #222 url(images/alert-overlay.png) repeat-x;
    display: inline-block;
    padding: 5px 10px 6px;
    color: #fff;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: pointer;
}

.awesome:hover {
    background-color: #111;
    color: #fff;
}

.awesome:active {
    top: 1px;
}

.small.awesome,
.small.awesome:visited {
    font-size: 11px;
    padding: 0;
}

.awesome,
.awesome:visited,
.medium.awesome,
.medium.awesome:visited {
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
}

.large.awesome,
.large.awesome:visited {
    font-size: 18px;
    padding: 8px 14px 9px;
}

.green.awesome,
.green.awesome:visited {
    background-color: #91bd09;
}

.green.awesome:hover {
    background-color: #749a02;
}

.blue.awesome,
.blue.awesome:visited {
    background-color: #2daebf;
}

.blue.awesome:hover {
    background-color: #007d9a;
}

.red.awesome,
.red.awesome:visited {
    background-color: #e33100;
}

.red.awesome:hover {
    background-color: #872300;
}

.magenta.awesome,
.magenta.awesome:visited {
    background-color: #a9014b;
}

.magenta.awesome:hover {
    background-color: #630030;
}

.orange.awesome,
.orange.awesome:visited {
    background-color: #ff5c00;
}

.orange.awesome:hover {
    background-color: #d45500;
}

.yellow.awesome,
.yellow.awesome:visited {
    background-color: #ffb515;
}

.yellow.awesome:hover {
    background-color: #fc9200;
}

.simple_overlay {

    /* must be initially hidden */
    display: none;

    /* place overlay on top of other elements */
    z-index: 10000;

    /* styling */
    background-color: #333;

    color: #fff;
    padding: 20px;
    text-align: center;

    width: 750px;
    min-height: 200px;
    border: 1px solid #666;

    /* CSS3 styling for latest browsers */
    -moz-box-shadow: 0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image: url(images/close.html);
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
    height: 35px;
    width: 35px;
}