@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	behavior:url(csshover.htc); /* WinIE behavior call allowing hover to work on any element  */
}
/* This is my standard self-centering wrapper. It has a width of 56 ems and a height of 38 ems.*/
#container {
	background-color: #FFFFFF;
	height: 38em;
	width: 56em;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 1px solid #000000;
	position: relative;
	text-align: left;
}
/* This gives the wrapper a width of 56 ems. The bottom will stretch downward to accomodate objects like a calendar.*/
#stretchyContainer {
	background-color: #FFFFFF;
	width: 56em;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 1px solid #000000;
	position: relative;
	text-align: left;
	background-image: url(images/grayNavBarExtension.jpg);
	background-repeat: repeat-y;
}
/*This is my main content area. It is defined by left margin of 10.5 ems and a right margin of 1.5 ems. This leaves a content area which is 44 ems wide. Since the height is not defined, this container will stretch as needed.*/
#mainContent {
	margin-right: 1.25em;
	margin-left: 10.75em;
}
/* These style links outside of the navBar. */
#mainContent a:link {
	text-decoration: none;
	color: #008800;
}
/* These style links outside of the navBar. */
#mainContent a:visited {
	color: #990033;
	text-decoration: none;
}
/* These style links outside of the navBar. */
#mainContent a:hover {
	color: #333333;
	text-decoration: none;
}
/*This defines the navBar box.*/
#navBar {
	background-color: #EFEFEF;
	float: left;
	width: 9.5em;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	height: 36.1em;
}
#navBar img {
	margin-bottom: 1.5em;
	right: -3em;
	margin-left: 0em;
}
/*Defines the width and appearance of a navigation button without hovering.*/
#navBar ul {
	margin: 0px;
	padding: 0px;
	width: 9.5em;
	background-color: #EFEFEF;
}
/*This defines the appearance of the submenu after it has popped-up and before it is hovered.*/
#navBar ul ul {
	position: absolute;
	top: 0em;
	left: 9.5em;
	display: none;
	background: #eeced8;
}
/*Relative position property involved in correct placement of submenus. Value of none for
list-style-type property gets rid of bullets on list.*/
#navBar li {
	list-style-type: none;
	position: relative;
	margin: 0px;
}
/*Part of fix for IE/Win but mentioned in comments for next selector.*/
#navBar>ul a {
	width: auto;
}
/*The block value for the display property makes the whole rectangle around a link. Otherwise, just the words would 
be clickable. The padding property positions the words with the button. The value of none for the text-decoration property
turns off the underlining that would typically be associated with a link. Width is part of workaround for IE/Win but.
It is box width minus (left plus right padding).*/
#navBar li a {
	display: block;
	padding-top: 0.25em;
	padding-right: 0em;
	padding-bottom: 0.25em;
	padding-left: 1em;
	text-decoration: none;
	width: 8.5em;
	color: #000000;
}
/* This defines the appearance of the Applications button when you hover over it. */
#navBar li.submenu:hover {
	background-color: #ce0045;
	/*This is part of my attempt to give the buttons a 3-dimensional look.
	border-top-width: 0.1em;
	border-right-width: 0.1em;
	border-bottom-width: 0.1em;
	border-left-width: 0.1em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #FFFFFF;*/
}
/*With appropriate HTML, this entry causes second level submenus to appeaar when you hover
over their organizing link.*/
#navBar ul.level1 li.submenu:hover ul.level2 {
	display: block;
}
/*With appropriate HTML, this entry causes third level submenus to appeaar when you hover
over their organizing link.*/
#navBar ul.level2 li.submenu:hover ul.level3 {
	display: block;
}
/*This places an arrow on the Applicaations button indicating that it leads to a submenu.*/
#navBar li.submenu {
	background-color: #EFEFEF;
	background-image: url(images/submenu.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/*This converts text color from black to white when you hover over a navigation button.*/
#navBar li a:hover {
	color: #FFFFFF;
	font-weight: normal;
}
 /*This defines the appearance of a button when you hover over a main menu button except for Applications. */
 #navBar li:hover {
	color: #FFFFFF;
	background-color: #990033;
	/* This is my attempt to give the buttons a 3-dimensional look.
	border-top-width: .1em;
	border-right-width: .1em;
	border-bottom-width: .1em;
	border-left-width: .1em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #FFFFFF;*/
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
