﻿/* Height fix */
html, body {
    height: 100%;
}

table {
    width: 100%;
    border-collapse: separate;
}

body {
    font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    min-width: 1024px;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    background-color: #EAF1F5;
    -webkit-overflow-scrolling: touch;
}

*, *:before, *:after {
    box-sizing: border-box;
}

a {
    color: #1D93CE;
    outline: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    color: #12648C;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 19px;
}

option:disabled, option[disabled], option[disabled="disabled"] {
    display: none;
}

[draggable=true] {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
}

/* WISTIA EMBED STYLES */
.wistia_socialbar a:before {
    background-image: none !important;
}
/* END WISTIA EMBED STYLES */





.align_right {
    text-align: right;
}

.remove_cursor_pointer {
    cursor: default;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.outer_content {
    width: 100%;
    text-align: left;
    margin: auto;
    position: relative;
}

.flex_container {
    display: -webkit-box; /* Safari */
    display: -moz-box; /* Firefox 21- */
    display: -ms-flexbox; /* IE 10+ */
    display: -webkit-flex; /* Chrome */
    display: flex; /* Standard (Firefox 22+) */
}

.safari_mobile_flex_item {
    width: 100%;
}

.flex_sizing_column {
    -webkit-box-ordinal-group: 1; /* Safari */
    -moz-box-ordinal-group: 1; /* Firefox 21- */
    -webkit-box-flex: 1.0; /* Safari and Chrome */
    -ms-flex: 1 0 auto; /* IE 10+ */
    flex: 1 1 auto; /* Standard (Firefox 22+) */
    /*padding-top: 80px;*/
}

.flex_fixed_column {
    -webkit-box-ordinal-group: 1; /* Safari */
    -moz-box-ordinal-group: 1; /* Firefox 21- */
    -webkit-box-flex: 0.0; /* Safari and Chrome */
    -ms-flex: 0 0 1140px; /* IE 10+ */
    flex: 0 0 1140px; /* Standard (Firefox 22+) */
    width: 1140px; /* Safari does not pickup the width */
}

.inner_content {
    min-height: 400px;
    width: 100%;
    display: table;
}

.thirty_content_left {
    width: 30%;
    float: left;
}

.seventy_content_right {
    width: 70%;
    float: right;
}

.seventy_content_left {
    width: 70%;
    float: left;
}

.full_content {
    width: 100%;
}

.half_content_left {
    width: 50%;
    float: left;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.half_content_right {
    width: 50%;
    float: right;
    padding: 0 0 0 10px;
    box-sizing: border-box;
}

.tile_row {
    margin: 20px 0 20px 20px;
}

    .tile_row:after {
        clear: both;
    }

    .tile_row:before, .tile_row:after {
        content: " ";
        display: table;
    }

.tile {
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: #fff;
    padding: 20px 20px 20px 85px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(20, 20, 20, 0.25);
    position: relative;
}

.tile_no_icon {
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(20, 20, 20, 0.25);
    position: relative;
}

    .tile_no_icon h3 {
        margin-top: 0;
    }

.tile_icon {
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    position: absolute;
    left: 20px;
    top: 20px;
}

.tile h3 {
    margin: 0 0 20px;
    color: #3f3f3f;
    font-family: "din_mediumregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tile a, .tile_no_icon a {
    text-decoration: none;
}

    .tile a:before, .tile_no_icon a:before {
        background: url(images/arrow-blue.png) no-repeat;
        content: '';
        height: 14px;
        width: 13px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }

.tile:hover, .tile_no_icon:hover {
    box-shadow: 0 3px 4px rgba(20, 20, 20, 0.3);
}

    .tile:hover .tile_icon {
    }

.content_activation {
    background: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(20, 20, 20, 0.25);
    position: relative;
}

.activate_button_box {
    padding: 12px 0 0 0;
    text-align: right;
}

.activate_button {
    background-color: #1d92cb;
    background-image: -webkit-linear-gradient(#1d92cb, #1775a5);
    background-image: linear-gradient(#1d92cb, #1775a5);
    border: none;
    color: #fff;
    border-radius: 5px;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

    .activate_button:hover {
        background-image: -webkit-linear-gradient(#22a1df, #1775a5) !important;
        background-image: linear-gradient(#22a1df, #1775a5) !important;
        color: #fff !important;
    }

.content_block {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(20, 20, 20, 0.25);
    padding: 20px;
    margin: 30px 0;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.content_main {
    clear: both;
}

/* MENU */
header {
    background: none repeat scroll 0% 0% #FFF;
    box-shadow: 0px 3px 2px rgba(20, 20, 20, 0.2);
    position: relative;
    height: 111px;
    box-sizing: border-box;
}

.header .container {
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}

.logo {
    background-image: url('images/logo_infine.png');
    background-repeat: no-repeat;
    height: 90px;
    width: 157px;
    float: left;
    z-index: 901;
    position: relative;
    font: 0px/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0px none;
    box-sizing: border-box;
    top: 10px;
}

nav {
    z-index: 900;
    text-align: right;
    padding-top: 60px;
    box-sizing: border-box;
}

    nav ul {
        padding: 0px;
        margin: 0px;
        list-style: outside none none;
        box-sizing: border-box;
    }

        nav ul li {
            position: relative;
            display: inline-block;
            padding: 0px 18px;
            height: 44px;
            line-height: 44px;
            box-sizing: border-box;
        }

            nav ul li:last-child {
                padding-right: 0px;
            }

    nav > ul > li:first-child:before {
        display: none;
    }

    nav > ul > li:before {
        content: "";
        width: 32px;
        height: 1px;
        background-color: #E7E7E7;
        transform: rotate(110deg);
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        left: -16px;
        top: 50%;
        margin-top: 0px;
    }

    nav > ul > li > a {
        font-size: 17px;
    }

    nav ul ul {
        transition: opacity 0.3s ease-out 0s;
        position: absolute;
        top: 100%;
        margin-top: 16px;
        left: 0px;
        opacity: 0;
        visibility: hidden;
        background: none repeat scroll 0% 0% #EEE;
        z-index: 901;
        box-shadow: 0px 1px 3px rgba(20, 20, 20, 0.25);
    }

        nav ul ul:before {
            content: "";
            position: absolute;
            bottom: 100%;
            left: 0px;
            width: 100%;
            height: 18px;
        }

        nav ul ul li {
            line-height: 16px;
            height: auto;
            padding: 12px 18px;
            display: block;
            white-space: nowrap;
        }

.main_menu_item {
    color: #1D93CE;
    text-decoration: none;
    font-size: 16px;
}

    .main_menu_item:hover {
        color: #14638b;
    }


.dropdown > a:after {
    content: "";
    background: url('../img/arrow-down.png') no-repeat scroll 0% 0% transparent;
    display: inline-block;
    width: 11px;
    height: 6px;
    margin-left: 10px;
}
/* END MENU */

/* HEADER */
.header_gray_container {
    float: right;
    height: 0;
    border-bottom: 32px solid #EEE;
    border-left: 8px solid transparent;
    z-index: 901;
    font-size: 13px;
}

.header__logout {
    top: 0px;
    right: 15px;
    text-decoration: none;
    display: inline-block;
    padding: 0px 15px 0 12px;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    color: #000;
}

    .header__logout:hover {
        text-decoration: underline;
    }

.header__tel {
    top: 0px;
    color: #3F3F3F;
    right: 15px;
    text-decoration: none;
    display: inline-block;
    padding: 0px 12px;
    height: 32px;
    line-height: 32px;
}

    .header__tel:after {
        content: "";
        width: 0px;
        height: 0px;
        border-bottom: 32px solid #EEE;
        border-left: 8px solid transparent;
        position: absolute;
        left: -8px;
        top: 0px;
    }

    .header__tel:before {
        content: "";
        width: 15px;
        height: 15px;
        display: inline-block;
        background: url('images/icon-tel.png') no-repeat scroll 0% 0% transparent;
        margin: 3px 7px -2px 0px;
    }

    .header__tel:hover {
        text-decoration: none;
    }
/* END HEADER*/

/* CONTENT HEADER */
.content_header {
    position: relative;
    color: #1D93CE;
    height: 33px;
    margin-bottom: 25px;
    padding: 0;
    width: 100%;
}

.content_header_admin {
    position: relative;
    color: #1D93CE;
    height: 33px;
    margin-bottom: 25px;
    padding: 0;
    text-align: right;
    width: 100%;
}

.content_header_title {
    font-weight: bold;
    float: left;
    background-position: 0 center;
    height: 32px;
    padding-left: 40px;
}

.content_header_items {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    padding-bottom: 5px;
}

.header_item_right {
    background-color: #1a85bb;
    border-radius: 5px;
    color: #FFF;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    float: right;
    margin: 5px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border: 2px solid #1d92cd;
}

.create_button:hover, .create_button:focus {
    background-color: #1772a0;
    text-decoration: none;
    -webkit-transition: background-position .1s linear;
    -moz-transition: background-position .1s linear;
    -o-transition: background-position .1s linear;
    transition: background-position .1s linear;
}

/* END CONTENT HEADER*/

/* Dialog */
.dialog {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 9999;
}

.dialog_outer {
    position: fixed;
    background-color: #FFFFFF;
    border-radius: 6px;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px 5px #888;
    max-width: 33%;
}

.dialog_content {
    padding: 30px 30px 30px 30px;
    position: relative;
}

.dialog_button_box {
    height: 40px;
    background-color: #FFFFFF;
    border-top: 1px solid #aaa9a9;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    position: relative;
    padding: 0 0 0 10px;
}

.dialog_button {
    background-color: #1d92cb;
    background-image: -webkit-linear-gradient(#1d92cb, #1775a5);
    background-image: linear-gradient(#1d92cb, #1775a5);
    border-radius: 5px;
    color: #FFF;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    float: right;
    margin: 5px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border: 2px solid #fff;
}

    .dialog_button:focus {
        outline: 0;
        border: 2px solid #aaa9a9;
    }

/* POPUP */
.popup {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 998;
}

.popup_mask {
    background-color: #000000;
    filter: alpha(opacity=30);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.popup_outer {
    position: fixed;
    background-color: #FFF;
    border-radius: 6px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

.popup_button_box {
    padding: 12px;
    text-align: right;
    border-top: 1px solid #E5E5E5;
    height: 60px;
}

.popup_button {
    background-color: #1d92cd;
    border-color: #1d92cd;
    color: #fff;
    background-color: #1a85bb;
    background-image: -moz-linear-gradient(top,#1d92cd,#1772a0);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#1d92cd),to(#1772a0));
    background-image: -webkit-linear-gradient(top,#1d92cd,#1772a0);
    background-image: -o-linear-gradient(top,#1d92cd,#1772a0);
    background-image: linear-gradient(to bottom,#1d92cd,#1772a0);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1d92cd', endColorstr='#ff1672a0', GradientType=0);
    border-color: #1772a0 #1772a0 #0d425d;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-radius: 5px;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
}

.popup_button_cancel {
    float: right;
    width: 22px;
    height: 22px;
    margin: 10px 10px 0 0;
    cursor: pointer;
}

.popup_button_left {
    float: left;
    background-color: #f7f8f9;
    background-image: -webkit-linear-gradient(#f7f8f9, #ecf2f5);
    background-image: linear-gradient(#f7f8f9, #ecf2f5);
    border: 1px solid #e3eaed;
    color: #3f3f3f;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .popup_button_left:hover, .popup_button_left:focus {
        color:#14638b;
        border:1px solid #d3dee3
    }

.popup_button_gray_color {
    background-color: #606060;
}

.popup_button_right {
    float: right;
}

    .popup_button_right:hover {
        background-color: #1772a0;
        text-decoration: none;
        background-position: 0 -38px;
        -webkit-transition: background-position .1s linear;
        -moz-transition: background-position .1s linear;
        -o-transition: background-position .1s linear;
        transition: background-position .1s linear;
    }

.popup_caption_outer {
    background-color: #EAF1F5;
    background-image: linear-gradient(#EAF1F5, #DEE7EC);
    background-clip: padding-box;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px 6px 0px 0px;
    border-bottom: 1px solid #BACCD7;
    height: 60px;
    padding: 12px;
}

.popup_caption_outer_admin {
    border-bottom: 2px solid #FF0E0E;
    color: #1D93CE;
    background-color: #f0f5f6;
    background-position: 10px center;
    height: 42px;
}

.popup-cancel {
    background-image: url('images/icon_popup_close.png');
    background-repeat: no-repeat;
}

.popup_caption {
    margin: 0;
    line-height: 36px;
    float: left;
}

.popup_content {
    margin: 10px 10px 10px 10px;
    overflow: auto;
}

    .popup_content table {
        width: 100%;
    }

.popup_grid_filter {
    position: relative;
    float: right;
    margin: 0 0 6px 0;
    display: block;
    clear: both;
}
/* END POPUP */

/* Wait while loading dialog */
.wait_while_loading_dialog {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
}

.wait_while_loading_mask {
    background-color: none;
    filter: alpha(opacity=0);
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.wait_while_loading_form {
    width: 200px;
    height: 100px;
    position: fixed;
    border: 1px solid #c0c0c0;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
    padding: 20px 0 0 0;
    z-index: 1000;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: 25px center;
    background-image: url('images/preload.gif');
    box-shadow: 0 0 5px #888;
}

/* Dropdown dialog */
.dropdown_dialog {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
}

.dropdown_dialog_mask {
    background-color: #000000;
    filter: alpha(opacity=5);
    opacity: 0.05;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.dropdown_dialog_outer {
    position: fixed;
    background-color: #FFFFFF;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px 5px #888;
}

.wrapper_dropdown {
    margin: 8px 15px 5px 5px;
    width: 300px;
}

.dropdown_table {
    width: 300px;
}

    .dropdown_table .ellipsis_text {
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 150px;
        white-space: nowrap;
    }

.dropdown_dialog_button_box {
    height: 40px;
    background-color: #FFFFFF;
    border-top: 1px solid #aaa9a9;
    padding: 0 10px 0 10px;
}

.dropdown_dialog_button_right {
    background-color: #1D93CE;
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    float: right;
    margin: 6px 5px 0 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border: 2px solid #fff;
}

.dropdown_dialog_button_left {
    background-color: #606060;
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    float: left;
    margin: 6px 0 0 5px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    border: 2px solid #fff;
}

    .dropdown_dialog_button_right:focus, .dropdown_dialog_button_left:focus {
        outline: 0;
        border: 2px solid #aaa9a9;
    }

.field_input {
    border: 1px solid #CCC;
    border-radius: 4px;
    color: #555;
    height: 35px;
    line-height: 18px;
    width: 100%;
    padding: 2px 0 0 5px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.field_file_input {
    height: 24px;
    line-height: 18px;
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.field_input_search {
    margin-top: 0;
    width: 140px;
    height: 100%;
    padding: 0 0 1px 3px;
    margin-left: 3px;
}

.styled_select {
   border: 1px solid #CCC;
   border-radius: 4px;
   width: 100%;
   height: 35px;
   overflow: hidden;
   /*background: url(new_arrow.png) no-repeat right #ddd;*/
   box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
   -moz-box-sizing: border-box; /* Firefox, other Gecko */
   box-sizing: border-box; /* Opera/IE 8+ */
}

    .styled_select select {
       background: transparent;
       width: 100%;
       border: 0;
       border-radius: 4px;
       height: 33px;
       color: #555;
   }

/* class is applied to display for 'labels' in the edit column, to align the label text with the text in the .cell_label cells !*/
.field_label {
    display: block;
    padding: 0px 0 0 0;
    height: 18px;
}

    .field_label:empty {
        height: auto;
    }

.ellipsis {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.cell_field {
    text-align: left;
    vertical-align: text-top; /* this is required to align the text in the inputs with the text of the labels in the .cell_label cells ! */
    padding: 5px 3px 3px 0;
}

    .cell_field input[type="checkbox"] {
        width: 13px;
        padding: 0;
    }

    .cell_field input[type="radio"] {
        width: 13px;
        padding: 0;
    }

    .cell_field textarea {
        padding: 3px 3px 3px 3px;
        border: 1px solid #c3c3c3;
        position: relative;
        float: left;
        min-height: 50px;
        width: 200px;
        margin: 3px 3px 3px 3px;
    }

.cell_label {
    width: 150px;
    height: 18px;
    text-align: left;
    vertical-align: text-top;
    padding: 5px 3px 3px 0;
}

.narrow_cell_label {
    width: 90px;
}

a.inpage_link:link {
    color: #1D93CE;
}

a.inpage_link:visited {
    color: #1D93CE;
}

a.inpage_link:hover {
    color: #1D93CE;
}

a.inpage_link:active {
    color: #1D93CE;
}

.input_checkbox_copy_address {
    float: left;
    display: block;
    padding: 0 0 0 10px;
    margin: 10px 0 2px 0;
}

.tooltip {
    padding: 0 8px 0 8px;
    border: 1px solid #606060;
    background-color: #FFFFFF;
    text-align: left;
    color: #000000;
    position: absolute;
    z-index: 999;
}

hr {
    border: none;
    border-top: 1px solid #C3CCDF;
}

.period_warning {
    padding-bottom: 8px;
    text-align: left;
}

.period_date_edit {
    width: 97%;
    border: 1px solid #FFFFFF;
}

.validation-summary-valid {
    color: red;
    text-align: left;
    display: none;
    clear: both;
}

.validation-summary-errors {
    color: red;
    text-align: left;
}

    .validation-summary-valid ul, .validation-summary-errors ul {
        padding: 15px 0 0 0;
        margin: 0;
        list-style: outside none none;
    }

p.input-validation-error {
    margin: 2px 0;
    color: #a94442;
}

input.input-validation-error {
    border-color: #a94442;
}

.field-validation-error {
    padding: 0 0 2px 1px;
    color: red;
    display: block;
    clear: both;
    text-align: left;
}

.error_text {
    padding: 5px 0 5px 10px;
}

.field-validation-valid {
}

.clickable {
    cursor: pointer;
}

.nonclickable {
    cursor: default;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.cell-effort-driven {
    text-align: center;
}



/* Dropdown menu */
ul.dropdown_menu {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 7777;
    box-shadow: 0 2px 5px #888;
    border: 1px solid #606060;
    color: #000;
    width: 160px;
    text-align: left;
    list-style-type: none;
    padding-left: 0;
    font-size: 16px;
}

    ul.dropdown_menu li {
        width: 100%;
        display: inline-block;
    }

        ul.dropdown_menu li a {
            display: block;
            padding: 4px 10px;
            text-decoration: none;
            width: auto;
            color: #000;
            font-weight: normal;
        }

        ul.dropdown_menu li h3 {
            padding: 4px 10px;
            margin: 0;
            font-size: 13px;
            cursor: default;
        }

ul.dropdown_menu_imagemargin li a {
    background-repeat: no-repeat;
    background-position: 2px center;
    padding-left: 22px;
    width: 128px;
}

ul.dropdown_menu li a:hover {
    background-color: #606060;
    color: #fff;
}

ul.dropdown_menu li hr {
    display: block;
    width: 100%;
    margin: 2px 0;
    border-top: 1px solid #606060;
}

ul.dropdown_menu_bluetheme {
    border: 1px solid #1D93CE;
}

    ul.dropdown_menu_bluetheme li a:hover {
        background-color: #1D93CE;
    }

    ul.dropdown_menu_bluetheme li hr {
        border-color: #1D93CE;
    }

    ul.dropdown_menu_bluetheme li a.menu_item_selectable {
        background-image: url('images/item_unselected_blue_16x16.png');
    }

        ul.dropdown_menu_bluetheme li a.menu_item_selectable:hover {
            background-image: url('images/item_unselected_white_16x16.png');
        }

    ul.dropdown_menu_bluetheme li a.menu_option_selected {
        background-image: url('images/item_selected_blue_16x16.png');
    }

        ul.dropdown_menu_bluetheme li a.menu_option_selected:hover {
            background-image: url('images/item_selected_white_16x16.png');
        }

ul.dropdown_menu_help {
    top: 43px;
    right: -16px;
}

ul.dropdown_menu_account {
    top: 43px;
    right: 28px;
}

ul.dropdown_menu_maintenance {
    top: 43px;
    right: 32px;
    width: 200px;
}

footer {
    background: none repeat scroll 0% 0% #BADA55;
    box-sizing: border-box;
}

.footer__bottom, .footer__bottom a {
    color: #FFF;
    text-decoration: none;
    box-sizing: border-box;
}

.footer__bottom {
    background: none repeat scroll 0% 0% #0A3C56;
    padding: 20px 0px;
    box-sizing: border-box;
}

.container:after {
    clear: both;
}

.container:before, .container:after {
    content: " ";
    display: table;
}

.footer__divider {
    width: 32px;
    height: 1px;
    background-color: #12648D;
    transform: rotate(110deg);
    display: inline-block;
    vertical-align: middle;
}

/* Buttons */
.cell_field .align_right {
    padding-top: 15px;
}

.btn-group {
}

    .btn-group .btn {
        border-right: 1px solid #11638D;
    }

        .btn-group .btn:first-child {
            border-radius: 5px 0px 0px 5px;
            margin-right: -4px;
        }

        .btn-group .btn:last-child {
            border-radius: 0px 5px 5px 0px;
            border-right: medium none;
        }

.btn {
    vertical-align: top;
    border-radius: 5px;
    padding: 10px 16px;
    text-decoration: none;
    height: 40px;
}

    .btn:hover {
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        text-decoration: none;
    }

.btn-send {
    border-color: #1d92cd;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
    background-color: #1a85bb;
    background-image: -moz-linear-gradient(top,#1d92cd,#1772a0);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#1d92cd),to(#1772a0));
    background-image: -webkit-linear-gradient(top,#1d92cd,#1772a0);
    background-image: -o-linear-gradient(top,#1d92cd,#1772a0);
    background-image: linear-gradient(to bottom,#1d92cd,#1772a0);
    background-repeat: repeat-x;
    border-color: #1772a0 #1772a0 #0d425d;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    line-height: 0;
}

.btn-group:hover .btn-send, .btn-group:focus .btn-send {
    background-image: none;
    background-color: #1772a0;
}

.btn-arrow {
    background: url('images/arrow-white.png') no-repeat scroll center center, linear-gradient(#1981B6, #14638B) repeat scroll 0% 0% transparent;
    border: none;
    width: 40px;
}

.btn-group:hover .btn-arrow, .btn-group:focus .btn-arrow {
    background: url('images/arrow-white.png') no-repeat scroll center center;
    background-color: #13628a;
    -webkit-transition: none;
    transition: none;
}

.btn-gray {
    background-color: #f7f8f9;
    background-image: -webkit-linear-gradient(#f7f8f9, #ecf2f5);
    background-image: linear-gradient(#f7f8f9, #ecf2f5);
    border: 1px solid #e3eaed;
    color: #3f3f3f;
}

.btn-teamviewer {
    font-weight: bold;
}

    .btn-gray:hover, .btn-gray:focus {
        color:#14638b;
        border:1px solid #d3dee3
    }
