html {
    margin: 0;
    padding: 0;
}

body {
    background: #f0f5f7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Arial, helvetica, sans-serif;
}

input[type="radio"] {
    margin-right: 0.3em;
}
input[type="checkbox"] {
    margin-right: 0.3em;
}

#content-searchbar {
    box-sizing:inherit;
}

::-webkit-scrollbar-button:vertical:increment{
    background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABlBMVEXM09b///8OmaLeAAAAAnRSTlP/AOW3MEoAAAAfSURBVHgBY2BEA7QTYIAChAoYH6EFxkeYwQBj0MelAH3GAO2C9+AaAAAAAElFTkSuQmCC)
}
::-webkit-scrollbar-button:vertical:increment:hover{
    background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABlBMVEWdtMT///8YSU3FAAAAAnRSTlP/AOW3MEoAAAAfSURBVHgBY2BEA7QTYIAChAoYH6EFxkeYwQBj0MelAH3GAO2C9+AaAAAAAElFTkSuQmCC)
}
::-webkit-scrollbar-button:vertical:decrement{
    background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABlBMVEXM09b///8OmaLeAAAAAnRSTlP/AOW3MEoAAAAgSURBVHgBY2BEAzQVYIAzYHwGGAvOZ4AyIXyECH1cCgB/GgDtpWTgqAAAAABJRU5ErkJggg==)
}
::-webkit-scrollbar-button:vertical:decrement:hover{
    background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABlBMVEWdtMT///8YSU3FAAAAAnRSTlP/AOW3MEoAAAAgSURBVHgBY2BEAzQVYIAzYHwGGAvOZ4AyIXyECH1cCgB/GgDtpWTgqAAAAABJRU5ErkJggg==)
}
::-webkit-scrollbar{
    height:16px;
    width:16px
}
::-webkit-scrollbar:disabled{
    display:none
}
::-webkit-scrollbar-button,::-webkit-scrollbar-corner{
    cursor:pointer;
    background:transparent
}
::-webkit-scrollbar-button:horizontal:decrement,::-webkit-scrollbar-button:horizontal:decrement:hover,::-webkit-scrollbar-button:horizontal:increment,::-webkit-scrollbar-button:horizontal:increment:hover,::-webkit-scrollbar-button:vertical:decrement,::-webkit-scrollbar-button:vertical:decrement:hover,::-webkit-scrollbar-button:vertical:increment,::-webkit-scrollbar-button:vertical:increment:hover{
    height:16px;
    width:16px;
    background-position:50%
}
::-webkit-scrollbar-track {
    background:transparent
}
::-webkit-scrollbar-thumb,::-webkit-scrollbar-thumb:hover{
    border-radius:9px;
    border:solid 5px transparent;
    background-clip:content-box
}
::-webkit-scrollbar-thumb{
    background-color:#c8c6c4
}
::-webkit-scrollbar-thumb:hover{
    background-color:#98a3a6
}
::-webkit-scrollbar-thumb:vertical{
    min-height:50px
}
::-webkit-scrollbar-thumb:horizontal{
    min-width:50px
}

*:focus {
    outline: #b8c6cc dotted thin;
}

#desktop-header {
    width: 100%;
    height: 60px;
}

#desktop {
    display: flex;
    flex-direction: row;
    border-spacing: 0.5em;
    vertical-align: top;
    height: calc( 100vh - 60px );
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

#nav-container {
    vertical-align: top;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 220px;
    flex: 1 0 190px;
}

#app-container {
    vertical-align: top;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}

#nav-layout {
    margin-top: 0.5em;
}

#app-layout {
	margin-top: 0.5em;
}

#navigation-bar {
    
}
#main  {
	min-width: 65em;
    
    background: #fff;
    border: 1px solid #b8c6cc;
    font-size: 0.9em;

    /***  CSS Rounded Corners  ***/
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;

    /***  CSS Box Shadow  ***/
    /*-moz-box-shadow: 0 1px 4px rgba(0,63,103,0.2);*/
    /*-webkit-box-shadow: 0 1px 4px rgba(0,63,103,0.2);*/
    box-shadow: 0 1px 4px rgba(0,63,103,0.2);

    position: relative;

    box-sizing:border-box;
}


#loginpagecontainer {
	width: 100%;
	margin: auto;
	display: table-cell;
}

.content > h3 { color:#08c; font-family: Lucida, sans-serif; font-weight: normal; }

.content {
    min-height: 300px;
    height: 100%;
}

#navbar{
    vertical-align: top;
}

#breadcrumbs {
    margin-top: 0;
    margin-bottom: 0;
}

.breadcrumb {
    
    border-bottom: 1px solid #CCD9E1;
    vertical-align: middle;

    background: -moz-linear-gradient(top,  #2989d8 0%, #ffffff 0%, #ffffff 50%, #f2f5f7 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2989d8), color-stop(0%,#ffffff), color-stop(50%,#ffffff), color-stop(100%,#f2f5f7)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #2989d8 0%,#ffffff 0%,#ffffff 50%,#f2f5f7 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #2989d8 0%,#ffffff 0%,#ffffff 50%,#f2f5f7 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #2989d8 0%,#ffffff 0%,#ffffff 50%,#f2f5f7 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #2989d8 0%,#ffffff 0%,#ffffff 50%,#f2f5f7 100%); /* W3C */

    /***  CSS Rounded Corners  ***/
    border-top-left-radius:5px;
    -webkit-border-radius-topleft:5px;
    -moz-border-radius-topleft:5px;

    padding-inline-start:0px;
    border-top-right-radius:5px;
    -webkit-border-radius-topright:5px;
    -moz-border-radius-topright:5px;
    display:block;

    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5px;
    padding-bottom: 5px;

    z-index: 0;
    position: relative;
}

.breadcrumbs-home{
    margin-left: -2em;
    margin-right: 0.5em;
    display: inline-block;
    background: url("../img/breadcrumb_home.png");
    width: 15px;
    height: 14px;
    cursor: pointer;
    position: relative;

    top: 0.075em;
    left: 0.25em;
}

.breadcrumb-arrow{
    display: inline-block;
    background: url("../img/breadcrumb_arrow.png");
    width: 15px;
    height: 14px;
    position: relative;

    top: 0.25em;
    margin-right: 0.25em;
    margin-left: 0.25em;
}

.breadcrumbs-link{
    display: inline-block;
    cursor: pointer;
    font: 1em Arial, Helvetica;  /* 75.0%, 12px, 9pt */
    text-decoration:none;
    color: rgb(45, 120, 190);
    margin-right: 0.25em;
    margin-left: 0.25em;
}

.breadcrumbs-text{
    display: inline-block;
    font: 1em Arial, Helvetica;  /* 75.0%, 12px, 9pt */
    color:#000;
    text-decoration:none;
    margin-right: 0.25em;
    margin-left: 0.25em;
}

.title {
    height: 50px;
    border-bottom: 1px solid #CCD9E1;
    font: 20pt Arial, Helvetica;
    padding-left: 18px;
    color: #0072AA;
}

.title-caption{
    vertical-align: -20%;
}

.tools {
    height: 46px;
    border-bottom: 1px solid #CCD9E1;

    background: #f2f5f7; /* Old browsers */
    background: -moz-linear-gradient(left,  #f2f5f7 0%, #ffffff 91%, #ffffff 100%, #2989d8 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#f2f5f7), color-stop(91%,#ffffff), color-stop(100%,#ffffff), color-stop(100%,#2989d8)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  #f2f5f7 0%,#ffffff 91%,#ffffff 100%,#2989d8 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  #f2f5f7 0%,#ffffff 91%,#ffffff 100%,#2989d8 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  #f2f5f7 0%,#ffffff 91%,#ffffff 100%,#2989d8 100%); /* IE10+ */
    background: linear-gradient(to right,  #f2f5f7 0%,#ffffff 91%,#ffffff 100%,#2989d8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafdff', endColorstr='#f2f5f7',GradientType=0 ); /* IE6-9 */
}

.footer {
    border-top: 1px solid #CCD9E1;
    min-height: 50px;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.tab-selected {
    display: inline-block;
    /*cursor: pointer;*/
    font: 1em Arial, Helvetica;
    text-decoration: none;
    color: rgb(45, 120, 190);
    vertical-align: top;
    background-color: #ffffff;
    padding: 0.75em 0.75em 1.05em;
    border-bottom: 3px solid #00a4d8;
}

.tab-selected:active {
    display: inline-block;
    /*cursor: pointer;*/
    font: 1em Arial, Helvetica;
    text-decoration: none;
    color: rgb(45, 120, 190);
    vertical-align: top;

    background-color: #ffffff;
    padding: 0.75em 0.75em 1.05em;

    border-bottom: 3px solid #00a4d8;
}

.tab {
    display: inline-block;
    font: 1em Arial, Helvetica;
    color: #000;
    text-decoration: none;
    vertical-align: top;

    background-color: #f2f5f7;
    padding: 0.75em 0.75em 1.05em;

    border-bottom: 3px solid #f2f5f7;
}

.tab:hover{
    display: inline-block;
    font: 1em Arial, Helvetica;
    color: #000;
    text-decoration: none;
    vertical-align: top;

    background-color: #f2f5f7;
    padding: 0.75em 0.75em 1.05em;

    border-bottom: 3px solid #dd992e;
    cursor: pointer;
}

.divider-v{
    /***  CSS Box Model  ***/
    height: 34px ;
    width:0.063em;  /***  1px  ***/

    /***  CSS Gradient  ***/
    background-image: #e9eff2;
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -moz-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -o-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -ms-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e7edf1",GradientType=0);
    display:inline-block;
}

.nav-tabs{
    padding-top: 0.25em;
    padding-left: 0.25em;
}

/* Action Buttons */
.button-menu-text {
    padding-left: 0.563em;
}

ul.button-menu {
    list-style-type: none;
    line-height: 28px;
    font-weight: normal;
    font: Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    color: #666666;

    /***  CSS Box Model  ***/
    padding:0;

    /***  CSS Borders  ***/
    border: 1px solid #B2C4D0;

    /***  CSS Text and Font  ***/
    background-color:#FFFFFF;

    /***  CSS Rounded Corners  ***/
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;

    /***  CSS Box Shadow  ***/
    -moz-box-shadow: 0 1px 4px rgba(0,63,103,0.2);
    -webkit-box-shadow: 0 1px 4px rgba(0,63,103,0.2);
    box-shadow: 0 1px 4px rgba(0,63,103,0.2);

    display:none;
    position: absolute;
    width: 15em;
    z-index: 200;
    margin-left: 2.5em;
    margin-top: 0.25em;
}

.button-menu > li:hover{
    color: #333333;
    border:1px solid #EEC071;
    background-color:#FBF2CA;
    border-radius:4px;

    -webkit-border-radius:4px;
    -moz-border-radius:4px;

    height: 29px;
    cursor: pointer;
}

.button-menu > li:active{
    border:1px solid #96D1EF;
    background-color:#EAF6FC;
    border-radius:4px;

    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

.buttons{
    position: relative;
    padding-top: 0.70em;
    display: block;
    white-space: nowrap;
}

.button{
    clear:both;
    color:#fff;
    margin: 0 0 0 12px;
    font:0.875em Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;

    min-width:36px;
    height:26px;
    padding: 0 12px;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    /***  Background Gradient  ***/
    background: rgb(0,114,170); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(0,114,170,1) 51%, rgba(0,75,113,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(51%,rgba(0,114,170,1)), color-stop(100%,rgba(0,75,113,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072aa', endColorstr='#004b71',GradientType=0 ); /* IE6-9 */

    /***  Shadow  ***/
    box-shadow:0 0 0 1px #005077;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.button_icon_delete
{
    background: url('../img/notification_error16.png') left center no-repeat;
}

/***  Button Hover  ***/
.button:hover {
    color:#fff;
    background: rgb(224,142,25); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(224,142,25,1) 0%, rgba(188,88,6,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,142,25,1)), color-stop(100%,rgba(188,88,6,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e08e19', endColorstr='#bc5806',GradientType=0 ); /* IE6-9 */

    min-width:36px;
    height:26px;
    padding: 0 12px;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px #e18e18;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.button:active {
    clear:both;
    color:#fff;
    margin: 0 0 0 12px;
    background: #0080bb;
    min-width:36px;
    height:26px;
    padding: 0 12px;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 0 0 1px #005077;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.button_disabled{
    clear:both;
    color:#666666;
    margin: 0 0 0 12px;
    font:0.875em Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;

    min-width:38px;
    height:28px;
    padding: 0 12px;
    border: 1px solid #999999;
    border: 1px solid rgba(153, 153, 153, 0.40);

    /***  Background Gradient  ***/
    background: rgb(255, 255, 255); /* Old browsers */
    background: -moz-linear-gradient(top, rgb(255, 255, 255) 51%, rgb(255, 255, 255) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(51%, rgb(255, 255, 255)), color-stop(100%, rgb(255, 255, 255))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 51%, rgb(255, 255, 255) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgb(255, 255, 255) 51%, rgb(255, 255, 255) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgb(255, 255, 255) 51%, rgb(255, 255, 255) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgb(255, 255, 255) 51%, rgb(255, 255, 255) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072aa', endColorstr='#004b71',GradientType=0 ); /* IE6-9 */

    /***  Shadow  ***/
    box-shadow:0 0 0 1px #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.button_secondary {
    clear:both;
    color:#0071A9;
    margin: 0 0 0 12px;
    font:0.875em Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;

    min-width:36px;
    height:26px;
    padding: 0 12px;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 0 0 1px #B2C5D1;
    background: #f9fbfc;
    background: -webkit-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -moz-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -o-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -ms-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f3f6f8",GradientType=0);
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    outline: none;
}

.button_secondary:hover
{
    box-shadow: 0 0 0 1px #E08E18;
    border: 1px solid #E08E18;
    background: #f9fbfc;
    background: -webkit-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -moz-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -o-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -ms-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f3f6f8",GradientType=0);
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    color: #0071A9;
    outline: none;
}

.button_secondary:focus
{
    border: 1px solid #00A4D8;
    color: #0071A9;
    outline: none;
}

.button_secondary:active
{
    color:#FFFFFF;
    background: #0072AA  !important;
    box-shadow: 0 0 0 1px #0072AA;
    border: 1px solid #0072AA;
}

/* Triangle icon */
.icon-button-menu-triangle{
    display: inline-block;

    width:0;
    height:0;
    outline:none;
    padding: 0 10px 7px 0;
    margin:0 auto 0 5px;
    background: url("../img/icon-headerbar-user-menu-triangle.png") 0 0;
}


.icon_dropdown_triangle{
    display: inline-block;
    background: url("../img/icon_optionlist_default.png") no-repeat 230px 6px;
    padding-right: 0.25em;
    cursor: pointer;
}

.icon_dropdown_triangle_time{
    display: inline-block;
    background: url("../img/icon_optionlist_default.png") no-repeat 300px 6px;
    padding-right: 0.25em;
    cursor: pointer;
}

/*Paginator*/
.top-paginator{
    display: inline-block;
    float: right;
    padding-right: 0.75em;
    padding-top: 0.65em;
}

.bottom-paginator{
    display: inline-block;
    float: right;
    padding-right: 0.75em;
}

.button2 {
    clear:both;
    color:#0072aa;
    margin: 0 12px 0 0;
    font-size: 1em;
    text-decoration: none;

    min-width:36px;
    min-height:28px;
    border: 1px solid #ffffff;
    border: 1px solid #E2EAF2;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    /***  Background Gradient  ***/
    background: -moz-linear-gradient(top,  #ffffff 0%, #f3f7fc 100%, #207cca 100%, #7db9e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f3f7fc), color-stop(100%,#207cca), color-stop(100%,#7db9e8));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f3f7fc 100%,#207cca 100%,#7db9e8 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f3f7fc 100%,#207cca 100%,#7db9e8 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f3f7fc 100%,#207cca 100%,#7db9e8 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f3f7fc 100%,#207cca 100%,#7db9e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#7db9e8',GradientType=0 );
}

/***  Button Hover  ***/
.button2:hover {
    /*background: rgb(224,142,25); */
    background: -moz-linear-gradient(top,  rgba(224,142,25,1) 0%, rgba(188,88,6,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,142,25,1)), color-stop(100%,rgba(188,88,6,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e08e19', endColorstr='#bc5806',GradientType=0 ); /* IE6-9 */

    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px #e18e18;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.button2:active {
    clear:both;
    background: #0080bb;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 0 0 1px #005077;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


.styled-select select {
    clear:both;
    color: #000304;
    text-decoration: none;
    border: 1px solid #ffffff	;
    border: 1px solid #E2EAF2;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    background: transparent;
    width: 120px;
    line-height: 1;
    height: 26px;
    -webkit-appearance: none;
}

.styled-select {
    width: 120px;
    height: 26px;
    overflow: hidden;
    background: url("../img/icon_optionlist_default.png") no-repeat right;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-appearance: none;
    display: inline-block;
}

.loader {
    position: absolute;
    margin: -50px 0 0 -50px;
    left: 50%;
    top: 50%;
    
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #0080bb;
    border-bottom: 16px solid #0080bb;
    width: 120px;
    height: 120px;
    
    animation-name: spin, fadeIn;
    animation-duration: 2s, 600ms;
    animation-timing-function: linear, ease;
    animation-iteration-count: infinite, 1;
    animation-fill-mode: forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/*.search-input-box {*/
    /*clear:both;*/
    /*color:#0072aa;*/
    /*font-size:10pt;*/
    /*text-decoration: none;*/
    /*border: 1px solid #96D1EF;*/

    /*-webkit-border-radius: 4px;*/
    /*-moz-border-radius: 4px;*/
    /*border-radius: 4px;*/

    /*background: transparent;*/
    /*width: 120px;*/
    /*line-height: 1;*/
    /*height: 26px;*/
    /*width: 200px;*/
    /*-webkit-appearance: none;*/
/*}*/

/*.otds-link {*/
    /*color: blue;*/
    /*text-decoration: underline;*/
    /*cursor: pointer;*/
/*}*/

.close-image{
    background: url("../img/sidebar_show_hide_sprite.png") 0 0;
    float: left;
    position: relative;
    top: 6px;
    right: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    cursor: pointer;
}

.close-image:hover,.close-image:focus {
    background-position: 0 -17px;
}

.close-image:active {
    background-position: 0 -34px;
}
.btn-primary {
    color: #0072aa;
    text-shadow: none;
    background-color: #FFFFFF;
    background-image: -moz-linear-gradient(top, #FFFFFF, #003E66);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FFFFFF), to(#e6eaff));
    background-image: -webkit-linear-gradient(top, #FFFFFF, #e6eaff);
    background-image: -o-linear-gradient(top, #FFFFFF, #e6eaff);
    background-image: linear-gradient(to bottom, #FFFFFF, #e6eaff);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#e6eaff', GradientType=0);
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #FFFFFF;
    font: Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;
    min-width:36px;
    height:28px;
    padding: 4px 12px;
    border: 2px solid #dce0f4;
    border-radius: 4px ;
}

.btn-primary:hover {
    color: #0072aa;
    background-color: #e6eaff;
    *background-color: #e6eaff;
    height:28px;
    border: 2px solid #E08E18;
}

.btn-primary:focus{
    color: #0072aa;
    fill: #FFFFFF ;
    border: 1px solid #0072aa;
    background-position: 0;
}

.btn-primary:active{
    color: #0072aa;
    fill: #FFFFFF ;
    border: 1px solid #0072aa  ;
}

.footer-buttons-group {
    display: inline-block;
    float: right;
    padding-top: 0.8em;
    padding-right: 0.8em;
}

.tabs {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.wizard-header{
    text-align: center;
    background-color:#FBF2CA;
    border-top: 1px solid #f29d38;
    border-bottom: 1px solid #f29d38;
}

.wiz-general {
    border-top: none;
}

.wiz-general-bold {
    border-top: none;
    font-weight: bold
}

.wiz-general-sh {
    border-top: 0;
    font-weight: bold;
    padding-top: 1em;
}
.wiz-general-w-left-padding {
    border-top: none;
    padding-left: 2em;
}

.wiz-modal {
    border-top: none;

    white-space: -moz-pre-wrap !important;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    white-space: pre-wrap;       /* css-3 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
    word-break: break-all;
    white-space: normal;
    padding-right: 3em;
}

.wizardtable {
    font-family: verdana,arial,sans-serif;
    font-size:11px;
    color:#333333;
    border: 1px #999999;
    border-collapse: collapse;
}
.wizardtable td {
    padding: 8px;
    border: 1px solid #999999;
}

.long-divider-v{
    /***  CSS Box Model  ***/
    height: 100% ;
    width:0.063em;  /***  1px  ***/

    /***  CSS Gradient  ***/
    background-image: #e9eff2;
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -moz-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -o-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: -ms-linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    background-image: linear-gradient(top, #ffffff 0%, #d6e1e6 50%, #e7edf1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e7edf1",GradientType=0);
    display:inline-block;
}

ul.secondary-menu {
    list-style-type: none;
    line-height: 30px;
    /***  CSS Box Model  ***/
    margin-top:0;
    padding:0;

    /***  CSS Borders  ***/
    border: 1px solid #B2C4D0;

    /***  CSS Text and Font  ***/
    background-color:#FFFFFF;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;

    /***  CSS Box Shadow  ***/
    -moz-box-shadow: 0px 1px 4px rgba(0,63,103,0.2);
    -webkit-box-shadow: 0px 1px 4px rgba(0,63,103,0.2);
    box-shadow: 0px 1px 4px rgba(0,63,103,0.2);

    display:none;
    position: absolute;
    z-index: 200;
}

.secondary-menu > li {
    /***  CSS Borders  ***/
    border:1px solid #FFFFFF;
    
    font-family: Arial, helvetica;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

.secondary-menu > li:hover{
    
    /***  CSS Borders  ***/
    border:1px solid #EEC071;
    
    /***  CSS Text and Font  ***/
    background-color:#FBF2CA;

    font-family: Arial, helvetica;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;

    cursor: pointer;
}

.secondary-menu > li:focus{
    
    /***  CSS Borders  ***/
    border:1px solid #EEC071;
    
    /***  CSS Text and Font  ***/
    background-color:#FBF2CA;

    font-family: Arial, helvetica;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    
    cursor: pointer;
}

.secondary-menu > li:active{
    
    /***  CSS Borders  ***/
    border:1px solid #96D1EF;
    
    /***  CSS Text and Font  ***/
    background-color:#EAF6FC;
    
    font-family: Arial, helvetica;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    
}

.add-button-icon-primary {
    background: url("../img/button_add_primary_16.png") no-repeat left;
    padding-right: 0.25em;
    padding-left: 1.5em;
}

.delete-button-icon-primary {
    background: url("../img/button_delete_primary_16.png") no-repeat left;
    padding-right: 0.25em;
    padding-left: 1.5em;
}

.button-icon-prev-secondary {
    background: url("../img/button_arrow_left_secondary16.png") no-repeat left;
    padding-right: 0.5em;
    padding-left: 1em;
}

.button-icon-next-secondary {
    background: url("../img/button_arrow_right_secondary16.png") no-repeat right;
    padding-right: 0.5em;
    padding-left: 1em;
}

.button-icon-prev-secondary_active {
    background: url("../img/button_arrow_left_primary16.png") no-repeat left;
}

.button-icon-next-secondary_active {
    background: url("../img/button_arrow_right_primary16.png") no-repeat right ;
}

.step-icon{
    min-width: 16px;
    min-height: 16px;
    display: inline-block;
    line-height: 1.2em;
    vertical-align: bottom;
    padding-left: 0;
    padding-right: 2px;
    margin-right: 0.25em;
}

.testConnectionButton{
    margin-top: 1em;
    margin-right: 2em;
}

.hideControl {
    display: none;
}

/* bootbox styles*/
.notification_confirmation32{
    background: url("../img/notification_confirmation32.png" ) no-repeat right;
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    margin-right: 1em;
    display: table-cell;
}

.modal-title{
    margin: 0.25em;
    font: 1em Arial, Helvetica;
    color: #0072AA;
}

.bootbox_message{
    font: 0.875em Arial, Helvetica Neue, HelveticaNeue, Helvetica, Segoe UI, Tahoma;
    color: #666666;
    display: table-cell;
    padding-left: 1em;
}

.modal-footer
.btn + .btn{
    margin-left: 1em;
}

.btn {
    text-shadow: none;
}
/* bootbox styles*/


/*drop down menu from hyperlink*/
.moreActions_dropdownMenu {
    list-style-type: none;
    line-height: 30px;
    /***  CSS Box Model  ***/
    margin-top:0;
    padding:0;

    /***  CSS Borders  ***/
    border: 1px solid #B2C4D0;

    /***  CSS Text and Font  ***/
    background-color:#FFFFFF;

    /***  CSS Rounded Corners  ***/
    border-radius:4px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;

    /***  CSS Box Shadow  ***/
    -moz-box-shadow: 0 1px 4px rgba(0,63,103,0.2);
    -webkit-box-shadow: 0 1px 4px rgba(0,63,103,0.2);
    box-shadow: 0 1px 4px rgba(0,63,103,0.2);

    display:none;
    position: absolute;
    z-index: 200;
}


.moreActions_dropdownMenu > li:hover{
    border:1px solid #EEC071;
    background-color:#FBF2CA;
    border-radius:4px;

    font-family: Arial, helvetica;
    /*color:#FFFFFF;*/

    -webkit-border-radius:4px;
    -moz-border-radius:4px;

    /*height: 1.5em;*/
    cursor: pointer;
}


.moreActions_dropdownMenu > li:active{
    border:1px solid #96D1EF;
    background-color:#EAF6FC;
    border-radius:4px;

    font-family: Arial, helvetica;

    -webkit-border-radius:4px;
    -moz-border-radius:4px;
}

/*scheduler*/
.scheduler_drop_down {
    border: 1px solid #b8c6cc;
    /*display: none;*/
    background-color: white;

    /***  Shadow  ***/
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    z-index: 200;

    /*margin-left: 2em;*/
    margin-top: -2px;
    min-width: 17em;
}

.scheduler_radio {
    margin-left: 2em;
    margin-top: 2em;
}

.days{
    margin-top: 1em;
    margin-left: 4em;
    margin-bottom: 1em;
}
textarea
{
    font-family: inherit;
    font-size: inherit;
}

.content input, .content select, .content textarea{
    box-sizing: border-box;
}

.font0_9{
    font-size: 0.9em;
}
.font1{
    font: 1em Arial, Helvetica;
}

.contentdivwrap
{
    white-space: normal;
    word-wrap: break-word;
}

.contentdivnowrap
{
    white-space: nowrap;
}

.specificTime {
    color: #0073AE;
    cursor: pointer;
}

.specificTime_disabled {
    color: #8699a7;
    cursor: pointer;
}

.specificTime:hover,
.specificTime_selected:hover {
    text-decoration: underline;
    color: #f29d38;
}

.specificTime_selected {
    color: #004b71;
    cursor: pointer;
    font-weight: bold;
}

.specificTime_selected_disabled {
    color: #004b71;
    cursor: pointer;
}

/*Modal Dialog Buttons*/
.ui-dialog .ui-dialog-buttonpane button{
    margin: 0.5em;
    cursor: default;
}

.ui-widget .ui-widget {
    font-size: 0.875em;
}


button.button_modal, button.ui-button.button_modal{
    clear:both;
    color:#fff;
    font:0.875em Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;
	
    min-width:36px;
    height:26px;
	padding: .2em 0.75em;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    /***  Background Gradient  ***/
    background: rgb(0,114,170); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(0,114,170,1) 51%, rgba(0,75,113,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(51%,rgba(0,114,170,1)), color-stop(100%,rgba(0,75,113,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,114,170,1) 51%,rgba(0,75,113,1) 100%); /* W3C */

    /***  Shadow  ***/
    box-shadow:0 0 0 1px #005077;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
button.button_modal:hover, button.ui-button.button_modal:hover {
    background: rgb(224,142,25); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(224,142,25,1) 0%, rgba(188,88,6,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(224,142,25,1)), color-stop(100%,rgba(188,88,6,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(224,142,25,1) 0%,rgba(188,88,6,1) 100%); /* W3C */

    box-shadow: 0 0 0 1px #e18e18;
}
button.button_modal:active, button.ui-button.button_modal:active {
    background: #0080bb;
	box-shadow: 0 0 0 1px #005077;
}


button.button_secondary_modal, button.ui-button.button_secondary_modal {
    clear:both;
    color:#0071A9;
    margin-right: -0.1em;
    font:0.875em Arial, Helvetica, Segoe UI, Tahoma, Sans Serif;
    font-size:0.875em;

    min-width:36px;
    height:26px;
	padding: .2em 0.75em;
    border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 0 0 1px #B2C5D1;
    background: #f9fbfc;
    background: -webkit-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -moz-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -o-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -ms-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
}
button.button_secondary_modal:hover, button.ui-button.button_secondary_modal:hover
{
    box-shadow: 0 0 0 1px #E08E18;
    border: 1px solid #E08E18;
    background: #f9fbfc;
    background: -webkit-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -moz-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -o-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: -ms-linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    background: linear-gradient(top, #ffffff 50%, #f3f6f8 100%);
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    color: #0071A9;
}
button.button_secondary_modal:focus, button.ui-button.button_secondary_modal:focus
{
    border: 1px solid #00A4D8;
    color: #0071A9;
}
button.button_secondary_modal:focus, button.ui-button.button_secondary_modal:active
{
    color:#FFFFFF;
    background: #0072AA  !important;
    box-shadow: 0 0 0 1px #0072AA;
    border: 1px solid #0072AA;
}

.ui-dialog .ui-dialog-titlebar-close
{
    display: inline-block;
    margin-right: 0.5em;
    border: none;
    background: white url("../img/dialogue_dismiss16.png") 0 0;
    width: 16px;
    height: 16px;
}

.ui-icon.ui-icon-closethick
{
	display: none;
}

.loginscreen
{
    background: url("../img/web_sign_in_eds.png");
    width: 375px;
    height: 98px;
    top: 0.075em;
    left: 0.25em;
}

.loginscreentable
{
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    font-size: 0.875em;
}

.listentry_disabled
{
    pointer-events:none;
    opacity:0.4;
}

.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=.3); /* support: IE8 */
}