/***********************************************************************************************************************
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: 760px;
	margin-left: auto;
	margin-right: auto;
	}

.accordionButton {	
	width: 760px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	border-bottom: 2px solid #FFFFFF;
	cursor: pointer;
	color:#FF7500;
	font-size:12px;
	font-weight:bold;
	
	}
.accordionButton .plus { position:absolute; width:9px; height:18px; background-image: url('../images/plus.gif'); background-repeat: no-repeat;background-position:left;} 
	
.accordionContent {	
	width: 760px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	padding-top:5px;
	padding-left:18px;
	}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background: #e4e4e4;
	}
.on .plus { position:absolute; width:9px; height:18px; background-image: url('../images/minus.gif'); background-repeat: no-repeat;background-position:left;} 
	
.over {
	background: #e4e4e4;
	}
