/* MODIFICATIONS REQUIRED FOR FSMENU */ 
.block {overflow:visible !important;}
.inside {position:static !important;}

/* MAIN MENU */

div#main_menu.mod_navigation {
  clear:both;
	margin:0px 0px 0px 0px;
	padding:0px;

}

div#main_menu.mod_navigation ul {
  width:100%;
	margin:6px 0px 0px 0px;
	padding:0px;
	float:right;
	list-style-type:none;
}

div#main_menu.mod_navigation li {
	float:left;
	margin:0px 0px 0px 0px;
	padding:0px;
	text-align:left;
}

div#main_menu.mod_navigation a:link, div#main_menu.mod_navigation a.active {
	text-decoration:none;
}

div#main_menu.mod_navigation a {
  float:left;
  display:inline;
	font-weight:bold;
	font-size:13px;
	height:20px;
	display:block;
	margin:0px;
	padding:3px 18px 0px 18px;
	text-align:left;
	text-decoration:none;
}

div#main_menu.mod_navigation a.first {
	padding: ;
}

div#main_menu.mod_navigation a.last {
	border-right:none;
	width:71px;
}

/******************************/
/****   SUB MENU Level 1   ****/
/******************************/

div#sub_menu { margin-bottom:20px; }

div#sub_menu.mod_navigation h2, .mod_newsmenu h2 {
	margin:0px;
}

div#sub_menu.mod_navigation h2 a, .mod_newsmenu h2 a {
	margin:0px;
	padding:2px 20px;
	font-size:13px;
	text-decoration:none;
	font-weight:bold;
}

div.mod_box_items div#sub_menu.mod_navigation h2 {
 padding:0px }

div#sub_menu.mod_navigation ul, .mod_newsmenu ul {
	margin:0px;
	padding:0px 0px;
	list-style-type:none;
}

div#sub_menu.mod_navigation li, .mod_newsmenu li {
	margin:0px;
	padding:0px;
}

div#sub_menu.mod_navigation a, .mod_newsmenu a {
	display:block;
  text-decoration:none;
	font-size:1.0em;
	font-weight:normal;
	padding:3px 0px 3px 20px;
}

div#sub_menu.mod_navigation a.first, .mod_newsmenu a.first {
	padding-top:5px;
}

div#sub_menu.mod_navigation a.last, .mod_newsmenu a.last {
	padding-bottom:5px;
}


div#sub_menu.mod_navigation a.active, .mod_newsmenu a.active {
	text-decoration:none;
}



div#sub_menu.mod_navigation p, .mod_newsmenu p{
	font-size:11px;
}

/******************************/
/****   SUB MENU Level 2   ****/
/******************************/

div#sub_menu.mod_navigation ul.level_2 {
  margin:0px 0px 0px 20px;
  padding:0px 0px 0px 20px;
  list-style-type:square;
}

div#sub_menu.mod_navigation ul.level_2 a {
	padding:5px 0px 5px 40px;
	margin:0px 0px 0px -40px;
}

div#sub_menu.mod_navigation .level_2 a {
	font-weight:normal;
	font-size:1.0em;
}

/******************************/
/****   QUICK NAV   ****/
/******************************/

div.mod_quicklink  { margin:0px 0px 0px 0px; padding:0px 0px 14px 0px; }
div.mod_quicklink select { float:left; margin:1px 0px 0px 0px; width:188px; height:22px; }
div.mod_quicklink .submit { float:left; clear:none; margin:0px; }

/******************************/
/****         FSMENU       ****/
/******************************/


div#drop_menu_h {
  clear:both;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	height:26px;
	width:960px;
	border-top:solid 1px #D0D1D3;
	line-height:1.7em;

}

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
div#drop_menu_h .menulist, div#drop_menu_h .menulist  ul {
 margin: 0;
 padding: 0px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
div#drop_menu_h .menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 14px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 170px;
}

/* Second and third etc. level submenus - position across from parent instead */
div#drop_menu_h .menulist ul ul {
 top: -1px; margin-top: 0;
 left: 168px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
div#drop_menu_h .menulist li {
 float: left;
 display: block;
 position: relative;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
div#drop_menu_h .menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
div#drop_menu_h .menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
div#drop_menu_h .menulist a {
 display: block;
 padding: 4px 22px 4px 10px;
 text-decoration: none;
}

div#drop_menu_h .menulist ul li a {
 padding-right:10px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
div#drop_menu_h .menulist a .subind {
 display: none;
}
div#drop_menu_h .menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
div#drop_menu_h .menulist a {
 float: left;
}
div#drop_menu_h .menulist ul a {
 float: none;
}
/* \*/
div#drop_menu_h .menulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html div#drop_menu_h .menulist ul li {
 float: left;
 width: 100%;
}

* html div#drop_menu_h .menulist ul li {
 float: left;
 height: 1%;
}
* html div#drop_menu_h .menulist ul a {
 height: 1%;
}
/* End Hacks */