/* stylesheet.css */
/* Page header style */
#header {
height: 115px;
width: 100%;
background-color: #65b400;
border-bottom: thin solid #ff1493;
}
/* Style for sidebar-r column */
#sidebar-l{
           float: left;
           display: inline;
           padding: 0;
           margin: 0em 1em 0em 1em;
           width:8em;
           background-color: white;
           height: 100%;
            /* Total width is 10em */
}
/* Style for sidebar-r column */
#sidebar-r{
           float: right;
           display: inline;
           padding: 0;
           margin: 0em 1em 0em 1em;
           width:8em;
           text-align: center;
           height: 100%;
           background-color: #bd1200;
            /* Total width is 10em */
}

/* Add some margin space to main content */
#main{
     margin: 0em;
     margin-left: 10em;
     margin-right: 10em;
     text-align: center;
     /* margin left must equal */
     /* total left sidebar witdth */
}


/* Page footer style */
#footer {

width: 100%;
text-align: center;
background-color: #65b400;
border-top: thin solid #ff1493;
clear: both;
}
/* Body text and page background */
body {
margin: 0px;
padding: 0px;
font-family:"Book Antiqua", Times, Seriff;
font-size: medium;
color:#0000cd;
background-color: #ffff95;
background-repeat: repeat;
}
/* Hiperlinks defined */
a:link {
color: #0000cd;
}
/* Visited links */
a:visited {
color: red;
}
/* Hover link */
a:hover {
color: blue;
}
/* Active link */
a:active {
color: green;
}
/* Style for class of link */
/* Use the <span> tag to apply to section of links */
.class1 a:link {
color: white;
}
.class2 a:visited {
color: gold;
}
/* Level 1 headings */
h1 {
font-family: "Curlz MT", Papyrus, "Juice ITC", Algerian, fantasy;
font-weight: bold;
font-size: 36pt;
text-align: center;
color: #dd0035;
}
/* level 2 headings */
h2{
font-family: "Arial Black", Impact, Charcoal, fantasy;
color: #1F2159;
}
/* Level 3 headings */
h3 {
font-family: Papyrus, Arial, Helvetica, sans-serif;
font-style:italic;
text-align: center;
text-decoration: none;
color:#1f2159;
margin: 0em;
}
/* Generic style class for highlighting text */
.hilite{
background-color:#ffff00;
}
/* Paragraphs styled as tips */
p.tip{
background-color: #ACD095;
margin-left: 100px;
margin-right: 100px;
padding:7px;
border:solid thin #ff0000;
font-size: 10pt;
}
/* Paragraphs for styled as warnings */
p.warning {
background-color: #FFCCFF;
margin-left: 100px;
margin-right:100px;
padding: 7px;
border:solid thin #ff0000
}
/* Float image to left of paragraph */
img.floatLeft{
   float: left;
   margin-right: 0px;
}/* Float image to right of paragraph */
img.floatRight{
   float: right;
}/* Center image between margins */
div.center{
   width: 100%;
   text-align: center
}
/* Custom bullet for bulleted lists */
ul{
   list-style-image: url('../../CSS-XHTML%20Lessons/XHTMLclasses/pix/bullets/ani-smiley.gif');
}
/* Style for tables of thumbnail images */
table.thumbs{
   text-align: center;
   border-collapse: none;
   margin:auto;
}
/* Style for table cells that contain thumbnails */
td.thumbs{ 
   border-bottom: solid 1pt green;
   border-right: solid 1pt green;
   padding: 5px;
   
}
/* Style for thumbnail images */
img.thumbs{
   width:100px;
}