/***********************************************************************************************************************
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.
************************************************************************************************************************/
#accordion {
	width: 20em;
	margin-left: auto;
	margin-right: auto;
	}

.accordionButton {	
	width: 20em;
	float: left;
	color: #000;
	background-color: #fff;
	padding: 5px;
	border-width: 1px;
	border-style: solid;
	border-color: #ffb2f4;
	cursor: pointer;
	}
	
.accordionButton:hover {	
	width: 20em;
	float: left;
	color: #000;
	background-color: #999;
	padding: 5px;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
	cursor: pointer;
	}
.accordionContent {	
	width: 20em;
	float: left;
	padding: 3px;
	margin:  5px 0 10px 5px ;
	display: none;
	}
 
