/***********************************************************************************************************************
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: 480px;
	margin-bottom: 10px;
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	}

.accordionButton {
	width: 454px;
	/* [disabled]float: left; */
	cursor: pointer;
	font-size: 14px;
	font-weight: lighter;
	color: #333;
	text-decoration: none;
	background: -webkit-linear-gradient(#CCC, #F2F2F2);
	background: -o-linear-gradient(#CCC, #F2F2F2);
	background: -moz-linear-gradient(#CCC, #F2F2F2);
	background: linear-gradient(#CCC, #F2F2F2);
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	display: block;
	}
.accordionButton:hover {
	background: -webkit-linear-gradient(#F2F2F2, #CCC);
	background: -o-linear-gradient(#F2F2F2, #CCC);
	background: -moz-linear-gradient(#F2F2F2, #CCC);
	background: linear-gradient(#F2F2F2, #CCC);
	color: #06C;
}

.accordionButton span a{
    color:#069;
}
.accordionContent {
	width: 474px;
	/* [disabled]float: left; */
	display: none;
	padding: 5px;
	background-color: #F3F3F3;
	clear: both;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: dotted;
	border-left-style: dotted;
	border-right-color: #CCC;
	border-left-color: #CCC;
	}
