body  {
	font-size : 12px;
	font-family : Verdana, Helvetica, sans-serif;
	color : #000;
	background-color :  #fff;
	list-style-position: outside;
	list-style-type: disc;
}

p  {
	text-align : left;
	list-style-type : circle;
	list-style : circle;
}

h1  {
	font-size : 16px;
	font-weight : bold;
	text-align : left;
	color : #008540;
}

h2 {
	font-size: 14px;
	font-style: normal;
	color: #B4985A;
	}	

h3 {
	font-size: 12px;
	font-style: normal;
	color: #009933;
	}	

a:link, a:visited, a:active  {
	color : #0000FF;
	text-decoration: none;
}

a:hover  {
	color : #008540;
	text-decoration: none}

/*========================= TOP OF THE MENU CASCADE =========================*/

.menu {
	position:relative;       
	float:left;                                    
	margin:0;
	padding:0;
	border-left: 1px solid #000;
	height:20px;                                  
	width:832px;       
	color: #007833;
	font-size: 13px;
	font-weight: bold;
}


.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;         
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
}

.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	color: #007833;
	font-size: 13px;
	font-weight: bold;
	margin: 1px 4px 1px 10px;
	padding: 0 4px 0 12px;
}

.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
		background: url(images/brownBullet.jpg) no-repeat left;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:18px;              /* place us just up underneath the top-level images */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color: #000;                        /* this sets the unselected-text color */
	background:#007833;         /* this sets our menu's effective "border" color */
}

.menu ul li:hover ul.home,
.menu ul li a:hover ul.home {/* our first dropdown should not be skewed */
	left:0px;
}


.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#fff;               /* this sets the unselected drop-down text color */
	background:#b69b58;       /* this sets the drop-down menu background color */
	width:13.5em;
	border-bottom: 1px solid #007833;

}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#fff;
	background:#007833;
	
}

