/* 	CONTENTS
 * 
 * 1  BODY
 * 2  AUTO-COMPLETER
 */

/*	1  BODY						*/
body {
	font-size: 11px;
	font-family: "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

#titleLayer {
	padding: 2px; 
	font-weight: bold; 
	font-size: 18px; 
	text-align: center; 
	margin-bottom: 1.5em;
}

/* float clearing for IE6 */
* html .clearfix{
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
*+html .clearfix{
  min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

/*	2  AUTO-COMPLETER			*/
div.autocomplete {
	position:absolute;
	width:500px;
	background-color:white;
	border:1px solid #888;
	margin:0px;
	padding:2px;
	max-height: 150px;
	overflow: auto;	
}
div.autocomplete ul {
	list-style-type:none;
	margin:0px;
	padding:0px;
}
div.autocomplete ul li.selected { 
	background-color: yellow;
}
div.autocomplete ul li {
	list-style-type:none;
	display:block;
	margin:4px 0;
	padding:4px;
	height:45px;
	cursor:pointer;
	text-align: left;
	font-weight: normal;
}

.informal{
	font-style:italic;
	font-size: 13px;
}

.autoCompleteText{
	font-size: 13px;
	font-weight: bold;
}

/*	3  HEADER LINKS					*/
#header-links {
	background-color: #333;
	font-size: 13px;
	padding: 5px;
}
#header-links a {
	color: #FFF;
	text-decoration: none;
	display: block;
	padding: 5px;
	margin-right: 15px;
	float: left;
	font-weight: bold;
}
#header-links a:hover {
	color: #33CCFF;
}
#header-links a.selected {
	color: #ccc;
}


