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

.accordionButton {	
	width: 620px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #f2f2f2;
	border-bottom:1px dashed #c7c7c7;
	cursor: pointer;
	}
	
.accordionContent {	
	width: 600px;
	padding:5px 5px 15px 0px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #f2f2f2;
	border-bottom:1px dashed #c7c7c7;
	}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background: #dedede;
	-webkit-box-shadow:4px 7px 10px 0px rgba(36, 36, 36, 0.3);
  box-shadow:4px 7px 10px 0px rgba(36, 36, 36, 0.3);
	}
	
.over {
	background: #e6e6e6;
	}