/* Stylesheet.css */ 

/* Body text and page background */ 
body{ 
margin: 10px;
font-family: 'Book Antigua', Times, Serif; 
font-size: 25px; 
color: #000080; 
background-color: #faf0e6;
background-image: url("nestbg.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; */ 
} 



/* Unvisited links (dark green underlined) */
a:link{
   color: #006400; /* dark green */
}

/* Visited links (dark red underlined) */ 
a:visited{
   color: #8b0000; /* dark red */
}

/* Hover links (red underlined) */ 
a:hover{
   color: #ff0000; /* red */
}

/* Active links (gray underlined) */ 
a:active{
   color: #808080; /* gray */
}


/* Level-1 Headings */ 
h1{ 
font-style: italic; 
font-family: 'Monotype Corsiva', Cursive; 
font-size: 45px; 
color: #006400; 
text-align: center; 
} 

/* Level-2 Headings */ 
h2{ 
font-family: 'Monotype Corsiva', Cursive; 
font-size: large; 
color: #006400; 
font-style: italic; 
text-align: center;
} 

/* Level-3 Headings */ 
h3{ 
font-family: 'Monotype Corsiva', Cursive; 
font-size: x-large; 
color: #006400; 
text-align: center; 
} 


/* 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{ 
vertical-align: middle; 
text-align: center; 
border-collapse: collapse; 
} 

/* Style for table cells that contain thumbnails */ 
td.thumbs{ 
border: solid 5px #636466; 
padding: 10px; 
} 

/* Style for thumbnail images */ 
img.thumbs{ 
width: 100px; 
} 



/* Page header style */
#header{
     
     width: 100%;
     background-color: #D2B48C; 
     border-bottom: thick solid #636466; 
	 font-family: 'Lucida Handwriting', Cursive; 
	 color: #006400; 
	 text-align: center; 
}

/* Page footer style */
#footer{
     height: 100px;
     width: 100%;
     background-color: #D2B48C;
     border-top: thick solid #636466;
	 font-family: 'Monotype Corsiva', Cursive; 
	 color: #006400; 
	 
}


 /* Style for main content column */ 
#main{ 
margin: 3em; 
/* Left and right margins must match*/ 
/* match left and right column widths */ 
margin-left: 14em; 
margin-right: 14em; 
padding-left: 25px;
padding-right: 25px;
width: 500px; 
 background-color: #D2B48C; 
 border: solid thick #636466;

} 

/* Style for left sidebar column */ 
#leftsidebar{ 
float: left; 
display: inline; 
padding: 5px;
margin: 1em; 
width: 8em; 
background-color: #D2B48C; 
 border: solid thin #636466;
/* Actual width is 10em */ 
} 


/* Style for right sidebar column */
#rightsidebar{
font-family: 'Monotype Corsiva', Cursive;
float: right;
display: inline;
padding: 15px;
margin: 1em;
width:8em;
background-color: #D2B48C; 
 border: solid thin #636466;
  /* Total width is 10em */
}



