
/*
File: Base.css
Description: Contains general html-tag specifications and various basic styling classes that
applies to many elements.
*/



/* General base styling */
*
{
	margin: 0;
	padding: 0;
}
html
{
	font-family: Verdana;
	font-size: 0.7em;
	font-weight: normal;
}
h1, h2, h3, h4, h5, h6
{
	font-weight: normal;
	color: #444;
}
h1
{
	margin: 0 0 0.5em;
	font-size: 1.8em;
}
h2
{
	margin: 0 0 0.5em;
	font-size: 1.7em;
}
h3 
{
	margin: 0.7em 0 0.3em;
	font-weight: bold;
	font-size: 1.1em;
}
h4
{
	font-weight: bold;
	font-size: 1.0em;
}
ul, ol
{
	list-style-type: none;
}
p, table
{
	line-height: 1.5em;
	margin: 0.8em 0;
}
a,
a:link,
a:hover,
a:active,
a:visited
{
	color: #0069A6;
}
img
{
	border: 0;
}

/* Special styling classes */
.usp{font-size:1.7em;}
.display-none{display:none;}