#listMenuNews
{
	position:absolute;
	right:160px;
	bottom:17px;
}

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.newsmenu, .newsmenu  ul {
 margin: 0;
 padding: 0;
 list-style: none;
 font-size: 8pt;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.newsmenu ul {
 display: none;
 position: absolute;
 top: -55px;
 left: 0px;
 width: 155px;
}

.newsmenu li.current ul
{
	display:block;
}

/* Second and third etc. level submenus - position across from parent instead */
.newsmenu ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 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.
*/
.newsmenu li {
 display: block;
 position: relative;
 width: 155px;
 padding:0px;
 margin: 0px;
 text-align: right;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.newsmenu ul li {
 float: none;
 margin: 0px;
 padding: 0px;
 margin-bottom: -1px;
 margin-top: 1px;
 background:none;
 color:#475355;
 border-bottom: solid 1px #475355;
 font-size:8pt;
 padding: 0;
 height: 18px;
 background-color:#FFF;
}

.newsmenu ul li.first
{
	height: 22px;
}

.newsmenu ul>li:last-child
{
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.newsmenu ul li a,
.newsmenu ul li a:visited
{
 display: block;
 padding: 0px;
 margin: 0px;
 color: #fff;
 text-decoration: none;
 font-weight:bold;
}

.newsmenu li a
{
 	height: 38px;
}

.newsmenu li a span
{
	display:block;
padding: 15px 14px 0px 14px;
}

.newsmenu ul li a,
.newsmenu ul li a:visited
{
	color: #475355;
}

.newsmenu ul li.first a
{
	height: 22px;
}

.newsmenu ul li a span
{
	display: block;
	padding: 3px 14px 0px 14px;
}

.newsmenu ul li.first a span
{
	padding-top: 7px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.newsmenu a:hover, .newsmenu a.highlighted:hover, .newsmenu a:focus, .newsmenu a.highlighted, .newsmenu li.current a {
 color: #475355;
 background-color: #80c31c;
}

.newsmenu li.current ul a
{
 background:none;
}

.newsmenu li.current ul li a span
{
	background-color:#fff;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.newsmenu ul li a:hover, .newsmenu ul li a.highlighted:hover, .newsmenu ul li a:focus, .newsmenu ul li a.highlighted, .newsmenu ul li.current a {
 color: #80c31c;
 background: none;
}

/*
 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:
    .newsmenu a#xyz {
      background-image: url(out.gif);
    }
    .newsmenu a#xyz:hover, .newsmenu a.highlighted#xyz, .newsmenu a:focus {
     background-image: url(over.gif);
    }
*/

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


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.newsmenu a {
 float: left;
}
.newsmenu ul a {
 float: none;
}
/* \*/
.newsmenu 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 .newsmenu ul li {
 float: left;
 width: 100%;
}

* html .newsmenu ul li {
 float: left;
 height: 1%;
}
* html .newsmenu ul a {
 height: 1%;
}
* html .newsmenu li.current a span
{
 color: #475355;
}
* html .newsmenu ul li a:hover span,
* html .newsmenu ul li a.highlighted:hover span,
* html .newsmenu ul li a:focus span,
* html .newsmenu ul li a.highlighted span,
* html .newsmenu ul li.current a span
{
 color: #80c31c;
}
/* End Hacks */
