/* See http://css.maxdesign.com.au/floatutorial/tutorial0916.htm CSS Tutorial and CODE*/

/* START from Eric Meyer/*
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #666;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #cc0000;
  font-size: 24px; /* 14px */
  font-weight: bold;
  line-height: 30px; /*14px */
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 16px; /*  12px*/
  font-weight: bold;
  line-height: 18px;
}

h3 {
  color: #000;
  font-size: 12px; /*  12px*/
  font-weight: normal;
  line-height: 16px;
}


/*END from Eric Meyer */

/*START MAX Design */

#container
{
width: 90%;
margin: 10px auto;
background-color: #fff;
color: #333;
border: 15px solid gray;
line-height: 130%;
}

#top
{
padding: .5em;
background-color: #ddd;
border-bottom: 1px solid gray;
}

#top h1
{
padding: 0;
margin: 0;
}

#leftcolumn
{
float: left;
width: 200px;
margin: 0;
padding: 1em;
}

#rightcolumn
{
float: right;
width: 120px;
margin: 0;
padding: 1em;
}

#maincolumn
{
margin-left: 220px;
border-left: 1px solid gray; 
margin-right: 180px;
border-right: 1px solid gray;
padding: 1em;
max-width: 36em;
}

#maincolumn1
{
margin-left: 30px;
border-left: 1px solid gray; 
margin-right: 30px;
border-right: 1px solid gray;
padding: 1em;
max-width: 36em;
}

#footer
{
clear: both;
margin: 0;
padding: .5em;
color: #333;
background-color: #ddd;
border-top: 1px solid gray;
}

#leftnav p, #rightnav p { margin: 0 0 1em 0; }
#content h2 { margin: 0 0 .5em 0; }


/* navigation css code */

#navcontainer ul
{
margin: 0;
padding: 0;
list-style-type: none;
}

#navcontainer li { margin: 0 0 .2em 0px; }

#navcontainer a
{
display: block;
color: #FFF;
background-color: #036;
width: 9em;
padding: .2em .8em;
text-decoration: none;
}

#navcontainer a:hover
{
background-color: #369;
color: #FFF;
}


#navcontainer ol
{
margin: 0;
padding: 0;
list-style-type: decimal;
}

#navcontainer li { margin: 0 0 .2em 0px; }

#navcontainer a
{
display: block;
color: #FFF;
background-color: #036;
width: 9em;
padding: .2em .8em;
text-decoration: none;
}

#navcontainer a:hover
{
background-color: #369;
color: #FFF;
}

DIV#FloatDiv
{
    FLOAT: left;
    POSITION: relative;
    WIDTH: 350px;
    padding-left: 5px;
    padding-right: 10px;
    BORDER-RIGHT: 1px solid;
    BORDER-TOP: 1px solid;
    BORDER-LEFT: 1px solid;
    BORDER-BOTTOM: 1px solid;
    TEXT-ALIGN: left;
BACKGROUND-COLOR: lightgoldenrodyellow;

}



/*END MAX Design */

th {
	font-size:12px;
	color: #616B76;
	background: #D9E2E1;
	border-right: 1px solid #A2ADBC;
	border-bottom: 1px solid #A2ADBC;
	border-top: 1px solid #A2ADBC;
	border-left: 1px solid #A2ADBC;
}


td {
	border-right: 1px solid #A2ADBC;
	border-left: 1px solid #A2ADBC;
	border-bottom: 1px solid #A2ADBC;
	border-top: 1px solid #A2ADBC;
	text-align:center;
	color: #000;
	font-size: 12px; 
	font-weight: normal;
	
}
/* http://www.alistapart.com/articles/taminglists/   see nice article on css and lists */