﻿@color-light: #FFFFFF;
@color-dark: #262626;
@color-acent: #1F497D;
@color-acent-light: #44ADFF;
@border-color: #BFBFBF;
@background-light: #D8D8D8;
@background-med: #595959;
@background-dark: #3F3F3F;
@font-size: 12px;
@font-family: helvetica, arial, sans-serif;
@font-regular: 'helvetica';
@font-lite: 'aller-light';
@font-bold: 'aller-bold';

/* fonts
----------------------------------*/

@font-face {
    font-family: 'helvetica';
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'helvetica';
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'helvetica';
    font-style: normal;
    font-weight: bold;
}

/* general
----------------------------------*/

* {
    margin: 0;
    padding: 0;
}

html, #Form {
    height: 100%;
}

body {
    /* background: @background-med; */
    color: @color-dark;
    font-family: @font-family;
    font-size: @font-size;
    height: 100%;
    position: relative;
}

select {
    background: url("../Images/Icons/pulldown.png") no-repeat right;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    min-width: 92px;
    text-overflow: '';
}

h1, h2, h3, h4, h5, h6 {
    font-family: @font-regular;
    font-weight: normal;
}

h1, h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
}

h3 {
    border-bottom-color: @background-dark;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    font-size: 22px;
    margin: 0 0 10px 0;
    padding: 0 10px 10px 10px;
}

h4 {
    font-size: 16px;

    &.clickable {
        cursor: pointer;
    }

    &.expanded-group::after {
        content: url('../Images/SortingAscDark.png');
        padding: 0 0 0 8px;
        vertical-align: middle;
    }

    &.collapsed-group::after {
        content: url('../Images/SortingDescDark.png');
        padding: 0 0 0 8px;
        vertical-align: middle;
    }
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

ul {
    list-style-position: inside;
}

.no_wrap_radios {
    width: 50px;
    table-layout: auto;
}

.pivot_grid_link {
    color: #5C7A93;
    text-decoration: none;

    &:hover, &:active {
        color: @color-dark;
        text-decoration: underline;
    }
}

a {
    color: @color-dark;
    text-decoration: underline;

    &:hover, &:active {
        text-decoration: none;
    }
}

img {
    border: none;
}

.GreenButton {
    border-top: 1px solid #381516;
    background: #2B6430;
    background: -webkit-gradient(linear, left top, left bottom, from(#48BD4A), to(#2B6430));
    background: -webkit-linear-gradient(top, #48BD4A, #2B6430);
    background: -moz-linear-gradient(top, #48BD4A, #2B6430);
    background: -ms-linear-gradient(top, #48BD4A, #2B6430);
    background: -o-linear-gradient(top, #48BD4A, #2B6430);
    padding: 5px 12px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #ffffff;
    font-size: 16px;
    font-family: Verdana, serif;
    text-decoration: none;
    vertical-align: middle;
}

.GreenButton:hover {
    border-top-color: #4FDB91;
    background: #257C44;
    color: #ffffff;
    cursor: pointer;
}

.GreenButton:active {
    border-top-color: #f21313;
    background: green;
    color: white;
}

.RedButton {
    border-top: 1px solid #381516;
    background: #2B6430;
    background: -webkit-linear-gradient(top, #A0123D, #6F1321);
    background: -webkit-linear-gradient(top, #A0123D, #6F1321);
    background: -moz-linear-gradient(top, #A0123D, #6F1321);
    background: -ms-linear-gradient(top, #A0123D, #6F1321);
    background: -o-linear-gradient(top, #A0123D, #6F1321);
    padding: 5px 12px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #ffffff;
    font-size: 16px;
    font-family: Verdana, serif;
    text-decoration: none;
    vertical-align: middle;
}

.RedButton:hover {
    border-top-color: #6F1321;
    background: #A0123D;
    color: #ffffff;
    cursor: pointer;
}

.RedButton:active {
    border-top-color: #A0123D;
    background: #6F1321;
    color: white;
}

.gradient-dialonal (@start, @end) {
    background: @start;
    background: -moz-linear-gradient(45deg, @start 0%, (@start + @end) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,@start), color-stop(100%, (@start + @end)));
    background: -webkit-linear-gradient(45deg, @start 0%, (@start + @end) 100%);
    background: -o-linear-gradient(45deg, @start 0%, (@start + @end) 100%);
    background: -ms-linear-gradient(45deg, @start 0%, (@start + @end) 100%);
    background: linear-gradient(45deg, @start 0%, (@start + @end) 100%);
}

.gradient-vertical (@start, @end) {
    background: @start;
    background: -moz-linear-gradient(top, @start 0%, @end 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @start), color-stop(100%, @end));
    background: -webkit-linear-gradient(top, @start 0%, @end 100%);
    background: -o-linear-gradient(top, @start 0%, @end 100%);
    background: -ms-linear-gradient(top, @start 0%, @end 100%);
    background: linear-gradient(to bottom, @start 0%, @end 100%);
}

.gradient-radial (@start, @end) {
    background: @start;
    background: -moz-radial-gradient(center, ellipse cover, @start 0%, @end 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, @start), color-stop(100%, @end));
    background: -webkit-radial-gradient(center, ellipse cover, @start 0%, @end 100%);
    background: -o-radial-gradient(center, ellipse cover, @start 0%, @end 100%);
    background: -ms-radial-gradient(center, ellipse cover, @start 0%, @end 100%);
    background: radial-gradient(ellipse at center, @start 0%, @end 100%);
    color: #FFFFFF;
}

.transition (@transition: all 0.3s ease-in-out) {
    -webkit-transition: @transition;
    -moz-transition: @transition;
    -o-transition: @transition;
    transition: @transition;
}

.radius (@radius: 5px) {
    -webkit-border-radius: @radius;
    -moz-border-radius: @radius;
    border-radius: @radius;
}

.background-size (@size) {
    -webkit-background-size: @size;
    -moz-background-size: @size;
    -o-background-size: @size;
    background-size: @size;
}

.box-shadow (@shadow) {
    -webkit-box-shadow: @shadow;
    -moz-box-shadow: @shadow;
    box-shadow: @shadow;
}

.text-shadow (@shadow) {
    -webkit-text-shadow: @shadow;
    -moz-text-shadow: @shadow;
    text-shadow: @shadow;
}

.transform (@type) {
    -webkit-transform: @type;
    -ms-transform: @type;
    -moz-transform: @type;
    -o-transform: @type;
    transform: @type;
}

.blue {
    .gradient-radial (#5977C0, #022A5D);
}

.hide {
    display: none;
}

.clear {
    clear: both;
}

.align-right {
    text-align: right;
}

/* animations
----------------------------------*/

@-webkit-keyframes pulse {
    0% {
        .transform (scale(1));
    }

    50% {
        .transform (scale(0.8));
    }

    100% {
        .transform (scale(1));
    }
}

@-moz-keyframes pulse {
    0% {
        .transform (scale(1));
    }

    50% {
        .transform (scale(0.8));
    }

    100% {
        .transform (scale(1));
    }
}

@keyframes pulse {
    0% {
        .transform (scale(1));
    }

    50% {
        .transform (scale(0.8));
    }

    100% {
        .transform (scale(1));
    }
}

/* error
----------------------------------*/

.error {
    padding: 100px 100px 20px 100px;

    h2 {
        font-size: 100px;
    }

    .message {
        font-family: @font-regular;
        font-size: @font-size + 2;
        padding: 20px;
        text-align: center;
    }

    .menu_error {
        list-style-type: none;
        text-align: center;
        margin: 20px 0 0 0;

        li {
            display: inline-block;
            margin: 0 10px 0 10px;

            a {
                display: block;
                height: 60px;
                width: 60px;

                img:hover {
                    -webkit-animation: pulse 1s linear infinite;
                    -moz-animation: pulse 1s linear infinite;
                    -o-animation: pulse 1s linear infinite;
                    animation: pulse 1s linear infinite;
                }
            }
        }
    }
}

/* login
----------------------------------*/

.login {
    background-color: rgba(0, 0, 0, 0.2);
    width: 500px;
    margin: 0 auto 0 auto;
    padding: 30px;
    top: 200px;
    position: relative;
    .radius;
    .box-shadow (0 0 6px #000000);

    h1 {
        margin-bottom: 20px;
        border-bottom: 1px solid @border-color;
        padding: 20px 0 20px 100px;
        /*background: url('../Images/LogoNew.png') no-repeat 20px center;*/
    }

    dl {
        dd {
            margin-bottom: 20px;
        }
    }

    label, .ui-toggle-switch {
        padding: 10px;
    }

    input[type="text"], input[type="password"] {
        padding: 10px;
        .radius;
    }

    .ui-state-active {
        color: #FFFFFF;
    }
}

/* form
----------------------------------*/

input[type="text"], input[type="password"], input[type="file"], textarea, select, .ui-combobox-input {
    background-color: #F2F2F2;
    border: 1px solid @border-color;
    color: @color-dark;
    font-family: @font-family;
    padding: 5px;

    &.tiny {
        width: 50px;
    }

    &.small {
        width: 100px;
    }

    &.medium {
        width: 200px;
    }

    &.large {
    }

    &[readonly] {
        background-color: transparent;
    }

    &[data-validation="invalid"], &[data-validation="failed"] {
        .box-shadow (0 0 5px #f00);
    }

    &[data-validation="success"] {
        .box-shadow (0 0 5px #1FD10F);
    }

    &[data-validation="warning"] {
        .box-shadow (0 0 5px #FFFF00);
    }

    &.invalid-input {
        box-shadow: 0 0 5px #FF0000;
        border: #f00 1px solid;
    }
}

input[type="radio"] {
    vertical-align: middle;
}

select[readonly] {
    background-color: #F2F2F2;
}

textarea {
    height: 120px;
    min-width: 175px;
}

.picture {
    display: inline-block;

    img {
        vertical-align: middle;
        max-height: 240px;
        max-width: 320px;
    }
}

div.group {
    display: inline-block;
    padding: 5px;

    input[type="checkbox"], input[type="radio"] {
        margin: 0 5px 0 0;
    }
}

.buttons {
    clear: both;
    text-align: right;
    border-top: 1px solid @border-color;
    margin: 20px 20px 10px 20px;
    padding: 10px 0 0 0;
}

.button {
    border: 1px solid darken(@color-acent, 15%);
    color: #FFFFFF !important;
    cursor: pointer;
    display: inline-block;
    padding: 6px 12px;
    margin: 0 0 0 5px;
    font-size: 12px;
    text-decoration: none;
    @a: 0 1px 0 lighten(@color-acent, 15%) inset, 0 1px 2px rgba(0, 0, 0, 0.2);
    .box-shadow (@a);
    .text-shadow (0 -1px 0 #1584DE);
    .gradient-vertical (@color-acent, darken(@color-acent, 15%));
    .radius;

    &:disabled {
        cursor: default;
        opacity: 0.2;
    }

    &:hover {
        background: @color-acent;
    }

    &:active {
        .gradient-vertical (darken(@color-acent, 15%), @color-acent);
    }
}

input {

    &.datepicker, &.datepicker-manual, &.autocomplete, &.autocomplete-manual, &.timepicker, &.timepicker-manual {
        background-repeat: no-repeat;
        background-position: 98% center;
        padding-right: 25px;
        .background-size (16px 16px);
    }

    &.datepicker, &.datepicker-manual {
        background-image: url('../Images/Icons/262626/Calendar.png');
        width: 70px;
        cursor: default;
    }

    &.autocomplete, &.autocomplete-manual {
        background-image: url('../Images/Icons/262626/Search.png');

        &.ui-autocomplete-loading {
            background-image: url('../Images/Icons/262626/Loading.gif');
        }
    }

    &.timepicker, &.timepicker-manual {
        background-image: url('../Images/Icons/262626/Clock.png');
        width: 70px;
        cursor: default;
    }

    &.search {
        background-image: url('../Images/Icons/262626/Search.png');
        .icon;
    }

    &.money {
        background-image: url('../Images/Icons/262626/Money.png');
        width: 50px;
        .icon;
    }

    &.phone {
        /*background-image: url('../Images/Icons/262626/Phone.png');*/
        width: 100px;
        .icon;
    }

    &.email {
        background-image: url('../Images/Icons/262626/Mail.png');
        .icon;
    }

    &.scancode {
        background-image: url('../Images/Icons/262626/Barcode.png');
        background-repeat: no-repeat;
        background-position: 5px center;
        padding-left: 25px;
        .background-size (16px 16px);
        .icon;
    }

    &.zipcode {
        width: 40px;
    }
}

.icon {
    background-repeat: no-repeat;
    background-position: 5px center;
    padding-left: 25px;
    .background-size (16px 16px);
}

.column-left {
    float: left;
    width: 50%;

    fieldset {
        margin-right: 8px;
    }
}

.column-right {
    float: right;
    width: 50%;

    fieldset {
        margin-left: 8px;
    }
}

.column-thirds {
    float: left;
    width: 33%;

    fieldset {
        margin-left: 8px;
    }
}

.graph-settings {
    width: 20%;

    label, .label {
        .label-reset;
    }
}

.graph-display {
    width: 80%;
}

.person-picture {
    width: 30%;

    label, .label {
        .label-reset;
    }
}

.person-details {
    width: 70%;
}

.legend-icon {
    background-position: 10px center;
    background-repeat: no-repeat;
    padding-left: 40px;
    height: 25px;
    line-height: 25px;
    .background-size (25px 25px);
}

fieldset {
    border: 1px solid @border-color;
    padding: 20px;
    margin: 0 0 20px 0;
    overflow: hidden;
    position: relative;
    .radius;

    legend {
        padding: 0 10px 0 10px;
        margin: 0 0 0 10px;
        font-size: @font-size + 2;
    }

    &.person-info legend {
        background-image: url('../Images/Icons/user/male-icon-128.png');
        .legend-icon;
    }

    &.contact-info legend {
        background-image: url('../Images/Icons/262626/Contact.png');
        .legend-icon;
    }

    &.mailing-address legend {
        background-image: url('../Images/Icons/262626/mail.png');
        .legend-icon;
    }

    &.billing-address legend {
        background-image: url('../Images/Icons/262626/Billing.png');
        .legend-icon;
    }

    &.membership-info legend {
        background-image: url('../Images/Icons/262626/Membership.png');
        .legend-icon;
    }

    &.billing-info legend {
        background-image: url('../Images/Icons/262626/Billing.png');
        .legend-icon;
    }

    &.settings legend {
        background-image: url('../Images/Icons/262626/Settings.png');
        .legend-icon;
    }

    &.file legend {
        background-image: url('../Images/Icons/262626/File.png');
        .legend-icon;
    }

    &.payment legend {
        background-image: url('../Images/Icons/262626/Payment.png');
        .legend-icon;
    }

    &.search legend {
        background-image: url('../Images/Icons/262626/Search.png');
        .legend-icon;
    }

    &.contract legend {
        background-image: url('../Images/Icons/262626/Contract.png');
        .legend-icon;
    }

    &.inventory legend {
        background-image: url('../Images/Icons/262626/Folder.png');
        .legend-icon;
    }

    &.task legend {
        background-image: url('../Images/Icons/262626/Edit.png');
        .legend-icon;
    }

    &.activity legend {
        background-image: url('../Images/Icons/262626/Edit.png');
        .legend-icon;
    }
}

dl {
    dt {
        font-weight: bold;
        margin: 0 0 10px 0;
    }

    dd {
        margin: 0 0 10px 0;
    }
}

#target dl {
    margin-top: 30px;
}

span.remove {
    background: url('../Images/Icons/262626/Trash.png');
    .icon-action;
}

span.edit {
    background: url('../Images/Icons/262626/Edit.png');
    .icon-action;
}

span.reset {
    background: url('../Images/Icons/262626/Refresh.png');
    .icon-action;
}

span.copy {
    background: url('../Images/Icons/262626/Plus.png');
    .icon-action;
}

span.complete {
    background: url('../Images/Icons/262626/Check.png');
    .icon-action;
}

span.posted {
    background: url('../Images/Icons/262626/Check.png');
    height: 15px;
    width: 15px;
    display: inline-block;
    margin: 0 0 0 10px;
    .background-size (15px 15px);
}

.icon-action {
    height: 15px;
    width: 15px;
    display: inline-block;
    margin: 0 0 0 10px;
    cursor: pointer;
    opacity: 0.5;
    .background-size (15px 15px);

    &:hover {
        opacity: 1;
    }
}

.WindowDisable {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    z-index: 50;
    height: 100%;
    width: 100%;
}

.BlackModal {
    display: none;
    width: 350px;
    height: 298px;
    background-color: black;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -150px;
    margin-left: -150px;
    z-index: 100;
    border: 5px solid green;
    border-radius: 25px;
}

.GrayModal {
    display: none;
    width: 350px;
    height: 298px;
    color: #11283F;
    background-color: #EBECED;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -150px;
    margin-left: -150px;
    z-index: 100;
    border: 5px solid #455F77;
    border-radius: 25px;
}

.GrayModal2 {
    display: none;
    //width: 350px;
    //height: 298px;
    color: #11283F;
    background-color: #EBECED;
    position: fixed;
    left: 30%;
    top: 30%;
    margin-top: -150px;
    margin-left: -150px;
    z-index: 100;
    border: 5px solid #455F77;
    border-radius: 25px;
}

label, .label {
    display: inline-block;
    width: 150px;
    text-align: left;
    vertical-align: top;
    padding: 5px;

    &::after {
        content: ":";
    }

    &[data-required="true"]::before {
        content: "*";
        color: red;
        margin: 0 6px 0 0;
    }

    &[title] {
        cursor: help;
    }
}

.label-center {
    text-align: center;
}

.label-spacer {
    display: inline-block;
    width: 150px;
    padding: 5px;
}

.label-reset, .label-reset label {
    display: inline-block;
    width: auto;
    text-align: left;
    vertical-align: middle;
    padding: 0 0 0 5px;

    &::after {
        content: none;
    }
}

div.group, .ui-toggle-switch {
    label {
        display: inline-block;
        width: auto;
        text-align: left;
        vertical-align: auto;
        padding: 0;

        &::after {
            content: none;
        }
    }
}

.capture {
    width: 100%;
    opacity: 0;
    padding: 0;
    margin: 0;
    background-color: #FFFFFF;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* table
----------------------------------*/

table.datatable, table.simple, table.datatable-group {
    width: 100%;
    border-collapse: collapse;

    thead {
        tr {
            th {
                background-color: @color-acent;
                color: @color-light;
                padding: 10px;
                text-align: left;
                font-size: @font-size + 2;
                font-weight: bold;

                &.center {
                    text-align: center;
                }
            }
        }
    }

    tbody {
        tr {
            td {
                border-bottom: 1px solid #FFFFFF;
                padding: 10px;

                &.center {
                    text-align: center;
                }

                &.group {
                    background-color: #366491;
                    color: #FFFFFF;
                    padding: 5px 10px 5px 10px;
                    cursor: pointer;

                    &.expanded-group::after {
                        content: url('../Images/SortingAsc.png');
                        padding: 0 0 0 8px;
                        vertical-align: middle;
                    }

                    &.collapsed-group::after {
                        content: url('../Images/SortingDesc.png');
                        padding: 0 0 0 8px;
                        vertical-align: middle;
                    }
                }
            }

            &:nth-child(odd) {
                background-color: #FFFFFF;
            }

            &:nth-child(even) {
                background-color: #DDDDDD;
            }

            &[data-row] {
                cursor: pointer;
            }

            &.selected td {
                -moz-box-shadow: inset 0 10px 10px -10px @color-acent, inset 0 -10px 10px -10px @color-acent;
                -webkit-box-shadow: inset 0 10px 10px -10px @color-acent, inset 0 -10px 10px -10px @color-acent;
                box-shadow: inset 0 10px 10px -10px @color-acent, inset 0 -10px 10px -10px @color-acent;
            }

            &.totals {
                font-weight: bold;
            }
        }
    }

    tfoot {
        tr {
            td {
                padding: 10px;
            }
        }
    }

    &.roles tbody {
        tr {
            td {
                padding: 5px;
                border: 1px solid #9E9E9E;
            }
        }
    }
}

table.member-info {
    width: 100%;
    min-width: 300px;
    border-collapse: collapse;
    margin-top: 10px;

    thead {
        tr {
            th {
                padding: 0 4px 2px 4px;
                text-align: left;
            }
        }
    }

    tbody {
        tr {
            td {
                padding: 2px;
            }
        }
    }
}

.stylechromecheckboxes {
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 2em;
    line-height: 1em;
}

/* data table
----------------------------------*/
.dataTables_wrapper {
    position: relative;
    padding: 40px 0 45px 0;
    overflow-x: auto;

    label {
        .label-reset;
    }

    .sorting, .sorting_asc, .sorting_desc {
        cursor: pointer;
    }

    .sorting_asc::after {
        content: url('../Images/SortingAsc.png');
        padding: 0 0 0 8px;
        vertical-align: middle;
    }

    .sorting_desc::after {
        content: url('../Images/SortingDesc.png');
        padding: 0 0 0 8px;
        vertical-align: middle;
    }

    .dataTables_length {
        position: absolute;
        top: 0;
        left: 0;
    }

    .dataTables_filter {
        position: absolute;
        top: 0;
        right: 0;
    }

    .dataTables_info {
        position: absolute;
        bottom: 10px;
        left: 0;
    }

    .dataTables_paginate {
        position: absolute;
        bottom: 10px;
        right: 0;

        &.paging_full_numbers {
            .paginate_button, .paginate_active {
                display: inline-block;
                text-decoration: none;
                padding: 3px 6px 3px 6px;
                font-size: 10px;
                margin: 0 0 0 4px;
                border: 1px solid @color-acent;
                color: @color-dark;
                cursor: pointer;
                .radius (4px);

                &:hover {
                    text-decoration: underline;
                }
            }

            .paginate_active {
                border-color: @color-acent;
                color: @color-light;
                .gradient-vertical (@color-acent, darken(@color-acent, 15%));
            }
        }
    }

    .ColVis {
        .ColVis_Button {
            background: transparent;
            outline: none;
            border: none;
            padding: 4px;
            cursor: pointer;
            font-size: @font-size - 1;
        }
    }
}

.ColVis_collection {
    background: #FFFFFF;
    border: 1px solid @border-color;

    .ColVis_Button {
        background: transparent;
        outline: none;
        border: none;
        padding: 4px 8px 4px 8px;
        cursor: pointer;
        font-size: @font-size - 1;
        text-align: left;

        span.ColVis_radio {
            margin-right: 5px;
        }
    }
}



/* header
----------------------------------*/
.ftheader {
    color: @color-light;
    padding: 16px 30px 0px 30px;
    position: fixed;
    top: -5px;
    left: 0;
    width: 100%;
    z-index: 5;
    .box-shadow (0 5px 8px rgba(0, 0, 0, 0.4));
    .gradient-vertical (@background-med, @background-dark);

    .logo, .logo:hover, .logo:active {
        /*background: url('../Images/LogoNew.png') no-repeat left center;*/
        color: @color-light;
        cursor: pointer;
        display: inline-block;
        font-family: @font-regular;
        font-size: 35px;
        padding: 0px 0px 1px 90px;
        height: 60px;
        line-height: 60px;
        text-decoration: none;
    }
}

div.RadScheduler .rsHeader, .rsDateWrap {
    z-index: 4 !important;
}

.rsAdvancedSubmitArea {
    margin-bottom: 15px !important;
    margin-top: 10px !important;
}

.menu_main {
    display: inline-block;
    list-style-type: none;
    margin: 0px 0px 20px -6px;
    font-weight: bold;

    li {
        float: left;
        position: relative;

        > a {
            color: @color-light;
            display: block;
            font-family: @font-family;
            font-size: @font-size + 4;
            margin: 0 10px 0 10px;
            padding: 0 10px 0 10px;
            text-decoration: none;
            .transition;
        }

        &:hover > a, &:active > a, &.current > a, &.active > a {
            color: @color-acent-light;
            text-decoration: none;
        }

        &[data-level="parent"] > a {
            background: url('../Images/Icons/262626/Next.png') no-repeat right center;
            .background-size (12px 12px);
        }

        ul {
            background: url('../Images/Tip.png') no-repeat 20px top;
            display: none;
            list-style-type: none;
            position: absolute;
            left: 20px;
            padding: 10px 0 0 0;
            top: 100%;
            .radius;

            li {
                background: #FFFFFF;
                float: none;
                border-left: 1px solid @background-dark;
                border-right: 1px solid @background-dark;
                width: 200px;

                &:first-child {
                    padding-top: 10px;
                    -webkit-border-radius: 3px 3px 0px 0px;
                    -moz-border-radius: 3px 3px 0px 0px;
                    border-radius: 3px 3px 0px 0px;
                }

                &:last-child {
                    border-bottom: 1px solid @background-dark;
                    padding-bottom: 10px;
                    -webkit-border-radius: 0px 0px 3px 3px;
                    -moz-border-radius: 0px 0px 3px 3px;
                    border-radius: 0px 0px 3px 3px;
                }

                a {
                    color: @color-dark;
                    display: block;
                    font-family: @font-family;
                    font-size: @font-size;
                    padding: 5px 10px 5px 10px;
                    text-decoration: none;
                    min-width: 120px;
                    .transition;
                }
            }

            &:hover > a, &:active > a, &.current > a, &.active > a {
                color: @color-acent-light;
                text-decoration: none;
            }

            ul {
                background: none;
                top: -15px;
                left: 97%;
                z-index: 2;

                li:first-child {
                    border-top: 1px solid @background-dark;
                }
            }
        }

        &:hover > ul {
            display: block;
        }
    }
}

.menu_main_side {
    display: block;
    list-style-type: none;
    margin: 0px 30px 20px -36px;
    font-weight: bold;
    font-size: 18px;

    li {
        float: left;
        position: relative;
        font-size: 18px;

        > a {
            color: @color-light;
            display: none;
            font-family: @font-family;
            font-size: 18px;
            margin: 0 30px 0 10px;
            padding: 0 30px 0 0px;
            text-decoration: none;
            .transition;
        }

        &:hover > a, &:active > a, &.current > a, &.active > a {
            color: @color-acent-light;
            text-decoration: none;
        }


        ul {
            display: block;
            list-style-type: none;
            position: absolute;
            left: 20px;
            padding: 10px 0 0 0;
            top: 100%;
            .radius;

            li {
                float: none;
                width: 200px;


                a {
                    color: #ffffff;
                    display: block;
                    font-family: @font-family;
                    font-size: 16px;
                    padding: 5px 0px 5px 10px;
                    text-decoration: none;
                    min-width: 200px;
                    .transition;
                }
            }

            &:hover > a, &:active > a, &.current > a, &.active > a {
                color: @color-acent-light;
                text-decoration: none;
            }

            ul {
                background: none;
                top: -15px;
                left: 97%;
                z-index: 2;

                li:first-child {
                    border-top: 1px solid @background-dark;
                }
            }
        }

        &:hover > ul {
            display: block;
        }
    }
}

.menu_top {
    position: absolute;
    top: 18px;
    right: 50px;
    overflow: hidden;
    list-style-type: none;

    li {
        float: left;

     /*   input[type="submit"], input[type="reset"], input[type="button"], button {
            text-indent: -9999px;
            border: none;
            cursor: pointer;
            background-color: transparent;
            background-position: center center;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            display: inline-block;
            .background-size (25px 25px);

            &.logout {
                background-image: url('../Images/Icons/FFFFFF/Logout.png');
            }

            &:hover {
                -webkit-animation: pulse 1s linear infinite;
                -moz-animation: pulse 1s linear infinite;
                -o-animation: pulse 1s linear infinite;
                animation: pulse 1s linear infinite;
            }
        }*/
    }
}

.iconSetting {
    float: right;
    display: inline-block;
    margin: -3px 2px 0px 13px;
    list-style: none;
}

.settings-menu ul {
    margin: 4px 7px 10px 10px;
    background: #FFFFFF;    
}

.settings-menu-gear {
    border-radius: 50%;
    transition: transform .8s ease-in-out;
}

.settings-menu-gear:hover {
    transform: scale(1.25);
    cursor: pointer;
}

.settings-menu li {
    background: #FFFFFF;
    float: none;
    border-left: 1px solid #3f3f3f;
    border-right: 1px solid #3f3f3f;
    width: 200px;
    list-style: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
}

.settings-menu li:last-child {
    border-bottom: 1px solid #3f3f3f;
    border-radius: 3px;
}

.settings-menu li:first-child {
    background: url('../Images/Tip.png') no-repeat bottom right 15px;
    border: none;
}

.settings-menu li a {
    text-decoration: none;
}

.settings-menu li a:hover {
    color: @color-acent-light;
}

.menu_sub_top {
    
    margin-top: 40px;
    margin-right: 50px;
    float: right;
}

.site_top {
    position: absolute;
    top: 40px;
    right: 184px;
    font-size: 16px;
}

/* sidebar
----------------------------------*/
.sidebar {
    color: @color-light;
    position: fixed;
    height: 100%;
    padding: 20px;
    width: 210px;
    z-index: 4;

    div .memberAccountWrapper {
        margin-top: 110px;

        .memberAccount {
            margin: 0 10px 10px 10px;
            font-weight: bold;

            a {
                color: @color-light;
                text-decoration: none;

                &:hover, &:active {
                    color: @color-acent-light;
                }
            }

            .accountDetails {
                font-size: .9rem;
                line-height: 1.6rem;
                margin-bottom: -60px;
            }

            .memberName {
                line-height: 1.3rem;
                font-size: 1.2143rem;
                margin-bottom: -7px;
            }
        }

        border-bottom: 1px solid #444;
    }
}

.menu_sub {
    list-style-type: none;
    margin-top: 13px;

    li {
        a {
            color: @color-light;
            display: block;
            font-family: @font-family;
            font-size: @font-size + 4;
            padding: 5px 10px 5px 10px;
            text-decoration: none;
            .transition;

            &:hover, &:active, &.current {
                color: @color-acent-light;
                text-decoration: none;
            }
        }
    }
}

/* sidebarmembersreport
----------------------------------*/
.sidebarmembersreport {
    background-color: @background-med;
    color: @color-light;
    position: fixed;
    right: 10px;
    left: -10px;
    top: 100px;
    float: right;
    height: 100%;
    padding: 20px;
    width: 70px;
    z-index: 4;

    h3 {
        margin-top: 110px;
        min-height: 170px;
        max-height: 210px;

        a {
            color: @color-light;
            text-decoration: none;

            &:hover, &:active {
                color: @color-acent-light;
            }
        }
    }
}

/* actions
----------------------------------*/
.actions {
    position: fixed;
    top: 200px;
    left: 0px;
    list-style-type: none;
    background-color: #F2F2F2;
    padding: 5px;
    .box-shadow (1px 1px 3px rgba(0, 0, 0, 0.10));
    z-index: 1;

    li {
        border-bottom: 1px solid @border-color;
        padding: 8px;

        &:last-child {
            border: none;
        }
        /*
        input[type="submit"], input[type="reset"], input[type="button"], button, .btn {
            text-indent: -9999px;
            border: none;
            cursor: pointer;
            background-color: transparent;
            background-position: center center;
            background-repeat: no-repeat;
            height: 30px;
            width: 30px;
            display: inline-block;
            .background-size (25px 25px);

            &.info {
                background-image: url('../Images/Icons/262626/Info.png');
            }

            &.add {
                background-image: url('../Images/Icons/262626/Plus.png');
            }

            &.edit {
                background-image: url('../Images/Icons/262626/Edit.png');
            }

            &.delete {
                background-image: url('../Images/Icons/262626/Trash.png');
            }

            &.save {
                background-image: url('../Images/Icons/262626/Save.png');
            }

            &.cancel {
                background-image: url('../Images/Icons/262626/Cancel.png');
            }

            &.percent {
                background-image: url('../Images/Icons/262626/Percent.png');
            }

            &.back {
                background-image: url('../Images/Icons/262626/Back.png');
            }

            &.next {
                background-image: url('../Images/Icons/262626/Next.png');
            }

            &.search {
                background-image: url('../Images/Icons/262626/Search.png');
            }

            &.payment {
                background-image: url('../Images/Icons/262626/Payment.png');
            }

            &.pdf {
                background-image: url('../Images/Icons/262626/FilePDF.png');
            }

            &.excel {
                background-image: url('../Images/Icons/262626/FileExcel.png');
            }

            &.dashboard {
                background-image: url('../Images/Icons/262626/Dashboard.png');
            }

            &.dashboardpdf {
                background-image: url('../Images/Icons/PDF2.png');
            }

            &.refresh {
                background-image: url('../Images/Icons/262626/Refresh.png');
            }

            &.settings {
                background-image: url('../Images/Icons/262626/Settings.png');
            }

            &.notes {
                background-image: url('../Images/Icons/262626/Notes.png');
            }

            &.barcode {
                background-image: url('../Images/Icons/262626/Barcode.png');
            }

            &.register {
                background-image: url('../Images/Icons/262626/Barcode.png');
            }

            &.print {
                background-image: url('../Images/Icons/262626/File.png');
            }

            &.file {
                background-image: url('../Images/Icons/262626/File.png');
            }

            &.history {
                background-image: url('../Images/Icons/262626/Folder.png');
            }

            &.account {
                background-image: url('../Images/Icons/user/male-icon-128.png');
            }

            &.employee {
                background-image: url('../Images/Icons/user/male-icon-128.png');
            }

            &:hover {
                -webkit-animation: pulse 1s linear infinite;
                -moz-animation: pulse 1s linear infinite;
                -o-animation: pulse 1s linear infinite;
                animation: pulse 1s linear infinite;
            }

            &[disabled] {
                opacity: 0.2;
            }
        }*/
    }
}

/* content
----------------------------------*/
.content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 130px 80px 30px 80px;
    overflow: scroll;
    .gradient-dialonal (#ffffff, #ffffff);
}

.loading {
    text-align: center;
    padding: 68px 10px 10px 10px;
    background: url('../Images/Icons/262626/Loading.gif') no-repeat center 10px;

    &::before {
        content: "Loading ...";
        font-size: @font-size + 2;
        font-family: @font-bold;
    }

    &.custom::before {
        content: attr(title);
    }
}

.box {
    padding: 20px;
    display: inline-block;
    border: 1px solid @border-color;
    margin: 0 10px 10px 0;
    min-width: 200px;
    position: relative;
    background-position: center 20px;
    background-repeat: no-repeat;
    .radius;
    .background-size (120px 120px);

    .button {
        margin-top: 150px;
    }

    &.member {
        background-image: url('../Images/Icons/262626/Membership.png');
    }

    &.employee {
        background-image: url('../Images/Icons/user/male-icon-128.png');
    }
}

ul.payments {
    list-style-type: none;
    overflow: hidden;

    li {
        float: left;
        text-align: center;

        label {
            .label-reset;
            display: block;
            cursor: pointer;
        }
    }
}

div.products, div.companies {
    overflow-y: scroll;
    max-height: 500px;

    .product, .company {
        border: 1px solid @border-color;
        cursor: pointer;
        float: left;
        margin: 0 5px 5px 0;
        padding: 10px;
        position: relative;
        width: 200px;
        min-height: 50px;
        .radius (3px);

        &:hover {
            border-color: @color-acent;
        }

        .title {
            display: block;
            font-weight: bold;
        }

        .upc {
            display: block;
            font-size: @font-size - 1;
            color: #888888;
            padding: 2px;
        }

        .address, .phone {
            display: block;
            font-size: @font-size - 1;
        }

        .price {
            position: absolute;
            right: 10px;
            bottom: 10px;
        }
    }
}

.steps {
    list-style-type: none;
    overflow: hidden;
    margin: 0 auto 20px auto;
    width: 80%;

    li {
        float: left;
        font-size: @font-size - 2;
        width: 20%;
        height: 35px;
        text-align: center;
        position: relative;

        &::after {
            background: url('../Images/Icons/262626/Step.png') no-repeat center bottom;
            height: 15px;
            display: block;
            margin: 0 0 0 -15px;
            width: 30px;
            content: " ";
            position: absolute;
            bottom: 0;
            left: 50%;
            .background-size (15px 15px);
        }

        &.completed::after {
            background-image: url('../Images/Icons/262626/StepCompleted.png');
        }

        &.current {
            color: @color-acent;
        }

        span {
            border-bottom: 1px solid @border-color;
            display: block;
            padding: 0 0 14px 0;
        }
    }

    &.six li {
        width: 15%;
    }
}

.paragraph {
    margin: 0 0 15px 0;
}

.checkin {
    position: relative;
    text-align: center;

    img[data-id="person-picture"] {
        height: 150px;
        width: 150px;
    }

    img[data-id="person-status"] {
        height: 50px;
        width: 50px;
        position: absolute;
        top: 100px;
        left: 155px;
    }
}

.kid, .kid-guardian, .kid-kid {
    float: left;
    position: relative;
    margin: 0 20px 20px 0;
    height: 128px;
    width: 128px;
    border: 1px solid @border-color;

    &.clickable {
        cursor: pointer;

        &:hover {
            border-color: #000000;
        }
    }

    &.not-allowed {
        opacity: 0.7;
    }

    img.error {
        height: 30px;
        width: 30px;
        position: absolute;
        right: 5px;
        top: 5px;
        padding: 0;
    }

    img {
        max-height: 100%;
        max-width: 100%;
    }

    span {
        text-align: center;
        color: #FFFFFF;
        padding: 5px 0 5px 0;
        background-color: rgba(0,0,0,0.8);
        position: absolute;
        bottom: -25px;
        left: 0;
        display: block;
        width: 100%;
        overflow: hidden;
    }
}

.kid-guardian, .kid-kid {
    float: none;
    display: inline-block;
    margin-bottom: 0;
}

.kid-header {
    border-bottom: 1px solid #000000;
    padding: 10px;
    margin-bottom: 20px;

    span.count {
        font-size: 38px;
        font-weight: bold;
        vertical-align: middle;
        margin-right: 5px;
    }

    p {
        font-size: 15px;
        display: inline-block;
    }
}

.kid-guardians, .kid-kids {
    clear: both;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px;
    border-top: 1px solid @border-color;
    border-bottom: 1px solid @border-color;
}

.past-due {
    font-weight: bold;
    color: red;
}

/* compact
----------------------------------*/

.compact {
    background-color: #E3E3E3;

    fieldset {
        border: none;
        padding: 0;
        margin: 0 0 0px 0;
        /*margin: 0 0 20px 0;*/

        legend {
            display: none;
        }
    }

    dl {
        dd {
            margin-bottom: 2px;
        }
    }
}

/* jQuery overrides
----------------------------------*/
.ui-tabs, .ui-tabs .ui-tabs-nav, .ui-tabs-panel {
    overflow: hidden;
}

.ui-toggle-switch label.ui-state-active {
    border: none;
    background: none;
}

.ui-toggle-switch {
    padding: 5px;
}

.ui-autocomplete {
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 3;

    .ui-dialog & {
        z-index: auto !important;
    }
}

.ui-datepicker {
    z-index: 3;

    td span.ui-state-default {
        display: block;
        text-align: center;
        line-height: 30px;
        height: 30px;
        width: 30px;
    }
}

.ui-combobox-toggle {
    vertical-align: bottom;
    padding: 8px 0 8px 0 !important;
}

.ui-slider .ui-slider-handle {
    text-decoration: none;
    text-align: center;

    a {
        z-index: 1;
    }

    b {
        position: absolute;
        top: -15px;
        left: 5px;
    }
}

.column {
    overflow: hidden;
    padding-bottom: 100px;
}

.portlet {
    margin: 0 20px 20px 0;
    float: left;
}

.portlet-header {
    padding: 10px;
    min-height: 16px;
}

.portlet-report-criteria {
    overflow: hidden;
    padding: 20px;
    width: 85%;
    display: none;
    border: 1px solid @border-color;
    border-top: none;
    margin: 0 auto 0 auto;
    .box-shadow (0px 0px 10px rgba(0, 0, 0, 0.10));

    .label {
        padding: 0;
        width: 80px;
    }

    .left, .right {
        float: left;
        width: 50%;
    }
}

.portlet-header .ui-icon {
    float: right;
}

.portlet-content {
    padding: 20px;
}

.ui-sortable-placeholder {
    background: transparent;
    width: 390px;
    border: 1px dotted @border-color;
    visibility: visible !important;
    height: 50px !important;
}

.ui-sortable-placeholder * {
    visibility: hidden;
}

table.mtz-monthpicker {
    width: 100%;
}

.DTTT_Print .content {
    padding: 0;

    .graph-display {
        width: 100%;
    }

    .column-right {
        float: none;
        width: 100%;
    }
}


/* compact
----------------------------------*/

@media only screen and (max-width : 1480px) {
    .content {
        fieldset {
            label, .label {
                text-align: left;
                vertical-align: middle;
                padding: 5px 0 0 0;

                &::after {
                    content: ":";
                }

                &[data-required="true"]::before {
                    content: "*";
                    color: red;
                    margin: 0 6px 0 0;
                }

                &[title] {
                    cursor: help;
                }
            }
        }
    }

    .table-overflow {
        overflow-x: scroll;
    }
}

/* dev notes
----------------------------------*/

.dev-notes {
    position: fixed;
    background: #FAFAFA;
    border-top: 1px solid #262626;
    bottom: 0;
    left: 0;
    width: 100%;

    .dev-inner {
        padding: 20px;
        height: 150px;
        overflow: auto;

        h4 {
            margin-top: 20px;

            &:first-child {
                margin-top: 0;
            }
        }

        ul, ol {
            margin-left: 40px;
        }
    }
}


/* ribbon
----------------------------------------------------------------------------------------------------*/
.ribbon {
    position: fixed;
    overflow: hidden;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    z-index: 999;
}

.ribbon div {
    position: relative;
    top: 80px;
    left: -6px;
    padding: 3px 0 3px 0;
    width: 214px;
    text-align: center;
    color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 8px #000000;
    -moz-box-shadow: 0px 0px 8px #000000;
    box-shadow: 0px 0px 8px #000000;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.ribbon div span {
    display: block;
    font-size: 13px;
    padding: 10px 0 10px 0;
    /* border-top: 1px dashed rgba(255, 255, 255, 0.6); */
    /* border-bottom: 1px dashed rgba(255, 255, 255, 0.6); */
    -webkit-text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.ribbon.dev div {
    background: #cc4242;
    background: -moz-linear-gradient(top, #cc4242 0%, #a20000 20%, #a20000 80%, #cc4242 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cc4242), color-stop(20%, #a20000), color-stop(80%, #a20000), color-stop(100%, #cc4242));
    background: -webkit-linear-gradient(top, #cc4242 0%, #a20000 20%, #a20000 80%, #cc4242 100%);
    background: -o-linear-gradient(top, #cc4242 0%, #a20000 20%, #a20000 80%, #cc4242 100%);
    background: -ms-linear-gradient(top, #cc4242 0%, #a20000 20%, #a20000 80%, #cc4242 100%);
    background: linear-gradient(to bottom, #cc4242 0%, #a20000 20%, #a20000 80%, #cc4242 100%);
}

.ribbon div {
    background: #183d84;
    background: -moz-linear-gradient(top, #183d84 0%, #0165c5 20%, #0165c5 80%, #183d84 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #183d84), color-stop(20%, #0165c5), color-stop(80%, #0165c5), color-stop(100%, #183d84));
    background: -webkit-linear-gradient(top, #183d84 0%, #0165c5 20%, #0165c5 80%, #183d84 100%);
    background: -o-linear-gradient(top, #183d84 0%, #0165c5 20%, #0165c5 80%, #183d84 100%);
    background: -ms-linear-gradient(top, #183d84 0%, #0165c5 20%, #0165c5 80%, #183d84 100%);
    background: linear-gradient(to bottom, #841818 0%, #C50101 20%, #C50101 80%, #841818 100%);
}

.ribbon.prod div {
    background: #579041;
    background: -moz-linear-gradient(top, #579041 0%, #9ac444 20%, #9ac444 80%, #579041 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #579041), color-stop(20%, #9ac444), color-stop(80%, #9ac444), color-stop(100%, #579041));
    background: -webkit-linear-gradient(top, #579041 0%, #9ac444 20%, #9ac444 80%, #579041 100%);
    background: -o-linear-gradient(top, #579041 0%, #9ac444 20%, #9ac444 80%, #579041 100%);
    background: -ms-linear-gradient(top, #579041 0%, #9ac444 20%, #9ac444 80%, #579041 100%);
    background: linear-gradient(to bottom, #579041 0%, #9ac444 20%, #9ac444 80%, #579041 100%);
}

div.buttonrow {
    margin-bottom: 4px;

    b {
        margin-right: 7px;
    }

    .RadComboBox {
        margin-right: 14px;
    }

    .RadDropDownList {
        margin-right: 14px;
    }

    #ImageButton1 {
        margin-left: 10px;
    }
}





div.dt-buttons {
    position: relative;
    float: right;
    margin-bottom: 1em;
}

button.dt-button,
div.dt-button,
a.dt-button {
    position: relative;
    float: left;
    margin-right: 3px;
    padding: 5px 8px;
    border: 1px solid #999;
    text-decoration: none;
    cursor: pointer;
    *cursor: hand;
    font-size: 0.88em;
    color: black !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 1px 3px #ccc;
    -moz-box-shadow: 1px 1px 3px #ccc;
    -ms-box-shadow: 1px 1px 3px #ccc;
    -o-box-shadow: 1px 1px 3px #ccc;
    box-shadow: 1px 1px 3px #ccc;
    /* Generated by http://www.colorzilla.com/gradient-editor/ */
    background: #ffffff; /* Old browsers */
    background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
    background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
    background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
}


/* Buttons are cunning border-box sizing - we can't just use that for A and DIV due to IE6/7 */
button.dt-button {
    height: 30px;
    padding: 3px 8px;
}

.dt-button embed {
    outline: none;
}

button.dt-button:hover,
div.dt-button:hover,
a.dt-button:hover {
    border: 1px solid #666;
    text-decoration: none !important;
    -webkit-box-shadow: 1px 1px 3px #999;
    -moz-box-shadow: 1px 1px 3px #999;
    -ms-box-shadow: 1px 1px 3px #999;
    -o-box-shadow: 1px 1px 3px #999;
    box-shadow: 1px 1px 3px #999;
    background: #f3f3f3; /* Old browsers */
    background: -webkit-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* FF3.6+ */
    background: -ms-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* IE10+ */
    background: -o-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Opera 11.10+ */
    background: linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
}

button.DTTT_disabled,
div.DTTT_disabled,
a.DTTT_disabled {
    color: #999;
    border: 1px solid #d0d0d0;
    background: #ffffff; /* Old browsers */
    background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* IE10+ */
    background: -o-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Opera 11.10+ */
    background: linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
}



