@charset "utf-8";

.stdColor1
{
    color: black;
}

.stdColor2
{
    color:  #c13b00;/*dark orange*/
}

.stdColor3
{ 
    color: #fffae4;
}

.stdColor4
{
    color: yellow;
}

.bgdColor1
{
    background: #e8e595; /*light gold*/
}

.bgdColor2
{
    background: #fffae4; /* light beige */
}

.bgdColor3
{
	background:#d0a825; /*dark gold*/
}

.bgdColor4
{
    background: green;
}


html, body, ul, li, h1, h2, h3, h4
{

	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;    
    color: #000000;
    list-style: none;
}

body  
{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
    /* this centers the container in IE 5* browsers. The text is then set 
    to the left aligned default in the #container selector */
    text-align: center; 
}

p, div
{
   border: #000 1 dotted;
}

h1 img
{
    display: block;
}

img
{
    border: 0px;
}

p
{
    margin: 0.5em 0px;
}

a
{
    color: #aaa;
    text-decoration: none;
}

a:hover
{
    color: #1f8a70;
    text-decoration: underline;
}

.left
{
    float: left;
}

.right
{
    float: right;
}

.more
{
    text-align: right;
}

.clear
{
    clear: both;
}

#floatingPage 
{
	width: 1080px;
    height: 740px;
	background: #e8e595; 
	margin: 0 auto;
	text-align: left;
   
} 

#upper
{
    height:100px;
    position: relative;
    top: 0;
   	left: 0;
    width: 100%;
}


#mid 
{ 
    height: 600px;
	position: relative;
    top: 0;
    left: 0;
	width: 100%; 
	margin: 0 0 0 0;
    padding: 0 0 0 0;
	border: 2px solid #000000;
    text-align: left; 
} 

#lower 
{ 
	height: 40px;
    width: 100%;
	position: relative;
    /* 20 pixels of spacing is appearing (for some unknown reason)
    between the mid and lower 
    panels so this is to patch it up.*/
    top: -18px;
	/* this padding matches the left alignment of the elements 
    in the divs that appear above it. */
	padding: 0 0 0 0; 
    margin: 0 0 0 0;
    border: #d0a825 2px solid;
} 


/******************** Header **********************/
#upLeft
{
    width: 20%;
    margin: 0;
    padding: 0;
    line-height: 1;
    float: left;
}

#upLeft em
{

    padding: 10px 0 0 70px;
    margin: 0;
    font-weight: normal;
    font-size: 40px;
    font-family: "Times new roman", serif;
}

#upLeft strong
{
    margin: 0px;
    padding: 0px 0px 0px 90px;
    font-weight: normal;
    font-size: 22px;
    font-family: Verdana, arial, sans-serif;
}

#upCenter
{

    z-index: 15px;
    width: 75%;
    float:left;
}

#nav
{
    position: relative;
    top: 60px;
    left: 0px;
    width 100%;
    text-align: right;
    z-index: 15;
}

#nav ul
{
    position: relative;
    top: 0;
    padding: 0px 0 0px 0px;
}

#nav li
{
    display: inline;
    font: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

#nav a
{
    font-weight: normal;
}

#navTop
{
    position: relative;
    top: 0;
    left: 560px;
    width: 100px;
    font-size: 12px; 
}


/************* end upper *************************/
/*************** Lower **********************************/
#lower p 
{
	margin: 0; 
 	/* padding on this element will create space, 
    just as the margin would have, without the margin collapse issue */   
}

/*************** end footer ***********************************/
/* Miscellaneous classes for reuse */
.fltrt 
{ 
	/* this class can be used to float an element right in your page. 
	The floated element must precede the element it should be 
    next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft 
{ /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat 
{
    /* this class should be placed on a div or break element and should be 
    the final element before the close of a container that should 
    fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


