@charset "UTF-8";
/* CSS Document */

			#SearchBox {
				background: url('../img/search_box.png');
				float: left;
				height: 60px;
				width: 305px;
			}
			
			#SearchButton {
				float: left;
				height: 60px;
				width: 70px;
			}
			
			#searchstring {
				background: none;
				border: none;
				color: #999999;
				font-size: 16px;
				outline: none;
				margin: 20px;
				width: 280px;
			}
			
			#SearchResults {
				background: #000000;
				display: none;
				overflow: auto;
				position: absolute;
				width: 330px;
				z-index: 99;
				top:32px;
			}
			
			#SearchResults a {
				color: #FFFFFF;
				display: block;
				padding: 5px 5px 5px 15px;
				text-decoration: none;
			}
			
			#SearchResults a .highlight {
				color: #0099FF;
			}
			
			#SearchResults a:hover {
				color: #333333;
				background: #CCCCFF;
				text-decoration: underline;
			}
			
			.MenuLink {
				color: #FFFFFF;
				display: block;
				padding: 10px 0px;
				text-align: center;
				width: 160px;
			}
			
			.MenuLink:hover {
				background: #CCCCCC;
			}
				

