/* CSS STYLES BY Michael Frascinella 
2-17-09 - revised alternate hyperlink styles
2-10-09 - created CSS code */

/***************/ 
/* HYPERLINKS */

/* Use pseudoclasses with the A tag.
A:link is unvisited link; A:visited is visited link; a:hover is for mouseover; a:active is when link is clicked. */

/* Keep the tags in this order:a:link, a:visited, a:hover, a:active. */

A:link {color: blue; font-weight: bold; text-decoration: none}
A:visited {color: red; font-weight: bold; text-decoration: none}
A:hover {color: green; font-weight: bold; text-decoration: underline}
A:active {color: green; font-weight: bold; text-decoration: none}

/* Alternate styles for hyperlinks */

/* You can have several different ways to display hyperlinks by adding a different class name to each set of A tags. To use them in your content, add the class to the A tag: <a class="one" href="yourfile.htm"> */

A.navlink:link {color: black; font-size:12; text-decoration: none}
A.navlink:visited {color: black; font-size:12; text-decoration: none}
A.navlink:hover {color: #666699; font-size:12; text-decoration: none}
A.navlink:active {color: black; font-size:12; text-decoration: none}


/***************/ 
/* BODY TAG */
/* This image will be used in all html pages; for Firefox and IE, it does not scroll (fixed) 
 */
BODY {background:url('Images/honeycomb-bkgrnd-lite.jpg') fixed; margin-top: 0px; margin-left: 0px;}


/* HEADINGS */
/* Use tahoma as preferred font (narrower than verdana */

h1
{font-size: 18.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #996633}

h2
{font-size: 16.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #996633}

h3
{font-size: 14.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #996633}

h4
{font-size: 12.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #996633}

h5
{font-size: 10.0pt; font-family: tahoma, verdana, arial, sans-serif; font-weight: bold; color: #996633}


/* TEXT ELEMENTS */
/* Use verdana 10 pt as preferred paragraph style (wider than arial and tahoma) */

p, li, td
{font-size: 10pt; font-family: verdana, tahoma, arial, sans-serif; font-weight: normal; color: #000000}

th
{font-size: 10pt; font-family: verdana, tahoma, arial, sans-serif; font-weight: bold; color: #000000}

/* text in page banner */
.banner
{font-size: 18pt; font-family: verdana, tahoma, arial, sans-serif; font-weight: bold; color: #DCDCDC }

/* footer text used at bottom of page */
.footer 
	{
	font-family: arial, tahoma, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	font-style: normal;
	color: #000000
	}


/* BORDERS */

.double-border
	{border-style: double}

/* Margins are the spaces around each side of an element */
.margintop
	{margin-top: 6px;}

.margintop0
	{margin-top: 0px;}

.marginbottom
	{margin-bottom: 6px;}

.marginbottom0
	{margin-bottom: 0px;}

.marginleft
	{margin-left: 6px;}

.marginleft0
	{margin-left: 0px;}

.marginright
	{margin-right: 6px;}


/* Padding property adds space to top of element but inside the border. Use padleft and padright in IMG tag to add 5 pixels when text is too close to the image.*/

.padtop
	{
	padding-top: 5px
	}

.padbottom
	{
	padding-bottom: 5px
	}

.padleft
	{
	padding-left: 5px
	}

.padright
	{
	padding-right: 5px;
	}


/* COLORS */
/* The first font in the list is the first one used: 
	font-family: verdana, arial, sans-serif; 
	font-family: "times new roman", times, serif; */

.BoldBlueSans10 
	{
	font-family: verdana, arial, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#0000FF
	}

.darkorange
	{color:#FF6600}

.white
	{color:#FFFFFF}

.red
	{color:#FF0000}

.boldred
	{font-weight:bold;
	color:#FF0000}

.silver
	{color:#C0C0C0}

.maroon
	{color:#800000}

.purple
	{color:#800080}

.olive
	{color:#808000}

.teal
	{color:#008080}

.green
	{color:#008000}

.limegreen
	{color:#00FF00}

.lightyellow
	{color:#FFFFCC;font-size:10px;}

.navy
	{color:#000080}

.blue
	{color:#0000FF}
