body {
    /*background: #F3F3F3;*/
    font-family: Arial, Helvetica, sans-serif;
    overflow-y:hidden;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

.input {
    padding: 8px;
    display: block;
    border: none;
    border: 1px solid #ccc;
    width: 100%
}

.select {
    padding: 9px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc
}

.check,
.radio {
    width: 24px;
    height: 24px;
    position: relative;
    top: 6px
}

.label {
    padding-right: 14px;
}

/* Required */
.required:after {
    content: " *";
    color: #f00;
    font-size: 20px;
}

.label.required {
    padding-right: 1px !important;
}

/* Login */

.login .disclaimer {
    /*position: inherit;
    text-align: center; 
    font-size: 50%;
    font-size: 50%;*/
    position: absolute; /*it can be fixed too*/
    bottom: 10px;
    text-align: center;
    margin:auto;
    left:0;
    right:0;
    padding-bottom: 10px;
    width:50%;
    font-size:10px;
    color:gray;
    
}

.login .content {
    width: 375px;
    height: 400px;
    background-color: #fff;
    position: absolute; /*it can be fixed too*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /*this to solve "the content will not be cut when the window is smaller than the content": */
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,0.75);
}

    .login .content img {
        margin-top: 30px;
    }

    .login .content .form {
        display: block;
        padding-top: 25px;
    }

        .login .content .form input {
            width: 80%;
            padding: 8px 8px 8px 30px;
            border: 1px solid #bbb;
            font-size: 12px;
            margin: 8px;
            color: #666;
        }

.login .iconspan {
    float: left;
    position: absolute;
    z-index: 2;
    left: 50px;
    margin-top: 16px;
    color: #666;
}

.login .btn {
    background: #2689FF;
    color: #fff !important;
    font-weight: bold;
}

/* Main */
.main-wrapper {
    display: block;
}

    .main-wrapper .header {
        display: block;
        /*padding: 5px;*/
        background-color: #fff;
        border-bottom: 5px solid #464646;
    }

.header .navbar {
    display: block;
    padding: 5px;
}

    .header .navbar .brand {
        margin-right: 10px;
        float: left;
    }

    .header .navbar .nav-user {
        margin-right: 10px;
        float: right;
    }

.main-wrapper .content {
    display: block;
    /*padding: 15px 1px 50px;*/
    background-color: #fff;
}

    .main-wrapper .content .title-bar {
        display: block;
        padding: 1px 15px 20px;
        border-bottom: 1px solid #ccc;
    }

.content .title-bar .title {
    font-size: 22px;
    color: #666;
    float: left;
}

.content .title-bar .action-bar {
    float: right;
}

.main-wrapper .content .page {
    display: block;
    /*padding: 15px 1px 50px;*/
}

.content .page .search-bar {
    display: block;
    padding: 10px;
}

    .content .page .search-bar input {
        padding: 8px 8px 8px 30px;
        border: 1px solid #bbb;
        font-size: 12px;
        margin: 8px;
        color: #666;
    }

    .content .page .search-bar .iconspan {
        float: left;
        position: absolute;
        z-index: 2;
        left: 30px;
        margin-top: 14px;
        color: #ccc;
    }

.main-wrapper .footer {
    display: block;
    padding: 10px 0px;
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

    .main-wrapper .footer .copy {
        font-size: 12px;
    }

.inforApplicationName {
    color: #1A1A1A;
    font-size: 1.5em;
    text-align: center;
}