﻿/* HORIZONTAL FREESTYLE MENU LAYOUT */


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

.menulist .menu_img
{
	padding-top:0px;
}

.menulist .divider{
color:white;
font-size:8pt;
font-family:arial;
font-weight:normal;
}
 
/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 left:10px;
 top:30px!important;/*Nastavenie orientácie hore*/
 top:30px;
 width: 180px;
 z-index:200;
}
/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 visibility: hidden;
 position: absolute;
 top: 1px;/*Nastavenie orientácie hore*/
 left: 0px;
 z-index:200;
 height:26px;
}

/*
 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.
*/
.menulist li {
 float:left;
 position: relative;
 top:0px;
 right:0px;
 width:auto;
 height:25px;/*nastavie prenikania prvkov*/
 z-index:10;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 height:26px;
 float: none;
 z-index:200;
}
.menulist ul>li:last-child {
height:26px;
 z-index:200;
}

/* Links inside the menu */
.menulist a {
 padding: 3px;
 /*color:#65b3fa;*/
 color:white;
 font-size:8pt;
 font-family:arial;
 font-weight:bold;
 text-decoration: none;
 text-transform:uppercase;
}

.menulist a:hover {
 color:white;
}

.menulist .submenu {
 display: block;
 color:white;
 background-color: #316498;
 z-index:200;
 position: relative;
 text-align:left;
 height:32px!important;
 height:34px;
 padding-left:5px;
 padding-bottom: 0px;
 border-left:1px solid #d0f2f6;
 border-right:1px solid #d0f2f6;
 }

.menulist .submenu_last{
 display: block;
 z-index:200;
 position: relative;
 background-color: #316498;
 color:white;
 text-align:left;
 padding-bottom: 5px;
 padding-left:5px;
 border-bottom:1px solid #d0f2f6;
 border-left:1px solid #d0f2f6;
 border-right:1px solid #d0f2f6;
 -moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;    

}

.menulist .submenu_last:hover{
color:#FFFFFF;
background-color: #2A9EE3;
background-position: 0px 32px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.odkaz_top a:hover, .menulist a.highlighted:hover{
 color:white;
}
.menulist .submenu:hover, .menulist .submenu:focus 
{
color:#FFFFFF;
background-color: #2A9EE3;
/*background-image: url(../userdata/design/menu_bg.jpg);*/
background-position: 0px 32px;
}

.menulist  a.highlighted {
 /*color:#2A9EE3;*/
 color:white;
 font-weight: bolder;
}

/*
 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. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

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


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */
