/***********************************************************************************************************************
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.
************************************************************************************************************************/

.accordionButton {	
	width: 800px;
	margin: 10px 0 0 50px;
	height: 65px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background-image: url(../img/menu.jpg);
	background-repeat: repeat-x;
	cursor: pointer;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.accordionButton.radius {
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}

.accordionButton h3 {
	position: relative;
	top: 20px;
	left: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
	
.accordionContent {
	color: #161616;
	width: 800px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #ffffff;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	margin: 0 0 0 50px;
}

.accordionContent h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
	
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
	background-image: url(../img/menu.jpg);
	background-repeat: repeat-x;
}
	
.over {
	background-image: url(../img/menu_hover.jpg);
	background-repeat: repeat-x;
}