
/*Mark Sherak's Official Webpage
CWB 204 Cascading Style Sheets Fall 2011 Mark Sherak*/

/* This stylesheet is used to format the drop-down navigation bar */

		#navigationbar {
			position: relative;
			left: 175 px;
			}
		#navigationbar ul {
			font-family: Arial, Verdana;
			font-size: 18px;
			margin: 0;
			padding: 0;
			list-style: none;
			}
		#navigationbar ul li {
			display: block;
			position: relative;
			float: left;
			}
		#navigationbar li ul { display: none; }
		#navigationbar ul li a {
			display: block;
			text-decoration: none;
			color: #ffffff;
			border-top: 1px solid #ffffff;
			padding: 5px 15px 5px 15px;
			background: #2C5463;
			margin-left: 1px;
			white-space: nowrap;
			}
		#navigationbar ul li a:hover { background: #617F8A; }
		#navigationbar li:hover ul {
			display: block;
			position: absolute;
			}
		#navigationbar li:hover li {
			float: none;
			font-size: 12px;
			}
		#navigationbar li:hover a { background: #617F8A; }
		#navigationbar li:hover li a:hover { background: #95A9B1; }

