/* BE SURE TO INCLUDE THE CSS RESET FOUND IN THE DEMO PAGE'S CSS */

/*------------------------------------*\
    NAV
\*------------------------------------*/
.nav {
    list-style: none;
    font-weight: bold;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.nav li {
    float: left;
    margin-right: 10px;
    position: relative;
}
.nav a {
    display: block;
    padding: 5px;
    color: #fff;
    background-color: none;
    text-decoration: none;
}
.nav a:hover {
    color: #000000;
    background-color: #6b0c36; /* purple, probably the text */
    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, make background fully transparent where possible */
    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: 0px; /* Introducing padding between the li and the ul spaces the items */
    float: left;
}
.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: 0; /* Bring back on-screen when needed */
}
.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: #f9f8f8; /* dark blue for menu itself */
    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: #f9f8f8; /* purple again, maybe the 2nd dropdown box */
}
/*--- Second Set ---*/
.nav2 {
    list-style: none;
    font-weight: bold;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.nav2 li {
    float: left;
    margin-right: 10px;
    position: relative;
}
.nav2 a {
    display: block;
    padding: 5px;
    color: #fff;
    background-color: none;
    text-decoration: none;
}
.nav2 a:hover {
    color: #000000;
    background-color: #6b0c36; /* purple, probably the text */
    text-decoration: underline;
}
/*--- DROPDOWN ---*/
.nav2 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, make background fully transparent where possible */
    list-style: none;
    position: absolute;
    left: -9999px; /* Hide off-screen when not needed (this is more accessible than display: none;) */
}
.nav2 ul li {
    padding-top: 0px; /* Introducing padding between the li and the ul spaces the items */
    float: left;
}
.nav2 ul a {
    white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
.nav2 li:hover ul { /* Display the dropdown on hover */
    left: 0; /* Bring back on-screen when needed */
}
.nav2 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: #ffffff; /* dark blue for menu itself */
    text-decoration: underline;
}
.nav2 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;
}
.nav2 li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background-color: #ffffff; /* purple again, maybe the 2nd dropdown box */
}

/*--- Third Set ---*/
.nav3 {
    list-style: none;
    font-weight: bold;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.nav3 li {
    float: left;
    margin-right: 10px;
    position: relative;
}
.nav3 a {
    display: block;
    padding: 5px;
    color: #fff;
    background-color: none;
    text-decoration: none;
}
.nav3 a:hover {
    color: #000000;
    background-color: #6b0c36; /* purple, probably the text */
    text-decoration: underline;
}
/*--- DROPDOWN ---*/
.nav3 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, make background fully transparent where possible */
    list-style: none;
    position: absolute;
    left: -9999px; /* Hide off-screen when not needed (this is more accessible than display: none;) */
}
.nav3 ul li {
    padding-top: 0px; /* Introducing padding between the li and the ul spaces the items */
    float: left;
}
.nav3 ul a {
    white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
.nav3 li:hover ul { /* Display the dropdown on hover */
    left: 0; /* Bring back on-screen when needed */
}
.nav3 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: #7393a7; /* dark blue for menu itself */
    text-decoration: underline;
}
.nav3 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;
}
.nav3 li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background-color: #f9f8f8; /* purple again, maybe the 2nd dropdown box */
}
/*--- Fourth Set (for main index page) ---*/
.nav4 {
    list-style: none;
    font-weight: bold;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.nav4 li {
    float: left;
    margin-right: 10px;
    position: relative;
}
.nav4 a {
    display: block;
    padding: 5px;
    color: #000;
    background-color: none;
    text-decoration: none;
}
.nav4 a:hover {
    color: #000000;
    background-color: #6b0c36; /* purple, probably the text */
    text-decoration: underline;
}
/*--- DROPDOWN ---*/
.nav4 ul {
    background-color: #F9F8F8; /* 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, make background fully transparent where possible */
    list-style: none;
    position: absolute;
    left: -9999px; /* Hide off-screen when not needed (this is more accessible than display: none;) */
}
.nav4 ul li {
    padding-top: 0px; /* Introducing padding between the li and the ul spaces the items */
    float: left;
}
.nav4 ul a {
    white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
.nav4 li:hover ul { /* Display the dropdown on hover */
    left: 0; /* Bring back on-screen when needed */
}
.nav4 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: #F9F8F8; /* menu bckgrnd (padding) */
    text-decoration: underline;
}
.nav4 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;
}
.nav4 li:hover ul li a:hover { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background-color: #ffffff; /* purple again, maybe the 2nd dropdown box */
}