@charset "utf-8";
/* CSS Document */

/* Main menu settings */
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	/*border-bottom:1px solid #000;  black line below menu */
	width:100%;
	font-family:'Crimson Text', serif; /* Menu font */
	z-index:50; /* This makes the dropdown menus appear above the page content below */
	position:relative;
}

/* Top menu items */
#centeredmenu ul {
	margin:0;
	padding:0;
	display:table;
	background:#FFFFFF;
	list-style:none;
	position:relative;
	height:68px;
	width:100%;
	border:none;
}
#centeredmenu ul li {
	margin:0px 0px 0px 0px; /* Reset the 1px margin from the top menu */
	padding:0;
	display:table-cell;
	position:relative;
	text-align:center;
	vertical-align:middle;
	font-size:22px; /* Menu text size */
	border-left:1px solid #4A614B;
	top:0px;
	width:14.2%;
	height:50px;
	z-index:100; /* This makes the dropdown menus appear above the page content below */
}
#centeredmenu ul li:hover,
#centeredmenu ul li.hover
{
	background:#FFB866;
	z-index:99999;
}
#centeredmenu ul li a {
	display:block;
	margin:0px; /* Reset the 1px margin from the top menu */
	padding:0px;
	line-height:105%;
	text-decoration:none;
	color:#4A614B;
	/*border-bottom:1px solid #000;*/
}
#centeredmenu ul li.active a {
	background:inherit;
}
#centeredmenu ul li a:hover {
	background:inherit; /* Top menu items background colour */
	/*border-bottom:1px solid #4A614B;*/
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	background:inherit; /* Top menu items background colour */
	/*border-bottom:1px solid #4A614B;*/
}

/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	list-style:none;
	position:absolute;
	left:0;
	float:left;
	height:auto;
	border:1px solid #4A614B;
	background:#FFFFFF;
	left:auto; /*resets the right:50% on the parent ul */
	width:12em; /* width of the drop-down menus */
	z-index:999; /* This makes the dropdown menus appear above the page content below */
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0px; /* Reset the 1px margin from the top menu */
	padding:0px 0px 4px 0px;
	clear:left;
	float:left;
	width:100%;
	height:26px;
	border:none;
	/*border:1px solid #4A614B;*/
	text-align:left;
}
#centeredmenu ul ul li:hover
#centeredmenu ul ul li.hover
{
	background:#FFB866;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:inherit;
	line-height:100%; /* overwrite line-height value from top menu */
	/* border-bottom:1px solid #4A614B;  sub menu item horizontal lines */
	float:left;
	padding:3px 20px 4px 20px;
	width:auto;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:inherit; /* Sub menu items background colour */
	float:left;
	width:auto;
}
/* Subsubmenu items */
#centeredmenu ul ul ul {
	display:none; /* Sub menus are hidden by default */
	list-style:none;
	position:absolute;
	top:0;
	/*float:left; */
	height:auto;
	border:1px solid #4A614B;
	background:#FFFFFF;
	/*left:11.95em; resets the right:50% on the parent ul */
	width:12em; /* width of the drop-down menus */
}
#centeredmenu ul ul ul li {
	/*left:auto;  resets the left:50% on the parent li */
	margin:0px; /* Reset the 1px margin from the top menu */
	padding:0px 0px 4px 0px;
	/*clear:left;
	float:left; */
	width:100%;
	height:26px;
	border:none;
	/*border:1px solid #4A614B;*/
	text-align:left;
	z-index:200; /* This makes the dropdown menus appear above the page content below */
}
#centeredmenu ul ul li:hover
#centeredmenu ul ul li.hover
{
	background:#FFB866;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:inherit;
	line-height:100%; /* overwrite line-height value from top menu */
	/* border-bottom:1px solid #4A614B;  sub menu item horizontal lines */
	float:left;
	padding:3px 20px 4px 20px;
	width:auto;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:inherit; /* Sub menu items background colour */
	float:left;
	width:auto;
}

/* Make the sub menus appear on hover */
#centeredmenu ul ul li:hover ul,
#centeredmenu ul ul li.hover ul { /* This line is required for IE 6 and below */
	display:table; /* Show the sub sub menus */
}

#centeredmenu ul li:hover > ul,
#centeredmenu ul li.hover > ul { /* This line is required for IE 6 and below */
	display:table; /* Show the sub menus */
}

