﻿html, body
{
    background-color: #dcdcdc;
    color: #000;
    font: normal 90%/1.8em 'Lucida Grande' , Verdana, Geneva, Lucida, Helvetica, Arial, sans-serif;
    margin: 0;
    height: 100%;
}

h2
{
    border-bottom: #2f486d thin solid;
    font-family: 'Berlin Sans FB Demi' , 'Arial Rounded MT Bold';
    background-color: transparent;
    color: #2f3c76;
    padding-bottom: 5px;
}

h3
{
	font-family: Verdana, 'Arial Rounded MT Bold';
	background-color: transparent;
	color: #2f3c76;
	font-weight: bold;
	border-top-style: ridge;
	border-right-style: ridge;
	border-left-style: ridge;
	border-bottom-style: ridge;
	font-size: x-large;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 5px;
}

h5
{
	margin-bottom: 2px;
	font-style: italic;
	font-family: 'Book Antiqua';
	font-weight: bold;
	font-size: large;
	text-decoration: underline;
}

.item
{
		width: 99%;
	    font-weight: normal;
	    font-style: normal;
	    font-family: Verdana, Helvetica, Arial, sans-serif;
	    font-variant: normal;
}

    .itemsTitle
    {
	    border-bottom: #2f486d thin solid;
	    font-family: Impact, 'Arial Rounded MT Bold';
	    background-color: transparent;
	    color: #2f3c76;
	    padding-bottom: 5px;
	    margin-bottom: 10px;
	    font-size: x-large;
    }

    .itemName
{
	font-size: 110%;
	border: none;
	float: left;
	margin: 0;
	width: 30%;
	padding-right: 5px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-top: 0px;
}

    .itemDescription
    {
        border: none; float: left; margin: 0; padding: 0; width: 50%;
    }

    .itemDate
    {
	    float: right;
	    color: #666666;
	    border: none;
	    margin: 0;
	    width: 19%;
	    text-align: right;
    }

#about { padding-bottom: 35px; }

#content a         { text-decoration: none; color: #8b4513; }
#content a:visited { color: #8b4513; }
#content a:hover
{
	text-decoration: underline;
	color: #8b0000;
}
#content a:active  { color: #8b4513; }

.pictureLeft
{
	border-right: thin ridge;
	border-top: thin ridge;
	border-left: thin ridge;
	border-bottom: thin ridge;
	font-family: Verdana;
	background-image: none;
	float: left;
	margin: 5px 10px;
}

.pictureRight
{
    border-right: thin ridge;
    border-top: thin ridge;
    border-left: thin ridge;
    border-bottom: thin ridge;
    font-family: Verdana;
    background-image: none;
    float: right;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
}

.sitemap
{
	padding-right: 10px;
	font-family: verdana, arial, helvetica, sans-serif;
	color: #8b4513;
	text-decoration: none;
	font-size: 8pt;
}

.sitemap a:visited, a:active, a:link, a:hover 
{ color: #a0522d; text-decoration: none; }


/**********************************
	Menu
***********************************/
/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
.mainmenu .AspNet-Menu-Vertical
{
	position: relative;
	top: 3px;
	left: 0;
	z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.mainmenu ul
{
	background: #deb887;
}

/* Top tier */
.mainmenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 9em;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without */
/* impacting the topmost tier's appearance. */
.mainmenu ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 8.9em;
    top: -1em;
    z-index: 400;
}

.mainmenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.mainmenu ul.AspNet-Menu li
{
		background: #deb887;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.mainmenu ul.AspNet-Menu li a,
.mainmenu ul.AspNet-Menu li span
{
    color: #8b4513;
    padding: 4px 2px 4px 8px;
    border:1px solid #ffe4b5;
    background: transparent url(arrowRight.gif) right center no-repeat;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and */ 
/* can be styled specially by this rule. */
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.mainmenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.mainmenu ul.AspNet-Menu li:hover, .mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
	background: #8b4513;
}

.mainmenu ul.AspNet-Menu li:hover a, 
.mainmenu ul.AspNet-Menu li:hover span, 
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover a,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover span,
.mainmenu ul.AspNet-Menu li:hover li:hover a, 
.mainmenu ul.AspNet-Menu li:hover li:hover span, 
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span,
.mainmenu ul.AspNet-Menu li:hover li:hover ul a:hover, 
.mainmenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, 
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #deb887;
}

.mainmenu ul.AspNet-Menu li:hover ul a, 
.mainmenu ul.AspNet-Menu li:hover ul span, 
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span,
.mainmenu ul.AspNet-Menu li:hover li:hover ul a, 
.mainmenu ul.AspNet-Menu li:hover li:hover ul span, 
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a,
.mainmenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: #8b4513;
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.mainmenu ul.AspNet-Menu li a:hover,
.mainmenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #deb887;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.mainmenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}
