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

.accordionButton, .accordionButton2 {
	width: 95%;
        font-weight: bold;
        font-size: 14pt;
	float: left;

	_float: none;  /* Float works in all browsers but IE6 */
	background: #999999;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
	cursor: pointer;
        padding: .5em .5em .5em .7em;
        margin-bottom: 4px;
	}

.accordionContent, .accordionContent2 {
	width: 95%;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #CCCCCC;
        padding: .5em .5em .5em .9em;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        margin-bottom: 4px;
	}

/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background: #767676;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-bottom: 0px;
	}

/*.over {
	background: #CCCCCC;
	}*/