/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/*
Author: L. Voogdt
License: MIT
Version: 1.0
*/

/* Marker setup */
.awesome-marker {
  background: url('images/markers-soft.png') no-repeat 0 0;
  width: 35px;
  height: 46px;
  position:absolute;
  left:0;
  top:0;
  display: block;
  text-align: center;
}

.awesome-marker-shadow {
  background: url('images/markers-shadow.png') no-repeat 0 0;
  width: 36px;
  height: 16px;
}

/* Retina displays */
@media (min--moz-device-pixel-ratio: 1.5),(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5),(min-resolution: 1.5dppx) {
 .awesome-marker {
  background-image: url('images/markers-soft@2x.png');
  background-size: 720px 46px;
 }
 .awesome-marker-shadow {
  background-image: url('images/markers-shadow@2x.png');
  background-size: 35px 16px;
 }
}

.awesome-marker i {
  color: #333;
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
}

.awesome-marker .icon-white {
  color: #fff;
}

/* Colors */
.awesome-marker-icon-red {
  background-position: 0 0;
}

.awesome-marker-icon-darkred {
  background-position: -180px 0;
}

.awesome-marker-icon-lightred {
  background-position: -360px 0;
}

.awesome-marker-icon-orange {
  background-position: -36px 0;
}

.awesome-marker-icon-beige {
  background-position: -396px 0;
}

.awesome-marker-icon-green {
  background-position: -72px 0;
}

.awesome-marker-icon-darkgreen {
  background-position: -252px 0;
}

.awesome-marker-icon-lightgreen {
  background-position: -432px 0;
}

.awesome-marker-icon-blue {
  background-position: -108px 0;
}

.awesome-marker-icon-darkblue {
  background-position: -216px 0;
}

.awesome-marker-icon-lightblue {
  background-position: -468px 0;
}

.awesome-marker-icon-purple {
  background-position: -144px 0;
}

.awesome-marker-icon-darkpurple {
  background-position: -288px 0;
}

.awesome-marker-icon-pink {
  background-position: -504px 0;
}

.awesome-marker-icon-cadetblue {
  background-position: -324px 0;
}

.awesome-marker-icon-white {
  background-position: -574px 0;
}

.awesome-marker-icon-gray {
  background-position: -648px 0;
}

.awesome-marker-icon-lightgray {
  background-position: -612px 0;
}

.awesome-marker-icon-black {
  background-position: -682px 0;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
	}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
.fa-spinner{
    color:#337ab7;
}
.dpa-function-variable {
    font-style: italic;
    font-weight: bold !important;
}

body {
    background-color: #f8f8f8;
}

.terms-and-conditions-modal{
    color: #004773;
}

.terms-and-conditions-modal .terms-modal {
    overflow-y:scroll;
    font-family:monospace;
    max-height:500px;
    position: relative;
    padding: 15px;
}
.terms-and-conditions-modal .modal-title{

}

.terms-and-conditions-modal .modal-header{
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.image-link{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
#wrapper-asset{
    margin-top: 51px;
}

@media screen (min-width: 768px) {

}
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#dropdownUser{
    top:8px;
}

#Science{
    top: 8px;
    font-weight: bold;
}
#wrapper.toggled {
    padding-left: 350px;
}

#sidebar-wrapper {
    z-index: 99;
    position: fixed;
    left: 375px;
    width: 0;
    height: 94%;
    margin-left: -375px;
    overflow-y: auto;
    /*background: #000;*/ /*black background*/

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 375px;
}

#page-content-wrapper {
    width: 100%;
    /* padding: 0 20px 20px 20px; */
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -350px;
}


/* Sidebar Styles */
/*main side bar components,  thick lines between items*/

.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand a {
    /*color:  #eee;*/
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;

}

.sidebar-nav .arrow {
    float: right;
}

.sidebar-nav .fa.arrow:before {
    content: "\f104";
}

.sidebar-nav .active>a>.fa.arrow:before {
    content: "\f107";
}

/*  LEVELS   */
.sidebar-nav .sidebar-nav-second-level,
.sidebar-nav .sidebar-nav-third-level {
    border-bottom: 0!important;
}

.sidebar-nav .sidebar-nav-second-level{
    padding-left: 17px;
}

.sidebar-nav .sidebar-nav-third-level {
    padding-left: 22px;
}

/*  content sizes   */

@media(min-width:768px) {
    #wrapper {
        padding-left: 350px;
        margin-top: 59px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 375px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    div#sidebar-wrapper {
        padding: 0px;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}

/*  sidebar search  */
.sidebar-nav .sidebar-search {
    padding: 15px;
}

/* Navbar Styles Styles */
.navbar-top-links li {
    display: inline-block;
}

.navbar-top-links li:last-child {
    /*margin-right: 15px;*/
}

.navbar-top-links li a {
    padding: 7px;
    min-height: 50px;
}

.navbar-top-links .dropdown-menu li {
    display: block;
}

.navbar-top-links .dropdown-menu li:last-child {
    margin-right: 0;
}

.navbar-top-links .dropdown-menu li a {
    padding: 3px 20px;
    min-height: 0;
}

.navbar-top-links .dropdown-menu li a div {
    white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
    width: 310px;
    min-width: 0;
}

.navbar-top-links .dropdown-messages {
    margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
    margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
    margin-left: -123px;
}

.navbar-top-links .dropdown-user {
    right: 0;
    left: auto;
}

/*  panel outline for contents  */
.panel{
    margin-bottom: 20px;
    background-color: white;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-color: #e9e9e9;
}


.panel > .panel-heading{
    color: #767676;
    background-color: #f6f6f6;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-color: #e9e9e9;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    text-transform: uppercase;
}

.panel-body{
    padding: 5px;
}

.platform-tile{
    margin: 10px;
    padding: 0px;
    height: 200px;
    width: 160px;
           *display: inline;

           vertical-align: top;
           display: inline-block;

           -webkit-transition: all .2s ease-in-out;
           -o-transition: all .2s ease-in-out;
           transition: all .2s ease-in-out;
}

.platform-tile:hover {
    border-color: purple;
}


.platform-tile-title{
    text-align: center;
}


.platform-tile-contents{
    text-align: center;
}

.platform-tile .status-icon {
    display: block;
    float: center;
    margin: 0 10px 0px 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    vertical-align: middle;
    text-align: center;
    font-size: 35px;
    margin-left: 35%;
    border: 5px solid transparent;
    border-color: #969696 ;
}

.small-status-icon {
    display: block;
    float: center;
    margin: 0 10px 0px 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    line-height: 15px;
    vertical-align: middle;
    text-align: center;
    font-size: 15px;
    margin-left: 0%;
    border: 1px solid transparent;
    border-color: #969696 ;
}

.status-ok {
    background-color: #23AE66;
    color: white;
}

.status-issue {
    background-color: #FFE944;
    color: white;
}

.status-error {
    background-color: #E03D2C;
    color: white;
}

.active-filter {
    background-color: #00333A;
}

.map-view{
    margin-left: 0px;
    height:330px;
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    z-index: 99;
}

.badge-error {
    background-color: #b94a48;
}

.badge-warning {
    background-color: #f89406;
}

.badge-success {
    background-color: #468847;
}

.badge-info {
    background-color: #3a87ad;
}

.badge-inverse {
    background-color: #333333;
}

#overview{
    margin-right: 50px;
    background-color: transparent;
}

.arrayMedia{
    border-style: solid;
    border-width: 0px;
}

.trans {
    background-color: LightBlue;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 100;
}
.parent-platform {
    font-weight: bold;
}

.stream-item a{
    color: #33B7B7;
}

.table-striped tbody tr.highlight {
    background: rgba(230,230,230,1);
    background: -moz-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 18%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 88%, rgba(230,230,230,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(230,230,230,1)), color-stop(15%, rgba(255,255,255,1)), color-stop(18%, rgba(255,255,255,1)), color-stop(50%, rgba(255,255,255,1)), color-stop(88%, rgba(255,255,255,1)), color-stop(100%, rgba(230,230,230,1)));
    background: -webkit-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 18%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 88%, rgba(230,230,230,1) 100%);
    background: -o-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 18%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 88%, rgba(230,230,230,1) 100%);
    background: -ms-linear-gradient(top, rgba(230,230,230,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 18%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 88%, rgba(230,230,230,1) 100%);
    background: linear-gradient(to bottom, rgba(230,230,230,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 18%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 88%, rgba(230,230,230,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6e6', endColorstr='#e6e6e6', GradientType=0 );
}

.leaflet-popup-content-wrapper {
    /* background-color: rgba(250, 250, 250, 0.17); */
    background-color:  rgba(177, 204, 231, 0.88);
    border: 1px solid white;
}
.leaflet-popup-content {
    width: auto !important;
    /* margin: 15px 20px; */
    margin: 2px 2px 2px 2px; /* outer border */
    border-radius: 12px;
    background-color: rgba(177, 204, 231, 0.88);
    /* background-color: #9BB9DB; */
    /* background-color: transparent; */
}

.leaflet-popup-content p {
    font-weight: 300px;
    width: 420px !important;
    /* margin: -11px 4px 4px 4px; /* inner sections(title, lat/lon) */ */
    /* white-space : nowrap; */
    /* text-align  : left; */
    background-color: white;
    background: white;  padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-bottom: 2px;
    margin-top: 2px;
}

.leaflet-container a.leaflet-popup-close-button {
    top: -6px;
    color: white;
    right: -6px;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 0px 0;
    font-size: 12px;
    line-height: 1.42;
    border-radius: 15px;
    background-color: rgba(177, 204, 231, .88);
    border: 1px solid white;
}

.map-pop-container {
    width: auto;
    height: 125px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: white;
}

/* scrollbar styling */
#assembly-pop-container::-webkit-scrollbar,
.map-pop-container::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}

/* Track */
#assembly-pop-container::-webkit-scrollbar-track,
.map-pop-container::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
#assembly-pop-container::-webkit-scrollbar-thumb ,
.map-pop-container::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #D1DAF5;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
#assembly-pop-container::-webkit-scrollbar-thumb:window-inactive,
.map-pop-container::-webkit-scrollbar-thumb:window-inactive {
    background: #D1DAF5;
}

h4#arrayPopup {
    border-top-left-radius:12px;
    border-top-right-radius:12px;
    background-color: #FFF;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left:10px;
    padding-right: 10px;
    margin-top:2px;
    margin-bottom:-13px;
}

img#clusterImg {
    float: right;
    vertical-align: middle;
}
img#arrayImg {
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-bottom-right-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-bottom-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.cluster-popup h4 {
    background: white;
    padding: 10px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    margin-bottom: 2px;
    margin-top: 2px;
}
/* .cluster-popup h4 p { */
/*   background: white; */
/* } */
/*  */

/**********/
/* Scroll */
/*********/

table#popupInstrumentTable {
    background-color: white;
    width: 460px;
    margin: 0px;
    padding: 0px;
}

#popupInstrumentTable.nasdaq thead tr {
    background: linear-gradient(#fff, #7E9CD9);
    border-bottom-color: #F09349;
}
#popupInstrumentTable.nasdaq th {
    text-transform: none;
    font-weight: 500;
    text-align: left;
    background: linear-gradient(#fff, #7E9CD9);
    background-image: -moz-linear-gradient(#fff, #7E9CD9);
    background-image: -webkit-gradient(#fff, #7E9CD9);
    border: 1px solid #D1DAF5;
}

#popupInstrumentTable.nasdaq th,
#popupInstrumentTable.nasdaq td {
    padding: 6px 8px;
    font-size: 8pt;
}

#assembly-scroll-block.scrollable-block table {
    margin-top: 2px;
}

#assembly-scroll-block.scrollable-block {
    padding: 70px 0px;
    margin-top: -72px;
    margin-bottom: -72px;
    margin-left: 0px;
}

#popupInstrumentTable.nasdaq tbody::-webkit-scrollbar {
    width: 1px;
    background: transparent;
    border: 1px solid #D1DAF5;
}
/* End Scroll
 */


    #latLon {
        background-color:white;
        width: auto;
        margin-top: 2px;
        margin-bottom: 2px;
        padding: 5px 10px 5px 10px;
        height: 25px;
        text-align: center;
}
ul#latLon > li {
    display: inline;
    padding: 14px;
}
ul#latLon > li#engInst {
    float: right;
}
input#engChkBox {
    margin-top: 2px;
}

#popTitle {
    background-color:white;
    width:auto;
    margin-top:0;
    margin-bottom:0px;
    padding:5px 10px 5px 10px;
    border-top-right-radius:12px;
    border-top-left-radius:12px;"
}

    #popFooter {
    background-color: white;
    width: auto;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 5px 10px 5px 10px;
    height: 25px;
}

    #deployEvents {
    background-color:white;
    width:auto;
    margin-top:2px;
    margin-bottom:0px;
    padding:5px 10px 5px 10px;"
}

.floatLeft {
    width: 50%;
    float: left;
    background-color: white;
    padding: 5px 10px 5px 50px;

    /* background-color: #fff; */
    /*}background-image: radial-gradient( 100% 100%, #fff, rgba(81, 203, 238, 0.15)); */
    /* /* box-shadow: 0 0 10px rgba(81, 203, 238, 1); */ */
    /* /* border: 1px solid rgba(81, 203, 238, 1); */ */
    /* padding-left: 30px; */
}

.floatRight {
    width: 50%;
    float: right;
    background-color: white;
    padding: 5px 10px 5px 50px;
    /*  */
    /* background-color: #fff; */
    /* background-image: radial-gradient(100% 100%, #fff, rgba(253, 196, 196, .15)); */
    /* /* box-shadow: 0 0 10px rgba(250, 128, 128, 1); */ */
    /* /* border: 1px solid rgba(252, 171, 171, 1); */ */
    /* padding-left: 30px; */
}
.floatRight > h6,
.floatLeft > h6 {
    background-color:white;
    width:auto;
    margin-top:5px;

}
.latFloat {
    float: left;
}

.lonFloat {
    width: 60%;
    float: right;
}

/* h4 { */
/*     background-color: white; */
/*     width: auto; */
/*     margin-bottom: 5px; */
/*     /* padding-right: 3px; */ */
/*     padding-left: 5px; */
/*   } */

/* .leaflet-popup-content { */
/*     width: auto !important; */
/*     margin: -10px 5px 5px 5px; */
/*     background-color: transparent; */

.fixed-table-container .bs-checkbox,.fixed-table-container .no-records-found{text-align:center}.fixed-table-body thead th .th-inner,.table td,.table th{box-sizing:border-box}.bootstrap-table .table{margin-bottom:0!important;border-bottom:1px solid #ddd;border-collapse:collapse!important;border-radius:1px}.bootstrap-table .table:not(.table-condensed),.bootstrap-table .table:not(.table-condensed)>tbody>tr>td,.bootstrap-table .table:not(.table-condensed)>tbody>tr>th,.bootstrap-table .table:not(.table-condensed)>tfoot>tr>td,.bootstrap-table .table:not(.table-condensed)>tfoot>tr>th,.bootstrap-table .table:not(.table-condensed)>thead>tr>td{padding:8px}.bootstrap-table .table.table-no-bordered>tbody>tr>td,.bootstrap-table .table.table-no-bordered>thead>tr>th{border-right:2px solid transparent}.bootstrap-table .table.table-no-bordered>tbody>tr>td:last-child{border-right:none}.fixed-table-container{position:relative;clear:both;border:1px solid #ddd;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px}.fixed-table-container.table-no-bordered{border:1px solid transparent}.fixed-table-footer,.fixed-table-header{overflow:hidden}.fixed-table-footer{border-top:1px solid #ddd}.fixed-table-body{overflow-x:auto;overflow-y:auto;height:100%}.fixed-table-container table{width:100%}.fixed-table-container thead th{height:0;padding:0;margin:0;border-left:1px solid #ddd}.fixed-table-container thead th:focus{outline:transparent solid 0}.fixed-table-container thead th:first-child{border-left:none;border-top-left-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px}.fixed-table-container tbody td .th-inner,.fixed-table-container thead th .th-inner{padding:8px;line-height:24px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fixed-table-container thead th .sortable{cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px}.fixed-table-container thead th .both{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAQAAADYWf5HAAAAkElEQVQoz7X QMQ5AQBCF4dWQSJxC5wwax1Cq1e7BAdxD5SL+Tq/QCM1oNiJidwox0355mXnG/DrEtIQ6azioNZQxI0ykPhTQIwhCR+BmBYtlK7kLJYwWCcJA9M4qdrZrd8pPjZWPtOqdRQy320YSV17OatFC4euts6z39GYMKRPCTKY9UnPQ6P+GtMRfGtPnBCiqhAeJPmkqAAAAAElFTkSuQmCC')}.fixed-table-container thead th .asc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZ0lEQVQ4y2NgGLKgquEuFxBPAGI2ahhWCsS/gDibUoO0gPgxEP8H4ttArEyuQYxAPBdqEAxPBImTY5gjEL9DM+wTENuQahAvEO9DMwiGdwAxOymGJQLxTyD+jgWDxCMZRsEoGAVoAADeemwtPcZI2wAAAABJRU5ErkJggg==)}.fixed-table-container thead th .desc{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAZUlEQVQ4y2NgGAWjYBSggaqGu5FA/BOIv2PBIPFEUgxjB+IdQPwfC94HxLykus4GiD+hGfQOiB3J8SojEE9EM2wuSJzcsFMG4ttQgx4DsRalkZENxL+AuJQaMcsGxBOAmGvopk8AVz1sLZgg0bsAAAAASUVORK5CYII=)}.fixed-table-container th.detail{width:30px}.fixed-table-container tbody td{border-left:1px solid #ddd}.fixed-table-container tbody tr:first-child td{border-top:none}.fixed-table-container tbody td:first-child{border-left:none}.fixed-table-container tbody .selected td{background-color:#f5f5f5}.fixed-table-container .bs-checkbox .th-inner{padding:8px 0}.fixed-table-container input[type=radio],.fixed-table-container input[type=checkbox]{margin:0 auto!important}.fixed-table-pagination .pagination-detail,.fixed-table-pagination div.pagination{margin-top:10px;margin-bottom:10px}.fixed-table-pagination div.pagination .pagination{margin:0}.fixed-table-pagination .pagination a{padding:6px 12px;line-height:1.428571429}.fixed-table-pagination .pagination-info{line-height:34px;margin-right:5px}.fixed-table-pagination .btn-group{position:relative;display:inline-block;vertical-align:middle}.fixed-table-pagination .dropup .dropdown-menu{margin-bottom:0}.fixed-table-pagination .page-list{display:inline-block}.fixed-table-toolbar .columns-left{margin-right:5px}.fixed-table-toolbar .columns-right{margin-left:5px}.fixed-table-toolbar .columns label{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.428571429}.fixed-table-toolbar .bs-bars,.fixed-table-toolbar .columns,.fixed-table-toolbar .search{position:relative;margin-top:10px;margin-bottom:10px;line-height:34px}.fixed-table-pagination li.disabled a{pointer-events:none;cursor:default}.fixed-table-loading{display:none;position:absolute;top:42px;right:0;bottom:0;left:0;z-index:99;background-color:#fff;text-align:center}.fixed-table-body .card-view .title{font-weight:700;display:inline-block;min-width:30%;text-align:left!important}.table td,.table th{vertical-align:middle}.fixed-table-toolbar .dropdown-menu{text-align:left;max-height:300px;overflow:auto}.fixed-table-toolbar .btn-group>.btn-group{display:inline-block;margin-left:-1px!important}.fixed-table-toolbar .btn-group>.btn-group>.btn{border-radius:0}.fixed-table-toolbar .btn-group>.btn-group:first-child>.btn{border-top-left-radius:4px;border-bottom-left-radius:4px}.fixed-table-toolbar .btn-group>.btn-group:last-child>.btn{border-top-right-radius:4px;border-bottom-right-radius:4px}.bootstrap-table .table>thead>tr>th{vertical-align:bottom;border-bottom:1px solid #ddd}.bootstrap-table .table thead>tr>th{padding:0;margin:0}.bootstrap-table .fixed-table-footer tbody>tr>td{padding:0!important}.bootstrap-table .fixed-table-footer .table{border-bottom:none;border-radius:0;padding:0!important}.bootstrap-table .pull-right .dropdown-menu{right:0;left:auto}p.fixed-table-scroll-inner{width:100%;height:200px}div.fixed-table-scroll-outer{top:0;left:0;visibility:hidden;width:200px;height:150px;overflow:hidden}.fixed-table-pagination:after,.fixed-table-toolbar:after{content:"";display:block;clear:both}
log/* CSS REQUIRED */
.lgn .btn-launch{
  margin: 20px;
}
.lgn .modal-dialog{
  width: 377px;
}
.lgn-center{
  padding: 5px;
  text-align: center;
}
.lgn-logo{
  padding: 15px;
  text-align: center;
  margin-top: -20px;
}
.lgn-header{
  min-height: 35px;
  padding: 1px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.lgn-body{
  position: relative;
  padding: 40px 32px 25px 32px;
}
.lgn-footer{
  min-height: 40px;
  padding: 1px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.lgn-footerPass{
  min-height: 40px;
  padding: 0px 0px 10px 10px;
  /*border-top: 0px;*/
  font-size: 10px;
  float: left;
}
.lgn-footerNewUser{
  min-height: 40px;
  padding: 0px 10px 10px 0px;
  font-size: 12px;
  float: right;
}
/*button#btnLogin {*/
 /*background: #4fd934;*/
 /*background-image: -webkit-linear-gradient(top, #4fd934, #298c29);*/
 /*background-image: -moz-linear-gradient(top, #4fd934, #298c29);*/
 /*background-image: -ms-linear-gradient(top, #4fd934, #298c29);*/
 /*background-image: -o-linear-gradient(top, #4fd934, #298c29);*/
 /*background-image: linear-gradient(to bottom, #4fd934, #298c29);*/
 /*-webkit-border-radius: 6;*/
 /*-moz-border-radius: 6;*/
 /*border-radius: 6px;*/
 /*padding: 0px 40px 0px 40px;*/
 /*border: solid #9ff5a2 2px;*/
 /*text-decoration: none;*/
 /*font-weight: 300;*/
 /*margin-top: 15px;*/
 /*line-height: 1.4;*/
/*}*/
div.image {
 content: url(/img/modal/OOI_Banner.svg);
 height: 160px;
 margin-left: auto;
 margin-right: auto;
 margin-top: -60px;
 margin-bottom: -30px;
}
  /*
   * ~ .water-image ~
   * Source: http://pixabay.com/en/abstract-blue-bubble-clean-drop-72288/
   * License: CC0 Public Domain - http://creativecommons.org/publicdomain/zero/1.0/deed.en
   * */
div.water-image {
  content: url(/img/modal/water-devider.png);
  margin-left: -35px;
  margin-right: auto;
  margin-top: -20px;
  margin-bottom: -3px;
}
button.close{
  padding: 4px 7px 0px 0px;
  font-family: Arial;
  font-size: 20px;
}
button.question{
  padding: 4px 7px 0px 0px;
  font-family: Arial;
  font-size: 20px;
}
.lgn input[type=text], .lgn input[type=password] {
  width: 80%;
}
.lgn input[type=text]{
  font-family: FontAwesome;
  background: 1px 1px no-repeat, linear-gradient(to bottom, #f7f7f8 0%,#ffffff 100%);
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding-left: 4px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}
.lgn input[type=text]:focus, textarea:focus {
  font-family: FontAwesome;
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(81, 203, 238, 1);
  background: 12px 11px no-repeat, #FFF;
}
.lgn input[type=password]{
  font-family: FontAwesome;
  background: 1px 1px no-repeat, linear-gradient(to bottom, #f7f7f8 0%,#ffffff 100%);
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding-left: 4px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}
.lgn input[type=password]:focus, textarea:focus {
  font-family: FontAwesome;
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(81, 203, 238, 1);
  background: 12px 11px no-repeat, #FFF;
}
.lgn-message,
.lgn-warning {
    color: #fd0404;
}
.dropdown-menu{
  min-width: 200px !important;
}

.lgn-body #orDiv {
    height: 1px;
    background-color: grey;
    position: relative;
    top: -0.5em;
    margin: 20px 0 20px 0;
}

.lgn-body #orDiv > span {
    background-color: white;
    position: relative;
    top: -0.5em;
    padding: 0 10px;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #d3d3d3;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #999999;
	background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #212121;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #aaaaaa;
	background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #aaaaaa;
	background-color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636;
}
.ui-state-checked {
	border: 1px solid #fcefa1;
	background: #fbf9ee;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("images/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("images/ui-icons_222222_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("images/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("images/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("images/ui-icons_cd0a0a_256x240.png");
}
.ui-button .ui-icon {
	background-image: url("images/ui-icons_888888_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: -8px -8px 8px #aaaaaa;
	box-shadow: -8px -8px 8px #aaaaaa;
}

.backgrid-container{position:relative;display:block;width:100%;height:465px;padding:0;overflow:auto;border:0}.backgrid{width:100%;max-width:100%;background-color:transparent;border-collapse:collapse;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.backgrid td,.backgrid th{display:none;height:20px;max-width:250px;padding:4px 5px;overflow:hidden;line-height:20px;text-align:left;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;cursor:pointer;border-bottom:1px solid #DDD}.backgrid td.renderable,.backgrid th.renderable{display:table-cell}.backgrid th{font-weight:700;text-align:center}.backgrid th.sortable a{text-decoration:none;white-space:nowrap;cursor:pointer}.backgrid thead th{vertical-align:bottom;background-color:#f9f9f9}.backgrid thead th a{display:block}.backgrid.backgrid-striped tbody tr:nth-child(even){background-color:#f9f9f9}.backgrid tbody tr.empty{font-style:italic;color:gray}.backgrid tbody tr.empty td{display:inherit;text-align:center}.backgrid td.editor{padding:0}.backgrid tbody tr:nth-child(odd) td.editor,.backgrid td.editor{background-color:rgba(82,168,236,.1);outline:rgba(82,168,236,.8) solid 1px;outline-offset:-1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition-duration:200ms;-moz-transition-duration:200ms;-o-transition-duration:200ms;transition-duration:200ms;-webkit-transition-property:width,outline,background-color;-moz-transition-property:width,outline,background-color;-o-transition-property:width,outline,background-color;transition-property:width,outline,background-color;-webkit-transition-timing-function:ease-in-out;-moz-transition-timing-function:ease-in-out;-o-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.backgrid td.editor input[type=text]{display:block;width:100%;height:100%;padding:0 5px;margin:0;background-color:transparent;border:0;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none}.backgrid td.editor input[type=text]::-ms-clear{display:none}.backgrid tbody tr:nth-child(odd) td.error,.backgrid td.error{background-color:rgba(255,210,77,.1);outline:#ffd24d solid 1px}.backgrid td.editor :focus,.backgrid th.editor:focus{outline:0}.backgrid .sort-caret{display:inline-block;width:0;height:0;margin-left:.3em;border:0;content:""}.backgrid .ascending .sort-caret{vertical-align:baseline;border-top:0;border-right:4px solid transparent;border-bottom:4px solid #000;border-left:4px solid transparent}.backgrid .descending .sort-caret{vertical-align:super;border-top:4px solid #000;border-right:4px solid transparent;border-bottom:0;border-left:4px solid transparent}.backgrid .boolean-cell,.backgrid .boolean-cell.editor input[type=checkbox],.backgrid .date-cell,.backgrid .date-cell.editor input[type=text],.backgrid .datetime-cell,.backgrid .datetime-cell.editor input[type=text],.backgrid .email-cell,.backgrid .email-cell.editor input[type=text],.backgrid .integer-cell,.backgrid .integer-cell.editor input[type=text],.backgrid .number-cell,.backgrid .number-cell.editor input[type=text],.backgrid .percent-cell,.backgrid .percent-cell.editor input[type=text],.backgrid .select-cell,.backgrid .string-cell,.backgrid .string-cell.editor input[type=text],.backgrid .time-cell,.backgrid .time-cell.editor input[type=text],.backgrid .uri-cell,.backgrid .uri-cell.editor input[type=text]{text-align:center}.backgrid .select-cell.editor{padding:0}.backgrid .select-cell.editor select{display:block;width:100%;height:28px;padding:4px 5px;margin:0;line-height:28px;vertical-align:middle;background-color:#fff;border:0;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.backgrid .select-cell.editor select[multiple]{height:auto}.backgrid .select-cell.editor :focus{border:0;outline:0}.backgrid .select-cell.editor optgroup::-moz-focus-inner,.backgrid .select-cell.editor optgroup::-o-focus-inner,.backgrid .select-cell.editor option::-moz-focus-inner,.backgrid .select-cell.editor option::-o-focus-inner,.backgrid .select-cell.editor select::-moz-focus-inner,.backgrid .select-cell.editor select::-o-focus-inner{border:0}.backgrid-paginator{text-align:center;border-top:0;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.backgrid-paginator ul{display:inline-block;margin:5px 0}.backgrid-paginator ul>li{display:inline}.backgrid-paginator ul>li>a,.backgrid-paginator ul>li>span{float:left;width:30px;height:30px;padding:0;line-height:30px;text-decoration:none}.backgrid-paginator ul>.active>a,.backgrid-paginator ul>.active>span,.backgrid-paginator ul>li>a:hover{background-color:#f5f5f5}.backgrid-paginator ul>.active>a,.backgrid-paginator ul>.active>span,.backgrid-paginator ul>.disabled>a,.backgrid-paginator ul>.disabled>a:hover,.backgrid-paginator ul>.disabled>span{color:#999;cursor:default}.backgrid .select-all-header-cell,.backgrid .select-row-cell{text-align:center}.backgrid-filter.form-search{position:relative;width:248px;height:30px;margin:20px}.backgrid-filter .search{position:absolute;top:50%;left:6px;z-index:1000;width:10px;height:20px;margin-top:-10px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.backgrid-filter .search:before{position:absolute;top:50%;left:0;width:6px;height:6px;margin-top:-6px;background:0 0;border:3px solid gray;-webkit-border-radius:12px;-moz-border-radius:12px;border-radius:12px;content:"";-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.backgrid-filter .search:after{position:absolute;top:50%;left:10px;width:3px;height:7px;margin-top:2px;background-color:gray;content:"";-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.backgrid-filter .clear{position:absolute;top:50%;right:8px;z-index:1000;width:10px;height:20px;margin-top:-10px;font-family:sans-serif;font-size:20px;font-weight:700;line-height:20px;color:gray;text-decoration:none}.backgrid-filter input[type=search]{position:absolute;display:inline-block;width:206px;height:20px;padding:4px 6px;font-weight:400;color:#555;vertical-align:middle;background-color:#fff;border:1px solid #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}.backgrid-filter input{margin:0;font-family:inherit;font-size:100%;line-height:normal}.backgrid-filter input[disabled]{cursor:default}.backgrid-filter input[type=search]{outline:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:none}.backgrid-filter input[type=search]::-ms-clear{display:none}.backgrid-filter input::-moz-focus-inner{padding:0;border:0}.backgrid-filter input[type=search]{padding-right:18px;padding-left:22px}
/* icons font-face */
@font-face {
    font-family: "FiltrifyRegular";
    src: url("../font/filtrify/filtrify-webfont.eot");
    src: url("../font/filtrify/filtrify-webfont.eot?#iefix") format("embedded-opentype"),
         url("../font/filtrify/filtrify-webfont.woff") format("woff"),
         url("../font/filtrify/filtrify-webfont.ttf") format("truetype"),
         url("../font/filtrify/filtrify-webfont.svg#FiltrifyRegular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.ft-highlight

/* reset */
ul.ft-menu,
ul.ft-menu * { 
	margin: 0; 
	border: 0; 
	padding: 0;
	line-height: 1;
	position: relative;
	text-align: left;
    font: normal normal 100% sans-serif;
}


ul.ft-menu { 
	list-style: none;
}

ul.ft-menu > li.ft-field { 
	display: inline-block; 
	*display: inline; 
	*zoom: 1;
	margin-right: 30px;
	background: none !important;
	position: relative !important;
}

ul.ft-menu > li.ft-field > span.ft-label { 
    cursor: pointer; 
}
ul.ft-menu > li.ft-field > span.ft-label:before { 
    font-family: "FiltrifyRegular"; 
    content: "s"; 
    display: inline-block; 
    *display: inline; 
	*zoom: 1;
    width: 20px;
}
ul.ft-menu > li.ft-field > span.ft-label:after { 
    font-size: 80%; 
    content: " \25bc"; 
}
ul.ft-menu > li.ft-field > span.ft-label.ft-active:before { 
    content: "T"; 
    color: #2D3743; 
}
ul.ft-menu > li.ft-field > span.ft-label.ft-opened:after { 
    content: " \25b2"; 
}

ul.ft-menu > li.ft-field > div.ft-panel { 
	position: absolute; 
	min-width: 200px; 
	background-clip: padding-box;
	border: 5px solid #333333;
	border: 5px solid rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	top: 100%;
	margin-top: 15px;
	left: 50%;
	margin-left: -105px;
	z-index: 9999;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
ul.ft-menu > li.ft-field > div.ft-panel:before,
ul.ft-menu > li.ft-field > div.ft-panel:after {
	position: absolute;
	content: " ";
	height: 0;
	width: 0;
	left: 50%;
}
ul.ft-menu > li.ft-field > div.ft-panel:before {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #333333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.3);
	top: -15px;
	margin-left: -10px;
}
ul.ft-menu > li.ft-field > div.ft-panel:after {
	content: " ";
	height: 0;
	width: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #F5F3EE;
	top: -8px;
	margin-left: -8px;
}

ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-selected {
	padding: 10px 10px 0 10px;
	background: #F5F3EE;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-selected > li {
	font-size: 10px;
	display: inline-block;
	*display: inline; 
	*zoom: 1;
	margin: 1px;
	cursor: pointer;
	padding: 0px 5px 1px 5px;
	color: white;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
	border: 1px solid #057ED0;
	border: 1px solid rgba(5, 126, 208, 0.7);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
	background: #337ab7;
	/*background: #019AD2;
	background: -webkit-linear-gradient(#33BCEF, #019AD2);
	background: -moz-linear-gradient(#33BCEF, #019AD2);
	background: -o-linear-gradient(#33BCEF, #019AD2);
	background: -ms-linear-gradient(#33BCEF, #019AD2);
	background: linear-gradient(#33BCEF, #019AD2);*/
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-selected > li:after {
	content: " \00D7";
	color: white;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-selected > li:active {
	/*background: #33BCEF;
	background: -webkit-linear-gradient(#019AD2, #33BCEF);
	background: -moz-linear-gradient(#019AD2, #33BCEF);
	background: -o-linear-gradient(#019AD2, #33BCEF);
	background: -ms-linear-gradient(#019AD2, #33BCEF);
	background: linear-gradient(#019AD2, #33BCEF);*/
	background: #337ab7;
}

ul.ft-menu > li.ft-field > div.ft-panel > fieldset.ft-search { 
	padding: 10px;
	background: #f6f6f6;
	/*background: -webkit-linear-gradient(#F5F3EE, #D0CDC9);
	background: -moz-linear-gradient(#F5F3EE, #D0CDC9);
	background: -o-linear-gradient(#F5F3EE, #D0CDC9);
	background: -ms-linear-gradient(#F5F3EE, #D0CDC9);
	background: linear-gradient(#F5F3EE, #D0CDC9);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#F5F3EE", EndColorStr="#D0CDC9");*/
}
ul.ft-menu > li.ft-field > div.ft-panel > fieldset.ft-search:before {
	font: normal normal 12px "FiltrifyRegular";
	content: "s";
	position: absolute;
    width: 20px;
	bottom: 15px;
	left: 18px;
	color: #BBB;
	text-shadow: none;
	z-index: 1;
}
ul.ft-menu > li.ft-field > div.ft-panel > fieldset.ft-search > input { 
	outline: none;
	display: block;
	width: 140px;
	padding: 4px 10px 4px 25px;
	color: gray;
	background: white;
	-webkit-border-radius: 13px;
	-moz-border-radius: 13px;
	border-radius: 13px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.4), inset 0 1px 0 rgba(0,0,0,.3);
}

ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags { 
	position: relative !important; 
	max-height: 200px !important; 
	border-top: 1px solid #33373D;
	overflow-x: hidden; 
	overflow-y: auto; 
	width: 100%;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags > li { 
	font-size: 13px;
	border-bottom: 1px solid #33373D;
	display: block;
	color: #337ab7;
	padding: 8px 35px 8px 15px;
	cursor: pointer;
	background: #616975;
	background: -webkit-linear-gradient(#727A86, #505864);
	background: -moz-linear-gradient(#727A86, #505864);
	background: -o-linear-gradient(#727A86, #505864);
	background: -ms-linear-gradient(#727A86, #505864);
	background: linear-gradient(#E8E8E8, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#727a86", EndColorStr="#505864");
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags > li:after { 
	content: attr(data-count);
    font-size: 11px;
    font-weight: normal;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -9px;
	padding: 3px 6px;
	color: white;
	background: #48515C;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags > li.ft-highlight { 
	border-bottom: 1px solid #103C56;
	box-shadow: rgb(238,238,238);
	background: rgb(238,238,238);
	/*background: -webkit-linear-gradient(#45C7EB, #2698DB);
	background: -moz-linear-gradient(#45C7EB, #2698DB);
	background: -o-linear-gradient(#45C7EB, #2698DB);
	background: -ms-linear-gradient(#45C7EB, #2698DB);
	background: linear-gradient(#45C7EB, #2698DB);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#45c7eb", EndColorStr="#2698db");*/
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags > li.ft-highlight:active {
	background: -webkit-linear-gradient(#2698DB, #45C7EB);
	background: -moz-linear-gradient(#2698DB, #45C7EB);
	background: -o-linear-gradient(#2698DB, #45C7EB);
	background: -ms-linear-gradient(#2698DB, #45C7EB);
	background: linear-gradient(#2698DB, #45C7EB);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#2698DB", EndColorStr="#45C7EB");
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags > li.ft-highlight:after {
	background: #2173A1;
}

ul.ft-menu > li.ft-field > div.ft-panel > div.ft-mismatch {
    font-size: 11px;
	padding: 10px 15px;
	color: white;
	background: #555555;
	background: -webkit-linear-gradient(#555555, #333333);
	background: -moz-linear-gradient(#555555, #333333);
	background: -o-linear-gradient(#555555, #333333);
	background: -ms-linear-gradient(#555555, #333333);
	background: linear-gradient(#555555, #333333);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#555555", EndColorStr="#333333");
}

/* REQUIRED! */
.ft-hidden { display: none !important; }


/* Custom webkit scrollbars */
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar {
    width: 10px;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
    background: #DDD;
}
ul.ft-menu > li.ft-field > div.ft-panel > ul.ft-tags::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
    background: #EEE;
}


/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:bold;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,0.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em !important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}

/***********************
******** Banner ********
***********************/
.banner-image {
  background: url("/img/logos-banners/ooi-banner-1024.png");
  background-repeat: no-repeat;
  background-position-x: 50%;
  display: block;
  max-width: 100%;
  width: 100%;
  position: fixed;
  height: auto;
  z-index: 1001;
	background-color: #FFF;
}

/* ~ adjust #wrapper & #page-content-wrapper for content below the banner & navbar ~ */
div#wrapper {
  padding-left: 375px;
}

div#gloss-wrapper {
  margin-top: 170px;
}

div#wrapper-status{
  margin-top: 170px;
  text-align: center;

}

div#wrapper-asset {
  margin-top: 170px;
}

.terms-link{
  /*z-index: 100;*/
  /*position: absolute;*/
  /*top: 0px;*/
  /*right: 0px;*/
  /*font-size: 10px;*/
  /*padding-top: 2px;*/
  /*padding-bottom: 3px;*/
  /*padding-right: 5px;*/
  /*padding-left: 5px;*/
  background-color: white;
  color: #05A9E1;
  cursor: pointer;
}

.terms-link.news-active{
  background-color: #004773;
  color: white;
}

/* #sidebar-wrapper { */
/*   z-index: 500; */
/* } */

.left { text-align: left; }
.right {text-align: right; }
.rightright {text-align: right; }
.center {text-align: center; }

#fadein-left > li.logo-left {
  /* float: left; */
  /* left: 30px; */
	text-decoration: left;
}

.logo-right {
  /* float: right; */
  /* right: 0px; */
	text-align: right;
}
#fadein-left > li {
	display: table-cell;
	width: 33%;
}

@media screen and (max-width: 1024px) {
#fadein-left > li.banner-title {
	line-height: 1;
}
}
#fadein-left > li.banner-title {
    /*float: left;*/
    /*padding-left: 25%;*/
    padding-top: 5px;
    /*width: 100%;*/
    height: 75px;
    display: inline;
    position: relative;
    text-align: center;

    color: #000;
    opacity: 0.7;
    /*font-size: 30px;*/
    font-size: xx-large;
    font-family: Athelas;
    font-weight: normal;
    text-transform: uppercase;
    list-style: none;
    /*animation: fadein 7s;*/
    /*-moz-animation: fadein 7s; !* Firefox *!*/
    /*-webkit-animation: fadein 7s; !* Safari and Chrome *!*/
    /*-o-animation: fadein 7s; !* Opera *!*/
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:.2;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:.2;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:.2;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 2;
    }
}

@media screen and (max-width: 1185px) {
	#fadein-left > li.banner-title {
	line-height: .9;
	}
}
/* this is a temporary fix...spacing is off */
@media screen and (max-width: 815px) {
	#fadein-left > li.banner-title {
	line-height: .5;
	}
}

/*.text-body {
  display: inline;
  color: #000;
	position: relative;
	left: 50%;
}*/
.breaking-news-headline {
  display: block;
  position: absolute;
  font-family: arial;
  font-size: 13px;
  margin-top: -22px;
  color: white;
  margin-left: 25%;
  padding-top: 3px;
  overflow : hidden;
  white-space: nowrap;
}

.breaking-news-headline2 {
  display: block;
  position: absolute;
  font-family: arial;
  font-size: 13px;
  margin-top: -22px;
  color: white;
  margin-left: 75%;
  padding-top: 3px;
  overflow : hidden;
  white-space: nowrap;
}

.breaking-news-headline3 {
  display: block;
  position: absolute;
  font-family: arial;
  font-size: 13px;
  margin-top: -22px;
  color: white;
  margin-left: 125%;
  padding-top: 3px;
  overflow : hidden;
  white-space: nowrap;
}

.breaking-news-title:after{
  content:"";
  position: absolute;
  display: block;
  width: 0px;
  height: 0px;
  right: -12px;
  top: 0;
  border-right:12px solid transparent;
  border-left: 0px solid transparent;
  border-top: 30px solid #05A9E1;
}

.breaking-news-title:before{
  content:"";
  position: absolute;
  display: block;
  width: 0px;
  height: 0px;
  top: 0;
  left: -12px;
  border-left:12px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 30px solid #05A9E1;
}
.breaking-news-title {
  background-color: #05A9E1;
  display: block;
  height: 20px;
  width: 10%;
  color: white;
  font-family: arial;
  font-size: 13px;
  /*position: absolute;*/
    position: -webkit-sticky;
  position: sticky;
  top: 0;
  /*top: 0px;*/
  margin-top: -22px;
  margin-left: 20px;
  padding-left: 10px;
  z-index: 3;
}
#breaking-news-colour {
  top: 0px;
  height: 18px;
  width: 100%;
  background-color: #004773;
}

a.divLink {
  display: inline-block;
  position: relative;
  padding: 2em;
  margin: -2em;
  color: #05A9E1;
  width: 100%;
  height: 100%;

  text-decoration: none;
  /* Makes sure the link doesn't get underlined */
  z-index: 10;
  /* raises anchor tag above everything else in div */
  background-color: white;
  /*workaround to make clickable in IE */
  opacity: 0;
  /*workaround to make clickable in IE */
  filter: alpha(opacity=0);
  /*workaround to make clickable in IE */
}

#breaking-news-container:hover {
  background-image: -webkit-linear-gradient(top, #05A9E1 0,#b9def0 100%);
}

#breaking-news-container > p {
  font-weight: normal;
}

#breaking-news-container > p:hover {
  font-weight: bold;
}

#breaking-news-container {
  top: 0;
  left: 250px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  width: max-content;
  overflow: hidden;
  position: absolute;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-image: -webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);
}

.animated {
  -webkit-animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 0.2s;
  -moz-animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
}

.delay-animated {
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 0.4s;
  -moz-animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.scroll-animated {
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-animated2 {
  -webkit-animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-duration: 3s;
  -moz-animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fadein {
  -webkit-animation-name: fadein;
  -moz-animation-name: fadein;
  -o-animation-name: fadein;
  animation-name: fadein;
}

.slidein {
  -webkit-animation-name: slidein;
  -moz-animation-name: slidein;
  -o-animation-name: slidein;
  animation-name: slidein;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  100% { left: -80%; }
}

.marquee {
  animation: marquee 30s linear infinite;
  -webkit-animation-duration: 30s;
  -moz-animation-duration: 30s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes slidein {
  from {
    margin-left: 8000px
  }
  to {
    margin-top: 0px
  }
}
@-moz-keyframes slidein {
  from {
    margin-left: 8000px
  }
  to {
    margin-top: 0px
  }
}

.slideup {
  -webkit-animation-name: slideup;
  -moz-animation-name: slideup;
  -o-animation-name: slideup;
  animation-name: slideup;
}
@-webkit-keyframes slideup {
  from {
    margin-top: 30px
  }
  to {
    margin-top: 0;
  }
}
@-moz-keyframes slideup {
  from {
    margin-top: 30px
  }
  to {
    margin-top: 0;
  }
}






/***********************
 ******** Navbar ********
 ***********************/
/*
  large
*/
@media (min-height: 1000px) {
  div#wrapper{
    margin-top:135px;
  }

  div#wrapper.news-active{
    margin-top:135px;
  }

  .banner-header li.banner-title lg span{
    font-size:60px;
  }

  .banner-header li.banner-title{
    margin-top:-10px;
  }

  .container-fluid.banner-image{
    height:120px;
  }

  .navbar-fixed-top {
    top: 85px;
  }

  .navbar-fixed-top.news-active {
    top: 103px;
  }

  .banner-image-icon{
    /*width:145px;*/
    height: 65px;
  }

  .banner-image-ol{
    height:75px;
  }

  .banner-image-nsf{
    height:50px;
  }
}

@media (min-height: 800px) and (max-height: 1000px){
  div#wrapper{
    margin-top:105px;
  }

  div#wrapper.news-active{
    margin-top:115px;
  }

  .banner-header li.banner-title lg span{
    font-size:52px;
  }

  .banner-header li.banner-title{
    margin-top:-15px;
  }

  .container-fluid.banner-image{
    height:100px;
  }

  .navbar-fixed-top {
    top: 65px;
  }

  .navbar-fixed-top.news-active {
    top: 75px;
  }

  .banner-image-icon{
    /*width:100px;*/
    height: 65px;
  }

  .banner-image-ol{
    height:50px;
  }

  .banner-image-nsf{
    height:50px;
  }
}


@media (min-height: 100px) and (max-height: 800px){
  div#wrapper{
    margin-top:105px;
  }

  div#wrapper.news-active{
    margin-top:115px;
  }

  .banner-header li.banner-title lg span{
    font-size:52px;
  }


  .banner-header li.banner-title{
    margin-top:-15px;
  }

  .container-fluid.banner-image{
    height:100px;
  }

  .navbar-fixed-top {
    top: 65px;
  }

  .navbar-fixed-top.news-active {
    top: 85px;
  }

  .banner-image-icon{
    /*width:100px;*/
    height: 65px
  }

  .banner-image-ol{
    height:50px;
  }

  .banner-image-nsf{
    height:50px;
  }
}



.container-fluid .image-header{
  /*width: 100%;*/
  /*top: 8px;*/
  /* margin-top: 25px; */
  height: 75px;
  padding-top: 8px;
  padding-right: 0;
  padding-left: 10px;
  /*position: absolute;*/
}

.container-fluid.banner-image.news-active .image-header{
  top: 25px;
}

/*
banner header for active/inactive
*/
.banner-header.news-active{
  margin-top:25px;
}

.banner-header{
  /*padding-top:10px;*/
  z-index: 1002;
}



.banner-header li.banner-title lg span{
  color: #000;
  opacity: 0.5;
  font-family: Athelas
}

.banner-header.news-active li.banner-title{
  margin-top:-20px;
}

.navbar-top-links-new li {
  display: inline-block;
  /* z-index: 1500; */
}

.navbar-top-links-new li:last-child {
  /*margin-right: 15px;*/
}

.navbar-top-links-new li a {
  padding: 7px;
  /* min-height: 50px; */
  font-weight: 300;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background: radial-gradient(rgba(255,255,255,0), rgba(163,167,191,.3), rgba(255,255,255,0));
  border-radius: 5px;
  border-color: #337ab7;
  font-weight: 300;
}

.navbar-top-links-new li a:hover,
.navbar-top-links-new li a:focus {
  background: radial-gradient(rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,0));
  border-radius: 5px;
  font-weight: 300;
}

.navbar-top-links-new .dropdown-menu li {
  display: block;
  font-weight: 300;
}

.navbar-top-links-new .dropdown-menu li:last-child {
  margin-right: 0;
  font-weight: 300;
}

.navbar-top-links-new .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
  font-weight: 300;
}
.navbar-top-links-new .dropdown-menu li a:hover {
  background: rgba(141,162,228,.1);
  font-weight: 300;
}

.navbar-top-links-new .dropdown-menu li a div {
  white-space: normal;
}

.navbar-top-links-new .dropdown-messages,
.navbar-top-links-new .dropdown-tasks,
.navbar-top-links-new .dropdown-alerts {
  width: 310px;
  min-width: 0;
}

.navbar-top-links-new .dropdown-messages {
  margin-left: 5px;
}

.navbar-top-links-new .dropdown-tasks {
  margin-left: -59px;
}

.navbar-top-links-new .dropdown-alerts {
  margin-left: -123px;
}

.navbar-top-links-new .dropdown-user {
  right: 0;
  left: auto;
  /* z-index: 1001; */
}

.nav > li > a {
  color: #004773;
  font-weight: 300;
}

.navbar-text > a {
  color: #004773;
  text-decoration: none;
  font-weight: 300;
}

.navbar-default {
  height: 38.5px;
  border-color:  #7E9CD9 ;
  background: linear-gradient(#fff,  #7E9CD9);/*add % to value to adjust gradiant*/
  background-color: none;
  border-bottom-width: 2px;
  border-bottom-color: #F09349;
}

@media (min-width: 955px) {
  .navbar-default: {
    height: 78px;
    border-color:  #7E9CD9 ;
    background: linear-gradient(#fff,  #7E9CD9);/*add % to value to adjust gradiant*/
    background-color: none;
    border-bottom-width: 2px;
    border-bottom-color: #F09349;
  }
}

.navbar-default .navbar-brand {
  color: #fff;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #A3A7BF;
  backgound-color: transparent;
}

/* ~link colors~ */
.navbar-default .navbar-nav > li > a {
  color: #fff;
  font-weight: 300;
}

.navbar-default .navbar-nav > li > a
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #A3A7BF;
  font-weight: 300;
}

/*color of active nabar btn
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #fff;
backgound-color: #A3A7BF;
 */

/* ~drop downs~ */
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color:  #A3A7BF;
  color: #fff;
  font-weight: 300;
}

div#aa-panel {
  border: none;
  box-shadow: none;
  background-color: #F8F8F8;
}
/*
.panel > .panel-heading {
border: none;
box-shadow: none;
background-color: #F8F8F8;
}


 *can be changed in views/aa/AlertView.js - line 331
 div#alertslist > form.backgrid-filter.form-search {
 float: right;
 margin: 0px 0px 25px 0px;
 */

/***********************
 ****** User Name *******
 ***********************/
a#logged-in-user.dropdown-toggle {
  font-family: sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
}


* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}



#ribbon-container {
  position: absolute;
  top: 52px;
  right: 2px;
  overflow: visible;
  /* so we can see the pseudo-elements we're going to add to the anchor */
  color: #02a3de;
  font-size: 14px;
  font-weight: bolder;

  /* font-size and line-height must be equal so we can account for the height of the banner */

  line-height: 2px;
  font-family: 'Montserrat', sans-serif;
}

#ribbon-container:before {
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  border-top: 15px solid rgba(0, 0, 0, .3);
  /* These 4 border properties create the first part of our drop-shadow */

  border-bottom: 15px solid rgba(0, 0, 0, .3);
  border-right: 0px solid rgba(0, 0, 0, .3);
  border-left: 15px solid transparent;
}

#ribbon-container:after {
  /* This adds the second part of our dropshadow */

  content: "";
  height: 2px;
  background: rgba(0, 0, 0, .3);
  display: block;
  position: absolute;
  bottom: -2px;
  left: 15px;
  right: 3px;
}

#ribbon-container a {
  color: #fff;
  display: block;
  padding: 15px;
  position: relative;
  /* allows us to position our pseudo-elements properly */

  background: #005088;
  overflow: visible;
  height: 15px;
  margin-left: 15px;

  text-decoration: none;
}

#ribbon-container a:after {
  /* this creates the "folded" part of our ribbon */
  color: #02a3de;
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  bottom: -15px;
  right: 0;
  border-top: 15px solid #005088;
  border-right: 15px solid transparent;
}

#ribbon-container a:before {
  /* this creates the "forked" part of our ribbon */
  color: #02a3de;
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  left: -15px;
  border-top: 15px solid #005088;
  border-bottom: 15px solid #005088;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

#ribbon-container a:hover {
  color: #02a3de;
  background: #005088;
}

#ribbon-container a:hover:before {
  /* this makes sure that the "forked" part of the ribbon changes color with the anchor on :hover */
  color: #fff;
  border-top: 15px solid #005088;
  border-bottom: 15px solid #005088;
}


/* ribbon-container-top ---------------------------------------------------------------------------------------------------------- */

#ribbon-container-top {
  position: absolute;
  top: 10px;
  left: 35%;
  overflow: visible;
  /* so we can see the pseudo-elements we're going to add to the anchor */
  color: #02a3de;
  font-size: 14px;
  font-weight: bolder;

  /* font-size and line-height must be equal so we can account for the height of the banner */

  line-height: 2px;
  font-family: 'Montserrat', sans-serif;
}

#ribbon-container-top:before {
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  border-top: 15px solid rgba(0, 0, 0, .3);
  /* These 4 border properties create the first part of our drop-shadow */

  border-bottom: 15px solid rgba(0, 0, 0, .3);
  border-right: 0px solid rgba(0, 0, 0, .3);
  border-left: 15px solid transparent;
}

#ribbon-container-top:after {
  /* This adds the second part of our dropshadow */

  content: "";
  height: 2px;
  background: rgba(0, 0, 0, .3);
  display: block;
  position: absolute;
  bottom: -2px;
  left: 15px;
  right: 3px;
}

#ribbon-container-top a {
  color: #fff;
  display: block;
  padding: 15px;
  position: relative;
  /* allows us to position our pseudo-elements properly */

  background: #005088;
  overflow: visible;
  height: 15px;
  margin-left: 15px;
  /*margin-right: 15px;*/
  text-decoration: none;
}

#ribbon-container-top img {
  left: 187px;
  height: 32px;
  top: -22px;
  position: absolute;
}

#ribbon-container-top a:after {

  /* this creates the right "forked" part of our ribbon
  color: #02a3de;
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  right: -15px;
  border-top: 15px solid #005088;
  border-bottom: 15px solid #005088;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;*/
}

#ribbon-container-top a:before {
  /* this creates the "forked" part of our ribbon */
  color: #02a3de;
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  left: -15px;
  border-top: 15px solid #005088;
  border-bottom: 15px solid #005088;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

#ribbon-container-top a:hover {
  color: #02a3de;
  background: #005088;
}

#ribbon-container-top a:hover:before {
  /* this makes sure that the "forked" part of the ribbon changes color with the anchor on :hover */
  color: #fff;
  border-top: 15px solid #005088;
  border-bottom: 15px solid #005088;
}

#navbar-menus {
  margin-right: 30%;
}

/***********************
 ******** Sidebar *******
 ***********************/
#array-accordion {
  margin-bottom: 100%;
}

/* @media (min-width: 768px) */
div#wrapper.btn-wrapper {
  /* margin-left: 50px; */
  padding-left: 250px;
}
div#wrapper.toggled.btn-wrapper {
  padding-left: 0px;
  /* margin-left: 50px; */
}

.btn.btn-primary.sidebar {
  color: #353840;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border: 1px solid #7E9CD9;
  border-radius: 4px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  margin-bottom: 5px;
  line-height: 1.1;
  font-family: inherit;
  text-align: left;
}
.btn.btn-primary.sidebar:hover {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
}

/****************************
 ****** Search/Reset Bar *****
 ****************************/
/*
>>-input-group->
 */
.input-group.custom-search-form {
  border: 1px solid #7E9CD9;
}
input#search-filter {
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  border-right: none;
}
/*
>>-search btn->
 */
.btn-search {
  border-top: 1px solid #FFF;
  border-left: none;
  border-bottom: 1px solid #FFF;
  border-right: none;
  background: #F09349;
  line-height: 1.5;
}
.btn-search:hover,
.btn-search:focus,
.btn-search:active {
  background-image: linear-gradient(to bottom,#BD7138 0,#BD7138 100%);
}

.sidebar-nav .sidebar-search {
  padding:0 0 15px 0;
}

/*
>>-reset btn->
 */
button.btn.btn-primary.btn-reset.btn-reset{
  :promptfind
  color: #F4F4F4;
  font-weight: normal;
  letter-spacing: 2px;
  border-top: 1px solid #FFF;
  border-bottom: 0px solid #FFF;
  border-right: 1px solid #FFF;
  border-left: none;
  line-height: 1.5;
}
button.btn.btn-primary.btn-reset:focus {
  background: #8DA2E4;
  background-image: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,.7),  rgba(126, 156, 217,.0));
  color: #F4F4F4;
  font-weight: normal;
  letter-spacing: 2px;
  border-top: 1px solid #FFF;
  border-bottom: 0px solid #FFF;
  border-right: 1px solid #FFF;
  border-left: none;
}


/***********************
 ******* Accordion ******
 ***********************/
div#headingOne {
  color: #353840;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border: 1px solid #7E9CD9;
  border-radius: 4px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}

div#headingOne.collapsed {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
}

.panel-title > a {
  text-decoration: none;
  font-weight: 300;
}
.panel-title > a:hover {
  background: radial-gradient(rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0));
  font-weight: 300;
}
/*
div#headingOne {
border: 1px solid #7E9CD9;
}
 */

.collapse.in {
  background: #E9E9E9;
}

/**********************
 ***** First Level *****
 **********************/
.sidebar-nav-first-level {
  background-color: #6080A1;
  border-radius: 5px;
}

.sidebar-nav-first-level:hover {
  background: radial-gradient(rgba(255,255,255,0), rgba(126, 156, 217,.2), rgba(255,255,255,0));
  border-radius: 5px;
}

.sidebar-nav-first-level > ul.nav.sidebar-nav {
  border-bottom: 1px solid #7E9CD9;
  border-radius:5px;
}

.sidebar-nav-first-level > ul.nav.sidebar-nav > a:hover,
.sidebar-nav-first-level > ul.nav.sidebar-nav > a:focus,
.sidebar-nav-first-level > ul.nav.sidebar-nav > a:active {
  color: #000;
  font-weight: 300;
}

.sidebar-nav-first-level > ul.nav.sidebar-nav > a {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
}

.panel-default > .panel-heading .badge {
  color: #000;
  background-color: #D1DAF5;
  font-weight: normal;
}

/***********************
 ***** Second Level *****
 ***********************/
.sidebar-nav-second-level {
  /*
  >>-accordion background->
   */
background-color: #E9E9E9;
}

.sidebar-nav-second-level > ul.nav.sidebar-nav {
  border-bottom: 1px solid #FFF;
  border-radius:5px;
}

.sidebar-nav-second-level > ul.nav.sidebar-nav > a {
  /*
  >>-accordion text->
   */
color: #353840;
font-size: 14px;
text-decoration: none;
font-weight: 300;
}
ul.nav.sidebar-nav > div  {
  background: ##E9E9E9;
}
/**********************
 ***** Third Level *****
 **********************/
/*
>>-accordion background->
 */
.sidebar-nav .sidebar-nav-third-level {
  background: #FFF;
  border: 1px solid silver;
  border-radius: 25px;
}
/*
>>-accordion text->
 */
.sidebar-nav-third-level > ul.nav.sidebar-nav > a {
  color: #353840;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
}
/*
>>-link text->
 */
.sidebar-nav-third-level > ul.nav.sidebar-nav > a:hover {
  background: radial-gradient(rgba(255,255,255,0), rgba(126, 156, 217,.2), rgba(255,255,255,0));
  border-radius: 5px;
  border:1px solid white;
  color: #000;
}
/*dropdown button(caret)
button.btn.btn-default.btn-xs.dropdown-toggle:hover {
background: radial-gradient(rgba(255,255,255,0), rgba(126, 156, 217,.2), rgba(255,255,255,0));
}*/

/*
>>-dropdown menu item(plot)->
 */
ul#plot-dd {
  background: #fff;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1;
  color: #333;
  white-space: nowrap;
}
ul#plot-dd:hover {
  color: #353840;
  background: linear-gradient(rgba(255,255,255,1), rgba(216, 221, 230, 1));
  border-bottom: 1px solid transparent;
}
ul#plot-dd > a:hover {
  text-decoration: none;
  color: black;
  background-color: transparent;
  font-weight: 300;
}


body,
h1, h2, h3, h4, h5, h6, p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #004773;
  background-color: transparent;
  text-decoration: none;
}
a {
  color: #008FE9;
  font-weight: bold;
}
a:hover {
  text-decoration: none;
  color: #8DA2E4;
}
/* a:visited { */
/* 	color: #A3A7BF; */
/* } */
a:focus {
  text-decoration: none;
}

/* ~list style~ */
li {
  list-style: none;
}

/* ~placeholder style~ */
::-webkit-input-placeholder {
  font-weight: 300;
  letter-spacing: 2px;
}
:-moz-placeholder { /* Firefox 18- */
  font-weight: 300;
  letter-spacing: 2px;
}
::-moz-placeholder {  /* Firefox 19+ */
  font-weight: 300;
  letter-spacing: 2px;
}
:-ms-input-placeholder {
  font-weight: 300;
  letter-spacing: 2px;
}

/* ~panel style~ */
.panel {
  /*border: none;*/
}

.panel-body {
  /*border: none;*/
}

.panel-heading.panel-search.pull-right {
  background-color: #.panel-heading.panel-search.pull-rightFFF;
}

/**********************
 ******* Buttons *******
 **********************/
/* ~primary~ */
/*.btn-primary {
border-color:  #7E9CD9 ;
background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.2), rgba(255,255,255,0));
color: #000;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.open .dropdown-toggle.btn-primary {
border-color:  #7E9CD9 ;
color: #000;
}*/

.btn-primary {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
  /* background-image: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -ms-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -o-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #004773;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 8px 5px 8px;
  border: solid #5578D9 1.5px;
  text-decoration: none;
  line-height: .9;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
  text-decoration: none;
}
.btn-primary[disabled] {
  background-color: #EDF5FC;
}

.btn-success {
  background-image: linear-gradient(to bottom, #4fd934, #55D98C);
  background-color: #4fd934;
  color: #FFF;
  line-height: .9;
  border-radius: 5px;
  color: #004773;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 8px 5px 8px;
  text-decoration: none;
}
.btn-success:hover {
  background-color: #00EA00;
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}

.btn-reset {
  background-image: linear-gradient(to bottom, #19C8FC, #0850F8);
  /* background-image: linear-gradient(to bottom, #7F9BDA, #0050DA); */
  background-color: #0850F8;
  color: #FFF;
  line-height: .9;
  border-radius: 5px;
  color: #004773;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 8px 5px 8px;
  text-decoration: none;
}
.btn-reset:hover {
  background-color: #0850F8;
  background-position: 0px -15px;
  color: #333;
  text-decoration: none;
  background-repeat: repeat-x;
}

.btn-danger {
  background-image: linear-gradient(to bottom, #F11616, #C20000);
  background-color: #C20000;
  border-color: #5C0000;
  color: #FFF;
  line-height: .9;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 8px 5px 8px;
  text-decoration: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-image: linear-gradient(to bottom, #C20000, #F11616);
  background-position: 0px 0px;
  color: #333;
  text-decoration: none;
  /* background-repeat: repeat-x;   */
}


/*needs work*/
.btn-default {
  color: #004773;
  border-radius: 5px;
  font-size: 14px;
  padding: 5px 8px 5px 8px;
  border: solid #1f628d 1.5px;
  text-decoration: none;
  line-height: .9;
  font-weight: 300;
  white-space: normal;
}

.btn-default:hover {
  /* background: #3cb0fd;*/
  text-decoration: none;
  border: solid 1.5px #353840;
}

a#map-view.active,
a#list-view.active,
a#table-view.active {
  border-color: #A3A7BF;
}

t.btn
button.btn.btn-default.dropdown-toggle {
  line-height: .9;
}

/* ~dropdown toggle~ */
.btn.dropdown-toggle {
  padding-left: 8px;
  border-radius: 5px;
  color: #004773;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  line-height: 1;
  text-shadow: none;
  /* background-color: #A3A7BF; */
  /* height: 25px; */
  /* padding-top: 1px; */
}

.dropdown-menu {
  background: #fff;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

/**********************
 ** Date/Time Picker ***
 **********************/
@media (min-width: 768px) {
  .col-sm-6.datepicker
}

.bootstrap-datetimepicker-widget.timepicker-sbs.usetwentyfour.dropdown-menu {
  white-space: inherit;
}

th.picker-switch {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
  /* background-image: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -ms-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: -o-linear-gradient(top, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  /* background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0)); */
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  /* color: #004773; */
  font-size: 14px;
  font-weight: 300;
  padding: 5px 8px 5px 8px;
  border: solid #E5E8EF 1px;
  text-decoration: none;
  line-height: .9;
}
.bootstrap-datetimepicker-widget thead tr:first-child th:hover {
  background: none;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
  text-decoration: none;
}
button.btn.btn-success.dropdown-toggle {
  background-color: #55D98C;
  background-image: linear-gradient(to bottom, #4fd934, #55D98C);
  line-height: 1;
}

/***********************
 **** Panel Heading *****
 ***********************/
.panel {
  border-radius: 5px;
  padding: 2px;
}

.panel > .panel-heading {
  border: 1px solid #D1DAF5;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-color: #D1DAF5;
  margin-bottom: 2px;
  background-color: #fff!important;
  margin: 0px 0px 2px 0px;
}






.panel-heading.plotting-heading {
  padding: 2px 2px 2px 10px;
}

.panel > .panel-body,
div#events-scroll-body {
  border: 1px solid #d1daf5;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 2px;
}

/* colors used */
/* new */
/* light-grey-blue: #6080A1 (rgb: 96 128 161) */
/* dark-blue: #004773 (rgb: 0 71 115) */
/* light-blue: #8DA2E4 (rgb: 141 162 228) */
/* orange: #F09349 (rgb: 240 147 73) */
/* grey: #F4F4F4 (tgb: 244 244 244) */
/* old */
/* light-grey-blue: #A3A7BF (rgb: 163 167 191) */
/* dark-blue: #353840 (rgb: 53 56 64) */
/* light-blue: #7E9CD9(rgb: 126 156 217) */
/* alt light blue #D1DAF5 rgb(209,218,245) */
/* alt light blue2 #7F9BDA */

.jqtree-notTracked {
  background-color: transparent;
  /*cursor: pointer;*/
  color: #000;
}

.jqtree-notTracked:hover {
  border:2px solid;
  color: black;
}

.scrollable-jqtree {
  max-height: 700px;
  border: 2px solid #fff;
  overflow: auto;
}

.scrollable-visavail {
  width: 65%;
  max-height: 700px;
  border: 2px solid #fff;
  overflow: auto;
}

/*.jqtree-failed {
  background-color: indianred;
  cursor: pointer;
}*/

.ui-jqgrid .ui-jqgrid-htable th div
{
  height: auto;
  overflow: hidden;
  padding-right: 4px;
  padding-top: 2px;
  position: relative;
  vertical-align: text-top;
  white-space: normal !important;
}

th.ui-th-column div {
  white-space: normal !important;
  height: auto !important;
  padding: 2px;
}

#filterScrollContainer {
  white-space: normal !important;
  max-width: 33% !important;
}

div.ui-rangeSlider-label-value {
  font-size: 10pt;
}

a.back-to-top {
  display: none;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  font-size: 20pt;
  position: fixed;
  z-index: 999;
  right: 5px;
  bottom: 90px;
  background: #27AE61 url("/img/uparrow.png") no-repeat center 10%;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-size: contain;
}

a.back-to-bottom {
  display: none;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  font-size: 20pt;
  position: fixed;
  z-index: 999;
  right: 5px;
  bottom: 20px;
  background: #27AE61 url("/img/uparrow.png") no-repeat center 10%;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-size: contain;
}

#infoArrayMap {
  display: none;
  width: auto !important;
  overflow: hidden;
  overflow-wrap: break-word;
  white-space: normal !important;
  height: auto !important;
  padding: 2px;
  font-size: 14pt;
  position: fixed;
  /*right: 5px;*/
  /*bottom: 35px;*/
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

span.labelFirst {
  margin-top: 3px;
}

div.innerTableTitle {
  position: relative;
  bottom: 25px;
  left: 150px;
  font-size: 10pt;
  font-weight: 400;
  vertical-align: text-top;
}

div.leaflet-control-coordinates.leaflet-control{
  position: absolute;
  left: 40px;
  top: 5px;
  padding-top: 10px;
  padding-left: 5px;
}

.leaflet-popup-content h2{
  background: white;
  font-size: 12px;
  text-align: center;
}

.leaflet-popup-content{
  background: white;
}

.leaflet-popup-content-wrapper{
  min-width: 125px;
  min-height: 30px;
  background: white;
  font-size: 12px;
  text-align: center;
}

.leaflet-popup-tip-container{
  visibility: hidden;
}

.leaflet-popup-close-button{
  visibility: hidden;
}

code, samp, kbd {
  font-family: "Courier New", Courier, monospace, sans-serif;
  text-align: left;
  color: #555;
}
pre code {
  line-height: 1.6em;
  font-size: 11px;
}
pre {
  padding: 0.1em 0.5em 0.3em 0.7em;
  border-left: 11px solid #ccc;
  margin: 1.7em 0 1.7em 0.3em;
  overflow: auto;
  width: 93%;
}
/* target IE7 and IE6 */
*:first-child+html pre {
  padding-bottom: 2em;
  overflow-y: hidden;
  overflow: visible;
  overflow-x: auto;
}
* html pre {
  padding-bottom: 2em;
  overflow: visible;
  overflow-x: auto;
}
.btn-m2m {
  float:left;
  margin: 5px;
  text-wrap: avoid;
  border-color: #004773;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
}

.form-group-sm {
  width: 100%;
  min-height: 100px;
}

#comments-input {
  /*display:inline-block;*/
  border: solid 1px #000;
  min-height: 150px;
  min-width: 580px;
  padding: 0;
  font-size: 14pt;
  font-weight: 300;
}

.fa.fa-circle.anno-fail {
  color: #CC0000;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-not_evaluated {
  color: #004c99;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-not_available {
  color: #A0A0A0;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-not_operational {
  color: #606060;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-pass {
  color: #00CC00;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-pending_ingest {
  color: #E0E0E0;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-suspect {
  color: #CC6600;
  font-size: 16px;
  float: left;
}

.fa.fa-circle.anno-null {
  color: #CDBA96;
  font-size: 16px;
  float: left;
}

.daterangepicker .ranges ul {
  width: auto;
}





/* The Modal (background) */
.modal-img {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 200px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-img-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption-img {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-img-content, #caption-img {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}



.dropdown-dc {
  /*position: absolute;*/
  /*top:50%;*/
  /*transform: translateY(-50%);*/
}

.dropdown-dc dd,
.dropdown-dc dt {
  margin: 0px;
  padding: 0px;
}

.dropdown-dc ul {
  margin: -1px 0 0 0;
}

.dropdown-dc dd {
  position: relative;
}

.dropdown-dc a,
.dropdown-dc a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  font-size: 12px;
}

.dropdown-dc dt a {
  background-color: transparent;
  display: block;
  /*padding: 8px 20px 5px 10px;*/
  min-height: 20px;
  /*line-height: 24px;*/
  overflow: hidden;
  border: 0;
  width: 20px;
}

.dropdown-dc dt a span,
.multiSel span {
  cursor: pointer;
  display: inline-block;
  padding: 0 3px 2px 0;
  color: black;
  font-size: 18px;
}

.dropdown-dc dd ul {
  background-color: #4F6877;
  border: 0;
  color: #fff;
  display: none;
  left: 0px;
  padding: 2px 15px 2px 5px;
  position: absolute;
  top: 2px;
  width: 200px;
  list-style: none;
  /*height: 100px;*/
  overflow: auto;
}

.dropdown-dc span.value {
  display: none;
}

.dropdown-dc dd ul li a {
  padding: 5px;
  display: block;
}

.dropdown-dc dd ul li a:hover {
  background-color: #fff;
}

.filter-drop-down-div {
  max-width: 30px;
}

#estimates {
  background-color: #eeeeee;
  border: black;
  border-radius: 10px;
}

#showReleaseChanges {
  width: 150px;
  font-size: 14px;
  height: 30px;
}

div#wrapper {
  /*margin-top: 125px;*/
}

.numberCircle {
  border-radius: 50%;
  behavior: url(PIE.htc); /* remove if you don't care about IE8 */

  width: 24px;
  height: 24px;
  padding: 4px;

  background: #fff;
  border: 2px solid #666;
  color: #666;
  text-align: center;

  font: 24px Arial, sans-serif;
}

#video {
  /*position: absolute;*/
  /*top: 300px;*/
  /*right: 50px;*/
  z-index: 100000;
  width: 90%;
  /*background: #b5b5b5;*/
  /*margin: 3px;*/
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
}

#video:hover {
  transform: scale(4.0, 4.0) translate(-25%, 25%);
}

#media-spinner {
  z-index: 100000;
  background: rgba(255,255,255,.1);
  position: relative;
  /*top: 50%;*/
  left: 50%;
  font-size: 20px;
  /*transform: translate(-50%, -50%);*/
}

#clock-wrapper {
  /*position: absolute;*/
  /*top: 265px;*/
  /*right: 50px;*/
  width: 90%;
  font-family: "Consolas", "Menlo", "Lucida Console", "Courier New", monospace;
  font-size: 14px;
}

.cam-image-grid {
  /*width: 95%;*/
}

.toc-plotting-text {
  font-size: 10px !important;
}

/*******************/
/**** Plotting  ****/
/*******************/

div#plottingBody {
  margin-left: 5px;
  padding-right: 5px;
  max-height: 700px;
  max-width: 100%;
  min-width: 881px;
}
/* ~vertical buttons on sidebar~ */
.plotting-selection {
  position: relative;
  width: 100%;
}

div#plottingBody > div.row > div.panel > div.panel-heading > div.row {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

span.filter-option {
  margin-left: 0px !important;
}

#plottingBody > div:nth-child(1) > div > div > div:nth-child(1) > div.col-md-10 {
  padding-left: 0px;
}
/* change for select buttons on plot page */
.btn-group.bootstrap-select.form-control {
  background-color: transparent;
}
button.btn.dropdown-toggle.form-control.selectpicker.btn-default {
  color: #353840;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
  padding: 5px 30px 10px 10px;
  border-bottom: 1px solid transparent;
  border: 1px solid #7E9CD9;
  border-radius: 4px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  /* width: auto; */
  margin-bottom: 5px;
  line-height: .9;
  font-family: inherit;
  height: 27px;
}
button.btn.dropdown-toggle.form-control.selectpicker.btn-default:hover {
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
}

button.btn.dropdown-toggle.form-control.selectpicker.btn-default {
  text-transform: uppercase;
}

.dropdown-menu.open {
  background-color: rgba(255, 255, 255, 0.87);
  border: none;
  position: absolute;
  top: 40px;
  left: 140px;
  overflow-y: scroll;
  max-height: 300px;
}

input.form-control:focus {
  border-color: #FBB500;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(240, 147, 73, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(240, 147, 73, 0.6);
}
.dropdown-menu > li > a {
  margin: 4px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #FFF;
  background: #FFF;
}

div ul.dropdown-menu.inner.selectpicker {
  padding: 10px;
}

ul.dropdown-menu.inner.selectpicker > li > a:hover,
ul.dropdown-menu.inner.selectpicker > li > a:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 108, 222, 1);
}

span.filter-option.pull-left {
  /*text-transform: capitalize;*/
  margin-left: -9px;
  padding-bottom: 5px;
}

/* SVG Controlls */
div#control-heading {
  border: 1px solid #d1daf5;
  border-radius: 5px;

}

select.form-control {
    padding: 0px;
}
label#plot-type,
label#yvar0-select-default-text,
label#start-time,
label#end-time {
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: bolder;
  color: #121517;
}

input.form-control, select.form-control {
  height: 27px;
  color: #004773;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 14px;
  border: solid #1f628d 1.5px;
  text-decoration: none;
  line-height: .9;
  height: 27px;
  font-weight: 300;
}
input.form-control[name="email"] {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
span.input-group-addon {
  padding-top: 3px;
  padding-bottom: 1px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 27px;
  color: #004773;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: 14px;
  border-right: solid #1f628d 1.5px;
  text-decoration: none;
  line-height: .9;
  height: 27px;
  font-weight: 300;
  border-top: 1px #1f628d solid;
  border-bottom: 1px #1f628d solid;
}
/* slider btn */
.bootstrap-switch-off, .bootstrap-switch-on {
  height: 27px;
  color: #004773;
  border-radius: 5px;
  font-size: 14px;
  border: solid #1f628d 1.5px;
  text-decoration: none;
  line-height: .9;
  font-weight: 300;
  width: 80px;
}
.bootstrap-switch-container {
  width: 138;
}

span.bootstrap-switch-label {
  padding: 3px 12px;
  width: 38px;
}

span.bootstrap-switch-handle-on.bootstrap-switch-primary,
span.bootstrap-switch-handle-off.bootstrap-switch-default {
  padding: 3px 12px;
  width: 38px;
}
span.bootstrap-switch-handle-on.bootstrap-switch-primary {
  width: 42px;
}

/* Plotting sidebar buttons */
/*space between button group on plotting page*/
#plot-btn-group button[class*="plot-btn"] {
  width: auto;
  color: #353840;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.3), rgba(255,255,255,0));
  border-bottom: 1px solid transparent;
  border: 1px solid #7E9CD9;
  font-weight: 300;
  text-decoration: none;
  margin-bottom: 15px;
  line-height: 1;
  font-family: inherit;
}

#plot-btn-group button[class*="plot-btn"]:hover {
  width: auto;
  color: #353840;
  background: linear-gradient(rgba(255,255,255,0), rgba(126,156,217,.5));
  border-bottom: 1px solid transparent;
  border: 1px solid #7E9CD9;
  border-radius: 4px;
  font-weight: 300;
  text-decoration: none;
  margin-bottom: 5px;
  line-height: 1;
  font-family: inherit;
}

#plot-btn-group button span[class*="glyphicon"] {
  background: transparent;
}

#select-stream-heading {
  border: 1px solid #D1DAF5;
  border-radius: 5px;
  border-color: #D1DAF5;
  padding: 5px 0px 0px 0px;
  margin-bottom: -10px;
  background-color: #fff;
}

#plottingImg {
  width: 100%;
}

/*********************/
/***** Tool Tips *****/
/*********************/
li#xVarTooltip {
  z-index: 1000;
}

/* Download buttons */
div#download-row {
  background-color: #E0E0E0;
  margin-left: -11px;
  margin-right: -11px;
  padding-bottom: 25px;
  padding-top: 6px;
  height: 15px;
  border-bottom-width: 1px;
  border-bottom-color: #F09349;
  background: linear-gradient(#fff, #7E9CD9);
  background-image: -moz-linear-gradient(#fff, #7E9CD9);
  background-image: -webkit-gradient(#fff, #7E9CD9);
  color: #121517;
  font-size: 14px;
  font-weight: bolder;
  padding-left: 10px;
  border: 1px solid #7E9CD9;
}

div#download-options > ul > li {
  display: inline !important;
  list-style-type: none;
  padding-right: 20px;
}

/* controls */
div#plotcontrols {
  margin-top: 5px;
}
#plotcontrols .label {
  white-space:nowrap;
}

/*************************/
/**** Event Date/Time ****/
/*************************/
div.bootstrap-datetimepicker-widget.dropdown-menu.bottom {
  width: auto;
  white-space: inherit;
}
.nasdaq tbody::-webkit-scrollbar {
  width: 1px;
  background: transparent;
  border: 1px solid #D1DAF5;
}
div.bootstrap-datetimepicker-widget.dropdown-menu.bottom > ul > li.collapse.in {
  background: #fff;
}

/**********************/
/**** Event Scroll ****/
/**********************/
table#eventsTable {
  width: 100%
}

table {
  margin: 0 0 20px 0;
  border-collapse: collapse;
}

.nasdaq thead tr {
  background: linear-gradient(#fff, #7E9CD9);
  border-bottom-color: #F09349;
}

.nasdaq th {
  text-transform: none;
  font-weight: 500;
  text-align: left;
  background: linear-gradient(#fff, #7E9CD9);
  background-image: -moz-linear-gradient(#fff, #7E9CD9);
  background-image: -webkit-gradient(#fff, #7E9CD9);
  border: 1px solid #D1DAF5;
}

.nasdaq th, .nasdaq td {
  padding: 6px 8px;
  font-size: 8pt;
}

tbody td {
  line-height: 18px;
  border-top: 1px solid #D1DAF5;
}

tbody#eventScollable tr:nth-child(2n) {
  background-color: #F7F7F7;
  opacity: 0.8;
  border: 1px solid #D1DAF5;
}

tbody tr:hover {
  background-color: #EEEEEE;
}

.nasdaq td {
  border: 1px solid #D1DAF5;
}

div.scrollable-block table {
  margin-top: 2px;
}

div.scrollable-block {
  padding: 70px 0px;
  margin-top: -72px;
  margin-bottom: -72px;
  margin-left: -2px;
}

.scrollable-area {
  width: 100%;
  max-height: 700px;
  border: 2px solid #fff;
  overflow: auto;
}

.nasdaq tbody::-webkit-scrollbar {
  width: 1px;
  background: transparent;
  border: 1px solid #D1DAF5;
}

/***************************/
/**** Plotting Controls ****/
/***************************/
.control-panel {
  margin-bottom: 5px;
}

#download-options ul {
  /* margin-top: 6px; */
  padding-left: 0px;
}

.btn-group.bootstrap-select.form-control {
  height: 27px;
}

@-webkit-keyframes altrclr{
  0%{
    color:red;
  }
  50%{
    color:darkred;
  }
}

#decimatedWarn {
  font-style: x-small;
  /* color: black; */
  display: none;
  /* -webkit-animation: altrclr 3s infinite alternate;   */
  /* -webkit-transform:scale(4); */
}

#decimatedWarn > i {
  font-size: small;
}

#assetTableHeader {
    display: inline-block;
    text-align:center;
    vertical-align: center;
    width: 100%;
}
#assetTableHeader div {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
#assetTableHeader > div > a {
    position: relative;
    top: 4px;
}
#assetTableHeader > div#assetTableLeft {
    float: left;
}
#assetTableHeader > div#assetTableRight {
    float: right;
}

tr.highlight-row {
    background-color: lightskyblue !important;
}

div.panel {
    width: 100%;
}

div.panel-heading {
    background-color: #EEEEEE !important;
    margin-right: 4px;
    margin-left: 4px;
}

#assetCreatorBtn {
    margin-top: 5px;
    margin-left: 10px;
}

/* helpful formatting classes */
. {
    min-height: 360px;
}

/* Bootstrap Pagination modifications */
.pagination {
    margin: 0px 0px !important;
}

/* Asset Table */
div#panel-heading > div.row {
    margin-right:10px;
    margin-left:10px;
}
div#assetPanelBody {
    min-height:360px;
}

th#assetTableIdCol {
    width: 15px;
}
/* Asset Settings Panel */
div#assetInspector {
    min-height: 360px;
}
div#assetInspector > div > div > div.panel-heading {
    height: 40px;
    margin-bottom: 5px;
}
div#assetInspector > div > div > div.panel-heading > span > div.row {
    padding-right: 10px;
}
div#assetInspector > div > div > div.panel-body > div.tab-content {
    padding-top: 10px;
}
div#assetAquisitionInfo > dl > dt {
    /* background-color: #D6EBFF; */
    text-decoration: underline;
}

div#assetAquisitionInfo > dl > dd > dl.dl-horizontal {
    margin-bottom: 0px;
}

div#assetAquisitionInfo > dl > dd > dl.dl-horizontal > dt {
    text-align: left;
    margin-left: 25px;
}

div#assetForm > form > div.panel {
    padding-top: 2px;
    padding-bottom: 2px;
}
div#assetForm > form > div > label {
    text-align: left;
    padding-left: 20px;
}
textarea {
    resize: none;
}

/* Event Information Panel */
div#assetEventsTable {
    min-height: 540px;
}
div#assetEventsTable > div > div > div.panel-heading {
    height: 40px;
    margin-bottom: 5px;
}
.event-dropdown div label {
    display: inline-block;
    position: relative;
    padding-right: 20px;
    float: left;
}
.event-dropdown div p {
    padding-left: 200px;
}


/* Attachments Table */
div#assetAttachmentsTable div > div > div.panel-heading {
    height: 40px;
    margin-bottom: 5px;
}

div#assetDetailsPlaceholder {
  background-color: #FFF;
  padding: 0px;
}
#remoteDocDownload {
  text-align: center;
}

.map-loading-spinner{
  font-size:90px;
  margin-top:20%;
  margin-left:47%;
}

.clusterdMarker{
  background-image: url("/img/array.png");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 10px;
  color: white;
}

.textClusteredMarker{

}


.array-title-label{
	/* array title */
	border-style: none !important;
	font-size:18px !important;
	background-color:transparent !important;
	color:black !important;
}

.leaflet-label:before{
	/* stop the boarder */
	border-right: 6px none #7D7A7A !important;
}

.cluster-popup{
  min-width: 200px;
}
.leaflet-container .leaflet-control-mouseposition {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px #bbb;
  padding: 0 5px;
  margin:0;
  color: #333;
  font: 11px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}


.leaflet-label {
	background: rgb(235, 235, 235);
	background: rgba(235, 235, 235, 0.81);
	background-clip: padding-box;
	border-color: #777;
	border-color: rgba(0,0,0,0.25);
	border-radius: 4px;
	border-style: solid;
	border-width: 4px;
	color: #111;
	display: block;
	font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-weight: bold;
	padding: 1px 6px;
	position: absolute;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	pointer-events: none;
	white-space: nowrap;
	z-index: 6;
}

.leaflet-label.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
}

.leaflet-label:before,
.leaflet-label:after {
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	content: none;
	position: absolute;
	top: 5px;
}

.leaflet-label:before {
	border-right: 6px solid black;
	border-right-color: inherit;
	left: -10px;
}

.leaflet-label:after {
	border-left: 6px solid black;
	border-left-color: inherit;
	right: -10px;
}

.leaflet-label-right:before,
.leaflet-label-left:after {
	content: "";
}

textarea#comments-input{
  margin-top:0px;
  margin-bottom:0px;
  height: 182px
}

.main-container{
	padding:10px;
}


#annotation-table #addAnnotation{
	margin-top: 5px;
	margin-bottom: 5px;
}
.legendContainer{
  background-color: lightgray !important;
}

.legend {
    
    line-height: 18px;
    color: #555;
}
.legend img {
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    color: #777;
}
.modal-download-popup-content{
  font-size: 50px;
  text-align: center;
  top: 50%;
  left: 47%;
}
.streaming-plot-container-header{
    border: 3px solid #D1DAF5;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-color: #D1DAF5;
    margin-bottom: 4px;
    background-color: #fff!important;
    margin: 2px 2px 2px 2px;
    min-height:100px;
}

div#plotcontrols{
  text-transform: none;
}

#tocNav .instrument ul.nav-list.tree li a{
  margin-left:-1px;
}

#tocNav .instrument ul.nav-list.tree li .toc-icon-marker{
  margin-right: 5px;
  margin-left: 5px;
}

#tocNav .instrument ul.nav-list.tree li .toc-icon-marker.toc-icon-marker-unselected:before {
  font-size:20px;
  font-family: FontAwesome;
  content: "\f0fe";
  color:green;
}

#tocNav .instrument ul.nav-list.tree li .toc-icon-marker.toc-icon-marker-selected:before {
  font-size:20px;
  font-family: FontAwesome;
  content: "\f146";
  color:darkred;
}

.plot-row{
  margin:0px;
}

.highcharts-container{
  width:100% !important;
}

.streamingDataContainer{
  position: fixed;
  left: 402px;
  height: 400px;
  z-index: 1000;
  width: calc(100% - 430px);;
  opacity: 0.84;
  bottom:0px;
}

#streamingDataViewControls{
  margin-right:15px;
  margin-top:15px;
}

.streamingDataOptions{
  margin-right:100px;
}

.streamingDataOptions label{
  padding-right:5px;
}

.streaming-data-view-icon{
  margin-right: 15px;
  margin-top: 15px;
  font-size: 25px;
}

.streaming-data-view-show-icon{
  padding:5px;
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  font-size: 35px;
}

.streaming-data-view-show-icon2{
  display:none;
  color: #004773;
  padding: 0px;
  position: absolute;
  bottom: 46px;
  right: 45px;
  z-index: 100;
  font-size: 52px;
}

.leaflet-popup-content td.popup-instrument-item .pulsor {
    padding-left:2px;
    padding-right:5px;
    cursor: auto;
    border-radius: 8px;
    color:green;
    -webkit-animation: flash 3s infinite alternate;
    -moz-animation: flash 3s infinite alternate;
    -animation: flash 3s infinite alternate;
    text-shadow: 0 0 2px #fff;
}

/*
 * Flash animation
*/

@-webkit-keyframes flash {
    50%, 75%, 100% {opacity: 1;}
    25%, 75% {opacity: 0.3;}
}
@keyframes flash {
    50%, 75%, 100% {opacity: 1;}
    25%, 75% {opacity: 0.3;}
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

.gliderBtnContainer {
    z-index: 100;
    position: absolute;
    top: 11px;
    right: 60px;
}

.gliderBtnContainer > button {
    background-color: white;
}

/*
.gliderBtnContainer .glider-table .close {
  background-color: #004773;
  color: white;
  padding-left: 7px;
  padding-right: 8px;
  opacity: 1;
  border: none;
  transform-origin: top left;
  transition: all 0.9s;
}
*/



.glider-quick-view-panel{
  right: 200px;
  width: 600px;
  height: 400px;
  max-height: 400px;
  min-height: 400px;
  top: 11px;
  z-index: 100;
  position: absolute;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
}

.glider-quick-view-panel table{
  width: 100%;
}


.glider-quick-view-panel .table-rows td {
    text-align: center;
    padding-left:3px;
    padding-right:3px;
}


.glider-quick-view-panel .glider-table {
  overflow-y: scroll;
  overflow-x: hidden;
  display:block;
  height:390px;
}

.glider-quick-view-panel .glider-table td .zoom-to-glider:hover{
  cursor:zoom-in;
}

.glider-quick-view-panel .glider-table .twelve-hours {
    background-color: deepskyblue;
    color: black;
}
.glider-quick-view-panel .glider-table .twenty-four-hours {
    background-color: gold;
}
.glider-quick-view-panel .glider-table .older {
    background-color: firebrick;
    color: white;
}

/*::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}*/

.introjs-overlay {
  position: absolute;
  box-sizing: content-box;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  background: -moz-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
  background: -webkit-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -o-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -ms-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1.0 !important;
  -webkit-transform: none !important;
     -moz-transform: none !important;
      -ms-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
}

.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  z-index: 9999999 !important;
}

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: white;
  opacity: 0;
  filter: alpha(opacity=0);
}

.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  position: relative;
}

.introjs-helperLayer {
  box-sizing: content-box;
  position: absolute;
  z-index: 9999998;
  background-color: #FFF;
  background-color: rgba(255,255,255,.9);
  border: 1px solid #777;
  border: 1px solid rgba(0,0,0,.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,.4);
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-tooltipReferenceLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-helperLayer *,
.introjs-helperLayer *:before,
.introjs-helperLayer *:after {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
      -ms-box-sizing: content-box;
       -o-box-sizing: content-box;
          box-sizing: content-box;
}

.introjs-helperNumberLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  background: #ff3019; /* Old browsers */
  background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
  background:    -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
  background:      -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
  background:         linear-gradient(to bottom, #ff3019 0%, #cf0404 100%);  /* W3C */
  width: 20px;
  height:20px;
  line-height: 20px;
  border: 3px solid white;
  border-radius: 50%;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0)"; /* IE6-9 */
  filter: "progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)"; /* IE10 text shadows */
  box-shadow: 0 2px 5px rgba(0,0,0,.4);
}

.introjs-arrow {
  border: 5px solid transparent;
  content:'';
  position: absolute;
}
.introjs-arrow.top {
  top: -10px;
  border-bottom-color:white;
}
.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color:white;
}
.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color:white;
}
.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color:white;
}
.introjs-arrow.right-bottom {
  bottom:10px;
  right: -10px;
  border-left-color:white;
}
.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color:white;
}
.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color:white;
}
.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color:white;
}
.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color:white;
}
.introjs-arrow.left-bottom {
  left: -10px;
  bottom:10px;
  border-right-color:white;
}

.introjs-tooltip {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  padding: 10px;
  background-color: white;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0,0,0,.4);
  -webkit-transition: opacity 0.1s ease-out;
     -moz-transition: opacity 0.1s ease-out;
      -ms-transition: opacity 0.1s ease-out;
       -o-transition: opacity 0.1s ease-out;
          transition: opacity 0.1s ease-out;
}

.introjs-tooltipbuttons {
  text-align: right;
  white-space: nowrap;
}

/*
 Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
 Changed by Afshin Mehrabani
*/
.introjs-button {
  box-sizing: content-box;
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.3em 0.8em;
  border: 1px solid #d4d4d4;
  margin: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font: 11px/normal sans-serif;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  background-color: #ececec;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  /* IE hacks */
  zoom: 1;
  *display: inline;
  margin-top: 10px;
}

.introjs-button:hover {
  border-color: #bcbcbc;
  text-decoration: none;
  box-shadow: 0px 1px 1px #e3e3e3;
}

.introjs-button:focus,
.introjs-button:active {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
  background-image: -moz-linear-gradient(#ececec, #f4f4f4);
  background-image: -o-linear-gradient(#ececec, #f4f4f4);
  background-image: linear-gradient(#ececec, #f4f4f4);
}

/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.introjs-skipbutton {
  box-sizing: content-box;
  margin-right: 5px;
  color: #7a7a7a;
}

.introjs-prevbutton {
  -webkit-border-radius: 0.2em 0 0 0.2em;
  -moz-border-radius: 0.2em 0 0 0.2em;
  border-radius: 0.2em 0 0 0.2em;
  border-right: none;
}

.introjs-prevbutton.introjs-fullbutton {
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
}

.introjs-nextbutton {
  -webkit-border-radius: 0 0.2em 0.2em 0;
  -moz-border-radius: 0 0.2em 0.2em 0;
  border-radius: 0 0.2em 0.2em 0;
}

.introjs-nextbutton.introjs-fullbutton {
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
}

.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  color: #9a9a9a;
  border-color: #d4d4d4;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none;
}

.introjs-hidden {
     display: none;
}

.introjs-bullets {
  text-align: center;
}
.introjs-bullets ul {
  box-sizing: content-box;
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block;
}
.introjs-bullets ul li {
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0 2px;
}
.introjs-bullets ul li a {
  box-sizing: content-box;
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
.introjs-bullets ul li a:hover {
  background: #999;
}
.introjs-bullets ul li a.active {
  background: #999;
}

.introjs-progress {
  box-sizing: content-box;
  overflow: hidden;
  height: 10px;
  margin: 10px 0 5px 0;
  border-radius: 4px;
  background-color: #ecf0f1
}
.introjs-progressbar {
  box-sizing: content-box;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c;
}

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
}

.introjs-fixedTooltip {
  position: fixed;
}

.introjs-hint {
  box-sizing: content-box;
  position: absolute;
  background: transparent;
  width: 20px;
  height: 15px;
  cursor: pointer;
}
.introjs-hint:focus {
    border: 0;
    outline: 0;
}
.introjs-hidehint {
  display: none;
}

.introjs-fixedhint {
  position: fixed;
}

.introjs-hint:hover > .introjs-hint-pulse {
  border: 5px solid rgba(60, 60, 60, 0.57);
}

.introjs-hint-pulse {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(60, 60, 60, 0.27);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: rgba(136, 136, 136, 0.24);
  z-index: 10;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
     -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
       -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
}
.introjs-hint-no-anim .introjs-hint-dot {
  -webkit-animation: none;
  -moz-animation: none;
  animation: none;
}
.introjs-hint-dot {
  box-sizing: content-box;
  border: 10px solid rgba(146, 146, 146, 0.36);
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: introjspulse 3s ease-out;
  -moz-animation: introjspulse 3s ease-out;
  animation: introjspulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0;
}

@-webkit-keyframes introjspulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}

@-moz-keyframes introjspulse {
    0% {
        -moz-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        -moz-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        -moz-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -moz-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0.0;
    }
}

@keyframes introjspulse {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    25% {
        transform: scale(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.0;
    }
}

.introjs-overlay {
  position: absolute;
  z-index: 999999;
  background: #FFFFFF;
  opacity: .4;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1.0 !important;
}

.introjs-showElement {
  z-index: 9999999 !important;
}

.introjs-relativePosition {
  position: relative;
}

.introjs-helperLayer {
  position: absolute;
  z-index: 9999998;
  background-color: transparent;
  background-color: rgba(255,255,255,.2);
  border: 1px solid #777;
  border: 2px solid rgba(117, 117, 117, 1);
  border-radius: 4px;
  box-shadow: 0 5px 8px -3px rgba(0,0,0,.6);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.introjs-helperNumberLayer {
  position: absolute;
  top: -16px;
  left: -9px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #fff; /* Old browsers */ /* Chrome10+,Safari5.1+ */
  background: #5c9ccc;
  width: 20px;
  box-shadow: 0 1px 1px rgba(0,0,0,.35);
  height:20px;
  text-align: center;
  line-height: 20px;
  border: 2px solid #000000;
  border-radius: 0; /* IE6-9 */  /* IE10 text shadows */
}

.introjs-helperNumberLayer:after {
  content:"";
  width:0;
  height:0;
  position:absolute;
  content:0;
  left:-3px;
  bottom:-10px;
  border:4px solid transparent;
  border-right-color:#900;
  border-top-color:#900;
}

.introjs-arrow {
  border: 5px solid white;
  content:'';
  position: absolute;
}
.introjs-arrow.top {
  top: -10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color: #ecf0f1;
  border-left-color:transparent;
}
.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:#ecf0f1;
}
.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color:#ecf0f1;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:transparent;
}
.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-top-color:transparent;
  border-right-color: #ecf0f1;
  border-bottom-color:transparent;
  border-left-color:transparent;
}

.introjs-tooltip {
  position: absolute;
  padding: 10px 10px;
  /*background-color: #000000;*/
  background-image: linear-gradient(to bottom, rgba(92,156,204,1), rgba(0,0,0,1));
  min-width: 350px;
  max-width: 400px;
  border-radius: 3px;
  /* border-radius: 3px; */
  /* box-shadow: 0 6px 7px -4px rgba(0,0,0,.4); */
  -webkit-transition: opacity 0.1s ease-out;
  -moz-transition: opacity 0.1s ease-out;
  -ms-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  /* border: 5px double #0787AF; */
}

.introjs-tooltiptext {
  margin-left: -10px;

  margin-right: -10px;
  /* border-top: 1px solid #FFFFFF; */
  /* background: #FAFAFA; */
  color: #ffffff;
  padding: 25px 30px 15px;
  font-size: 14px;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
  /* border-bottom: 1px solid #FFFFFF; */
}

.introjs-tooltiptext p{
  margin-left: -10px;

  margin-right: -10px;
  /* border-top: 1px solid #FFFFFF; */
  /* background: #FAFAFA; */
  color: #ffffff;
  padding: 25px 30px 15px;
  font-size: 14px;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
  /* border-bottom: 1px solid #FFFFFF; */
}

.introjs-tooltipbuttons {
  text-align: center;
  /* background: rgba(0, 0, 0, 0.06); */
  border-radius: 0 0 8px 8px;
  padding-bottom: 10px;
}

/*
 Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
 Changed by Afshin Mehrabani
*/
.introjs-button {
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.5em 0.8em;
  /* box-shadow: 0 2px 0px -0px #306588; */
  text-shadow: none;
  margin: 0;
  /*outline: none;*/
  border: 2px solid;
  background: transparent;
  text-decoration: none;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
  font-size: 12px;
  /*font: 11px/normal sans-serif;*/
  color: #ffffff !important;
  white-space: nowrap;
  cursor: pointer;
  outline: none !important;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  /* IE hacks */
  zoom: 1;
  *display: inline;
  margin-top: 10px;
  transition:all 0.25s ease;
  -webkit-transition:all 0.25s ease;
  -moz-transition:all 0.25s ease;
  -ms-transition:all 0.25s ease;
  -o-transition:all 0.25s ease;
}

.introjs-button:hover {
  color: #000000;
  background: #5c9ccc;
  text-decoration: none;
  border-color: #ffffff;
}

.introjs-button:focus,
.introjs-button:active {
  background: #5c9ccc;  text-decoration: none;
  color: #000000;
  /* bottom: -1px; */
  box-shadow: none;
  border-color: #ffffff;
}

/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.introjs-skipbutton {
  margin-right: 5px;
  color: #5c9ccc;
  background: transparent;
}

.introjs-skipbutton:hover {
  background: #5c9ccc;
  border-color: #ffffff;

}

.introjs-skipbutton:active, .introjs-skipbutton:focus {
  background: #5c9ccc;
  /* box-shadow: 0 1px 0px -0px #6F1309; */

}

.introjs-prevbutton {
  -webkit-border-radius: 0.2em 0 0 0.2em;
  -moz-border-radius: 0.2em 0 0 0.2em;
  border-radius: 0.2em 0 0 0.2em;
  border-right: none;
}

.introjs-nextbutton {
  -webkit-border-radius: 0 0.2em 0.2em 0;
  -moz-border-radius: 0 0.2em 0.2em 0;
  border-radius: 0 0.2em 0.2em 0;
}

.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus, .introjs-hidden {
  display: none;
  color: transparent !important;
  border-color: transparent;
  cursor: default;
  /* box-shadow: 0 2px 0px -0px #CACED1; */
  background-color: transparent;
  background-image: none;
  text-decoration: none;
}

.introjs-bullets {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
}
.introjs-bullets ul {
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block;
}
.introjs-bullets ul li {
  list-style: none;
  float: left;
  margin: 0 2px;
}
.introjs-bullets ul li a {
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
}
.introjs-bullets ul li a:hover {
  background: #999;
}
.introjs-bullets ul li a.active {
  background: #999;
}

.introjs-progress {
  background-color: #FAFAFA;
  margin: 5px 20px;
}
.introjs-progressbar {
  background-color: #2980b9;
}

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
}
