/* Remove all default padding and margins */

* {
margin: 0 0 0 0;
padding: 0 0 0 0
}

/* set default fore and background colors */
body 
{
font-family:arial, verdana, serif;
/* if you want space at top change first zero to a measurement in pixels - example 10px */
margin: 0 0 0 0;
/* set default colors */
font-size: 10pt;
color: #000000;
background-color: #808080;
}

/* set width and height of container for site heading and slogan */

#container {
width: 1000px;
/* center container */
margin-left: auto;
margin-right: auto;
/* set background color for heading container */
background-color: #F0F0F0;
}

#heading {
width: 1000px;
height: 120px;
/* set background color for heading container */
background-color: transparent;
margin-bottom: 0;
}

#left {
/*send site heading division to left position */
float: left;
/* set width and height of site heading division (left) */
width: 700px;
}

/* set font properties for h1 tag in left division */
#left h1{
font-family:arial, verdana, serif;
font-size: 20pt;
font-weight: 600;
text-align: left;
color: #ffffff;
background-color: transparent;
/* assign padding to top right bottom and left sides of h1 tag */
padding: 30px 0 0 10px
}


/* position right division and define width and height */

#right {
float: left;
width: 300px;
}

/* define font properties for paragraph slogan within the right division */

#right p{
font-family:arial, verdana, serif;
font-size: 14pt;
font-weight: 500;
text-align: center;
color: #ffffff;
background-color: transparent;
/* assign padding to top right bottom and left sides of paragraph tag in right division */
padding: 35px 0 0 0
}

/* set properties for links division */

#links {
/* set width and height */
width: 1000px;
height: 30px;
/* set background color to transparent */
background-color: #606060;
clear:both;
margin-top:0;
padding-top: 5px;
}

/* links are set in a paragraph to allow postioning of right left or center */
#links a {
/* define font properties */
font-family:arial, verdana, serif;
font-size: 10pt;
font-weight: 600;
/* center links - if you want them left aligned change to left */
text-align: left;
/* add 4px of padding to top of links */
padding: 4px 5px 0 5px;
color: #ffffff;
background-color: transparent;
text-decoration: none
}

#links span {
/* define font properties */
font-family:arial, verdana, serif;
font-size: 10pt;
font-weight: 600;
color: #801020;
}

/* set hover or roll over color of links */
#links a:hover {
color: #801020;
background-color: transparent
}


/* set width and height of container for body section */

#main {
width: 1000px;
background-color:transparent;
}

#main-left {
/* position main-left division to left within container main */
float: left;
width: 250px;
padding: 5px;
text-align: center;
/* set background color of main left to white */
background-color: transparent;
/* if you add to much content or too large an image to this division - initiate scroll bars to accomodate */
overflow: auto
}

/* set font properties for h1 tag in main-left division */
#main-left h1{
font-family:arial, verdana, serif;
font-size: 16pt;
font-weight: 500;
text-align: center;
color: #006600;
background-color: transparent;
/* add 5px padding to top and bottom of h1 tag */
padding: 5px 0 5px 0
}
/* set font properties for h2 tag in main-left division */
#main-left h2{
font-family:arial, verdana, serif;
font-size: 14pt;
font-weight: 500;
text-align: left;
color: #006600;
background-color: transparent;
/* add 5px padding to top and bottom of h2 tag */
padding: 5px 0 5px 25px
}

/* set font properties for code tag in main-left division */
#main-left code {
font-size: 10pt;
color: #003300;
background-color: transparent;
}

/* define font properties of paragraph tag in main-left division */
#main-left p {
font-family:arial, verdana, serif;
font-size: 12pt;
font-weight: 500;
text-align: left;
/* indent paragraph */
text-indent: 1em;
/* set color of text */
color: #000000;
background-color: transparent;
/* assign padding to top right bottom and left sides of paragraph tag in main-left division */
padding: 5px 25px 5px 25px
}

#main-right {
/* position main-right to align it with main-left within container main */
float: left;
/* set width and height of main-right */
width: 750px;
padding: 10px 0 10px 0;
/* if you add to much content or too large an image to this division - initiate scroll bars to accomodate */
overflow: auto;
background-color: transparent;
}

#main-right p {
padding-top: 10px;
}

/* and padding and borders to image in main-right division - image is set in paragraph for centering */
#main-right img {
/* set margin for image top right bottom left */
margin: 4px;
border-top: solid #006600 1px;
border-right: solid #000000 1px;
border-bottom: solid #000000 1px;
border-left: solid #006600 1px
}

.main-hr 
{
    width: 100%;
    height:4px; 
    background-color: #A0A0A0;
}

/* Class (for DIVs) for highlighting blocks of text... */
.main-item 
{
    width: 850px;
    margin: 5px;
    padding: 5px;
    background-color: #E8E8E8;
}
    
/* Class (for DIVs) for highlighting blocks of text... */
.main-item table
{
    border-color:#C0C0C0; 
    padding-left:5px;
}

/* Class (for DIVs) for highlighting blocks of text... */
.main-item td
{
    padding: 5px;
}
   
/* The following two classes are for DIVs to split a main-item into two columns */
.main-item-left
{
    width: 680px;
    float: left;
    background-color: transparent;
}   

.main-item-right
{
    width: 150px;
    float: left;
    margin-left: 10px;
    background-color: #F8F8F8;
}   

/* set width and height of container for footer division */
#footer {
width: 1000px;
height: 50px;
clear:both;
/* define background color of footer division */
background-color: #801030;
}

#footer p {
font-family:arial, verdana, serif;
font-size: 9pt;
font-weight: 600;
text-align: center;
color: #ffffff;
background-color: transparent;
padding: 4px 0 0 0
}

#footer a {
/* define font properties */
font-family:arial, verdana, serif;
font-size: 10pt;
font-weight: 600;
color: #ffffff;
}

/* set font properties of address tag within footer */
#footer address {
font-family:arial, verdana, serif;
font-size: 9pt;
font-weight: 600;
text-align: center;
color: #ffffff;
background-color: transparent;
padding: 4px 0 0 0
}







