.login-page, .register-page {
    background: #fff;
}
.user-header
{
    height: 75px !important;
}
.right, .delete
{
    text-align: right;
}

.showOnTablet
{
    display: none;
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    .showOnTablet
    {
        display: block;
    }
    /* For portrait layouts only */
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    .showOnTablet
    {
        display: block;
    }
    /* For landscape layouts only */
}
.message
{
    z-index: 10000;
    background: #000;
    opacity: 0.7;
    color: #ccc;
    padding: 10px;
    font-size: 16px;
    width: 800px;
    position: fixed;
    top: -44px;
    height: 44px;
    left: 50%;
    margin-left: -400px;
    border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
}
.message span
{
    float: left;
    margin-right: 10px;
}

.dropFile {
    border: 1px dotted #ccc;
    background-color: #eee;
    border-radius: 10px;
}
/* Essential FileDrop zone element configuration: */
.fd-zone {
    position: relative;
    overflow: hidden;
    /* The following are not required but create a pretty box: */
    margin: 0 auto;
    text-align: center;
}

/* Hides <input type="file"> while simulating "Browse" button: */
.fd-file {
    opacity: 0;
    font-size: 118px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 0;
    margin: 0;
    cursor: pointer;
    filter: alpha(opacity=0);
    font-family: sans-serif;
}

.ui-datepicker
{
    z-index: 10 !important;
}

.showOnHover:hover .showOnHoverItems
{
    visibility: visible;
}
.showOnHoverItems
{
    visibility: hidden;
}