@charset "utf-8";
/* CSS Document */

#wrap	{
	/*width: 938px;  Spans the width of the page */
	/*height: 30px; */
	margin: 0; /* Ensures there is no space between sides of the screen and the menu */
	z-index: 99; /* Makes sure that your menu remains on top of other page elements added this to index page header code also */
	position: relative; 
	background-color: #085291;   /* bar behind nav bar, I am not using it */
	}
	
.navbar	{
	height: 30px;
        padding: 0;
	margin: 0;
	position: absolute; /* Ensures that the menu doesn’t affect other elements */
	border-right: 1px solid #01b1af; 
	}
	
	/* width of the buttons text, and color of the buttons */
.navbar li 	{
			height: auto;	
			width: 157px;  /* Each menu item is 186px wide */
			float: left;  /* This lines up the menu items horizontally */
			text-align: center;  /* All text is placed in the center of the box */
			list-style: none;  /* Removes the default styling (bullets) for the list */
			
			font-family: Arial, Verdana, Helvetica;
			font-size: 13px;
			
		/* 	font: normal bold 11px/1.2em Arial, Verdana, Helvetica;  */
			padding: 0;
			margin: 0;
			background-color: #085291; /* color of top link bar */
                        }
	/* Line between the buttons */					
.navbar a	{							
		padding: 9px 0;  /* HEIGHT OF BAR Adds a padding on the top and bottom so the text appears centered vertically */
		border-left: 1px solid #2666af; /* Creates a border in a slightly lighter shade of blue than the background.  Combined with the right border, this creates a nice effect. makes | line between the buttons */
		border-right: 1px solid #134672; /* Creates a border in a slightly darker shade of blue than the background.  Combined with the left border, this creates a nice effect. */
		text-decoration: none;  /* Removes the default hyperlink styling. */
		color: #ffffff; /* Text color is white */
		display: block;
		}

/* rollover color and information */
/*.navbar li:hover, a:hover {background-color: #01b1af;}  ROLLOVER COLOR */
.navbar li ul 	{
		display: none;  /* Hides the drop-down menu */
		height: auto;									
		margin: 0; /* Aligns drop-down box underneath the menu item */
		padding: 0; /* Aligns drop-down box underneath the menu item */			
		}				

.navbar li:hover ul 	{
                        display: block; /* Displays the drop-down box when the menu item is hovered over */
                        }
						
.navbar li ul li {background-color: #01b1af;} /* rollover color */
.navbar li ul li a 	{
		border-left: 1px solid #42c9d6; /* line color on outside left edge of  dropdown */
		border-right: 1px solid #42c9d6;  /* line color on outside right edge of  dropdown */
		border-top: 1px solid #42c9d6; /* line color between items in dropdown */
	/*	border-bottom: 1px solid #42c9d6;    This made the lines double thick between the items in dropdown*/
		}
				
.navbar li ul li a:hover	{background-color: #085291;}