  /*give the body height:100% so that its child
    elements can have percentage heights*/
body{ 
	height:100% 
}

  /*this is what we want the div to look like*/
div.fullscreen{
 	display:block;

    /*set the div in the top-left corner of the screen*/
	position:absolute;
	top:20px;
	left:0;
    
    /*set the width and height to 100% of the screen*/
	width:100%;
	height:97%;
  }

#top_bar {

	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 20px;
	background: #8ea2f8;
	border-bottom: 1px solid black;
	float: left;
	z-index:2;
	font-size: 12px;
	font-weight: normal;
	display: inline;
	font-family: Arial, Verdana, sans-serif;
	text-align: left;
	color: black;

}

#top_bar:hover {

	background: #628562;
	color: white;

}

#top_bar p.infotext {

	float: left;
	font-weight: bold;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: 15px;
	margin-top: 1px;

}

#top_bar a.infotext {

	float: left;
	font-weight: bold;
	padding-left: 3px;
	padding-right: 3px;
	margin-left: 3px;
	margin-top: 1px;
	color: yellow;
	text-decoration: none;

}

#top_bar a.close {

	font-size: 14px;
	font-weight: bold;
	text-align: right;
	margin-top: 1px;
	margin-right: 15px;
	float: right;
	color: yellow;
	text-decoration: none;

}

#top_bar a.close:hover {

	margin-top: 2px;
	color: white;

}

#top_bar a.infotext:hover {

	margin-top: 2px;
	color: white;

}

</style>


