/***********************************************************************************************************************
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: 960px;
	margin:0 auto;
	}

.accordionButton {	
	width: 938px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #fff;
	border-top:1px solid #857571;
	border-left: 1px solid #857571;
	border-right: 1px solid #857571;
	padding:10px;
	cursor: pointer;
	color:#082f3e;
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:1.1em;
	text-decoration: none;
	background: url(../images/accordion.gif) no-repeat center right;
	}
	
.accordionContent {	
	width: 938px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #fff;
	padding:10px;
	border-left: 1px solid #857571;
	border-right: 1px solid #857571;
	color:#082f3e;
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size:1.1em;
	text-decoration: none;
	}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background:#f5f5f5 url(../images/accordion-on.gif) no-repeat center right;
	}
	
.over {
	background:#f5f5f5 url(../images/accordion-over.gif) no-repeat center right;
	}