/***********************************************************************************************************************
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.
************************************************************************************************************************/
.accordionWrapper{
	width: 100%;
margin-left:-7px;
	margin-right: auto;
       display: inline-block;

margin-bottom:20px;
	}

.accordionButton {	
	cursor: pointer;
  float: left;
  width: 100%;
  background: url('/image/arrowDown.jpg') ;
 background-repeat: no-repeat;
  -moz-background-clip: border;
  -moz-background-origin: padding;
  -moz-background-size: auto auto;
  background-color: #FFFFFF;
  background-position: 95% center;
  border-bottom: 2px dotted #E7E7E7;
  color: #3F3F3F;
  font-weight: bold;
  font-size: 14px;
  line-height: 2.5;
padding-left: 5px;
	}
	
.accordionContent {	
	width: 102%;
	float: left;
	float: none; /* Float works in all browsers but IE6 */
	background: #FFFFFF;
line-height: 2;

	}
.accordionContent ul{
   list-style: none outside none;	

}
.accordionContent ul li{
border-bottom: 2px dotted #E7E7E7;
padding-left: 13px;
font-size:14px;
}
/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

.on {
background: url('/image/arrowUp.jpg') ;
 background-repeat: no-repeat;
  -moz-background-clip: border;
  -moz-background-origin: padding;
  -moz-background-size: auto auto;
  background-color: rgb(231, 231, 231);
  background-position: 95% center;
	}
	
.over {
background-color: rgb(231, 231, 231);
	}
