/* stylesheet.css */

/* Page header style */
#header{
     width: 100%;
     background-color:#EEEEEE;
     border-bottom: none;
}

/* Page footer style */
#footer{
     clear: both;
     width: 100%;
     background-color:#EEEEEE;
     border-top: none;
     padding-top: 4px;
}

/* Style for main content column */
#main{
       background-color:#EEEEEE;
       margin: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 10em;
       vertical-align:top;
}
/* Style for sidebar column */
#sidebar{
           background-color:#EEEEEE;
           float: left;
           display: inline;
           padding: 0;
           margin: 1em;
           width:8em;
            /* Total width is 10em */
}

/* Style for Links */
a:link {color: #1e0090;
       }
a:visited {color: #1e0090;
       }

/* Body text and page background */
body{
     margin: 0;
     padding: 0;
     font-family: 'Book Antiqua', Times, Serif;
     font-size: medium;
     color: #ffffff;
     background-color: url("http://www.dandecker.net/metal.jpg");
     background-repeat: repeat;
}


/* Add some margin space to main content */
#main{
     padding-left: 20px;
     padding-right: 10px;
}

/* Level 1 headings */
h1 {
 font-family: Arial, Impact, sans-serif; 
 text-align:center;
  color: #ffffff;
 background-color: navy;
}
/* Level 2 headings */
h2 {
 font-family: "Arial Black", Impact, Charcoal, fantasy;
 color: #1F2159;
}
/* Level 3 headings */
h3 { font-family: Arial, Helvetica, sans-serif;
 font-style:italic; text-decoration:underline;
 color: #1F2159;
}
/* Generic style class for highlighting text */
.hilite{
 background-color:#ffff00;
}
/* Paragraphs styled as tips */
p.tip {
 background-color:#EEEEEE;
 margin-left:100px;
 margin-right:100px;
 padding:5px;
 border:solid thin #EEEEEE;
}

/* Paragraphs styled as warnings */
p.warning {
 background-color:#EEEEEE;
 margin-left:100px;
 margin-right:100px;
 padding:5px;
 border:solid thin #EEEEEE;
} 

/* Paragraphs styled as sidebar links */
p.sbl {
 background-color:#EEEEEE;
 margin-left:0px;
 margin-right:0px;
 padding:0px;
 border:solid thin #EEEEEE;
}

/* Float image to left of paragraph */
img.floatLeft{
   float: left;
   margin-right: 5px;
}/* Float image to right of paragraph */
img.floatRight{
   float: right;
}/* Center image between margins */
div.center{
   width: 100%;
   text-align: center
}

/* Style for tables of thumbnail images */
table.thumbs{
   text-align: center;
   border-collapse: collapse;
   margin: auto;
}
/* Style for table cells that contain thumbnails */
td.thumbs{ 
   border: solid 1px #2Caa00;
   padding: 10px;
}
/* Style for thumbnail images */
img.thumbs{
   width:100px;
}

