/*	Simple VII Menus by PVII Style Sheet.
	Comments are included for your assistance. */
	
/* General Notes- Rules preceded by # are ID selectors and are
	assigned in the HTML markup like this: <div id="logo">.
	IDs are unique. That is, an ID can only be assigned to
	one element per page.
	
	Rules preceded by a period are Class Selectors and are
	assigned in the HTML markup like this:
	<div class="p7simontrigger">
	
	Some elements are assigned both an ID and a Class, like this:
	<div class="p7simontrigger" id="p7trigger1">


/* 	The Submenu Layers
 	Use a combined selector to assign all properties common to each
	of the Submenu Layers. */
#p7simonsubs1, #p7simonsubs2, #p7simonsubs3, #p7simonsubs4, #p7simonsubs5, #p7simonsubs6, #p7simonsubs7, #p7simonsubs8, #p7simonsubs9 {
	position: absolute;
	width: 160px;
	top: 122px;
	font-size: .8em;
	visibility: hidden;
	background-color: #FFFFFF;
}
/* 	Now use individual selectors for each trigger Layer to assign
	their unique properties, in this case the left property */
#p7simonsubs1 {left: 50px;}
#p7simonsubs2 {left: 143px;}
#p7simonsubs3 {left: 192px;}
#p7simonsubs4 {left: 262px;}
#p7simonsubs5 {left: 328px;}
#p7simonsubs6 {left: 408px;}
#p7simonsubs7 {left: 458px;}
#p7simonsubs8 {left: 540px;}
#p7simonsubs9 {left: 613px;}

/* 	The submenu links are in paragraphs, so we set the margin to zero
	so there is no gap between links */
.p7submenus p {margin: 0;}


/* 	Submenu Link Styles
 	Use a combined selector for a and a:visited. Set padding in shorthand
	to 1px on top and bottom, 8px right and 12px left.
	
	Set display to block so entire link box, including padding is clickable.
	Set border to 1px solid.
	
	Set border colors in shorthand to Light Gray on top and left - and
	Charcoal Gray on right and bottom. This combination of colors creates
	a raised button-type effect.
	
	Set background color to dark gray, text to medium gray and turn off underlines. */
.p7submenus a, .p7submenus a:visited {
	display: block;
	padding: 1px 8px 1px 12px;
	border: 1px solid;
	border-color: #999 #333 #333 #999;
	background-color: #01435A;
	color: #ccc;
	text-decoration: none;
    font-size: 11px;
  font-family: Verdana, Arial, sans-serif;
  font-weight : normal;
}

/* 	Change background and text colors when links are hovered over.
	Use a combined selector for hover, active, and focus.
	
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */ 
.p7submenus a:hover {
	display: block;
	padding: 1px 8px 1px 12px;
	border: 1px solid;
	border-color: #999 #333 #333 #999;
	background-color: #01698F;
	text-decoration: none;
	color: #F9DC59;
    font-size: 11px;
  font-family: Verdana, Arial, sans-serif;
  font-weight : normal;
}

.p7submenus a:active, .p7submenus a:focus {
	display: block;
	padding: 1px 8px 1px 12px;
	border: 1px solid;
	border-color: #999 #333 #333 #999;
	background-color: #01698F;
	text-decoration: none;
	color: white;
    font-size: 11px;
  font-family: Verdana, Arial, sans-serif;
  font-weight : normal;
}

