/* ================================================================ 
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-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* STYLES ALTERED BY FELICIA BETANCOURT 2009-Oct-06 and later */
/* Note that these styles only apply to menu items between HOME and RSS, i.e., items controlled by
   the CSS Dropdown Menu plugin.
   For example,the font-size for these items is 1em instead of 1.4em.
   All of my changes are indicated by a triple-asterisk (***) 
*/

/* FURTHER CHANGES MADE 2010-Mar-30
   To make room for 2 new menu items: Registration and Press, change:
        width:138px --> width:92px
        width:149px --> width:103px
        left:149px  --> left:103px
        left:-149px --> left:-149px 
        background: ...130px --> 84px 
    
*/


/*** fmb 2009.10.06 COMMENT OUT ul#nav .menu {width:745px; height:32px; position:relative; z-index:100;border-right:1px solid #000; font-family:arial, sans-serif;}*/
/* hack to correct IE5.5 faulty box model */
/*** fmb 2009.10.06 COMMENT OUT html ul#nav .menu {width:746px; w\idth:745px;}*/
/* remove all the bullets, borders and padding from the default list styling */
/*** fmb 2009.10.06 COMMENT OUT ul#nav .menu ul {padding:0;margin:0;list-style-type:none;}*/

/***fmb 2010.03.30 change width from 149px to 103px */
ul#nav .menu ul ul {width:103px;} 

/* float the list to make it horizontal and a relative position so that you can control the dropdown menu position */
/*** fmb 2009.10.06 COMMENT OUT ul#nav .menu li {float:left;width:149px;position:relative;}*/

/* style the links for the top level */
/***fmb change 138px to 92px, 149px to 103px, plus make font more visible*/
ul#nav .menu a, ul#nav .menu a:visited {display:block;
	font-size:0.9em; font-weight: bold; 
	text-decoration:none; color:#fff; 
	width:92px; height:20px; 
	border:1px solid #000; border-width:1px 0 1px 1px; background:#1D1D1D;
	padding-bottom: 1.8em;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html ul#nav .menu a, * html ul#nav .menu a:visited {width:103px; w\idth:92px;}

/***fmb in this group, change background position from 130px to 84px*/
/* style the second level background */
ul#nav .menu ul ul a.drop, ul#nav .menu ul ul a.drop:visited {background:#d4d8bd url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 84px center;} 
/* style the second level hover */
ul#nav .menu ul ul a.drop:hover{background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 84px center;}
ul#nav .menu ul ul :hover > a.drop {background:#c9ba65 url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 84px center;}
/* style the third level background */
ul#nav .menu ul ul ul a, ul#nav .menu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
ul#nav .menu ul ul ul a:hover {background:#b2ab9b;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
/***fmb change 149px to 103px or -103px in next 3 styles */
ul#nav .menu ul ul {visibility:hidden;position:absolute;height:0;top:31px;left:0; width:103px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html ul#nav .menu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
ul#nav .menu ul ul ul{left:103px; top:-1px; width:103px;}

/* position the third level flyout menu for a left flyout */
ul#nav .menu ul ul ul.left {left:-103px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
ul#nav .menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/***fmb change widths for 2nd tier from 128px to 92px (so same as new 1st tier width, instead of 10px less) */
/* style the second level links */
ul#nav .menu ul ul a, ul#nav .menu ul ul a:visited {background:#d4d8bd; color:#000; height:auto; line-height:1em; padding:5px 10px; width:92px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html ul#nav .menu ul ul a, * html ul#nav .menu ul ul a:visited {width:103px;w\idth:92px;}

/* style the top level hover */
ul#nav .menu a:hover, ul#nav .menu ul ul a:hover{color:#000; background:#b7d186;}
ul#nav .menu :hover > a, ul#nav .menu ul ul :hover > a {color:#000; background:#b7d186;}

/* make the second level visible when hover on first level list OR link */
ul#nav .menu ul li:hover ul,
ul#nav .menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
ul#nav .menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
ul#nav .menu ul :hover ul :hover ul{ visibility:visible;}



/* ================================================================ 
   This CSS is further CSS I have created specifically for Wordpress
   so that the current page is highlighted in two levels.
   If you want it in three levels let me know.

   Author: Isaac Rowntree
   Website: www.zackdesign.biz
=================================================================== */


ul#nav .menu ul ul .current_page_item a {
  color: red;
  background: white;
  border-left: 1px solid black;
}

ul#nav .menu .current_page_item a {
  color: red;
  font-weight: bold;
  background: white;
}

ul#nav .menu ul .current_page_item ul a {
  color: white;
  font-weight: normal;
  background: black;
}

ul#nav .menu ul .current_page_item ul a:hover {
  background: gray;
}

ul#nav .menu .current_page_item a:hover {
  background: white;
}

