ul.makeMenu, ul.makeMenu ul {
  width: 80px;                 /* sets the size of the menu blocks */
  background-color:#009999;
  padding: 2px 0px 2px 2px;          /* stops the usual indent from ul */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size:10px;
  text-align:left;  
  position:relative;
	display:inline;
  cursor:pointer;
	z-index:200;
	line-height:19px;
	color:#000000;
}

ul.makeMenu li {
  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: #000000;                 /* sets the default font colour to white */
 display:inline;
 	line-height:19px;
}

ul.makeMenu 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 */
                              /*  have to move off the element to move between blocks, and the menu will close */
	border: 1px solid #000000;
		line-height:19px;
	color:#000000;
}



/* Meny ned top: 2px; left: 78px;*/

ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
    /* gives the active menu items a yellow background */
  color: #000000;                 /* makes the active menu item text black */ 
	text-decoration:none;
		line-height:19px;
		 background-color:#c9e4ff; width:100%
}

ul.makeMenu 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 */
	border: 1px solid #000000; 
	color: #000000;  
		line-height:19px;
}

ul.makeMenu 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 */
 bottom: 0px;                  /* position slightly lower than the parent menu item */
  left: 0px;                  /* this must not be more than the width of the parent block, or the mouse will*/
border: 1px solid #ffe3a8;
text-decoration:none;
color: #000000;  
	line-height:19px;
}

/* and some link styles */
ul.makeMenu li a { color: #000000; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000000; text-decoration:none; background-color:#c9e4ff; display:block; width: 90%;}
ul.makeMenu li:hover > a { color: #000000;  text-decoration:none; } /* supports links in branch headings - must not be display: block; */
-->


#tekst{
color:#000000;  
border: 1px solid #000000;
background-color: #ffffff;

}


