/* Normal Buttons */
.button {
    width: auto;
    background: #2ba6cb;
    border: 1px solid #1e728c;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 10px 20px 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.15s ease-in-out;
    -moz-transition: background-color 0.15s ease-in-out;
    -o-transition: background-color 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out; /* Hovers */
    /* Sizes */
}

.nav-bar {
    height: 1%;
    background: #4d4d4d;
    margin-left: 0;
    margin-top: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.nav-bar > li {
    float: left;
    display: block;
    position: relative;
    padding: 0;
    margin: 0;
    border: 1px solid #333333;
    border-right: none;
    line-height: 38px;
    -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset;
    -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset;
}

.nav-bar > li:first-child {
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

.nav-bar > li:last-child {
    border-right: solid 1px #333333;
    -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset, 1px 0 0 rgba(255, 255, 255, 0.2);
}

.nav-bar > li.active {
    background: #2ba6cb;
    border-color: #2284a1;
}

.nav-bar > li.active > a {
    color: white;
    cursor: default;
}

.nav-bar > li.active:hover {
    background: #2ba6cb;
    cursor: default;
}

.nav-bar > li:hover {
    background: #333333;
}

.nav-bar > li > a {
    color: #e6e6e6;
}

.nav-bar > li ul {
    margin-bottom: 0;
}

.nav-bar > li .flyout {
    display: none;
}

.nav-bar > li.has-flyout > a:first-child {
    padding-right: 40px;
    position: relative;
}

.nav-bar > li.has-flyout > a:first-child:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 4px;
    border-color: #e6e6e6 transparent transparent transparent;
    position: absolute;
    right: 20px;
    top: 17px;
}

.nav-bar > li.has-flyout > a.flyout-toggle {
    border-left: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
    z-index: 2;
    display: block;
}

.nav-bar > li.has-flyout.is-touch > a:first-child {
    padding-right: 55px;
}

.nav-bar > li.has-flyout.is-touch > a.flyout-toggle {
    border-left: 1px dashed #666;
}

.nav-bar > li > a:first-child {
    position: relative;
    padding: 0 20px;
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.nav-bar > li > input {
    margin: 0 10px;
}

.nav-bar.vertical {
    height: auto;
    margin-top: 0;
}

.nav-bar.vertical > li {
    float: none;
    border-bottom: none;
    border-right: solid 1px #333333;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.nav-bar.vertical > li.has-flyout > a:first-child:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: solid 4px;
    border-color: transparent transparent transparent #e6e6e6;
}

.nav-bar.vertical > li .flyout {
    left: 100%;
    top: -1px;
}

.nav-bar.vertical > li .flyout.right {
    left: auto;
    right: 100%;
}

.nav-bar.vertical > li.active {
    border-right: solid 1px #2284a1;
}

.nav-bar.vertical > li:last-child {
    border-bottom: solid 1px #333333;
}


