* {
    margin: 0;
    padding: 0
}

body {


    font: 17px/1.6 'Inter', sans-serif;
    font-weight: 400;

    --main-background-color: #edeef0;
    /*
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    */
    background-color: var(--main-background-color);
    margin: 0;
    padding: 0;


    --menu-btn-color: #233E4E;
    /*    --menu-color-hover: #1a8ad5; */
    --menu-color-hover: #476b8f;
    --nav-footer-color: #ecf3fa;
    --color-main: #000033;
    --color-heading-h1: #FFFFFF;
    --color-heading-h2: #580000;
    /*
    --color-heading: #20133a;
    */
    /*
    --color-section: #f9f9fb;
    */
    --color-section: #ffffff;
    --color-subheader: #6699CC;
    --color-note-1: #ff7a18;
    --color-note-2: #fff2df;
    /*
    --color-subheader: #f9f9fb;
    */
    --border-radius-1: 6px;
    /*
    --border-color-1: #20133a;
    */
    --border-color-1: #DFDFDF;
    --border-image-color-1: #DFDFDF;

    --size-container: 870px;
    --size-sidebar: 120px;

    color: var(--color-main);
}

li {
    padding: 0;
    margin: 0;
}

ul,
ol,
dl {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

p {
    margin-top: 0;
    text-indent: 20px;
}

a img {
    border: none;
}

a {
    text-decoration: none;
    font-weight: 700;
}

a:link {
    color: darkblue;
}

a:visited {
    color: darkblue;
}

a:hover,
a:active,
a:focus {
    text-decoration: underline;
    color: darkred;
}



li a {
    font-weight: 700;
    /*
    background: var(--menu-btn-color);
    width: 100%;
    padding: 10px;
    color: white;
    border-style: solid;
    border-width: 0px;
    border-radius: var(--border-radius-1);
    border-color: var(--border-color-1);
    */
}

li a:link {
    color: color: var(--color-main);
}

li a:visited {
    color: color: var(--color-main);
}

li a:hover,
li a:active,
li a:focus {
    text-decoration: underline;
    color: darkred;
}


.main-wrap {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    /*
    display: flex;
    justify-content: center;
    */
}

.container {
    width: var(--size-container);
    max-width: 100%;
    display: inline-block;
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.img-align1 {
    height: auto;
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid var(--border-image-color-1);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

.img-align2 {
    height: auto;
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

.img-sidebar {
    width: 90px;
    height: 90px;
    opacity: 0.5;
    margin-bottom: 30px;
}

.img-sidebar:hover {
    opacity: 1.0;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

header {
    width: 100%;
    position: relative;
    background-color: var(--main-background-color);
    padding: 0;
}

header h1 {
    font-size: 2.7rem;
    margin-top: 0;
    padding: 10px 0;
    color: var(--color-heading-h1);
    vertical-align: middle;
    display: inline-block;
    text-shadow: 2px 2px #000000;
}

h2 {
    color: var(--color-heading-h2);
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--border-color-1);
}

h3 {
    color: var(--color-heading-h2);
    margin-bottom: 15px;
    padding-bottom: 3px;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color-1);
}

h4 {
    color: var(--color-heading-h2);
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-color-1);
}

.sidebar1 {

    /*
    max-width: var(--size-sidebar);
    min-width: var(--size-sidebar);
    */
    width: auto;
    height: 100%;
    margin-left: 10px;
    margin-top: 15px;
    vertical-align: top;
    display: inline-block;
    /*
    float: right;
    width: 280px;
    background-color: #EADCAE;
    padding-bottom: 10px;
    */
}

.sidebar2 {
    max-width: var(--size-sidebar);
    min-width: var(--size-sidebar);
    height: 100%;
    margin-right: 10px;
    margin-top: 50px;
    vertical-align: top;
    display: inline-block;
    /*
    float: right;
    width: 280px;
    background-color: #EADCAE;
    padding-bottom: 10px;
    */
}

@media (min-width:1050px) {
    .sidebar1 {
        display: inline-block;
    }
}

@media (max-width:1049px) {
    .sidebar1 {
        display: none;
    }
}

.content {
    margin: 0;
    padding: 0;
    width: var(--size-container);
    max-width: 100%;
    float: center;
    background-color: var(--main-background-color);
    text-align: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.content ul,
.content ol {
    padding: 0 50px 15px 50px;
}

ul.nav {
    list-style: none;
    border-top: 1px solid #666;
    margin-bottom: 15px;
}

ul.nav li {
    border-bottom: 1px solid #666;
}

ul.nav a,
ul.nav a:visited {
    padding: 5px 5px 5px 15px;
    display: block;
    width: 260px;
    text-decoration: none;
    background-color: #C6D580;
}

ul.nav a:hover,
ul.nav a:active,
ul.nav a:focus {
    background-color: #ADB96E;
    color: #FFF;
}

header,
section,
footer,
aside,
article,
figure {
    display: block;
}

strong {
    /*
    color: var(--color-main);
    */
}

a.download-button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white !important;
    padding: 10px 16px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 30px;
    padding-right: 30px;
    font-size: 20px;
    max-width: 100%;
    line-height: 38px;
    background-color: #5cb85c;
    border-color: #4cae4c;
    background-image: url('../images/download-button-arrow.png');
    text-decoration: none;
    width: 250px;
}

a.download-button:hover {
    text-decoration: none;
    background-color: #449d44;
    border-color: #398439;
    color: white;
}

a.button13 {
    display: inline-block;
    width: 15em;
    font-size: 80%;
    color: rgba(255, 255, 255, .9);
    text-shadow: #2e7ebd 0 1px 2px;
    text-decoration: none;
    text-align: center;
    text-indent: 0;
    line-height: 1.3;
    white-space: pre-line;
    padding: .7em 0;
    border: 1px solid;
    border-color: #60a3d8 #2970a9 #2970a9 #60a3d8;
    border-radius: 5px;
    outline: none;
    background: #60a3d8 linear-gradient(#89bbe2, #60a3d8 50%, #378bce);
    box-shadow: inset rgba(255, 255, 255, .5) 1px 1px;
}

a.button13 span {
    font-size: 180%;
    font-weight: 700;
}

a.button13:hover {
    color: rgb(255, 255, 255);
    background-image: linear-gradient(#9dc7e7, #74afdd 50%, #378bce);
}

a.button13:active {
    color: rgb(255, 255, 255);
    border-color: #2970a9;
    background-image: linear-gradient(#5796c8, #6aa2ce);
    box-shadow: none;
}

.menu1 {
    margin: 0;
    padding: 0;
    left: 1px;
    top: 1px;
}

.emptyheader {
    position: absolute;
    padding: 1px;
    bottom: 0;
    width: 828px;
    background: #99CCFF;
}

.emptyheader2 {
    position: absolute;
    padding: 1px;
    top: 0;
    width: 828px;
    background: #99CCFF;
}

.relative1 {
    position: absolute;
    left: 20px;
    width: 100px;
    height: 100px;
    vertical-align: middle;
    text-align: center;
}

.relative2 {
    position: absolute;
    text-align: center;
    top: 25px;
    left: 25px;
    width: 100%;
}

.relative3 {
    position: absolute;
    text-align: center;
    vertical-align: middle;
    top: 60px;
    width: 100%;
}

.relative3 a {
    text-decoration: none;
    color: white;
}

.smallfont1 {
    font-size: 45%;
}

.subcaption1 {
    color: #660000;
    background-color: #FFFFFF;
    padding: 5px 15px;
    margin: 15px 0 15px 0;
    font-weight: bold;
    font-size: 18px;
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #BFBFBF;
}

.subcaption2 {
    color: var(--color-heading);
    background-color: #FFFFFF;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 1.3rem;
    border-bottom: 1px solid #BFBFBF;
}

.arxdatabox {
    display: inline-block;
    width: 360px;
    height: 600px;
    background-color: #FFFFFF;
    margin: 15px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #DFDFDF;
    vertical-align: top;
}

.newsbox {
    width: 730px;
    background-color: #FFFFFF;
    padding: 5px 15px;
    margin: 15px;
    vertical-align: top;
}

.textbox1 {
    background-color: #FFFFFF;
    margin: 15px 5px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #DFDFDF;
    vertical-align: top;
}

.logobox {
    position: relative;
    top: 15px;
    left: 20px;
}

.smalltext1 {
    font-size: 70%;
    /* Размер шрифта в процентах */
}

.pricecaption {
    float: left;
    width: 20%;
    vertical-align: top;
    font-size: 40px;
    padding: 10px 20px 10px 40px;
    color: #AA0002;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
    text-shadow: 1px 1px #969696;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.buytext {
    float: right;
    width: 80%;
    text-align: left;
        box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

@media (min-width:700px) {
    .buytext {
        width: 80%;
    }
}

@media (max-width:699px) {
    .buytext {
        width: 100%;
    }
}

.buybutton {
    margin: 10px 10px;
    z-index: 90;
    padding: 20px 20px;
    display: inline-block;
    width: auto;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--border-radius-1);
    border-color: var(--border-color-1);

}

.buybutton-wrap {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.buybutton-wrap section {
    margin: 15px 0 0 0;
}

.align1 {
    clear: left;
    text-align: center;
    padding: 15px 0;
}

.align1 a {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.align2 {
    display: block;
    text-align: right;
    padding: 0;
}

.button66 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    padding: 6px 20px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #bbb;
    overflow: visible;
    font: bold 13px arial, helvetica, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    color: #555;
    background-color: #ddd;
    background-image: linear-gradient(top, rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0)),
        url(data:image/png;base64,iVBORw0KGg[...]QmCC);
    transition: background-color .2s ease-out;
    background-clip: padding-box;
    /* Fix bleeding */
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3),
        0 2px 2px -1px rgba(0, 0, 0, .5),
        0 1px 0 rgba(255, 255, 255, .3) inset;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

.button66:hover {
    background-color: #eee;
    color: #555;
}

.button66:active {
    background: #e9e9e9;
    position: relative;
    top: 1px;
    text-shadow: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

.button66.color {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
    background-image: linear-gradient(top, rgba(255, 255, 255, .3),
            rgba(255, 255, 255, 0));
}

.button66.green {
    background-color: #57a957;
    border-color: #57a957;
}

.button66.green:hover {
    background-color: #62c462;
}

.button66.green:active {
    background: #57a957;
}

.button66.red {
    background-color: #c43c35;
    border-color: #c43c35;
}

.button66.red:hover {
    background-color: #ee5f5b;
}

.button66.red:active {
    background: #c43c35;
}

.button66.large {
    padding: 12px 30px;
    text-transform: uppercase;
}

.button66.large:active {
    top: 2px;
}

a.menu_btn_1,
a.menu_btn_2 {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    margin: 3px 1px;
    padding: 10px 12px;
    width: 90px;
    height: 17px;
    border-radius: 17px;
    text-align: center;
    transition: all .15s ease .15s;
    text-shadow: 1px 1px #000000;
}

a.menu_btn_1 {
    background: var(--menu-btn-color);
}

a.menu_btn_2 {
    background: var(--menu-color-hover);
}

a.menu_btn_1:hover,
a.menu_btn_1:active {
    text-decoration: none;
    color: #fff;
    background: var(--menu-color-hover);
}

.header {
    margin-top: 15px;
    width: 100%;
    z-index: 1000;
}

.navigation {
    /*
    display: flex;
    justify-content: space-between;
    */
    /*
    background: #ecf3f8;
    */
    z-index: 1000;
    padding-top: 5px;
    padding-bottom: 5px;

    position: absolute;
    width: 100%;
    bottom: 0;
    border-radius: var(--border-radius-1);

    text-align: center;
    background-color: var(--menu-btn-color);
}

footer {
    width: 100%;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background-color: var(--menu-btn-color);
    border-radius: var(--border-radius-1);
    vertical-align: top;
}

section {
    margin-bottom: 15px;
    padding: 15px;
    border-style: solid;
    border-width: 1px;
    border-radius: var(--border-radius-1);
    border-color: var(--border-color-1);
    vertical-align: top;
    background: var(--color-section);
}

.section-50-left {
    padding: 0 7px 0 0;
    float: left;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.section-50-right {
    padding: 0 0 0 7px;
    float: right;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

@media (min-width:700px) {
    .section-50-left {
        width: 50%;
        padding: 0 7px 0 0;
    }

    .section-50-right {
        width: 50%;
        padding: 0 0 0 7px;
    }
}

@media (max-width:699px) {
    .section-50-left {
        width: 100%;
        padding: 0;
    }

    .section-50-right {
        width: 100%;
        padding: 0;
    }
}



a.footer_btn_1 {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    background: var(--menu-btn-color);
    margin: 3px 1px;
    padding: 10px 40px;
    height: 17px;
    border-radius: 17px;
    text-align: center;
    transition: all .15s ease .15s;
    text-shadow: 1px 1px #000000;
}

a.footer_btn_1:hover,
a.footer_btn_1:active {
    text-decoration: none;
    color: #fff;
    background: var(--menu-color-hover);
}

a.footer_btn_1.shine {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 4s infinite;
}

/* Start: Buy Button */
a.buy_btn_1 {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    background: var(--menu-btn-color);
    margin: 3px 1px;
    padding: 10px 40px;
    height: 17px;
    border-radius: 17px;

    border-style: solid;
    border-width: 5px;
    border-color: var(--color-subheader);

    text-align: center;
    transition: all .15s ease .15s;
}

a.buy_btn_1:hover,
a.buy_btn_1:active {
    text-decoration: none;
    color: #fff;
    background: var(--menu-color-hover);
}

a.buy_btn_1.shine {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 4s infinite;
}

/* End: Buy Button */

/* Start: Download Button */
a.download_btn_1 {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    background: var(--menu-btn-color);
    margin: 3px 1px;
    padding: 10px 40px;
    height: 17px;
    border-radius: 17px;

    border-style: solid;
    border-width: 5px;
    border-color: var(--color-subheader);

    text-align: center;
    transition: all .15s ease .15s;
}

a.download_btn_1:hover,
a.download_btn_1:active {
    text-decoration: none;
    color: #fff;
    background: var(--menu-color-hover);
}

a.download_btn_1.shine {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 4s infinite;
}

/* End: Download Button */

/* Start: Article Button */
a.article_btn_1 {
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-transform: uppercase;
    color: #fff;
    background: var(--menu-btn-color);
    margin: 3px 1px;
    padding: 12px 40px;
    height: 17px;
    border-radius: 17px;

    text-align: center;
    transition: all .15s ease .15s;
}

a.article_btn_1:hover,
a.article_btn_1:active {
    text-decoration: none;
    color: #fff;
    background: var(--menu-color-hover);
}

a.article_btn_1.shine {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 4s infinite;
}

/* End: Download Button */

@-webkit-keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes bg-move {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.subheader_1 {
    width: 100%;
    height: 300px;
    z-index: 1000;
    margin-bottom: 15px;
    position: relative;
    border-radius: var(--border-radius-1);
    background-image: url("../images/dbl-3.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    /*
    border-style: solid;
    border-width: 1px;
    border-color: var(--border-color-1);
    */
}

.img-float {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.img-float-logo {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
}

.img-inline-1 {
    display: inline-block;
    float: left;
    padding-top: 30px;
    margin-right: 10px;
    margin-bottom: 15px;
}

.img-text-wrap-1 {
    width: 100%;
    text-align: center;
}

.img-text-1 {
    width: 40%;
    min-width: 250px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--color-heading-h2);
    display: inline-block;
    text-align: center;
    font-size: 80%;
    font-style: italic;
}

a.btn-ex {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 35px;
    text-shadow: 1px 1px #000000;
    text-transform: uppercase;
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    text-decoration: none;
}


a.btn-ex-primary {
    /*
     background: #5a7ce2;
     */
    background: var(--menu-btn-color);
    background: linear-gradient(135deg, var(--menu-btn-color) 0%, #8283e8 50%, #5c5de8 51%, #565bd8 71%, #575cdb 100%);
    background-size: 400% 400%;
    animation: btn-animation-1 3s ease infinite;
    border: medium none;
}

.buy-btn-text {
    font-size: 65%;
    color: yellow;
}

@keyframes btn-animation-1 {
    0% {
        background-position: 0% 31%
    }

    50% {
        background-position: 100% 70%
    }

    100% {
        background-position: 0% 31%
    }
}

.explanation {
    position: relative;
    font-size: 90%;
    border-radius: var(--border-radius-1);
    padding: 1rem 1rem 1rem 5rem;
    margin: 10px 20px 10px 20px;
    overflow: hidden;
    background: var(--color-note-2);
    font-style: italic;
}

.explanation::before {
    content: "Note";
    text-transform: uppercase;
    font-weight: 700;
    left: 0;
    top: 0;
    display: grid;
    height: 100%;
    padding: 10px 10px;
    place-items: center;
    background: var(--color-note-1);
    color: white;
    position: absolute;
    box-sizing: border-box;
}

.blank-1 {
    width: 100%;
    height: 300px;
    content: none;
}

.blank-2 {
    width: 100%;
    height: 450px;
    content: none;
}

.blank-3 {
    width: 100%;
    height: 120px;
    content: none;
}

.wrap-buttons {
    margin-top: 10px;
    margin-right: 10px;
    padding: 5px;
    text-align: center;
    background: rgba(200, 200, 200, 0.2);
    position: absolute;
    border-radius: var(--border-radius-1);
    top: 0;
    right: 0;
}

.img-topbar {
    z-index: 1000;
    margin: 5px;
    float: left;
    display: inline-block;
    width: 40px;
    height: 40px;
}

/*
    LEVEL ONE
*/
ul.dropdown {
    position: relative;
    list-style: none;
    font-size: 90%;
}

ul.dropdown li {
    font-weight: bold;
    float: left;
    zoom: 1;
    background: #464646;
}

ul.dropdown a {
    text-decoration: none;
}

ul.dropdown a:hover {
    color: #000;
}

ul.dropdown a:active {
    color: #ffa500;
}

ul.dropdown li a {
    display: block;
    padding: 6px 16px;
    border-right: 1px solid #99CCFF;
    color: #FFFFFF;
}

ul.dropdown li:last-child a {
    border-right: none;
}

/* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover {
    background: #F3D673;
    color: black;
    position: relative;
}

ul.dropdown li.hover a {
    color: black;
}


/*
    LEVEL TWO
*/
ul.dropdown ul {
    width: 220px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
}

ul.dropdown ul li {
    font-weight: normal;
    background: #f6f6f6;
    color: #000;
    border-bottom: 1px solid #ccc;
    float: none;
}

/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
    border-right: none;
    width: 100%;
    display: inline-block;
}

/*
    LEVEL THREE
*/
ul.dropdown ul ul {
    left: 100%;
    top: 0;
    list-style: none;
}

ul.dropdown li:hover > ul {
    visibility: visible;
}
