@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	height: 45em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #F2CE3B;
}
a {
	color: #F2CE3B;
	text-decoration: none;
}
.oneColElsCtr #container {
	width: 46em;
	height: 100%;
	background: #080808;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	z-index: 0;
}
.oneColElsCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColElsCtr #birdHolder {
	position: absolute;
	top: 30px;
	left: 50px;
	width: 40px;
	height: 40px;
	z-index: 10;
}

/* css dhtml flyout navigation */
div.resourceMenu{
	position: absolute;
	margin-left: -5px;
	color: #F2CE3B;
}
div.blogMenu{
	position: absolute;
	margin-right: -5px;
	color: #F2CE3B;
}
div.resourceMenu .anchor{
	border: 1px solid #F2CE3B;
	width: 5px;
	padding-right: 5px;
	float: left;
	text-align: left;
}
div.blogMenu .anchor{
	border: 1px solid #F2CE3B;
	width: 5px;
	padding-right: 5px;
	float: right;
}
div.menu{
	color: #AAA;
	display: none;
}
div.menu ul{
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}
div.menu a:hover{
	text-decoration: underline;
}
div.blogMenu:hover div.menu, div.resourceMenu:hover div.menu{
	display: block;
}
