/****************************************
 * Cornell Identity
 ****************************************/
/* 
	The following set of rules controls the appearance of the topmost 
	banner on the page, including height, background color, and text color.
	The Cornell identity banner should appear on every page of the site.
	
	The version of the logo that appears in the XHTML code is hidden from 
	browsers that can read this stylesheet, and it is replaced by a version
	of the logo that corresponds to the background color of the banner. 
	This logo is placed in the background of two elements below (rather than
	one) to prevent flickering when moused over by IE/Win users who have 
	disabled the browser cache.
	
	The "Search Cornell" link is aligned with the right edge of the page.
*/
#cu-identity {
	height: 45px;
	background: #000;
	}

#cu-logo {
	position:relative;
	width:50em;
	background:url(../images/cu_logo.gif) left no-repeat #000000;
	border-bottom:2px solid #f2d7b6;
	}
	
#cu-logo a {
	border: none;
	display: block;
	width: 50em;
	height: 45px;
	background:url(../images/cu_logo.gif) left no-repeat #000000;
	}
	
#cu-logo img {
	display: none;
	}
	
#cu-search {
	text-decoration:none; 
	font-size:.7em; 
	color:#FFFFFF;
	position: absolute;
	top: 11px; 
	right: 50%;
	width: 200px;
	margin-right: -385px;
	}
	
#cu-search a {
	float: right;
	padding: 5px 15px;
	font-size: 1em;
	color: #fff;
	text-decoration: none;
	border: none;
	}
	
#cu-search a:hover {
	background: #555;
	}