.nav-text{
    color:white;
    padding:0px 10px 0px 0px;
}
.nav .home-button{
    background-color:darkcyan;
}
.nav .home-button:hover{
    background-color:#13B0D7;
}
.nav .log-button{
    background-color:red;
}
.nav .log-button:hover{
    background-color:brown;
}
.nav-head{
/*    background: #13B0D7;*/
    background: #13B0D7;
}
.nav {
    list-style: none;
/*    font-weight: bold;*/
    margin-bottom: 0px;
    float: left; /* Clear floats */
    width: 100%;
    /* Bring the nav above everything else--uncomment if needed.
    position: relative;
    z-index: 5;
    */
}
.nav li {
    float: left;
    margin-right: 2px;
    position: relative;
}
.nav a {
    display: block;
    padding: 7px 20px;
    color: #fff;
/*    background-color: #333;*/
    background-color: #13B0D7;
    text-decoration: none;
}
.nav a:hover {
    color: #fff;
/*    background-color: #6b0c36;*/
/*    background-color: #f9f9f9;*/
    background-color: red;
    text-decoration: underline;
}

/*--- DROPDOWN ---*/
.nav ul {
    background-color: #fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background: rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style: none;
    position: absolute;
    left: -9999px; /* Hide off-screen when not needed (this is more accessible than display: none;) */
}
.nav ul li {
    padding-top: 1px; /* Introducing a padding between the li and the a give the illusion spaced items */
    float: none;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.nav ul a {
    white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
.nav li:hover ul { /* Display the dropdown on hover */
    left: -40px; /* Bring back on-screen when needed */
     z-index: 1000;
}
.nav li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
/*    background-color: #6b0c36;*/
/*    background-color: #f9f9f9;*/
    background-color: darkcyan;
    color: white;
    text-decoration: underline;
}
.nav li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration: none;
}
.nav li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background-color: #333;
    color: #fff;
}


/*===================================*/
.jv-sticky{
    position: fixed;
    top: 0;
    width: 100%;
    z-index:99;
}
.nav-toggle-hit{
    text-align: center;
/*    background-color: blue;*/
}
.nav-toggle-hit span{
    font-size: 25px;
}
.nav-toggle-hit i{
    color:white;
    font-size: 30px;
    text-align: center;
}
.nav-toggle-menu {
    display: none;
}
.nav-toggle{
    background-color:#13B0D7;
    color: #fff;
}
.nav-toggle .home-button{
    background-color:darkcyan;
    color: #fff;
}
.nav-toggle .home-button:hover{
    background-color:#13B0D7;
    color: #fff;
}
.nav-toggle .log-button{
    background-color:red;
}

.nav-toggle a {
    white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
.nav-toggle {list-style:none}
.nav-toggle li{ border-bottom:1px solid darkcyan;}
.nav-toggle li ul li{ border-bottom:none;}
.nav-toggle li a{padding:5px;display:block;text-decoration:none;padding-left:20px;}
.nav-toggle li a:hover{background:darkcyan;color:#fff;}
.nav-toggle li ul { /* Hide the dropdown */
    display: none;
    list-style: none;
}
.nav-toggle li:hover ul { /* Display the dropdown on hover */
    display: block;
}

/*===================================*/
/* Resize Parallax for tablets and mobiles */
@media only screen and (min-width: 300px) { /* if reach level 300px output is 200px*/
    .jv-nav-hide-at-300px{display:none;}
}

@media only screen and (min-width: 601px) { /* if reach level 601px output is 400px*/
    .jv-nav-hide-at-300px{display:block;}
    .jv-nav-hide-at-600px{display:none;}
}
/*===================================*/
/* This menu for sticky menu item in article page */
@media only screen and (min-width: 201px) { /* if reach level 601px output is 400px*/
    .stick-menu-disease{
        position:sticky;
/*        position:fixed;*/
        margin:0 auto;
    /*    bottom:0;*/
        top:42px;
        right:50px;
        z-index:90;
        background-color:darkcyan;
    }

}

