/* $Id: nice_menus_default.css,v 1.10 2010/10/09 16:58:04 add1sun Exp $ */
/*
  This is the default layout template for nice menus, and will provide
  a starting point for the look of your menus. To customize, it's
  recommended to create a custom CSS file using this file as a template,
  then configure the module to use your custom CSS file
  (this is done in the global settings tab of the theme administration.)

  See README.txt and the handbook page (http://drupal.org/node/185543)
  for more information on using the CSS.
*/

/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1px 0;
	font-weight: 700;
	background: url(nav-background.png) repeat-x;
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0; 
	-webkit-border-radius: 5px 5px 0 0;
}

ul.nice-menu li {
  float: left; /* LTR */
	background: url(nav-separator.png) no-repeat left 50%;
}

ul.nice-menu a {
	padding: 8px 21px 7px 21px;
    font-family: "klavika-web", Verdana, Helvetica, Arial, sans-serif; 
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
}

ul.nice-menu ul {
  top: 38px;
  left: -1px; /* LTR */
  margin-right: 0; /* LTR */
	width: 952px;
}

ul.nice-menu ul li {
  text-align: left;
	width: 300px;
	background: none;
	line-height: 1.1em;
}
ul.nice-menu ul li a,
ul.nice-menu-down ul li a,
ul.nice-menu-right ul li a,
ul.nice-menu-left ul li a{
    font-family:  Verdana, Helvetica, Arial, sans-serif; 
    font-size: 11px;
}
/******************************
 VERTICAL (left/right) menus
******************************/

/* This is the default width of all vertical menus. */
ul.nice-menu-right, ul.nice-menu-left,
ul.nice-menu-right li, ul.nice-menu-left li {
  width: 12.5em;
}

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right ul ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {
  /*background: #eee url(arrow-right.png) right center no-repeat;*/
}

ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li li.menuparent:hover {
  /*background: #ccc url(arrow-right.png) right center no-repeat;*/
}

/* VERTICAL menus where submenus pop LEFT. */
ul.nice-menu-left li ul {
  width: 12.5em;
  left: -12.65em;
  top: -1px;
}

ul.nice-menu-left li ul li ul {
  /*width: 12.5em;*/
  top: -1px;
}

ul.nice-menu-left li.menuparent,
ul.nice-menu-left li li.menuparent {
  background: #eee url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left li.menuparent:hover,
ul.nice-menu-left li li.menuparent:hover {
  background: #ccc url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  padding-left: 14px;
}

/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down li a.active { 
	background: url("nav-background.png") no-repeat center -122px;
	text-decoration: none;
	color: #fff;
}
ul.nice-menu-down li a:hover { 
	background: url("nav-background.png") no-repeat center -62px; 
	text-decoration: none;
}

ul.nice-menu-down ul {
  left: 0; /* LTR */
	border-radius: 0;
	-moz-border-radius: 0;          
	-webkit-border-radius: 0;
	background: url(nav-dropdown.png) no-repeat 0 bottom;
	padding: 0 10px 6px 10px;
}

ul.nice-menu-down ul.child-1 { border: 4px #b3b3b3 solid; }
ul.nice-menu-down ul.child-1 div.menu { float: left; width: 667px; padding-top: 10px; }
ul.nice-menu-down ul.child-1 li a { padding-left: 0px; font-weight: bold;  }
ul.nice-menu-down ul.child-1 li a:hover { background: none; }
ul.nice-menu-down ul.child-1 li a.active { background: none; text-decoration: underline; }

ul.nice-menu-down ul.child-1 li ul.child-2 { 
	display: block !important; 
	visibility: visible !important; 
	position: relative; 
	left: 0;
	width: 100%;
}
ul.nice-menu-down ul.child-1 li ul.child-2 li a { 
	margin-left: 0px; 
	padding: 4px 10px 1px 10px;
	font-weight: normal;
	line-height: 120%;
}

ul.nice-menu-down ul.child-1 div.menu-ad { 
	float: left; 
	width: 260px;
	margin-left: 23px; 
	text-align: left;
}

ul.nice-menu-down ul.child-1 div.menu-ad a { padding: 0px; }
ul.nice-menu-down ul.child-1 div.menu-ad a:hover { background: none; }

ul.nice-menu-down ul.child-1 div.menu-ad .title { 
	font-family: Arial;
	padding: 10px 0 10px; 
	text-align: left; 
}

ul.nice-menu-down ul.child-1 div.menu-ad .title a { color: #444; font-weight: bold; }

ul.nice-menu-down ul.child-1 div.menu-topics { 
	font: 12px Arial; text-align: left; width: 665px; margin-top: 10px; 
	border-top: 1px #e5e5e5 solid; padding-top: 7px;
}

ul.nice-menu-down ul.child-1 div.menu-topics .header { text-transform: uppercase;  color: #10628D; font-weight: bold; }
ul.nice-menu-down ul.child-1 div.menu-topics .title a { color: #10628D; padding: 8px 0 2px; text-transform: none; }
ul.nice-menu-down ul.child-1 div.menu-topics .desc { color: #555; }

/**
 * Areas of Work Mega Menuu
 */

ul.nice-menu-down li.menu-1414 ul.child-1 { 
	/*background: url(nav-dropdown-plain.png) no-repeat 0 bottom;*/
	background: #fff;
}
ul.nice-menu-down li.menu-1414 ul.child-1 div.menu { width: auto !important; }
ul.nice-menu-down li.menu-1414 ul.child-1 li { width: 235px; }

/* */

ul.nice-menu-down ul.child-1 li ul.child-2 li a { margin-left: 0px; padding-left: 0px; }
ul.nice-menu-down li ul li ul { top: -1px; background: none; }
ul.nice-menu-down li.menu-562 ul,
ul.nice-menu-down li.menu-723 ul { /*display: block !important; visibility: visible !important;*/ }

ul.nice-menu-down li.menuparent ul li a { color: #10628D; text-transform: none; }

ul.nice-mqenu-down li.menuparent ul li.menuparent ul { clear: both; margin-left: 15px; }
ul.nice-menu-down li.menuparent ul li.menuparent ul li { clear: both; }

ul.nice-menu-down li.menuparent {
  /*background: #eee url(arrow-down.png) right center no-repeat;*/ /* LTR */
}

ul.nice-menu-down li.menuparent:hover {
  /*background: #ccc url(arrow-down.png) right center no-repeat;*/ /* LTR */
}

ul.nice-menu-down li li.menuparent {
  /*background: #eee url(arrow-right.png) right center no-repeat;*/ /* LTR */
}

ul.nice-menu-down li li.menuparent:hover {
  /*background: #ccc url(arrow-right.png) right center no-repeat;*/ /* LTR */
}

/******************************
 Garland-specific CSS
******************************/

/**
 * Global CSS for ALL menu types
 */
ul.nice-menu li {
  margin: 0;
  padding-left: 0; /* LTR */
}
ul.nice-menu li.menu-path-front.first {
	background: url(icon-home.png) no-repeat scroll 8px 0 transparent !important;
  text-indent: -1000px;
}
ul.nice-menu li.menu-path-front.first a:hover,
ul.nice-menu li.menu-path-front.first a.active { background: none; }

#header-region ul.nice-menu li {
  margin: 0;
  /* Padding rules are needed to deal with Garland's header line-height. */
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background: #eee;
}

#header-region ul.nice-menu ul {
  top: 36px;
  left: -1px; /* LTR */
  margin-right: 0; /* LTR */
}

#header-region ul.nice-menu ul {
  top: 1.7em;
}

/**
 * HORIZONTAL (down) menus
 */
#header-region ul.nice-menu-down li ul li ul {
  top: -1px;
}

#header-region ul.nice-menu-down li.menuparent {
  background: #eee url(arrow-down.png) right center no-repeat; /* LTR */
}

#header-region ul.nice-menu-down li.menuparent:hover {
  background: #ccc url(arrow-down.png) right center no-repeat; /* LTR */
}

#header-region ul.nice-menu-down li li.menuparent {
  background: #eee url(arrow-right.png) right center no-repeat; /* LTR */
}

#header-region ul.nice-menu-down li li.menuparent:hover {
  background: #ccc url(arrow-right.png) right center no-repeat; /* LTR */
}
