
#slider {
    width: 960px;
    margin: 20px auto;
	margin-bottom:0;
	padding:0;
    position: relative; /* relative allows abs positioning of scrolling arrows */
    background-color:#ccc;
}

.scroll {
    height: 540px;
    width: 960px;
    overflow: auto; /* allows user to see scrolling even if js disabled */
    overflow-x: hidden;
    position: relative; /* fix for IE to respect overflow */
    clear: left;
/*    border: solid 1px #fc0; */
    background: #aaa;
/*  background: #663 url(coda_slider/content_pane-gradient.gif) repeat-x scroll left bottom; */
}

.scrollContainer div.panel {
 /*   height: 510px; */
    width:960px; /* change to 20px less if not using JS to remove rh.scroll */
    background-color:#aaa;
}

.panel h2 {
	margin: 0 auto;
	padding: 0 30px;
	}

.panel p {
	margin: 0 auto 10px;
	padding: 0 30px;
	}

ul.navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 9px;
	}

ul.navigation li {
    display: inline;
	margin:10px 0;
	float:left;
	}

ul.navigation a {
    padding: 10px;
    text-decoration: none;
	border-bottom: #aaa 1px dotted;
	}	

ul.navigation a:hover {
    background-color: #ddd;
}

ul.navigation a.selected {
    background-color: #aaa;
}

ul.navigation a:focus {
    outline: none;
}

/* 
buttons breaking. think it has to do with panel v. panels, but i can't figure it out, so they're off for now
-ewee


.scrollButtons {
    position: absolute;
    top: 0px;
    cursor: pointer;
}

.scrollButtons.left {
    left: 848px;
}

.scrollButtons.right {
    right: 0px;
}
*/


.hide {
    display: none;
}