/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.has_submenu {position:relative; z-index:100;}
.has_submenu .down_arrow{ font-size: 0.5em; }

/* remove all the bullets, borders and padding from the default list styling */
.has_submenu ul {padding:0;margin:0;list-style-type:none;width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.has_submenu, .has_submenu li {float:left;width:149px;position:relative;}
#global_navigation .tools li.has_submenu, #global_navigation .tools li.has_submenu li { margin-left:  0;}

/* style the links for the top level */
.has_submenu a, .has_submenu a:visited {display:block; width:138px; height:1.5em; background: #fff7db; padding-left:10px;}

.has_submenu ul a { border: 1px solid #fbedb9;border-top: none;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.has_submenu ul {visibility:hidden;position:absolute;height:0;top:1.5em;left:0; width:149px;border-top: 1px solid #fbedb9;}

/* style the top level hover */
.has_submenu a:hover, .has_submenu ul a:hover{background: #fbedb9;}
.has_submenu :hover > a, .has_submenu ul :hover > a {background:#fbedb9;}

/* make the second level visible when hover on first level list OR link */
.has_submenu:hover ul, .has_submenu a:hover ul {visibility:visible; }

