body
{
    font-family: Arial, Helvetica, sans-serif;
}
.menudiv A, A:link, A:visited
{
    PADDING-LEFT: 5px;
    FONT-WEIGHT: bold;
    FONT-SIZE: small;
    COLOR: #330033;
    TEXT-DECORATION: none
}
.main A, A:link, A:visited
{
    FONT-WEIGHT: bold;
    COLOR: #330033;
    TEXT-DECORATION: none
}
A:active, A:hover
{
    TEXT-DECORATION: underline
}
button, .Button
{
    border: #aaaaaa 1px solid;
    font-size: small;
    font-weight: bold;
    color: #dddddd;
    cursor: hand;
    background-color: #000066;
}
input 
{
	font-size : small;
	font-weight : normal;	
}

.header
{
    PADDING-RIGHT: 5px;
    PADDING-LEFT: 5px;
    PADDING-BOTTOM: 5px;
    PADDING-TOP: 50px;
    FONT-WEIGHT: bold;
    FONT-SIZE: x-large;
    BACKGROUND: #000066;
    COLOR: #ffffff;
    FONT-FAMILY: 'Arial Black', Arial, Helvetica, sans-serif;
    white-space: nowrap;
}
.headersmall
{
    FONT-SIZE: small;
    BACKGROUND: #000066;
    PADDING-BOTTOM: 5px;
    COLOR: #ffffff;
    PADDING-TOP: 5px;
}
.separator
{
    BACKGROUND: #000066;
}
.footer
{
    PADDING-RIGHT: 5px;
    PADDING-LEFT: 5px;
    FONT-SIZE: xx-small;
    COLOR: #666666;
}
.error
{
    FONT-SIZE: small;
    FONT-WEIGHT: bold;
    COLOR: red;
}
.info
{
    FONT-SIZE: small;
    FONT-WEIGHT: bold;
    COLOR: fuchsia;
}

/* NEW THREE-COLUMN NAVIGATION */
.subheading 
{
	clear:both;
	background:#eee;
	border-top:4px solid #000;
	margin:0;
	padding:6px 15px !important;
	text-align:right;
}

.main
{
	font-size: small;
	position: relative;
	clear: both;
	float: left;
	width: 100%;			
	overflow: hidden;
	background: #eeeeee;
}

.leftnav, .contentwrap
{
	float: left;
	width: 100%;			
	position: relative;
}

.content, .colleft, .colright
{
	float: left;
	position: relative;
	padding: 0 0 1em 0;
	overflow: hidden;
}

.main .contentwrap
{
	right: 15%;		/* THIS DEFINES THE WIDTH OF THE RIGHT COLUMN */	
	background: #ffffff;		
}
.main .leftnav 
{
	right: 70%;		/* THIS DEFINES THE WIDTH OF THE CENTER COLUMN; WHAT REMAINS IS THE LEFT COLUMN WITH */
	background: #eeeeee;	
}

/* TO CALCULATE WIDTHS & LEFTS OF EMBEDDED COLUMN DIVS:

"width" value of each column = (intended column width) - TWO padding units

"left" of left column = (left col width) + THREE padding units
"left" of content column = (total page width) + ONE padding unit
"left" of right column = (total page width) - (left col width) + FIVE padding units

e.g. if a padding unit is 2% and the left column is 25% of the page real estate then .colleft's width will be (25% - 4%) = 21%

*/

.main .content
{
	width: 66%;			
	left: 102%;			
	text-align: justify;
	background: #ffffff;		
}
.main .colleft 
{
	width: 11%;			
	left: 21%;			
	background: #eeeeee;		
}
.main .colright 
{
	width: 11%;			
	left: 95%;			
	background: #eeeeee;		
}

/* CSS DROPDOWNS */
#menubar {
	margin: 0;
	padding: 0;
	height: 1em; 
}
#menubar li 
{
	list-style: none;
	float: left; 
}
#menubar li a 
{
	display: block;
	padding: 3px 8px;
	background-color: #5e8ce9;
	color: #ffffff;
	text-decoration: none; 
}
#menubar li ul 
{
	display: none; 
	width: 10em;
	background-color: #adf;
}
#menubar li:hover ul, #menubar li.hover ul
{
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; 
}
#menubar li:hover li, #menubar li.hover ul 
{
	float: none; 
}
#menubar li:hover li a, #menubar li.hover ul 
{
	background-color: #adf;
	border-bottom: 1px solid #fff;
	color: #000; 
}
#menubar li li a:hover
{
	background-color: #8db3ff; 
}
