﻿/***********************************************************************************************************************
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: 180px;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; 
	}

.accordionButton {	
	width: 168px; 
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
	background: #828282;
	border-bottom: 1px dotted #cccccc;
	cursor: pointer;
	padding: 0.5em;
	}
	
.accordionContent {	
	width: 180px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #DDDDDD;
	}

/***********************************************************************************************************************
 UL STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

ul#menu, ul#menu ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
  width: 180px;
}

ul#menu a {
  display: block;
  text-decoration: none;	
}

ul#menu li {
  margin-top: 1px;
}

ul#menu li a {
  background: #DDDDDD;
  color: #fff;	
  padding: 0.5em;
}

ul#menu li a:hover {
  background: #D67533;
}

ul#menu li ul li a {
  background: #ccc;
  color: #000;
  padding-left: 20px;
}

ul#menu li ul li a:hover {
  background: #aaa;
  border-left: 5px #000 solid;
  padding-left: 15px;
}

/***********************************************************************************************************************
 EXTRA STYLES ADDED FOR MOUSEOVER / ACTIVE EVENTS
************************************************************************************************************************/

#wrapper .on {
	background: #828282;
	}
	
#wrapper .over {
	background: #D67533;
	}	