ï»¿/* UTF-8 CSS REV. 20080606 */

/*
the overflow: hidden on the html element since IE will show the scrollbar even if the page doesn’t need to scroll. 
This line will force IE to hide any content that is outside of the browser window, and therefore hide the scrollbar as well.
To enable a 100% height in FireFox 2/Mozilla, added the following CSS style rules to body and html { height:100%; }
Also { width: 100%; height: 100%; } take effect in Opera 9
*/
html {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0px;
	border-width: 0px;
	padding: 0px;
}

body {
	height: 100%;
	margin: 0px;
	border-width: 0px;
	padding: 0px;
	align: center;
	vertical-align: top;
	background-color: #FFFFFF;
	font-family: verdana, helvetica, sans-serif;
}

object {
	margin: 0px; 
	border-width: 0px;
}

embed {
	margin: 0px;
	padding: 0px;
	border-width: 0px;
	horizontal-align: center;
	vertical-align: top;
}

a {
	font-family: verdana, helvetica, sans-serif;
	font-size: 10pt; 
	font-style: normal;
	font-weight: normal; 
	color: #FFFFFF;
	text-decoration: underline; 
	
}

h5 {
	font-family: verdana, helvetica, sans-serif;
	font-size: 10pt; 
	font-style: normal;
	font-weight: normal;
	color: #333333;
	text-decoration: none; 
	text-align: center; 
	vertical-align: top;
	line-height: 11pt;
}

img {
	position: relative;
	top: 12px; 
	width: 160px; 
	height: 41px;
}