﻿/* ---------------------------------------------------------------------- */
/*	Basic Elements & Classes
/* ---------------------------------------------------------------------- */
html {
	height: 100%;
}
body {
	color: #000000;
	direction: ltr;
	/*font-family: 'Open+Sans', sans-serif;*/
	/*font-size: 13px;*/
	padding: 0px !important;
	margin: 0px !important;
	background: #ffffff;
	-webkit-overflow-scrolling: touch; /* for a smooth scrolling experience on webkit touch devices*/
	height: 100%;
	overflow: auto;
}

body.loading {
	background-color: #1c91a1 !important;  /**/
	background-image: url(/assets/img/Blocks-1s-200px.gif);
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
}

body.loading > .navbar,
body.loading > .main-container,
body.loading > .footer {
	display: none;
}

.header {
	border-bottom: 2px solid #1c91a1;
}

.header > div {
	border-bottom: 3px solid #0b3254;
}

.main-content {
	border-top: 2px solid #1c91a1;
}

.hr {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom-style:solid;
	border-bottom-width: 2px;
}

.blue {
	color: #0b3254;
	border-color: #0b3254;
}

.btn-group > .dropdown-middle {
	border-radius: 0;
}
.fa {
	font-size: 14px;
}
.loading-container {
	padding: 15px;
}
a.panel-link, a.panel-link:hover {
	display: block;
	text-decoration: none;
	color: #333333;
}
a, a:focus, a:hover, a:active {
	outline: 0 !important;
}
.required-flag {
	color: Red;
	display: none;
}
.required > .required-flag {
	display: inline;
}
.ui-front {
	z-index: 10000;
}

/* original primary button color */
.btn-primary-original {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary-original:hover,
.btn-primary-original:focus,
.btn-primary-original.focus,
.btn-primary-original:active,
.btn-primary-original.active,
.open > .dropdown-toggle.btn-primary-original {
  color: #ffffff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary-original:active,
.btn-primary-original.active,
.open > .dropdown-toggle.btn-primary-original {
  background-image: none;
}
.btn-primary-original.disabled,
.btn-primary-original[disabled],
fieldset[disabled] .btn-primary-original,
.btn-primary-original.disabled:hover,
.btn-primary-original[disabled]:hover,
fieldset[disabled] .btn-primary-original:hover,
.btn-primary-original.disabled:focus,
.btn-primary-original[disabled]:focus,
fieldset[disabled] .btn-primary-original:focus,
.btn-primary-original.disabled.focus,
.btn-primary-original[disabled].focus,
fieldset[disabled] .btn-primary-original.focus,
.btn-primary-original.disabled:active,
.btn-primary-original[disabled]:active,
fieldset[disabled] .btn-primary-original:active,
.btn-primary-original.disabled.active,
.btn-primary-original[disabled].active,
fieldset[disabled] .btn-primary-original.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary-original .badge {
  color: #337ab7;
  background-color: #ffffff;
}

.btn-primary-original {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
	color: White;
}
.btn-primary-original:hover,
.btn-primary-original:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}
.btn-primary-original:active,
.btn-primary-original.active {
  background-color: #265a88;
  border-color: #245580;
}
.btn-primary-original.disabled,
.btn-primary-original:disabled,
.btn-primary-original[disabled] {
  background-color: #265a88;
  background-image: none;
}

/* ---------------------------------------------------------------------- */
/*  select-like bootstrap buttons
/* ---------------------------------------------------------------------- */

.btn-input {
	display: inline-block
}
 
.btn-input .btn.form-control {
    text-align: left;
}
 
.btn-input .btn.form-control span:first-child {
   left: 10px;
   overflow: hidden;
   position: absolute;
   right: 25px;
}
 
.btn-input .btn.form-control .caret {
   margin-top: -1px;
   position: absolute;
   right: 10px;
   top: 50%;
}

/* ---------------------------------------------------------------------- */
/*  signin & authentication
/* ---------------------------------------------------------------------- */
.form-account {
  max-width: 800px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/*  Accordion
/* ---------------------------------------------------------------------- */
.accordion > .list-group-item:not(:only-child) {
	margin: 0;
	padding: 0;
	border-radius: 0;
	border-top: 1px solid #dddddd;
	border-bottom: 0 solid transparent;
}

.accordion > .list-group-item > a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;

  background-repeat: repeat-x;
  border-color: #ccc;
	color: #333;
  text-shadow: 0 -1px 0 #fff;
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  }

.accordion > .list-group-item .list-group {
	margin: 0;
	padding: 0;
}

.accordion > .list-group-item:last-child > a {
	border-bottom: 0;
}

.accordion > .list-group-item .list-group .list-group-item {
	border-top: 1px solid #dddddd;
	border-bottom: 0 solid transparent;
}

.accordion > .list-group-item .list-group-item > a {
	display: block;
	text-decoration: none;
}

/* ---------------------------------------------------------------------- */
/*  Modal
/* ---------------------------------------------------------------------- */
.modal.ui-dialog {
		/*z-index: 999;  so that it doesn't appear on top of the header or footer (set to roughly 1030)*/
		z-index: 10001;
		max-width: 1170px;
		min-width: 240px;
		padding: 57px 0 0 0;
		margin: 15px auto;

		bottom: auto;
		overflow: hidden;
		overflow-y: hidden;

		position: relative;
}

.modal.ui-dialog > .modal-dialog .tab-content {
	border: 0 none;
}

.modal.ui-dialog .ui-dialog-titlebar {
  background-image: -webkit-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -o-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1c91a1), to(#13626d));
  background-image: linear-gradient(to bottom, #1c91a1 0%, #13626d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1c91a1', endColorstr='#ff13626d', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #115a64;
	color: #fff;
  text-shadow: 0 -1px 0 #000;


	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.modal.ui-dialog .ui-dialog-title {
	color: #ffffff;
	text-shadow: 0 -1px 0 #000;
}

.modal.ui-dialog .ui-dialog-titlebar .close .fa {
	margin: 5px 0;
	padding: 5px 0;
}
.modal.ui-dialog .close .fa {
	font-size: 22px;
}


.modal.ui-dialog .ui-dialog-titlebar .navbar-text {
	/*margin: 10px 0;*/
}

.modal.ui-dialog .ui-dialog-content {
	padding: 0;
	overflow: auto;
}

.modal.ui-dialog .form-content {
	border-top: 1px solid #1c91a1;
	padding: 15px;
}

.modal.ui-dialog .tab-content {
	padding-top: 15px;
}

.modal.ui-dialog .ui-dialog-buttonpane {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (max-width: 767px) {
	.table-responsive > .table > thead > tr > th {
		white-space: normal;
		padding: inherit 10px;
	}
}

@media (max-width: 1199px) {
	.modal.ui-dialog {
		margin: 15px;
	}
}

@media (min-width: 768px) {
	.modal.ui-dialog > .modal-dialog {
		margin: auto;
	}
}

/* ---------------------------------------------------------------------- */
/*  Navbar and navbar elements
/* ---------------------------------------------------------------------- */
.navbar .navbar-brand, .logo {
	padding: 14px 10px 12px;
	margin-left: 0;
	font-size: 25px;
	min-width:210px;
}
.navbar .navbar-brand {
	background: transparent url(/assets/img/DrgLogoColor75x50.png) no-repeat center left;
	padding-left: 115px;
	font-weight: bold;
	color: #0b3254;
	text-shadow: 0 1px 0 #ddeeff;
}

.navbar a.navbar-brand,
.navbar a.navbar-brand:hover,
.navbar-default .navbar-nav>li>a {
	color: #0b3254;
	text-shadow: 0 1px 0 #ffffff;
}

.navbar .navbar-brand i, .logo i {
	font-size: 20px;
}
.navbar-default .navbar-nav > .active > a {
  
  background-image: -webkit-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -o-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1c91a1), to(#13626d));
  background-image: linear-gradient(to bottom, #1c91a1 0%, #13626d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1c91a1', endColorstr='#ff13626d', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #115a64;
	color: #fff;
  text-shadow: 0 -1px 0 #000;

}
.navbar-default .navbar-nav > .active > a:hover {
	color: #fff;
}

/* ---------------------------------------------------------------------- */
/*	Panels and panel elements
/* ---------------------------------------------------------------------- */
.panel-heading {
	background-color: #F5F4F9;
  background-repeat: repeat-x;
	border-bottom: 1px solid #CDCDCD;
	border-radius: 4px 4px 0 0;
	height: 36px;
	padding-left: 15px; /* 40px; */
	position: relative;
	background-image: linear-gradient(to bottom, #F5F4F9 0%, #ECEAF3 100%);
}
.panel-heading > [class^="fa-"], .panel-heading > [class*=" fa-"], .panel-heading > [class^="icon-"], .panel-heading > [class*=" icon-"], .panel-heading > [class^="clip-"], .panel-heading > [class*=" clip-"] {
	border-right: 1px solid #CDCDCD;
	box-shadow: 1px 0 0 0 #FFFFFF;
	opacity: 0.7;
	padding: 12px 10px 8px;
	position: absolute;
	left: 0;
	top: 0;
	height: 36px;
}
.panel.panel-full-screen {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9998;
}
.panel-scroll {
	position: relative;
	margin: 10px;
	padding: 0px;
	width: auto;
	height: 400px;
	overflow: hidden;
}
.panel-home {
  border-color: #030c15;
	cursor: pointer;
}
.panel-home > .panel-body {
	background-color: #cccccc;
}
.panel-home > .panel-heading,
.panel-home > .panel-footer {
    background-image: -webkit-linear-gradient(top, #0b3254 0, #04121e 100%);
    background-image: -o-linear-gradient(top, #0b3254 0, #04121e 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0b3254), to(#04121e));
    background-image: linear-gradient(to bottom, #0b3254 0, #04121e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0b3254', endColorstr='#ff04121e', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    background-repeat: repeat-x;
    border-color: #030c15
}
.panel-home > .panel-heading + .panel-collapse > .panel-body {
  border-color: #030c15;
}
.panel-home > .panel-heading .badge {
  color: #0b3254;
  background-color: #fff;
}
.panel-home > .panel-footer + .panel-collapse > .panel-body {
  border-color: #030c15;
}

.panel-success {
  border-color: #1c91a1;
}
.panel-success > .panel-heading,
.panel-success > .panel-footer {
  background-image: -webkit-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -o-linear-gradient(top, #1c91a1 0%, #13626d 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1c91a1), to(#13626d));
  background-image: linear-gradient(to bottom, #1c91a1 0%, #13626d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1c91a1', endColorstr='#ff13626d', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #115a64;
	color: #fff;
  text-shadow: 0 -1px 0 #000;

  }
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #1c91a1;
}
.panel-success > .panel-heading .badge {
  color: #1c91a1;
  background-color: #fff;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #1c91a1;
}

.panel .table > thead,
.panel .table > tfoot {
	background-color: #cccccc;

}

.panel .table > thead th,
.panel .table > tfoot td {
	color: #0c3254;
	font-weight: bold;
}

/* ---------------------------------------------------------------------- */
/*	Main Container and main content elements
/* ---------------------------------------------------------------------- */
.main-container {
	margin-top: 48px;
}
.page-full-width .main-container{
	margin-top: 98px;
}
.header-default .main-container {
	margin-top: 0 !important;
}
.main-content {
	margin-top: 0;
	background-color: #FFFFFF;
	padding-top: 15px;

}

.container {
	max-width: none !important;
	width:auto !important;
}

.footer-fixed .main-content .container{
	margin-bottom:22px;
}
/* ---------------------------------------------------------------------- */
/*	Footer and footer elemnts
/* ---------------------------------------------------------------------- */
.footer {
	border-top: 2px solid #1c91a1;
	font-size: 12px;
	padding: 8px 20px 5px;
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: white;
}
.footer-inner {
	float: left;
}
.footer-items {
	float: right;
}
.footer-fixed .footer {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	z-index: 1000;
	border-top-width: 1px;
	border-top-style: solid;
}

/* ---------------------------------------------------------------------- */
/*	Dropdown elements
/* ---------------------------------------------------------------------- */
.dropdown-checkboxes {
	padding: 5px;
}
.dropdown-checkboxes label {
	display: block;
	font-weight: normal;
	line-height: 20px;
}
/* ---------------------------------------------------------------------- */
/*	Page Header
/* ---------------------------------------------------------------------- */
.page-header {
	margin: 0;
	padding: 0;
	border-bottom: 0 none;
}
.page-header h4 {
	font-weight: bold;
	margin: 0 0 15px 0;
	padding: 0;
	color: #0b3254;
}

.page-header h1 small {
	color: #888888;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0;
}

/* ---------------------------------------------------------------------- */
/*	Table and table elements
/* ---------------------------------------------------------------------- */
tr.clickable {
	cursor: pointer;
}
.table>tbody>tr:hover,
.table>tbody>tr:nth-child(odd):hover {
	background-color: rgba(0,0,0,.1);
}
th.center, td.center {
	text-align: center;
}
td.center .dropdown-menu {
	text-align: left;
}
.table thead tr {
	color: #707070;
	font-weight: normal;
}
.table.table-bordered thead tr th {
	vertical-align: bottom;
}
.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
/*	vertical-align: middle;*/
}

.table-striped>tbody>tr:nth-child(odd), .table-striped>tbody>tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.editable-element {
	border-bottom: 1px dashed #0088CC;
	text-decoration: none;
	opacity: 0.5;
	display: inline;
}

/* ---------------------------------------------------------------------- */
/*	Overlay
/* ---------------------------------------------------------------------- */
.overlay {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 60px;
	line-height: 80px;
	opacity: 0.8;
	background: #4477aa;
	border: solid 3px #336699;
	border-radius: 4px;
	box-shadow: 2px 2px 10px #333;
	text-shadow: 1px 1px 1px #666;
	padding: 0 4px;
}
.overlay_arrow {
	left: 50%;
	margin-left: -16px;
	width: 0;
	height: 0;
	position: absolute;
}
.overlay_arrow.above {
	bottom: -15px;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 16px solid #336699;
}
.overlay_arrow.below {
	top: -15px;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-bottom: 16px solid #336699;
}

/* ---------------------------------------------------------------------- */
/*	Reporting
/* ---------------------------------------------------------------------- */
.report-container .panel-heading {
	height: auto;
	padding: 10px 15px;
}

.report-container .panel-body {
	padding: 0;
	margin: 0;
}

.google-visualization-table-table .google-visualization-table-tr-head .gradient, .google-visualization-table-tr-head-nonstrict .gradient, .google-visualization-table-div-page .gradient {
	background: #e8e8e8;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.google-visualization-table-table th,
.google-visualization-table-table th {
	vertical-align: bottom;
	text-align: center;
}

.google-visualization-table-table {
	width: 100%;
}

tr > .google-visualization-table-td {
	/*
	width: 100px;
 */
	min-width: 100px;
	white-space: nowrap;

}

tr > .google-visualization-table-td:first-child {
	width: 100%;
	white-space: normal;
/*
  width: auto;
	min-width: 100px;
*/
}

.google-visualization-table-table td,
.google-visualization-table-table td {
	vertical-align: top;
}

@media print {
	.google-visualization-table-table {
		border-collapse: collapse;
	}

	.google-visualization-table-table td {
		border: 1px solid #cccccc;
	}

}

/* ---------------------------------------------------------------------- */
/*	Document Tree
/* ---------------------------------------------------------------------- */
/*
.tree {
    min-height:20px;
    padding:19px;
    margin-bottom:20px;
    background-color:#fbfbfb;
		border:1px solid #999;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
}
*/
.tree li {
    list-style-type:none;
    margin:0;
    padding:10px 5px 0 5px;
    position:relative
}
.tree li::before, .tree li::after {
    content:'';
    left:-20px;
    position:absolute;
    right:auto
}
.tree li::before {
    border-left:1px solid #999;
    bottom:50px;
    height:100%;
    top:0;
    width:1px
}
.tree li::after {
    border-top:1px solid #999;
    height:20px;
    top:25px;
    width:25px
}
.tree li span {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;
    display:inline-block;
    padding: 8px;
    text-decoration:none
}
.tree li.parent_li>span {
    cursor:pointer
}
.tree>ul>li::before, .tree>ul>li::after {
    border:0
}
.tree li:last-child::before {
    height:30px
}
.tree li {
/*	display: none;*/
}
.tree ul.root > li {
	display: inherit;
}
.tree li.parent_li>span:hover, .tree li.parent_li>span:hover+ul li span , .tree li.file span:hover {
    background:#eee;
    border:1px solid #94a0b4;
    color:#000
}
.freeprivacypolicy-com---palette-dark button.cc-nb-okagree,
.freeprivacypolicy-com---palette-dark button.cc-nb-reject,
.freeprivacypolicy-com---palette-dark button.cc-cp-foot-save {
    background: #f7934f;
    color: #000;
}