@charset "UTF-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0 auto;
}
body {
	background-color: #740000;
	text-align: center;
}
#header {
	height: 250 px;
	border-bottom: 3px solid #F00;
}
#banner {
	border-bottom: 3px solid #F00;
	background-image:url(images/bg.jpg);
	background-repeat: repeat-x;
	height: 200 px;
}
#gallery {
	border-left: 2px solid #F00;
	border-right: 2px solid #F00;
	width: 1000px;
}
#nav {
	height: 50 px;
	background-color:#b8b8b8;
}
#sdiv {
	height: 450 px;
	background-color:#000;
}
#mainbody {
	background-color: #000000;
}
#content {
	padding: 20px;
	width: 960px;
	text-align:left;
	border-left: 2px solid #F00;
	border-right: 2px solid #F00;
	border-top: 3px solid #F00;
	background-color: #b8b8b8;
}

/* Sponsor Flip */

.sponsorListHolder {
	margin-bottom:30px;
}

.sponsor{
	width:180px;
	height: 180px;
	float:left;
	margin:4px;
	
	position:relative;
	cursor:pointer;
}

.sponsorFlip{
	position:absolute;
	left:0;
	top:0;
	width:100%
	height:100%
	border: 1px solid #ddd;
	background:url("images/background.jpg") no-repeat center center #f9f9f9;
}

.sponsorFlip:hover {
	border:1px solid #999;
	
	-moz-box-shadow:0 0 30px #999 inset;
	-webkit-box-shadow:0 0 30px #999 inset;
	box-shadow:0 0 30px #999 inset;
}

.sponsorFlip img {
	position:absolute;
	top:50%;
	left:50%;
	margin: -70px 0 0 -70px;
}

.sponsorData {
	display:none;
}

.sponsorDescription {
	font-size:11px;
	padding:50px 10px 20px 20px;
	font-style:italic;
}

.sponsorURL {
	font-size:10px;
	font-weight: bold;
	padding-left:20px;
}

.clear {
	clear:both;
}

/*Accordion*/

div#test-accordion{
    margin: 10px;
    border: 1px solid #aaa;}

div.accordion {
    position: relative; /* required for bounding--works around a "peculiarity" in Prototype */
}

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
    background: #eee;   /* required for effect--can be anything except "transparent" */
    cursor: pointer;
}

div.accordion-toggle-active{
    background: #fff;
}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: #aaa;
}
