@CHARSET "UTF-8";

// There is no required CSS for this plugin to work properly
// but here is what is being used to style this demo

.horizontal-nav {
	/*
    background: #efefef;
    border-radius: 6px;
    */
    height:20px;
}
.horizontal-nav ul {
    float: left;
    text-align: center;
    -webkit-padding-start: 0px;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -moz-padding-start: 0px;
    margin-top: 0em;
    margin-bottom: 0em;
    padding-left: 0px;
    
    cursor: crosshair;
}
.horizontal-nav ul li {
    float: left;
    list-style-type: none;
    /* border-left: 1px solid #0e7079; */
}
.horizontal-nav ul li:first-child {
    border-left: 0 none;
}
.horizontal-nav ul li a {
    height:20px;
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-family: Verdana;
    font-size: 11px;
    text-decoration: none;
    /*
    border-top: 1px solid rgba(255,255,255, 0.25);
    */
    border-left: 1px solid rgba(255,255,255, 0.25);
}
.horizontal-nav ul li:first-child a {
    border-left: 0 none;
}
.horizontal-nav ul li a:hover {
    background: #ececec;
    color: #58585a;
    padding-bottom: 5px;
}
/*
.horizontal-nav ul li:first-child a {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.horizontal-nav ul li:last-child a {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}*/