/*	
Template Name: Adminus
Description: Beautiful admin panel interface
Version: 1.3
Author: enstyled
Author URI: http://themeforest.net/user/enstyled
*/

/* 
**  CUSTOM FONTS 
*/

@import url("../Fonts/Titillium/stylesheet.css");

/* CUSTOM EDIT BY IGOCKI HERE: */

.token-input {
    width: 410px;
    background-color: #fefefe;
    border: 1px solid #999;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #000;
    padding: 7px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    vertical-align: middle;
}


/* END CUSTOM EDIT */
/* 
**  BASIC ELEMENTS
*/

* {
    padding: 0;
    margin: 0;
}

body {
    background: #fbfbfb url(../Images/bg.jpg) 0 0 repeat;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #222;
    line-height: 20px;
}

:focus {
    -moz-outline-style: none;
}

p {
    padding-bottom: 10px;
}

img, a img {
    border: 0;
}

ul li {
    list-style: none;
}

.clear {
    clear: both;
}

a {
    color: #008ee8;
    text-decoration: none;
    outline: none;
}

    a:hover {
        color: #ec8526;
        text-decoration: none;
    }

    a[disabled], a[disabled]:hover {
        color: #BBBBBB;
    }

#hld {
    background: url(../Images/hld.jpg) 0 0 repeat-x;
    min-height: 402px;
}

.wrapper {
    width: 960px;
    margin: 0 auto;
    padding-top: 44px;
}

/* 
**  HEADER 
*/

#header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    overflow: visible !important;
    margin-bottom: 20px;
    height: 40px;
    background-color: #2c2c2c;
    background-image: -moz-linear-gradient(top, #333333, #222222);
    background-image: -ms-linear-gradient(top, #333333, #222222);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
    background-image: -webkit-linear-gradient(top, #333333, #222222);
    background-image: -o-linear-gradient(top, #333333, #222222);
    background-image: linear-gradient(top, #333333, #222222);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

    #header #header-inner {
        width: 960px;
        margin: 0 auto;
    }

        #header #header-inner h1 {
            font-family: "Titillium800", Helvetica, Arial, sans-serif;
            font-size: 20px;
            font-weight: normal;
            text-transform: uppercase;
            float: left;
            padding: 0;
            margin: 0;
            line-height: 40px;
            color: #000;
            text-shadow: 0 1px 0 rgba(255,255,255,.1), 0 0 30px rgba(255,255,255,.125);
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            transition: all .2s linear;
        }

            #header #header-inner h1:hover {
                text-shadow: 0 1px 0 #008EE8, 0 0 30px #008EE8;
            }

    /* 
**  NAVIGATION 
*/

    #header #nav {
        float: left;
        display: block;
        left: 0;
        margin: 0 0 0 10px;
        list-style: none;
    }

        #header #nav a {
            float: none;
            display: block;
            color: #999999;
            font-size: 12px;
            line-height: 20px;
            text-decoration: none;
            text-shadow: 0 1px 0 #000;
        }

            #header #nav a:hover {
                background-color: transparent;
                color: #ffffff;
                text-decoration: none;
            }

        #header #nav .active > a, #header #nav .active > a:hover {
            color: #ffffff;
            text-decoration: none;
        }

        /* Root Level */
        #header #nav > li {
            float: left;
            display: block;
        }

            #header #nav > li > a {
                padding: 0 10px;
                line-height: 40px;
            }

        #header #nav > .active > a, #header #nav > .active > a:hover {
            background-color: #222222;
        }

        /* Sub Levels */
        #header #nav ul {
            float: none;
            background: transparent;
        }

            #header #nav ul li {
                padding: 0 0 0 10px;
            }

            #header #nav ul ul a {
                font-size: 10px;
            }

        /* 2nd Level */
        #header #nav > li > ul {
            display: none;
            position: absolute;
            background-color: #2c2c2c;
            -webkit-border-radius: 0 0 5px 5px;
            -moz-border-radius: 0 0 5px 5px;
            border-radius: 0 0 5px 5px;
            -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            max-height: 500px;
            overflow: auto;
        }

        #header #nav > .show > ul {
            display: block;
        }

        #header #nav > li > ul > li {
            padding: 4px 10px;
        }

/* 
**  BLOCKS
*/

.block {
    background: url(../Images/bnd.gif) no-repeat center bottom / 100% 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    clear: both;
}

    /* Block head */
    .block .block_head {
        height: 54px;
        line-height: 54px;
        padding: 0 20px;
        background: url(../Images/bhead.gif) no-repeat center top / 100% 54px;
        overflow: hidden;
    }

        .block .block_head h2 {
            font-family: "Titillium999", Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: normal;
            text-transform: uppercase;
            color: #222;
            text-shadow: 1px 1px 0 #fff;
            float: left;
        }

        .block .block_head ul {
            float: right;
            text-transform: uppercase;
            font-size: 10px;
            font-weight: bold;
            text-shadow: 1px 1px 0 #fff;
        }

            .block .block_head ul li {
                display: inline;
                padding: 3px 0;
                padding-left: 20px;
                background: url(../Images/phs.gif) 7px center no-repeat;
            }

                .block .block_head ul li.nobg {
                    background: none;
                }

                .block .block_head ul li a {
                    text-decoration: none;
                    color: #222;
                    outline: none;
                }

                .block .block_head ul li.active a {
                    color: #008ee8;
                }

                .block .block_head ul li a:hover {
                    text-decoration: underline;
                }

                .block .block_head ul li select {
                    text-transform: none;
                }

        .block .block_head .date-start, .block .block_head .date-end, .block .block_head .search {
            height: 15px;
            padding: 5px 10px 5px 25px;
            border: 0;
            font-size: 11px;
            color: #222;
            margin: 0;
        }

            .block .block_head .date-start:focus, .block .block_head .date-end:focus, .block .block_head .search:focus {
                color: #222;
            }

        .block .block_head .date-start {
            width: 65px;
            background: url(../Images/dtpckr.gif) left center no-repeat;
        }

        .block .block_head .date-end {
            width: 65px;
            background: url(../Images/dtpckr_.gif) left center no-repeat;
        }

        .block .block_head .search {
            width: 129px;
            background: url(../Images/srch.gif) left center no-repeat;
        }

    /* Block title */
    .block .block_title {
        border-bottom: solid 1px #CCC;
    }

    /* Block content */
    .block .block_content {
        overflow: hidden;
        background: url(../Images/bbg.gif) repeat-y center top / 100% 1px;
        padding: 10px 20px 0;
    }

        .block .block_content h1,
        .block .block_content h2 {
            font-family: "Titillium999", Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: normal;
            color: #000;
            margin-bottom: 10px;
        }

        .block .block_content h3 {
            font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
            font-size: 12px;
            font-weight: bold;
            color: #222;
            margin-bottom: 5px;
        }

        .block .block_content h4 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 11px;
            font-weight: bold;
            color: #222;
            margin-bottom: 5px;
        }

    /* Block table */
    .block table {
        text-align: left;
        margin-bottom: 15px;
    }

        .block table tr td,
        .block table tr th {
            border-bottom: 1px solid #BBB;
            padding: 6px;
            line-height: normal;
            text-align: left;
        }

            .block table tr td.button {
                width: 16px;
            }

        .block table tr.alt td {
            background-color: #f3f4f2;
        }

        .block table tr.over td {
            background-color: #fff3d0;
        }

        .block table tr.active td {
            background-color: #fff3d0;
        }

        .block table tr.urgent td {
            background-color: #ffcfd1;
        }

        .block table tr.inactive td {
            background-color: #d3d4d2;
            color: #888;
        }

        /* Block table tweaks */
        .block table.no-border tr td, .block table.no-border tr th {
            border: 0;
        }

    /* Block tableactions */
    .block .tableactions {
        overflow: hidden;
        padding-bottom: 20px;
        float: left;
    }

        .block .tableactions select {
            width: 100px;
            margin-right: 5px;
            vertical-align: middle;
            outline: none;
        }

    /* Block tablepager */
    .block .tablepager {
        font-size: 12px;
        margin-bottom: 15px;
    }

        .block .tablepager select {
            font-size: 90%;
        }

/* Block buttons */
.add-message-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/add-message.png) no-repeat 0 0;
}

.add-reminder-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/add-reminder.png) no-repeat 0 0;
}

.add-report-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/add-report.png) no-repeat 0 0;
}

.approve-off-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/approve-off.png) no-repeat 0 0;
}

.approve-on-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/approve-on.png) no-repeat 0 0;
}

.attachments-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/attachments.png) no-repeat 0 0;
}

.checkbox-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/checkbox.png) no-repeat 0 0;
}

.client-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-client.png) no-repeat 0 0;
}

.close-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/close.png) no-repeat 0 0;
}

.company-admin-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-company-admin.png) no-repeat 0 0;
}

.delete-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/delete.png) no-repeat 0 0;
}

.details-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/details.png) no-repeat 0 0;
}

.download-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/download.png) no-repeat 0 0;
}

.edit-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/edit.png) no-repeat 0 0;
}

.email-send-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/email_send.png) no-repeat 0 0;
}

.email-forward-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/email_forward.png) no-repeat 0 0;
}

.external-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/external.png) no-repeat 0 0;
}

.history-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/history.png) no-repeat 0 0;
}

.information-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/information.png) no-repeat 0 0;
}

.internal-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/internal.png) no-repeat 0 0;
}

.light-on-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/light-on.png) no-repeat 0 0;
}

.light-on-blue-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/light-on-blue.png) no-repeat 0 0;
}

.light-yellow-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/light-yellow.png) no-repeat 0 0;
}

.light-off-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/light-off.png) no-repeat 0 0;
}

.link-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/link.png) no-repeat 0 0;
}

.manager-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-manager.png) no-repeat 0 0;
}

.map-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/map.png) no-repeat 0 0;
}

.messages-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/messages.png) no-repeat 0 0;
}

.message-pending-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/message-pending.gif) no-repeat 0 0;
}

.more-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/actions.png) no-repeat 0 0;
}

.no-role-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-no-role.png) no-repeat 0 0;
}

.notes-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/notes.png) no-repeat 0 0;
}

.paid-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/dollar.png) no-repeat 0 0;
}

.recipients-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/recipients.png) no-repeat 0 0;
}

.reject-off-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/reject-off.png) no-repeat 0 0;
}

.reject-on-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/reject-on.png) no-repeat 0 0;
}

.rename-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/rename.png) no-repeat 0 0;
}

.sales-manager-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-senior-manager.png) no-repeat 0 0;
}

.senior-manager-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-senior-manager.png) no-repeat 0 0;
}

.specialist-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-specialist.png) no-repeat 0 0;
}

.submit-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/submit.png) no-repeat 0 0;
}

.submit-button-inactive {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/submit-inactive.png) no-repeat 0 0;
}

.switch-off-button, .switch-on-button {
    display: block;
    width: 70px;
    height: 20px;
    background: url(../Images/Icons/switch.png) no-repeat
}

.switch-off-button {
    background-position: 0 0;
}

.switch-on-button {
    background-position: 0 -20px;
}

.system-admin-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/role-system-admin.png) no-repeat 0 0;
}

.telephone-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/telephone.png) no-repeat 0 0;
}

.three-sixty-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/360.png) no-repeat 0 0;
}

.uncheckbox-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/uncheckbox.png) no-repeat 0 0;
}

/*
**  FORMS
*/

.block p {
    overflow: hidden;
    clear: both;
}

.block label {
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: #111;
    margin-right: 10px;
    vertical-align: middle;
}

.block input.text {
    width: 410px;
    background-color: #fefefe;
    border: 1px solid #999;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #000;
    padding: 7px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    vertical-align: middle;
}

    .block input.text.date_picker {
        width: 100px;
    }

    .block input.text.tiny {
        width: 30px;
    }

    .block input.text.short {
        width: 60px;
    }

    .block input.text.medium {
        width: 330px;
    }

.block textarea.text {
    width: 414px;
    height: 140px;
    background: #fefefe;
    border: 1px solid #999;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #000;
    padding: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    vertical-align: middle;
}

.block input.radio,
.block input.checkbox {
    vertical-align: middle;
}

.block .checkbox-list input {
    margin-right: 5px;
    vertical-align: middle;
}

.block .styled {
    width: 426px;
    background: #fefefe;
    border: 1px solid #999;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #000;
    padding: 6px 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    vertical-align: middle;
}

    .block .styled.auto {
        width: auto;
    }

    .block .styled.short {
        width: 60px;
    }

    .block .styled.medium {
        width: 100px;
    }

/* Buttons */
input.submit::-moz-focus-inner {
    border: 0;
}

input.submit {
    background: #e3e3e3;
    border: 1px solid #ccc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: inset 0 0 1px 1px #f6f6f6;
    -moz-box-shadow: inset 0 0 1px 1px #f6f6f6;
    -webkit-box-shadow: inset 0 0 1px 1px #f6f6f6;
    color: #333;
    font-family: "helvetica neue", helvetica, arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    padding: 8px 10px;
    margin: 5px 10px 0 0;
    text-align: center;
    text-shadow: 0 1px 0px #fff;
}

    input.submit:hover {
        background: #d9d9d9;
        box-shadow: inset 0 0 1px 1px #eaeaea;
        -moz-box-shadow: inset 0 0 1px 1px #eaeaea;
        -webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
        color: #222;
    }

    input.submit:active {
        background: #d0d0d0;
        box-shadow: inset 0 0 1px 1px #e3e3e3;
        -moz-box-shadow: inset 0 0 1px 1px #e3e3e3;
        -webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
        color: #000;
    }

    input.submit.delete {
        background: #e3e3e3 url(../Images/Icons/delete.png) no-repeat 5px 7px;
        padding: 8px 10px 8px 24px;
    }

        input.submit.delete:hover {
            background-color: #d9d9d9;
            border-color: #b81111;
        }

        input.submit.delete:active {
            background-color: #d0d0d0;
        }

/* 
**  SMALL BLOCKS
*/

.block.small {
    width: 470px;
    background: url(../Images/bnds.gif) no-repeat center bottom / 100% 5px;
}

    .block.small.left {
        float: left;
        clear: none;
    }

    .block.small.right {
        float: right;
        clear: none;
    }

    .block.small .block_head {
        background: url(../Images/bheads.gif) no-repeat center top / 100% 54px;
    }

    .block.small .block_content {
        background: url(../Images/bbgs.gif) repeat-y center top / 100% 1px;
    }

        .block.small .block_content textarea {
            width: 414px;
        }

    .block.small.center {
        float: none;
        margin: 0 auto;
    }

        .block.small.center.login {
            margin-top: 100px;
        }

/*
**  FOOTER
*/

#footer {
    background: url(../Images/ft.gif) 0 0 repeat-x;
    padding: 10px 0 50px;
    font-size: 10px;
    color: #313131;
    clear: both;
    overflow: hidden;
}

    #footer a {
        color: #313131;
        text-decoration: underline;
    }

        #footer a:hover {
            color: #222;
            text-decoration: none;
        }

    #footer .left {
        float: left;
    }

    #footer .right {
        float: right;
        text-align: right;
    }

/*
**  Company Drilldown
*/

.drilldown {
    display: block;
    width: 374px;
    background: #fefefe url(../Images/sdd.jpg) no-repeat right center;
    border: 1px solid #999;
    font-family: "Lucida Grande", Verdana, sans-serif;
    font-size: 10px;
    color: #000;
    padding: 7px 43px 7px 7px;
    margin: 0;
    outline: none;
    vertical-align: middle;
    line-height: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .drilldown:hover {
        background-image: url(../Images/sdd_.jpg);
    }

.drilldown-data {
    display: none;
    position: absolute;
    width: 410px;
    background: #FFFFFF;
    border: 1px solid #999;
    height: 300px;
    overflow-y: scroll;
    z-index: 99999;
    padding: 7px;
    margin-top: 0;
}

    .drilldown-data.show {
        display: block;
    }

    .drilldown-data input.text {
        margin-bottom: 7px;
    }

    .drilldown-data a {
        display: block;
        font-size: 11px;
    }

        .drilldown-data a.level2 {
            padding-left: 20px;
            background: transparent url(../Images/Icons/arrow-curve-right.png) no-repeat 0 3px;
        }

        .drilldown-data a.level3 {
            padding-left: 40px;
            background: transparent url(../Images/Icons/arrow-small.png) no-repeat 24px 3px;
        }

        .drilldown-data a:hover {
            background-color: #fff3d0;
        }

/*
**  WATERMARK
*/
.watermark {
    color: #666 !important;
}

/*
**  USER PANEL
*/

#user-panel {
    position: fixed;
    top: 0;
    left: 0;
    border: solid 1px #999;
    border-top: 0;
    border-left: 0;
    -webkit-border-radius-bottomright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    background: #FFF;
    opacity: 0.90;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -moz-opacity: 0.90;
    -khtml-opacity: 0.90;
    padding: 2px 0;
    z-index: 99;
    line-height: normal;
}

    #user-panel p {
        padding: 4px 2px 4px 6px;
    }

        #user-panel p.border {
            border-top: solid 1px #999;
        }

    #user-panel a.resize {
        display: block;
        float: right;
        width: 16px;
        height: 16px;
        background: transparent url(../Images/Icons/resize.png) no-repeat right;
    }

/*
**  TABLE DATA
*/

.block .table-data-header {
    color: #000;
    margin-bottom: 0;
}

    .block .table-data-header tr th, .block .table-data-header tr td {
        border: 0;
    }

.block .table-data {
    color: #000;
    border: 1px solid #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .block .table-data tr th, .block .table-data tr td {
        border: 0;
    }

    .block .table-data tr.initiated td {
        background-color: #FFFFCF;
    }

    .block .table-data tr.submitted td {
        background-color: #FFCFD1;
    }

    .block .table-data tr.awarded td {
        background-color: #D2FFCF;
    }

    .block .table-data tr.completed td {
        background-color: #BFC6FF;
    }

    .block .table-data tr.closed td {
        background-color: #D3D4D2;
        color: #888;
    }

    .block .table-data tr.messages {
        font-size: 9px;
        padding: 2px 10px;
    }

        .block .table-data tr.messages td {
            border-top: 1px solid #BBB;
        }

/*
**  DASHBOARD
*/

.dashboard_block {
    float: left;
    padding: 0;
    margin: 10px;
    background: #F6F6F6;
    border: solid 1px #999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .dashboard_block h3 {
        background: #D1DADF;
        text-align: center;
        border-bottom: solid 1px #999;
    }

    .dashboard_block h1, .dashboard_block a, .dashboard_block p, .dashboard_block ul {
        padding: 5px;
    }

    .dashboard_block .show-more-links {
    }

        .dashboard_block .show-more-links a {
            font-weight: bold;
        }

/*
**  ACTIONS MENU
*/

.actions-menu li a.actions-menu-button {
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/actions.png) no-repeat 0 0;
    cursor: pointer;
}

.actions-menu ul {
    display: none;
    position: absolute;
    background: #000;
    width: 160px;
    margin-left: -156px;
    padding: 3px 5px;
    z-index: 99999;
    border: solid 1px #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.80;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.80;
}

    .actions-menu ul ul {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -khtml-opacity: 1;
    }

    .actions-menu ul.show {
        display: block;
    }

    .actions-menu ul li {
        padding: 2px 0;
    }

        .actions-menu ul li a {
            display: block;
            color: #FFF;
            background-color: transparent;
            font-size: 11px;
            padding: 6px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
        }

            .actions-menu ul li a:hover {
                color: #000;
                background-color: #B0B0B0;
            }

        .actions-menu ul li.inactive a {
            background-color: #222;
            color: #666;
            text-decoration: line-through;
        }

.actions-menu li a.edit {
    padding-left: 26px;
    background: transparent url(../Images/Icons/edit.png) no-repeat 4px center;
}

.actions-menu li a.submit {
    padding-left: 26px;
    background: transparent url(../Images/Icons/submit.png) no-repeat 4px center;
}

.actions-menu li a.award {
    padding-left: 26px;
    background: transparent url(../Images/Icons/award.png) no-repeat 4px center;
}

.actions-menu li a.complete {
    padding-left: 26px;
    background: transparent url(../Images/Icons/complete.png) no-repeat 4px center;
}

.actions-menu li a.close {
    padding-left: 26px;
    background: transparent url(../Images/Icons/close.png) no-repeat 4px center;
}

.actions-menu li a.delete {
    padding-left: 26px;
    background: transparent url(../Images/Icons/delete.png) no-repeat 4px center;
}

.actions-menu li a.messages {
    padding-left: 26px;
    background: transparent url(../Images/Icons/messages.png) no-repeat 4px center;
}

.actions-menu li a.activities {
    padding-left: 26px;
    background: transparent url(../Images/Icons/activities.png) no-repeat 4px center;
}

.actions-menu li a.documents {
    padding-left: 26px;
    background: transparent url(../Images/Icons/documents.png) no-repeat 4px center;
}

.actions-menu li a.product {
    padding-left: 26px;
    background: transparent url(../Images/Icons/product.png) no-repeat 4px center;
}

.actions-menu li a.products {
    padding-left: 26px;
    background: transparent url(../Images/Icons/products.png) no-repeat 4px center;
}

.actions-menu li a.download {
    padding-left: 26px;
    background: transparent url(../Images/Icons/download.png) no-repeat 4px center;
}

.actions-menu li a.wizard {
    padding-left: 26px;
    background: transparent url(../Images/Icons/wizard.png) no-repeat 4px center;
}

.actions-menu li a.cleanup {
    padding-left: 26px;
    background: transparent url(../Images/Icons/cleanup.png) no-repeat 4px center;
}

.actions-menu li a.reports {
    padding-left: 26px;
    background: transparent url(../Images/Icons/reports.png) no-repeat 4px center;
}

.actions-menu li a.professional-service {
    padding-left: 26px;
    background: transparent url(../Images/Icons/professional-service.png) no-repeat 4px center;
}

.actions-menu li a.professional-services {
    padding-left: 26px;
    background: transparent url(../Images/Icons/professional-services.png) no-repeat 4px center;
}

.actions-menu li a.wage-determination {
    padding-left: 26px;
    background: transparent url(../Images/Icons/wage-determination.png) no-repeat 4px center;
}

.actions-menu li a.wage-determination-rates {
    padding-left: 26px;
    background: transparent url(../Images/Icons/wage-determination-rates.png) no-repeat 4px center;
}

.actions-menu li a.wage-determinations {
    padding-left: 26px;
    background: transparent url(../Images/Icons/wage-determinations.png) no-repeat 4px center;
}

.actions-menu li a.occupations {
    padding-left: 26px;
    background: transparent url(../Images/Icons/occupations.png) no-repeat 4px center;
}

.actions-menu li a.markups {
    padding-left: 26px;
    background: transparent url(../Images/Icons/markups.png) no-repeat 4px center;
}

.actions-menu li a.add-message {
    padding-left: 26px;
    background: transparent url(../Images/Icons/add-message.png) no-repeat 4px center;
}

.actions-menu li a.search {
    padding-left: 26px;
    background: transparent url(../Images/Icons/search.png) no-repeat 4px center;
}

.actions-menu li a.add-reminder {
    padding-left: 26px;
    background: transparent url(../Images/Icons/add-reminder.png) no-repeat 4px center;
}

/*
**  TABLESORTER
*/

table.tablesorter thead tr .header {
    background-image: url(../Images/Tablesorter/bg.png);
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}

table.tablesorter thead tr .headerSortUp {
    background-image: url(../Images/Tablesorter/asc.png);
}

table.tablesorter thead tr .headerSortDown {
    background-image: url(../Images/Tablesorter/desc.png);
}

table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
    background-color: #DFDFDF;
}

/*
**  MASTERMIND-TIP
*/

.mastermind-tip span {
    display: none;
    background: #000;
    color: #FFF;
    padding: 10px;
    position: absolute;
    max-width: 400px;
    z-index: 99999;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    opacity: 0.80;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.80;
}

/*
**  REPORTS
*/

.report-item {
    margin-bottom: 20px;
}

    .report-item a {
        font-size: 10px;
    }

.report-details {
    font-size: 10px;
    padding-top: 4px;
}

.report-company {
    font-size: 22px;
    line-height: normal;
    padding: 4px 10px;
    background: #EFEFEF;
    border-bottom: 1px solid #CCC;
}

.report-contract {
    font-size: 16px;
    line-height: normal;
    padding: 4px 10px;
    background: #CFDFDF;
    border-bottom: 1px solid #CCC;
}

.report-project, .report-project-urgent {
    font-size: 12px;
    line-height: normal;
    padding: 4px 10px;
    background: #DFEFFF;
    border-bottom: 1px solid #CCC;
}

.report-project-urgent {
    background: #FFCFD1;
}

    .report-project img, .report-project-urgent img {
        vertical-align: text-top;
    }

.report-message {
    font-size: 10px;
    line-height: normal;
    padding: 4px 10px;
    background: #FFF;
    border-bottom: 1px solid #CCC;
}

.close-item {
    position: absolute;
    float: left;
    display: block;
    width: 16px;
    height: 16px;
    background: url(../Images/close.png) no-repeat 0 0;
}

/*
** MODAL
*/

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.modalBackground {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: #000000;
    opacity: 0.80;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.80;
}

.modalContainer {
    position: fixed;
    padding: 10px 10px 0 10px;
    background: #FFF;
    border: solid 3px #999;
    z-index: 10001;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/*
** MISC
*/

.token {
    float: left;
    padding: 4px;
    margin: 0 4px 4px 0;
    background: #e3e3e3;
    line-height: normal;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.error-box, .info-box {
    margin: 0 0 10px 0;
    padding: 5px 10px;
    font-size: 12px;
    border: solid 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.error-box {
    color: #D8000C;
    background: #FFBABA;
}

.info-box {
    color: #333;
    border-color: #CCC;
    background: #F5F5F5;
}

#agreements ul {
    overflow: auto;
    margin-bottom: 10px;
}

    #agreements ul li {
        float: left;
    }

        #agreements ul li a {
            display: block;
            padding: 6px 15px;
            background: #EAEAEA;
            color: #008EE8;
            font-size: 11px;
        }

        #agreements ul li.active a {
            padding: 4px 15px 6px 15px;
            background: #FFF;
            color: #222;
            border: solid 2px #E3E3E3;
            border-bottom: none;
        }

        #agreements ul li.nobg a {
            background: #FFF;
        }

        #agreements ul li a:hover {
            background: #E3E3E3;
        }

        #agreements ul li.active a:hover, #agreements ul li.nobg a:hover {
            background: #FFF;
        }


.AccordionH3 {
    margin-bottom: 0 !important;
}

    .AccordionH3.ui-accordion-header-active.ui-state-active {
        color: #fff;
    }

    .AccordionH3 .AccordionName, .AccordionName {
        float: left;
        margin-top: 2px;
        display: block;
        font-size: 12px;
    }
    /*.AccordionH3 .AccordionLink{margin-left:5px; float: right; display: block;}  */
    .AccordionH3 .AccordionBtn, .AccordionBtn {
        float: right
    }

        .AccordionH3 .AccordionBtn a {
            float: left;
            margin: 0 3px
        }

    .AccordionH3 .ui-accordion-header-icon {
        float: left;
        margin-top: 0
    }

.jqAccordion2.ui-accordion-content, .jqContractAccess.ui-accordion-content {
    padding: 1em !important
}

#accordion1.ui-accordion {
    margin-top: 5px;
}

.AccordionH3.ui-state-active, #accordion1 .ui-state-active {
    border: 1px solid #bbbbbb !important;
    background: #dcdcdc !important;
    color: #000 !important;
    border-bottom: 0 !important;
}

    .AccordionH3.ui-state-active .ui-accordion-header-icon, #accordion1 .ui-state-active .ui-accordion-header-icon {
        background-image: url(images/ui-icons_444444_256x240.png);
    }

#accordion1.ui-accordion .ui-accordion-header, #accordion2.ui-accordion .ui-accordion-header {
    font-size: 12px;
}

.rowMargin {
    margin: 3px 0;
}


/* Time Keeper style start */

body.OpenTimeKeeperPanel .TimeKeeperDiv {
    right: 0;
    transition: right .3s;
    box-shadow: 0px 3px 10px 5px rgba(0,0,0,0.3);
}

body.OpenTimeKeeperPanel .overlayPanel {
    display: block;
    transition: all 0.5s ease-in-out;
}

.overlayPanel {
    background: rgba(0,0,0,0.6);
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
    transition: all 0.5s ease-in-out;
}

.TimeKeeperDiv {
    background: #fff;
    width: 480px;
    right: -484px;
    height: 560px;
    min-height: 130px;
    position: fixed;
    top: 10%;
    /*border: 2px solid #999999;*/
    border-radius: 4px 0 0 4px;
    transition: right .3s;
    display: flex;
    flex-direction: column;
}

.TimeKeeperHeader {
    display: flex;
    height: 31px;
    overflow: hidden;
    background: url(../Images/bhead.gif) no-repeat center bottom / 110% 50px;
    /*background: #f6f6f6;*/
    flex-direction: row;
    padding: 8px;
    border-radius: 4px 0px 0 0;
    /*color: #fff;*/
}

.TimeKeeperContent {
    overflow: auto;
    height: calc(100% - 50px);
    /*width:100%;*/
    display: flex;
    flex-direction: row;
}

.TimeKeeperBtn {
    width: 35px;
    height: auto;
    padding: 0 0 5px 0;
    cursor: pointer;
    margin-left: -40px;
    text-align: center;
    background: #fff;
    border: 1px solid #999;
    position: absolute;
    right: calc(100% + 0px);
    top: calc(50% - 82px);
    border-radius: 4px 0 0 4px;
    border-right: 0;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

    .TimeKeeperBtn i {
        font-size: 20px;
        padding: 5px 0 5px 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 5px;
        width: 100%;
        background: #ccc;
    }

    .TimeKeeperBtn span {
        /*writing-mode: vertical-rl;
        text-orientation: upright;*/
        font-size: 16px;
        display: block;
        text-align: center;
        /*padding: 0 8px;*/
        padding: 0 9px;
        font-family: "Titillium999";
    }

.TimeKeeperDiv .TimeKeeperHeader .styled {
    height: 30px;
    /*margin: 3px 10px 0 0;*/
    width: auto;
    font-size: 12px;
}

.TimeKeeperDiv .TimeKeeperHeader .submit {
    height: 30px;
    margin: 0;
}

.TimeKeeperDiv .TimeKeeperHeader .PendingHours {
    font-size: 12px;
    line-height: 30px;
    /*padding-left:20px;*/
}

.TimeKeeperHeader.block {
    margin-bottom: 0;
}

.TimeKeeperHeader .submit, .TimeKeeperHeader .submit:hover {
    background: #2ecc71;
    border: 1px solid #2aa75f;
    color: #fff;
    text-shadow: none;
    cursor: pointer;
}

.TimeKeeperContent > div {
    padding: 10px 15px 15px 15px;
}
/*.TimeKeeperContent > div:last-child {
    padding-bottom: 50px;
}*/
.KeeperProjectH3 .KeeperProjectHeader, .KeeperProjectH3 .KeeperProjectCheckbox, .KeeperProjectH3 .KeeperProjectName, .KeeperProjectH3 .KeeperProjectExpand, .KeeperProjectH3 .KeeperProjectHours {
    float: left;
}

.KeeperProjectH3 .KeeperProjectHeader, .KeeperProjectH3 .KeeperProjectCheckbox, .KeeperProjectH3 .KeeperProjectName, .KeeperProjectH3 .KeeperProjectHours, .KeeperCompany .AccordionName, .KeeperContract .KeeperContractHeader .AccordionName {
    font-family: "Titillium999";
    font-size: 14px !important;
    text-transform: uppercase;
}

.KeeperProjectH3 .KeeperProjectHeader {
    width: calc(100% - 150px);
    display: flex;
}

.KeeperProjectH3 .KeeperProjectHours {
    padding-right: 10px;
    font-weight: normal;
}

.TimeKeeperContent input[type="checkbox"] {
    margin: 5px 5px 0 0;
    vertical-align: top;
}

.KeeperProjectCheckbox input[type="checkbox"] {
    margin: 4px 5px 0 0;
    vertical-align: top;
}

.KeeperProjectH3 .KeeperProjectBtns {
    float: right;
}

.blankBlock {
    width: 16px;
    height: 16px;
    float: left;
    padding: 0 2px;
}

.KeeperProjectBtns a {
    padding: 0 2px;
}

.KeeperProjectBtns a, .blankBlock, .KeeperProjectBtns .KeeperProjectHours {
    float: left;
}
.KeeperProjectExpand {
    padding: 2px 3px 4px 0px;
}
.KeeperProjectExpand, .KeeperContractExpand {
    cursor: pointer;
    font-size: 14px;
    float: left;
}
.KeeperContractExpand {
    padding: 4px 5px 4px 0px;
}
    /*.KeeperProjectExpand.Expand .fa-chevron-down {
    display: inline-block;
}
.KeeperProjectExpand.Expand .fa-chevron-up 
{
    display: none;
}
.KeeperProjectExpand.Collapse .fa-chevron-down {
    display: none;
}
.KeeperProjectExpand.Collapse .fa-chevron-up {
    display: inline-block;
}*/
    .KeeperCompany + .KeeperContract {
    padding-left: 23px;
}

.StartStopBtns {
    width: 47px;
    float: right;
}

.TimeKeeperContent {
    padding-bottom: 15px;
}

    .TimeKeeperContent hr {
        border-top: 1px solid #ddd;
        margin: 5px 0px 5px 0px;
        border-bottom: 0;
    }

        .TimeKeeperContent hr:last-child {
            height: 5px;
            border: transparent;
        }

.KeeperCompany + .KeeperContract .KeeperProject {
    padding-left: 20px;
}

    .KeeperCompany + .KeeperContract .KeeperProject .KeeperDateTimeKeeper {
        padding-left: 39px;
        font-size: 12px;
        line-height: 22px;
    }

.KeeperContract.KeeperContractAA, .KeeperContract.KeeperContractAA .KeeperProject {
    padding-left: 0;
}

.TimeKeeperContent a, .TimeKeeperContent a:hover, .KeeperProjectHeaderActive, .KeeperTimeHeaderActive, .NoteEmpty {
    color: #008ee8;
}

.NoteActive {
    color: green;
}

.NoteActive, .NoteEmpty {
    font-size: 16px;
    /*padding: 3px 0 0 3px;*/
    vertical-align: middle;
}

.TimeKeeperContent a[disabled] {
    color: #BBBBBB;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.KeeperDate {
    font-weight: 600;
}

.KeeperCompanyExpand {
    padding: 4px 5px 4px 0px;
    cursor: pointer;
    font-size: 14px;
    float: left;
    display: block;
}

    .KeeperContractExpand.Expand .accordion-plus, .KeeperProjectExpand.Expand .accordion-plus, .KeeperCompanyExpand.Expand .accordion-plus {
        display: inline-block;
    }

    .KeeperContractExpand.Expand .accordion-minus, .KeeperProjectExpand.Expand .accordion-minus, .KeeperCompanyExpand.Expand .accordion-minus {
        display: none;
    }

    .KeeperContractExpand.Collapse .accordion-plus, .KeeperProjectExpand.Collapse .accordion-plus, .KeeperCompanyExpand.Collapse .accordion-plus {
        display: none;
    }

    .KeeperContractExpand.Collapse .accordion-minus, .KeeperProjectExpand.Collapse .accordion-minus, .KeeperCompanyExpand.Collapse .accordion-minus {
        display: inline-block;
    }

.notesempty-button {
    display: inline-block;
    width: 16px;
    height: 17px;
    background: url(../Images/Icons/notes_empty.png) no-repeat 0px 0px;
}

.notesactive-button {
    display: inline-block;
    width: 16px;
    height: 17px;
    background: url(../Images/Icons/notes_active.png) no-repeat 0px 0px;
}

.play-button {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/PlayIcon.png) no-repeat 0px 0px;
}

.stop-button {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../Images/Icons/StopIcon.png) no-repeat 0px 0px;
}

.plus-button {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url(../Images/Icons/PlusIcon.png) no-repeat 0px 0px;
}

.accordion-plus {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/AccordionPlusIcon.png) no-repeat 0px 0px;
}

.accordion-minus {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/AccordionMinusIcon.png) no-repeat 0px 0px;
}


.delete-tk-button {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/RemoveIcon.png) no-repeat;
    vertical-align:middle;
}

.edit-tk-button {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/EditIcon.png) no-repeat;
    vertical-align: middle;
}

.submit-tk-button {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../Images/Icons/SubmitIcon.png) no-repeat 0px 0px;
    vertical-align: middle;
}
/* Time Keeper style end */

.modal_progress {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center_progress {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 30px;
    /*background-color: White;*/
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

    .center_progress img {
        height: 28px;
        width: 28px;
    }
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}