  #nav {
		
		position: relative;
		top: -10px;
		height: 60px;
		width: 650px;
		font-style: Helvetica;
		font-size: 12px;
		
	}
	
    #nav li {
    float: left;

  }

/*root menu item - inactive*/
  #nav li a:visited, #nav li a:link {
	padding: 0px 3px 0px 3px;
    background: none;/*url(../taust.png) 0 0 no-repeat;*/
	text-decoration: none;
    color: #000;
    line-height: 55px;
	
		
	
	
    
  }

/*root menu item - active*/
  #nav li a:hover, #nav li a:active, #nav li.on a.top {
    background: none;/*url(../taust.png) 0 0 no-repeat;*/
    text-decoration: underline;
	/*font-weight: bold;*/
    color: #000;
  }

 
  
/*submenu block - if parent menu inactive and not hovered*/  
  #nav li ul {

	
    position: absolute;
	/*margin-left: -78px;*/
	left: -7px;
	
	display: none;
	font-style: Helvetica;
	font-size: 100%;
    top: 57px;
	height: 22px;
		width: 720px; /*if you change it, dont forget to change the #nav tag too*/
		background: none;/*url(../taust.png) 0 0 no-repeat;*//*#ee1c25/*this background overlaps the longer submenu group if shorter submenu group appears*/
  }
  
/*submenu block - if parent menu hovered*/
  #nav li:hover ul, #nav li.over ul {

	position: absolute;
    display: none;
	
   
  }

 

/*submenu block - if parent menu selected*/ 
  #nav li.on ul {
	position: absolute;
	display: block;
	
	
  }
  
/*submenu item - inactive*/
  #nav li ul li a:visited, #nav li ul li a:link {
    padding: 0px 10px 0px 10px;
    background: none;
    text-decoration: none;
    color: #000;
    line-height: 20px;
	
  }

/*submenu item - active*/
  #nav li ul li a:active, #nav li ul li a:hover, #nav li.on ul li.on a {
    background: none;
	text-decoration: underline;
	/*font-weight: bold;*/
    color: #000;
  }

  
