/************************************************************************************************/
/* Browsers make the body element only as tall as is needed for the actual page contents        */
/* They do not stretch the height to fill the browser window (or more correctly, the viewport). */
/* But we can force the <body> to stretch to 100% of the viewport by giving it a height of 100% */
/* with a style specification. In some browsers, the <body> element gets its height from the    */
/* <html> element rather than directly from the viewport. To cater for these browsers we also   */
/* give the <html> element a height of 100%.                                                    */
/************************************************************************************************/

html {
	height: 100%;
}

body {
	height: 100%;
	background: black url('pix/stars.jpg');
	scrollbar-face-color: gold;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
}

p {
	font-size: 12pt;
	font-style: normal;
	font-weight: normal;
	font-family: "Arial,Geneva,sans-serif"; color: white;
}

a:link {color: blue; text-decoration: none};

a:active {color: red; text-decoration: none};

a:visited {color: black; text-decoration: none};

a:hover {color: red; text-decoration: underline};

.splashfine {
	font-size: 8pt;
	font-style: italic;
	font-weight: bold;
	font-family: "Arial,Geneva,sans-serif"; color: white;
	background-color: black;
}

.title {
	font-size: 14pt;
	font-style: italic;
	font-weight: bold;
	font-family: "Arial,Geneva,sans-serif"; color: black;
	background-color: white;
}

.newsitem {
	font-size: 10pt;
	font-style: normal;
	font-weight: normal;
	font-family: "Arial,Geneva,sans-serif"; color: black; background-color: white;
}

.ltype {
	font-size: 16pt;
	font-style: normal;
	font-weight: normal;
	font-family: "Arial,Geneva,sans-serif"; color: black; background-color: white;
}

.lgtitle {
	font-size: 20pt;
	font-style: italic;
	font-weight: bold;
	font-family: "Arial,Geneva,sans-serif"; color: black;
	background-color: white;
}


