@charset "UTF-8";

/* CSS Document */

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* common styling */
.menu1 {
	position: absolute;        /* establish a menu-relative positioning context */
	margin: 0 0 0 -415px;
	padding: 0;
	border: 0;
	left: 50%;
	top: 240px;
	height: 50px;                                  /* the menu's overall height */
	width: 425px;         /* we always want our menu to fill the available space */
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;         /* this (and also below) sets the menu's font size */
	z-index: 1005;
}

.menu1 ul {
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;          /* we don't want to view the list as a list */
}

.menu1 li {
	float: left;    /* this creates the side-by-side array of top-level buttons */
	position: relative;    /* create local positioning contexts for each button */
	margin: 0;
}

.menu1 ul li table {
	margin: -1px 0;              /* IE5 needs -1px top and bottom table margins */
	border-collapse: collapse;      /* IE5 needs this for the sub-menus to work */
	font-size: 12px;        /* this sets the base font size for our entire menu */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu1 ul li ul {
	display: none;                  /* initially hide the entire list hierarchy */
}

.menu1 ul li a,
.menu1 ul li a:visited {                    /* unselected top-level menu items */
	display: block;
	float: left;
	text-decoration: none;
	height: 50px;
	margin: 20px 4px 0px 15px;
	color: #000000;
}

.menu1 ul li:hover a,
.menu1 ul li a:hover {                        /* selected top-level menu items */
	height: 50px;
	background-color: none;
	color: #000000;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu1 ul li:hover ul,
.menu1 ul li a:hover ul {                           /* 2nd level drop-down box */
	display: block;
	position: absolute;
	margin: 0;
	top: 52px;              /* place us just up underneath the top-level images */
	left: 10px;       /* left-align our drop-down to the previous button border */
	height: auto;      /* the drop-down height will be determiend by line count */
	width: auto;
	color: #fff;                        /* this sets the unselected-text color */
}

.menu1 ul li:hover ul li a,
.menu1 ul li a:hover ul li a {                   /* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 3px 10px;
	height: auto;
	color: #fff;               /* this sets the unselected drop-down text color */
	width: 150px;
	background-color: #580069;
}

.menu1 ul li:hover ul li:hover a,
.menu1 ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #580069;
	background: #ffffff;
}






/*======================= MENU 2 ==============================================*/

.menu2 {
	position: absolute;        /* establish a menu-relative positioning context */
	margin: 0 0 0 60px;
	padding: 0;
	border: 0;
	left: 50%;
	top: 240px;
	height: 50px;                                  /* the menu's overall height */
	width: 425px;         /* we always want our menu to fill the available space */
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;         /* this (and also below) sets the menu's font size */
	z-index: 1006;
}

.menu2 ul {
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;          /* we don't want to view the list as a list */
}

.menu2 li {
	float: left;    /* this creates the side-by-side array of top-level buttons */
	position: relative;    /* create local positioning contexts for each button */
	margin: 0;
}

.menu2 ul li table {
	margin: -1px 0;              /* IE5 needs -1px top and bottom table margins */
	border-collapse: collapse;      /* IE5 needs this for the sub-menus to work */
	font-size: 12px;        /* this sets the base font size for our entire menu */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu2 ul li ul {
	display: none;                  /* initially hide the entire list hierarchy */
}

.menu2 ul li a,
.menu2 ul li a:visited {                    /* unselected top-level menu items */
	display: block;
	float: left;
	text-decoration: none;
	height: 50px;
	margin: 20px 4px 0px 30px;
	color: #000000;
}

.menu2 ul li:hover a,
.menu2 ul li a:hover {                        /* selected top-level menu items */
	height: 50px;
	background-color: none;
	color: #000000;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu2 ul li:hover ul,
.menu2 ul li a:hover ul {                           /* 2nd level drop-down box */
	display: block;
	position: absolute;
	margin: 0;
	top: 52px;              /* place us just up underneath the top-level images */
	left: 20px;       /* left-align our drop-down to the previous button border */
	height: auto;      /* the drop-down height will be determiend by line count */
	width: auto;
	color: #fff;                        /* this sets the unselected-text color */
}

.menu2 ul li:hover ul li a,
.menu2 ul li a:hover ul li a {                   /* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 3px 10px;
	height: auto;
	color: #fff;               /* this sets the unselected drop-down text color */
	width: 150px;
	background-color: #580069;
}

.menu2 ul li:hover ul li:hover a,
.menu2 ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #580069;
	background: #ffffff;
}