﻿.imglink {
    image-rendering: -webkit-optimize-contrast;
}


.infospan {
    color: dimgray;
}





.hoverbtn {
    display: inline-block;
    border-radius: 4px;
    background-color: #050651;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    width: 220px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 1.5px;
    height: 25px;
    background-image: linear-gradient(#0e4071, #4e4e60); /*#063787, #7bc454*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* <- here it is */
}

.hoverbtn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.hoverbtn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.hoverbtn:hover span {
    padding-right: 25px;
}

.hoverbtn:hover span:after {
    opacity: 1;
    right: 0;
}



.header img {
    float: left;
    width: 12%;
    margin-right: 10px;
    margin-top: 14px;
}

a[disabled] {
    pointer-events: none;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }