/* coda style slider v1 based on @rem */

#slider {
    width: 630px;
    margin: 15px 0 0 0;
    position: relative;
}

.scroll {
    height: 280px;
    width: 630px;
    overflow: auto;
    overflow-x: hidden;
    position: relative;
    clear: left;
    background: #069 url(./images/tab-shadow.jpg) repeat-x;
    color: #fff;
}

.scroll h3 {
	color: #fff;
	font-weight: bold;
	padding-left: 20px;
}

.scroll p {
	padding: 0 20px 0 20px;
	font-size: 1.4em;
}

.scroll a {
        text-decoration: none;
	color: #fff;
	border-bottom: 2px #fff solid;
        font-weight: bold;	
}

.scrollContainer div.panel {
    /*padding: 15px 0 0 0;*/
    height: 210px;
    width: 630px;
}



#shade {
    height: 10px;
}



ul.navigation {
    list-style: none;
    margin: 0 0 0 30px;
    padding: 0;
    padding-bottom: 7px;
}



ul.navigation li {
    display: inline;
    margin-right: 3px;
}

ul.navigation a {
    padding: 10px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
    background-color: #333;
    border: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}



ul.navigation a:hover {
	color: #fff;
	background-color: #333;
}



ul.navigation a.selected {
    background-color: #069;
	color: #fff;
    text-shadow: none;
}


ul.navigation a:focus {
    outline: none;
}


.scrollButtons {
    position: absolute;
    top: 150px;
    cursor: pointer;
}



.scrollButtons.left {
    left: -20px;
}



.scrollButtons.right {

    right: -20px;

}



.hide {

    display: none;

}



