/***********************************************************************************************************************
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:340px;
	margin-left: auto;
	margin-right: auto;
	float:left;
	margin-top:20px;
	}
	
	h1{
font-family:Verdana, Geneva, sans-serif;
font-size:15px;
font-style:italic;
text-decoration:underline;
font-weight:100;
color:#000;

margin-top:15px;
margin-left:10px;
}

.accordionButton {	
	width: 340px;
      height: 50px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #FFF;
	border-bottom: 1px solid #FFFFFF;
	cursor: pointer;


	}

.accordionContent {	
	width: 330px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background:#FFF;
	font-family:Verdana, Geneva, sans-serif;
    font-size:13px;
	padding-right:10px;

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

.on {
	background: #FFF;
	
	}
	
.over {
	background: #CCCCCC;
	}
.on h1{
	color:orange;
      font-weight:bold; 
}

.hover{
	color:orange;
}

