/*this controls the parent <ul> - the top level navigation items*/
#p7PMnav {
	margin-top: 40px;
	padding:0;

}
/* this removes the bullet point on the list items */
/* it also sets the margins and padding to zero on all list items*/
#p7PMnav li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
/* this sets the background colour and look and feel of drop downs menu surrounding area */
#p7PMnav ul {
	text-align:left;
	padding: 0;
	/* don't touch these last three*/
	position: absolute;
	left: -9000px;
	z-index: 10000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	background-color: #F0F1F1;
	margin: 0px;
}

/* this controls the formatting of the links themselves*/
#p7PMnav a {
	color: #7b7b7b;
	display: block;
	text-decoration: none;
	padding-left: 0px;
	font-weight: bold;
}
/* this sets the colour of the mouseover and the links */

#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus {
	background-color: #FFFFFF;
	
}
#p7PMnav ul li a:hover {

}
#p7PMnav ul li a {
	color:#333333;
	font-weight: normal;
}
/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark {
	
	font-weight: bold;
		color: #FF9900;
}
/* ------ the trigger link styles ------- */

/*the trigger link */
#p7PMnav ul .p7PMtrg, #p7PMnav ul .p7PMon {
	color: #BCD5ED;
	font-weight: normal;

}
/* the active trigger link style - this is the primary nav when you hover over it */
#p7PMnav .p7PMon {
	color: #BCD5ED;
}
/*the submenu classes */

#p7PMnav .p7PMhide {
	left: -9000px;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav li {
	float: left;
}
#p7PMnav ul li {
	float: none;
	list-style-type: none;
}
#p7PMnav ul, #p7PMnav ul li {
	width: 198px;
}
#p7PMnav ul li {

}
/* this can be used to set borders, padding and backgrounds on sub menu as well*/
#p7PMnav li ul {

}
/* these are for breadcrumbs i.e. marking what you selected*/
#pmmcrumb {
	font-weight: bold;
	margin-bottom: 16px;
	color: #BCD5ED;
	background-color:#FFFFFF;
	border: 1px dotted #cccccc;
}
#pmmcrumb a, #pmmcrumb a:visited {
	color: #BCD5ED;
}
#pmmcrumb a:hover, #pmmcrumb a:active, #pmmcrumb a:focus {
	color: #BCD5ED;
	font-weight: bold;
}

/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width. */
#p7PMnav li {width: auto;}
