.menubar {
    height: 19px;
    font-size: 12px;
    font-family: 'Charcoal';
    background-color: #dedede;
    box-shadow: inset -1px -1px #9c9c9c, inset 1px 1px #fff;
    border-bottom: 1px solid #000;
    image-rendering: pixelated;
}

.menubar .corner {
    margin: -5px 0 0 0;
}

.menubar .active-application, .menubar .clock {
    margin: 2px 7px 0 8px;
}

.menubar .active-application img {
    vertical-align: middle;
    margin-bottom: 2px;
    margin-right: 5px;
}

.menu > .title {
    padding: 1px 7px 0 8px;
    /* Need a border so items don't move when they are active */
    border-top: 1px solid #fff;
}

.menu > .title.icon {
    background-position: center;
    background-repeat: no-repeat;
}

.menu-items > .icon {
    background-origin: content-box;
    background-repeat: no-repeat;
    text-indent: 20px;
}

.menu > .title.active {
    background-color: #31319c;
    color: #fff;
    border-top: 1px solid #6262cd;
    border-bottom: 1px solid #00008b;
}

.menu .menu-items {
    z-index: 100;
    position: absolute;
    white-space: nowrap;
    background-color: #dedede;
    border: 1px #000 solid;
    box-shadow: 1px 1px #111, inset 1px 1px #fff, inset -1px -1px #999;
}

.submenu .title {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.submenu .arrow {
    margin-right: -5px;
}

.menu-items > div {
    display: flex;
    justify-content: space-between;
    padding: 0 8px 0 20px;
    color: #000;
    /* Need a border so items don't move when they are active */
    border-left: 1px solid #fff;
    border-right: 1px solid #9c9c9c;
}

.menu-items .checked {
    position: absolute;
    left: 5px;
    background-image: url("../../assets/img/ui/widgets/checkmark.png");
    background-repeat: no-repeat;
    background-position: center;

}

.menu-items img {
    vertical-align: middle;
    margin: 0 5px 0 0;
}

.menu-items > .active {
    background-color: #31319c;
    color: #fff;
    border-left: 1px solid #6262cd;
    border-right: 1px solid #00008b;
}

.menu-items .disabled {
    color: #737373;
}

.menu-items .shortcut {
    display: flex;
    padding-left: 15px;
}

.menu-items .shortcut .symbol {
    /* positions the Command character properly */
    margin-top: 1px;
    padding-right: 1px;
    font-size: 10px;
}

.menu-items .shortcut .char {
    width: 1em;
    height: 1em;
}

.menu-items .separator {
    height: 2px;
    margin: 2px 0 1px 0;
    box-shadow: inset 0 1px #999, inset 0 -1px #fff;
}