﻿/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/


/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper {
	background-color: #7fbdec;

}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}

/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0 0 0 0px;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	}
	
	
#p7menubar  {
	padding: 0 0 0 40px; /* adjusts LH margin*/

}

/*menu bar text*/
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 10px 15px 10px 8px;
	font-size: .7em;
	color: #fff;
}
/*
Arrows
*/
#p7menubar a.trigger {
	padding: 10px 15px 10px 8px;

	background-image: url(images/p7PM_white_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#p7menubar a.trigger:hover {
	padding: 10px 15px 10px 8px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}






/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7menubar li {
	float: left;
	width: 11em;
	
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#p7menubar li ul, #p7menubar ul li  {
	width: 10em;  /*width drop down menu*/
	
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#p7menubar ul li a  {
	color: #565656;
	border-right: 0;
	padding: 2px 12px 2px 12px;

}



#p7menubar li ul {
	padding: 5px 0 5px 0;
	position: absolute;
	display: none;
	background-color: #ddd; /* drop down background colour ddd*/
	z-index:100;/*this is line that puts menu above ads marquee*/
	-moz-box-shadow: 4px 4px 6px #333;
	-webkit-box-shadow: 6px 6px 9px #333;
	box-shadow: 6px 6px 9px #333;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=135, Color='#333333')";/* For IE 8 */;
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=135, Color='#333333');
}
/*
Menubar on hover
*/
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #fff; /*color text in main menu on hover */
	background-color: #000; /*color background in main menu on hover */
	
}	
		
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}

/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}

/*
Dropdown links on hover
*/
#p7menubar ul a:hover {
	background-color: #7fbdec!important; /*colour background drop down on hover 000*/
	color: #ffffff!important;
}

/* 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.
Do not edit this rule in any way. */
#p7menubar li {width: auto;}

#p7menubar a.trigger_inner {
	background-color: #ffffff!important;
	color: #333333!important; /*padding: 10px 15px 10px 8px; */;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
	font-weight: bolder;
}
#p7menubar a.trigger_inner:hover {
	background-color: #ffffff!important;
	color: #333333!important;
	/*padding: 10px 15px 10px 8px; */ 
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
