/* this stylesheet contains all the styles used to put the navigation bar on the page*/
/* create container for nav-bar */
#navbar {	width:					190px;
			font-size:				1.2em;
			border:					5px solid #330033;										}

/* styles the unordered list for the nav-bar*/			
#navlist{	list-style-type:		none; 				/*turns off display of bullet*/	
			margin:					0; 					/*removes indent IE and Opera*/
			padding:				0; 					/*removes indent Mozilla and NN7*/	}

/* styles the anchors for the unordered list in the nav-bar*/
#navlist a, #navlist a:visited 
		{
			display:				block;
			padding:				2px 2px 2px 12px;
			border:					1px solid #000000;
			background-color:		#999999;			/*color of button*/
			background-position:	0% 50%;
			color:					#000000;			/*color of text*/
			text-decoration:		none;													}

/* styles the anchors for the unordered list -- if the mouse hovers over an anchor on the nav-bar*/			
#navlist a:hover 
		{
			background-color:		#9999FF;			/*color of button*/
			color: 					#333333;			/*color of text*/					}

/* styles the logo image for the nav-bar*/			
#navlogo{	width:					170px;
			border:					0;
			margin:					0;
			padding:				0;														}
