﻿
/*--------------------------------------------------------------------------

Default Styles

- used to set the default style for elements

*/

body
{

	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
}

h1 
{ 
    font-size: 2.0em; 
    font-weight: bold;
} 
     
h2 
{ 
    font-size: 1.8em;     
    font-weight: bold;
} 
     
h3 
{ 
    font-size: 1.6em; 
    font-weight: bold;
} 
     
h4 
{ 
    font-size: 1.4em;     
    font-weight: bold;
} 
     
h5 
{ 
    font-size: 1.2em;     
    font-weight: bold;
} 
     
p 
{ 
    font-size: 1.0em;
    margin-bottom: 1.0em;  
}

hr
{
	margin-bottom: 0.8em;
}

a:Link
{
	color: #003366;
	text-decoration: none;
}

a:Visited
{
	color: #003366;
	text-decoration: none;
}

a:Hover
{
	color: #336699;
	text-decoration: none;
}

a:Active
{
	color: #336699;
	text-decoration: none;
}


/*--------------------------------------------------------------------------

Float

- for floating elements

*/

.FlLeft
{
	float: left;
	display: inline;
}

.FlRight
{
	float: right;
	display: inline;
}

.FlClear
{
	clear: both;
}


/*--------------------------------------------------------------------------

Standard 

- Standard Formatting

*/

body.std
{
	background-color: #666666;
}

