/* Stylesheet.css */ 
/* Page header style */

#wrapper{
width:55em;
background-color: white;
margin:0 auto;
}
#header{
     width: 100%;
     /* background-image: url("fabric1.jpg"); */
      Background-color:#7B68EE; 
     Background-repeat: repeat; 
     border-top: thick double #191970;
     border-bottom: thick double #191970;
}
/* Page footer style */
#footer{
     height: 35px;
     clear: both;
 
     background-image: url("fabric02.jpg");
     border-top: thick double #191970;
    
}
/* Style for main content column */
/* Add some margin space to main content */
#main{
       /* margin-left must equal */
       /* total width of left sidebar */
       margin: 0;
       margin-left: 10em;
       height:95em;
       
      background-color: white;
       background-repeat: repeat;
}

/* Style for sidebar column */
#sidebar{
           float: left;
           display: inline;
           margin-left: 0;
           margin-top: 0;
           margin-bottom: 0;
           width:10em;
           height: 95em;
           background-color: #dddddd;
           text-align: left;
           font-family: cursive, Serif;
           padding-left: 10px;
           padding-top: 5px;
           padding-bottom: 5px;
            /* Actual em */
}

/* style for underbar*/
#underbar{

background-color: #9999ff;
text-align: center;
border-bottom: thick double #191970;
}
/* Body text and page background */ 
body
{ 
margin: 0;
padding: 0;
font-family: 'Book Antigua', Times, Serif; 
font-size: medium; 
text-align: center;
color: black; 
background-image: url("fabric02.jpg");
background-repeat: repeat;
}
/* end underbar*/

/* Body text and page background */ 
body
{ 
margin: 0;
padding: 0;
height: 100%;
font-family: 'Book Antigua', Times, Serif; 
font-size: medium; 
text-align: center;
color: black; 
background-image: url("parchment.jpg");
background-repeat: repeat;
/* Last two lines below commented out. If you want to use */ 
/* a picture background, remove comment characters */ 
/* and set the url to a valid background image */ 
/* background-image: url("pix/bkg/crosshatch.jpg"); */ 
/* background-repeat: repeat; */ 
} 


/* Level-1 Headings */ 
h1{ 
font-family: Times, Playbill, Fantasy; 
font-size: xx-large; 
color: red; 
text-align: center; 
} 

/* Level-2 Headings */ 
h2{ 
font-family: 'Arial Black', Gadget, Sans-serif; 
font-size: x-large; 
color: black;
text-align: center;  
} 

/* Level-3 Headings */ 
h3{ 
font-family: 'Monotype Corsiva', Cursive; 
font-size: x-large; 
color: #000099; 
text-align: center;

} 
/* level=4 Headings */
h4{
font-family: 'Cosmic Sans', Sans-serif;
font-size: medium;
}
h5{
font-family: 'Monotype Corsiva', Cursive;
font-size: xx-large;
color: blue;
text-align: center;
}


/* Blockquote with blue background */ 
blockquote.tip { 
background-color: #99ffff 
} 

/* Blockquote with pink background */ 
blockquote.warn { 
background-color: #ff99cc 
} 

/* 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 
} 
/*center a box */
div.mid{
margin:auto;
}

/* Custom bullet for bulleted lists */ 
ul{ 
list-style-image: url("pix/bullets/bulletgold.png"); 
} 
/*Style for tables */
/* style for header table*/
table{
background-color: #ccffff;
text-align: left;
margin-left: auto;
margin-right: auto;
}
/* Style for main content tables */
table.main{
background-color: white;
text-align: left;
font-size: 14pt;
margin-left: auto;
margin-right: auto;
}
/* Style for tables with links */
table.nav{

text-align: left;
margin-left: auto;
margin-right: auto;
background-color: #ffff99;
}
/* Style for tables with information */
table.info{
background-image:url("parchment.jpg");
text-align: left;
margin-left: auto;
margin-right: auto;
}
/* Style for tables of thumbnail images */ 
table.thumbs{ 
text-align: center; 
border-collapse: collapse; 
} 

/* Style for tables of thumbnail images */ 
table.thumbs{ 
text-align: center;
background-color: white; 
border-collapse: collapse;

} 

/* Style for thumbnail images */ 
img.thumbs{ 
width: 100px; 
} 

/* Style for navigation bar */
a.navbar
{
float: left;
width: 100px;
height: 25px;
padding: 3px;
border-top: 2px solid white;
border-bottom: 2px solid white;
font-family: ariel,helvetica;
font-size: 8pt;
font-weight: bold;
text-decoration: none;
text-align: center;
}

a.navbar:link
{
color: black;
background-color: #6666cc;
}

a.navbar:visited
{
color:  black;
background-color: #cc66ff;
}

a.navbar:hover 
{
color: white;
background-color: #00BFFF;
}

a.navbar:active 
{
color: black;
background-color: #FFE4E1;
}


