/* Stylesheet.css */ 
/* Body text and page background */ 
body{ 
font-family: 'Book Antigua', Times, Serif; 
font-size: medium; 
color: #0000cd; 
/* background-color: #f5f5f5;  */
background-image: url("pix/bkg/confetti.png");
background-repeat: repeat; 
} 
/* Level-1 Headings */ 
h1{ 
font-family: Algerian, Playbill, Fantasy; 
font-size: xx-large; 
color: #00008b; 
text-align: center; 
} 

/* Level 1 heading - Green text */
h1.green{
font-family: Algerian, Playbill, Fantasy; 
font-size: xx-large; 
color: green; 
text-align: center; 
} 

/* Level-2 Headings */ 
h2{ 
	font-family: Algerian, Tahoma, 'Arial Black', Gadget, Sans-serif; 
	font-size: x-large; 
	color: #228b22; 

}

h2.large{
	font-family: Algerian, Tahoma, 'Arial Black', Gadget, Sans-serif; 
	font-size: large; 
	color: #228b22; 
	margin-left: 5em;
	
}

 
/* Level-3 Headings */ 
h3{ 
	font-family: 'Monotype Corsiva', Cursive; 
	font-size: x-large; 
	color: #228b22; 
	text-align: right; 
} 


/* Level-3 Headings  Centered*/ 
h3.center{ 
	font-family: 'Monotype Corsiva', Cursive; 
	font-size: x-large; 
	color: #dd1122; 
	text-align: center; 
} 


h6{
	font-size: medium; 
	color: #00008b; /* dark blue */ 
	text-decoration: none; 
	font-weight: bold;
	font-variant: small-caps;
}

h6.short{
	margin-top:0em;
	margin-bottom:0;
	margin-left: 2em;
	}

/* Sets the hr attribute qualities */
hr{
	font-size:xx-large;
	color: #ff4500;
	font-weight:bold;
	text-align: center;
	width: 75%;
	text-decoration: blink;
	}

/* 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 image between margins with bkg color of pink */
table.pink{ 
	text-align:center;
	background-color: pink;
	width: 90%;
	}

/* Custom bullet for bulleted lists */ 
ul{ 
	list-style-image: url("pix/bullets/bulletgold.png");

} 

/* 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 #00bfff; 
	 padding: 10px; 
	 }

/* Style for thumbnail images */ 
img.thumbs{
    width:100px; 
    border-width: 3px;
	}

/* Unvisited links (no underline) */
a:link{
   color: #00008b; /* dark blue */
   text-decoration: none;
   font-weight: bold;
	}

/* Visited links (no underline) */ 
a:visited{ 
   color: #00008b; /* dark blue */ 
	text-decoration: none; 
	font-weight: bold;
	}

/* Hover links (red underlined) */ 
a:hover{ 
	color: #ff0000; /* red */ 
	text-decoration: underline; 
	}

/* Active links (green underlined) */ 
a:active{ 
	color: #00ff00; /* green */ 
	text-decoration: underline; 
	}

a.col:link{
	color: #006400 ; /* green */ 
	text-decoration: none;
	font-weight: bold;
    margin-right: 1in;
	}
/* Unvisited links (no underline) */
a.col:visited{
   color: #006400; /* green */
   text-decoration: none;
   font-weight: bold;
   margin-right: 1in;
	}

/* Visited links (no underline) */ 
a.col:hover{ 
   color: #ff0000; /* red */ 
	text-decoration: underline; 
	font-weight: bold;
    margin-right: 1in;
	}

/* Hover links (red underlined) */ 
a.col:active{ 
	color: orange; /* orange */ 
	text-decoration: none; 
    margin-right: 1in;
	}



