/*     
    CSS file    : nav.css
    Description : CSS styles for navigation items 
    Created on  : 12. 7. 2016
    Author      : Radek Němec
    Package     : PIS_LG    
*/

/*Styly pro jQuery tabs widget*/

#tabs  {
    padding: 0px; 
    background: none; 
    border-width: 0px; 
    font-weight: normal;
}

#tabs .ui-tabs-nav {  
    padding-left: 0px; 
    background: transparent; 
    border-width: 0px 0px 1px 0px; 
    border-color: #dfd9c3;
    -moz-border-radius: 0px; 
    -webkit-border-radius: 0px; 
    border-radius: 0px; 
}

#tabs .ui-tabs-panel {
    background: #f5f3e5;
    border-width: 0px 1px 1px 1px;
    border-color: #dfd9c3;
}

#tabs li:not(.ui-tabs-active) {
    background: #5BA8E1;
    border: 1px solid #5BA8E1;
}

#tabs li:not(.ui-tabs-active) a {
    color: #fff;
}

#tabs li.ui-tabs-active {
    background: #f5f3e5;
    border: 1px solid #dfd9c3;
    border-bottom-color: #f5f3e5;
}

.ui-state-focus a {
    outline-color: transparent;
}

#tabs li.ui-tabs-active a {
    color: #0099ff;
    font-weight: bold;
}


/*Styly pro rámeček sticky links featury */
.quick-links {
    background: #e0edff;
    border: 1px solid #96d1f8;
    padding: 5px;
    margin: 10px 0 0 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.quick-links.stick {
    position: fixed;
    top: 0;
    z-index: 10000;
    margin-top: 0 !important
}

.quick-links a {
    padding: 0 5px;
}