/*
 * Menu(navigation)
 *
 * @author:    CRYSTAL Studio
 * @email:     crystal.studio@seznam.cz
 * @version:   $Id: menu.css 79 2009-04-20 19:49:35Z Silver Zachara $
 */

/* Navigation
 -----------------------------------------------------------------------------*/

/* Header navigation
 -----------------------------------------------------------------------------*/

/* Style the Header menu's ul */
#header ul {
    float: right;
}

/* Style the Header menu list items */
#header ul li {
    float: left;
    height: 28px;
    line-height: 29px;
/*
    background: url(images/headerNav-listStyle.jpg) no-repeat left top;
*/
}

#header ul li.home {
    width: 82px;
    background: url(images/home.jpg) no-repeat left top;
/*
    background: url(images/headerNav-listStyle.jpg) no-repeat left top;
*/
}

#header ul li.email {
    width: 82px;
    background: url(images/email.jpg) no-repeat left top;
/*
    background: url(images/headerNav-listStyle.jpg) no-repeat left top;
*/
}

#header ul li.siteMap {
    width: 82px;
    background: url(images/siteMap.png) no-repeat left top;
/*
    background: url(images/headerNav-listStyle.jpg) no-repeat left top;
*/
}

#header ul li.print {
    width: 82px;
    background: url(images/print.jpg) no-repeat left top;
/*
    background: url(images/headerNav-listStyle.jpg) no-repeat left top;
*/
}

/* Style the links for the Header menu */
#header ul li a {
    float: left;
    font-size: 10px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    padding-left: 38px;
}

#header ul li a:link, #header ul li a:visited {
    color: #b3bad7;
    text-decoration: none;
}

/* Style the Header menu list items which are hovered */
#header ul li a:hover, #header ul li a:active {
    color: #ff0000;
/*
    text-decoration: underline;
    background: url(images/headerNav-listStyle-active.png) no-repeat left top !important;
*/
}

#header ul li.home a:hover, #header ul li.home a:active {
/*
    text-decoration: underline;
*/
    background: url(images/home-active.jpg) no-repeat left top !important;
}

#header ul li.email a:hover, #header ul li.email a:active {
/*
    text-decoration: underline;
*/
    background: url(images/email-active.jpg) no-repeat left top !important;
}

#header ul li.siteMap a:hover, #header ul li.siteMap a:active {
/*
    text-decoration: underline;
*/
    background: url(images/siteMap-active.png) no-repeat left top !important;
}

#header ul li.print a:hover, #header ul li.print a:active {
/*
    text-decoration: underline;
*/
    background: url(images/print-active.jpg) no-repeat left top !important;
}

/* Main navigation
 -----------------------------------------------------------------------------*/

#mainNav .mainNav-inner {
    float: left;
    width: 100%;
}

#mainNav .mainNav-inner, x:-moz-any-link {
    width: auto;
}

#mainNav .mainNav-inner, x:-moz-any-link, x:default {
    width: 100%;
}

/*  Style the Main Menu's ul */
#mainNav ul {
    position: relative;
    float: left;
    left: 50%;
    font-size: 12px;
    line-height: 26px;
    height: 26px;
    margin: 0 auto;
}

/* Style the Main Menu list items, make it horizontal and a relative positon so that you can control the dropdown menu positon */
#mainNav ul li {
    position: relative;
    display: block;
    float: left;
    right: 50%;
    height: 26px;
    line-height: 26px;
}

/* Style the sub menu's list items */
#mainNav ul ul li {
    position: static;
    display: block;
    right: auto;
    width: 180px;
    height: auto;
    border: 1px solid #999999;
    border-width: 0 0 1px;
}

#mainNav ul ul li.last {
    border-width: 0;
}

/* Style the links for the Main Menu */
#mainNav a, #mainNav a:visited {
    display: block;
    float: left;
    color: #fff;
    font-size: 12px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    height: 26px;
    margin: 0 19px;
}

/* Style the sub menu's links */
#mainNav ul ul a, #mainNav ul ul a:visited {
    display: block;
    float: left;
    color: #fff !important;
    font-size: 10px;
    height: 100%;
    line-height: 14px;
    width: 160px;
    height: 100%;
    margin: 0;
    padding: 5px 10px !important;
    background-color: #1C2F74;
}

/* Style the table so that it takes no part in the layout - required for IE to work */
#mainNav table {
    font-size: 10px;
    height: 0px;
    width: 0px;
    margin: -1px;
    border-collapse: collapse;
    z-index: 1;
}

/* Style link's hovers in the menus */

/* Main Menu */
* html #mainNav a:hover {
    position: relative;
    color: red;
    height: 26px;
    border: 0px;
    z-index: 100;
}

#mainNav li:hover {
    position: relative;
}

#mainNav :hover > a {
    color: red;
    height: 26px;
    border: 0px;
}

/* First sub menu */
* html #mainNav ul ul a:hover {
    position: relative;
    color: #fff;
    height: 100%;
    background-color: red !important;
    z-index: 110;
}

#mainNav ul ul :hover > a {
    color: #fff;
    height: 100%;
    background-color: red;
    z-index: 110;
}

/* Style for active item in Main Menu */
#mainNav ul li.active a {
    color: red;
}

/* Style for active item in first Sub Menu */
#mainNav ul ul li.active a {
    background-color: red;
}

/* Hide the sub menus and give them a positon absolute so that they take up no room */
#mainNav ul ul {
    position: absolute;
    visibility: hidden;
    top: 26px;
    left: 0px;
    height: 0px;
    width: 180px;
    border: 1px #999999 solid;
}

/* Make the first sub menu visible when hover on the Main Menu list(li) or link */
#mainNav ul :hover ul {
    visibility: visible;
    left: 0px;
    height: auto;
/*
    background: transparent url(images/subMenu1-top-left.png) 30px 0px no-repeat !important;
    background: transparent url(images/subMenu1-top-left.gif) 30px 0px no-repeat;
*/

}

/*
#mainNav ul li.last:hover ul {
    left: -88px;
}
*/


/* Secondary navigation
 -----------------------------------------------------------------------------*/

#secondaryContent .products #secondMenu ul {
    margin: 0 5px 0 4px;
    background-color: #e4e4e4;
}

#secondaryContent .products #secondMenu ul li {
    text-align: center;
    height: 22px;
    line-height: 22px;
    border-bottom: 1px #888888 dotted;
}

#secondaryContent .products #secondMenu ul li.first {
    height: 24px;
    line-height: 24px;
}

#secondaryContent .products #secondMenu ul li.last {
    border-bottom: none;
}

#secondaryContent .products #secondMenu ul li a {
    color: #000;
    font-size: 12px;
    font-family: "MS Sans Serif", Geneva, sans-serif;
    font-weight: bold;
}

#secondaryContent .products #secondMenu ul li.active a {
    color: #4374ba !important;
}

#secondaryContent .products #secondMenu ul li a:link, #secondaryContent .products #secondMenu ul li a:visited {
    color: #000;
    text-decoration: none;
}

#secondaryContent .products #secondMenu ul li a:hover, #secondaryContent .products #secondMenu ul li a:active {
    color: #4374ba;
    background-color: transparent !important;
}

/* Secondary navigation - Vertical Slide Menu
 -----------------------------------------------------------------------------*/
/* Main wrapper for Secondary Menu */
#secondaryContent .products #verticalMenu {
    width: 181px;
    margin-left: 4px;
    padding: 0;
    background-color: #e4e4e4;
}

/* Need IE6 */
#secondaryContent .products #verticalMenu table {
    border-collapse: collapse;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    margin: -1px -4px -1px -4px;
}

/* Styles for first level ul */
#secondaryContent .products #verticalMenu ul {
    position: relative;
    top: 0;
    width: 181px;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
}

/* Styles for second level ul */
#secondaryContent .products #verticalMenu ul ul {
    position: absolute;
    top: 25px;
    height: 0;
    overflow: hidden;
}

/* Styles for first level links */
#secondaryContent .products #verticalMenu ul li a {
    display: block;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    width: 181px;
    height: 25px;
    line-height: 25px;
    padding: 0;
    border-bottom: 1px #888888 solid;
/*
    background: url(images/back3.png) no-repeat left top;
*/
}

#secondaryContent .products #verticalMenu ul :hover {
    background-position: left -25px;
}

#secondaryContent .products #verticalMenu ul li:hover > a {
    background-position: left -25px;
}

/* Styles for li */
#secondaryContent .products #verticalMenu ul li {
    float: left;
}

/* Styles for second level ul after hover on the first ul */
#secondaryContent .products #verticalMenu ul :hover ul {
    float: left;
    position: relative;
    text-align: center;
    top: 0;
    width: 181px;
    height: auto;
    padding: 0;
    margin: 0;
    background-color: #eee;
    overflow: visible;
    cursor: default;
}


/* Styles for first level hovered ul for hovered links */
#secondaryContent .products #verticalMenu ul li a:hover, #secondaryContent .products #verticalMenu ul li.active a,
#secondaryContent .products #verticalMenu ul :hover ul li.active a {
    text-decoration: underline;
}

/* Styles for second level hovered ul for links */
#secondaryContent .products #verticalMenu ul :hover ul li a {
    color: #666;
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    height: auto;
    line-height: normal;
    padding: 2px 0;
    background: transparent;
    border-bottom: 1px dotted #aaa;
}

/* Styles for second level hovered ul for hovered links */
#secondaryContent .products #verticalMenu ul :hover ul li a:hover {
    color: #000;
}

/* TODO zjednotit z main clearovanim Zachara */
#secondaryContent .products #verticalMenu .menu-clear {
    height: 0;
    font-size: 0;
    line-height: 0;
    clear: both;
}
