/* ================================
    CSS STYLES FOR Module [!output PROJECT_NAME]
   ================================
*/
/*------------------------------------CMSCategoryMenuTree ---------------------------------------*/
.CMSMenuTree ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.CMSMenuTree li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url('images/list.gif') no-repeat left center;
list-style-type: none;
padding-left: 22px;
margin-bottom: 3px;
}

.CMSMenuTree li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url('images/closed.gif') no-repeat left 1px;
cursor: hand !important;
cursor: pointer !important;
}


.CMSMenuTree li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
}

.CMSMenuTree .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}


/*--------------------------------CMSMenu-----------------------------------*/
.CMSMenu ul, .CMSMenu ul ul {
  width: 180px;                 /* sets the size of the menu blocks */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  color:#FFFFFF;
}
.CMSMenu ul li, .CMSMenu ul a {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #ffffff;                 /* sets the default font colour to white */
  padding:0px;
  
}

.CMSMenu ul li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display:none;               /* hides child menu blocks - one of the most important declarations */
  position:absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 181px;              /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
  color:#FFFFFF;
}
.CMSMenu ul ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
	display:block;            /* specially to go with the className changes in the behaviour file */
	color:#FFFFFF;
}
.CMSMenu ul li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
	display:block;              /* makes the child block visible - one of the most important declarations */
	color:#FFFFFF;
	height:28px;
}
/* and some link styles */
.CMSMenu ul li a, .CMSMenu ul li a:visited{ 
	color: #FFFFFF;
	display:block;
	padding: 8px 0 0 35px;
	background-image: url(images/bgr-menu-up.gif);
	text-decoration:none;
}

.CMSMenu ul  a.CSStoHighLink { 
	color: #FFFFFF;
	background:  url(images/bgr-menu-up.gif) 0 -28px;
	display:none;
	padding: 8px 0 0 35px;
	text-decoration:none;
		
}

.CMSMenu ul li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url(/DesktopModules/EQ_SimpleCMSView/IEmen.htc);
	color:#FFFFFF;
	height:28px;
}
.CMSMenu ul ul {  /* copy of above declaration without the > selector */
	color:#FFFFFF;
	display:none;
	position: absolute; 
	top: 0px; 
	left: 181px;
	padding:0px;
	margin:0px;
}
a{
padding:0px;
margin:0px;
}
.CMSMenu span {
		height:28px;
        text-decoration: none;
		margin: 0;
    	list-style: none;
 }

.CMSMenu ul li a:hover,.CMSMenu ul li a.CSStoHighLink { 
	color: #FFFFFF;
	background:  url(images/bgr-menu-up.gif);
	background-repeat:no-repeat;
	padding: 8px 0 0 35px;
	text-decoration:none;
	height:28px;		
		
 } 
.CMSMenu ul li:hover > a { 
	color: #FFFFFF;
	background:  url(images/bgr-menu-down.gif);
	background-repeat:no-repeat;
	padding: 8px 0 0 35px;
	text-decoration:none;	
	 } /* supports links in branch headings - must not be display: block; */
.CMSMenu li a, .CMSMenu a {
         height: 28px;
          voice-family: "\"}\"";
          voice-family: inherit;
        text-decoration: none;
        }

.CMSMenu li a:link, .CMSMenu li a:visited, .CMSMenu a:link, .CMSMenu a:visited {
	color: #FFF;
	display: block;
	background-image: url(images/bgr-menu-up.gif);
	background-repeat:no-repeat;
        }

.CMSMenu li a:hover, .CMSMenu li #current,.CMSMenu a:hover, .CMSMenu #current  {
        color: #ffffff;
        background:  url(images/bgr-menu-up.gif);
		background-repeat:no-repeat;
        }

/* Update 2007-10-06 ----------------*/
.news_title {
	background:none;
	color: #004A39;
	font-family:Tahoma, Verdana;
	font-size:12px;
	font-weight:bold;	
}
.news_summary {
	background::none;
	color: #004A39;
	font-family:Tahoma, Verdana;
	font-size:12px;
	text-align:justify;
}
.new_content {
	background::none;
	color: #000000;
	font-family:Tahoma, Verdana;
	font-size:12px;
	text-align:justify;
}	