html {
    height:100%;
    width:100%;
}

body {
    padding:0px;
    margin:0px;
    background-repeat:no-repeat;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#topbanner {
    width:100%;
    height:492px;
    min-height:492px;
    /*  background-image:url(/images/topbannerbg.jpg); */
    background-image:linear-gradient(to right, rgba(112, 135, 217, 1), rgba(50, 45, 108, 1));
    background-position:50% 50%;
    background-size:cover;
}

.noselect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.canselect {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}