/* 
    Document   : menu
    Created on : 31.07.2012., 22:52:41
    Author     : Marko
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

.jqmenu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.jqmenu li{
    position: relative;
    display: inline;
    float: left;
    z-index: 999;
 }

.jqmenu li a {
    padding: 3px;
}

* html .jqmenu li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.jqmenu li ul{
position: absolute;
width: 300px;
right: -10px;
display: none;
z-index: 99;
padding: 2px;
box-shadow: 0px 3px 5px #222222;
/*visibility: hidden;*/
}

.jqmenu li ul li{
  position: relative;
  display: block;
  width: 90%;
  border-bottom: 1px solid black;
  height: 32px;
  padding-left: 30px;
  font-size: 11px;
  line-height: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
/*visibility: hidden;*/
}

/*.jqmenu li ul li:hover {
  background: #ccc;
}*/

.warning {
    background: url(../img/warning_1.png) top left no-repeat;
}

.warning:hover {
    background: #ccc url(../img/warning_1.png) top left no-repeat;
}


.jqmenu .ccurr a {
   /* width: 110px;*/
    display: block;
    margin-top: -2px;
    border: 0;
    height: 100%;
}

.jqmenu .ccurr:hover a {
   background: #eee;
    color: #222;
    padding: 2px;
   /* border: 1px solid black;*/
    z-index: 999;
}

.jqmenu .ccurr .has_is {
    color: yellow;
}

.jqmenu .ccurr:hover .has_is {
    color: #222;
}

.jqmenu li:hover ul {margin-top: -2px; display: block; background: #eee; color: black; border-bottom: 1px solid black; border-left: 1px solid black; border-right: 1px solid black;}

/******** HEADER MENU EXTRAS ***********/

#navUserType .x_menu li{
    top: 0;
}

#navUserType .x_menu ul {
  position: absolute;
    width: 200px;
    left: 0px;
    display: none;
    z-index: 99;
    padding: 0px;
    /*box-shadow: 0px 3px 5px #222222;  */
}

#navUserType  .x_menu:hover ul {display: block;}

#navUserType  .x_menu ul li {
   background: #222;
   width: 100%; 
   border-bottom: 1px solid #222;
   border-left: 1px solid #222;
   border-right: 1px solid #222;
   /*height: 35px;*/
   
}


#navUserType .x_menu ul li a {
    width: 100%; 
    background: #C3C3C3;
    border: 0;
    moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    text-shadow: 0;
    color: #000;
    height: 25px;
    padding-top: 5px;
}

#navUserType .x_menu ul li a.active {
    color: black;
    line-height: normal;
}

#navUserType .x_menu ul li a:hover {
    color: #c3c3c3;
    background-color: #222;
    font-weight: bold;
}

/******* AUTHOR FINDER MENU **********/
#afinder_results a {
    width: 315px; 
    display: block; 
    line-height: 90%; 
    margin: 1px 1px 2px 1px;
    color: black;
    border: 1px solid white;
    padding: 2px;
}

#afinder_results a b.af_name {
    color: #0069a6;
}

#afinder_results a:hover {
    background: #ddd;
    color: #069;
    border: 1px solid gray;
    
}

#afinder_results a:hover b.af_name {
   background: #ddd;
   color: #069;
}