/***********************************************************************************************************************
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: 878px;
	margin-left: auto;
	margin-right: auto;
	}

.accordionButton {	
font-size:20px;
letter-spacing:0px;
	width: 878px;
	text-decoration:none; 
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #0e0e0e;
	border: 1px solid #3d3d3d;
	border-top: 0px;
	cursor: pointer;
	text-align:center;
	padding-top:15px;
 	padding-bottom:15px;
	}
	
.accordionContent {	
	width: 678px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #0e0e0e;
	border: 1px solid #3d3d3d;
  border-top: 0px;
  padding-top:20px;
  padding-bottom:20px;
  padding-left: 100px;
  padding-right: 100px;
    font-size: 17px;
      letter-spacing: 0px;
	}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background: #0e0e0e;
	color: #FFF;
	}
	
.over {
	background: #009cdf;
	color: #FFF;
	}