/***********************************************************************************************************************
DOCUMENT: style/format.css
DEVELOPED BY: Ryan Stemkoski
COMPANY: Zipline Interactive
EMAIL: ryan@gozipline.com
PHONE: 509-321-2849
DATE: 2/26/2009
DESCRIPTION: This document contains the structural formatting files for the accordion style menu.
************************************************************************************************************************/
#wrapper {
	width: 880px;
	margin-left: auto;
	margin-right: auto;
	}

.accordionButton {	
	width: 880px;
	float: left;
        color: #ffffff;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #DCDCDC url(../images/updown-arrows.png) no-repeat 485px 0;
	background-color: #333333;
	border-bottom: 1px solid #FFFFFF;
	cursor: pointer;
	padding:.25em 1em;
	}
.accordionButton h3{margin:0;font:1em Arial, Helvetica, sans-serif;}	
.accordionContent {	
	width: 884px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #FFFFFF;
	padding:.25em 1em 1em 1em;
	color:#333;
	font:.85em Arial, Helvetica, sans-serif;
	}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background: #FFFFFF url(../images/updown-arrows.png) no-repeat 485px -22px;
	color:#333;
	}
	
.over {
	background: #FFFFFF url(../images/updown-arrows.png) no-repeat 485px 0;
	color:#333;
	}