/*	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">

/*	Body Rule Notes 
	margin values are in shorthand: Top Right Bottom Left.
	Setting the left and right margins to 15% effectively centers
	all static content and makes that content fill 70% of the window. 
	Zero is the only value that does not require a unit of measure
	Global Font Style and base Font Size */
body {
	background-image:  url(images/subbg.gif);
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	margin: 120px 20px 0px 20px;
	width: 600px;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/*	Position absolute turns a DIV into what Dreamweaver
	refers to as a LAYER */

#viewcart {
	position: absolute;
	height: 20px;
	width: 388px;
	left: 336px;
	top: 7px;
	text-align: right;
	font-size: 11px;
	font-weight: bold;
}
#viewcart a:link {color: #990000;}
#viewcart a:visited {color: #990000;}
#viewcart a:hover, #footer a:active, #footer a:focus {color: #cc9900;}


#logo {
	position: absolute;
	top: 24px;
	left: 2px;
	width: 243px;
}

#howmenu {
	position: absolute;
	left: 67px;
	top: 125px;
	text-align: left;
	background-color: #FFFFCC;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	border-top: 3px solid #ffcc33;
	border-right: 1px solid #ffcc33;
	border-bottom: 3px solid #ffcc33;
	border-left: 1px solid #ffcc33;
	width: 138px;
}

#howmenu p {
	font-size: 11px;
	margin: 2px;
	font-color: #FFFFCC;
	color: #990000;
	text-indent: 3px;
}


#howmenu a:link {
	text-decoration: none;
	color: #990000;
}

#howmenu a:visited {
	text-decoration: none;
	color: #990000;
}

#howmenu a:hover, #howmenu a:active, #howmenu a:focus {
	text-decoration: underline;
}


/* 	The main content DIV has no position and is therefore
	considered STATIC. */

/* 	By adding a Tag "p" after the maincontent ID Selector we
	create what is called a Descendant Selector. In this instance
	the rule is defining styles for all paragraphs that are
	children (descendants) of the maincontent DIV. Another way
	of saying this is "all paragraphs inside maincontent".
	
	We set all paragraphs in the main content area to have
	Line height set to 150% for readability and text justified.
	Margin is set in shorthand to 8px top and bottom
	and zero left and right.
	
	In shorthand, the presence of two
	values means the first one is for Top and Bottom while the
	second is for Left and Right. */
#maincontent p {
	margin: 8px 0;
	font-size: 12px;
	line-height: 16px;
}

#maincontent a:link {color: #990000;}
#maincontent a:visited {color: #333333;}
#maincontent a:hover, #footer a:active, #footer a:focus {color: #cc9900;}

#etips {
	position: inherit;
	background-image: images/etips.gif;
	font-size: 12px;
	background-image: url(images/etips.gif);
	background-repeat: no-repeat;
	float: right;
	height: 169px;
	width: 185px;
	font-weight: bold;
	vertical-align: middle;
}


/* Heading Rules */

/*	The H1 is used to wrap the Logo, representing
	the top of your page's hierarchy */
h1 {margin: 0;}

/*	Additional Headings
	font type for h2 only
	Remove font-weight for H2 to make it render in default bold weight
	
	Font size is based on its container. An H2 in maincontent,
	for example, would be 200% x 85%
	
	Substantial top marigns are set for headings to provide nice
	separation of sections. */
h2 {
	margin: 24px 0 0 0; /* shorthand T-R-B-L */
	font-weight: bold;
	font-size: 22px;
	color: #990000;
}
h3 {
	font-size: 100%; 
	margin: 0;}
h4 {font-size: 115%; margin: 36px 0 0 0;}


/* 	Link styles for Main Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
/* removed these link specs which clashed with mainlinks specs
#maincontent a:link {color: #990000;}
#maincontent a:visited {color: #333333;}
#maincontent a:hover, #maincontent a:active, #maincontent a:focus {color: #CC9900;}*/


/* 	Use a combined selector to assign all properties common to each
	of the trigger DIVs, which are absolutely positioned
	Dreamweaver 'Layers' */
#button1, #button2, #button3, #button4, #button5 {
	position: absolute;
	top: 37px;
	background-color: transparent;
	border: 0;
	width: 51px;
	z-index: 4;
}
/* 	Now use individual selectors for each trigger Layer to assign their unique properties.
	The first button is wider than the rest, so only its width is unique and declared here. */
#button1 {left: 250px; width: 97px;}
#button2 {left: 347px;}
#button3 {left: 444px;}
#button4 {left: 541px;}
#button5 {left: 638px;}


/* 	Link styles for the Trigger Layers

 	Set to block to make link fill up entire layer with medium gray
	background color that shows through the transparent fill of the trigger images */
.trigger a {
	display: block;
	background-color: #ECE09D;
}

/* 	When the trigger images are hovered over, the background color changes to white.
	We don't change text color because the link text is actually the non-transparent
	portion of the trigger image.
	
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
.trigger a:hover, .trigger a:active, .trigger a:focus {
	background-color: #FFFFFF;
}


/* 	The Submenu Layers
 	Use a combined selector to assign all properties common to each
	of the Submenu Layers. */
#submenu1 {
	position: absolute;
	width: 115px;
	top: 90px;
	font-family: Verdana, Arial, sans-serif;
	font-size: 9px;
	background-color: #FFFFFF;
	left: 255px;
	visibility: hidden;
	z-index: 10;
}
/* 	Now use individual selectors for each trigger Layer to assign
	their unique properties, in this case the left property 
	#p7simonsubs1 {left: 150px;}*/


/* 	The submenu links are in paragraphs, so we set the margin to zero
	so there is no gap between links */
.submenu 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. */
.submenu a, .submenu a:visited {
	display: block;
	padding: 3px;
	border: 1px solid;
	border-color: #999 #333 #333 #999;
	background-color: #333333;
	color: #FFFFFF;
	text-decoration: none;
}

/* 	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. */ 
.submenu a:hover, .submenu a:active, .submenu a:focus {
	background-color: #FFCC33;
	color: #333333;
}

.mainlinks {
	font-family: Verdana, Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

.mainlinks a:link, .mainlinks a:visited {
	color: #333333;
}

.mainlinks a:hover, .mainlinks a:active {
	color: #990000;
}



/* The footer is a Static DIV set with a substantial top margin to
	separate it from the main content above.
	
	Font size is 75% of the global font size.
	
	Padding top is set to 6px to provide separation between the
	footer contents and the 2px wide dotted border above it. */
	
	

	
#footer {
	margin: 10px 0 0;
	font-size: 10px;
	padding: 10px 0 0;
	border-top: 1px #000000;
	line-height: 12px;
	position: absolute;
	left: 70px;
	width: 605px;
	overflow: visible;
}
/* 	Link styles for Footer Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */

#footer a:link {color: #990000;}
#footer a:visited {color: #333333;}
#footer a:hover, #footer a:active, #footer a:focus {color: #cc9900;}
