/* Main menu settings */
#center-drop-menu {
	clear:both;
	float:left;
	margin:0;
/*	margin-left:5px; /* Move menu to the Right */
	padding:0;
	width:100%;
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
	font-size:16px;
	top:2px; /* Move menu Down */
}
/* Top menu items */
#center-drop-menu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
	width:995px;
}
#center-drop-menu ul li {
	margin: 0px 14px 0px 14px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#center-drop-menu ul li a {
	display:block;
	margin:0;
	text-decoration:none;
	color:#fff;
	font-weight:bold;
	min-height:24px;
	padding-left:4px;
}
#center-drop-menu ul li.active a { /* Not Being Used */
	text-decoration:none;
}
#center-drop-menu ul li a:hover {
	color:#fc0;
}
#center-drop-menu ul li:hover a,
#center-drop-menu ul li.hover a { /* This line is required for IE 6 and below */
	color:#fc0;
	font-weight:bold;
}
/* Submenu items */
#center-drop-menu ul ul {
	display:none; /* Sub menus are hiden by default */
	position:absolute;
	left:0;
	top:19px;
	right:auto; /*resets the right:50% on the parent ul */
	width:275px; /* width of the drop-down menus */
	text-align:left;
}
#center-drop-menu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:-2px; /* Reset the 1px margin from the top menu */
	clear:left;
	width:100%;
}
#center-drop-menu ul ul li a,
#center-drop-menu ul li.active li a,
#center-drop-menu ul li:hover ul li a,
#center-drop-menu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-size:15px;
	font-weight:bold; /* resets the bold set for the top level menu items */
	background:url(img/drop-sub-menu-bg.gif) repeat-x;
	color:#fff;
	border:1px solid #000; /* sub menu item horizontal lines */
	padding:1px 1px 2px 4px;
	margin-bottom:-4px;
}
#center-drop-menu ul ul li a:hover,
#center-drop-menu ul li.active ul li a:hover,
#center-drop-menu ul li:hover ul li a:hover,
#center-drop-menu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:#000; /* Sub menu items background colour */
	color:#fc0;
}
/* Flip the last submenu so it stays within the page */
#center-drop-menu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
/* Make the sub menus appear on hover */
#center-drop-menu ul li:hover ul,
#center-drop-menu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}