/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/
body {
/* 	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 100%;
	background-color: #FFFFFF;
	margin: 24px 0;
	padding: 0;
	background-image: url(images/p7exp_pbg.jpg);
	background-repeat: repeat-x;
*/	
}
/*
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 {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	
	background-repeat: repeat-x;
	/*width:997px;	top:65;width:auto;*/
	width:1027px;



}


/*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;
	list-style: none;
	font-family:Verdana, Arial, Helvetica, sans-serif;

}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 150px;
	border-right: 1px solid #333;
	font-size: 1.1em;
	color: #fff;

}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubar a.trigger {
	padding-right: 53px; padding-left: 16px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#p7menubar a.last {
	padding-right: 93px; padding-left: 16px;
	border-right:none;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;

}

#p7menubar a.cat {
	padding-right: 76px; padding-left: 16px;
	background-image: url(images/newnewS.gif);
	background-repeat: no-repeat;
	background-color:#C19674;
	background-position: right center;
	color:WHITE;
	/*font-size:9px;*/

}
#p7menubar a.nodrop {
	padding-right: 93px; padding-left: 16px;
	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: 9em;
}
/*
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: 12em;
}
/*
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: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #000000;
	background-color: #C19674;
}
/*
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;
	font-size:11px;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7menubar ul a:hover {
	background-color: #606060!important;
	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 li {width: 205px;}








#homewrapper {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	background-repeat: repeat-x;

}


/*Clears the floated home items.
Assigned to a BR tag placed just before
homewrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}





/*
p7homebar is the root UL and p7homebar ul applies to all the sub-home 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 home. Do not add a font-size here.
*/
#p7homebar, #p7homebar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all home levels.
Font color is set to light gray.
*/
#p7homebar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 150px;
	border-right: 1px solid #ffffff;
	font-size: .85em;
	color: #ffffff;
}
/*
Class assigned to those Root-Level links that have associated Sub-homes.
The top and bottom padding assigned this element must be the same as
that assigned to the p7homebar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7homebar a.trigger {
	padding-right: 85px; padding-left: 16px; padding-bottom: 10px; padding-top: 1px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#p7homebar a.nodrop {
	padding-right: 85px; padding-left: 16px; padding-bottom: 10px; padding-top: 1px;
	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 home items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7homebar li {
	float: left;
	width: 9em;
}
/*
Sets width for Sub-home box and the List Items inside - in proportional em units. 
This allows the sub-home width to expand if users resize the text in their browsers.
*/
#p7homebar li ul, #p7homebar ul li  {
	width: 12em;
}
/*
The sub-home 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-home links a small amount in from the root links.
*/
#p7homebar ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-home Unordered Lists describes each dropdown sub-home grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7homebar li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
home items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_Exphome script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the home operable even if JavaScript
is not enabled.
*/
#p7homebar li:hover a, #p7homebar a:focus,
#p7homebar a:active, #p7homebar li.p7hvr a {
	color: #000000;
	background-color: #C19674;
}
/*
Set the Sub-home 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_Exphome script.
*/
#p7homebar li:hover ul, #p7homebar li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
home items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_Exphome script.
The color set should march the normal Sub-Level link color
in the rule: #p7homebar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7homebar li:hover ul a, #p7homebar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7homebar ul a:hover {
	background-color: #606060!important;
	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 home items to their natural width.
Do not edit this rule in any way. */
#p7homebar li {width: auto;}










#indexwrapper {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	background-repeat: repeat-x;

}


/*Clears the floated index items.
Assigned to a BR tag placed just before
indexwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}





/*
p7indexbar is the root UL and p7indexbar ul applies to all the sub-index 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 index. Do not add a font-size here.
*/
#p7indexbar, #p7indexbar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all index levels.
Font color is set to light gray.
*/
#p7indexbar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 150px;
	border-right: 1px solid #333;
	font-size: 1.04em;
		font-family:Helvetica;
	color: White;
}
/*
Class assigned to those Root-Level links that have associated Sub-indexs.
The top and bottom padding assigned this element must be the same as
that assigned to the p7indexbar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7indexbar a.trigger {
	padding-right: 77px; padding-left: 16px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;


	/*font-size:9px;*/

}
#p7indexbar a.cat:link { color: Black; text-decoration: none; }
#p7indexbar a.cat:visited { color: Black; text-decoration: none; } 
#p7indexbar a.cat:hover { color: White; } 

#p7indexbar a.cat {
	padding-right: 75px; padding-left: 16px;
	background-image: url(images/newnews.gif);
	background-repeat: no-repeat;
	background-color:#C19674;
	background-position: right center;
	
	color:Black;

	border-width:3px;
	border-color:#C19674;
		
	/*font-size:9px;*/

}
#p7indexbar a.nodrop {
	padding-right: 75px; padding-left: 16px; 
	background-repeat: no-repeat;
	background-position: right center;
	/*font-size:9px;	*/
}
/*
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 index items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7indexbar li {
	float: left;
	width: 9em;
	position: relative; z-index: 999;
	
	
}
/*
Sets width for Sub-index box and the List Items inside - in proportional em units. 
This allows the sub-index width to expand if users resize the text in their browsers.
*/
#p7indexbar li ul, #p7indexbar ul li  {
	width: 12em;
	
}
/*
The sub-index 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-index links a small amount in from the root links.
*/
#p7indexbar ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
	
}
/*
Sub-index Unordered Lists describes each dropdown sub-index grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7indexbar li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
	
}
/*
Changes the Text color and background color when the Root-Level
index items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_Expindex script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the index operable even if JavaScript
is not enabled.
*/
#p7indexbar li:hover a, #p7indexbar a:focus,
#p7indexbar a:active, #p7indexbar li.p7hvr a {
	color: #000000;
	background-color: #C19674;
	color: Black;	
}

/*
Set the Sub-index 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_Expindex script.
*/
#p7indexbar li:hover ul, #p7indexbar li.p7hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
index items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_Expindex script.
The color set should march the normal Sub-Level link color
in the rule: #p7indexbar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7indexbar li:hover ul a, #p7indexbar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
	font-size:11px;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7indexbar ul a:hover {
	background-color: #606060!important;
	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 index items to their natural width.
Do not edit this rule in any way. */
#p7indexbar li {width: auto;}











#lanwrapper {

}




.lanclearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}


#lan, #lan ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#lan a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	/*border-right: 1px solid #333;*/
	font-size: .85em;
	color: #CCCCCC;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the lan a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#lan a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: left 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.
*/
#lan li {
	float: left;
	width: 9em;
	position: relative; z-index: 1000; 
}
/*
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.
*/
#lan li ul, #lan ul li  {
	width: 12em;
}
/*
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.
*/
#lan ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#lan li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#lan li:hover a, #lan a:focus,
#lan a:active, #lan li.p7hvr a {
	color: #000000;
	background-color: #C19674;
}
/*
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.
*/
#lan li:hover ul, #lan 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: #lan ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#lan li:hover ul a, #lan li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#lan ul a:hover {
	background-color: #606060!important;
	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. */
#lan li {width: auto;}











#currencywrapper {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	background-repeat: repeat-x;

}




.currencyclearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}


#currency, #currency ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#currency a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	border-right: 1px solid #333;
	font-size: .85em;
	color: #CCCCCC;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the currency a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#currency a.trigger {
	padding: 5px 16px 5px 10px;
	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.
*/
#currency li {
	float: left;
	width: 9em;
}
/*
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.
*/
#currency li ul, #currency ul li  {
	width: 12em;
}
/*
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.
*/
#currency ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#currency li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#currency li:hover a, #currency a:focus,
#currency a:active, #currency li.p7hvr a {
	color: #000000;
	background-color: #C19674;
}
/*
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.
*/
#currency li:hover ul, #currency 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: #currency ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#currency li:hover ul a, #currency li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#currency ul a:hover {
	background-color: #606060!important;
	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. */
#currency li {width: auto;}












#menuwrapperTutual {
	border-top: 1px solid #000;
	border-bottom: 1px solid #333;
	background-color: #909090;
	background-image: url(images/p7exp_mbar.jpg);
	background-repeat: repeat-x;

}


/*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.
*/
#p7menubarTutual, #p7menubarTutual ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#p7menubarTutual a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 150px;
	border-right: 1px solid #333;
	font-size: .85em;
	color: #fff;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubarTutual a.trigger {
	padding-right: 93px; padding-left: 16px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#p7menubarTutual a.nodrop {
	padding-right: 93px; padding-left: 16px;
	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.
*/
#p7menubarTutual li {
	float: left;
	width: 9em;
}
/*
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.
*/
#p7menubarTutual li ul, #p7menubarTutual ul li  {
	width: 12em;
}
/*
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.
*/
#p7menubarTutual ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7menubarTutual li ul {
	position: absolute;
	display: none;
	background-color: #FFFFFF;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-image: url(images/p7exp_mgrad.jpg);
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#p7menubarTutual li:hover a, #p7menubarTutual a:focus,
#p7menubarTutual a:active, #p7menubarTutual li.p7hvr a {
	color: #000000;
	background-color: #C19674;
}
/*
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.
*/
#p7menubarTutual li:hover ul, #p7menubarTutual 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.
*/
#p7menubarTutual li:hover ul a, #p7menubarTutual li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
	font-size:11px;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7menubarTutual ul a:hover {
	background-color: #606060!important;
	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. */
#p7menubarTutual li {width: auto;}

















#quickwrapper {
	text-decoration : none;
	background-repeat:no-repeat;
	font-weight:bold; font-size:32px;
	background-image: url(images/quickLink.jpg);
	width:120px;

}




.quickclearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}


#quick, #quick ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Verdana;
	filter: alpha(opacity=85);
	-moz-opacity: 85%;

}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#quick a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	/*border-right: 1px solid #333;*/
	font-size: .85em;
	color: #CCCCCC;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the tab a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#quick a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(images/p7PM_dark_south.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size:12px;
}
/*
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.
*/
#quick li {
	float: left;
	width: 9em;
	font-size:13px;
	font-weight:100;
}
/*
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.

#quick li ul, #quick ul li  {
	width: 32em;
}*/
/*
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.
*/
#quick ul li a  {
	color: #565656;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#quick li ul {
	position: absolute;
	display: none;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	/*background-image: url(../../images/p7exp_mgrad.jpg);*/
	background-color: #FFCC99;	
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#quick li:hover a, #quick a:focus,
#quick a:active, #quick li.p7hvr a {
	color: #FFFFFF;

	
}
/*
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.
*/
#quick li:hover ul, #quick 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: #tab ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#quick li:hover ul a, #quick li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#quick ul a:hover {
	background-color: #606060!important;
	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. */
#quick li {width: auto;}