@import "../vendor/jquery-ui/jquery-ui.min.css";/* 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;
	}
/* 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 {
	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;
	}
.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;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-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;
	}/* ================================================================== */
/* Toolbars
/* ================================================================== */

.leaflet-draw-section {
	position: relative;
}

.leaflet-draw-toolbar {
	margin-top: 12px;
}

.leaflet-draw-toolbar-top {
	margin-top: 0;
}

.leaflet-draw-toolbar-notop a:first-child {
	border-top-right-radius: 0;
}

.leaflet-draw-toolbar-nobottom a:last-child {
	border-bottom-right-radius: 0;
}

.leaflet-draw-toolbar a {
	background-image: url('/static/img/spritesheet.png');
	background-image: linear-gradient(transparent, transparent), url('/static/img/spritesheet.svg');
	background-repeat: no-repeat;
	background-size: 300px 30px;
	background-clip: padding-box;
}

.leaflet-retina .leaflet-draw-toolbar a {
	background-image: url('/static/img/spritesheet-2x.png');
	background-image: linear-gradient(transparent, transparent), url('/static/img/spritesheet.svg');
}

.leaflet-draw a {
	display: block;
	text-align: center;
	text-decoration: none;
}

.leaflet-draw a .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ================================================================== */
/* Toolbar actions menu
/* ================================================================== */

.leaflet-draw-actions {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 26px; /* leaflet-draw-toolbar.left + leaflet-draw-toolbar.width */
	top: 0;
	white-space: nowrap;
}

.leaflet-touch .leaflet-draw-actions {
	left: 32px;
}

.leaflet-right .leaflet-draw-actions {
	right: 26px;
	left: auto;
}

.leaflet-touch .leaflet-right .leaflet-draw-actions {
	right: 32px;
	left: auto;
}

.leaflet-draw-actions li {
	display: inline-block;
}

.leaflet-draw-actions li:first-child a {
	border-left: none;
}

.leaflet-draw-actions li:last-child a {
	-webkit-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.leaflet-right .leaflet-draw-actions li:last-child a {
	-webkit-border-radius: 0;
	border-radius: 0;
}

.leaflet-right .leaflet-draw-actions li:first-child a {
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.leaflet-draw-actions a {
	background-color: #919187;
	border-left: 1px solid #AAA;
	color: #FFF;
	font: 11px/19px "Helvetica Neue", Arial, Helvetica, sans-serif;
	line-height: 28px;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	height: 28px;
}

.leaflet-touch .leaflet-draw-actions a {
	font-size: 12px;
	line-height: 30px;
	height: 30px;
}

.leaflet-draw-actions-bottom {
	margin-top: 0;
}

.leaflet-draw-actions-top {
	margin-top: 1px;
}

.leaflet-draw-actions-top a,
.leaflet-draw-actions-bottom a {
	height: 27px;
	line-height: 27px;
}

.leaflet-draw-actions a:hover {
	background-color: #A0A098;
}

.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
	height: 26px;
	line-height: 26px;
}

/* ================================================================== */
/* Draw toolbar
/* ================================================================== */

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
	background-position: -2px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
	background-position: 0 -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
	background-position: -31px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
	background-position: -29px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
	background-position: -62px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
	background-position: -60px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
	background-position: -92px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle {
	background-position: -90px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
	background-position: -122px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
	background-position: -120px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
	background-position: -273px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
	background-position: -271px -1px;
}

/* ================================================================== */
/* Edit toolbar
/* ================================================================== */

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
	background-position: -152px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit {
	background-position: -150px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
	background-position: -182px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove {
	background-position: -180px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
	background-position: -212px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
	background-position: -210px -1px;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
	background-position: -242px -2px;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
	background-position: -240px -2px;
}

/* ================================================================== */
/* Drawing styles
/* ================================================================== */

.leaflet-mouse-marker {
	background-color: #fff;
	cursor: crosshair;
}

.leaflet-draw-tooltip {
	background: rgb(54, 54, 54);
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid transparent;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #fff;
	font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif;
	margin-left: 20px;
	margin-top: -21px;
	padding: 4px 8px;
	position: absolute;
	visibility: hidden;
	white-space: nowrap;
	z-index: 6;
}

.leaflet-draw-tooltip:before {
	border-right: 6px solid black;
	border-right-color: rgba(0, 0, 0, 0.5);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	content: "";
	position: absolute;
	top: 7px;
	left: -7px;
}

.leaflet-error-draw-tooltip {
	background-color: #F2DEDE;
	border: 1px solid #E6B6BD;
	color: #B94A48;
}

.leaflet-error-draw-tooltip:before {
	border-right-color: #E6B6BD;
}

.leaflet-draw-tooltip-single {
	margin-top: -12px
}

.leaflet-draw-tooltip-subtext {
	color: #f8d5e4;
}

.leaflet-draw-guide-dash {
	font-size: 1%;
	opacity: 0.6;
	position: absolute;
	width: 5px;
	height: 5px;
}

/* ================================================================== */
/* Edit styles
/* ================================================================== */

.leaflet-edit-marker-selected {
	background-color: rgba(254, 87, 161, 0.1);
	border: 4px dashed rgba(254, 87, 161, 0.6);
	-webkit-border-radius: 4px;
	border-radius: 4px;
	box-sizing: content-box;
}

.leaflet-edit-move {
	cursor: move;
}

.leaflet-edit-resize {
	cursor: pointer;
}

/* ================================================================== */
/* Old IE styles
/* ================================================================== */

.leaflet-oldie .leaflet-draw-toolbar {
	border: 1px solid #999;
}
.leaflet-pulsing-icon {
    border-radius: 100%;
    box-shadow: 1px 1px 8px 0 rgba(0,0,0,0.75);
}

.leaflet-pulsing-icon:after {
    content: "";
    -webkit-border-radius: 100%;
    border-radius: 100%;
    height: 300%;
    width: 300%;
    position: absolute;
    margin: -100% 0 0 -100%;

}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}/*
Version: 3.5.2 Timestamp: Sat Nov  1 14:43:36 EDT 2014
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url('select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('select2.png') no-repeat 100% -22px;
    background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('select2.png') no-repeat -37px -22px;
    background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100%;
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}
/*
  backgrid
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT license.
*/

.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 th,
.backgrid td {
  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;
  border-bottom: 1px solid #DDD;
}

.backgrid th.renderable,
.backgrid td.renderable {
  display: table-cell;
}

.backgrid th {
  font-weight: bold;
  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 td.editor,
.backgrid tbody tr:nth-child(odd) td.editor {
  background-color: rgba(82, 168, 236, 0.1);
  outline: 1px solid rgba(82, 168, 236, 0.8);
  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 td.error,
.backgrid tbody tr:nth-child(odd) td.error {
  background-color: rgba(255, 210, 77, 0.1);
  outline: 1px solid #ffd24d;
}

.backgrid td.editor :focus,
.backgrid th.editor :focus {
  outline: 0;
}

.backgrid .sort-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  border: 0;
  content: "";
}

.backgrid .ascending .sort-caret {
  vertical-align: baseline;
  border-top: none;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #000000;
  border-left: 4px solid transparent;
}

.backgrid .descending .sort-caret {
  vertical-align: super;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}

.backgrid .string-cell,
.backgrid .uri-cell,
.backgrid .email-cell,
.backgrid .string-cell.editor input[type=text],
.backgrid .uri-cell.editor input[type=text],
.backgrid .email-cell.editor input[type=text] {
  text-align: left;
}

.backgrid .date-cell,
.backgrid .time-cell,
.backgrid .datetime-cell,
.backgrid .number-cell,
.backgrid .integer-cell,
.backgrid .percent-cell,
.backgrid .date-cell.editor input[type=text],
.backgrid .time-cell.editor input[type=text],
.backgrid .datetime-cell.editor input[type=text],
.backgrid .number-cell.editor input[type=text],
.backgrid .integer-cell.editor input[type=text],
.backgrid .percent-cell.editor input[type=text] {
  text-align: right;
}

.backgrid .boolean-cell,
.backgrid .boolean-cell.editor input[type=checkbox] {
  text-align: center;
}

.backgrid .select-cell {
  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: white;
  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 select::-moz-focus-inner,
.backgrid .select-cell.editor optgroup::-moz-focus-inner,
.backgrid .select-cell.editor option::-moz-focus-inner,
.backgrid .select-cell.editor select::-o-focus-inner,
.backgrid .select-cell.editor optgroup::-o-focus-inner,
.backgrid .select-cell.editor option::-o-focus-inner {
  border: 0;
}/*
  backgrid-filter
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT @license.
*/

/*
  Search Icon CSS derived from:

  PURE CSS GUI ICONS
  by Nicolas Gallagher
  - http://nicolasgallagher.com/pure-css-gui-icons/

  http://nicolasgallagher.com
  http://twitter.com/necolas

  Created: 29 July 2010
  Version: 1.0.1

  Dual licensed under MIT and GNU GPLv2 (c) Nicolas Gallagher
*/

.backgrid-filter.form-search {
  position: relative;
  width: 248px;
  height: 30px;
  margin: 20px;
}

/*
  Search Icon
*/

.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: transparent;
  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;
}

/*
  Clear button
 */

.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: bold;
  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: normal;
  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, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
          transition: border linear 0.2s, box-shadow linear 0.2s;
}

/*
  Normalize the search input box, with code borrowed from normalize.css.

  https://github.com/necolas/normalize.css/

  Copyright (c) Nicolas Gallagher and Jonathan Neal, MIT @license.
 */

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.
 */

.backgrid-filter input {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
}

/*
 * Re-set default cursor for disabled elements.
 */

.backgrid-filter input[disabled] {
  cursor: default;
}

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

.backgrid-filter input[type="search"] {
  outline: none;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: none;
}

/*
 * Remove the default clear button on IE
 */

.backgrid-filter input[type="search"]::-ms-clear {
  display: none;
}

/*
 * Remove inner padding and border in Firefox 4+.
 */

.backgrid-filter input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.backgrid-filter input[type="search"] {
  padding-right: 18px;
  padding-left: 22px;
}/*
  backgrid-paginator
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT license.
*/

.backgrid-paginator {
  text-align: center;
  border-top: none;
  -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;
  *display: inline;
  margin: 5px 0;
  *zoom: 1;
}

.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 > li > a:hover,
.backgrid-paginator ul > .active > a,
.backgrid-paginator ul > .active > span {
  background-color: #f5f5f5;
}

.backgrid-paginator ul > .active > a,
.backgrid-paginator ul > .active > span {
  color: #999999;
  cursor: default;
}

.backgrid-paginator ul > .disabled > span,
.backgrid-paginator ul > .disabled > a,
.backgrid-paginator ul > .disabled > a:hover {
  color: #999999;
  cursor: default;
}/*
  backgrid-select-all
  http://github.com/wyuenho/backgrid

  Copyright (c) 2013 Jimmy Yuen Ho Wong and contributors
  Licensed under the MIT @license.
*/

.backgrid .select-row-cell,
.backgrid .select-all-header-cell {
  text-align: center;
}/* =========================================================
 * patternfly-bootstrap-treeview.css v2.1.0
 * =========================================================
 * Copyright 2013 Jonathan Miles
 * Project URL : http://www.jondmiles.com/bootstrap-treeview
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================= */

.treeview .list-group-item {
	cursor: pointer;
}

.treeview span.indent {
	margin-left: 10px;
	margin-right: 10px;
}


.treeview span.icon {
  width: 12px;
  margin-right: 5px;
}

.treeview .node-disabled {
  color: silver;
  cursor: not-allowed;
}

.treeview .node-hidden {
  display: none;
}

.treeview span.image {
  display: inline-block;
  width: 12px;
  height: 1.19em;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  line-height: 1em;
}

.treeview span.icon.node-icon-background {
  padding: 2px 2px 2px 2px;
  width: calc(1em + 4px);
  height: calc(1em + 4px);
  line-height: 1em;
}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-time:before {
    content: "\e023";
}

.glyphicon-chevron-left:before {
    content: "\e079";
}

.glyphicon-chevron-right:before {
    content: "\e080";
}

.glyphicon-chevron-up:before {
    content: "\e113";
}

.glyphicon-chevron-down:before {
    content: "\e114";
}

.glyphicon-calendar:before {
    content: "\e109";
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

.dropdown-menu {
    position: absolute;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.bootstrap-switch{display:inline-block;cursor:pointer;border-radius:4px;border:1px solid;border-color:#20242d;position:relative;text-align:left;overflow:hidden;line-height:8px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;min-width:100px;-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.bootstrap-switch.bootstrap-switch-mini{min-width:71px}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding-bottom:4px;padding-top:4px;font-size:10px;line-height:9px}.bootstrap-switch.bootstrap-switch-small{min-width:79px}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding-bottom:3px;padding-top:3px;font-size:12px;line-height:18px}.bootstrap-switch.bootstrap-switch-large{min-width:120px}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding-bottom:9px;padding-top:9px;font-size:16px;line-height:normal}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;-o-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container{margin-left:0%}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-top-right-radius:3px;border-bottom-right-radius:3px}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container{margin-left:-50%}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-top-left-radius:3px;border-bottom-left-radius:3px}.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-container{margin-left:-25%}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-readonly,.bootstrap-switch.bootstrap-switch-indeterminate{filter:alpha(opacity=50);opacity:.5;cursor:default !important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label{cursor:default !important}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.bootstrap-switch .bootstrap-switch-container{display:inline-block;width:150%;top:0;border-radius:4px;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block !important;height:100%;padding-bottom:4px;padding-top:4px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off{text-align:center;z-index:1;width:33.33333333%}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff;background:#20242d}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info{color:#fff;background:#2d8fa5}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success{color:#fff;background:#108904}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{background:#db992f;color:#fff}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger{color:#fff;background:#a63737}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default{color:#000;background:#fff}.bootstrap-switch .bootstrap-switch-handle-on{border-top-left-radius:3px;border-bottom-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-top-right-radius:3px;border-bottom-right-radius:3px}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;width:33.33333333%;color:#eeeeee;background:#313744}.bootstrap-switch input[type='radio'],.bootstrap-switch input[type='checkbox']{position:absolute !important;top:0;left:0;filter:alpha(opacity=0);opacity:0;z-index:-1}.bootstrap-switch input[type='radio'].form-control,.bootstrap-switch input[type='checkbox'].form-control{height:auto}.dc-chart path.dc-symbol, .dc-legend g.dc-legend-item.fadeout {
  fill-opacity: 0.5;
  stroke-opacity: 0.5; }

div.dc-chart {
  float: left; }

.dc-chart rect.bar {
  stroke: none;
  cursor: pointer; }
  .dc-chart rect.bar:hover {
    fill-opacity: .5; }

.dc-chart rect.deselected {
  stroke: none;
  fill: #ccc; }

.dc-chart .pie-slice {
  fill: #fff;
  font-size: 12px;
  cursor: pointer; }
  .dc-chart .pie-slice.external {
    fill: #000; }
  .dc-chart .pie-slice :hover, .dc-chart .pie-slice.highlight {
    fill-opacity: .8; }

.dc-chart .pie-path {
  fill: none;
  stroke-width: 2px;
  stroke: #000;
  opacity: 0.4; }

.dc-chart .selected path, .dc-chart .selected circle {
  stroke-width: 3;
  stroke: #ccc;
  fill-opacity: 1; }

.dc-chart .deselected path, .dc-chart .deselected circle {
  stroke: none;
  fill-opacity: .5;
  fill: #ccc; }

.dc-chart .axis path, .dc-chart .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges; }

.dc-chart .axis text {
  font: 10px sans-serif; }

.dc-chart .grid-line, .dc-chart .axis .grid-line, .dc-chart .grid-line line, .dc-chart .axis .grid-line line {
  fill: none;
  stroke: #ccc;
  opacity: .5;
  shape-rendering: crispEdges; }

.dc-chart .brush rect.background {
  z-index: -999; }

.dc-chart .brush rect.extent {
  fill: #4682b4;
  fill-opacity: .125; }

.dc-chart .brush .resize path {
  fill: #eee;
  stroke: #666; }

.dc-chart path.line {
  fill: none;
  stroke-width: 1.5px; }

.dc-chart path.area {
  fill-opacity: .3;
  stroke: none; }

.dc-chart path.highlight {
  stroke-width: 3;
  fill-opacity: 1;
  stroke-opacity: 1; }

.dc-chart g.state {
  cursor: pointer; }
  .dc-chart g.state :hover {
    fill-opacity: .8; }
  .dc-chart g.state path {
    stroke: #fff; }

.dc-chart g.deselected path {
  fill: #808080; }

.dc-chart g.deselected text {
  display: none; }

.dc-chart g.row rect {
  fill-opacity: 0.8;
  cursor: pointer; }
  .dc-chart g.row rect:hover {
    fill-opacity: 0.6; }

.dc-chart g.row text {
  fill: #fff;
  font-size: 12px;
  cursor: pointer; }

.dc-chart g.dc-tooltip path {
  fill: none;
  stroke: #808080;
  stroke-opacity: .8; }

.dc-chart g.county path {
  stroke: #fff;
  fill: none; }

.dc-chart g.debug rect {
  fill: #00f;
  fill-opacity: .2; }

.dc-chart g.axis text {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none; }

.dc-chart .node {
  font-size: 0.7em;
  cursor: pointer; }
  .dc-chart .node :hover {
    fill-opacity: .8; }

.dc-chart .bubble {
  stroke: none;
  fill-opacity: 0.6; }

.dc-chart .highlight {
  fill-opacity: 1;
  stroke-opacity: 1; }

.dc-chart .fadeout {
  fill-opacity: 0.2;
  stroke-opacity: 0.2; }

.dc-chart .box text {
  font: 10px sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none; }

.dc-chart .box line, .dc-chart .box circle {
  fill: #fff; }

.dc-chart .box rect, .dc-chart .box line, .dc-chart .box circle {
  stroke: #000;
  stroke-width: 1.5px; }

.dc-chart .box .center {
  stroke-dasharray: 3, 3; }

.dc-chart .box .outlier {
  fill: none;
  stroke: #ccc; }

.dc-chart .box.deselected {
  opacity: 0.5; }
  .dc-chart .box.deselected .box {
    fill: #ccc; }

.dc-chart .symbol {
  stroke: none; }

.dc-chart .heatmap .box-group.deselected rect {
  stroke: none;
  fill-opacity: 0.5;
  fill: #ccc; }

.dc-chart .heatmap g.axis text {
  pointer-events: all;
  cursor: pointer; }

.dc-chart .empty-chart .pie-slice {
  cursor: default; }
  .dc-chart .empty-chart .pie-slice path {
    fill: #fee;
    cursor: default; }

.dc-chart circle.dot {
  stroke: none; }

.dc-data-count {
  float: right;
  margin-top: 15px;
  margin-right: 15px; }
  .dc-data-count .filter-count, .dc-data-count .total-count {
    color: #3182bd;
    font-weight: bold; }

.dc-legend {
  font-size: 11px; }
  .dc-legend .dc-legend-item {
    cursor: pointer; }

.dc-hard .number-display {
  float: none; }
.dc-chart{float:inherit !important}.dc-chart .axis path,.axis line,.grid-line,.grid-line line{stroke:#404040}.dc-chart .axis text{font-size:14px;fill:white}.dc-chart#assets-daily-chart .axis text{fill:black}.dc-chart .x text{font-size:12px;fill:#808080}#main-chart .y text{fill:#3da1b3}#temp-chart{margin-top:15px;text-align:center}#temp-chart .y text{fill:#3da1b3;font-size:12px}#temp-chart .x text{fill:#f5ebdc;font-size:10px}#secondary-chart .y text{fill:#0367a8}#main-chart .yr text{fill:#3E7496}.dc-chart select{color:#000}#main-chart path.area{fill-opacity:.5}.dc-chart#composite-chart,.dc-chart#precip-chart{position:relative;z-index:1}.d3-tip{font-family:sourcesanspro-regular,'Helvetica Neue',Helvetica,sans-serif;size:14px;font-weight:400;padding:12px;opacity:.6;background:rgba(0,0,0,0.8);color:#fff;border-radius:2px;border:1px solid #666D87;pointer-events:none;z-index:9999}.d3-tip:after{box-sizing:border-box;display:inline;font-size:10px;width:100%;line-height:1;color:rgba(0,0,0,0.8);position:absolute;pointer-events:none;z-index:1000}.d3-tip.n:after{content:"\25BC";margin:-1px 0 0 0;top:100%;left:0;text-align:center}.d3-tip.e:after{content:"\25C0";margin:-4px 0 0 0;top:50%;left:-8px}.d3-tip.s:after{content:"\25B2";margin:0 0 1px 0;top:-8px;left:0;text-align:center}.d3-tip.w:after{content:"\25B6";margin:-4px 0 0 -1px;top:50%;left:100%}.chart-tip{text-align:center}.chart-tip-top{color:#3da1b3}.select2-container.pulse{width:100%}.select2-container.pulse a{color:#aaa !important}.select2-container.pulse a:hover{text-decoration:none}.select2-container.pulse .select2-search input{border-radius:5px;outline:0;background:#1a1a1a !important;border:1px solid #000;color:#919191;padding-left:0px;padding-right:0px;font-family:'sourcesanspro-regular';-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333;background:#fff url('../img/select2.png') no-repeat 100% -22px !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-gradient(linear, left bottom, left top, color-stop(.85, #fff), color-stop(.99, #eee)) !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-linear-gradient(center bottom, #fff 85%, #eee 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,-moz-linear-gradient(center bottom, #fff 85%, #eee 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 !important}.select2-container.pulse .select2-search input:focus{outline:none}.select2-container.pulse .select2-search input.select2-active{background:#fff url('../img/select2-spinner.gif') no-repeat 100% !important;background:url('../img/select2-spinner.gif') no-repeat 100%,-webkit-gradient(linear, left bottom, left top, color-stop(.85, #fff), color-stop(.99, #eee)) !important;background:url('../img/select2-spinner.gif') no-repeat 100%,-webkit-linear-gradient(center bottom, #fff 85%, #eee 99%) !important;background:url('../img/select2-spinner.gif') no-repeat 100%,-moz-linear-gradient(center bottom, #fff 85%, #eee 99%) !important;background:url('../img/select2-spinner.gif') no-repeat 100%,linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0 !important}.select2-container.pulse .select2-choice{width:100%;border-radius:5px;outline:0;background:#1a1a1a !important;border:1px solid #000;color:#919191;padding:0px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}.select2-container.pulse .select2-choice abbr{background:url('../img/select2.png') right top no-repeat !important}.select2-container.pulse .select2-choice .select2-arrow{background:none !important;border-left:none;background-image:none}.select2-container.pulse .select2-choice .select2-arrow b{background:url('../img/select2.png') no-repeat 0 1px !important}.select2-drop.pulse,.select2-container-multi.pulse{background:#1C1C1C}.select2-drop.pulse .select2-results,.select2-container-multi.pulse .select2-results{margin-top:0px !important;border-top:1px solid #313645 !important;margin-bottom:0px !important;width:100%;background:#1C1C1C;color:#919191;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;margin:4px auto 4px auto}.select2-drop.pulse .select2-results .select2-no-results,.select2-container-multi.pulse .select2-results .select2-no-results{background:#1C1C1C;color:#919191;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;margin:4px auto 4px auto}.select2-drop.pulse .select2-results .select2-selection-limit,.select2-container-multi.pulse .select2-results .select2-selection-limit{background:none}.select2-drop.pulse .select2-more-results.select2-active,.select2-container-multi.pulse .select2-more-results.select2-active{background:#f4f4f4 url('../img/select2-spinner.gif') no-repeat 100% !important}.select2-drop.pulse .select2-choices,.select2-container-multi.pulse .select2-choices{width:100%;border-radius:5px;outline:0;background:#1a1a1a !important;border:1px solid #000;color:#919191;padding:0px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}.select2-drop.pulse .select2-choices .select2-search-field input.select2-active,.select2-container-multi.pulse .select2-choices .select2-search-field input.select2-active{background:#fff url('../img/select2-spinner.gif') no-repeat 100% !important}.select2-drop.pulse .select2-choices .select2-search-choice,.select2-container-multi.pulse .select2-choices .select2-search-choice{color:#CCC5B8;border:1px solid #54596E;background:#40424E !important}.select2-drop.pulse .select2-choices .select2-search-choice .select2-search-choice-close,.select2-container-multi.pulse .select2-choices .select2-search-choice .select2-search-choice-close{top:2px;background:url('../img/select2.png') right top no-repeat !important}.select2-drop.pulse.shipments{background:#1C1C1C}.select2-drop.pulse.shipments .select2-search input{width:560px;outline:0;margin:0;padding:0;background:#222 !important;border:none;color:#fff;font-size:14px;font-family:'sourcesanspro-regular';background:#fff url('../img/select2.png') no-repeat 100% -22px !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-gradient(linear, left bottom, left top, color-stop(.85, #222), color-stop(.99, #222)) !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-linear-gradient(center bottom, #222 85%, #222 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,-moz-linear-gradient(center bottom, #222 85%, #222 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,linear-gradient(to bottom, #222 85%, #222 99%) 0 0 !important}.select2-drop.pulse.shipments .select2-results{margin-top:0px !important;border-top:1px solid #313645 !important;margin-bottom:0px !important;width:560px !important;background:#1C1C1C;color:#919191;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;margin:4px auto 4px auto}.select2-drop.pulse.shipments .select2-results .select2-no-results{background:#1C1C1C;color:#919191;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;margin:4px auto 4px auto}.select2-drop.pulse.shipments .select2-results .select2-selection-limit{background:none}.select2-drop.pulse.shipments .select2-more-results.select2-active{background:#f4f4f4 url('../img/select2-spinner.gif') no-repeat 100% !important}.select2-drop.pulse.shipments .select2-choices{width:100%;border-radius:5px;outline:0;background:#1a1a1a !important;border:1px solid #000;color:#919191;padding:0px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}.select2-drop.pulse.shipments .select2-choices .select2-search-field input.select2-active{background:#fff url('../img/select2-spinner.gif') no-repeat 100% !important}.select2-drop.pulse.shipments .select2-choices .select2-search-choice{color:#CCC5B8;border:1px solid #54596E;background:#40424E !important}.select2-drop.pulse.shipments .select2-choices .select2-search-choice .select2-search-choice-close{top:2px;background:url('../img/select2.png') right top no-repeat !important}.select2-drop-active.pulse{border:1px solid #313645 !important}.select2-drop-active.pulse.filters-views-results{border:1px solid #313645 !important;margin-left:3px !important}.select2-drop-active.pulse.filters-views-results .select2-search{padding:0}.select2-drop-active.pulse.filters-views-results .select2-search input{width:100%;margin:0}.select2-drop-active.pulse.filters-views-results .select2-results{padding:0}.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container{display:flex;justify-content:space-between;padding-right:20px}.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-delete-icon,.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-edit-icon{color:#eee;border:none;background:none}.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-delete-icon:disabled,.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-edit-icon:disabled{color:gray}.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-delete-icon:hover,.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-edit-icon:hover{color:#39b2c6;text-decoration:underline;cursor:pointer}.select2-drop-active.pulse.filters-views-results .select2-results .select2-results-option-container .select2-results-delete-icon:disabled:hover{cursor:not-allowed;color:gray}.select2-drop.select2-drop-above.select2-drop-active.pulse{border-top:1px solid #313645 !important}.select2-container-active.pulse .select2-choice,.select2-container-active.pulse .select2-container-active .select2-choices{border:1px solid #313645}.select2-dropdown-open.select2-drop-above.pulse .select2-choice,.select2-dropdown-open.select2-drop-above.pulse .select2-dropdown-open.select2-drop-above .select2-choices{border:1px solid #313645}.select2-container-multi.select2-container-active.pulse .select2-choices{border:1px solid #313645}.select2-search input{width:100%;outline:0;margin-left:-4px;background:#222 !important;border:none;color:#fff;font-size:14px;padding-left:3px;padding-right:0px;font-family:'sourcesanspro-regular';background:#fff url('../img/select2.png') no-repeat 100% -22px !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-gradient(linear, left bottom, left top, color-stop(.85, #222), color-stop(.99, #222)) !important;background:url('../img/select2.png') no-repeat 100% -22px,-webkit-linear-gradient(center bottom, #222 85%, #222 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,-moz-linear-gradient(center bottom, #222 85%, #222 99%) !important;background:url('../img/select2.png') no-repeat 100% -22px,linear-gradient(to bottom, #222 85%, #222 99%) 0 0 !important}.select2-container .select2-choice abbr{top:6px}.select2-drop-mask{z-index:9999}.daterangepicker{position:relative !important;color:#444;background-color:#efefef}#pulseos{position:relative;overflow:hidden;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;font-weight:400;color:#eeeeee;/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css *//*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */}#pulseos td{border:none}#pulseos li{list-style:none}#pulseos .form-control[disabled]{background-color:#232323 !important}#pulseos .incident-cluster .incident-cluster-text{position:absolute;text-align:center;color:black;padding-top:15%}#pulseos .incident-cluster img{position:absolute;top:2%;left:10%;width:80%;height:80%}#pulseos .incident-cluster .incident-cluster-glow{filter:drop-shadow(0 0 3px #7cfef5) drop-shadow(0 0 1px #31cdc2)}#pulseos .incident-cluster .outer-background-circle{position:absolute;top:-50%;left:-50%;width:200%;height:200%;background-color:rgba(66,66,66,0.2);border-radius:50%}#pulseos .incident-cluster .inner-background-circle{position:absolute;top:10%;left:10%;width:80%;height:80%;background-color:rgba(66,66,66,0.4);border-radius:50%;display:flex;justify-content:center;align-items:center}#pulseos html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}#pulseos body{margin:0}#pulseos article,#pulseos aside,#pulseos details,#pulseos figcaption,#pulseos figure,#pulseos footer,#pulseos header,#pulseos hgroup,#pulseos main,#pulseos menu,#pulseos nav,#pulseos section,#pulseos summary{display:block}#pulseos audio,#pulseos canvas,#pulseos progress,#pulseos video{display:inline-block;vertical-align:baseline}#pulseos audio:not([controls]){display:none;height:0}#pulseos [hidden],#pulseos template{display:none}#pulseos a{background-color:transparent}#pulseos a:active,#pulseos a:hover{outline:0}#pulseos abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}#pulseos b,#pulseos strong{font-weight:bold}#pulseos dfn{font-style:italic}#pulseos h1{font-size:2em;margin:.67em 0}#pulseos mark{background:#ff0;color:#000}#pulseos small{font-size:80%}#pulseos sub,#pulseos sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}#pulseos sup{top:-0.5em}#pulseos sub{bottom:-0.25em}#pulseos img{border:0}#pulseos svg:not(:root){overflow:hidden}#pulseos figure{margin:1em 40px}#pulseos hr{box-sizing:content-box;height:0}#pulseos pre{overflow:auto}#pulseos code,#pulseos kbd,#pulseos pre,#pulseos samp{font-family:monospace, monospace;font-size:1em}#pulseos button,#pulseos input,#pulseos optgroup,#pulseos select,#pulseos textarea{color:inherit;font:inherit;margin:0}#pulseos button{overflow:visible}#pulseos button,#pulseos select{text-transform:none}#pulseos button,#pulseos html input[type="button"],#pulseos input[type="reset"],#pulseos input[type="submit"]{-webkit-appearance:button;cursor:pointer}#pulseos button[disabled],#pulseos html input[disabled]{cursor:default}#pulseos button::-moz-focus-inner,#pulseos input::-moz-focus-inner{border:0;padding:0}#pulseos input{line-height:normal}#pulseos input[type="checkbox"],#pulseos input[type="radio"]{box-sizing:border-box;padding:0}#pulseos input[type="number"]::-webkit-inner-spin-button,#pulseos input[type="number"]::-webkit-outer-spin-button{height:auto}#pulseos input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}#pulseos input[type="search"]::-webkit-search-cancel-button,#pulseos input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}#pulseos fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}#pulseos legend{border:0;padding:0}#pulseos textarea{overflow:auto}#pulseos optgroup{font-weight:bold}#pulseos table{border-collapse:collapse;border-spacing:0}#pulseos td,#pulseos th{padding:0}@media print{#pulseos *,#pulseos *:before,#pulseos *:after{color:#000 !important;text-shadow:none !important;background:transparent !important;box-shadow:none !important}#pulseos a,#pulseos a:visited{text-decoration:underline}#pulseos a[href]:after{content:" (" attr(href) ")"}#pulseos abbr[title]:after{content:" (" attr(title) ")"}#pulseos a[href^="#"]:after,#pulseos a[href^="javascript:"]:after{content:""}#pulseos pre,#pulseos blockquote{border:1px solid #999;page-break-inside:avoid}#pulseos thead{display:table-header-group}#pulseos tr,#pulseos img{page-break-inside:avoid}#pulseos img{max-width:100% !important}#pulseos p,#pulseos h2,#pulseos h3{orphans:3;widows:3}#pulseos h2,#pulseos h3{page-break-after:avoid}#pulseos .navbar{display:none}#pulseos .btn>.caret,#pulseos .dropup>.btn>.caret{border-top-color:#000 !important}#pulseos .label{border:1px solid #000}#pulseos .table{border-collapse:collapse !important}#pulseos .table td,#pulseos .table th{background-color:#fff !important}#pulseos .table-bordered th,#pulseos .table-bordered td{border:1px solid #ddd !important}}#pulseos *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#pulseos *:before,#pulseos *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#pulseos html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}#pulseos body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#eeeeee;background-color:#2c2c2c}#pulseos input,#pulseos button,#pulseos select,#pulseos textarea{font-family:inherit;font-size:inherit;line-height:inherit}#pulseos a{color:#39b2c6;text-decoration:none}#pulseos a:hover,#pulseos a:focus{color:#287d8b;text-decoration:underline}#pulseos a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#pulseos figure{margin:0}#pulseos img{vertical-align:middle}#pulseos .img-responsive{display:block;max-width:100%;height:auto}#pulseos .img-rounded{border-radius:6px}#pulseos .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#2c2c2c;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}#pulseos .img-circle{border-radius:50%}#pulseos hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #fff}#pulseos .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}#pulseos .sr-only-focusable:active,#pulseos .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#pulseos [role="button"]{cursor:pointer}#pulseos h1,#pulseos h2,#pulseos h3,#pulseos h4,#pulseos h5,#pulseos h6,#pulseos .h1,#pulseos .h2,#pulseos .h3,#pulseos .h4,#pulseos .h5,#pulseos .h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}#pulseos h1 small,#pulseos h2 small,#pulseos h3 small,#pulseos h4 small,#pulseos h5 small,#pulseos h6 small,#pulseos .h1 small,#pulseos .h2 small,#pulseos .h3 small,#pulseos .h4 small,#pulseos .h5 small,#pulseos .h6 small,#pulseos h1 .small,#pulseos h2 .small,#pulseos h3 .small,#pulseos h4 .small,#pulseos h5 .small,#pulseos h6 .small,#pulseos .h1 .small,#pulseos .h2 .small,#pulseos .h3 .small,#pulseos .h4 .small,#pulseos .h5 .small,#pulseos .h6 .small{font-weight:400;line-height:1;color:#f7f7f7}#pulseos h1,#pulseos .h1,#pulseos h2,#pulseos .h2,#pulseos h3,#pulseos .h3{margin-top:20px;margin-bottom:10px}#pulseos h1 small,#pulseos .h1 small,#pulseos h2 small,#pulseos .h2 small,#pulseos h3 small,#pulseos .h3 small,#pulseos h1 .small,#pulseos .h1 .small,#pulseos h2 .small,#pulseos .h2 .small,#pulseos h3 .small,#pulseos .h3 .small{font-size:65%}#pulseos h4,#pulseos .h4,#pulseos h5,#pulseos .h5,#pulseos h6,#pulseos .h6{margin-top:10px;margin-bottom:10px}#pulseos h4 small,#pulseos .h4 small,#pulseos h5 small,#pulseos .h5 small,#pulseos h6 small,#pulseos .h6 small,#pulseos h4 .small,#pulseos .h4 .small,#pulseos h5 .small,#pulseos .h5 .small,#pulseos h6 .small,#pulseos .h6 .small{font-size:75%}#pulseos h1,#pulseos .h1{font-size:36px}#pulseos h2,#pulseos .h2{font-size:30px}#pulseos h3,#pulseos .h3{font-size:24px}#pulseos h4,#pulseos .h4{font-size:18px}#pulseos h5,#pulseos .h5{font-size:14px}#pulseos h6,#pulseos .h6{font-size:12px}#pulseos p{margin:0 0 10px}#pulseos .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){#pulseos .lead{font-size:21px}}#pulseos small,#pulseos .small{font-size:85%}#pulseos mark,#pulseos .mark{padding:.2em;background-color:#fcf8e3}#pulseos .text-left{text-align:left}#pulseos .text-right{text-align:right}#pulseos .text-center{text-align:center}#pulseos .text-justify{text-align:justify}#pulseos .text-nowrap{white-space:nowrap}#pulseos .text-lowercase{text-transform:lowercase}#pulseos .text-uppercase{text-transform:uppercase}#pulseos .text-capitalize{text-transform:capitalize}#pulseos .text-muted{color:#f7f7f7}#pulseos .text-primary{color:#20242d}a#pulseos .text-primary:hover,a#pulseos .text-primary:focus{color:#0b0c0f}#pulseos .text-success{color:#3c763d}a#pulseos .text-success:hover,a#pulseos .text-success:focus{color:#2b542c}#pulseos .text-info{color:#31708f}a#pulseos .text-info:hover,a#pulseos .text-info:focus{color:#245269}#pulseos .text-warning{color:#8a6d3b}a#pulseos .text-warning:hover,a#pulseos .text-warning:focus{color:#66512c}#pulseos .text-danger{color:#a94442}a#pulseos .text-danger:hover,a#pulseos .text-danger:focus{color:#843534}#pulseos .bg-primary{color:#fff;background-color:#20242d}a#pulseos .bg-primary:hover,a#pulseos .bg-primary:focus{background-color:#0b0c0f}#pulseos .bg-success{background-color:#dff0d8}a#pulseos .bg-success:hover,a#pulseos .bg-success:focus{background-color:#c1e2b3}#pulseos .bg-info{background-color:#d9edf7}a#pulseos .bg-info:hover,a#pulseos .bg-info:focus{background-color:#afd9ee}#pulseos .bg-warning{background-color:#fcf8e3}a#pulseos .bg-warning:hover,a#pulseos .bg-warning:focus{background-color:#f7ecb5}#pulseos .bg-danger{background-color:#f2dede}a#pulseos .bg-danger:hover,a#pulseos .bg-danger:focus{background-color:#e4b9b9}#pulseos .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #fff}#pulseos ul,#pulseos ol{margin-top:0;margin-bottom:10px}#pulseos ul ul,#pulseos ol ul,#pulseos ul ol,#pulseos ol ol{margin-bottom:0}#pulseos .list-unstyled{padding-left:0;list-style:none}#pulseos .list-inline{padding-left:0;list-style:none;margin-left:-5px}#pulseos .list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}#pulseos dl{margin-top:0;margin-bottom:20px}#pulseos dt,#pulseos dd{line-height:1.42857143}#pulseos dt{font-weight:700}#pulseos dd{margin-left:0}@media (min-width:768px){#pulseos .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#pulseos .dl-horizontal dd{margin-left:180px}}#pulseos abbr[title],#pulseos abbr[data-original-title]{cursor:help}#pulseos .initialism{font-size:90%;text-transform:uppercase}#pulseos blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #fff}#pulseos blockquote p:last-child,#pulseos blockquote ul:last-child,#pulseos blockquote ol:last-child{margin-bottom:0}#pulseos blockquote footer,#pulseos blockquote small,#pulseos blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#f7f7f7}#pulseos blockquote footer:before,#pulseos blockquote small:before,#pulseos blockquote .small:before{content:"\2014 \00A0"}#pulseos .blockquote-reverse,#pulseos blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #fff;border-left:0}#pulseos .blockquote-reverse footer:before,#pulseos blockquote.pull-right footer:before,#pulseos .blockquote-reverse small:before,#pulseos blockquote.pull-right small:before,#pulseos .blockquote-reverse .small:before,#pulseos blockquote.pull-right .small:before{content:""}#pulseos .blockquote-reverse footer:after,#pulseos blockquote.pull-right footer:after,#pulseos .blockquote-reverse small:after,#pulseos blockquote.pull-right small:after,#pulseos .blockquote-reverse .small:after,#pulseos blockquote.pull-right .small:after{content:"\00A0 \2014"}#pulseos address{margin-bottom:20px;font-style:normal;line-height:1.42857143}#pulseos code,#pulseos kbd,#pulseos pre,#pulseos samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}#pulseos code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}#pulseos kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}#pulseos kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}#pulseos pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#919191;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}#pulseos pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}#pulseos .pre-scrollable{max-height:340px;overflow-y:scroll}#pulseos .container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){#pulseos .container{width:750px}}@media (min-width:992px){#pulseos .container{width:970px}}@media (min-width:1200px){#pulseos .container{width:1170px}}#pulseos .container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}#pulseos .row{margin-right:-15px;margin-left:-15px}#pulseos .row-no-gutters{margin-right:0;margin-left:0}#pulseos .row-no-gutters [class*="col-"]{padding-right:0;padding-left:0}#pulseos .col-xs-1,#pulseos .col-sm-1,#pulseos .col-md-1,#pulseos .col-lg-1,#pulseos .col-xs-2,#pulseos .col-sm-2,#pulseos .col-md-2,#pulseos .col-lg-2,#pulseos .col-xs-3,#pulseos .col-sm-3,#pulseos .col-md-3,#pulseos .col-lg-3,#pulseos .col-xs-4,#pulseos .col-sm-4,#pulseos .col-md-4,#pulseos .col-lg-4,#pulseos .col-xs-5,#pulseos .col-sm-5,#pulseos .col-md-5,#pulseos .col-lg-5,#pulseos .col-xs-6,#pulseos .col-sm-6,#pulseos .col-md-6,#pulseos .col-lg-6,#pulseos .col-xs-7,#pulseos .col-sm-7,#pulseos .col-md-7,#pulseos .col-lg-7,#pulseos .col-xs-8,#pulseos .col-sm-8,#pulseos .col-md-8,#pulseos .col-lg-8,#pulseos .col-xs-9,#pulseos .col-sm-9,#pulseos .col-md-9,#pulseos .col-lg-9,#pulseos .col-xs-10,#pulseos .col-sm-10,#pulseos .col-md-10,#pulseos .col-lg-10,#pulseos .col-xs-11,#pulseos .col-sm-11,#pulseos .col-md-11,#pulseos .col-lg-11,#pulseos .col-xs-12,#pulseos .col-sm-12,#pulseos .col-md-12,#pulseos .col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}#pulseos .col-xs-1,#pulseos .col-xs-2,#pulseos .col-xs-3,#pulseos .col-xs-4,#pulseos .col-xs-5,#pulseos .col-xs-6,#pulseos .col-xs-7,#pulseos .col-xs-8,#pulseos .col-xs-9,#pulseos .col-xs-10,#pulseos .col-xs-11,#pulseos .col-xs-12{float:left}#pulseos .col-xs-12{width:100%}#pulseos .col-xs-11{width:91.66666667%}#pulseos .col-xs-10{width:83.33333333%}#pulseos .col-xs-9{width:75%}#pulseos .col-xs-8{width:66.66666667%}#pulseos .col-xs-7{width:58.33333333%}#pulseos .col-xs-6{width:50%}#pulseos .col-xs-5{width:41.66666667%}#pulseos .col-xs-4{width:33.33333333%}#pulseos .col-xs-3{width:25%}#pulseos .col-xs-2{width:16.66666667%}#pulseos .col-xs-1{width:8.33333333%}#pulseos .col-xs-pull-12{right:100%}#pulseos .col-xs-pull-11{right:91.66666667%}#pulseos .col-xs-pull-10{right:83.33333333%}#pulseos .col-xs-pull-9{right:75%}#pulseos .col-xs-pull-8{right:66.66666667%}#pulseos .col-xs-pull-7{right:58.33333333%}#pulseos .col-xs-pull-6{right:50%}#pulseos .col-xs-pull-5{right:41.66666667%}#pulseos .col-xs-pull-4{right:33.33333333%}#pulseos .col-xs-pull-3{right:25%}#pulseos .col-xs-pull-2{right:16.66666667%}#pulseos .col-xs-pull-1{right:8.33333333%}#pulseos .col-xs-pull-0{right:auto}#pulseos .col-xs-push-12{left:100%}#pulseos .col-xs-push-11{left:91.66666667%}#pulseos .col-xs-push-10{left:83.33333333%}#pulseos .col-xs-push-9{left:75%}#pulseos .col-xs-push-8{left:66.66666667%}#pulseos .col-xs-push-7{left:58.33333333%}#pulseos .col-xs-push-6{left:50%}#pulseos .col-xs-push-5{left:41.66666667%}#pulseos .col-xs-push-4{left:33.33333333%}#pulseos .col-xs-push-3{left:25%}#pulseos .col-xs-push-2{left:16.66666667%}#pulseos .col-xs-push-1{left:8.33333333%}#pulseos .col-xs-push-0{left:auto}#pulseos .col-xs-offset-12{margin-left:100%}#pulseos .col-xs-offset-11{margin-left:91.66666667%}#pulseos .col-xs-offset-10{margin-left:83.33333333%}#pulseos .col-xs-offset-9{margin-left:75%}#pulseos .col-xs-offset-8{margin-left:66.66666667%}#pulseos .col-xs-offset-7{margin-left:58.33333333%}#pulseos .col-xs-offset-6{margin-left:50%}#pulseos .col-xs-offset-5{margin-left:41.66666667%}#pulseos .col-xs-offset-4{margin-left:33.33333333%}#pulseos .col-xs-offset-3{margin-left:25%}#pulseos .col-xs-offset-2{margin-left:16.66666667%}#pulseos .col-xs-offset-1{margin-left:8.33333333%}#pulseos .col-xs-offset-0{margin-left:0%}@media (min-width:768px){#pulseos .col-sm-1,#pulseos .col-sm-2,#pulseos .col-sm-3,#pulseos .col-sm-4,#pulseos .col-sm-5,#pulseos .col-sm-6,#pulseos .col-sm-7,#pulseos .col-sm-8,#pulseos .col-sm-9,#pulseos .col-sm-10,#pulseos .col-sm-11,#pulseos .col-sm-12{float:left}#pulseos .col-sm-12{width:100%}#pulseos .col-sm-11{width:91.66666667%}#pulseos .col-sm-10{width:83.33333333%}#pulseos .col-sm-9{width:75%}#pulseos .col-sm-8{width:66.66666667%}#pulseos .col-sm-7{width:58.33333333%}#pulseos .col-sm-6{width:50%}#pulseos .col-sm-5{width:41.66666667%}#pulseos .col-sm-4{width:33.33333333%}#pulseos .col-sm-3{width:25%}#pulseos .col-sm-2{width:16.66666667%}#pulseos .col-sm-1{width:8.33333333%}#pulseos .col-sm-pull-12{right:100%}#pulseos .col-sm-pull-11{right:91.66666667%}#pulseos .col-sm-pull-10{right:83.33333333%}#pulseos .col-sm-pull-9{right:75%}#pulseos .col-sm-pull-8{right:66.66666667%}#pulseos .col-sm-pull-7{right:58.33333333%}#pulseos .col-sm-pull-6{right:50%}#pulseos .col-sm-pull-5{right:41.66666667%}#pulseos .col-sm-pull-4{right:33.33333333%}#pulseos .col-sm-pull-3{right:25%}#pulseos .col-sm-pull-2{right:16.66666667%}#pulseos .col-sm-pull-1{right:8.33333333%}#pulseos .col-sm-pull-0{right:auto}#pulseos .col-sm-push-12{left:100%}#pulseos .col-sm-push-11{left:91.66666667%}#pulseos .col-sm-push-10{left:83.33333333%}#pulseos .col-sm-push-9{left:75%}#pulseos .col-sm-push-8{left:66.66666667%}#pulseos .col-sm-push-7{left:58.33333333%}#pulseos .col-sm-push-6{left:50%}#pulseos .col-sm-push-5{left:41.66666667%}#pulseos .col-sm-push-4{left:33.33333333%}#pulseos .col-sm-push-3{left:25%}#pulseos .col-sm-push-2{left:16.66666667%}#pulseos .col-sm-push-1{left:8.33333333%}#pulseos .col-sm-push-0{left:auto}#pulseos .col-sm-offset-12{margin-left:100%}#pulseos .col-sm-offset-11{margin-left:91.66666667%}#pulseos .col-sm-offset-10{margin-left:83.33333333%}#pulseos .col-sm-offset-9{margin-left:75%}#pulseos .col-sm-offset-8{margin-left:66.66666667%}#pulseos .col-sm-offset-7{margin-left:58.33333333%}#pulseos .col-sm-offset-6{margin-left:50%}#pulseos .col-sm-offset-5{margin-left:41.66666667%}#pulseos .col-sm-offset-4{margin-left:33.33333333%}#pulseos .col-sm-offset-3{margin-left:25%}#pulseos .col-sm-offset-2{margin-left:16.66666667%}#pulseos .col-sm-offset-1{margin-left:8.33333333%}#pulseos .col-sm-offset-0{margin-left:0%}}@media (min-width:992px){#pulseos .col-md-1,#pulseos .col-md-2,#pulseos .col-md-3,#pulseos .col-md-4,#pulseos .col-md-5,#pulseos .col-md-6,#pulseos .col-md-7,#pulseos .col-md-8,#pulseos .col-md-9,#pulseos .col-md-10,#pulseos .col-md-11,#pulseos .col-md-12{float:left}#pulseos .col-md-12{width:100%}#pulseos .col-md-11{width:91.66666667%}#pulseos .col-md-10{width:83.33333333%}#pulseos .col-md-9{width:75%}#pulseos .col-md-8{width:66.66666667%}#pulseos .col-md-7{width:58.33333333%}#pulseos .col-md-6{width:50%}#pulseos .col-md-5{width:41.66666667%}#pulseos .col-md-4{width:33.33333333%}#pulseos .col-md-3{width:25%}#pulseos .col-md-2{width:16.66666667%}#pulseos .col-md-1{width:8.33333333%}#pulseos .col-md-pull-12{right:100%}#pulseos .col-md-pull-11{right:91.66666667%}#pulseos .col-md-pull-10{right:83.33333333%}#pulseos .col-md-pull-9{right:75%}#pulseos .col-md-pull-8{right:66.66666667%}#pulseos .col-md-pull-7{right:58.33333333%}#pulseos .col-md-pull-6{right:50%}#pulseos .col-md-pull-5{right:41.66666667%}#pulseos .col-md-pull-4{right:33.33333333%}#pulseos .col-md-pull-3{right:25%}#pulseos .col-md-pull-2{right:16.66666667%}#pulseos .col-md-pull-1{right:8.33333333%}#pulseos .col-md-pull-0{right:auto}#pulseos .col-md-push-12{left:100%}#pulseos .col-md-push-11{left:91.66666667%}#pulseos .col-md-push-10{left:83.33333333%}#pulseos .col-md-push-9{left:75%}#pulseos .col-md-push-8{left:66.66666667%}#pulseos .col-md-push-7{left:58.33333333%}#pulseos .col-md-push-6{left:50%}#pulseos .col-md-push-5{left:41.66666667%}#pulseos .col-md-push-4{left:33.33333333%}#pulseos .col-md-push-3{left:25%}#pulseos .col-md-push-2{left:16.66666667%}#pulseos .col-md-push-1{left:8.33333333%}#pulseos .col-md-push-0{left:auto}#pulseos .col-md-offset-12{margin-left:100%}#pulseos .col-md-offset-11{margin-left:91.66666667%}#pulseos .col-md-offset-10{margin-left:83.33333333%}#pulseos .col-md-offset-9{margin-left:75%}#pulseos .col-md-offset-8{margin-left:66.66666667%}#pulseos .col-md-offset-7{margin-left:58.33333333%}#pulseos .col-md-offset-6{margin-left:50%}#pulseos .col-md-offset-5{margin-left:41.66666667%}#pulseos .col-md-offset-4{margin-left:33.33333333%}#pulseos .col-md-offset-3{margin-left:25%}#pulseos .col-md-offset-2{margin-left:16.66666667%}#pulseos .col-md-offset-1{margin-left:8.33333333%}#pulseos .col-md-offset-0{margin-left:0%}}@media (min-width:1200px){#pulseos .col-lg-1,#pulseos .col-lg-2,#pulseos .col-lg-3,#pulseos .col-lg-4,#pulseos .col-lg-5,#pulseos .col-lg-6,#pulseos .col-lg-7,#pulseos .col-lg-8,#pulseos .col-lg-9,#pulseos .col-lg-10,#pulseos .col-lg-11,#pulseos .col-lg-12{float:left}#pulseos .col-lg-12{width:100%}#pulseos .col-lg-11{width:91.66666667%}#pulseos .col-lg-10{width:83.33333333%}#pulseos .col-lg-9{width:75%}#pulseos .col-lg-8{width:66.66666667%}#pulseos .col-lg-7{width:58.33333333%}#pulseos .col-lg-6{width:50%}#pulseos .col-lg-5{width:41.66666667%}#pulseos .col-lg-4{width:33.33333333%}#pulseos .col-lg-3{width:25%}#pulseos .col-lg-2{width:16.66666667%}#pulseos .col-lg-1{width:8.33333333%}#pulseos .col-lg-pull-12{right:100%}#pulseos .col-lg-pull-11{right:91.66666667%}#pulseos .col-lg-pull-10{right:83.33333333%}#pulseos .col-lg-pull-9{right:75%}#pulseos .col-lg-pull-8{right:66.66666667%}#pulseos .col-lg-pull-7{right:58.33333333%}#pulseos .col-lg-pull-6{right:50%}#pulseos .col-lg-pull-5{right:41.66666667%}#pulseos .col-lg-pull-4{right:33.33333333%}#pulseos .col-lg-pull-3{right:25%}#pulseos .col-lg-pull-2{right:16.66666667%}#pulseos .col-lg-pull-1{right:8.33333333%}#pulseos .col-lg-pull-0{right:auto}#pulseos .col-lg-push-12{left:100%}#pulseos .col-lg-push-11{left:91.66666667%}#pulseos .col-lg-push-10{left:83.33333333%}#pulseos .col-lg-push-9{left:75%}#pulseos .col-lg-push-8{left:66.66666667%}#pulseos .col-lg-push-7{left:58.33333333%}#pulseos .col-lg-push-6{left:50%}#pulseos .col-lg-push-5{left:41.66666667%}#pulseos .col-lg-push-4{left:33.33333333%}#pulseos .col-lg-push-3{left:25%}#pulseos .col-lg-push-2{left:16.66666667%}#pulseos .col-lg-push-1{left:8.33333333%}#pulseos .col-lg-push-0{left:auto}#pulseos .col-lg-offset-12{margin-left:100%}#pulseos .col-lg-offset-11{margin-left:91.66666667%}#pulseos .col-lg-offset-10{margin-left:83.33333333%}#pulseos .col-lg-offset-9{margin-left:75%}#pulseos .col-lg-offset-8{margin-left:66.66666667%}#pulseos .col-lg-offset-7{margin-left:58.33333333%}#pulseos .col-lg-offset-6{margin-left:50%}#pulseos .col-lg-offset-5{margin-left:41.66666667%}#pulseos .col-lg-offset-4{margin-left:33.33333333%}#pulseos .col-lg-offset-3{margin-left:25%}#pulseos .col-lg-offset-2{margin-left:16.66666667%}#pulseos .col-lg-offset-1{margin-left:8.33333333%}#pulseos .col-lg-offset-0{margin-left:0%}}#pulseos table{background-color:transparent}#pulseos table col[class*="col-"]{position:static;display:table-column;float:none}#pulseos table td[class*="col-"],#pulseos table th[class*="col-"]{position:static;display:table-cell;float:none}#pulseos caption{padding-top:8px;padding-bottom:8px;color:#f7f7f7;text-align:left}#pulseos th{text-align:left}#pulseos .table{width:100%;max-width:100%;margin-bottom:20px}#pulseos .table>thead>tr>th,#pulseos .table>tbody>tr>th,#pulseos .table>tfoot>tr>th,#pulseos .table>thead>tr>td,#pulseos .table>tbody>tr>td,#pulseos .table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #252728}#pulseos .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #252728}#pulseos .table>caption+thead>tr:first-child>th,#pulseos .table>colgroup+thead>tr:first-child>th,#pulseos .table>thead:first-child>tr:first-child>th,#pulseos .table>caption+thead>tr:first-child>td,#pulseos .table>colgroup+thead>tr:first-child>td,#pulseos .table>thead:first-child>tr:first-child>td{border-top:0}#pulseos .table>tbody+tbody{border-top:2px solid #252728}#pulseos .table .table{background-color:#2c2c2c}#pulseos .table-condensed>thead>tr>th,#pulseos .table-condensed>tbody>tr>th,#pulseos .table-condensed>tfoot>tr>th,#pulseos .table-condensed>thead>tr>td,#pulseos .table-condensed>tbody>tr>td,#pulseos .table-condensed>tfoot>tr>td{padding:5px}#pulseos .table-bordered{border:1px solid #252728}#pulseos .table-bordered>thead>tr>th,#pulseos .table-bordered>tbody>tr>th,#pulseos .table-bordered>tfoot>tr>th,#pulseos .table-bordered>thead>tr>td,#pulseos .table-bordered>tbody>tr>td,#pulseos .table-bordered>tfoot>tr>td{border:1px solid #252728}#pulseos .table-bordered>thead>tr>th,#pulseos .table-bordered>thead>tr>td{border-bottom-width:2px}#pulseos .table-striped>tbody>tr:nth-of-type(odd){background-color:#191a1b}#pulseos .table-hover>tbody>tr:hover{background-color:#20242d}#pulseos .table>thead>tr>td.active,#pulseos .table>tbody>tr>td.active,#pulseos .table>tfoot>tr>td.active,#pulseos .table>thead>tr>th.active,#pulseos .table>tbody>tr>th.active,#pulseos .table>tfoot>tr>th.active,#pulseos .table>thead>tr.active>td,#pulseos .table>tbody>tr.active>td,#pulseos .table>tfoot>tr.active>td,#pulseos .table>thead>tr.active>th,#pulseos .table>tbody>tr.active>th,#pulseos .table>tfoot>tr.active>th{background-color:#20242d}#pulseos .table-hover>tbody>tr>td.active:hover,#pulseos .table-hover>tbody>tr>th.active:hover,#pulseos .table-hover>tbody>tr.active:hover>td,#pulseos .table-hover>tbody>tr:hover>.active,#pulseos .table-hover>tbody>tr.active:hover>th{background-color:#15181e}#pulseos .table>thead>tr>td.success,#pulseos .table>tbody>tr>td.success,#pulseos .table>tfoot>tr>td.success,#pulseos .table>thead>tr>th.success,#pulseos .table>tbody>tr>th.success,#pulseos .table>tfoot>tr>th.success,#pulseos .table>thead>tr.success>td,#pulseos .table>tbody>tr.success>td,#pulseos .table>tfoot>tr.success>td,#pulseos .table>thead>tr.success>th,#pulseos .table>tbody>tr.success>th,#pulseos .table>tfoot>tr.success>th{background-color:#dff0d8}#pulseos .table-hover>tbody>tr>td.success:hover,#pulseos .table-hover>tbody>tr>th.success:hover,#pulseos .table-hover>tbody>tr.success:hover>td,#pulseos .table-hover>tbody>tr:hover>.success,#pulseos .table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}#pulseos .table>thead>tr>td.info,#pulseos .table>tbody>tr>td.info,#pulseos .table>tfoot>tr>td.info,#pulseos .table>thead>tr>th.info,#pulseos .table>tbody>tr>th.info,#pulseos .table>tfoot>tr>th.info,#pulseos .table>thead>tr.info>td,#pulseos .table>tbody>tr.info>td,#pulseos .table>tfoot>tr.info>td,#pulseos .table>thead>tr.info>th,#pulseos .table>tbody>tr.info>th,#pulseos .table>tfoot>tr.info>th{background-color:#d9edf7}#pulseos .table-hover>tbody>tr>td.info:hover,#pulseos .table-hover>tbody>tr>th.info:hover,#pulseos .table-hover>tbody>tr.info:hover>td,#pulseos .table-hover>tbody>tr:hover>.info,#pulseos .table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}#pulseos .table>thead>tr>td.warning,#pulseos .table>tbody>tr>td.warning,#pulseos .table>tfoot>tr>td.warning,#pulseos .table>thead>tr>th.warning,#pulseos .table>tbody>tr>th.warning,#pulseos .table>tfoot>tr>th.warning,#pulseos .table>thead>tr.warning>td,#pulseos .table>tbody>tr.warning>td,#pulseos .table>tfoot>tr.warning>td,#pulseos .table>thead>tr.warning>th,#pulseos .table>tbody>tr.warning>th,#pulseos .table>tfoot>tr.warning>th{background-color:#fcf8e3}#pulseos .table-hover>tbody>tr>td.warning:hover,#pulseos .table-hover>tbody>tr>th.warning:hover,#pulseos .table-hover>tbody>tr.warning:hover>td,#pulseos .table-hover>tbody>tr:hover>.warning,#pulseos .table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}#pulseos .table>thead>tr>td.danger,#pulseos .table>tbody>tr>td.danger,#pulseos .table>tfoot>tr>td.danger,#pulseos .table>thead>tr>th.danger,#pulseos .table>tbody>tr>th.danger,#pulseos .table>tfoot>tr>th.danger,#pulseos .table>thead>tr.danger>td,#pulseos .table>tbody>tr.danger>td,#pulseos .table>tfoot>tr.danger>td,#pulseos .table>thead>tr.danger>th,#pulseos .table>tbody>tr.danger>th,#pulseos .table>tfoot>tr.danger>th{background-color:#f2dede}#pulseos .table-hover>tbody>tr>td.danger:hover,#pulseos .table-hover>tbody>tr>th.danger:hover,#pulseos .table-hover>tbody>tr.danger:hover>td,#pulseos .table-hover>tbody>tr:hover>.danger,#pulseos .table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}#pulseos .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){#pulseos .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #252728}#pulseos .table-responsive>.table{margin-bottom:0}#pulseos .table-responsive>.table>thead>tr>th,#pulseos .table-responsive>.table>tbody>tr>th,#pulseos .table-responsive>.table>tfoot>tr>th,#pulseos .table-responsive>.table>thead>tr>td,#pulseos .table-responsive>.table>tbody>tr>td,#pulseos .table-responsive>.table>tfoot>tr>td{white-space:nowrap}#pulseos .table-responsive>.table-bordered{border:0}#pulseos .table-responsive>.table-bordered>thead>tr>th:first-child,#pulseos .table-responsive>.table-bordered>tbody>tr>th:first-child,#pulseos .table-responsive>.table-bordered>tfoot>tr>th:first-child,#pulseos .table-responsive>.table-bordered>thead>tr>td:first-child,#pulseos .table-responsive>.table-bordered>tbody>tr>td:first-child,#pulseos .table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}#pulseos .table-responsive>.table-bordered>thead>tr>th:last-child,#pulseos .table-responsive>.table-bordered>tbody>tr>th:last-child,#pulseos .table-responsive>.table-bordered>tfoot>tr>th:last-child,#pulseos .table-responsive>.table-bordered>thead>tr>td:last-child,#pulseos .table-responsive>.table-bordered>tbody>tr>td:last-child,#pulseos .table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}#pulseos .table-responsive>.table-bordered>tbody>tr:last-child>th,#pulseos .table-responsive>.table-bordered>tfoot>tr:last-child>th,#pulseos .table-responsive>.table-bordered>tbody>tr:last-child>td,#pulseos .table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}#pulseos fieldset{min-width:0;padding:0;margin:0;border:0}#pulseos legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#919191;border:0;border-bottom:1px solid #e5e5e5}#pulseos label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}#pulseos input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}#pulseos input[type="radio"],#pulseos input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}#pulseos input[type="radio"][disabled],#pulseos input[type="checkbox"][disabled],#pulseos input[type="radio"].disabled,#pulseos input[type="checkbox"].disabled,fieldset[disabled] #pulseos input[type="radio"],fieldset[disabled] #pulseos input[type="checkbox"]{cursor:not-allowed}#pulseos input[type="file"]{display:block}#pulseos input[type="range"]{display:block;width:100%}#pulseos select[multiple],#pulseos select[size]{height:auto}#pulseos input[type="file"]:focus,#pulseos input[type="radio"]:focus,#pulseos input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#pulseos output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#b3b3b3}#pulseos .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#b3b3b3;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}#pulseos .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)}#pulseos .form-control::-moz-placeholder{color:#999;opacity:1}#pulseos .form-control:-ms-input-placeholder{color:#999}#pulseos .form-control::-webkit-input-placeholder{color:#999}#pulseos .form-control::-ms-expand{background-color:transparent;border:0}#pulseos .form-control[disabled],#pulseos .form-control[readonly],fieldset[disabled] #pulseos .form-control{background-color:#fff;opacity:1}#pulseos .form-control[disabled],fieldset[disabled] #pulseos .form-control{cursor:not-allowed}textarea#pulseos .form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){#pulseos input[type="date"].form-control,#pulseos input[type="time"].form-control,#pulseos input[type="datetime-local"].form-control,#pulseos input[type="month"].form-control{line-height:34px}#pulseos input[type="date"].input-sm,#pulseos input[type="time"].input-sm,#pulseos input[type="datetime-local"].input-sm,#pulseos input[type="month"].input-sm,.input-group-sm #pulseos input[type="date"],.input-group-sm #pulseos input[type="time"],.input-group-sm #pulseos input[type="datetime-local"],.input-group-sm #pulseos input[type="month"]{line-height:30px}#pulseos input[type="date"].input-lg,#pulseos input[type="time"].input-lg,#pulseos input[type="datetime-local"].input-lg,#pulseos input[type="month"].input-lg,.input-group-lg #pulseos input[type="date"],.input-group-lg #pulseos input[type="time"],.input-group-lg #pulseos input[type="datetime-local"],.input-group-lg #pulseos input[type="month"]{line-height:46px}}#pulseos .form-group{margin-bottom:15px}#pulseos .radio,#pulseos .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}#pulseos .radio.disabled label,#pulseos .checkbox.disabled label,fieldset[disabled] #pulseos .radio label,fieldset[disabled] #pulseos .checkbox label{cursor:not-allowed}#pulseos .radio label,#pulseos .checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}#pulseos .radio input[type="radio"],#pulseos .radio-inline input[type="radio"],#pulseos .checkbox input[type="checkbox"],#pulseos .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}#pulseos .radio+.radio,#pulseos .checkbox+.checkbox{margin-top:-5px}#pulseos .radio-inline,#pulseos .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}#pulseos .radio-inline.disabled,#pulseos .checkbox-inline.disabled,fieldset[disabled] #pulseos .radio-inline,fieldset[disabled] #pulseos .checkbox-inline{cursor:not-allowed}#pulseos .radio-inline+.radio-inline,#pulseos .checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}#pulseos .form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}#pulseos .form-control-static.input-lg,#pulseos .form-control-static.input-sm{padding-right:0;padding-left:0}#pulseos .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select#pulseos .input-sm{height:30px;line-height:30px}textarea#pulseos .input-sm,select[multiple]#pulseos .input-sm{height:auto}#pulseos .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}#pulseos .form-group-sm select.form-control{height:30px;line-height:30px}#pulseos .form-group-sm textarea.form-control,#pulseos .form-group-sm select[multiple].form-control{height:auto}#pulseos .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}#pulseos .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select#pulseos .input-lg{height:46px;line-height:46px}textarea#pulseos .input-lg,select[multiple]#pulseos .input-lg{height:auto}#pulseos .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#pulseos .form-group-lg select.form-control{height:46px;line-height:46px}#pulseos .form-group-lg textarea.form-control,#pulseos .form-group-lg select[multiple].form-control{height:auto}#pulseos .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}#pulseos .has-feedback{position:relative}#pulseos .has-feedback .form-control{padding-right:42.5px}#pulseos .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}#pulseos .input-lg+.form-control-feedback,#pulseos .input-group-lg+.form-control-feedback,#pulseos .form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}#pulseos .input-sm+.form-control-feedback,#pulseos .input-group-sm+.form-control-feedback,#pulseos .form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}#pulseos .has-success .help-block,#pulseos .has-success .control-label,#pulseos .has-success .radio,#pulseos .has-success .checkbox,#pulseos .has-success .radio-inline,#pulseos .has-success .checkbox-inline,#pulseos .has-success.radio label,#pulseos .has-success.checkbox label,#pulseos .has-success.radio-inline label,#pulseos .has-success.checkbox-inline label{color:#3c763d}#pulseos .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#pulseos .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}#pulseos .has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}#pulseos .has-success .form-control-feedback{color:#3c763d}#pulseos .has-warning .help-block,#pulseos .has-warning .control-label,#pulseos .has-warning .radio,#pulseos .has-warning .checkbox,#pulseos .has-warning .radio-inline,#pulseos .has-warning .checkbox-inline,#pulseos .has-warning.radio label,#pulseos .has-warning.checkbox label,#pulseos .has-warning.radio-inline label,#pulseos .has-warning.checkbox-inline label{color:#8a6d3b}#pulseos .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#pulseos .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}#pulseos .has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}#pulseos .has-warning .form-control-feedback{color:#8a6d3b}#pulseos .has-error .help-block,#pulseos .has-error .control-label,#pulseos .has-error .radio,#pulseos .has-error .checkbox,#pulseos .has-error .radio-inline,#pulseos .has-error .checkbox-inline,#pulseos .has-error.radio label,#pulseos .has-error.checkbox label,#pulseos .has-error.radio-inline label,#pulseos .has-error.checkbox-inline label{color:#a94442}#pulseos .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}#pulseos .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}#pulseos .has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}#pulseos .has-error .form-control-feedback{color:#a94442}#pulseos .has-feedback label~.form-control-feedback{top:25px}#pulseos .has-feedback label.sr-only~.form-control-feedback{top:0}#pulseos .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#fff}@media (min-width:768px){#pulseos .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#pulseos .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}#pulseos .form-inline .form-control-static{display:inline-block}#pulseos .form-inline .input-group{display:inline-table;vertical-align:middle}#pulseos .form-inline .input-group .input-group-addon,#pulseos .form-inline .input-group .input-group-btn,#pulseos .form-inline .input-group .form-control{width:auto}#pulseos .form-inline .input-group>.form-control{width:100%}#pulseos .form-inline .control-label{margin-bottom:0;vertical-align:middle}#pulseos .form-inline .radio,#pulseos .form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#pulseos .form-inline .radio label,#pulseos .form-inline .checkbox label{padding-left:0}#pulseos .form-inline .radio input[type="radio"],#pulseos .form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}#pulseos .form-inline .has-feedback .form-control-feedback{top:0}}#pulseos .form-horizontal .radio,#pulseos .form-horizontal .checkbox,#pulseos .form-horizontal .radio-inline,#pulseos .form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}#pulseos .form-horizontal .radio,#pulseos .form-horizontal .checkbox{min-height:27px}#pulseos .form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){#pulseos .form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}#pulseos .form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){#pulseos .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){#pulseos .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}#pulseos .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos .btn:focus,#pulseos .btn:active:focus,#pulseos .btn.active:focus,#pulseos .btn.focus,#pulseos .btn:active.focus,#pulseos .btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#pulseos .btn:hover,#pulseos .btn:focus,#pulseos .btn.focus{color:#eeeeee;text-decoration:none}#pulseos .btn:active,#pulseos .btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#pulseos .btn.disabled,#pulseos .btn[disabled],fieldset[disabled] #pulseos .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a#pulseos .btn.disabled,fieldset[disabled] a#pulseos .btn{pointer-events:none}#pulseos .btn-default{color:#eeeeee;background-color:#313744;border-color:#20242d}#pulseos .btn-default:focus,#pulseos .btn-default.focus{color:#eeeeee;background-color:#1c1f26;border-color:#000}#pulseos .btn-default:hover{color:#eeeeee;background-color:#1c1f26;border-color:#070709}#pulseos .btn-default:active,#pulseos .btn-default.active,.open>.dropdown-toggle#pulseos .btn-default{color:#eeeeee;background-color:#1c1f26;background-image:none;border-color:#070709}#pulseos .btn-default:active:hover,#pulseos .btn-default.active:hover,.open>.dropdown-toggle#pulseos .btn-default:hover,#pulseos .btn-default:active:focus,#pulseos .btn-default.active:focus,.open>.dropdown-toggle#pulseos .btn-default:focus,#pulseos .btn-default:active.focus,#pulseos .btn-default.active.focus,.open>.dropdown-toggle#pulseos .btn-default.focus{color:#eeeeee;background-color:#0d0e12;border-color:#000}#pulseos .btn-default.disabled:hover,#pulseos .btn-default[disabled]:hover,fieldset[disabled] #pulseos .btn-default:hover,#pulseos .btn-default.disabled:focus,#pulseos .btn-default[disabled]:focus,fieldset[disabled] #pulseos .btn-default:focus,#pulseos .btn-default.disabled.focus,#pulseos .btn-default[disabled].focus,fieldset[disabled] #pulseos .btn-default.focus{background-color:#313744;border-color:#20242d}#pulseos .btn-default .badge{color:#313744;background-color:#eeeeee}#pulseos .btn-primary{color:#eeeeee;background-color:#20242d;border-color:#15181e}#pulseos .btn-primary:focus,#pulseos .btn-primary.focus{color:#eeeeee;background-color:#0b0c0f;border-color:#000}#pulseos .btn-primary:hover{color:#eeeeee;background-color:#0b0c0f;border-color:#000}#pulseos .btn-primary:active,#pulseos .btn-primary.active,.open>.dropdown-toggle#pulseos .btn-primary{color:#eeeeee;background-color:#0b0c0f;background-image:none;border-color:#000}#pulseos .btn-primary:active:hover,#pulseos .btn-primary.active:hover,.open>.dropdown-toggle#pulseos .btn-primary:hover,#pulseos .btn-primary:active:focus,#pulseos .btn-primary.active:focus,.open>.dropdown-toggle#pulseos .btn-primary:focus,#pulseos .btn-primary:active.focus,#pulseos .btn-primary.active.focus,.open>.dropdown-toggle#pulseos .btn-primary.focus{color:#eeeeee;background-color:#000;border-color:#000}#pulseos .btn-primary.disabled:hover,#pulseos .btn-primary[disabled]:hover,fieldset[disabled] #pulseos .btn-primary:hover,#pulseos .btn-primary.disabled:focus,#pulseos .btn-primary[disabled]:focus,fieldset[disabled] #pulseos .btn-primary:focus,#pulseos .btn-primary.disabled.focus,#pulseos .btn-primary[disabled].focus,fieldset[disabled] #pulseos .btn-primary.focus{background-color:#20242d;border-color:#15181e}#pulseos .btn-primary .badge{color:#20242d;background-color:#eeeeee}#pulseos .btn-success{color:#eeeeee;background-color:#108904;border-color:#0d7003}#pulseos .btn-success:focus,#pulseos .btn-success.focus{color:#eeeeee;background-color:#0a5703;border-color:#000}#pulseos .btn-success:hover{color:#eeeeee;background-color:#0a5703;border-color:#063502}#pulseos .btn-success:active,#pulseos .btn-success.active,.open>.dropdown-toggle#pulseos .btn-success{color:#eeeeee;background-color:#0a5703;background-image:none;border-color:#063502}#pulseos .btn-success:active:hover,#pulseos .btn-success.active:hover,.open>.dropdown-toggle#pulseos .btn-success:hover,#pulseos .btn-success:active:focus,#pulseos .btn-success.active:focus,.open>.dropdown-toggle#pulseos .btn-success:focus,#pulseos .btn-success:active.focus,#pulseos .btn-success.active.focus,.open>.dropdown-toggle#pulseos .btn-success.focus{color:#eeeeee;background-color:#063502;border-color:#000}#pulseos .btn-success.disabled:hover,#pulseos .btn-success[disabled]:hover,fieldset[disabled] #pulseos .btn-success:hover,#pulseos .btn-success.disabled:focus,#pulseos .btn-success[disabled]:focus,fieldset[disabled] #pulseos .btn-success:focus,#pulseos .btn-success.disabled.focus,#pulseos .btn-success[disabled].focus,fieldset[disabled] #pulseos .btn-success.focus{background-color:#108904;border-color:#0d7003}#pulseos .btn-success .badge{color:#108904;background-color:#eeeeee}#pulseos .btn-info{color:#eeeeee;background-color:#2d8fa5;border-color:#287e91}#pulseos .btn-info:focus,#pulseos .btn-info.focus{color:#eeeeee;background-color:#226c7d;border-color:#0c272d}#pulseos .btn-info:hover{color:#eeeeee;background-color:#226c7d;border-color:#1a5461}#pulseos .btn-info:active,#pulseos .btn-info.active,.open>.dropdown-toggle#pulseos .btn-info{color:#eeeeee;background-color:#226c7d;background-image:none;border-color:#1a5461}#pulseos .btn-info:active:hover,#pulseos .btn-info.active:hover,.open>.dropdown-toggle#pulseos .btn-info:hover,#pulseos .btn-info:active:focus,#pulseos .btn-info.active:focus,.open>.dropdown-toggle#pulseos .btn-info:focus,#pulseos .btn-info:active.focus,#pulseos .btn-info.active.focus,.open>.dropdown-toggle#pulseos .btn-info.focus{color:#eeeeee;background-color:#1a5461;border-color:#0c272d}#pulseos .btn-info.disabled:hover,#pulseos .btn-info[disabled]:hover,fieldset[disabled] #pulseos .btn-info:hover,#pulseos .btn-info.disabled:focus,#pulseos .btn-info[disabled]:focus,fieldset[disabled] #pulseos .btn-info:focus,#pulseos .btn-info.disabled.focus,#pulseos .btn-info[disabled].focus,fieldset[disabled] #pulseos .btn-info.focus{background-color:#2d8fa5;border-color:#287e91}#pulseos .btn-info .badge{color:#2d8fa5;background-color:#eeeeee}#pulseos .btn-warning{color:#eeeeee;background-color:#db992f;border-color:#cd8c23}#pulseos .btn-warning:focus,#pulseos .btn-warning.focus{color:#eeeeee;background-color:#b77d20;border-color:#604211}#pulseos .btn-warning:hover{color:#eeeeee;background-color:#b77d20;border-color:#99681a}#pulseos .btn-warning:active,#pulseos .btn-warning.active,.open>.dropdown-toggle#pulseos .btn-warning{color:#eeeeee;background-color:#b77d20;background-image:none;border-color:#99681a}#pulseos .btn-warning:active:hover,#pulseos .btn-warning.active:hover,.open>.dropdown-toggle#pulseos .btn-warning:hover,#pulseos .btn-warning:active:focus,#pulseos .btn-warning.active:focus,.open>.dropdown-toggle#pulseos .btn-warning:focus,#pulseos .btn-warning:active.focus,#pulseos .btn-warning.active.focus,.open>.dropdown-toggle#pulseos .btn-warning.focus{color:#eeeeee;background-color:#99681a;border-color:#604211}#pulseos .btn-warning.disabled:hover,#pulseos .btn-warning[disabled]:hover,fieldset[disabled] #pulseos .btn-warning:hover,#pulseos .btn-warning.disabled:focus,#pulseos .btn-warning[disabled]:focus,fieldset[disabled] #pulseos .btn-warning:focus,#pulseos .btn-warning.disabled.focus,#pulseos .btn-warning[disabled].focus,fieldset[disabled] #pulseos .btn-warning.focus{background-color:#db992f;border-color:#cd8c23}#pulseos .btn-warning .badge{color:#db992f;background-color:#eeeeee}#pulseos .btn-danger{color:#eeeeee;background-color:#a63737;border-color:#933131}#pulseos .btn-danger:focus,#pulseos .btn-danger.focus{color:#eeeeee;background-color:#802a2a;border-color:#311}#pulseos .btn-danger:hover{color:#eeeeee;background-color:#802a2a;border-color:#652121}#pulseos .btn-danger:active,#pulseos .btn-danger.active,.open>.dropdown-toggle#pulseos .btn-danger{color:#eeeeee;background-color:#802a2a;background-image:none;border-color:#652121}#pulseos .btn-danger:active:hover,#pulseos .btn-danger.active:hover,.open>.dropdown-toggle#pulseos .btn-danger:hover,#pulseos .btn-danger:active:focus,#pulseos .btn-danger.active:focus,.open>.dropdown-toggle#pulseos .btn-danger:focus,#pulseos .btn-danger:active.focus,#pulseos .btn-danger.active.focus,.open>.dropdown-toggle#pulseos .btn-danger.focus{color:#eeeeee;background-color:#652121;border-color:#311}#pulseos .btn-danger.disabled:hover,#pulseos .btn-danger[disabled]:hover,fieldset[disabled] #pulseos .btn-danger:hover,#pulseos .btn-danger.disabled:focus,#pulseos .btn-danger[disabled]:focus,fieldset[disabled] #pulseos .btn-danger:focus,#pulseos .btn-danger.disabled.focus,#pulseos .btn-danger[disabled].focus,fieldset[disabled] #pulseos .btn-danger.focus{background-color:#a63737;border-color:#933131}#pulseos .btn-danger .badge{color:#a63737;background-color:#eeeeee}#pulseos .btn-link{font-weight:400;color:#39b2c6;border-radius:0}#pulseos .btn-link,#pulseos .btn-link:active,#pulseos .btn-link.active,#pulseos .btn-link[disabled],fieldset[disabled] #pulseos .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}#pulseos .btn-link,#pulseos .btn-link:hover,#pulseos .btn-link:focus,#pulseos .btn-link:active{border-color:transparent}#pulseos .btn-link:hover,#pulseos .btn-link:focus{color:#287d8b;text-decoration:underline;background-color:transparent}#pulseos .btn-link[disabled]:hover,fieldset[disabled] #pulseos .btn-link:hover,#pulseos .btn-link[disabled]:focus,fieldset[disabled] #pulseos .btn-link:focus{color:#f7f7f7;text-decoration:none}#pulseos .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#pulseos .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}#pulseos .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}#pulseos .btn-block{display:block;width:100%}#pulseos .btn-block+.btn-block{margin-top:5px}#pulseos input[type="submit"].btn-block,#pulseos input[type="reset"].btn-block,#pulseos input[type="button"].btn-block{width:100%}#pulseos .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}#pulseos .fade.in{opacity:1}#pulseos .collapse{display:none}#pulseos .collapse.in{display:block}tr#pulseos .collapse.in{display:table-row}tbody#pulseos .collapse.in{display:table-row-group}#pulseos .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}@font-face{font-family:"Glyphicons Halflings";src:url("../fonts/glyphicons-halflings-regular.eot");src:url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../fonts/glyphicons-halflings-regular.woff") format("woff"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}#pulseos .glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pulseos .glyphicon-asterisk:before{content:"\002a"}#pulseos .glyphicon-plus:before{content:"\002b"}#pulseos .glyphicon-euro:before,#pulseos .glyphicon-eur:before{content:"\20ac"}#pulseos .glyphicon-minus:before{content:"\2212"}#pulseos .glyphicon-cloud:before{content:"\2601"}#pulseos .glyphicon-envelope:before{content:"\2709"}#pulseos .glyphicon-pencil:before{content:"\270f"}#pulseos .glyphicon-glass:before{content:"\e001"}#pulseos .glyphicon-music:before{content:"\e002"}#pulseos .glyphicon-search:before{content:"\e003"}#pulseos .glyphicon-heart:before{content:"\e005"}#pulseos .glyphicon-star:before{content:"\e006"}#pulseos .glyphicon-star-empty:before{content:"\e007"}#pulseos .glyphicon-user:before{content:"\e008"}#pulseos .glyphicon-film:before{content:"\e009"}#pulseos .glyphicon-th-large:before{content:"\e010"}#pulseos .glyphicon-th:before{content:"\e011"}#pulseos .glyphicon-th-list:before{content:"\e012"}#pulseos .glyphicon-ok:before{content:"\e013"}#pulseos .glyphicon-remove:before{content:"\e014"}#pulseos .glyphicon-zoom-in:before{content:"\e015"}#pulseos .glyphicon-zoom-out:before{content:"\e016"}#pulseos .glyphicon-off:before{content:"\e017"}#pulseos .glyphicon-signal:before{content:"\e018"}#pulseos .glyphicon-cog:before{content:"\e019"}#pulseos .glyphicon-trash:before{content:"\e020"}#pulseos .glyphicon-home:before{content:"\e021"}#pulseos .glyphicon-file:before{content:"\e022"}#pulseos .glyphicon-time:before{content:"\e023"}#pulseos .glyphicon-road:before{content:"\e024"}#pulseos .glyphicon-download-alt:before{content:"\e025"}#pulseos .glyphicon-download:before{content:"\e026"}#pulseos .glyphicon-upload:before{content:"\e027"}#pulseos .glyphicon-inbox:before{content:"\e028"}#pulseos .glyphicon-play-circle:before{content:"\e029"}#pulseos .glyphicon-repeat:before{content:"\e030"}#pulseos .glyphicon-refresh:before{content:"\e031"}#pulseos .glyphicon-list-alt:before{content:"\e032"}#pulseos .glyphicon-lock:before{content:"\e033"}#pulseos .glyphicon-flag:before{content:"\e034"}#pulseos .glyphicon-headphones:before{content:"\e035"}#pulseos .glyphicon-volume-off:before{content:"\e036"}#pulseos .glyphicon-volume-down:before{content:"\e037"}#pulseos .glyphicon-volume-up:before{content:"\e038"}#pulseos .glyphicon-qrcode:before{content:"\e039"}#pulseos .glyphicon-barcode:before{content:"\e040"}#pulseos .glyphicon-tag:before{content:"\e041"}#pulseos .glyphicon-tags:before{content:"\e042"}#pulseos .glyphicon-book:before{content:"\e043"}#pulseos .glyphicon-bookmark:before{content:"\e044"}#pulseos .glyphicon-print:before{content:"\e045"}#pulseos .glyphicon-camera:before{content:"\e046"}#pulseos .glyphicon-font:before{content:"\e047"}#pulseos .glyphicon-bold:before{content:"\e048"}#pulseos .glyphicon-italic:before{content:"\e049"}#pulseos .glyphicon-text-height:before{content:"\e050"}#pulseos .glyphicon-text-width:before{content:"\e051"}#pulseos .glyphicon-align-left:before{content:"\e052"}#pulseos .glyphicon-align-center:before{content:"\e053"}#pulseos .glyphicon-align-right:before{content:"\e054"}#pulseos .glyphicon-align-justify:before{content:"\e055"}#pulseos .glyphicon-list:before{content:"\e056"}#pulseos .glyphicon-indent-left:before{content:"\e057"}#pulseos .glyphicon-indent-right:before{content:"\e058"}#pulseos .glyphicon-facetime-video:before{content:"\e059"}#pulseos .glyphicon-picture:before{content:"\e060"}#pulseos .glyphicon-map-marker:before{content:"\e062"}#pulseos .glyphicon-adjust:before{content:"\e063"}#pulseos .glyphicon-tint:before{content:"\e064"}#pulseos .glyphicon-edit:before{content:"\e065"}#pulseos .glyphicon-share:before{content:"\e066"}#pulseos .glyphicon-check:before{content:"\e067"}#pulseos .glyphicon-move:before{content:"\e068"}#pulseos .glyphicon-step-backward:before{content:"\e069"}#pulseos .glyphicon-fast-backward:before{content:"\e070"}#pulseos .glyphicon-backward:before{content:"\e071"}#pulseos .glyphicon-play:before{content:"\e072"}#pulseos .glyphicon-pause:before{content:"\e073"}#pulseos .glyphicon-stop:before{content:"\e074"}#pulseos .glyphicon-forward:before{content:"\e075"}#pulseos .glyphicon-fast-forward:before{content:"\e076"}#pulseos .glyphicon-step-forward:before{content:"\e077"}#pulseos .glyphicon-eject:before{content:"\e078"}#pulseos .glyphicon-chevron-left:before{content:"\e079"}#pulseos .glyphicon-chevron-right:before{content:"\e080"}#pulseos .glyphicon-plus-sign:before{content:"\e081"}#pulseos .glyphicon-minus-sign:before{content:"\e082"}#pulseos .glyphicon-remove-sign:before{content:"\e083"}#pulseos .glyphicon-ok-sign:before{content:"\e084"}#pulseos .glyphicon-question-sign:before{content:"\e085"}#pulseos .glyphicon-info-sign:before{content:"\e086"}#pulseos .glyphicon-screenshot:before{content:"\e087"}#pulseos .glyphicon-remove-circle:before{content:"\e088"}#pulseos .glyphicon-ok-circle:before{content:"\e089"}#pulseos .glyphicon-ban-circle:before{content:"\e090"}#pulseos .glyphicon-arrow-left:before{content:"\e091"}#pulseos .glyphicon-arrow-right:before{content:"\e092"}#pulseos .glyphicon-arrow-up:before{content:"\e093"}#pulseos .glyphicon-arrow-down:before{content:"\e094"}#pulseos .glyphicon-share-alt:before{content:"\e095"}#pulseos .glyphicon-resize-full:before{content:"\e096"}#pulseos .glyphicon-resize-small:before{content:"\e097"}#pulseos .glyphicon-exclamation-sign:before{content:"\e101"}#pulseos .glyphicon-gift:before{content:"\e102"}#pulseos .glyphicon-leaf:before{content:"\e103"}#pulseos .glyphicon-fire:before{content:"\e104"}#pulseos .glyphicon-eye-open:before{content:"\e105"}#pulseos .glyphicon-eye-close:before{content:"\e106"}#pulseos .glyphicon-warning-sign:before{content:"\e107"}#pulseos .glyphicon-plane:before{content:"\e108"}#pulseos .glyphicon-calendar:before{content:"\e109"}#pulseos .glyphicon-random:before{content:"\e110"}#pulseos .glyphicon-comment:before{content:"\e111"}#pulseos .glyphicon-magnet:before{content:"\e112"}#pulseos .glyphicon-chevron-up:before{content:"\e113"}#pulseos .glyphicon-chevron-down:before{content:"\e114"}#pulseos .glyphicon-retweet:before{content:"\e115"}#pulseos .glyphicon-shopping-cart:before{content:"\e116"}#pulseos .glyphicon-folder-close:before{content:"\e117"}#pulseos .glyphicon-folder-open:before{content:"\e118"}#pulseos .glyphicon-resize-vertical:before{content:"\e119"}#pulseos .glyphicon-resize-horizontal:before{content:"\e120"}#pulseos .glyphicon-hdd:before{content:"\e121"}#pulseos .glyphicon-bullhorn:before{content:"\e122"}#pulseos .glyphicon-bell:before{content:"\e123"}#pulseos .glyphicon-certificate:before{content:"\e124"}#pulseos .glyphicon-thumbs-up:before{content:"\e125"}#pulseos .glyphicon-thumbs-down:before{content:"\e126"}#pulseos .glyphicon-hand-right:before{content:"\e127"}#pulseos .glyphicon-hand-left:before{content:"\e128"}#pulseos .glyphicon-hand-up:before{content:"\e129"}#pulseos .glyphicon-hand-down:before{content:"\e130"}#pulseos .glyphicon-circle-arrow-right:before{content:"\e131"}#pulseos .glyphicon-circle-arrow-left:before{content:"\e132"}#pulseos .glyphicon-circle-arrow-up:before{content:"\e133"}#pulseos .glyphicon-circle-arrow-down:before{content:"\e134"}#pulseos .glyphicon-globe:before{content:"\e135"}#pulseos .glyphicon-wrench:before{content:"\e136"}#pulseos .glyphicon-tasks:before{content:"\e137"}#pulseos .glyphicon-filter:before{content:"\e138"}#pulseos .glyphicon-briefcase:before{content:"\e139"}#pulseos .glyphicon-fullscreen:before{content:"\e140"}#pulseos .glyphicon-dashboard:before{content:"\e141"}#pulseos .glyphicon-paperclip:before{content:"\e142"}#pulseos .glyphicon-heart-empty:before{content:"\e143"}#pulseos .glyphicon-link:before{content:"\e144"}#pulseos .glyphicon-phone:before{content:"\e145"}#pulseos .glyphicon-pushpin:before{content:"\e146"}#pulseos .glyphicon-usd:before{content:"\e148"}#pulseos .glyphicon-gbp:before{content:"\e149"}#pulseos .glyphicon-sort:before{content:"\e150"}#pulseos .glyphicon-sort-by-alphabet:before{content:"\e151"}#pulseos .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}#pulseos .glyphicon-sort-by-order:before{content:"\e153"}#pulseos .glyphicon-sort-by-order-alt:before{content:"\e154"}#pulseos .glyphicon-sort-by-attributes:before{content:"\e155"}#pulseos .glyphicon-sort-by-attributes-alt:before{content:"\e156"}#pulseos .glyphicon-unchecked:before{content:"\e157"}#pulseos .glyphicon-expand:before{content:"\e158"}#pulseos .glyphicon-collapse-down:before{content:"\e159"}#pulseos .glyphicon-collapse-up:before{content:"\e160"}#pulseos .glyphicon-log-in:before{content:"\e161"}#pulseos .glyphicon-flash:before{content:"\e162"}#pulseos .glyphicon-log-out:before{content:"\e163"}#pulseos .glyphicon-new-window:before{content:"\e164"}#pulseos .glyphicon-record:before{content:"\e165"}#pulseos .glyphicon-save:before{content:"\e166"}#pulseos .glyphicon-open:before{content:"\e167"}#pulseos .glyphicon-saved:before{content:"\e168"}#pulseos .glyphicon-import:before{content:"\e169"}#pulseos .glyphicon-export:before{content:"\e170"}#pulseos .glyphicon-send:before{content:"\e171"}#pulseos .glyphicon-floppy-disk:before{content:"\e172"}#pulseos .glyphicon-floppy-saved:before{content:"\e173"}#pulseos .glyphicon-floppy-remove:before{content:"\e174"}#pulseos .glyphicon-floppy-save:before{content:"\e175"}#pulseos .glyphicon-floppy-open:before{content:"\e176"}#pulseos .glyphicon-credit-card:before{content:"\e177"}#pulseos .glyphicon-transfer:before{content:"\e178"}#pulseos .glyphicon-cutlery:before{content:"\e179"}#pulseos .glyphicon-header:before{content:"\e180"}#pulseos .glyphicon-compressed:before{content:"\e181"}#pulseos .glyphicon-earphone:before{content:"\e182"}#pulseos .glyphicon-phone-alt:before{content:"\e183"}#pulseos .glyphicon-tower:before{content:"\e184"}#pulseos .glyphicon-stats:before{content:"\e185"}#pulseos .glyphicon-sd-video:before{content:"\e186"}#pulseos .glyphicon-hd-video:before{content:"\e187"}#pulseos .glyphicon-subtitles:before{content:"\e188"}#pulseos .glyphicon-sound-stereo:before{content:"\e189"}#pulseos .glyphicon-sound-dolby:before{content:"\e190"}#pulseos .glyphicon-sound-5-1:before{content:"\e191"}#pulseos .glyphicon-sound-6-1:before{content:"\e192"}#pulseos .glyphicon-sound-7-1:before{content:"\e193"}#pulseos .glyphicon-copyright-mark:before{content:"\e194"}#pulseos .glyphicon-registration-mark:before{content:"\e195"}#pulseos .glyphicon-cloud-download:before{content:"\e197"}#pulseos .glyphicon-cloud-upload:before{content:"\e198"}#pulseos .glyphicon-tree-conifer:before{content:"\e199"}#pulseos .glyphicon-tree-deciduous:before{content:"\e200"}#pulseos .glyphicon-cd:before{content:"\e201"}#pulseos .glyphicon-save-file:before{content:"\e202"}#pulseos .glyphicon-open-file:before{content:"\e203"}#pulseos .glyphicon-level-up:before{content:"\e204"}#pulseos .glyphicon-copy:before{content:"\e205"}#pulseos .glyphicon-paste:before{content:"\e206"}#pulseos .glyphicon-alert:before{content:"\e209"}#pulseos .glyphicon-equalizer:before{content:"\e210"}#pulseos .glyphicon-king:before{content:"\e211"}#pulseos .glyphicon-queen:before{content:"\e212"}#pulseos .glyphicon-pawn:before{content:"\e213"}#pulseos .glyphicon-bishop:before{content:"\e214"}#pulseos .glyphicon-knight:before{content:"\e215"}#pulseos .glyphicon-baby-formula:before{content:"\e216"}#pulseos .glyphicon-tent:before{content:"\26fa"}#pulseos .glyphicon-blackboard:before{content:"\e218"}#pulseos .glyphicon-bed:before{content:"\e219"}#pulseos .glyphicon-apple:before{content:"\f8ff"}#pulseos .glyphicon-erase:before{content:"\e221"}#pulseos .glyphicon-hourglass:before{content:"\231b"}#pulseos .glyphicon-lamp:before{content:"\e223"}#pulseos .glyphicon-duplicate:before{content:"\e224"}#pulseos .glyphicon-piggy-bank:before{content:"\e225"}#pulseos .glyphicon-scissors:before{content:"\e226"}#pulseos .glyphicon-bitcoin:before{content:"\e227"}#pulseos .glyphicon-btc:before{content:"\e227"}#pulseos .glyphicon-xbt:before{content:"\e227"}#pulseos .glyphicon-yen:before{content:"\00a5"}#pulseos .glyphicon-jpy:before{content:"\00a5"}#pulseos .glyphicon-ruble:before{content:"\20bd"}#pulseos .glyphicon-rub:before{content:"\20bd"}#pulseos .glyphicon-scale:before{content:"\e230"}#pulseos .glyphicon-ice-lolly:before{content:"\e231"}#pulseos .glyphicon-ice-lolly-tasted:before{content:"\e232"}#pulseos .glyphicon-education:before{content:"\e233"}#pulseos .glyphicon-option-horizontal:before{content:"\e234"}#pulseos .glyphicon-option-vertical:before{content:"\e235"}#pulseos .glyphicon-menu-hamburger:before{content:"\e236"}#pulseos .glyphicon-modal-window:before{content:"\e237"}#pulseos .glyphicon-oil:before{content:"\e238"}#pulseos .glyphicon-grain:before{content:"\e239"}#pulseos .glyphicon-sunglasses:before{content:"\e240"}#pulseos .glyphicon-text-size:before{content:"\e241"}#pulseos .glyphicon-text-color:before{content:"\e242"}#pulseos .glyphicon-text-background:before{content:"\e243"}#pulseos .glyphicon-object-align-top:before{content:"\e244"}#pulseos .glyphicon-object-align-bottom:before{content:"\e245"}#pulseos .glyphicon-object-align-horizontal:before{content:"\e246"}#pulseos .glyphicon-object-align-left:before{content:"\e247"}#pulseos .glyphicon-object-align-vertical:before{content:"\e248"}#pulseos .glyphicon-object-align-right:before{content:"\e249"}#pulseos .glyphicon-triangle-right:before{content:"\e250"}#pulseos .glyphicon-triangle-left:before{content:"\e251"}#pulseos .glyphicon-triangle-bottom:before{content:"\e252"}#pulseos .glyphicon-triangle-top:before{content:"\e253"}#pulseos .glyphicon-console:before{content:"\e254"}#pulseos .glyphicon-superscript:before{content:"\e255"}#pulseos .glyphicon-subscript:before{content:"\e256"}#pulseos .glyphicon-menu-left:before{content:"\e257"}#pulseos .glyphicon-menu-right:before{content:"\e258"}#pulseos .glyphicon-menu-down:before{content:"\e259"}#pulseos .glyphicon-menu-up:before{content:"\e260"}#pulseos .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}#pulseos .dropup,#pulseos .dropdown{position:relative}#pulseos .dropdown-toggle:focus{outline:0}#pulseos .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}#pulseos .dropdown-menu.pull-right{right:0;left:auto}#pulseos .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#pulseos .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#919191;white-space:nowrap}#pulseos .dropdown-menu>li>a:hover,#pulseos .dropdown-menu>li>a:focus{color:#848484;text-decoration:none;background-color:#f5f5f5}#pulseos .dropdown-menu>.active>a,#pulseos .dropdown-menu>.active>a:hover,#pulseos .dropdown-menu>.active>a:focus{color:#eeeeee;text-decoration:none;background-color:#20242d;outline:0}#pulseos .dropdown-menu>.disabled>a,#pulseos .dropdown-menu>.disabled>a:hover,#pulseos .dropdown-menu>.disabled>a:focus{color:#f7f7f7}#pulseos .dropdown-menu>.disabled>a:hover,#pulseos .dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}#pulseos .open>.dropdown-menu{display:block}#pulseos .open>a{outline:0}#pulseos .dropdown-menu-right{right:0;left:auto}#pulseos .dropdown-menu-left{right:auto;left:0}#pulseos .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#f7f7f7;white-space:nowrap}#pulseos .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}#pulseos .pull-right>.dropdown-menu{right:0;left:auto}#pulseos .dropup .caret,#pulseos .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}#pulseos .dropup .dropdown-menu,#pulseos .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){#pulseos .navbar-right .dropdown-menu{right:0;left:auto}#pulseos .navbar-right .dropdown-menu-left{right:auto;left:0}}#pulseos .btn-group,#pulseos .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}#pulseos .btn-group>.btn,#pulseos .btn-group-vertical>.btn{position:relative;float:left}#pulseos .btn-group>.btn:hover,#pulseos .btn-group-vertical>.btn:hover,#pulseos .btn-group>.btn:focus,#pulseos .btn-group-vertical>.btn:focus,#pulseos .btn-group>.btn:active,#pulseos .btn-group-vertical>.btn:active,#pulseos .btn-group>.btn.active,#pulseos .btn-group-vertical>.btn.active{z-index:2}#pulseos .btn-group .btn+.btn,#pulseos .btn-group .btn+.btn-group,#pulseos .btn-group .btn-group+.btn,#pulseos .btn-group .btn-group+.btn-group{margin-left:-1px}#pulseos .btn-toolbar{margin-left:-5px}#pulseos .btn-toolbar .btn,#pulseos .btn-toolbar .btn-group,#pulseos .btn-toolbar .input-group{float:left}#pulseos .btn-toolbar>.btn,#pulseos .btn-toolbar>.btn-group,#pulseos .btn-toolbar>.input-group{margin-left:5px}#pulseos .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}#pulseos .btn-group>.btn:first-child{margin-left:0}#pulseos .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#pulseos .btn-group>.btn:last-child:not(:first-child),#pulseos .btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}#pulseos .btn-group>.btn-group{float:left}#pulseos .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#pulseos .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,#pulseos .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}#pulseos .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}#pulseos .btn-group .dropdown-toggle:active,#pulseos .btn-group.open .dropdown-toggle{outline:0}#pulseos .btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}#pulseos .btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}#pulseos .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}#pulseos .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}#pulseos .btn .caret{margin-left:0}#pulseos .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}#pulseos .dropup .btn-lg .caret{border-width:0 5px 5px}#pulseos .btn-group-vertical>.btn,#pulseos .btn-group-vertical>.btn-group,#pulseos .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}#pulseos .btn-group-vertical>.btn-group>.btn{float:none}#pulseos .btn-group-vertical>.btn+.btn,#pulseos .btn-group-vertical>.btn+.btn-group,#pulseos .btn-group-vertical>.btn-group+.btn,#pulseos .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}#pulseos .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}#pulseos .btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#pulseos .btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#pulseos .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#pulseos .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,#pulseos .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}#pulseos .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}#pulseos .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}#pulseos .btn-group-justified>.btn,#pulseos .btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}#pulseos .btn-group-justified>.btn-group .btn{width:100%}#pulseos .btn-group-justified>.btn-group .dropdown-menu{left:auto}#pulseos [data-toggle="buttons"]>.btn input[type="radio"],#pulseos [data-toggle="buttons"]>.btn-group>.btn input[type="radio"],#pulseos [data-toggle="buttons"]>.btn input[type="checkbox"],#pulseos [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}#pulseos .input-group{position:relative;display:table;border-collapse:separate}#pulseos .input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}#pulseos .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}#pulseos .input-group .form-control:focus{z-index:3}#pulseos .input-group-lg>.form-control,#pulseos .input-group-lg>.input-group-addon,#pulseos .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select#pulseos .input-group-lg>.form-control,select#pulseos .input-group-lg>.input-group-addon,select#pulseos .input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea#pulseos .input-group-lg>.form-control,textarea#pulseos .input-group-lg>.input-group-addon,textarea#pulseos .input-group-lg>.input-group-btn>.btn,select[multiple]#pulseos .input-group-lg>.form-control,select[multiple]#pulseos .input-group-lg>.input-group-addon,select[multiple]#pulseos .input-group-lg>.input-group-btn>.btn{height:auto}#pulseos .input-group-sm>.form-control,#pulseos .input-group-sm>.input-group-addon,#pulseos .input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select#pulseos .input-group-sm>.form-control,select#pulseos .input-group-sm>.input-group-addon,select#pulseos .input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea#pulseos .input-group-sm>.form-control,textarea#pulseos .input-group-sm>.input-group-addon,textarea#pulseos .input-group-sm>.input-group-btn>.btn,select[multiple]#pulseos .input-group-sm>.form-control,select[multiple]#pulseos .input-group-sm>.input-group-addon,select[multiple]#pulseos .input-group-sm>.input-group-btn>.btn{height:auto}#pulseos .input-group-addon,#pulseos .input-group-btn,#pulseos .input-group .form-control{display:table-cell}#pulseos .input-group-addon:not(:first-child):not(:last-child),#pulseos .input-group-btn:not(:first-child):not(:last-child),#pulseos .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}#pulseos .input-group-addon,#pulseos .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}#pulseos .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#b3b3b3;text-align:center;background-color:#fff;border:1px solid #ccc;border-radius:4px}#pulseos .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}#pulseos .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}#pulseos .input-group-addon input[type="radio"],#pulseos .input-group-addon input[type="checkbox"]{margin-top:0}#pulseos .input-group .form-control:first-child,#pulseos .input-group-addon:first-child,#pulseos .input-group-btn:first-child>.btn,#pulseos .input-group-btn:first-child>.btn-group>.btn,#pulseos .input-group-btn:first-child>.dropdown-toggle,#pulseos .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),#pulseos .input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}#pulseos .input-group-addon:first-child{border-right:0}#pulseos .input-group .form-control:last-child,#pulseos .input-group-addon:last-child,#pulseos .input-group-btn:last-child>.btn,#pulseos .input-group-btn:last-child>.btn-group>.btn,#pulseos .input-group-btn:last-child>.dropdown-toggle,#pulseos .input-group-btn:first-child>.btn:not(:first-child),#pulseos .input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}#pulseos .input-group-addon:last-child{border-left:0}#pulseos .input-group-btn{position:relative;font-size:0;white-space:nowrap}#pulseos .input-group-btn>.btn{position:relative}#pulseos .input-group-btn>.btn+.btn{margin-left:-1px}#pulseos .input-group-btn>.btn:hover,#pulseos .input-group-btn>.btn:focus,#pulseos .input-group-btn>.btn:active{z-index:2}#pulseos .input-group-btn:first-child>.btn,#pulseos .input-group-btn:first-child>.btn-group{margin-right:-1px}#pulseos .input-group-btn:last-child>.btn,#pulseos .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}#pulseos .nav{padding-left:0;margin-bottom:0;list-style:none}#pulseos .nav>li{position:relative;display:block}#pulseos .nav>li>a{position:relative;display:block;padding:10px 15px}#pulseos .nav>li>a:hover,#pulseos .nav>li>a:focus{text-decoration:none;background-color:#fff}#pulseos .nav>li.disabled>a{color:#f7f7f7}#pulseos .nav>li.disabled>a:hover,#pulseos .nav>li.disabled>a:focus{color:#f7f7f7;text-decoration:none;cursor:not-allowed;background-color:transparent}#pulseos .nav .open>a,#pulseos .nav .open>a:hover,#pulseos .nav .open>a:focus{background-color:#fff;border-color:#39b2c6}#pulseos .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}#pulseos .nav>li>a>img{max-width:none}#pulseos .nav-tabs{border-bottom:1px solid #ddd}#pulseos .nav-tabs>li{float:left;margin-bottom:-1px}#pulseos .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}#pulseos .nav-tabs>li>a:hover{border-color:#fff #fff #ddd}#pulseos .nav-tabs>li.active>a,#pulseos .nav-tabs>li.active>a:hover,#pulseos .nav-tabs>li.active>a:focus{color:#b3b3b3;cursor:default;background-color:#2c2c2c;border:1px solid #ddd;border-bottom-color:transparent}#pulseos .nav-tabs.nav-justified{width:100%;border-bottom:0}#pulseos .nav-tabs.nav-justified>li{float:none}#pulseos .nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}#pulseos .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){#pulseos .nav-tabs.nav-justified>li{display:table-cell;width:1%}#pulseos .nav-tabs.nav-justified>li>a{margin-bottom:0}}#pulseos .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}#pulseos .nav-tabs.nav-justified>.active>a,#pulseos .nav-tabs.nav-justified>.active>a:hover,#pulseos .nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){#pulseos .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}#pulseos .nav-tabs.nav-justified>.active>a,#pulseos .nav-tabs.nav-justified>.active>a:hover,#pulseos .nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#2c2c2c}}#pulseos .nav-pills>li{float:left}#pulseos .nav-pills>li>a{border-radius:4px}#pulseos .nav-pills>li+li{margin-left:2px}#pulseos .nav-pills>li.active>a,#pulseos .nav-pills>li.active>a:hover,#pulseos .nav-pills>li.active>a:focus{color:#eeeeee;background-color:#20242d}#pulseos .nav-stacked>li{float:none}#pulseos .nav-stacked>li+li{margin-top:2px;margin-left:0}#pulseos .nav-justified{width:100%}#pulseos .nav-justified>li{float:none}#pulseos .nav-justified>li>a{margin-bottom:5px;text-align:center}#pulseos .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){#pulseos .nav-justified>li{display:table-cell;width:1%}#pulseos .nav-justified>li>a{margin-bottom:0}}#pulseos .nav-tabs-justified{border-bottom:0}#pulseos .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}#pulseos .nav-tabs-justified>.active>a,#pulseos .nav-tabs-justified>.active>a:hover,#pulseos .nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){#pulseos .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}#pulseos .nav-tabs-justified>.active>a,#pulseos .nav-tabs-justified>.active>a:hover,#pulseos .nav-tabs-justified>.active>a:focus{border-bottom-color:#2c2c2c}}#pulseos .tab-content>.tab-pane{display:none}#pulseos .tab-content>.active{display:block}#pulseos .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}#pulseos .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){#pulseos .navbar{border-radius:4px}}@media (min-width:768px){#pulseos .navbar-header{float:left}}#pulseos .navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}#pulseos .navbar-collapse.in{overflow-y:auto}@media (min-width:768px){#pulseos .navbar-collapse{width:auto;border-top:0;box-shadow:none}#pulseos .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}#pulseos .navbar-collapse.in{overflow-y:visible}.navbar-fixed-top #pulseos .navbar-collapse,.navbar-static-top #pulseos .navbar-collapse,.navbar-fixed-bottom #pulseos .navbar-collapse{padding-right:0;padding-left:0}}#pulseos .navbar-fixed-top,#pulseos .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}#pulseos .navbar-fixed-top .navbar-collapse,#pulseos .navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){#pulseos .navbar-fixed-top .navbar-collapse,#pulseos .navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media (min-width:768px){#pulseos .navbar-fixed-top,#pulseos .navbar-fixed-bottom{border-radius:0}}#pulseos .navbar-fixed-top{top:0;border-width:0 0 1px}#pulseos .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}#pulseos .container>.navbar-header,#pulseos .container-fluid>.navbar-header,#pulseos .container>.navbar-collapse,#pulseos .container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){#pulseos .container>.navbar-header,#pulseos .container-fluid>.navbar-header,#pulseos .container>.navbar-collapse,#pulseos .container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}#pulseos .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){#pulseos .navbar-static-top{border-radius:0}}#pulseos .navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}#pulseos .navbar-brand:hover,#pulseos .navbar-brand:focus{text-decoration:none}#pulseos .navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container #pulseos .navbar-brand,.navbar>.container-fluid #pulseos .navbar-brand{margin-left:-15px}}#pulseos .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}#pulseos .navbar-toggle:focus{outline:0}#pulseos .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}#pulseos .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){#pulseos .navbar-toggle{display:none}}#pulseos .navbar-nav{margin:7.5px -15px}#pulseos .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){#pulseos .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}#pulseos .navbar-nav .open .dropdown-menu>li>a,#pulseos .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}#pulseos .navbar-nav .open .dropdown-menu>li>a{line-height:20px}#pulseos .navbar-nav .open .dropdown-menu>li>a:hover,#pulseos .navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){#pulseos .navbar-nav{float:left;margin:0}#pulseos .navbar-nav>li{float:left}#pulseos .navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}#pulseos .navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){#pulseos .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#pulseos .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}#pulseos .navbar-form .form-control-static{display:inline-block}#pulseos .navbar-form .input-group{display:inline-table;vertical-align:middle}#pulseos .navbar-form .input-group .input-group-addon,#pulseos .navbar-form .input-group .input-group-btn,#pulseos .navbar-form .input-group .form-control{width:auto}#pulseos .navbar-form .input-group>.form-control{width:100%}#pulseos .navbar-form .control-label{margin-bottom:0;vertical-align:middle}#pulseos .navbar-form .radio,#pulseos .navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#pulseos .navbar-form .radio label,#pulseos .navbar-form .checkbox label{padding-left:0}#pulseos .navbar-form .radio input[type="radio"],#pulseos .navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}#pulseos .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){#pulseos .navbar-form .form-group{margin-bottom:5px}#pulseos .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){#pulseos .navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}#pulseos .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}#pulseos .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#pulseos .navbar-btn{margin-top:8px;margin-bottom:8px}#pulseos .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}#pulseos .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}#pulseos .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){#pulseos .navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){#pulseos .navbar-left{float:left !important}#pulseos .navbar-right{float:right !important;margin-right:-15px}#pulseos .navbar-right~.navbar-right{margin-right:0}}#pulseos .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}#pulseos .navbar-default .navbar-brand{color:#777}#pulseos .navbar-default .navbar-brand:hover,#pulseos .navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}#pulseos .navbar-default .navbar-text{color:#777}#pulseos .navbar-default .navbar-nav>li>a{color:#777}#pulseos .navbar-default .navbar-nav>li>a:hover,#pulseos .navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}#pulseos .navbar-default .navbar-nav>.active>a,#pulseos .navbar-default .navbar-nav>.active>a:hover,#pulseos .navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}#pulseos .navbar-default .navbar-nav>.disabled>a,#pulseos .navbar-default .navbar-nav>.disabled>a:hover,#pulseos .navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}#pulseos .navbar-default .navbar-nav>.open>a,#pulseos .navbar-default .navbar-nav>.open>a:hover,#pulseos .navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){#pulseos .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}#pulseos .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,#pulseos .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.active>a,#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,#pulseos .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}#pulseos .navbar-default .navbar-toggle{border-color:#ddd}#pulseos .navbar-default .navbar-toggle:hover,#pulseos .navbar-default .navbar-toggle:focus{background-color:#ddd}#pulseos .navbar-default .navbar-toggle .icon-bar{background-color:#888}#pulseos .navbar-default .navbar-collapse,#pulseos .navbar-default .navbar-form{border-color:#e7e7e7}#pulseos .navbar-default .navbar-link{color:#777}#pulseos .navbar-default .navbar-link:hover{color:#333}#pulseos .navbar-default .btn-link{color:#777}#pulseos .navbar-default .btn-link:hover,#pulseos .navbar-default .btn-link:focus{color:#333}#pulseos .navbar-default .btn-link[disabled]:hover,fieldset[disabled] #pulseos .navbar-default .btn-link:hover,#pulseos .navbar-default .btn-link[disabled]:focus,fieldset[disabled] #pulseos .navbar-default .btn-link:focus{color:#ccc}#pulseos .navbar-inverse{background-color:#222;border-color:#080808}#pulseos .navbar-inverse .navbar-brand{color:#fff}#pulseos .navbar-inverse .navbar-brand:hover,#pulseos .navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}#pulseos .navbar-inverse .navbar-text{color:#fff}#pulseos .navbar-inverse .navbar-nav>li>a{color:#fff}#pulseos .navbar-inverse .navbar-nav>li>a:hover,#pulseos .navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}#pulseos .navbar-inverse .navbar-nav>.active>a,#pulseos .navbar-inverse .navbar-nav>.active>a:hover,#pulseos .navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}#pulseos .navbar-inverse .navbar-nav>.disabled>a,#pulseos .navbar-inverse .navbar-nav>.disabled>a:hover,#pulseos .navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}#pulseos .navbar-inverse .navbar-nav>.open>a,#pulseos .navbar-inverse .navbar-nav>.open>a:hover,#pulseos .navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,#pulseos .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}#pulseos .navbar-inverse .navbar-toggle{border-color:#333}#pulseos .navbar-inverse .navbar-toggle:hover,#pulseos .navbar-inverse .navbar-toggle:focus{background-color:#333}#pulseos .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}#pulseos .navbar-inverse .navbar-collapse,#pulseos .navbar-inverse .navbar-form{border-color:#101010}#pulseos .navbar-inverse .navbar-link{color:#fff}#pulseos .navbar-inverse .navbar-link:hover{color:#fff}#pulseos .navbar-inverse .btn-link{color:#fff}#pulseos .navbar-inverse .btn-link:hover,#pulseos .navbar-inverse .btn-link:focus{color:#fff}#pulseos .navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] #pulseos .navbar-inverse .btn-link:hover,#pulseos .navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] #pulseos .navbar-inverse .btn-link:focus{color:#444}#pulseos .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}#pulseos .breadcrumb>li{display:inline-block}#pulseos .breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}#pulseos .breadcrumb>.active{color:#f7f7f7}#pulseos .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}#pulseos .pagination>li{display:inline}#pulseos .pagination>li>a,#pulseos .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#39b2c6;text-decoration:none;background-color:#fff;border:1px solid #ddd}#pulseos .pagination>li>a:hover,#pulseos .pagination>li>span:hover,#pulseos .pagination>li>a:focus,#pulseos .pagination>li>span:focus{z-index:2;color:#287d8b;background-color:#fff;border-color:#ddd}#pulseos .pagination>li:first-child>a,#pulseos .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}#pulseos .pagination>li:last-child>a,#pulseos .pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}#pulseos .pagination>.active>a,#pulseos .pagination>.active>span,#pulseos .pagination>.active>a:hover,#pulseos .pagination>.active>span:hover,#pulseos .pagination>.active>a:focus,#pulseos .pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#20242d;border-color:#20242d}#pulseos .pagination>.disabled>span,#pulseos .pagination>.disabled>span:hover,#pulseos .pagination>.disabled>span:focus,#pulseos .pagination>.disabled>a,#pulseos .pagination>.disabled>a:hover,#pulseos .pagination>.disabled>a:focus{color:#f7f7f7;cursor:not-allowed;background-color:#fff;border-color:#ddd}#pulseos .pagination-lg>li>a,#pulseos .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}#pulseos .pagination-lg>li:first-child>a,#pulseos .pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}#pulseos .pagination-lg>li:last-child>a,#pulseos .pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}#pulseos .pagination-sm>li>a,#pulseos .pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}#pulseos .pagination-sm>li:first-child>a,#pulseos .pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}#pulseos .pagination-sm>li:last-child>a,#pulseos .pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}#pulseos .pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}#pulseos .pager li{display:inline}#pulseos .pager li>a,#pulseos .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}#pulseos .pager li>a:hover,#pulseos .pager li>a:focus{text-decoration:none;background-color:#fff}#pulseos .pager .next>a,#pulseos .pager .next>span{float:right}#pulseos .pager .previous>a,#pulseos .pager .previous>span{float:left}#pulseos .pager .disabled>a,#pulseos .pager .disabled>a:hover,#pulseos .pager .disabled>a:focus,#pulseos .pager .disabled>span{color:#f7f7f7;cursor:not-allowed;background-color:#fff}#pulseos .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a#pulseos .label:hover,a#pulseos .label:focus{color:#fff;text-decoration:none;cursor:pointer}#pulseos .label:empty{display:none}.btn #pulseos .label{position:relative;top:-1px}#pulseos .label-default{background-color:#f7f7f7}#pulseos .label-default[href]:hover,#pulseos .label-default[href]:focus{background-color:#dedede}#pulseos .label-primary{background-color:#20242d}#pulseos .label-primary[href]:hover,#pulseos .label-primary[href]:focus{background-color:#0b0c0f}#pulseos .label-success{background-color:#108904}#pulseos .label-success[href]:hover,#pulseos .label-success[href]:focus{background-color:#0a5703}#pulseos .label-info{background-color:#2d8fa5}#pulseos .label-info[href]:hover,#pulseos .label-info[href]:focus{background-color:#226c7d}#pulseos .label-warning{background-color:#db992f}#pulseos .label-warning[href]:hover,#pulseos .label-warning[href]:focus{background-color:#b77d20}#pulseos .label-danger{background-color:#a63737}#pulseos .label-danger[href]:hover,#pulseos .label-danger[href]:focus{background-color:#802a2a}#pulseos .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#f7f7f7;border-radius:10px}#pulseos .badge:empty{display:none}.btn #pulseos .badge{position:relative;top:-1px}.btn-xs #pulseos .badge,.btn-group-xs>.btn #pulseos .badge{top:0;padding:1px 5px}a#pulseos .badge:hover,a#pulseos .badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>#pulseos .badge,.nav-pills>.active>a>#pulseos .badge{color:#39b2c6;background-color:#fff}.list-group-item>#pulseos .badge{float:right}.list-group-item>#pulseos .badge+#pulseos .badge{margin-right:5px}.nav-pills>li>a>#pulseos .badge{margin-left:3px}#pulseos .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#fff}#pulseos .jumbotron h1,#pulseos .jumbotron .h1{color:inherit}#pulseos .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}#pulseos .jumbotron>hr{border-top-color:#e6e6e6}.container #pulseos .jumbotron,.container-fluid #pulseos .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}#pulseos .jumbotron .container{max-width:100%}@media screen and (min-width:768px){#pulseos .jumbotron{padding-top:48px;padding-bottom:48px}.container #pulseos .jumbotron,.container-fluid #pulseos .jumbotron{padding-right:60px;padding-left:60px}#pulseos .jumbotron h1,#pulseos .jumbotron .h1{font-size:63px}}#pulseos .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#2c2c2c;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}#pulseos .thumbnail>img,#pulseos .thumbnail a>img{margin-right:auto;margin-left:auto}a#pulseos .thumbnail:hover,a#pulseos .thumbnail:focus,a#pulseos .thumbnail.active{border-color:#39b2c6}#pulseos .thumbnail .caption{padding:9px;color:#eeeeee}#pulseos .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}#pulseos .alert h4{margin-top:0;color:inherit}#pulseos .alert .alert-link{font-weight:bold}#pulseos .alert>p,#pulseos .alert>ul{margin-bottom:0}#pulseos .alert>p+p{margin-top:5px}#pulseos .alert-dismissable,#pulseos .alert-dismissible{padding-right:35px}#pulseos .alert-dismissable .close,#pulseos .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}#pulseos .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#pulseos .alert-success hr{border-top-color:#c9e2b3}#pulseos .alert-success .alert-link{color:#2b542c}#pulseos .alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#pulseos .alert-info hr{border-top-color:#a6e1ec}#pulseos .alert-info .alert-link{color:#245269}#pulseos .alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#pulseos .alert-warning hr{border-top-color:#f7e1b5}#pulseos .alert-warning .alert-link{color:#66512c}#pulseos .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#pulseos .alert-danger hr{border-top-color:#e4b9c0}#pulseos .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#pulseos .progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}#pulseos .progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#20242d;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}#pulseos .progress-striped .progress-bar,#pulseos .progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}#pulseos .progress.active .progress-bar,#pulseos .progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}#pulseos .progress-bar-success{background-color:#108904}.progress-striped #pulseos .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#pulseos .progress-bar-info{background-color:#2d8fa5}.progress-striped #pulseos .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#pulseos .progress-bar-warning{background-color:#db992f}.progress-striped #pulseos .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#pulseos .progress-bar-danger{background-color:#a63737}.progress-striped #pulseos .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}#pulseos .media{margin-top:15px}#pulseos .media:first-child{margin-top:0}#pulseos .media,#pulseos .media-body{overflow:hidden;zoom:1}#pulseos .media-body{width:10000px}#pulseos .media-object{display:block}#pulseos .media-object.img-thumbnail{max-width:none}#pulseos .media-right,#pulseos .media>.pull-right{padding-left:10px}#pulseos .media-left,#pulseos .media>.pull-left{padding-right:10px}#pulseos .media-left,#pulseos .media-right,#pulseos .media-body{display:table-cell;vertical-align:top}#pulseos .media-middle{vertical-align:middle}#pulseos .media-bottom{vertical-align:bottom}#pulseos .media-heading{margin-top:0;margin-bottom:5px}#pulseos .media-list{padding-left:0;list-style:none}#pulseos .list-group{padding-left:0;margin-bottom:20px}#pulseos .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}#pulseos .list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}#pulseos .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#pulseos .list-group-item.disabled,#pulseos .list-group-item.disabled:hover,#pulseos .list-group-item.disabled:focus{color:#f7f7f7;cursor:not-allowed;background-color:#fff}#pulseos .list-group-item.disabled .list-group-item-heading,#pulseos .list-group-item.disabled:hover .list-group-item-heading,#pulseos .list-group-item.disabled:focus .list-group-item-heading{color:inherit}#pulseos .list-group-item.disabled .list-group-item-text,#pulseos .list-group-item.disabled:hover .list-group-item-text,#pulseos .list-group-item.disabled:focus .list-group-item-text{color:#f7f7f7}#pulseos .list-group-item.active,#pulseos .list-group-item.active:hover,#pulseos .list-group-item.active:focus{z-index:2;color:#eeeeee;background-color:#20242d;border-color:#20242d}#pulseos .list-group-item.active .list-group-item-heading,#pulseos .list-group-item.active:hover .list-group-item-heading,#pulseos .list-group-item.active:focus .list-group-item-heading,#pulseos .list-group-item.active .list-group-item-heading>small,#pulseos .list-group-item.active:hover .list-group-item-heading>small,#pulseos .list-group-item.active:focus .list-group-item-heading>small,#pulseos .list-group-item.active .list-group-item-heading>.small,#pulseos .list-group-item.active:hover .list-group-item-heading>.small,#pulseos .list-group-item.active:focus .list-group-item-heading>.small{color:inherit}#pulseos .list-group-item.active .list-group-item-text,#pulseos .list-group-item.active:hover .list-group-item-text,#pulseos .list-group-item.active:focus .list-group-item-text{color:#7985a0}#pulseos a.list-group-item,#pulseos button.list-group-item{color:#555}#pulseos a.list-group-item .list-group-item-heading,#pulseos button.list-group-item .list-group-item-heading{color:#333}#pulseos a.list-group-item:hover,#pulseos button.list-group-item:hover,#pulseos a.list-group-item:focus,#pulseos button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}#pulseos button.list-group-item{width:100%;text-align:left}#pulseos .list-group-item-success{color:#3c763d;background-color:#dff0d8}a#pulseos .list-group-item-success,button#pulseos .list-group-item-success{color:#3c763d}a#pulseos .list-group-item-success .list-group-item-heading,button#pulseos .list-group-item-success .list-group-item-heading{color:inherit}a#pulseos .list-group-item-success:hover,button#pulseos .list-group-item-success:hover,a#pulseos .list-group-item-success:focus,button#pulseos .list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a#pulseos .list-group-item-success.active,button#pulseos .list-group-item-success.active,a#pulseos .list-group-item-success.active:hover,button#pulseos .list-group-item-success.active:hover,a#pulseos .list-group-item-success.active:focus,button#pulseos .list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}#pulseos .list-group-item-info{color:#31708f;background-color:#d9edf7}a#pulseos .list-group-item-info,button#pulseos .list-group-item-info{color:#31708f}a#pulseos .list-group-item-info .list-group-item-heading,button#pulseos .list-group-item-info .list-group-item-heading{color:inherit}a#pulseos .list-group-item-info:hover,button#pulseos .list-group-item-info:hover,a#pulseos .list-group-item-info:focus,button#pulseos .list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a#pulseos .list-group-item-info.active,button#pulseos .list-group-item-info.active,a#pulseos .list-group-item-info.active:hover,button#pulseos .list-group-item-info.active:hover,a#pulseos .list-group-item-info.active:focus,button#pulseos .list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}#pulseos .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a#pulseos .list-group-item-warning,button#pulseos .list-group-item-warning{color:#8a6d3b}a#pulseos .list-group-item-warning .list-group-item-heading,button#pulseos .list-group-item-warning .list-group-item-heading{color:inherit}a#pulseos .list-group-item-warning:hover,button#pulseos .list-group-item-warning:hover,a#pulseos .list-group-item-warning:focus,button#pulseos .list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a#pulseos .list-group-item-warning.active,button#pulseos .list-group-item-warning.active,a#pulseos .list-group-item-warning.active:hover,button#pulseos .list-group-item-warning.active:hover,a#pulseos .list-group-item-warning.active:focus,button#pulseos .list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}#pulseos .list-group-item-danger{color:#a94442;background-color:#f2dede}a#pulseos .list-group-item-danger,button#pulseos .list-group-item-danger{color:#a94442}a#pulseos .list-group-item-danger .list-group-item-heading,button#pulseos .list-group-item-danger .list-group-item-heading{color:inherit}a#pulseos .list-group-item-danger:hover,button#pulseos .list-group-item-danger:hover,a#pulseos .list-group-item-danger:focus,button#pulseos .list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a#pulseos .list-group-item-danger.active,button#pulseos .list-group-item-danger.active,a#pulseos .list-group-item-danger.active:hover,button#pulseos .list-group-item-danger.active:hover,a#pulseos .list-group-item-danger.active:focus,button#pulseos .list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}#pulseos .list-group-item-heading{margin-top:0;margin-bottom:5px}#pulseos .list-group-item-text{margin-bottom:0;line-height:1.3}#pulseos .panel{margin-bottom:20px;background-color:#222222;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}#pulseos .panel-body{padding:5px}#pulseos .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}#pulseos .panel-heading>.dropdown .dropdown-toggle{color:inherit}#pulseos .panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}#pulseos .panel-title>a,#pulseos .panel-title>small,#pulseos .panel-title>.small,#pulseos .panel-title>small>a,#pulseos .panel-title>.small>a{color:inherit}#pulseos .panel-footer{padding:10px 15px;background-color:#20242d;border-top:1px solid #2f2f2f;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#pulseos .panel>.list-group,#pulseos .panel>.panel-collapse>.list-group{margin-bottom:0}#pulseos .panel>.list-group .list-group-item,#pulseos .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}#pulseos .panel>.list-group:first-child .list-group-item:first-child,#pulseos .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}#pulseos .panel>.list-group:last-child .list-group-item:last-child,#pulseos .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#pulseos .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}#pulseos .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}#pulseos .list-group+.panel-footer{border-top-width:0}#pulseos .panel>.table,#pulseos .panel>.table-responsive>.table,#pulseos .panel>.panel-collapse>.table{margin-bottom:0}#pulseos .panel>.table caption,#pulseos .panel>.table-responsive>.table caption,#pulseos .panel>.panel-collapse>.table caption{padding-right:5px;padding-left:5px}#pulseos .panel>.table:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#pulseos .panel>.table:first-child>thead:first-child>tr:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,#pulseos .panel>.table:first-child>tbody:first-child>tr:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#pulseos .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,#pulseos .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,#pulseos .panel>.table:first-child>thead:first-child>tr:first-child th:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,#pulseos .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}#pulseos .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,#pulseos .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,#pulseos .panel>.table:first-child>thead:first-child>tr:first-child th:last-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,#pulseos .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,#pulseos .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}#pulseos .panel>.table:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#pulseos .panel>.table:last-child>tbody:last-child>tr:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,#pulseos .panel>.table:last-child>tfoot:last-child>tr:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#pulseos .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,#pulseos .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#pulseos .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,#pulseos .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}#pulseos .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,#pulseos .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#pulseos .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,#pulseos .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,#pulseos .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}#pulseos .panel>.panel-body+.table,#pulseos .panel>.panel-body+.table-responsive,#pulseos .panel>.table+.panel-body,#pulseos .panel>.table-responsive+.panel-body{border-top:1px solid #252728}#pulseos .panel>.table>tbody:first-child>tr:first-child th,#pulseos .panel>.table>tbody:first-child>tr:first-child td{border-top:0}#pulseos .panel>.table-bordered,#pulseos .panel>.table-responsive>.table-bordered{border:0}#pulseos .panel>.table-bordered>thead>tr>th:first-child,#pulseos .panel>.table-responsive>.table-bordered>thead>tr>th:first-child,#pulseos .panel>.table-bordered>tbody>tr>th:first-child,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,#pulseos .panel>.table-bordered>tfoot>tr>th:first-child,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,#pulseos .panel>.table-bordered>thead>tr>td:first-child,#pulseos .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,#pulseos .panel>.table-bordered>tbody>tr>td:first-child,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,#pulseos .panel>.table-bordered>tfoot>tr>td:first-child,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}#pulseos .panel>.table-bordered>thead>tr>th:last-child,#pulseos .panel>.table-responsive>.table-bordered>thead>tr>th:last-child,#pulseos .panel>.table-bordered>tbody>tr>th:last-child,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,#pulseos .panel>.table-bordered>tfoot>tr>th:last-child,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,#pulseos .panel>.table-bordered>thead>tr>td:last-child,#pulseos .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,#pulseos .panel>.table-bordered>tbody>tr>td:last-child,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,#pulseos .panel>.table-bordered>tfoot>tr>td:last-child,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}#pulseos .panel>.table-bordered>thead>tr:first-child>td,#pulseos .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,#pulseos .panel>.table-bordered>tbody>tr:first-child>td,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,#pulseos .panel>.table-bordered>thead>tr:first-child>th,#pulseos .panel>.table-responsive>.table-bordered>thead>tr:first-child>th,#pulseos .panel>.table-bordered>tbody>tr:first-child>th,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}#pulseos .panel>.table-bordered>tbody>tr:last-child>td,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,#pulseos .panel>.table-bordered>tfoot>tr:last-child>td,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,#pulseos .panel>.table-bordered>tbody>tr:last-child>th,#pulseos .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,#pulseos .panel>.table-bordered>tfoot>tr:last-child>th,#pulseos .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}#pulseos .panel>.table-responsive{margin-bottom:0;border:0}#pulseos .panel-group{margin-bottom:20px}#pulseos .panel-group .panel{margin-bottom:0;border-radius:4px}#pulseos .panel-group .panel+.panel{margin-top:5px}#pulseos .panel-group .panel-heading{border-bottom:0}#pulseos .panel-group .panel-heading+.panel-collapse>.panel-body,#pulseos .panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #2f2f2f}#pulseos .panel-group .panel-footer{border-top:0}#pulseos .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #2f2f2f}#pulseos .panel-default{border-color:#2f2f2f}#pulseos .panel-default>.panel-heading{color:#eeeeee;background-color:#191a1b;border-color:#2f2f2f}#pulseos .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2f2f2f}#pulseos .panel-default>.panel-heading .badge{color:#191a1b;background-color:#eeeeee}#pulseos .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2f2f2f}#pulseos .panel-primary{border-color:#20242d}#pulseos .panel-primary>.panel-heading{color:#fff;background-color:#20242d;border-color:#20242d}#pulseos .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#20242d}#pulseos .panel-primary>.panel-heading .badge{color:#20242d;background-color:#fff}#pulseos .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#20242d}#pulseos .panel-success{border-color:#d6e9c6}#pulseos .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#pulseos .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}#pulseos .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}#pulseos .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}#pulseos .panel-info{border-color:#bce8f1}#pulseos .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#pulseos .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}#pulseos .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}#pulseos .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}#pulseos .panel-warning{border-color:#faebcc}#pulseos .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#pulseos .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}#pulseos .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}#pulseos .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}#pulseos .panel-danger{border-color:#ebccd1}#pulseos .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#pulseos .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}#pulseos .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}#pulseos .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}#pulseos .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}#pulseos .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}#pulseos .well-lg{padding:24px;border-radius:6px}#pulseos .well-sm{padding:9px;border-radius:3px}#pulseos .close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}#pulseos .close:hover,#pulseos .close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button#pulseos .close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;appearance:none}#pulseos .modal-open{overflow:hidden}#pulseos .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}#pulseos .modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}#pulseos .modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}#pulseos .modal-open .modal{overflow-x:hidden;overflow-y:auto}#pulseos .modal-dialog{position:relative;width:auto;margin:10px}#pulseos .modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);outline:0}#pulseos .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}#pulseos .modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}#pulseos .modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}#pulseos .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}#pulseos .modal-header .close{margin-top:-2px}#pulseos .modal-title{margin:0;line-height:1.42857143}#pulseos .modal-body{position:relative;padding:15px}#pulseos .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}#pulseos .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}#pulseos .modal-footer .btn-group .btn+.btn{margin-left:-1px}#pulseos .modal-footer .btn-block+.btn-block{margin-left:0}#pulseos .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){#pulseos .modal-dialog{width:600px;margin:30px auto}#pulseos .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}#pulseos .modal-sm{width:300px}}@media (min-width:992px){#pulseos .modal-lg{width:900px}}#pulseos .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}#pulseos .tooltip.in{filter:alpha(opacity=90);opacity:.9}#pulseos .tooltip.top{padding:5px 0;margin-top:-3px}#pulseos .tooltip.right{padding:0 5px;margin-left:3px}#pulseos .tooltip.bottom{padding:5px 0;margin-top:3px}#pulseos .tooltip.left{padding:0 5px;margin-left:-3px}#pulseos .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}#pulseos .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#pulseos .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#pulseos .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}#pulseos .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}#pulseos .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}#pulseos .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#pulseos .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#pulseos .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}#pulseos .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}#pulseos .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}#pulseos .popover.top{margin-top:-10px}#pulseos .popover.right{margin-left:10px}#pulseos .popover.bottom{margin-top:10px}#pulseos .popover.left{margin-left:-10px}#pulseos .popover>.arrow{border-width:11px}#pulseos .popover>.arrow,#pulseos .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}#pulseos .popover>.arrow:after{content:"";border-width:10px}#pulseos .popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}#pulseos .popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}#pulseos .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}#pulseos .popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}#pulseos .popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25)}#pulseos .popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}#pulseos .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}#pulseos .popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}#pulseos .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}#pulseos .popover-content{padding:9px 14px}#pulseos .carousel{position:relative}#pulseos .carousel-inner{position:relative;width:100%;overflow:hidden}#pulseos .carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}#pulseos .carousel-inner>.item>img,#pulseos .carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){#pulseos .carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}#pulseos .carousel-inner>.item.next,#pulseos .carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}#pulseos .carousel-inner>.item.prev,#pulseos .carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}#pulseos .carousel-inner>.item.next.left,#pulseos .carousel-inner>.item.prev.right,#pulseos .carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}#pulseos .carousel-inner>.active,#pulseos .carousel-inner>.next,#pulseos .carousel-inner>.prev{display:block}#pulseos .carousel-inner>.active{left:0}#pulseos .carousel-inner>.next,#pulseos .carousel-inner>.prev{position:absolute;top:0;width:100%}#pulseos .carousel-inner>.next{left:100%}#pulseos .carousel-inner>.prev{left:-100%}#pulseos .carousel-inner>.next.left,#pulseos .carousel-inner>.prev.right{left:0}#pulseos .carousel-inner>.active.left{left:-100%}#pulseos .carousel-inner>.active.right{left:100%}#pulseos .carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}#pulseos .carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}#pulseos .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}#pulseos .carousel-control:hover,#pulseos .carousel-control:focus{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:.9}#pulseos .carousel-control .icon-prev,#pulseos .carousel-control .icon-next,#pulseos .carousel-control .glyphicon-chevron-left,#pulseos .carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}#pulseos .carousel-control .icon-prev,#pulseos .carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}#pulseos .carousel-control .icon-next,#pulseos .carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}#pulseos .carousel-control .icon-prev,#pulseos .carousel-control .icon-next{width:20px;height:20px;font-family:serif;line-height:1}#pulseos .carousel-control .icon-prev:before{content:"\2039"}#pulseos .carousel-control .icon-next:before{content:"\203a"}#pulseos .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}#pulseos .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}#pulseos .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}#pulseos .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}#pulseos .carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){#pulseos .carousel-control .glyphicon-chevron-left,#pulseos .carousel-control .glyphicon-chevron-right,#pulseos .carousel-control .icon-prev,#pulseos .carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}#pulseos .carousel-control .glyphicon-chevron-left,#pulseos .carousel-control .icon-prev{margin-left:-10px}#pulseos .carousel-control .glyphicon-chevron-right,#pulseos .carousel-control .icon-next{margin-right:-10px}#pulseos .carousel-caption{right:20%;left:20%;padding-bottom:30px}#pulseos .carousel-indicators{bottom:20px}}#pulseos .clearfix:before,#pulseos .clearfix:after,#pulseos #pulseos .dl-horizontal dd:before,#pulseos #pulseos .dl-horizontal dd:after,#pulseos #pulseos .container:before,#pulseos #pulseos .container:after,#pulseos #pulseos .container-fluid:before,#pulseos #pulseos .container-fluid:after,#pulseos #pulseos .row:before,#pulseos #pulseos .row:after,#pulseos #pulseos .form-horizontal .form-group:before,#pulseos #pulseos .form-horizontal .form-group:after,#pulseos #pulseos .btn-toolbar:before,#pulseos #pulseos .btn-toolbar:after,#pulseos #pulseos .btn-group-vertical>.btn-group:before,#pulseos #pulseos .btn-group-vertical>.btn-group:after,#pulseos #pulseos .nav:before,#pulseos #pulseos .nav:after,#pulseos #pulseos .navbar:before,#pulseos #pulseos .navbar:after,#pulseos #pulseos .navbar-header:before,#pulseos #pulseos .navbar-header:after,#pulseos #pulseos .navbar-collapse:before,#pulseos #pulseos .navbar-collapse:after,#pulseos #pulseos .pager:before,#pulseos #pulseos .pager:after,#pulseos #pulseos .panel-body:before,#pulseos #pulseos .panel-body:after,#pulseos #pulseos .modal-header:before,#pulseos #pulseos .modal-header:after,#pulseos #pulseos .modal-footer:before,#pulseos #pulseos .modal-footer:after{display:table;content:" "}#pulseos .clearfix:after,#pulseos #pulseos .dl-horizontal dd:after,#pulseos #pulseos .container:after,#pulseos #pulseos .container-fluid:after,#pulseos #pulseos .row:after,#pulseos #pulseos .form-horizontal .form-group:after,#pulseos #pulseos .btn-toolbar:after,#pulseos #pulseos .btn-group-vertical>.btn-group:after,#pulseos #pulseos .nav:after,#pulseos #pulseos .navbar:after,#pulseos #pulseos .navbar-header:after,#pulseos #pulseos .navbar-collapse:after,#pulseos #pulseos .pager:after,#pulseos #pulseos .panel-body:after,#pulseos #pulseos .modal-header:after,#pulseos #pulseos .modal-footer:after{clear:both}#pulseos .center-block{display:block;margin-right:auto;margin-left:auto}#pulseos .pull-right{float:right !important}#pulseos .pull-left{float:left !important}#pulseos .hide{display:none !important}#pulseos .show{display:block !important}#pulseos .invisible{visibility:hidden}#pulseos .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#pulseos .hidden{display:none !important}#pulseos .affix{position:fixed}@-ms-viewport{width:device-width}#pulseos .visible-xs,#pulseos .visible-sm,#pulseos .visible-md,#pulseos .visible-lg{display:none !important}#pulseos .visible-xs-block,#pulseos .visible-xs-inline,#pulseos .visible-xs-inline-block,#pulseos .visible-sm-block,#pulseos .visible-sm-inline,#pulseos .visible-sm-inline-block,#pulseos .visible-md-block,#pulseos .visible-md-inline,#pulseos .visible-md-inline-block,#pulseos .visible-lg-block,#pulseos .visible-lg-inline,#pulseos .visible-lg-inline-block{display:none !important}@media (max-width:767px){#pulseos .visible-xs{display:block !important}table#pulseos .visible-xs{display:table !important}tr#pulseos .visible-xs{display:table-row !important}th#pulseos .visible-xs,td#pulseos .visible-xs{display:table-cell !important}}@media (max-width:767px){#pulseos .visible-xs-block{display:block !important}}@media (max-width:767px){#pulseos .visible-xs-inline{display:inline !important}}@media (max-width:767px){#pulseos .visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){#pulseos .visible-sm{display:block !important}table#pulseos .visible-sm{display:table !important}tr#pulseos .visible-sm{display:table-row !important}th#pulseos .visible-sm,td#pulseos .visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){#pulseos .visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){#pulseos .visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){#pulseos .visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){#pulseos .visible-md{display:block !important}table#pulseos .visible-md{display:table !important}tr#pulseos .visible-md{display:table-row !important}th#pulseos .visible-md,td#pulseos .visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){#pulseos .visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){#pulseos .visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){#pulseos .visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){#pulseos .visible-lg{display:block !important}table#pulseos .visible-lg{display:table !important}tr#pulseos .visible-lg{display:table-row !important}th#pulseos .visible-lg,td#pulseos .visible-lg{display:table-cell !important}}@media (min-width:1200px){#pulseos .visible-lg-block{display:block !important}}@media (min-width:1200px){#pulseos .visible-lg-inline{display:inline !important}}@media (min-width:1200px){#pulseos .visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){#pulseos .hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){#pulseos .hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){#pulseos .hidden-md{display:none !important}}@media (min-width:1200px){#pulseos .hidden-lg{display:none !important}}#pulseos .visible-print{display:none !important}@media print{#pulseos .visible-print{display:block !important}table#pulseos .visible-print{display:table !important}tr#pulseos .visible-print{display:table-row !important}th#pulseos .visible-print,td#pulseos .visible-print{display:table-cell !important}}#pulseos .visible-print-block{display:none !important}@media print{#pulseos .visible-print-block{display:block !important}}#pulseos .visible-print-inline{display:none !important}@media print{#pulseos .visible-print-inline{display:inline !important}}#pulseos .visible-print-inline-block{display:none !important}@media print{#pulseos .visible-print-inline-block{display:inline-block !important}}@media print{#pulseos .hidden-print{display:none !important}}@font-face{font-family:'leaguegothic-regular';src:url('../fonts/league_gothic/leaguegothic-regular-webfont.eot');src:url('../fonts/league_gothic/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/league_gothic/leaguegothic-regular-webfont.woff') format('woff'),url('../fonts/league_gothic/leaguegothic-regular-webfont.ttf') format('truetype'),url('../fonts/league_gothic/leaguegothic-regular-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'leaguegothic-italic';src:url('../fonts/league_gothic/leaguegothic-italic-webfont.eot');src:url('../fonts/league_gothic/leaguegothic-italic-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/league_gothic/leaguegothic-italic-webfont.woff') format('woff'),url('../fonts/league_gothic/leaguegothic-italic-webfont.ttf') format('truetype'),url('../fonts/league_gothic/leaguegothic-italic-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'sourcesanspro-regular';src:url('../fonts/source_sans/sourcesanspro-regular-webfont.eot');src:url('../fonts/source_sans/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/source_sans/sourcesanspro-regular-webfont.woff') format('woff'),url('../fonts/source_sans/sourcesanspro-regular-webfont.ttf') format('truetype'),url('../fonts/source_sans/sourcesanspro-regular-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'sourcesanspro-light';src:url('../fonts/source_sans/sourcesanspro-light-webfont.eot');src:url('../fonts/source_sans/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/source_sans/sourcesanspro-light-webfont.woff') format('woff'),url('../fonts/source_sans/sourcesanspro-light-webfont.ttf') format('truetype'),url('../fonts/source_sans/sourcesanspro-light-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'sourcesanspro-extralight';src:url('../fonts/source_sans/sourcesanspro-extralight-webfont.eot');src:url('../fonts/source_sans/sourcesanspro-extralight-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/source_sans/sourcesanspro-extralight-webfont.woff') format('woff'),url('../fonts/source_sans/sourcesanspro-extralight-webfont.ttf') format('truetype'),url('../fonts/source_sans/sourcesanspro-extralight-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'sourcesanspro-bold';src:url('../fonts/source_sans/sourcesanspro-bold-webfont.eot');src:url('../fonts/source_sans/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/source_sans/sourcesanspro-bold-webfont.woff') format('woff'),url('../fonts/source_sans/sourcesanspro-bold-webfont.ttf') format('truetype'),url('../fonts/source_sans/sourcesanspro-bold-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'raleway-thin';src:url('../fonts/raleway/raleway_thin-webfont.eot');src:url('../fonts/raleway/raleway_thin-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/raleway/raleway_thin-webfont.woff') format('woff'),url('../fonts/raleway/raleway_thin-webfont.ttf') format('truetype'),url('../fonts/raleway/raleway_thin-webfont.svg#nudistalight') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'cygnus-icons';src:url('../fonts/cygnus-icons.eot?4mh43w');src:url('../fonts/cygnus-icons.eot?#iefix4mh43w') format('embedded-opentype'),url('../fonts/cygnus-icons.woff?4mh43w') format('woff'),url('../fonts/cygnus-icons.ttf?4mh43w') format('truetype'),url('../fonts/cygnus-icons.svg?4mh43w#icomoon') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'r360';src:url('../fonts/r360.eot');src:url('../fonts/r360.eot') format('embedded-opentype'),url('../fonts/r360.ttf') format('truetype'),url('../fonts/r360.woff') format('woff'),url('../fonts/r360.svg') format('svg');font-weight:normal;font-style:normal;font-display:block}#pulseos [class^="ft-"],#pulseos [class*=" ft-"]{font-family:'r360' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pulseos [class^="icon-"],#pulseos [class*=" icon-"]{font-family:'cygnus-icons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#pulseos .ft-earth:before{content:"\e9e1"}#pulseos .ft-list2:before{content:"\e9cf"}#pulseos .ft-feed:before{content:"\e931"}#pulseos .ft-incident:before{content:"\e909"}#pulseos .ft-loop:before{content:"\ea41"}#pulseos .ft-map_view:before{content:"\e83c"}#pulseos .ft-free-shape:before{content:"\eb2d"}#pulseos .ft-radio-unchecked:before{content:"\ea6a"}#pulseos .ft-checkbox-unchecked:before{content:"\ea67"}#pulseos .icon-cygnus-lane:before{content:"\e601"}#pulseos .icon-cygnus-asset:before{content:"\e600"}#pulseos .icon-cygnus-layer:before{content:"\e602"}#pulseos .panel-heading{padding:10px}#pulseos .panel-title{font-size:14px}#pulseos table thead th,#pulseos tfoot td{font-weight:300;border:none !important;padding:0;font-family:'sourcesanspro-regular';color:#808080}#pulseos #pulse-map.leaflet-container{position:relative;background-color:#191c21;width:100%;height:100%;z-index:0;font-family:'sourcesanspro-regular'}#pulseos #pulse-map.leaflet-container .colormap-legend-control table{background-color:#191c21;margin-left:5px}#pulseos #pulse-map.leaflet-container .leaflet-control-zoom,#pulseos #pulse-map.leaflet-container .leaflet-draw{margin-left:15px}#pulseos #pulse-map.leaflet-container .leaflet-control-zoom a,#pulseos #pulse-map.leaflet-container .leaflet-draw a{color:#eeeeee;background-color:#20242d;border-bottom:1px solid #313744}#pulseos #pulse-map.leaflet-container .leaflet-control-zoom a:hover,#pulseos #pulse-map.leaflet-container .leaflet-draw a:hover{background-color:#464f62;border-bottom:1px solid #313744;text-decoration:none}#pulseos #pulse-map.leaflet-container .leaflet-control-zoom a.leaflet-disabled,#pulseos #pulse-map.leaflet-container .leaflet-draw a.leaflet-disabled{color:#808080;background-color:#191c21}#pulseos #pulse-map.leaflet-container .leaflet-popup-pane .leaflet-popup-tip-container{margin-top:-3px;height:25px}#pulseos #pulse-map.leaflet-container img.leaflet-image-layer{max-width:200000px !important;pointer-events:none}#pulseos #pulse-map.leaflet-container .leaflet-popup-content-wrapper,#pulseos #pulse-map.leaflet-container .leaflet-popup-tip{pointer-events:none;background:#1a1a1a;color:#eeeeee;border-color:#666d87;border-color:rgba(102,109,135,0.5);border-radius:4px;border-style:solid;border-width:3px}#pulseos #pulse-map.leaflet-container .leaflet-popup-content-wrapper .leaflet-popup-content,#pulseos #pulse-map.leaflet-container .leaflet-popup-tip .leaflet-popup-content{margin:5px}#pulseos #pulse-map.leaflet-container .leaflet-popup.tempchart .leaflet-popup-content-wrapper{width:275px}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .leaflet-popup-content-wrapper{pointer-events:auto}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .leaflet-popup-tip-container{display:none}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .leaflet-popup-content-wrapper{background-color:#191c21;width:258px}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster p{margin:15px 0 2px 0!important;color:#5e5e5e}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .leaflet-tooltip p{margin:0 !important}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-summary{width:100%}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-summary:before,#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-summary:after{display:table;content:" "}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-summary:after{clear:both}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-risk{width:100%;color:#eeeeee}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .cluster-controls{margin-top:15px}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .chief-risks{width:100%;color:#5e5e5e}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster .accent{color:#2d8fa5}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster h3{color:#39b2c6 !important;font-size:12px;margin-top:5px;margin-bottom:5px}#pulseos #pulse-map.leaflet-container .leaflet-popup.assetcluster a{text-decoration:none;color:#2c8498}#pulseos #pulse-map.leaflet-container .leaflet-tooltip-top:before{border-top-color:#666d87}#pulseos #pulse-map.leaflet-container .leaflet-tooltip{pointer-events:none;background:#1a1a1a;color:#39b2c6;border-color:#666d87;border-radius:4px;border-style:solid;border-width:3px;font-size:12px;text-align:center;z-index:1000 !important;backface-visibility:hidden;font:12px/20px "Helvetica Neue",Arial,Helvetica,sans-serif;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);-webkit-font-smoothing:subpixel-antialiased}#pulseos #pulse-map.leaflet-container .leaflet-tooltip .pulse-thumbnail-link{cursor:pointer}#pulseos #pulse-map.leaflet-container .leaflet-tooltip .pulse-thumbnail-bg{margin-left:0}#pulseos #pulse-map.leaflet-container .leaflet-tooltip .pulse-thumbnail-container{margin:0px auto;margin-bottom:0}#pulseos #pulse-map.leaflet-container .leaflet-tooltip h5{font-size:14px}#pulseos #pulse-map.leaflet-container .leaflet-tooltip h5,#pulseos #pulse-map.leaflet-container .leaflet-tooltip h4,#pulseos #pulse-map.leaflet-container .leaflet-tooltip h3,#pulseos #pulse-map.leaflet-container .leaflet-tooltip h2,#pulseos #pulse-map.leaflet-container .leaflet-tooltip h1,#pulseos #pulse-map.leaflet-container .leaflet-tooltip p.light{color:#eeeeee}#pulseos #pulse-map.leaflet-container .leaflet-tooltip p{font-size:12px}#pulseos #pulse-map.leaflet-container .leaflet-tooltip p.small{font-size:11px;font-weight:200;margin-top:-3px}#pulseos #pulse-map.leaflet-container .leaflet-tooltip p.small.static{font-size:11px;font-weight:500;margin-top:-3px}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.cyclone{background:none;box-shadow:none;border:none;color:#fff;font-size:16px;font-weight:300;letter-spacing:1px;pointer-events:auto}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.incident h5{width:400px;white-space:normal}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.covid-tooltip{text-align:left}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.covid-tooltip h4{color:#2d8fa5;margin-bottom:10px}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.covid-tooltip table{margin-top:10px;margin-bottom:0;color:#eeeeee}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.covid-tooltip p.attr{text-align:left;font-size:10px;color:#676767;margin:0}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.asset.video{pointer-events:auto}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.asset.video h3{font-size:14px;color:#39b2c6}#pulseos #pulse-map.leaflet-container .leaflet-tooltip.asset.video a.play{display:block;margin:0 auto;text-align:center}#pulseos #pulse-map.leaflet-container .leaflet-tooltip-left:after{border:none}#pulseos #pulse-map.leaflet-container .leaflet-tooltip-left:before{border:none}#pulseos #pulse-map.leaflet-container .leaflet-tooltip-right:after{border:none}#pulseos #pulse-map.leaflet-container .leaflet-tooltip-right:before{border:none}#pulseos .radial-first{font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif;font-weight:400;font-size:12px;color:#39b2c6}#pulseos .radial-second{font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif;font-weight:400;font-size:10px;color:#919191}#pulseos .popup-pulldown{bottom:-10px !important}#pulseos .popup-table-top{margin-top:15px !important}#pulseos .popup-table-bottom{margin-bottom:0px !important}#pulseos h1,#pulseos h2,#pulseos h3,#pulseos h4,#pulseos h5{font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif;color:#eeeeee;margin:3px 0}#pulseos p{margin:0 0 3px 0}#pulseos ul{margin:0}#pulseos ol{margin:0}#pulseos .pulse-active-node{z-index:9000 !important}#pulseos #pulse-viewport{position:absolute;top:0;width:100%;height:100%;padding:0;margin:0;overflow:hidden}#pulseos #pulse-viewport .container{padding:0px 0px 0px 0px}#pulseos #pulse-header{position:relative;background-color:#191c21;background-color:rgba(25,26,27,0.8);border-color:#313744;height:55px;z-index:9100}#pulseos #pulse-header:before,#pulseos #pulse-header:after{display:table;content:" "}#pulseos #pulse-header:after{clear:both}#pulseos #pulse-header .navbar-header{display:block;width:100%}#pulseos #pulse-header .pulse-search-icon{z-index:1000;margin-left:-20px;margin-top:20px;color:#919191}#pulseos #pulse-header .navbar-collapse{border-color:#20242d}@media (min-width:767px){#pulseos #pulse-header .navbar-collapse{display:none !important}}#pulseos #pulse-header .unread-count{display:none;position:absolute;background-color:red;border-radius:12px;color:white;font:12px/9px 'sourcesanspro-bold',Helvetica,sans-serif;height:16px;padding:3px 4px 0 3px;text-align:center;min-width:16px;top:-10px;right:5px}#pulseos #pulse-header .collapse,#pulseos #pulse-header .collapsing{width:100%;padding-left:0;padding-right:0}#pulseos #pulse-header #asset-risk-report{margin:0}#pulseos #pulse-header #pulse-asset-menu{color:#5C6781}#pulseos #pulse-header #pulse-asset-menu .active-menu{color:#a1adc6 !important}#pulseos #pulse-header .glyphicon{display:inline-block}#pulseos #pulse-header .navbar-nav{margin:0;background-color:#191c21}#pulseos #pulse-header .navbar-nav .active a{color:#eeeeee;background-color:#2d8fa5}#pulseos #pulse-header .navbar-nav a{color:#808080}#pulseos #pulse-header .navbar-nav a:hover{color:#eeeeee;background-color:#2d8fa5}#pulseos #pulse-header .icon-bar{background-color:#FFFFFF}#pulseos #pulse-header .btn-group .btn,#pulseos #pulse-header .btn-group .btn.dropdown-toggle{background:transparent;border:none;margin-top:8px}#pulseos #pulse-header .btn-group .btn.dropdown-toggle{padding:5px 3px 15px 10px;margin-left:-8px;color:#8a96b2;z-index:1000}#pulseos #pulse-header .btn-group .glyphicon{margin:0 -10px 0 2px;display:inline-block}#pulseos #pulse-header .navbar-toggle,#pulseos #pulse-header .navbar-toggle:focus,#pulseos #pulse-header .navbar-toggle:hover{margin-top:5px;margin-bottom:0;background-color:transparent;border-color:transparent !important}@media (max-width:767px){#pulseos #pulse-header{position:fixed;min-height:45px;height:45px}}#pulseos #pulse-header .glyphicon-globe{display:block;margin:13px 10px 0 20px;color:#8a96b2;cursor:pointer;text-align:center;font-size:16px}#pulseos #pulse-header .cygnus-custom-icons,#pulseos #pulse-header .glyphicon.notifications,#pulseos #pulse-header .glyphicon-road,#pulseos #pulse-header .ft-list2#header-icon-incidents,#pulseos #pulse-header .ft-feed#header-icon-incident-feed-modal,#pulseos #pulse-header .ft-earth#header-icon-discover-network,#pulseos #pulse-header .glyphicon-equalizer#header-icon-dashboards,#pulseos #pulse-header .glyphicon-map-marker,#pulseos #pulse-header .ft-map_view{display:block;margin:14px 10px 0 15px;color:#8a96b2;cursor:pointer;text-align:center;font-size:18px}#pulseos #pulse-header .cygnus-custom-icons:hover,#pulseos #pulse-header .ft-map_view:hover,#pulseos #pulse-header .ft-earth#header-icon-discover-network:hover,#pulseos #pulse-header .ft-list2#header-icon-incidents:hover,#pulseos #pulse-header .ft-feed#header-icon-incident-feed-modal:hover,#pulseos #pulse-header .glyphicon-road:hover,#pulseos #pulse-header .glyphicon-map-marker:hover,#pulseos #pulse-header .glyphicon.notifications:hover{color:#39b2c6}#pulseos #pulse-header .glyphicon-bell{display:block;margin:15px 10px 0 12px;color:#5c677f;cursor:pointer;font-size:15px;vertical-align:top}#pulseos #pulse-header .glyphicon-bell:hover{color:#919bb0}#pulseos #pulse-header .glyphicon-map-marker{margin:14px 5px 0 20px !important}#pulseos #pulse-header .glyphicon-th-list{margin:16px 10px 0 0;color:#8a96b2;cursor:pointer;text-align:center;font-size:15px}#pulseos #pulse-header .dropdown-menu .glyphicon-th-list{font-size:12px}#pulseos #pulse-header .caret{color:#8a96b2}#pulseos #pulse-header .glyphicon-th-list:hover{color:#39b2c6}#pulseos #pulse-header #header-icon-assets{font-size:18px;margin:13px 5px 0 20px;float:left}#pulseos #pulse-header #header-icon-lanes,#pulseos #pulse-header #header-icon-incidents,#pulseos #pulse-header #header-icon-incident-feed-modal,#pulseos #pulse-header #header-icon-discover-network{font-size:15px;margin:14px 5px 0 15px;float:left}#pulseos #pulse-header #header-icon-dashboards,#pulseos #pulse-header #header-icon-incidents{font-size:15px;margin:14px 5px 0 15px;float:left}#pulseos #pulse-header #header-icon-lanes-text,#pulseos #pulse-header #header-icon-incidents-text,#pulseos #pulse-header #header-icon-incident-feed-modal-text,#pulseos #pulse-header #header-icon-discover-network-text{margin-top:5px}#pulseos #pulse-header #header-icon-dashboards-text{margin-top:2px}#pulseos #pulse-header #header-icon-assets-text{margin-top:4px}#pulseos #pulse-header #header-icon-notifications-text{margin-top:2px}#pulseos #pulse-header .header-icon-text{font-family:sourcesanspro,'Helvetica Neue',Helvetica,sans-serif !important;font-size:11px;margin-top:2px}#pulseos #pulse-header #header-icon-home-text{margin-top:5px}#pulseos #pulse-header .search-toggle{font-size:18px;margin:10px 0 0 20px}#pulseos #pulse-header .search-toggle:hover{cursor:pointer}#pulseos #pulse-header .pulse-search{float:left;margin:14px 0 0 10px;width:40%;max-width:585px;border-color:#8a96b2;border-radius:4px;border-width:1px}@media (max-width:767px){#pulseos #pulse-header .pulse-search{display:none;position:absolute;width:99%;top:12px;left:15px;margin:0}}#pulseos #pulse-header .pulse-search input{width:100%;border-radius:5px;outline:0;background-color:#1a1a1a !important;border:1px solid #000;color:#eeeeee;height:auto;padding:5px 10px !important;margin-top:-2px;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos #pulse-header .pulse-search input::-moz-placeholder{color:#454e60;opacity:1}#pulseos #pulse-header .pulse-search input:-ms-input-placeholder{color:#454e60}#pulseos #pulse-header .pulse-search input::-webkit-input-placeholder{color:#454e60}@media (max-width:767px){#pulseos #pulse-header .pulse-search input{width:95%}}#pulseos #pulse-header .pulse-search input :focus{outline:1;outline-color:#2d8fa5}#pulseos #pulse-header .glyphicon-search{color:#8a96b2}@media (max-width:991px){#pulseos #pulse-header.search .pulse-search{display:block}#pulseos #pulse-header.search .navbar-toggle{display:none}#pulseos #pulse-header.search .navbar-collapse{display:none}}@media (max-width:767px){#pulseos span.pulse-search-cancel{display:inline !important;margin-top:5px}}#pulseos #pulse-usermenu{margin:20px 15px 0 0}#pulseos #pulse-usermenu .marketing-link{float:left;font-size:12px;margin-right:20px}#pulseos #pulse-usermenu .display-name{font-size:12px;margin-top:0;margin-right:4px;color:#fff;float:left;cursor:pointer}#pulseos #pulse-usermenu .glyphicon{float:left;cursor:pointer;top:3px;font-size:8px}#pulseos #pulse-usermenu .dropdown-menu{margin-top:0}@media (max-width:991px){#pulseos #pulse-usermenu{margin:15px 10px 0 0}}#pulseos #pulse-logo-container{position:absolute;right:0;bottom:25px;z-index:100;margin-bottom:20px;max-height:33px}#pulseos #pulse-logo-container .pulse-logo{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;max-height:7vh;height:50px}@media (max-width:767px){#pulseos #pulse-logo-container{display:none}}#pulseos .leaflet-container .leaflet-control-attribution{background:none;margin:2px;color:#dedede}#pulseos .mapbox-wordmark{position:absolute;display:block;height:20px;width:65px;right:240px;bottom:1px;text-indent:-9999px;z-index:2000;overflow:hidden;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgODAuNDcgMjAuMDIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDgwLjQ3IDIwLjAyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe29wYWNpdHk6MC42O2ZpbGw6I0ZGRkZGRjtlbmFibGUtYmFja2dyb3VuZDpuZXcgICAgO30uc3Qxe29wYWNpdHk6MC42O2VuYWJsZS1iYWNrZ3JvdW5kOm5ldyAgICA7fTwvc3R5bGU+PGc+PHBhdGggY2xhc3M9InN0MCIgZD0iTTc5LjI5LDEzLjYxYzAsMC4xMS0wLjA5LDAuMi0wLjIsMC4yaC0xLjUzYy0wLjEyLDAtMC4yMy0wLjA2LTAuMjktMC4xNmwtMS4zNy0yLjI4bC0xLjM3LDIuMjhjLTAuMDYsMC4xLTAuMTcsMC4xNi0wLjI5LDAuMTZoLTEuNTNjLTAuMDQsMC0wLjA4LTAuMDEtMC4xMS0wLjAzYy0wLjA5LTAuMDYtMC4xMi0wLjE4LTAuMDYtMC4yN2MwLDAsMCwwLDAsMGwyLjMxLTMuNWwtMi4yOC0zLjQ3Yy0wLjAyLTAuMDMtMC4wMy0wLjA3LTAuMDMtMC4xMWMwLTAuMTEsMC4wOS0wLjIsMC4yLTAuMmgxLjUzYzAuMTIsMCwwLjIzLDAuMDYsMC4yOSwwLjE2bDEuMzQsMi4yNWwxLjMzLTIuMjRjMC4wNi0wLjEsMC4xNy0wLjE2LDAuMjktMC4xNmgxLjUzYzAuMDQsMCwwLjA4LDAuMDEsMC4xMSwwLjAzYzAuMDksMC4wNiwwLjEyLDAuMTgsMC4wNiwwLjI3YzAsMCwwLDAsMCwwTDc2Ljk2LDEwbDIuMzEsMy41Qzc5LjI4LDEzLjUzLDc5LjI5LDEzLjU3LDc5LjI5LDEzLjYxeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik02My4wOSw5LjE2Yy0wLjM3LTEuNzktMS44Ny0zLjEyLTMuNjYtMy4xMmMtMC45OCwwLTEuOTMsMC40LTIuNiwxLjEyVjMuMzdjMC0wLjEyLTAuMS0wLjIyLTAuMjItMC4yMmgtMS4zM2MtMC4xMiwwLTAuMjIsMC4xLTAuMjIsMC4yMnYxMC4yMWMwLDAuMTIsMC4xLDAuMjIsMC4yMiwwLjIyaDEuMzNjMC4xMiwwLDAuMjItMC4xLDAuMjItMC4yMnYtMC43YzAuNjgsMC43MSwxLjYyLDEuMTIsMi42LDEuMTJjMS43OSwwLDMuMjktMS4zNCwzLjY2LTMuMTNDNjMuMjEsMTAuMyw2My4yMSw5LjcyLDYzLjA5LDkuMTZMNjMuMDksOS4xNnogTTU5LjEyLDEyLjQxYy0xLjI2LDAtMi4yOC0xLjA2LTIuMy0yLjM2VjkuOTljMC4wMi0xLjMxLDEuMDQtMi4zNiwyLjMtMi4zNnMyLjMsMS4wNywyLjMsMi4zOVM2MC4zOSwxMi40MSw1OS4xMiwxMi40MXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNNjguMjYsNi4wNGMtMS44OS0wLjAxLTMuNTQsMS4yOS0zLjk2LDMuMTNjLTAuMTIsMC41Ni0wLjEyLDEuMTMsMCwxLjY5YzAuNDIsMS44NSwyLjA3LDMuMTYsMy45NywzLjE0YzIuMjQsMCw0LjA2LTEuNzgsNC4wNi0zLjk5UzcwLjUxLDYuMDQsNjguMjYsNi4wNHogTTY4LjI0LDEyLjQyYy0xLjI3LDAtMi4zLTEuMDctMi4zLTIuMzlzMS4wMy0yLjQsMi4zLTIuNHMyLjMsMS4wNywyLjMsMi4zOVM2OS41MSwxMi40MSw2OC4yNCwxMi40Mkw2OC4yNCwxMi40MnoiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNNTkuMTIsNy42M2MtMS4yNiwwLTIuMjgsMS4wNi0yLjMsMi4zNnYwLjA2YzAuMDIsMS4zMSwxLjA0LDIuMzYsMi4zLDIuMzZzMi4zLTEuMDcsMi4zLTIuMzlTNjAuMzksNy42Myw1OS4xMiw3LjYzeiBNNTkuMTIsMTEuMjNjLTAuNiwwLTEuMDktMC41My0xLjExLTEuMTlWMTBjMC4wMS0wLjY2LDAuNTEtMS4xOSwxLjExLTEuMTlzMS4xMSwwLjU0LDEuMTEsMS4yMVM1OS43NCwxMS4yMyw1OS4xMiwxMS4yM3oiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNNjguMjQsNy42M2MtMS4yNywwLTIuMywxLjA3LTIuMywyLjM5czEuMDMsMi4zOSwyLjMsMi4zOXMyLjMtMS4wNywyLjMtMi4zOVM2OS41MSw3LjYzLDY4LjI0LDcuNjN6IE02OC4yNCwxMS4yM2MtMC42MSwwLTEuMTEtMC41NC0xLjExLTEuMjFzMC41LTEuMiwxLjExLTEuMnMxLjExLDAuNTQsMS4xMSwxLjIxUzY4Ljg1LDExLjIzLDY4LjI0LDExLjIzeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00My41Niw2LjI0aC0xLjMzYy0wLjEyLDAtMC4yMiwwLjEtMC4yMiwwLjIydjAuN2MtMC42OC0wLjcxLTEuNjItMS4xMi0yLjYtMS4xMmMtMi4wNywwLTMuNzUsMS43OC0zLjc1LDMuOTlzMS42OSwzLjk5LDMuNzUsMy45OWMwLjk5LDAsMS45My0wLjQxLDIuNi0xLjEzdjAuN2MwLDAuMTIsMC4xLDAuMjIsMC4yMiwwLjIyaDEuMzNjMC4xMiwwLDAuMjItMC4xLDAuMjItMC4yMlY2LjQ0YzAtMC4xMS0wLjA5LTAuMjEtMC4yMS0wLjIxQzQzLjU3LDYuMjQsNDMuNTcsNi4yNCw0My41Niw2LjI0eiBNNDIuMDIsMTAuMDVjLTAuMDEsMS4zMS0xLjA0LDIuMzYtMi4zLDIuMzZzLTIuMy0xLjA3LTIuMy0yLjM5czEuMDMtMi40LDIuMjktMi40YzEuMjcsMCwyLjI4LDEuMDYsMi4zLDIuMzZMNDIuMDIsMTAuMDV6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTM5LjcyLDcuNjNjLTEuMjcsMC0yLjMsMS4wNy0yLjMsMi4zOXMxLjAzLDIuMzksMi4zLDIuMzlzMi4yOC0xLjA2LDIuMy0yLjM2VjkuOTlDNDIsOC42OCw0MC45OCw3LjYzLDM5LjcyLDcuNjN6IE0zOC42MiwxMC4wMmMwLTAuNjcsMC41LTEuMjEsMS4xMS0xLjIxYzAuNjEsMCwxLjA5LDAuNTMsMS4xMSwxLjE5djAuMDRjLTAuMDEsMC42NS0wLjUsMS4xOC0xLjExLDEuMThTMzguNjIsMTAuNjgsMzguNjIsMTAuMDJ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTQ5LjkxLDYuMDRjLTAuOTgsMC0xLjkzLDAuNC0yLjYsMS4xMlY2LjQ1YzAtMC4xMi0wLjEtMC4yMi0wLjIyLTAuMjJoLTEuMzNjLTAuMTIsMC0wLjIyLDAuMS0wLjIyLDAuMjJ2MTAuMjFjMCwwLjEyLDAuMSwwLjIyLDAuMjIsMC4yMmgxLjMzYzAuMTIsMCwwLjIyLTAuMSwwLjIyLTAuMjJ2LTMuNzhjMC42OCwwLjcxLDEuNjIsMS4xMiwyLjYxLDEuMTJjMi4wNywwLDMuNzUtMS43OCwzLjc1LTMuOTlTNTEuOTgsNi4wNCw0OS45MSw2LjA0eiBNNDkuNiwxMi40MmMtMS4yNiwwLTIuMjgtMS4wNi0yLjMtMi4zNlY5Ljk5YzAuMDItMS4zMSwxLjA0LTIuMzcsMi4yOS0yLjM3YzEuMjYsMCwyLjMsMS4wNywyLjMsMi4zOVM1MC44NiwxMi40MSw0OS42LDEyLjQyTDQ5LjYsMTIuNDJ6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTQ5LjYsNy42M2MtMS4yNiwwLTIuMjgsMS4wNi0yLjMsMi4zNnYwLjA2YzAuMDIsMS4zMSwxLjA0LDIuMzYsMi4zLDIuMzZzMi4zLTEuMDcsMi4zLTIuMzlTNTAuODYsNy42Myw0OS42LDcuNjN6IE00OS42LDExLjIzYy0wLjYsMC0xLjA5LTAuNTMtMS4xMS0xLjE5VjEwQzQ4LjUsOS4zNCw0OSw4LjgxLDQ5LjYsOC44MWMwLjYsMCwxLjExLDAuNTUsMS4xMSwxLjIxUzUwLjIxLDExLjIzLDQ5LjYsMTEuMjN6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTM0LjM2LDEzLjU5YzAsMC4xMi0wLjEsMC4yMi0wLjIyLDAuMjJoLTEuMzRjLTAuMTIsMC0wLjIyLTAuMS0wLjIyLTAuMjJWOS4yNGMwLTAuOTMtMC43LTEuNjMtMS41NC0xLjYzYy0wLjc2LDAtMS4zOSwwLjY3LTEuNTEsMS41NGwwLjAxLDQuNDRjMCwwLjEyLTAuMSwwLjIyLTAuMjIsMC4yMmgtMS4zNGMtMC4xMiwwLTAuMjItMC4xLTAuMjItMC4yMlY5LjI0YzAtMC45My0wLjctMS42My0xLjU0LTEuNjNjLTAuODEsMC0xLjQ3LDAuNzUtMS41MiwxLjcxdjQuMjdjMCwwLjEyLTAuMSwwLjIyLTAuMjIsMC4yMmgtMS4zM2MtMC4xMiwwLTAuMjItMC4xLTAuMjItMC4yMlY2LjQ0YzAuMDEtMC4xMiwwLjEtMC4yMSwwLjIyLTAuMjFoMS4zM2MwLjEyLDAsMC4yMSwwLjEsMC4yMiwwLjIxdjAuNjNjMC40OC0wLjY1LDEuMjQtMS4wNCwyLjA2LTEuMDVoMC4wM2MxLjA0LDAsMS45OSwwLjU3LDIuNDgsMS40OGMwLjQzLTAuOSwxLjMzLTEuNDgsMi4zMi0xLjQ5YzEuNTQsMCwyLjc5LDEuMTksMi43NiwyLjY1TDM0LjM2LDEzLjU5eiIvPjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik04MC4zMiwxMi45N2wtMC4wNy0wLjEyTDc4LjM4LDEwbDEuODUtMi44MWMwLjQyLTAuNjQsMC4yNS0xLjQ5LTAuMzktMS45MmMtMC4wMS0wLjAxLTAuMDItMC4wMS0wLjAzLTAuMDJjLTAuMjItMC4xNC0wLjQ4LTAuMjEtMC43NC0wLjIxaC0xLjUzYy0wLjUzLDAtMS4wMywwLjI4LTEuMywwLjc0bC0wLjMyLDAuNTNsLTAuMzItMC41M2MtMC4yOC0wLjQ2LTAuNzctMC43NC0xLjMxLTAuNzRoLTEuNTNjLTAuNTcsMC0xLjA4LDAuMzUtMS4yOSwwLjg4Yy0yLjA5LTEuNTgtNS4wMy0xLjQtNi45MSwwLjQzYy0wLjMzLDAuMzItMC42MiwwLjY5LTAuODUsMS4wOWMtMC44NS0xLjU1LTIuNDUtMi42LTQuMjgtMi42Yy0wLjQ4LDAtMC45NiwwLjA3LTEuNDEsMC4yMlYzLjM3YzAtMC43OC0wLjYzLTEuNDEtMS40LTEuNDFoLTEuMzNjLTAuNzcsMC0xLjQsMC42My0xLjQsMS40djMuNTdjLTAuOS0xLjMtMi4zOC0yLjA4LTMuOTctMi4wOWMtMC43LDAtMS4zOSwwLjE1LTIuMDIsMC40NWMtMC4yMy0wLjE2LTAuNTEtMC4yNS0wLjgtMC4yNWgtMS4zM2MtMC40MywwLTAuODMsMC4yLTEuMSwwLjUzYy0wLjAyLTAuMDMtMC4wNC0wLjA1LTAuMDctMC4wOGMtMC4yNy0wLjI5LTAuNjUtMC40NS0xLjA0LTAuNDVoLTEuMzJjLTAuMjksMC0wLjU3LDAuMDktMC44LDAuMjVDNDAuOCw1LDQwLjEyLDQuODUsMzkuNDIsNC44NWMtMS43NCwwLTMuMjcsMC45NS00LjE2LDIuMzhjLTAuMTktMC40NC0wLjQ2LTAuODUtMC43OS0xLjE5Yy0wLjc2LTAuNzctMS44LTEuMTktMi44OC0xLjE5aC0wLjAxYy0wLjg1LDAuMDEtMS42NywwLjMxLTIuMzQsMC44NGMtMC43LTAuNTQtMS41Ni0wLjg0LTIuNDUtMC44NGgtMC4wM2MtMC4yOCwwLTAuNTUsMC4wMy0wLjgyLDAuMWMtMC4yNywwLjA2LTAuNTMsMC4xNS0wLjc4LDAuMjdjLTAuMi0wLjExLTAuNDMtMC4xNy0wLjY3LTAuMTdoLTEuMzNjLTAuNzgsMC0xLjQsMC42My0xLjQsMS40djcuMTRjMCwwLjc4LDAuNjMsMS40LDEuNCwxLjRoMS4zM2MwLjc4LDAsMS40MS0wLjYzLDEuNDEtMS40MWMwLDAsMCwwLDAsMFY5LjM1YzAuMDMtMC4zNCwwLjIyLTAuNTYsMC4zNC0wLjU2YzAuMTcsMCwwLjM2LDAuMTcsMC4zNiwwLjQ1djQuMzVjMCwwLjc4LDAuNjMsMS40LDEuNCwxLjRoMS4zNGMwLjc4LDAsMS40LTAuNjMsMS40LTEuNGwtMC4wMS00LjM1YzAuMDYtMC4zLDAuMjQtMC40NSwwLjMzLTAuNDVjMC4xNywwLDAuMzYsMC4xNywwLjM2LDAuNDV2NC4zNWMwLDAuNzgsMC42MywxLjQsMS40LDEuNGgxLjM0YzAuNzgsMCwxLjQtMC42MywxLjQtMS40di0wLjM2YzAuOTEsMS4yMywyLjM0LDEuOTYsMy44NywxLjk2YzAuNywwLDEuMzktMC4xNSwyLjAyLTAuNDVjMC4yMywwLjE2LDAuNTEsMC4yNSwwLjgsMC4yNWgxLjMyYzAuMjksMCwwLjU3LTAuMDksMC44LTAuMjV2MS45MWMwLDAuNzgsMC42MywxLjQsMS40LDEuNGgxLjMzYzAuNzgsMCwxLjQtMC42MywxLjQtMS40di0xLjY5YzAuNDYsMC4xNCwwLjk0LDAuMjIsMS40MiwwLjIxYzEuNjIsMCwzLjA3LTAuODMsMy45Ny0yLjF2MC41YzAsMC43OCwwLjYzLDEuNCwxLjQsMS40aDEuMzNjMC4yOSwwLDAuNTctMC4wOSwwLjgtMC4yNWMwLjYzLDAuMywxLjMyLDAuNDUsMi4wMiwwLjQ1YzEuODMsMCwzLjQzLTEuMDUsNC4yOC0yLjZjMS40NywyLjUyLDQuNzEsMy4zNiw3LjIyLDEuODljMC4xNy0wLjEsMC4zNC0wLjIxLDAuNS0wLjM0YzAuMjEsMC41MiwwLjcyLDAuODcsMS4yOSwwLjg2aDEuNTNjMC41MywwLDEuMDMtMC4yOCwxLjMtMC43NGwwLjM1LTAuNThsMC4zNSwwLjU4YzAuMjgsMC40NiwwLjc3LDAuNzQsMS4zMSwwLjc0aDEuNTJjMC43NywwLDEuMzktMC42MywxLjM4LTEuMzlDODAuNDcsMTMuMzgsODAuNDIsMTMuMTcsODAuMzIsMTIuOTdMODAuMzIsMTIuOTd6IE0zNC4xNSwxMy44MWgtMS4zNGMtMC4xMiwwLTAuMjItMC4xLTAuMjItMC4yMlY5LjI0YzAtMC45My0wLjctMS42My0xLjU0LTEuNjNjLTAuNzYsMC0xLjM5LDAuNjctMS41MSwxLjU0bDAuMDEsNC40NGMwLDAuMTItMC4xLDAuMjItMC4yMiwwLjIyaC0xLjM0Yy0wLjEyLDAtMC4yMi0wLjEtMC4yMi0wLjIyVjkuMjRjMC0wLjkzLTAuNy0xLjYzLTEuNTQtMS42M2MtMC44MSwwLTEuNDcsMC43NS0xLjUyLDEuNzF2NC4yN2MwLDAuMTItMC4xLDAuMjItMC4yMiwwLjIyaC0xLjMzYy0wLjEyLDAtMC4yMi0wLjEtMC4yMi0wLjIyVjYuNDRjMC4wMS0wLjEyLDAuMS0wLjIxLDAuMjItMC4yMWgxLjMzYzAuMTIsMCwwLjIxLDAuMSwwLjIyLDAuMjF2MC42M2MwLjQ4LTAuNjUsMS4yNC0xLjA0LDIuMDYtMS4wNWgwLjAzYzEuMDQsMCwxLjk5LDAuNTcsMi40OCwxLjQ4YzAuNDMtMC45LDEuMzMtMS40OCwyLjMyLTEuNDljMS41NCwwLDIuNzksMS4xOSwyLjc2LDIuNjVsMC4wMSw0LjkxQzM0LjM3LDEzLjcsMzQuMjcsMTMuOCwzNC4xNSwxMy44MUMzNC4xNSwxMy44MSwzNC4xNSwxMy44MSwzNC4xNSwxMy44MXogTTQzLjc4LDEzLjU5YzAsMC4xMi0wLjEsMC4yMi0wLjIyLDAuMjJoLTEuMzNjLTAuMTIsMC0wLjIyLTAuMS0wLjIyLTAuMjJ2LTAuNzFDNDEuMzQsMTMuNiw0MC40LDE0LDM5LjQyLDE0Yy0yLjA3LDAtMy43NS0xLjc4LTMuNzUtMy45OXMxLjY5LTMuOTksMy43NS0zLjk5YzAuOTgsMCwxLjkyLDAuNDEsMi42LDEuMTJ2LTAuN2MwLTAuMTIsMC4xLTAuMjIsMC4yMi0wLjIyaDEuMzNjMC4xMS0wLjAxLDAuMjEsMC4wOCwwLjIyLDAuMmMwLDAuMDEsMCwwLjAxLDAsMC4wMlYxMy41OXogTTQ5LjkxLDE0Yy0wLjk4LDAtMS45Mi0wLjQxLTIuNi0xLjEydjMuNzhjMCwwLjEyLTAuMSwwLjIyLTAuMjIsMC4yMmgtMS4zM2MtMC4xMiwwLTAuMjItMC4xLTAuMjItMC4yMlY2LjQ1YzAtMC4xMiwwLjEtMC4yMSwwLjIyLTAuMjFoMS4zM2MwLjEyLDAsMC4yMiwwLjEsMC4yMiwwLjIydjAuN2MwLjY4LTAuNzIsMS42Mi0xLjEyLDIuNi0xLjEyYzIuMDcsMCwzLjc1LDEuNzcsMy43NSwzLjk4UzUxLjk4LDE0LDQ5LjkxLDE0eiBNNjMuMDksMTAuODdDNjIuNzIsMTIuNjUsNjEuMjIsMTQsNTkuNDMsMTRjLTAuOTgsMC0xLjkyLTAuNDEtMi42LTEuMTJ2MC43YzAsMC4xMi0wLjEsMC4yMi0wLjIyLDAuMjJoLTEuMzNjLTAuMTIsMC0wLjIyLTAuMS0wLjIyLTAuMjJWMy4zN2MwLTAuMTIsMC4xLTAuMjIsMC4yMi0wLjIyaDEuMzNjMC4xMiwwLDAuMjIsMC4xLDAuMjIsMC4yMnYzLjc4YzAuNjgtMC43MSwxLjYyLTEuMTIsMi42LTEuMTFjMS43OSwwLDMuMjksMS4zMywzLjY2LDMuMTJDNjMuMjEsOS43Myw2My4yMSwxMC4zMSw2My4wOSwxMC44N0w2My4wOSwxMC44N0w2My4wOSwxMC44N3ogTTY4LjI2LDE0LjAxYy0xLjksMC4wMS0zLjU1LTEuMjktMy45Ny0zLjE0Yy0wLjEyLTAuNTYtMC4xMi0xLjEzLDAtMS42OWMwLjQyLTEuODUsMi4wNy0zLjE1LDMuOTctMy4xNGMyLjI1LDAsNC4wNiwxLjc4LDQuMDYsMy45OVM3MC41LDE0LjAxLDY4LjI2LDE0LjAxTDY4LjI2LDE0LjAxeiBNNzkuMDksMTMuODFoLTEuNTNjLTAuMTIsMC0wLjIzLTAuMDYtMC4yOS0wLjE2bC0xLjM3LTIuMjhsLTEuMzcsMi4yOGMtMC4wNiwwLjEtMC4xNywwLjE2LTAuMjksMC4xNmgtMS41M2MtMC4wNCwwLTAuMDgtMC4wMS0wLjExLTAuMDNjLTAuMDktMC4wNi0wLjEyLTAuMTgtMC4wNi0wLjI3YzAsMCwwLDAsMCwwbDIuMzEtMy41bC0yLjI4LTMuNDdjLTAuMDItMC4wMy0wLjAzLTAuMDctMC4wMy0wLjExYzAtMC4xMSwwLjA5LTAuMiwwLjItMC4yaDEuNTNjMC4xMiwwLDAuMjMsMC4wNiwwLjI5LDAuMTZsMS4zNCwyLjI1bDEuMzQtMi4yNWMwLjA2LTAuMSwwLjE3LTAuMTYsMC4yOS0wLjE2aDEuNTNjMC4wNCwwLDAuMDgsMC4wMSwwLjExLDAuMDNjMC4wOSwwLjA2LDAuMTIsMC4xOCwwLjA2LDAuMjdjMCwwLDAsMCwwLDBMNzYuOTYsMTBsMi4zMSwzLjVjMC4wMiwwLjAzLDAuMDMsMC4wNywwLjAzLDAuMTFDNzkuMjksMTMuNzIsNzkuMiwxMy44MSw3OS4wOSwxMy44MUM3OS4wOSwxMy44MSw3OS4wOSwxMy44MSw3OS4wOSwxMy44MUw3OS4wOSwxMy44MXoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTAsMS4yMWMtNC44NywwLTguODEsMy45NS04LjgxLDguODFzMy45NSw4LjgxLDguODEsOC44MXM4LjgxLTMuOTUsOC44MS04LjgxQzE4LjgxLDUuMTUsMTQuODcsMS4yMSwxMCwxLjIxeiBNMTQuMTgsMTIuMTljLTEuODQsMS44NC00LjU1LDIuMi02LjM4LDIuMmMtMC42NywwLTEuMzQtMC4wNS0yLTAuMTVjMCwwLTAuOTctNS4zNywyLjA0LTguMzljMC43OS0wLjc5LDEuODYtMS4yMiwyLjk4LTEuMjJjMS4yMSwwLDIuMzcsMC40OSwzLjIzLDEuMzVDMTUuOCw3LjczLDE1Ljg1LDEwLjUsMTQuMTgsMTIuMTl6Ii8+PHBhdGggY2xhc3M9InN0MSIgZD0iTTEwLDAuMDJjLTUuNTIsMC0xMCw0LjQ4LTEwLDEwczQuNDgsMTAsMTAsMTBzMTAtNC40OCwxMC0xMEMxOS45OSw0LjUsMTUuNTIsMC4wMiwxMCwwLjAyeiBNMTAsMTguODNjLTQuODcsMC04LjgxLTMuOTUtOC44MS04LjgxUzUuMTMsMS4yLDEwLDEuMnM4LjgxLDMuOTUsOC44MSw4LjgxQzE4LjgxLDE0Ljg5LDE0Ljg3LDE4LjgzLDEwLDE4LjgzeiIvPjxwYXRoIGNsYXNzPSJzdDEiIGQ9Ik0xNC4wNCw1Ljk4Yy0xLjc1LTEuNzUtNC41My0xLjgxLTYuMi0wLjE0QzQuODMsOC44Niw1LjgsMTQuMjMsNS44LDE0LjIzczUuMzcsMC45Nyw4LjM5LTIuMDRDMTUuODUsMTAuNSwxNS44LDcuNzMsMTQuMDQsNS45OHogTTExLjg4LDkuODdsLTAuODcsMS43OGwtMC44Ni0xLjc4TDguMzgsOS4wMWwxLjc3LTAuODZsMC44Ni0xLjc4bDAuODcsMS43OGwxLjc3LDAuODZMMTEuODgsOS44N3oiLz48cG9seWdvbiBjbGFzcz0ic3QwIiBwb2ludHM9IjEzLjY1LDkuMDEgMTEuODgsOS44NyAxMS4wMSwxMS42NSAxMC4xNSw5Ljg3IDguMzgsOS4wMSAxMC4xNSw4LjE1IDExLjAxLDYuMzcgMTEuODgsOC4xNSAiLz48L2c+PC9zdmc+);background-repeat:no-repeat;background-position:0 0;background-size:65px 20px}#pulseos #pulse-xlogo-container{position:absolute;left:0;bottom:25px;z-index:700;margin-left:10px;margin-bottom:10px}#pulseos #pulse-xlogo-container .pulse-logo{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}@media (max-width:767px){#pulseos #pulse-xlogo-container{display:none}}#pulseos .dim{color:#808080}#pulseos #pulse-dock{display:block;visibility:hidden;position:absolute;height:100%;top:100%;padding:0;pointer-events:none;width:100%;z-index:2010}#pulseos #pulse-dock .toolbar{z-index:1001;float:right;background-color:none;pointer-events:auto;position:relative;width:80px;height:25px;margin:0;box-sizing:border-box;padding:0}#pulseos #pulse-dock .toolbar span{margin:17px 6px 10px 6px !important}#pulseos #pulse-dock .dc-chart .axis text{font-size:12px}#pulseos #pulse-dock .metric .dc-chart .axis text{font-size:11px}#pulseos #pulse-dock .pulse-content{position:relative;width:100%;height:100%;margin:0;box-sizing:border-box;padding:0}#pulseos #pulse-dock .pulse-content .dim{text-align:center;color:#808080}#pulseos #pulse-dock .pulse-content a .dim:hover{color:#39b2c6}#pulseos #pulse-dock .pulse-content .risk-chart{padding-bottom:10px}#pulseos #pulse-dock .pulse-close-detail{float:right;margin-top:-15px;margin-right:5px}#pulseos #pulse-dock .pulse-close-detail a:hover{color:#39b2c6 !important}#pulseos #pulse-dock .dock-handle{display:block;position:relative;background:#191c21;background:-webkit-linear-gradient(#2c2c2c, #1a1a1a);background:-o-linear-gradient(#2c2c2c, #1a1a1a);background:-moz-linear-gradient(#2c2c2c, #1a1a1a);background:linear-gradient(#2c2c2c, #1a1a1a);pointer-events:auto;-webkit-box-shadow:-1px 6px 2px -3px #000;-moz-box-shadow:-1px 6px 2px -3px #000;box-shadow:-1px 6px 2px -3px #000;height:25px;width:100%}#pulseos #pulse-dock .dock-handle:before,#pulseos #pulse-dock .dock-handle:after{display:table;content:" "}#pulseos #pulse-dock .dock-handle:after{clear:both}@media (max-width:991px){#pulseos #pulse-dock .dock-handle{height:35px;top:0px}}@media (max-width:767px){#pulseos #pulse-dock .dock-handle{height:35px}}#pulseos #pulse-dock .dock-handle img{display:block;margin:5px 0 0 690px;height:12px;width:25px}@media (max-width:991px){#pulseos #pulse-dock .dock-handle img{margin-left:auto;margin-right:auto}}#pulseos #pulse-dock .dock-handle:hover{cursor:row-resize}#pulseos #pulse-dock.open{visibility:visible}#pulseos #pulse-dock.open.no3d{top:50%}#pulseos #pulse-dock.open.min #pulse-dock-detail{top:-80%}@media (max-width:991px){#pulseos #pulse-dock.open.min #pulse-dock-detail{top:90%;display:none}}#pulseos #pulse-dock.open.min #pulse-dock-info{top:75%;height:100%}@media (max-width:991px){#pulseos #pulse-dock.open.min #pulse-dock-info{top:93%}}@media (max-width:767px){#pulseos #pulse-dock.open.min #pulse-dock-info{top:90%}}#pulseos .dropdown-menu .disabled span.glyphicon{color:#808080 !important}#pulseos .dropdown-menu .disabled a{color:#747474 !important}#pulseos .detail-close #pulse-dock-detail{display:none !important}#pulseos .detail-close #pulse-dock-info .pulse-content{padding:10px 25px !important;left:0% !important;right:0% !important}#pulseos .detail-close .dock-handle img{margin:5px auto !important}#pulseos .pulse-content .detail-info{font-size:12px}#pulseos .pulse-content .detail-info .dropdown-menu{background:transparent !important;border:none !important;box-shadow:none !important}#pulseos .asset-group-layers,#pulseos .asset-layer-options{margin:5px 0 5px 0 !important;font-size:12px}#pulseos .filter-tree{margin:8px;height:auto !important}#pulseos #asset-group-tree li.node-selected{background-color:#2d8fa5}#pulseos #asset-group-tree li,#pulseos #asset-supplier-tree li,#pulseos #incident-severity-tree li,#pulseos #incident-category-tree li,#pulseos #asset-country-tree li,#pulseos .filter-tree li{border-radius:0;border:1px solid #20242d;background-color:#191c21;font-size:11px}#pulseos #asset-group-tree li:hover,#pulseos #asset-supplier-tree li:hover,#pulseos #incident-severity-tree li:hover,#pulseos #incident-category-tree li:hover,#pulseos #asset-country-tree li:hover,#pulseos .filter-tree li:hover{background-color:#313744}#pulseos #asset-group-tree li.node-hidden,#pulseos #asset-supplier-tree li.node-hidden,#pulseos #incident-severity-tree li.node-hidden,#pulseos #incident-category-tree li.node-hidden,#pulseos #asset-country-tree li.node-hidden,#pulseos .filter-tree li.node-hidden{display:none}#pulseos #asset-group-tree li.search-result,#pulseos #asset-supplier-tree li.search-result,#pulseos #incident-severity-tree li.search-result,#pulseos #incident-category-tree li.search-result,#pulseos #asset-country-tree li.search-result,#pulseos .filter-tree li.search-result,#pulseos #asset-group-tree li.node-result,#pulseos #asset-supplier-tree li.node-result,#pulseos #incident-severity-tree li.node-result,#pulseos #incident-category-tree li.node-result,#pulseos #asset-country-tree li.node-result,#pulseos .filter-tree li.node-result{background-color:#20242d;color:#FFFFFF}#pulseos .node-disabled{color:silver !important;cursor:not-allowed !important}#pulseos .filter-tree ul{margin-bottom:0}#pulseos .filter-tree ul li.list-group-item{background-color:#191a1b;border:none;font-size:14px;padding-left:0}#pulseos .filter-tree ul li.list-group-item span.check-icon{position:absolute;right:0;top:11px}#pulseos #incident-category-tree .icon{filter:invert(1)}#pulseos #incident-severity-tree .icon,#pulseos #incident-category-tree .icon{padding-right:8px}#pulseos #incident-severity-tree .icon img,#pulseos #incident-category-tree .icon img{width:16px}#pulseos .list-heading{display:block;margin-bottom:10px}#pulseos .list-heading:before,#pulseos .list-heading:after{display:table;content:" "}#pulseos .list-heading:after{clear:both}#pulseos .list-heading .dropdown-menu{min-width:0}#pulseos .list-heading h5{display:inline-block;margin-top:7px}#pulseos .list-heading div.pull-left{margin-right:15px}#pulseos .list-heading span.search:before{box-sizing:content-box !important}#pulseos .list-heading .backgrid-filter input{padding:2px 0 0 25px}#pulseos .list-heading #reset-network:hover,#pulseos .list-heading .my-network:hover{cursor:pointer;color:#39b2c6}#pulseos .list-heading .asset-breadcrumb,#pulseos .list-heading .lanes-breadcrumb{display:inline-block;list-style:none;padding-left:0;margin-right:10px;font-size:12px}#pulseos .list-heading .asset-breadcrumb li,#pulseos .list-heading .lanes-breadcrumb li{display:inline-block}#pulseos .list-heading .asset-breadcrumb li a,#pulseos .list-heading .lanes-breadcrumb li a{margin-right:4px}#pulseos .list-heading .asset-breadcrumb li:after,#pulseos .list-heading .lanes-breadcrumb li:after{content:">>"}#pulseos .list-heading .asset-breadcrumb li:last-child:after,#pulseos .list-heading .lanes-breadcrumb li:last-child:after{content:""}#pulseos .list-heading .asset-add-group span.glyphicon,#pulseos .list-heading .rule-add span.glyphicon{margin-right:3px}#pulseos .list-heading .asset-add-group span.glyphicon-plus,#pulseos .list-heading .rule-add span.glyphicon-plus{font-size:12px}#pulseos .list-heading .download-lane-risk-report,#pulseos .list-heading .change-status{margin-left:10px !important;border-top-left-radius:3px !important;border-bottom-left-radius:3px !important}#pulseos .list-heading .notify{margin-top:3px}#pulseos .list-heading .notify span.glyphicon{margin:3px 5px 0 0}#pulseos .list-heading .refresh-list span{margin:1px 6px !important;padding-top:6px}#pulseos .list-heading .contact,#pulseos .list-heading .announcement-range{margin-top:8px}#pulseos .list-heading .contact small,#pulseos .list-heading .announcement-range small{color:#808080}#pulseos .list-heading .btn-group{margin:0 5px 0 10px}#pulseos .list-heading .lane-crud{margin-left:0px}#pulseos .list-heading .lane-crud .glyphicon-plus{margin-right:3px}#pulseos .list-heading .asset-groups{margin-left:0px}#pulseos .list-heading .asset-groups .glyphicon-plus{margin-right:3px}#pulseos .list-heading .asset-groups .admin-primary-button{display:inline-block;margin-left:10px}#pulseos .list-heading .asset-groups .standard-primary-button{display:inline-block;margin-left:0px}#pulseos .list-heading .notifications{font-size:12px;color:#808080}#pulseos .list-heading .backgrid-filter{display:block;float:right;width:300px}#pulseos .list-heading .backgrid-filter input[type="search"]{height:30px;width:300px}#pulseos .list-breadcrumb{font-size:12px;margin-bottom:25px}#pulseos .shipment-list-view .backgrid-filter{float:right;margin:0 20px 0 0;width:300px}#pulseos .shipment-list-view .backgrid-filter input[type="search"]{height:30px;width:300px}#pulseos .shipment-create .status{display:none}#pulseos .shipment-create.waiting form{display:none}#pulseos .shipment-create.waiting .status{display:block}#pulseos .progress{background-color:#444}#pulseos .asset-detail,#pulseos .lane-detail{color:#d5d5d5}#pulseos .asset-detail .pulse-list,#pulseos .lane-detail .pulse-list{margin:20px auto}#pulseos .asset-detail textarea,#pulseos .lane-detail textarea{display:block;background-color:transparent;border:none;color:#d5d5d5;max-height:250px;width:100%}#pulseos .asset-detail h5,#pulseos .lane-detail h5{font-weight:bold;color:#eeeeee}#pulseos .asset-detail .address,#pulseos .lane-detail .address{margin-top:20px}#pulseos .asset-detail .alt-ids span,#pulseos .lane-detail .alt-ids span{display:flex;white-space:break-spaces}#pulseos .asset-detail .alt-ids span p.alt-id-key,#pulseos .lane-detail .alt-ids span p.alt-id-key{color:#808080}#pulseos #pulse-asset-video{width:75%;height:400px;margin-left:20px}#pulseos #pulse-video-sidebar{float:left;overflow:hidden;width:170px;margin-right:-25px;margin-left:77%;height:2000px;background-color:#1a1a1a}@media (max-width:1230px){#pulseos #pulse-video-sidebar{width:130px}}#pulseos #pulse-video-sidebar-content{overflow:hidden;height:395px}#pulseos #pulse-play-bar{float:right;width:40px;position:absolute;height:67px;margin-top:10px;background-color:#2c2c2c}#pulseos #pulse-video-dots{text-align:center;margin-bottom:-5px}#pulseos .pulse-video-dot{height:10px;width:10px;margin-left:1px;margin-right:1px;margin:0 auto}#pulseos .pulse-dot-on{margin-left:5px;display:inline-block;background-image:url('../img/dot-on.png')}#pulseos .pulse-dot-off{margin-left:5px;display:inline-block;background-image:url('../img/dot-off.png')}#pulseos #pulse-video-selector{height:21px;width:120px;margin-top:395px;position:absolute;margin-left:40px;text-align:center;background-color:#424242}@media (max-width:1230px){#pulseos #pulse-video-selector{width:100px}}#pulseos .pulse-play-icon{margin-top:-50px;margin-left:10px;height:20px;width:20px;background-image:url('../img/icon_play.png')}#pulseos .pulse-play-video{background-color:#2c2c2c}#pulseos .pulse-thumbnail-container{height:80px;margin:10px auto;max-width:170px;margin-bottom:-5px}#pulseos .pulse-thumbnail-bg{width:120px;height:67px;display:inline-block;margin-top:5px;margin-left:40px}#pulseos .pulse-thumbnail{background-color:#000;color:#fff;height:23px;width:116px;float:left;margin-left:2px;overflow:hidden;margin-top:42px}#pulseos #pulse-dock-detail{display:block;position:absolute;height:100%;width:600px;margin-left:40px;top:0;z-index:950}@media (min-width:991px) and (max-width:1152px){#pulseos #pulse-dock-detail{width:425px}}@media (max-width:991px){#pulseos #pulse-dock-detail{width:100%;margin-left:0px}}#pulseos #pulse-dock-detail .summary-label{text-transform:uppercase;color:#808080}#pulseos #pulse-dock-detail .pulse-content{background-color:#191c21;background-color:rgba(25,26,27,0.85);border-top-left-radius:4px;border-top-right-radius:4px;border-top:1px solid #20242d;border-left:1px solid #20242d;border-right:1px solid #20242d;box-sizing:border-box;padding:15px 0px 0px 15px;pointer-events:auto;overflow:hidden}@media (max-width:991px){#pulseos #pulse-dock-detail .pulse-content{border-top-left-radius:0;border-top-right-radius:0;top:0px}}#pulseos #pulse-dock-detail .pulse-content .pulse-visual{width:175px;height:150px}#pulseos #pulse-dock-detail .pulse-content .pulse-visual img{width:100%;height:100%}#pulseos #pulse-dock-detail .pulse-content .header{display:block;position:relative;min-height:150px;width:100%;margin-bottom:10px;text-align:left}#pulseos #pulse-dock-detail .pulse-content .header .scorecard h3.title:hover{cursor:pointer;color:#39b2c6 !important}#pulseos #pulse-dock-detail .pulse-content .header .scorecard .green{color:#9ccb4b;font-size:16px}#pulseos #pulse-dock-detail .pulse-content .header .scorecard .red{color:#e31e25;font-size:16px}#pulseos #pulse-dock-detail .pulse-content .header .scorecard .pad-left{padding-left:3px}#pulseos #pulse-dock-detail .pulse-content .header p.status{margin-bottom:0px;font-size:10px;color:#fff}#pulseos #pulse-dock-detail .pulse-content .header h2.status{color:#fff;margin:10px 0px 10px 0px}#pulseos #pulse-dock-detail .pulse-content .header p.sub{color:#808080;font-size:12px;margin-top:-5px}#pulseos #pulse-dock-detail .pulse-content .header div.industry-tags{display:flex}#pulseos #pulse-dock-detail .pulse-content .header div.industry-tags p{padding:0 8px;margin:0 6px;background:grey;border-radius:12px;font-size:11px;height:fit-content}#pulseos #pulse-dock-detail .pulse-content .header .table-grid{display:grid;grid-template-columns:repeat(4, 1fr);grid-row-gap:10px;grid-column-gap:10px;text-align:center;margin:10px 0px 10px 0px}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column{display:flex;flex-direction:column;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-left-radius:4px;border-bottom-right-radius:4px}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .item-header{padding-top:10px;font-size:11px !important}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .itemdetail-header{padding-top:10px;font-size:12px !important}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .item-content{font:28px 'leaguegothic-regular';color:#eeeeee;font-weight:600}@media (max-width:767px){#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .item-content{font-size:22px}}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .itemdetail-content{font-weight:600;font:20px 'leaguegothic-regular';color:#eeeeee}@media (max-width:767px){#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .itemdetail-content{font-size:15px}}#pulseos #pulse-dock-detail .pulse-content .header .table-grid .grid-column .foot{font-size:12px}#pulseos #pulse-dock-detail .pulse-content .header table.summary{width:100%;text-align:center;margin-top:10px}#pulseos #pulse-dock-detail .pulse-content .header table.summary th,#pulseos #pulse-dock-detail .pulse-content .header table.summary tfoot td{text-align:center !important;font-size:12px}#pulseos #pulse-dock-detail .pulse-content .header table.summary td,#pulseos #pulse-dock-detail .pulse-content .header table.summary th{max-width:125px !important}#pulseos #pulse-dock-detail .pulse-content .header table.summary tr.data td{font:30px 'leaguegothic-regular';color:#eeeeee}@media (max-width:767px){#pulseos #pulse-dock-detail .pulse-content .header table.summary tr.data td{font-size:22px}}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices{flex-direction:column;padding:0}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices div{display:flex;place-content:center;height:20px;align-items:center;margin-left:5px;margin-right:5px;padding:4px}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices div p{padding:2px;margin:0}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices div p.risk-header{font-size:11px}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices .sm-value{font:15px 'leaguegothic-regular'}#pulseos #pulse-dock-detail .pulse-content .header table.summary .indices div:first-child{margin-bottom:3px}#pulseos #pulse-dock-detail .pulse-content .header table.summary td.space{width:143px}#pulseos #pulse-dock-detail .pulse-content .header table.summary td.proactive-risk{width:86px}#pulseos #pulse-dock-detail .pulse-content .status-header{display:flex;flex-direction:row;justify-content:space-between;font-size:12px;margin:0px 15px 0px 0px}#pulseos #pulse-dock-detail .pulse-content .status-header .status-icon{border:1px solid #39b2c6;border-radius:.5vw;padding:0px 12px 0px 12px}#pulseos #pulse-dock-detail .pulse-content .status-header .row span{color:#808080}#pulseos #pulse-dock-detail .pulse-content .body{display:block;position:relative;width:100%;margin-top:5px}#pulseos #pulse-dock-detail .pulse-content .body:before,#pulseos #pulse-dock-detail .pulse-content .body:after{display:table;content:" "}#pulseos #pulse-dock-detail .pulse-content .body:after{clear:both}#pulseos #pulse-dock-detail .pulse-content .sidebar{position:relative;float:left;height:100%;width:175px;box-sizing:border-box}#pulseos #pulse-dock-detail .pulse-content .sidebar button{width:100%;margin:5px 0}#pulseos #pulse-dock-detail .pulse-content .sidebar .btn-group button{width:145px;margin:0}#pulseos #pulse-dock-detail .pulse-content .sidebar .btn-group button.dropdown-toggle{width:30px}#pulseos #pulse-dock-detail .pulse-content .sidebar .contact-price{color:#808080;font-size:12px;margin-left:7px}@media (min-width:991px) and (max-width:1152px){#pulseos #pulse-dock-detail .pulse-content .sidebar{display:none}}#pulseos #pulse-dock-detail .pulse-content .earthquakes-faq{margin-top:20px}#pulseos #pulse-dock-detail .pulse-content .earthquakes-faq .question{color:gray}#pulseos #pulse-dock-detail .pulse-content .earthquakes-faq .answer{color:white}#pulseos #pulse-dock-detail .pulse-content .wildfires-faq{margin-top:20px}#pulseos #pulse-dock-detail .pulse-content .wildfires-faq .question{color:gray}#pulseos #pulse-dock-detail .pulse-content .wildfires-faq .answer{color:white}#pulseos #pulse-dock-detail .pulse-content .cyclone-faq{margin-top:20px}#pulseos #pulse-dock-detail .pulse-content .cyclone-faq .question{color:gray}#pulseos #pulse-dock-detail .pulse-content .cyclone-faq .answer{color:white}#pulseos #pulse-dock-detail .pulse-content .info{position:relative;float:left;height:100%;overflow:hidden;width:390px;box-sizing:border-box;padding:0 0 0 15px}@media (min-width:1152px){#pulseos #pulse-dock-detail .pulse-content .info #timestep-small-window.visible-md{display:none !important}}@media (max-width:991px){#pulseos #pulse-dock-detail .pulse-content .info{float:none;padding:0 15px 0 0;margin:0 auto 20px auto;word-wrap:break-word;width:100%}}#pulseos #pulse-dock-detail .pulse-content .info p.status{color:#39b2c6 !important}#pulseos #pulse-dock-detail .pulse-content .info table{width:100%}#pulseos .highcharts-container{margin:0 auto;width:100%}#pulseos .highcharts-data-table table{font-family:Verdana,sans-serif;border-collapse:collapse;border:1px solid #EBEBEB;margin:10px auto;text-align:center;width:100%;max-width:700px}#pulseos .highcharts-figure,#pulseos .highcharts-data-table table{min-width:320px;max-width:100%;margin:0;display:flex;flex-direction:row}#pulseos .highcharts-figure .highcharts-tooltip span,#pulseos .highcharts-data-table table .highcharts-tooltip span{width:250px}@media (max-width:1375px){#pulseos .highcharts-figure,#pulseos .highcharts-data-table table{flex-direction:column}}#pulseos div.proactive-risk-chart{width:50%}#pulseos div.proactive-risk-chart h4{margin-top:25px;position:fixed;z-index:2;display:flex}#pulseos div.proactive-risk-chart h4 .ui-icon-blue{background-image:url(../img/jquery-ui-icons-256x240.png);-ms-transform:scale(1.5);-webkit-transform:scale(1.5);transform:scale(1.5);margin-left:8px}#pulseos div.proactive-risk-chart h4 .ui-icon-blue:hover{cursor:pointer}@media (max-width:1375px){#pulseos div.proactive-risk-chart{width:50%}}@media (max-width:991px){#pulseos div.proactive-risk-chart{display:none}}#pulseos .scorecard.threat h2.status{font-size:20px}#pulseos .highcharts-data-table caption{padding:1em 0;font-size:1.2em;color:#555}#pulseos .highcharts-data-table th{font-weight:600;padding:.5em}#pulseos .highcharts-data-table td,#pulseos .highcharts-data-table th,#pulseos .highcharts-data-table caption{padding:.5em}#pulseos .highcharts-data-table thead tr,#pulseos .highcharts-data-table tr:nth-child(even){background:#f8f8f8}#pulseos .highcharts-data-table tr:hover{background:#f1f7ff}#pulseos rect.highcharts-background{fill:none}#pulseos form{margin:10px 0}#pulseos form label{color:#fff;margin-bottom:3px;font-weight:100}#pulseos form select{-webkit-appearance:none}#pulseos form .form-control{background-color:#1a1a1a;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos form .form-control::-moz-placeholder{color:#515151;opacity:1}#pulseos form .form-control:-ms-input-placeholder{color:#515151}#pulseos form .form-control::-webkit-input-placeholder{color:#515151}#pulseos .tab-pane{padding-top:10px}#pulseos h3.modal-title .glyphicon{font-size:18px}#pulseos .modal.image .modal-dialog{width:730px}#pulseos .modal-content{background-color:#2c2c2c;border:1px solid #20242d}#pulseos .modal-header{border-bottom:none}#pulseos .modal-header h1,#pulseos .modal-header h2,#pulseos .modal-header h3,#pulseos .modal-header h4,#pulseos .modal-header h5{color:#39b2c6 !important}#pulseos .modal-body{padding-top:0px;padding-bottom:0px}#pulseos .modal-body i{color:#808080}#pulseos .modal-body a{color:#2d8fa5;text-decoration:none}#pulseos .modal-body a:hover{color:#39b2c6}#pulseos .modal-body #cancel{margin-left:5px}#pulseos .modal-body h3{color:#39b2c6 !important}#pulseos .modal-body .full-width{margin-right:0px;margin-left:0px}#pulseos .modal-body .position-label{color:gray;font-style:italic;margin-top:-10px;display:block}#pulseos .modal-body .generate-button{margin-bottom:15px}#pulseos .modal-body textarea{background-color:#1a1a1a;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .modal-body textarea::-moz-placeholder{color:#515151;opacity:1}#pulseos .modal-body textarea:-ms-input-placeholder{color:#515151}#pulseos .modal-body textarea::-webkit-input-placeholder{color:#515151}#pulseos .modal-body .sidebar{position:relative;float:left;height:100%;width:175px;box-sizing:border-box}#pulseos .modal-body .sidebar button{width:100%;margin:5px 0}#pulseos .modal-body .sidebar .contact-price{color:#808080;font-size:12px;margin-left:7px}#pulseos .modal-body .info{position:relative;float:left;height:100%;width:380px;box-sizing:border-box;padding:0 0 0 15px}@media (max-width:991px){#pulseos .modal-body .info{float:none;padding:0 15px 0 0;margin:0 auto 20px auto;word-wrap:break-word;width:100%}}#pulseos .modal-body .info p.status{color:#39b2c6 !important}#pulseos .modal-content.share p.dim{font-size:11px}#pulseos .modal-content.share input[type="text"]{background-color:#1a1a1a;border:1px solid #000;padding:8px;color:#dedede;margin:5px 0;width:450px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .modal-content.share input[type="text"]::-moz-placeholder{color:#454e60;opacity:1}#pulseos .modal-content.share input[type="text"]:-ms-input-placeholder{color:#454e60}#pulseos .modal-content.share input[type="text"]::-webkit-input-placeholder{color:#454e60}#pulseos .modal-footer{border-top:none}#pulseos .pulse-modal{background-color:rgba(0,0,0,0.7);z-index:9999;padding-top:75px;overflow:auto}#pulseos .pulse-modal.incident-feed-modal-styling{padding-top:20px}#pulseos .remove-waypoint:hover{cursor:pointer}#pulseos .modal.asset-edit .tab-pane{padding-top:10px;height:100%}#pulseos .modal.asset-edit .tab-pane textarea{height:200px}#pulseos .modal.asset-edit .modal-body{min-height:475px}#pulseos .modal.asset-edit #importance-slider{display:inline-block;position:relative;border-radius:4px;height:13px !important;width:100%;padding:3px 5px!important;background:#1a1a1a !important;border:1px solid #000;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333;margin-bottom:65px;margin-top:5px}#pulseos .modal.asset-edit #importance-slider .ui-slider-handle{outline:10px solid transparent}#pulseos .modal.asset-edit #importance-slider label{position:absolute;width:20px;margin-left:-10px;text-align:center;margin-top:20px;font-size:14px;color:#5e5e5e;font-family:'sourcesanspro-regular';pointer-events:none}#pulseos .modal.asset-edit #importance-slider .ui-widget-header{background:none}#pulseos .modal.asset-edit #meta p{text-align:center;color:#808080}#pulseos .modal.asset-edit #meta .pulse-list{margin:10px 0}#pulseos .modal.asset-edit #meta input[type="text"]{border-radius:5px;outline:0;background-color:#1a1a1a !important;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .modal.asset-edit #meta input[type="text"]::-moz-placeholder{color:#515151;opacity:1}#pulseos .modal.asset-edit #meta input[type="text"]:-ms-input-placeholder{color:#515151}#pulseos .modal.asset-edit #meta input[type="text"]::-webkit-input-placeholder{color:#515151}#pulseos .modal.asset-edit #meta input#meta-rows{text-align:center;padding:8px !important;width:40px}#pulseos .modal.asset-edit table.video{width:100%}#pulseos .modal.asset-edit table.video td{width:50%;vertical-align:top}#pulseos .modal.asset-edit table.video ul{width:100%;list-style:none;margin-top:8px}#pulseos .modal.asset-edit table.video ul .glyphicon{margin-left:10px;color:#D32100}#pulseos .modal.asset-edit table.video ul .glyphicon:hover{color:#ff2e07;cursor:pointer}#pulseos td.feedback-list-item-name{color:#39b2c6}#pulseos .modal-content.provider-details-modal,#pulseos .modal-content.feedback-modal{width:fit-content}#pulseos .modal-content.provider-details-modal .modal-header,#pulseos .modal-content.feedback-modal .modal-header{display:flex;align-items:center}#pulseos .modal-content.provider-details-modal .modal-header h4.modal-title,#pulseos .modal-content.feedback-modal .modal-header h4.modal-title{color:#FFFFFF !important;text-align:center;width:100%;font-size:22px}#pulseos .modal-content.provider-details-modal .modal-header button,#pulseos .modal-content.feedback-modal .modal-header button{margin:0;width:auto;border:none;background:none;position:relative;display:inline;color:#FFFFFF;text-shadow:none;opacity:unset;font-size:27px}#pulseos .modal-content.provider-details-modal .modal-header .back,#pulseos .modal-content.feedback-modal .modal-header .back{float:left;line-height:1}#pulseos .modal-content.provider-details-modal .modal-body section,#pulseos .modal-content.feedback-modal .modal-body section{background-color:rgba(30,30,30,0.85);padding:10px}#pulseos .modal-content.provider-details-modal .modal-body section div:nth-child(-n+2),#pulseos .modal-content.feedback-modal .modal-body section div:nth-child(-n+2){margin-bottom:25px}#pulseos .modal-content.provider-details-modal .modal-body section div:last-child p,#pulseos .modal-content.feedback-modal .modal-body section div:last-child p{margin-bottom:8px}#pulseos .modal-content.provider-details-modal .modal-body section td,#pulseos .modal-content.feedback-modal .modal-body section td,#pulseos .modal-content.provider-details-modal .modal-body section th,#pulseos .modal-content.feedback-modal .modal-body section th,#pulseos .modal-content.provider-details-modal .modal-body section p,#pulseos .modal-content.feedback-modal .modal-body section p{color:#808080;background-color:transparent}#pulseos .modal-content.provider-details-modal .modal-body section .provider-modal-header,#pulseos .modal-content.feedback-modal .modal-body section .provider-modal-header{display:flex;justify-content:space-between}#pulseos .modal-content.provider-details-modal .modal-body .pulse-list th,#pulseos .modal-content.feedback-modal .modal-body .pulse-list th,#pulseos .modal-content.provider-details-modal .modal-body .modal-list th,#pulseos .modal-content.feedback-modal .modal-body .modal-list th,#pulseos .modal-content.provider-details-modal .modal-body .pulse-list td,#pulseos .modal-content.feedback-modal .modal-body .pulse-list td,#pulseos .modal-content.provider-details-modal .modal-body .modal-list td,#pulseos .modal-content.feedback-modal .modal-body .modal-list td{padding:0 8px !important}#pulseos .modal-content.provider-details-modal .modal-body .modal-description,#pulseos .modal-content.feedback-modal .modal-body .modal-description{margin:25px 0;display:flex}#pulseos .modal-content.provider-details-modal .modal-body .modal-description p,#pulseos .modal-content.feedback-modal .modal-body .modal-description p{margin:0}#pulseos .modal-content.provider-details-modal .modal-body .modal-description p:first-child,#pulseos .modal-content.feedback-modal .modal-body .modal-description p:first-child{margin-right:30px}#pulseos .modal-content.provider-details-modal .modal-body .modal-description p:last-child,#pulseos .modal-content.feedback-modal .modal-body .modal-description p:last-child{color:#39b2c6}#pulseos .modal-content.provider-details-modal .modal-body .modal-list tbody tr,#pulseos .modal-content.feedback-modal .modal-body .modal-list tbody tr{height:54px}#pulseos .modal-content.provider-details-modal .modal-footer,#pulseos .modal-content.feedback-modal .modal-footer{display:flex;justify-content:space-between}#pulseos .modal-content.provider-details-modal .modal-footer button,#pulseos .modal-content.feedback-modal .modal-footer button{color:white;height:35px;width:60px;opacity:unset;border:none;border-radius:5px;font-size:inherit;text-shadow:none}#pulseos .modal-content.provider-details-modal .modal-footer button:hover,#pulseos .modal-content.feedback-modal .modal-footer button:hover{border:1px solid #FFFFFF}#pulseos .modal-content.provider-details-modal .modal-footer .modal-close-button,#pulseos .modal-content.feedback-modal .modal-footer .modal-close-button{flex:auto}#pulseos .modal-content.provider-details-modal .modal-footer .modal-close-button button,#pulseos .modal-content.feedback-modal .modal-footer .modal-close-button button{background-color:#39b2c6}#pulseos .nav-tabs{border-bottom:1px solid #424242;padding-left:10px}#pulseos .nav-tabs:before,#pulseos .nav-tabs:after{display:table;content:" "}#pulseos .nav-tabs:after{clear:both}#pulseos .nav-tabs li a:hover{background-color:#2d8fa5;color:#eeeeee;border-color:#226c7d}#pulseos .nav-tabs li.active a,#pulseos .nav-tabs li.active a:hover{border-bottom-color:transparent;color:#eeeeee;background-color:rgba(66,66,66,0.6);border:1px solid #424242;outline:0}#pulseos .nav-tabs li a{border:1px solid #424242;padding:6px 15px !important;margin-right:-1px;outline:0}#pulseos .pulse-tab{margin-left:-25px}#pulseos .pulse-tab .tab-content{margin-left:10px}@media (max-width:767px){#pulseos .pulse-tab #notification-log-tab{display:none}}#pulseos #pulse-dock-info{display:block;position:absolute;height:100%;width:100%;z-index:900;top:142px}@media (max-width:991px){#pulseos #pulse-dock-info{top:0%}}#pulseos #pulse-dock-info .pulse-content{background-color:#191a1b;background-color:rgba(25,26,27,0.85);pointer-events:auto;padding:10px 25px 0 665px}@media (min-width:991px) and (max-width:1152px){#pulseos #pulse-dock-info .pulse-content{padding:10px 25px 0 490px}}@media (max-width:991px){#pulseos #pulse-dock-info .pulse-content{padding:15px 0px 0px 15px;left:100%;width:100%}}#pulseos #pulse-dock-info .pulse-content .info{padding:0 15px 0 0}#pulseos .dock-risk .nav-pills .nav-item{background-color:transparent !important}#pulseos .dock-risk .nav-pills .active a{text-decoration:none !important;background-color:#287e91 !important}#pulseos .dock-risk .nav-pills .placeholder a{text-decoration:none !important;background-color:transparent !important}#pulseos .dock-risk .nav-pills .nav-link{color:#fff !important;max-width:220px;display:flex;flex-direction:row;font-size:15px}#pulseos .dock-risk .nav-pills .nav-link:hover,#pulseos .dock-risk .nav-pills .nav-link:focus{text-decoration:none !important;background-color:#287e91 !important}#pulseos .dock-risk .nav-pills .nav-link span{margin:0 5px 0 5px !important;padding:5px 0 !important;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}#pulseos .dock-risk .nav-pills .nav-link .high{background-color:#D32100;border-radius:4px;color:#eeeeee;width:30px;height:30px;text-align:center;overflow:visible}#pulseos .dock-risk .nav-pills .nav-link .medium{background-color:#db992f;border-radius:4px;color:#eeeeee;width:30px;height:30px;text-align:center;overflow:visible}#pulseos .dock-risk .nav-pills .nav-link .low{background-color:#108904;border-radius:4px;color:#eeeeee;width:30px;height:30px;text-align:center;overflow:visible}#pulseos .dock-material-flow{font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;font-weight:400;color:#eeeeee}#pulseos .dock-material-flow thead{background-color:#191a1b}#pulseos .dock-material-flow thead th{padding:8px}#pulseos .dock-material-flow tbody tr td{padding:8px}#pulseos .dock-material-flow tbody tr:nth-child(even){background-color:#191c21}#pulseos .dock-material-flow table.summary{width:30%;text-align:center;margin-top:10px;margin-bottom:10px}#pulseos .dock-material-flow table.summary thead{background-color:transparent}#pulseos .dock-material-flow table.summary th,#pulseos .dock-material-flow table.summary tfoot,#pulseos .dock-material-flow table.summary thead,#pulseos .dock-material-flow table.summary td{text-align:center !important;font-size:16px}#pulseos .dock-material-flow table.summary td,#pulseos .dock-material-flow table.summary th{max-width:125px !important}#pulseos .dock-material-flow table.summary tr.data td{font:30px 'leaguegothic-regular';color:#eeeeee}#pulseos .dock-material-flow table.summary td.space{width:143px}#pulseos table.dock-summary-risk{margin-top:5px}#pulseos table.dock-summary-risk thead th{vertical-align:bottom}#pulseos table.dock-summary-risk thead th span{display:flex;font:13px 'sourcesanspro-regular';color:#eeeeee;white-space:break-spaces;place-items:baseline}#pulseos table.dock-summary-risk thead th span .tab-risk-header-value{font:16px 'sourcesanspro-bold'}#pulseos table.dock-summary-risk thead th span{font:18px 'sourcesanspro-regular'}#pulseos table.dock-summary-risk thead th span .tab-risk-header-value{font:20px 'sourcesanspro-bold'}#pulseos table.dock-summary-risk tbody tr{vertical-align:bottom}#pulseos table.dock-summary-risk tbody tr td{width:33%;height:26px}#pulseos table.dock-summary-risk .proactive_risk-bar{height:100%;position:relative;background:#555;padding:10px;margin-right:11px}#pulseos table.dock-summary-risk .proactive_risk-bar .risk-high,#pulseos table.dock-summary-risk .proactive_risk-bar .risk-medium,#pulseos table.dock-summary-risk .proactive_risk-bar .risk-low{display:block;height:100%;position:absolute;top:0;left:0;overflow:hidden;border-radius:0}#pulseos #pulse-timestep-container{position:relative;margin-top:8px;pointer-events:auto;text-align:left}#pulseos #pulse-timestep-features{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-timestep-features li{width:90%}#pulseos #pulse-timestep-view{display:block;position:relative;color:#eeeeee;font-size:14px;height:100%;box-sizing:border-box;margin-right:-4px;padding-top:10px}#pulseos #pulse-timestep-view .timestep-controls{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-timestep-view .timestep-controls a{color:#bbb}#pulseos #pulse-timestep-view .timestep-controls a:hover{color:#eeeeee}#pulseos #pulse-timestep-view .timestepper{color:#5c677f;font-size:16px;text-decoration:none}#pulseos #pulse-timestep-view #timestep-back{margin-right:50px}#pulseos #pulse-timestep-view #timestep-forward{margin-left:50px}#pulseos #pulse-timestep-view .glyphicon:hover{cursor:pointer;color:#919bb0}#pulseos #pulse-timestep-view hr{display:block;height:1px;border:0;border-top:1px solid #2D3034;margin-bottom:0px;margin-top:5px;margin-left:0px;width:173px}#pulseos #pulse-timestep-view h5{margin-left:10px}#pulseos #pulse-timestep-view ul{display:block;list-style:none;margin:5px 0 5px 30px;padding:0 !important;-webkit-padding-start:0;-moz-padding-start:0;padding-start:0;width:100%}#pulseos #pulse-timestep-view li{border-bottom:2px solid #191c21;padding:3px 0 3px 10px;color:#bbb}#pulseos #pulse-timestep-view li .radio-toggle{float:left;margin:2px 5px 0 -20px;width:17px;height:12px;background-image:url("../img/radio_inactive.png");background-repeat:no-repeat;background-position:center;pointer-events:none}#pulseos #pulse-timestep-view li span.count{color:#7e7e7e}#pulseos #pulse-timestep-view li:last-child{border-bottom:none}#pulseos #pulse-timestep-view .disabled,#pulseos #pulse-timestep-view .active.disabled{color:#888}#pulseos #pulse-timestep-view .active{color:#eeeeee}#pulseos #pulse-timestep-view .active .radio-toggle{background-image:url("../img/radio_active_eye.png")}#pulseos #pulse-timestep-view .enabled:hover{color:#eeeeee;cursor:pointer}@media (max-width:991px){#pulseos #pulse-timestep-view{width:100%}}#pulseos .pulse-asset-img{width:100%;margin-bottom:10px;max-height:165px;max-width:155px}#pulseos #pulse-notification{display:none;position:absolute;width:50%;z-index:9999;left:25%;margin-top:2%;height:25px;font-size:14px}#pulseos #pulse-announcement h1{font-size:18px;color:#eeeeee !important;display:inline;margin-left:5px}#pulseos #pulse-announcement h2{font-size:14px;color:#5e5e5e !important}#pulseos #pulse-announcement textarea{resize:vertical;height:250px}#pulseos #pulse-announcement .modal-body{margin-left:20px}#pulseos #pulse-announcement .references,#pulseos #pulse-announcement .attachments{margin-top:20px}#pulseos #pulse-announcement #pulse-announcement-form .close-x{float:none;font-size:18px;margin-right:5px}#pulseos #pulse-announcement #pulse-announcement-form .attachment{width:200px;padding:3px 5px 3px 5px;margin:3px 0 10px 0px;position:relative;line-height:13px;color:#999;border:1px solid #000;border-radius:3px;background-clip:padding-box;background:#1a1a1a;box-shadow:inset 0 1px 1px #000,0 0 6px #333;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-announcement .announcement-list{margin:0 auto;width:800px}@media (max-width:767px){#pulseos #pulse-announcement .announcement-list{width:350px}}#pulseos #pulse-announcement .announcement-list tbody{background:transparent}#pulseos #pulse-announcement .announcement-list thead th{background:transparent}#pulseos #pulse-announcement .announcement-list td{vertical-align:top;padding-bottom:10px;background:transparent}#pulseos #pulse-announcement .announcement-list .message-title{color:#5e5e5e}#pulseos #pulse-announcement .announcement-list .unread-icon{border-radius:50%;width:12px;height:12px;margin-right:5px;background:#31B1C8}#pulseos #pulse-announcement .announcement-list .moment-cell{color:#5e5e5e;font-size:14px;font-style:italic;text-align:center}@media (max-width:767px){#pulseos #pulse-announcement .announcement-list .moment-cell{font-size:12px}}#pulseos #pulse-announcement .announcement-list .attachment-cell{padding-left:2px}#pulseos #pulse-announcement .announcement-list .message-cell{width:500px;padding-top:0px}@media (max-width:767px){#pulseos #pulse-announcement .announcement-list .message-cell{width:150px}}#pulseos #pulse-announcement .announcement-list .uread-cell{width:20px}#pulseos .pulse-notification-info{display:block;background-color:#A0C8CF;color:#333333}#pulseos .pulse-notification-info a{color:#5e5e5e}#pulseos .pulse-notification-success{display:block;background-color:#92C94E;color:#333333}#pulseos .pulse-notification-success a{color:#5e5e5e}#pulseos .pulse-notification-warning{display:block;background-color:#FFBF15;color:#333333}#pulseos .pulse-notification-warning a{color:#5e5e5e}#pulseos .pulse-notification-error{display:block;background-color:#D51E00;color:#ffffff}#pulseos .pulse-notification-error a{color:#eeeeee}#pulseos .pulse-slider{float:left;clear:left;width:336px;margin:15px;margin-left:0px;height:12px;border-radius:5px;outline:0;background:#1a1a1a;border:1px solid #000;color:#919191;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}@media (max-width:565px){#pulseos .pulse-slider{width:290px}}#pulseos .pulse-slider .ui-slider-range{background:url(../img/slider_bg.png);background-size:336px;background-attachment:fixed;background-position:49.5%}#pulseos .pulse-slider.no-risk-slider .ui-slider-range{background:url(../img/slider_bg_norisk.png);background-size:336px;background-attachment:fixed;background-position:49.5%}#pulseos .pulse-slider .ui-state-default,#pulseos .ui-widget-content .ui-state-default{background:url('../img/icon_slider_thumb.png');height:12px;background-color:#FFF}#pulseos .ui-slider-horizontal .ui-slider-handle{top:-1px;outline:10px solid transparent;width:25px;height:13px;cursor:pointer}#pulseos .wizard-view{margin-bottom:20px;margin-top:20px;margin-left:100px;margin-right:150px}#pulseos .wizard-view:before,#pulseos .wizard-view:after{display:table;content:" "}#pulseos .wizard-view:after{clear:both}@media (max-width:565px){#pulseos .wizard-view{margin-left:0px}}#pulseos .wizard-view .risk-profiles h3{color:#F2A718 !important;font-size:16px}#pulseos .wizard-view .risk-profiles div{margin-top:5px}#pulseos .wizard-view .risk-profiles label{position:relative;width:auto;text-align:left;margin-top:0px;margin-left:0px;color:#fff}#pulseos .wizard-view .risk-profiles input{margin-bottom:5px}#pulseos .wizard-view .risk-profiles ul{margin-top:5px;padding-left:0px}#pulseos .wizard-view .risk-profiles .review-section{margin-bottom:15px}#pulseos .wizard-view .risk-profiles .direction-label{display:inline;color:#eeeeee !important}#pulseos .wizard-view .risk-profiles .rule{font-style:italic;color:#FDAE12}#pulseos .wizard-view .risk-profiles #profile-name{width:320px}#pulseos .wizard-view .risk-profiles .risk-condition{border:1px solid #3C3C3C;border-radius:10px;height:100%;width:450px;padding-left:10px;padding-right:10px;padding-top:5px;padding-bottom:20px;margin-left:10px;display:inline-block}#pulseos .wizard-view .risk-profiles .risk-condition:before,#pulseos .wizard-view .risk-profiles .risk-condition:after{display:table;content:" "}#pulseos .wizard-view .risk-profiles .risk-condition:after{clear:both}#pulseos .wizard-view .risk-profiles input{width:20px;margin-bottom:5px;border-radius:5px;outline:0;background-color:#1a1a1a !important;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .wizard-view .risk-profiles input::-moz-placeholder{color:#515151;opacity:1}#pulseos .wizard-view .risk-profiles input:-ms-input-placeholder{color:#515151}#pulseos .wizard-view .risk-profiles input::-webkit-input-placeholder{color:#515151}@media (max-width:767px){#pulseos .wizard-view .risk-profiles input{width:95%}}#pulseos .wizard-view .risk-profiles input :focus{outline:1;outline-color:#2d8fa5}#pulseos .wizard-view .risk-profiles input[type=checkbox]{border:none;background:none;box-shadow:none}#pulseos .wizard-view .risk-profiles .close-slider{position:absolute;margin-left:73px;top:3px;font-size:12px}#pulseos .wizard-view .risk-profiles .threat-heading-prompt,#pulseos .wizard-view .risk-profiles .threat-heading-label,#pulseos .wizard-view .risk-profiles .threat-name,#pulseos .wizard-view .risk-profiles .threat-slider,#pulseos .wizard-view .risk-profiles .threat-families,#pulseos .wizard-view .risk-profiles .threat-range{margin-left:65px}#pulseos .wizard-view .risk-profiles .threat-condition,#pulseos .wizard-view .risk-profiles .threat-function{margin-left:65px}#pulseos .wizard-view .risk-profiles .threat-name .tt-dropdown-menu{width:320px}#pulseos .wizard-view .risk-profiles .threat-quantity{position:relative;width:50px;margin-left:5px}#pulseos .wizard-view .risk-profiles .threat-list{width:520px}#pulseos .wizard-view .risk-profiles .threat-list #inherit-profile-select{width:220px;height:30px}#pulseos .wizard-view .risk-profiles .threat-conditional{float:left;margin-left:30px;margin-top:25px}#pulseos .wizard-view .risk-profiles #conditional-then{margin-left:0px;margin-top:35px;display:none}#pulseos .wizard-view .risk-profiles .threat-range{color:#AAAAAA;display:none}#pulseos .wizard-view .risk-profiles .threat-range input{width:40px;margin-left:5px;margin-right:5px}#pulseos .wizard-view .risk-profiles .threat-condition,#pulseos .wizard-view .risk-profiles .threat-function{display:none;color:#AAAAAA}#pulseos .wizard-view .risk-profiles .threat-condition input,#pulseos .wizard-view .risk-profiles .threat-function input{width:40px;margin-left:5px}#pulseos .wizard-view .risk-profiles .threat-condition div.checkbox label,#pulseos .wizard-view .risk-profiles .threat-function div.checkbox label{color:#AAAAAA !important;pointer-events:auto !important}#pulseos .wizard-view .risk-profiles .threat-condition div.checkbox input[type='checkbox'],#pulseos .wizard-view .risk-profiles .threat-function div.checkbox input[type='checkbox']{position:relative;margin:0;width:auto}#pulseos .wizard-view .risk-profiles .threat-condition select,#pulseos .wizard-view .risk-profiles .threat-function select{background-color:#1a1a1a;margin-left:5px}#pulseos .wizard-view .risk-profiles .threat-families{display:none;float:left;margin-top:10px;margin-left:28px}#pulseos .wizard-view .risk-profiles .threat-families label{pointer-events:auto}#pulseos .wizard-view .risk-profiles .threat-slider{margin-top:-40px;float:left;margin-bottom:20px;height:75px}#pulseos .wizard-view .risk-profiles .threat-slider div{margin-top:0px}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box{position:relative;background:#181818;border:3px solid #5E657D;height:45px;width:90px;color:#AAAAAA;padding-top:6px;text-align:center;cursor:pointer;font-size:12px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box input{margin-top:-3px;width:30px;text-align:center;height:18px;margin-bottom:2px}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box .risk-score{color:#F2A718;font-size:10px}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box:after,#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box:before{bottom:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box:after{border-color:rgba(24,24,24,0);border-bottom-color:#181818;border-width:10px;margin-left:-10px}#pulseos .wizard-view .risk-profiles .threat-slider .arrow-box:before{border-color:rgba(94,101,125,0);border-bottom-color:#5E657D;border-width:14px;margin-left:-14px}#pulseos .wizard-view .risk-profiles .threat-slider .pulse-slider{background:url(../img/slider_bg.png);background-size:320px;width:320px}#pulseos .wizard-view .risk-profiles .threat-slider .ui-widget-content .ui-state-default{background:#2c2c2c}#pulseos .wizard-view .risk-profiles .threat-slider .ui-slider-horizontal .ui-slider-handle{margin-top:40px;margin-left:-42px;width:90px;border:none}#pulseos .wizard-view .risk-profiles .threat-slider label{margin-top:10px;position:absolute;color:#5e5e5e}#pulseos .wizard-view .risk-profiles .threat-name input{width:320px;margin-bottom:5px;border-radius:5px;outline:0;background-color:#1a1a1a !important;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .wizard-view .risk-profiles .threat-name input::-moz-placeholder{color:#515151;opacity:1}#pulseos .wizard-view .risk-profiles .threat-name input:-ms-input-placeholder{color:#515151}#pulseos .wizard-view .risk-profiles .threat-name input::-webkit-input-placeholder{color:#515151}@media (max-width:767px){#pulseos .wizard-view .risk-profiles .threat-name input{width:95%}}#pulseos .wizard-view .risk-profiles .threat-name input :focus{outline:1;outline-color:#2d8fa5}#pulseos .wizard-view .risk-profiles .add-threat{background:url('../img/plus-button.png');height:17px;width:16px;display:inline-block;cursor:pointer}#pulseos .wizard-view .risk-profiles .add-threat:hover{background:url('../img/plus-button-hover.png');height:17px;width:16px}#pulseos .wizard-view .risk-profiles .remove-threat{background:url('../img/minus-button.png');height:17px;width:16px;display:inline-block;cursor:pointer}#pulseos .wizard-view .risk-profiles .remove-threat:hover{background:url('../img/minus-button-hover.png');height:17px;width:16px}#pulseos .wizard-view .wizard-text{width:350px;margin-top:5px;border-radius:5px;outline:0;background-color:#1a1a1a !important;border:1px solid #000;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .wizard-view .wizard-text::-moz-placeholder{color:#515151;opacity:1}#pulseos .wizard-view .wizard-text:-ms-input-placeholder{color:#515151}#pulseos .wizard-view .wizard-text::-webkit-input-placeholder{color:#515151}@media (max-width:767px){#pulseos .wizard-view .wizard-text{width:95%}}#pulseos .wizard-view .wizard-text :focus{outline:1;outline-color:#2d8fa5}#pulseos .wizard-view input[type='checkbox']{margin-right:5px;margin-bottom:5px}#pulseos .wizard-view .methods{margin-bottom:10px;margin-top:5px}#pulseos .wizard-view .wizard-subview{margin-top:90px;width:100%;margin-left:50px;color:#5e5e5e}#pulseos .wizard-view .coverage{font-style:italic;width:240px}#pulseos .wizard-view a{display:inherit}#pulseos .wizard-view label{position:absolute;width:20px;margin-left:-10px;text-align:center;margin-top:20px;font-size:14px;color:#5e5e5e;font-family:'sourcesanspro-regular';pointer-events:none}#pulseos .wizard-view .horizontal-gray-line{width:100px;display:inline-block;margin-left:5px;margin-right:5px;border:1px solid #3E3E3E}#pulseos .wizard-view .threat-desc{margin-bottom:100px}@media (max-width:565px){#pulseos .wizard-alert-risks .alert-desc{width:250px}}#pulseos .wizard-alert-risks label{margin-top:15px;font-weight:normal}#pulseos .wizard-alert-risks .green{color:#108904 !important}#pulseos .wizard-alert-risks .amber{color:#db992f !important}#pulseos .wizard-alert-risks .red{color:#D32100 !important}#pulseos .wizard-alert-risks .risk-low,#pulseos .wizard-alert-risks .risk-medium,#pulseos .wizard-alert-risks .risk-high{height:25px;width:25px;text-align:center;margin-top:40px;padding:5px;font-size:12px;position:absolute}#pulseos .wizard-alert-risks .range-icon{margin-top:48px;font-size:14px;position:absolute;margin-left:148px}#pulseos .wizard-alert-risks .range-start{margin-left:120px}#pulseos .wizard-alert-risks .range-end{margin-left:165px}#pulseos .custom-rules-open{margin-top:30px}#pulseos .custom-rules-close{float:right}#pulseos #global-threat{margin-bottom:20px}#pulseos .pulse-wizard h1{font-size:18px;color:#eeeeee !important}#pulseos .pulse-wizard h2{font-size:14px;color:#5e5e5e !important}#pulseos .pulse-wizard .wizard-next{width:90px;margin-right:10px}#pulseos .pulse-wizard .wizard-back{width:90px;margin-right:10px}#pulseos .pulse-wizard .wizard-done{width:90px;margin-right:10px}#pulseos .pulse-wizard .wizard-nav-head{margin-left:25px}@media (max-width:565px){#pulseos .pulse-wizard .wizard-nav-head{margin-left:0px}}#pulseos .pulse-wizard .wizard-nav-head .progress-line{border-top:none;margin-bottom:5px;color:#808080;background:#808080;width:28%;height:3px;display:inline-block}@media (max-width:565px){#pulseos .pulse-wizard .wizard-nav-head .progress-line{width:27%}}#pulseos .pulse-wizard .wizard-nav-head .full{width:90%}#pulseos .pulse-wizard .wizard-nav-head .progress-dot{height:14px;width:14px;margin-right:-3px;margin-left:-3px;display:inline-block}#pulseos .pulse-wizard .wizard-nav-head .active-dot{background-color:#30B2C7;border:1px solid #808080;-moz-border-radius:7px;-webkit-border-radius:7px}#pulseos .pulse-wizard .wizard-nav-head .inactive-dot{background-color:rgba(204,0,102,0);border:1px solid #808080;-moz-border-radius:7px;-webkit-border-radius:7px}#pulseos .pulse-wizard .wizard-nav-head .visited-dot{background-color:#146271;border:1px solid #2D8FA5;-moz-border-radius:7px;-webkit-border-radius:7px}#pulseos .pulse-wizard .no-left{margin-left:0px !important}#pulseos .pulse-wizard .wizard-nav-subhead{margin-left:20px}@media (max-width:565px){#pulseos .pulse-wizard .wizard-nav-subhead{margin-left:0px}}#pulseos .pulse-wizard .wizard-nav-subhead .wizard-link{position:absolute;width:20%}@media (max-width:565px){#pulseos .pulse-wizard .wizard-nav-subhead .wizard-link{width:17%;font-size:12px}}#pulseos .pulse-wizard .wizard-nav-subhead .push-left-0{margin-left:-10px}#pulseos .pulse-wizard .wizard-nav-subhead .push-left-1{margin-left:26.5%}#pulseos .pulse-wizard .wizard-nav-subhead .push-left-2{margin-left:53.5%}#pulseos .pulse-wizard .wizard-nav-subhead .push-left-3{margin-left:82.5%}#pulseos .pulse-wizard .wizard-nav-subhead .push-left-full{margin-left:82.5%}#pulseos .pulse-wizard .wizard-nav-subhead .inactive-link{pointer-events:none;color:#eeeeee}#pulseos .pulse-wizard .wizard-nav-subhead .unvisited-link{pointer-events:none;color:#5e5e5e}@keyframes borderPulse{0%{background-color:#20242d}50%{background-color:#39b2c6}100%{background-color:#20242d}}@-webkit-keyframes borderPulse{0%{background-color:#20242d}50%{background-color:#39b2c6}100%{background-color:#20242d}}#pulseos .pulsate{-webkit-animation-name:borderPulse;-webkit-animation-duration:.8s;-webkit-animation-iteration-count:3;-webkit-animation-timing-function:linear;-moz-animation:borderPulse .8s linear 0s 3}#pulseos #pulse-layer-menu{position:absolute;right:0px;top:0;width:350px;z-index:2000;pointer-events:auto;font:14px/1.5,'sourcesanspro-regular';-webkit-transition:margin-right 140ms;-o-transition:margin-right 140ms;transition:margin-right 140ms;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}#pulseos #pulse-layer-menu:before,#pulseos #pulse-layer-menu:after{display:table;content:" "}#pulseos #pulse-layer-menu:after{clear:both}@media (max-width:767px){#pulseos #pulse-layer-menu{width:100%;top:30px}}#pulseos #pulse-layer-menu .map-layer-toggle{margin:10px}#pulseos #pulse-layer-menu .layer-toggle{height:34px;background-color:#20242d;border:1px solid #313744;border-right:none;cursor:pointer;margin-bottom:5px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-layer-menu .layer-toggle .glyphicon{top:-1px !important;left:0px;padding:9px 9px}#pulseos #pulse-layer-menu .layer-toggle .layer-toggle:hover{cursor:pointer}#pulseos #pulse-layer-menu table tbody tr{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-layer-menu table tbody tr td{background-color:transparent;height:40px}#pulseos #pulse-layer-menu table tbody tr td:first-child{padding-left:10px;width:30px}#pulseos #pulse-layer-menu table tbody tr:hover td{background:#20242d !important;color:inherit !important}#pulseos #pulse-layer-menu table tbody .asset-group-title-cell{padding-left:3px}#pulseos #pulse-layer-menu table tbody .toggle-checkbox{margin-top:-8px !important}#pulseos #pulse-layer-menu input[type=checkbox]{visibility:hidden;margin:2px 2px 0}#pulseos #pulse-layer-menu ol{padding-left:0px}#pulseos #pulse-layer-menu .asset-group-search{margin-left:5px}#pulseos #pulse-layer-menu .asset-group-search input[type=search]{width:338px;height:30px}#pulseos #pulse-layer-menu .asset-group-search .backgrid-filter.form-search{width:343px}#pulseos #pulse-layer-menu .asset-group-search .backgrid-filter.form-search .search:before{width:11px;height:11px}#pulseos #pulse-layer-menu .asset-group-all{padding-left:10px}#pulseos #pulse-layer-menu .asset-group-list{margin-top:10px;padding-bottom:10px}#pulseos #pulse-layer-menu .asset-group-control{padding-left:10px;padding-top:5px;display:inline-block}#pulseos #pulse-layer-menu .asset-group-control .control-title{margin-right:5px}#pulseos #pulse-layer-menu .enabled{background:#20242d}#pulseos #pulse-layer-menu .layer-item{min-height:40px;cursor:pointer;padding-top:8px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-layer-menu .layer-item .layer-title{margin-left:5px}#pulseos #pulse-layer-menu .layer-item .icon{width:70px;padding:5px 0px 10px;display:block}#pulseos #pulse-layer-menu .layer-item:hover,#pulseos #pulse-layer-menu .layer-item.active{background:#20242d}#pulseos #pulse-layer-menu .layer-wxTime div.toggle{display:inline-block;width:310px;text-align:left;border-radius:0;border:0;background:none;margin-left:5px;padding:0}#pulseos #pulse-layer-menu .layer-wxTime span.glyphicon{text-align:right;float:right;margin:3px 25px 3px 0;font-size:9px}#pulseos #pulse-layer-menu .layer-wxTime .collapse .well,#pulseos #pulse-layer-menu .layer-wxTime .collapsing .well{background-color:#191c21 !important;border-radius:0;border:1px solid #313744;margin:8px 0}#pulseos #pulse-layer-menu .base-layer{width:50px;float:left;margin-top:22px;margin-right:20px}#pulseos #pulse-layer-menu .layer-group .title{padding-left:10px;padding-top:5px;padding-bottom:7px;font-size:22px;margin-bottom:0px;color:#39b2c6;font-family:'sourcesanspro-light','Helvetica Neue',Helvetica,sans-serif;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos #pulse-layer-menu .filter-panel .pulse-tab{margin-left:0px}#pulseos #pulse-layer-menu .filter-panel .pulse-tab .tab-content{padding:12px;right:0px}#pulseos #pulse-layer-menu .filter-panel .pulse-tab .title{color:#39b2c6}#pulseos #pulse-layer-menu .filter-panel .all-incidents,#pulseos #pulse-layer-menu .filter-panel .all-assets,#pulseos #pulse-layer-menu .filter-panel #visible-incidents,#pulseos #pulse-layer-menu .filter-panel #visible-assets{font-size:12px}#pulseos #pulse-layer-menu .filter-panel .clear-incidents,#pulseos #pulse-layer-menu .filter-panel .clear-assets{float:right;font-size:10px}#pulseos #pulse-layer-menu .overview-panel{margin:10px 0 0 12px}#pulseos #pulse-layer-menu .overview-panel .pulse-tab{margin-left:-10px}#pulseos #pulse-layer-menu .overview-panel .pulse-tab .tab-content{padding:10px 10px 10px 15px;background-color:rgba(0,0,0,0)}@media (max-width:767px){#pulseos #pulse-layer-menu .overview-panel .pulse-tab .tab-content{margin-left:-36px}}#pulseos #pulse-layer-menu .overview-panel hr{margin:10px 0}#pulseos #pulse-layer-menu .overview-panel .all-nodes,#pulseos #pulse-layer-menu .overview-panel .all-lanes{display:block;font-size:12px;margin:5px 0}#pulseos #pulse-layer-menu .overview-panel table.impact tbody td{height:auto}#pulseos #pulse-layer-menu .overview-panel table.impact tbody tr:hover td{background-color:transparent !important}#pulseos #pulse-layer-menu .overview-panel .dim.empty-list{margin-bottom:20px;font-size:12px}#pulseos #pulse-layer-menu .overview-panel .pulse-list{font-size:12px;margin-top:5px}#pulseos #pulse-layer-menu .overview-panel .pulse-list table tbody tr td:first-child,#pulseos #pulse-layer-menu .overview-panel .pulse-list tbody tr td{padding-left:0;height:10px}@media (max-width:767px){#pulseos #pulse-layer-menu .overview-panel .pulse-list table tbody tr td:first-child,#pulseos #pulse-layer-menu .overview-panel .pulse-list tbody tr td{width:85px}}#pulseos #pulse-layer-menu .overview-panel .pulse-list table thead th.state,#pulseos #pulse-layer-menu .overview-panel .pulse-list table thead th.high_risk,#pulseos #pulse-layer-menu .overview-panel .pulse-list table thead th.distance_at_risk{text-align:center}#pulseos #pulse-layer-menu .overview-panel .pulse-list table tbody tr td:first-child{width:150px}#pulseos #pulse-layer-menu .overview-panel .pulse-list table tbody tr td.integer-cell{text-align:center !important}#pulseos #pulse-layer-menu .overview-panel .pulse-list .node{display:block}#pulseos #pulse-layer-menu .overview-panel .pulse-list .assets{width:87px}#pulseos #pulse-layer-menu .overview-panel .lanes-list-view table tbody tr td:first-child{width:150px}#pulseos #pulse-layer-menu .overview-panel .collections-overview{margin-top:60px;margin-bottom:50px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview{margin-top:20px;margin-left:-15px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview h5.title,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview h5.title{font-size:14px;margin:3px 15px !important}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .assets-risk-chart,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .assets-risk-chart,#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .routes-risk-chart,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .routes-risk-chart{margin-top:10px;text-align:center}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally{text-align:center}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally table,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally table{text-align:center;width:100px;margin-left:auto;margin-right:auto}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally table th,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally table th{font-size:12px;text-align:center;width:50px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally table td:first-child,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally table td:first-child{padding-left:0}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally table tbody tr td,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally table tbody tr td{height:auto;margin-top:2px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally table tbody tr:hover td,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally table tbody tr:hover td{background-color:transparent !important;width:30px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .count-heading,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .count-heading{position:absolute;margin-top:-20px;font-size:12px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .assets-medium,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .assets-medium,#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .lanes-medium,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .lanes-medium{margin-left:75px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .assets-high,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .assets-high,#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .lanes-high,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .lanes-high{margin-left:130px}#pulseos #pulse-layer-menu .overview-panel .collections-overview .assets-overview .risk-tally .badge,#pulseos #pulse-layer-menu .overview-panel .collections-overview .routes-overview .risk-tally .badge{width:30px;font-size:14px;border-radius:0px}#pulseos #pulse-layer-menu .list-heading{margin-bottom:-5px}#pulseos #pulse-layer-menu hr{border-color:#313744;margin:5px 0}#pulseos #pulse-layer-menu .pulse-menu-tabs{display:inline-block;margin-left:0px}#pulseos #pulse-layer-menu .pulse-menu-tabs .tab-content{position:absolute;display:block;background:#191a1b;background:rgba(25,26,27,0.8);zoom:1;width:350px;right:-350px;min-height:166px;overflow:hidden;padding-top:0px;padding-left:0px;margin-left:0px;border:1px solid #313744;border-right:none;-webkit-transition:right .25s;-o-transition:right .25s;transition:right .25s}@media (max-width:767px){#pulseos #pulse-layer-menu .pulse-menu-tabs .tab-content{width:100%;left:100%;right:0;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s}}#pulseos #pulse-layer-menu .pulse-menu-tabs .tab-pane{padding-top:0px}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical{padding-left:0px;position:absolute;z-index:2000;left:315px;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s}@media (max-width:767px){#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical{left:100%;margin-left:-35px}}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li{background:#191a1b;background:rgba(25,26,27,0.8);width:35px;float:none}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li a{color:#eeeeee;border-radius:0;border:1px solid #313744;padding:6px 10px !important}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li .glyphicon{top:2px}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li [class^="icon-"],#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li [class*=" icon-"]{position:relative;top:2px}#pulseos #pulse-layer-menu .pulse-menu-tabs .nav-tabs.vertical li.active a{background-color:#2d8fa5;border-left:1px solid #313744;border-top:1px solid #313744;border-bottom:1px solid #313744;border-right:none}#pulseos #pulse-layer-menu .pulse-menu-tabs .open-tabs.vertical{left:-35px;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s}@media (max-width:767px){#pulseos #pulse-layer-menu .pulse-menu-tabs .open-tabs.vertical{left:0;margin-left:0px}}#pulseos #pulse-layer-menu .pulse-menu-tabs .open-content{right:0px;overflow:hidden;-webkit-transition:right .25s;-o-transition:right .25s;transition:right .25s}@media (max-width:767px){#pulseos #pulse-layer-menu .pulse-menu-tabs .open-content{left:35px;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s}}#pulseos #pulse-layer-menu.maglev .panel-default{background-color:#191a1b;border:none;border-radius:0;margin-top:0}#pulseos #pulse-layer-menu.maglev .panel-default .glyphicon-check,#pulseos #pulse-layer-menu.maglev .panel-default .glyphicon-expand{color:#3ebcd8 !important}#pulseos #pulse-layer-menu.maglev .panel-title{font-family:'sourcesanspro-light','Helvetica Neue',Helvetica,sans-serif;font-size:14px;color:#2D8FA5}#pulseos #pulse-layer-menu.maglev .panel-title a:hover{text-decoration:none}#pulseos #pulse-layer-menu.maglev a{color:#2D8FA5}#pulseos #pulse-layer-menu.maglev .panel-body .parent-group h4{display:none}#pulseos #pulse-layer-menu.maglev .layer-wxTime .toggle{width:300px}#pulseos #pulse-layer-menu.maglev .panel.filters form{margin:0 8px}#pulseos #pulse-layer-menu.maglev .panel.filters td{border:none}#pulseos #pulse-layer-menu.maglev .panel.filters tr{border:none}#pulseos #pulse-layer-menu.maglev .panel.filters #table-country{border:none}#pulseos #pulse-layer-menu.maglev .panel.filters .panel-title{font-size:14px;color:#eeeeee}#pulseos #pulse-layer-menu.maglev .panel.filters .panel-heading{background:none;border:none;padding:10px}#pulseos #pulse-layer-menu.maglev .panel.filters .panel-body{border:none}#pulseos #pulse-layer-menu.maglev .panel.filters .bs-checkbox input[type=checkbox]{visibility:visible}#pulseos #pulse-layer-menu.maglev .panel.filters input[type="search"]{width:300px;border-radius:4px;background-color:#1a1a1a;border:1px solid #2D8FA5;color:#919191;height:auto;padding:3px 5px !important;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos #pulse-layer-menu.maglev .panel.filters input[type="search"]::-moz-placeholder{color:#515151;opacity:1}#pulseos #pulse-layer-menu.maglev .panel.filters input[type="search"]:-ms-input-placeholder{color:#515151}#pulseos #pulse-layer-menu.maglev .panel.filters input[type="search"]::-webkit-input-placeholder{color:#515151}#pulseos #pulse-layer-menu.maglev .panel.filters .pull-right{float:left !important}#pulseos .pulse-actions .dropdown-menu{min-width:0;margin-top:1px;width:175px}#pulseos .action-complete{display:none;margin-left:15px}#pulseos .marker-cluster div{width:100%;height:100%}#pulseos .asset-cluster svg{margin:0 auto}#pulseos .asset-cluster span{display:block;height:10px;text-align:center;margin:0 auto}#pulseos .asset-cluster span.sub{font-size:8px}#pulseos .asset-cluster.active .menu-item{stroke:#00ffff;stroke-width:1.5}#pulseos .asset-cluster .menu-item{stroke:#ededed;stroke-width:.75}#pulseos .asset-cluster:hover .menu-item{stroke:#00ffff;stroke-width:1.5}#pulseos span.asset-shape{font-size:16px;text-shadow:1px 1px #191c21}#pulseos span.asset-name{font-size:12px;font-weight:400;color:#191c21;text-shadow:1px 1px #191c21;margin-left:3px;padding:4px;border-radius:4px;white-space:nowrap;box-shadow:1px 1px #191c21}#pulseos .risk-color-low{color:#108904}#pulseos .risk-color-med,#pulseos .risk-color-medium{color:#db992f}#pulseos .risk-color-high{color:#D32100}#pulseos .proactive-risk-bar{height:20px;margin-bottom:10px;position:relative;background:#bfbfbf}#pulseos .proactive-risk-bar span{display:block;height:100%;top:0;left:0;overflow:hidden;border-radius:0}#pulseos .threat-low,#pulseos .risk-low{background-color:#108904;border-radius:4px;color:#eeeeee}#pulseos .threat-medium,#pulseos .risk-medium{background-color:#db992f;border-radius:4px;color:#eeeeee}#pulseos .threat-high,#pulseos .risk-high{background-color:#D32100;border-radius:4px;color:#eeeeee}#pulseos .flat-risk-low{background-color:#108904;color:#eeeeee}#pulseos .flat-risk-medium{background-color:#db992f;color:#eeeeee}#pulseos .flat-risk-high{background-color:#D32100;color:#eeeeee}#pulseos .leaflet-marker-icon.asset span.marker{display:block;border-radius:8px;width:12px;height:12px;margin-left:auto;margin-right:auto}#pulseos .cyclone-marker-name{background:none;color:#fff;border:none}#pulseos .potential-low-static{width:40px;height:40px;background:url('../img/cyclone_potential_low.png')}#pulseos .potential-high-static{width:40px;height:40px;background:url('../img/cyclone_potential_high.png')}#pulseos .td{width:16px;height:16px}#pulseos .td .active{width:16px;height:16px;background:url('../img/cyclone_td.png') !important}#pulseos .td .inactive{width:16px;height:16px;background:url('../img/cyclone_td.png')}#pulseos .ts{width:40px;height:35px}#pulseos .ts .active{width:40px;height:35px;background:url('../img/cyclone_ts_glow.png') !important}#pulseos .ts .inactive{width:40px;height:35px;background:url('../img/cyclone_ts.png')}#pulseos .ts .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:12s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 12s linear 0s infinite}#pulseos .leaflet-marker-icon.wind-radii{width:60px !important;margin-left:-20px !important;margin-top:-16px !important;color:#fed976;font-size:10px;text-align:center}#pulseos .leaflet-marker-icon.wind-radii.rad64{color:#fd8d3c}#pulseos .cat-1{width:40px;height:35px}#pulseos .cat-1 .active{width:40px;height:35px;background:url('../img/cyclone_cat_1_glow.png') !important}#pulseos .cat-1 .inactive{width:40px;height:35px;background:url('../img/cyclone_cat_1.png')}#pulseos .cat-1 .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:8s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 8s linear 0s infinite}#pulseos .cat-2{width:40px;height:35px}#pulseos .cat-2 .active{width:40px;height:35px;background:url('../img/cyclone_cat_2_glow.png') !important}#pulseos .cat-2 .inactive{width:40px;height:35px;background:url('../img/cyclone_cat_2.png')}#pulseos .cat-2 .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:7s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 7s linear 0s infinite}#pulseos .cat-3{width:40px;height:35px}#pulseos .cat-3 .active{width:40px;height:35px;background:url('../img/cyclone_cat_3_glow.png') !important}#pulseos .cat-3 .inactive{width:40px;height:35px;background:url('../img/cyclone_cat_3.png')}#pulseos .cat-3 .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:6s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 6s linear 0s infinite}#pulseos .cat-4{width:40px;height:35px}#pulseos .cat-4 .active{width:40px;height:35px;background:url('../img/cyclone_cat_4_glow.png') !important}#pulseos .cat-4 .inactive{width:40px;height:35px;background:url('../img/cyclone_cat_4.png')}#pulseos .cat-4 .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:4s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 4s linear 0s infinite}#pulseos .cat-5{width:40px;height:35px}#pulseos .cat-5 .active{width:40px;height:35px;background:url('../img/cyclone_cat_5_glow.png') !important}#pulseos .cat-5 .inactive{width:40px;height:35px;background:url('../img/cyclone_cat_5.png')}#pulseos .cat-5 .spin{-webkit-animation-name:spinCounterClockwise;-webkit-animation-duration:3s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation:spinCounterClockwiseMoz 3s linear 0s infinite}#pulseos .cyclone-low{color:#767788}#pulseos .cyclone-medium{color:#6a618e}#pulseos .cyclone-high{color:#5c478f}#pulseos .cyclone-td{color:#fed976}#pulseos .cyclone-ts{color:#feb24c}#pulseos .cyclone-hu{color:#fd8d3c}#pulseos .cyclone-1{color:#fd8d3c}#pulseos .cyclone-2{color:#fc4e2a}#pulseos .cyclone-3{color:#e31a1c}#pulseos .cyclone-4{color:#b10026}#pulseos .cyclone-5{color:#b10026}#pulseos .hide-icon{opacity:0}#pulseos a.leaflet-popup-close-button{color:#767B7E !important}#pulseos a:hover.leaflet-popup-close-button{color:#eeeeee !important;text-decoration:none}#pulseos .leaflet-fade-anim .leaflet-popup{opacity:0;-webkit-transition:opacity .05s linear;-moz-transition:opacity .05s linear;-o-transition:opacity .05s linear;transition:opacity .05s linear}#pulseos .close-x{float:right;font-size:22px;margin-top:-5px}#pulseos .lane .select2-choice{height:31px}#pulseos .waypoints .mode-select{float:left}#pulseos .waypoints .mode-draw{float:left;width:14px;margin:25px 0 0 10px;color:#39b2c6}#pulseos .waypoints .mode-draw span.glyphicon:hover{cursor:pointer}#pulseos .waypoints .mode-duration{float:left;width:75px;margin-left:10px}#pulseos .waypoints .mode-duration input{height:30px;margin-top:2px}#pulseos .waypoints .waypoint-connector{position:absolute;height:55px;border:1px solid #424242;opacity:.5;width:1px;margin-left:161px}#pulseos .waypoints .waypoint-mode-connector{position:absolute;height:1px;border:1px solid #424242;width:200px;opacity:.5;margin-top:26px;margin-left:161px}#pulseos .waypoints .waypoint-select{margin-top:15px}#pulseos .waypoints .waypoint-select .waypoint-label{display:inherit}#pulseos .waypoints .waypoint-select2{width:250px !important;margin:5px 0}#pulseos .waypoints .laneMode{margin-bottom:25px}#pulseos .waypoints .styled-select{width:80px;margin-top:2px;height:30px}#pulseos .waypoints .styled-select select{height:24px;padding:0px 0px 0px 5px;cursor:pointer}#pulseos .waypoints .form-group{float:right;margin-top:-7px;margin-right:40px}#pulseos .waypoints .removable-container{top:-22px;left:109px;position:relative}#pulseos .waypoints .removable-container .remove-waypoint{position:absolute;top:50px;left:-294px;z-index:1000;background:#2c2c2c;color:#2d8fa5;opacity:1}#pulseos .waypoints .removable-container .remove-waypoint:hover{color:#39b2c6}#pulseos #cluster-map{width:240px;height:110px;margin:10px 0}#pulseos .pulse-list{margin-top:30px;margin-top:0;margin-bottom:5px;font-size:14px;font-weight:500}#pulseos .pulse-list .controls th,#pulseos .pulse-list .controls th a{color:#eeeeee;overflow:visible !important}#pulseos .pulse-list .controls th a:hover{text-decoration:none;color:#d5d5d5}#pulseos table{width:100%;margin:0 auto}#pulseos table thead th.state{text-align:center}@media (max-width:767px){#pulseos .backgrid,#pulseos .gridjs-table{margin-left:0}}#pulseos .backgrid h4,#pulseos .gridjs-table h4{font-size:14px;color:#5e5e5e}#pulseos .backgrid tbody tr td,#pulseos .gridjs-table tbody tr td{padding:4px 2px}@media (max-width:767px){#pulseos .backgrid tbody tr td,#pulseos .gridjs-table tbody tr td{font-size:12px}}#pulseos .backgrid tbody>tr:nth-child(even)>td,#pulseos .gridjs-table tbody>tr:nth-child(even)>td{background-color:#1a1a1a;background-color:rgba(26,26,26,0.6)}#pulseos .backgrid tbody tr:hover td,#pulseos .gridjs-table tbody tr:hover td,#pulseos .backgrid tbody tr.active td,#pulseos .gridjs-table tbody tr.active td{background-color:#313744 !important;color:#39b2c6 !important;cursor:pointer}#pulseos .backgrid .select-all-header-cell,#pulseos .gridjs-table .select-all-header-cell{text-align:center}#pulseos .backgrid .shaded,#pulseos .gridjs-table .shaded{background-color:#424242 !important;background-color:rgba(66,66,66,0.3) !important}#pulseos .backgrid .conditions-dark,#pulseos .gridjs-table .conditions-dark{background-color:#242424 !important;padding-left:10px}#pulseos .backgrid .conditions-light,#pulseos .gridjs-table .conditions-light{background-color:#282929 !important;padding-left:10px}#pulseos .pulse-list.asset-list-view table thead th.state{text-align:left!important}#pulseos .thumbnails-list-view .backgrid tbody tr:hover td{background-color:#1a1a1a !important;background-color:rgba(26,26,26,0.6) !important;color:#FFFFFF !important}#pulseos .thumbnails-list-view .backgrid tbody tr td:hover{background-color:#313744 !important;color:#39b2c6 !important}#pulseos .glyphicon-ok{color:#108904}#pulseos .glyphicon-remove{color:#D32100}#pulseos .badge.low{background-color:#108904}#pulseos .badge.medium{background-color:#db992f}#pulseos .badge.high{background-color:#D32100}#pulseos .leaflet-marker-icon.event span.hide-marker{display:none}#pulseos .event-label{width:200px !important;display:block;font-size:14px;color:white;text-shadow:2px 2px #191c21;z-index:700 !important}#pulseos .tt-dropdown-menu{width:100%;margin-top:2px;padding:5px 0;background-color:#191c21;border:1px solid #20242d;font-size:12px;*border-right-width:2px;*border-bottom-width:2px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}@media (max-width:767px){#pulseos .tt-dropdown-menu{width:130%;margin-left:-10px}}#pulseos .tt-suggestion{display:block;padding:3px 20px;font-size:14px;color:#9c9c9c}#pulseos .tt-suggestion .description{font-size:10px}#pulseos .tt-suggestion .search-asset{display:inline-block;background:url('../img/search-asset.png');height:16px;width:16px;margin-left:-10px;margin-bottom:-3px;margin-right:5px}#pulseos .tt-suggestion .search-location{display:inline-block;background:url('../img/search-location.png');height:16px;width:16px;margin-left:-10px;margin-bottom:-3px;margin-right:5px}#pulseos .tt-suggestion.tt-cursor{color:#fff;cursor:pointer;background-image:-webkit-linear-gradient(top, #313744 0%, #313744 100%);background-image:-o-linear-gradient(top, #313744 0%, #313744 100%);background-image:linear-gradient(to bottom, #313744 0%, #313744 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff313744', endColorstr='#ff313744', GradientType=0);background-repeat:repeat-x}#pulseos .tt-suggestion.tt-cursor .search-asset{background:url('../img/search-asset-hover.png')}#pulseos .tt-suggestion.tt-cursor .search-location,#pulseos .tt-suggestion.tt-cursor .search-cyclone,#pulseos .tt-suggestion.tt-cursor .search-earthquake{background:url('../img/search-location-hover.png')}#pulseos .tt-suggestion p{margin:0}#pulseos span.twitter-typeahead{width:100%}#pulseos span.twitter-typeahead input{width:100%}@media (max-width:767px){#pulseos span.twitter-typeahead{width:80%;top:-4px}}@keyframes spinCounterClockwise{0%{-webkit-transform:rotate3d(0, 0, 1, 0deg);-moz-transform:rotate3d(0, 0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}50%{-webkit-transform:rotate3d(0, 0, 1, -180deg);-moz-transform:rotate3d(0, 0, 1, -180deg);transform:rotate3d(0, 0, 1, -180deg)}100%{-webkit-transform:rotate3d(0, 0, 1, -360deg);-moz-transform:rotate3d(0, 0, 1, -360deg);transform:rotate3d(0, 0, 1, -360deg)}}@-webkit-keyframes spinCounterClockwise{0%{-webkit-transform:rotate3d(0, 0, 1, 0deg)}50%{-webkit-transform:rotate3d(0, 0, 1, -180deg)}100%{-webkit-transform:rotate3d(0, 0, 1, -360deg)}}@keyframes spinClockwise{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinClockwise{0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes spinClockwiseMoz{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}@-moz-keyframes spinCounterClockwiseMoz{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(-360deg)}}#pulseos #asset-minimap{width:175px;height:150px}#pulseos .asset-icon{display:flex}#pulseos .asset-icon svg .blades{-webkit-animation:spinClockwise 2s linear infinite;-o-animation:spinClockwise 2s linear infinite;animation:spinClockwise 2s linear infinite;-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}#pulseos .risk-hexagone{width:100%;height:100%}#pulseos .asset-type-icon{position:absolute;width:100%;height:100%;padding:12px}#pulseos .asset-icon.low svg .risk-badge{fill:#108904}#pulseos .asset-icon.medium svg .risk-badge{fill:#db992f}#pulseos .asset-icon.high svg .risk-badge{fill:#D32100}#pulseos .backgrid .descending .sort-caret{border-top-color:#eeeeee !important}#pulseos .backgrid .ascending .sort-caret{border-bottom-color:#eeeeee !important}#pulseos .backgrid .integer-cell{text-align:left !important}#pulseos .backgrid tbody tr{background-color:transparent !important}#pulseos .backgrid tbody tr td{background-color:#222;background-color:rgba(30,30,30,0.25);border-color:#222 !important}#pulseos .backgrid thead th,#pulseos .gridjs-thead th{background-color:#222;background-color:rgba(30,30,30,0.85);border:none !important;color:#808080;font-family:'sourcesanspro-regular';font-weight:400;padding:0;text-align:left}#pulseos .backgrid thead th a,#pulseos .gridjs-thead th a{color:#808080}#pulseos .backgrid thead th a:hover,#pulseos .gridjs-thead th a:hover{color:#9a9a9a}#pulseos .backgrid-network{margin-left:35px}#pulseos .backgrid-paginator{margin-top:10px}#pulseos .backgrid-paginator a{background-color:#191c21;color:#808080;border:1px solid #20242d}#pulseos .backgrid-paginator li.active a,#pulseos .backgrid-paginator a:hover{background-color:#2c8498 !important;color:#eeeeee}#pulseos .backgrid-filter,#pulseos .gridjs-search{margin:0}#pulseos .backgrid-filter input[type="search"],#pulseos .gridjs-search input[type="search"]{background-color:#1a1a1a;border:1px solid #000;padding-left:10px;color:#eeeeee;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .backgrid-filter input[type="search"]::-moz-placeholder,#pulseos .gridjs-search input[type="search"]::-moz-placeholder{color:#454e60;opacity:1}#pulseos .backgrid-filter input[type="search"]:-ms-input-placeholder,#pulseos .gridjs-search input[type="search"]:-ms-input-placeholder{color:#454e60}#pulseos .backgrid-filter input[type="search"]::-webkit-input-placeholder,#pulseos .gridjs-search input[type="search"]::-webkit-input-placeholder{color:#454e60}#pulseos .backgrid-filter .clear,#pulseos .gridjs-search .clear{right:7px;height:20px;width:20px;background:#1a1a1a}#pulseos .backgrid-filter .search,#pulseos .gridjs-search .search{position:relative;float:right;left:-15px;margin-top:-12px;top:55%}#pulseos .backgrid-filter .search:after,#pulseos .gridjs-search .search:after{background-color:#8a96b2;width:2px;height:6px}#pulseos .backgrid-filter .search:before,#pulseos .gridjs-search .search:before{width:7px;height:7px;border:2px solid #8a96b2}#pulseos .conditions-dropdown a{color:#5e5e5e !important}#pulseos .conditions-dropdown a:hover{color:#eeeeee !important}#pulseos .dropdown-menu{background-color:#191c21;border:1px solid #20242d;font-size:12px;min-width:250px;z-index:1100;margin-top:-4px}#pulseos .dropdown-menu .mugshot{width:20px}#pulseos .dropdown-menu td{vertical-align:middle}#pulseos .dropdown-menu td .user-name{font-weight:400}#pulseos .dropdown-menu td .user-email{font-size:11px;color:#39b2c6}#pulseos .dropdown-menu td .user-title{font-size:10px;color:#39b2c6}#pulseos .dropdown-menu .divider{background-color:#20242d}#pulseos .dropdown-menu li a:hover{background-color:#2d8fa5;color:#eeeeee;font-weight:400}#pulseos .dropdown-menu li a:hover .glyphicon{color:#20242d}#pulseos .dropdown-menu span.glyphicon,#pulseos .dropdown-menu span.glyphicon-list,#pulseos .dropdown-menu span.glyphicon-globe{color:#39b2c6 !important;margin:0 5px 0 0 !important}#pulseos .lt-ie .styled-select .arrow,#pulseos .lt-ie9 .styled-select .arrow,#pulseos .lt-ie8 .styled-select .arrow{display:none}#pulseos .lt-ie .styled-select select,#pulseos .lt-ie9 .styled-select select,#pulseos .lt-ie8 .styled-select select{padding-right:5px !important}#pulseos .lt-ie7 .styled-select{display:inline;background:none}#pulseos .lt-ie7 .styled-select select{height:auto;border:auto}#pulseos .styled-select{position:relative;border-radius:4px;display:inline-block;height:auto;width:100%;padding:3px 5px!important;color:#919191;background-color:#1a1a1a;border:1px solid #000;-webkit-box-shadow:inset 0 1px 1px #000,0 0 6px #333;box-shadow:inset 0 1px 1px #000,0 0 6px #333}#pulseos .styled-select.second{margin-left:10px}#pulseos .styled-select .arrow{position:absolute;top:15px;right:10px;display:block;width:0;height:0;border-bottom:none;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #fff}#pulseos .styled-select select::-ms-expand{display:none}#pulseos .styled-select select{height:auto;width:100%;font-size:13px;margin-right:5px;display:block;line-height:14px;padding:5px 25px 4px 5px;margin:0;-moz-appearance:window;-moz-padding-end:10px;background:transparent;background-color:transparent;border:none;-webkit-appearance:none;appearance:none;color:#919191}#pulseos .styled-select select:focus{outline:none;border:none}#pulseos #item-upload .browse{display:block;width:145px;margin:20px auto;text-align:center}#pulseos #item-upload span.pre{color:#676767}#pulseos #item-upload span.file{color:#eeeeee}#pulseos #item-upload #fileupload{display:none}#pulseos .dropzone{border:dashed 1px orange;height:190px;border-radius:10px;color:white;margin-top:20px;margin-bottom:10px}#pulseos .upload-instructions{margin-top:10px}#pulseos .upload-instructions ol{list-style-type:decimal}#pulseos .upload-instructions ol li{list-style:inherit}#pulseos .upload-icon{margin:0 auto;text-align:center}#pulseos .leaflet-pulsing-icon{z-index:1000 !important}#pulseos .dropzone-circle{display:none;margin:25px auto;text-align:center}#pulseos .drag-text{font-size:18px;color:#808080;font-weight:100;font-style:italic;margin:10px auto 0 auto;width:40%;text-align:center}#pulseos .form-control[readonly]{background-color:#20242d}#pulseos .list-thumbnail{float:left;width:25%}#pulseos .webcam-modal{width:760px;height:610px}#pulseos .modal-image{width:100%;height:100%}#pulseos .webcam-thumbnail{text-align:center}#pulseos .pan-links{font-size:18px}#pulseos h5.thumbnail-title{margin:10px}#pulseos img.thumbnail-img{margin:10px}#pulseos .thumbnail-text-first{margin-top:5px;color:white}#pulseos .thumbnail-text-second{font-size:12px;color:#808080;margin-bottom:5px}#pulseos .zoom-link{text-align:center}#pulseos .calendar-time{background-color:#444}#pulseos .calendar-time select{-webkit-appearance:auto}#pulseos .bootstrap-datetimepicker-widget .datepicker{padding:5px 0 0 10px}#pulseos .bootstrap-datetimepicker-widget .datepicker .datepicker-days th.picker-switch{text-align:center;padding-right:20px}#pulseos .bootstrap-datetimepicker-widget .datepicker td.day{text-align:center}#pulseos .bootstrap-datetimepicker-widget .datepicker td.day.disabled{color:#808080}#pulseos .bootstrap-datetimepicker-widget .datepicker td.day.disabled:hover{cursor:not-allowed;color:#808080;background-color:auto !important}#pulseos .bootstrap-datetimepicker-widget .datepicker td.day:hover{cursor:pointer;background-color:#20242d;color:#39b2c6}#pulseos .bootstrap-datetimepicker-widget ul.list-unstyled li.picker-switch.accordion-toggle{text-align:center}#pulseos .bootstrap-datetimepicker-widget .timepicker table{text-align:center}#pulseos .date .date-icon{background-color:#20242d;color:#39b2c6;border:1px solid #000}#pulseos #pulse-announcement-range{margin-top:-7px;width:200px}@media (max-width:767px){#pulseos #pulse-announcement-range{margin-top:0px}}#pulseos #pulse-announcement-date,#pulseos #pulse-export-range{height:100%}#pulseos .add-on.input-group-addon{background-color:#1a1a1a;border:none;color:#8a96b2}#pulseos .toggle-checkbox{width:14px;height:14px;top:2px;background:#fcfff4;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;display:inline-block;position:relative;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#pulseos .toggle-checkbox label{cursor:pointer;position:absolute;width:12px;height:12px;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;left:1px;top:1px;background:#191a1b}#pulseos .toggle-checkbox label:after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;content:'';position:absolute;width:10px;height:10px;border:1px solid #000;background:#2D8FA5;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;top:1px;left:1px}#pulseos .toggle-checkbox input[type=checkbox]:checked+label:after{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1}#pulseos .bootstrap-switch.bootstrap-switch-mini{height:19px}#pulseos .bootstrap-switch-default{color:#424242;background:#a1a1a1}#pulseos #current-conditions{text-align:center}#pulseos #current-conditions th{text-align:center}#pulseos .nvtooltip{color:black}#pulseos .ui-widget{font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important}#pulseos #current-conditions{text-align:center}#pulseos #current-conditions th{text-align:center}#pulseos .left-select{position:relative;float:left;margin-left:55px;color:#3da1b3}#pulseos .left-select a{color:#3da1b3}#pulseos .right-select{position:relative;float:right;margin-right:60px;text-align:right;color:#02709B}#pulseos .right-select a{color:#02709B}#pulseos .right-select li{text-align:left}#pulseos #select-1-visible span{color:#3da1b3}#pulseos #select-1-visible span a{color:#3da1b3}#pulseos #select-2-visible span{color:#02709B}#pulseos #select-2-visible span a{color:#02709B}#pulseos #select-3-visible span{color:#0367a8}#pulseos #select-3-visible span a{color:#0367a8}#pulseos #select-risk{color:#ccc}#pulseos .risk-tip-threats{font-size:13px}#pulseos #no-fcst-precip{margin-top:20px}#pulseos #risk-miles-container{float:left;width:130px}#pulseos #risk-bar-miles{float:left;width:30px;text-align:right}#pulseos #risk-bar-container{float:left;margin:0px 20px 0px 10px;width:60px;height:20px}#pulseos .risk-bar{float:left;height:14px;margin-top:3px}#pulseos .miles_at_risk{width:150px}#pulseos #time-range input[type="radio"],#pulseos #report-types input[type="radio"]{margin-right:5px}#pulseos #report-types button{margin:0;padding:15px;min-width:250px}#pulseos #report-types .label{display:block;font-size:11px;text-align:left;padding:5px 0px 20px 0px;margin:0}#pulseos #time-range button{float:left;min-width:65px;min-height:65px}#pulseos #time-range .btn-time{font-size:24px}#pulseos #time-range .time-range-container{float:left;width:80px;margin:10px 10px 10px 0px}#pulseos #time-range .time-range-label{float:left;color:#808080;font-size:11px;margin:5px 0px 0px 5px}#pulseos #select-report{padding-left:50px}#pulseos .layer-group-item-list{float:right;margin-right:20px;padding:0 10px 0 10px;display:none !important}#pulseos #layer-item-count{display:none;color:#8a96b2}#pulseos .layer-item-list .layer-group-item-list{display:block !important;color:#8a96b2}#pulseos .layer-item-list #layer-item-count{display:inline !important}#pulseos .layer-item-list .layer-group-item-list:hover{display:block !important;color:#39b2c6}#pulseos .webcam-layer-item .layer-group-item-list{display:block !important;color:#8a96b2}#pulseos .webcam-layer-item .layer-group-item-list:hover{display:block !important;color:#39b2c6}#pulseos .pan-links{font-size:18px}#pulseos .threat-list-view{margin-top:5px !important}#pulseos .threat-list-view table thead th.state{text-align:left}#pulseos #threat-list-heading{font-size:16px;color:#39b2c6}#pulseos .time-slider{margin-left:1px;height:70px}#pulseos .time-slider label{position:absolute;font-size:10px;margin-top:15px}#pulseos .time-slider label.active{color:#eeeeee}#pulseos .time-slider .title{display:inline}#pulseos .time-slider .refresh-time{font-size:12px;margin:3px 20px 0 0}@media (max-width:767px){#pulseos .time-slider .refresh-time{margin-right:45px}}#pulseos .time-slider .refresh-time.fresh{color:#808080}#pulseos .time-slider .refresh-time:hover{text-decoration:none}#pulseos .time-slider .range-indicator{font-size:12px;margin-right:5px;margin-top:4px}#pulseos .time-slider .refresh-indicator{color:#919191}#pulseos .time-slider .pulse-slider{width:300px;margin:5px 0px 0px 7px}#pulseos .time-slider .pulse-slider .ui-slider-range{background:#5e5e5e;cursor:pointer}#pulseos .pulse-modal.impact .modal-dialog{width:90%;height:85%}#pulseos .pulse-modal.impact .modal-content{display:flex;flex-direction:column;height:100%}#pulseos .pulse-modal.impact .modal-content .modal-body{display:flex;flex-direction:column;flex-grow:1}#pulseos .pulse-modal.impact .modal-content .modal-body iframe{width:100%;border:none;flex-grow:1}#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info{display:flex;flex-direction:column;flex-grow:1;padding-bottom:10px}#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab,#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab div{display:flex;flex-direction:column;flex-grow:1;margin-left:0}#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab .tab-content div.tab-pane,#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab div .tab-content div.tab-pane{display:none}#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab .tab-content div.tab-pane.active,#pulseos .pulse-modal.impact .modal-content .modal-body .impact-info .pulse-tab div .tab-content div.tab-pane.active{display:flex}#pulseos div.modal.fade.tos.in{background-color:rgba(219,153,47,0.7)}#pulseos .empty-list{margin-bottom:20px}#pulseos .shipment-plan .risk-low,#pulseos .shipment-plan .risk-medium,#pulseos .shipment-plan .risk-high{text-align:center;padding:3px;font-size:18px;font-weight:bold}#pulseos .pulse-list.shipment-stop-list-view .backgrid tbody tr.stop-visited{color:#808080}#pulseos .pulse-list.shipment-stop-list-view .backgrid tbody tr.stop-visited i{color:#808080}#pulseos .pulse-list.shipment-stop-list-view .backgrid tbody tr.stop-visited .risk-cell span.badge{background-color:#808080}#pulseos .pulse-list.shipment-stop-list-view .backgrid tbody tr.stop-next i{color:#39b2c6}#pulseos .pulse-list.shipment-stop-list-view .backgrid tbody tr.stop-pending i{color:#8a96b2}#pulseos .pulse-list.shipment-stop-list-view i.low{color:#108904 !important}#pulseos .pulse-list.shipment-stop-list-view i.medium{color:#db992f !important}#pulseos .pulse-list.shipment-stop-list-view i.high{color:#D32100 !important}#pulseos .shipment-plan-legend-view{margin-top:20px;font-size:11px}#pulseos .shipment-plan-legend-view .timezone{margin-bottom:10px}#pulseos .shipment-plan-legend-view .icon{margin-right:15px}#pulseos .shipment-plan-legend-view i{margin-right:5px}#pulseos .shipment-plan-legend-view i.stop-visited{color:#808080}#pulseos .shipment-plan-legend-view i.stop-next{color:#39b2c6}#pulseos .shipment-plan-legend-view i.stop-pending{color:#8a96b2}#pulseos .shipment-plan-legend-view i.low{color:#108904 !important}#pulseos .shipment-plan-legend-view i.medium{color:#db992f !important}#pulseos .shipment-plan-legend-view i.high{color:#D32100 !important}#pulseos .threat-revision{background-color:#212121;border-radius:10px;margin-bottom:10px}#pulseos .threat-revision:nth-of-type(odd){background:#383838}#pulseos .modal-text-header{color:rgba(255,255,255,0.85);margin-bottom:5px}#pulseos .modal-text-value{color:rgba(255,255,255,0.65)}#pulseos .modal-body-row{margin:10px 0}#pulseos #threat-history-modal-body{overflow-y:scroll}#pulseos #menu-group-filters .form-group.views .select2-container{width:225px !important;margin:10px 0 0 10px}#pulseos #menu-group-map-layers .panel-heading span.filter-group-header-checkbox{display:none}#pulseos #menu-group-dashboards .panel-heading span.filter-group-header-checkbox{display:none}#pulseos #menu-group-dashboards h4.title{margin:10px;color:#2d8fa5}#pulseos #menu-group-scenario-simulator h4.title{margin:10px;color:#2d8fa5}#pulseos #menu-group-scenario-simulator .ss-counters-list{display:flex;width:100%;justify-content:space-between;text-align:center}#pulseos #menu-group-scenario-simulator .ss-counters-list .ss-count-number{font-size:18px;font-weight:bolder}#pulseos #menu-group-scenario-simulator .ss-counters-list .ss-count-label{font-size:13px}#pulseos #menu-group-scenario-simulator .scenario-simulator-actions,#pulseos #menu-group-scenario-simulator .scenario-simulator-create-container,#pulseos #menu-group-scenario-simulator .scenario-simulator-select-container{align-items:center;margin:10px}#pulseos #menu-group-scenario-simulator .item-counts-container{align-items:center;margin-bottom:10px}#pulseos #menu-group-scenario-simulator .scenario-simulator-select-container .item-counts-container{margin-top:10px}#pulseos #menu-group-scenario-simulator #s2id_scenario-select{width:100% !important}#pulseos #menu-group-scenario-simulator #filter-apply{display:block;margin:10px auto;width:80%;text-align:center}#pulseos #menu-group-scenario-simulator .ss-form-control{text-align:right}#pulseos #menu-group-scenario-simulator #ss-create-form input[type=checkbox]{visibility:visible}#pulseos #menu-group-scenario-simulator .scenario-simulator-actions,#pulseos #menu-group-scenario-simulator .scenario-simulator-shape{display:flex;justify-content:space-between}#pulseos #menu-group-scenario-simulator .scenario-simulator-action-btns{border:#39b2c6 1px solid;border-radius:5px}#pulseos #menu-group-scenario-simulator .scenario-simulator-action-btns button{margin:0;height:20px;width:70px;font-size:12px;line-height:12px;padding:0}#pulseos #menu-group-scenario-simulator .scenario-simulator-btn-group button.active{color:#eeeeee;background-color:#2d8fa5;font-weight:bold}#pulseos #menu-group-scenario-simulator .scenario-simulator-btn-group{display:flex}#pulseos #menu-group-scenario-simulator .scenario-simulator-btn-group button{border:0}#pulseos #menu-group-filters h4.title{margin:10px;color:#2d8fa5}#pulseos #menu-group-filters h4.panel-title a{color:#FFFFFF;font-family:'sourcesanspro-regular','Helvetica Neue',Helvetica,sans-serif !important;font-size:14px;text-decoration:none}#pulseos #menu-group-filters h4.panel-title a span{margin-right:10px}#pulseos #menu-group-filters #filter-apply{display:block;margin:10px auto;width:80%;text-align:center}#pulseos #menu-group-filters .panel-body{border-top:none;margin-left:20px;padding:0}#pulseos #save-filter-modal-body{min-height:198px;width:600px;font-size:16px}#pulseos #save-filter-modal-body input[type=checkbox]{width:14px;height:14px;padding-right:9px;transform:scale(1.5)}#pulseos .save-panel-filter-row{display:flex;justify-content:space-around;margin:20px 0}#pulseos .save-panel-filter-item{width:100%;padding:10px 0}#pulseos .save-panel-filter-help-text{font-size:12px;color:#bbb}#pulseos .filter-group-panel-heading{display:flex;justify-content:space-between}#pulseos #share-threat-modal-body{min-height:200px}#pulseos .panel-body .slimScrollDiv{height:auto !important;max-height:420px}#pulseos .apply-filters-button{position:absolute;bottom:0;display:flex;justify-content:center;width:100%}#pulseos .glyphicon-floppy-disk{margin:16px;float:right;color:#246472}#pulseos .glyphicon-trash{margin:16px;float:right;color:#246472}#pulseos .privacy-modal-disagree{position:absolute;display:flex;justify-content:flex-start}#pulseos div.modal.fade.privacy.in{background-color:rgba(219,153,47,0.7)}#pulseos div.modal.fade.privacy.in #submit{background-color:#246472}#pulseos div.modal.fade.privacy.in .modal-header h4{color:white !important}#pulseos .nestedlist .list-group-item{cursor:pointer}#pulseos .nestedlist span.indent{margin-left:10px;margin-right:10px}#pulseos .nestedlist span.icon{margin-right:5px;width:12px}#pulseos .incident-list-heading a{font-size:12px}#pulseos .incident-detail-info{height:550px}#pulseos .modal-dialog.user-profile{bottom:0;left:25%;position:absolute;top:100px;width:55vw}#pulseos .modal-dialog.user-profile .modal-content{background-color:transparent;border:0;height:100%}#pulseos .modal-dialog.user-profile .modal-body{height:100%;padding:0}#pulseos .modal-dialog.user-profile iframe#user-profile-modal{background-color:transparent;border:none}#pulseos .modal-dialog.user-onboarding{bottom:0;left:30%;position:absolute;top:0;width:40vw}#pulseos .modal-dialog.user-onboarding .modal-content{background-color:transparent;border:0;box-shadow:none;height:100%}#pulseos .modal-dialog.user-onboarding .modal-body{height:100%;padding:0}#pulseos .modal-dialog.user-onboarding iframe#user-onboarding-modal{background-color:transparent;border:none}#pulseos .modal-dialog.incident-feed-modal{bottom:0;margin:0 auto;position:absolute;top:40px;width:100vw}#pulseos .modal-dialog.incident-feed-modal .modal-content{background-color:transparent;border:0;height:100%}#pulseos .modal-dialog.incident-feed-modal .modal-body{height:100%;padding:0}#pulseos .modal-dialog.incident-feed-modal .modal-body a.close-x{color:#ffffff;margin-bottom:0;position:absolute;right:40px;top:20px}#pulseos .modal-dialog.incident-feed-modal .modal-body a.close-x:hover{transform:scale(2);transition:all .5s ease}#pulseos .modal-dialog.incident-feed-modal iframe#incident-feed-modal{border:none}#pulseos .fetch-risks{padding:5px !important}#pulseos .pulse-dashboards{width:100%;height:100%;z-index:9900;margin:0 auto;overflow:hidden;background-color:rgba(196,196,196,0.4)}#pulseos .pulse-dashboards .modal-dialog{width:95%;height:92%}#pulseos .pulse-dashboards .modal-dialog .dashboard-content{height:100%;background-color:#212121}#pulseos .pulse-dashboards .modal-dialog .dashboard-content .modal-body,#pulseos .pulse-dashboards .modal-dialog .dashboard-content .tab-content,#pulseos .pulse-dashboards .modal-dialog .dashboard-content .tab-list{height:100%}#pulseos .pulse-boldbi-dashboard{width:100%;height:100%}#pulseos .pending-risk-models{position:absolute;top:45px;right:35px;color:#39b2c6;cursor:pointer}#pulseos .pending-risk-models:hover{text-decoration:underline}#pulseos .gridjs-search{float:right}#pulseos .gridjs-search input[type="search"]{outline:none;width:300px;padding:5px;margin-bottom:10px;border-radius:4px}#pulseos .gridjs-footer{display:flex;justify-content:center;width:100%;z-index:5;padding:12px 24px;border-top:1px solid #e5e7eb;background-color:#1a1a1a;background-color:rgba(26,26,26,0.6);box-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.26);border-radius:0 0 8px 8px;border-bottom-width:1px;border-color:#1f1f1f}#pulseos .gridjs-footer:empty{padding:0;border:none}#pulseos .gridjs-pages button{background-color:#191c21}#pulseos .gridjs-pages button:hover{background-color:#2c8498}#pulseos .gridjs-pages button:disabled{background-color:#191c21}#pulseos .gridjs-pagination .gridjs-pages button:last-child{border-bottom-right-radius:6px;border-top-right-radius:6px;border-right:1px solid #1f1f1f}#pulseos .gridjs-pagination .gridjs-pages button:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}#pulseos #pulse-dock-content ::-webkit-scrollbar{height:5px}#pulseos #pulse-dock-content ::-webkit-scrollbar-track{background:transparent}#pulseos #pulse-dock-content ::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.4)}#pulseos tr.gridjs-tr{height:28px}#pulseos button.gridjs-sort{background-color:transparent;background-position-x:center;background-repeat:no-repeat;background-size:contain;border:none;cursor:pointer;float:right;height:18px;margin:0;outline:none;padding:0;width:13px;filter:contrast(0)}#pulseos button.gridjs-sort-neutral{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDEuOTk4IiBoZWlnaHQ9IjQwMS45OTgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQwMS45OTggNDAxLjk5OCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTczLjA5MiAxNjQuNDUyaDI1NS44MTNjNC45NDkgMCA5LjIzMy0xLjgwNyAxMi44NDgtNS40MjQgMy42MTMtMy42MTYgNS40MjctNy44OTggNS40MjctMTIuODQ3cy0xLjgxMy05LjIyOS01LjQyNy0xMi44NUwyMTMuODQ2IDUuNDI0QzIxMC4yMzIgMS44MTIgMjA1Ljk1MSAwIDIwMC45OTkgMHMtOS4yMzMgMS44MTItMTIuODUgNS40MjRMNjAuMjQyIDEzMy4zMzFjLTMuNjE3IDMuNjE3LTUuNDI0IDcuOTAxLTUuNDI0IDEyLjg1IDAgNC45NDggMS44MDcgOS4yMzEgNS40MjQgMTIuODQ3IDMuNjIxIDMuNjE3IDcuOTAyIDUuNDI0IDEyLjg1IDUuNDI0ek0zMjguOTA1IDIzNy41NDlINzMuMDkyYy00Ljk1MiAwLTkuMjMzIDEuODA4LTEyLjg1IDUuNDIxLTMuNjE3IDMuNjE3LTUuNDI0IDcuODk4LTUuNDI0IDEyLjg0N3MxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDhMMTg4LjE0OSAzOTYuNTdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4bDEyNy45MDctMTI3LjkwNmMzLjYxMy0zLjYxNCA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDggMC00Ljk0OC0xLjgxMy05LjIyOS01LjQyNy0xMi44NDctMy42MTQtMy42MTYtNy44OTktNS40Mi0xMi44NDgtNS40MnoiLz48L3N2Zz4=");background-position-y:center;opacity:.3}#pulseos button.gridjs-sort-asc{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgMTk3LjI4NyAxNTkuMDI4IDY5LjM4MWMtMy42MTMtMy42MTctNy44OTUtNS40MjQtMTIuODQ3LTUuNDI0cy05LjIzMyAxLjgwNy0xMi44NSA1LjQyNEw1LjQyNCAxOTcuMjg3QzEuODA3IDIwMC45MDQgMCAyMDUuMTg2IDAgMjEwLjEzNHMxLjgwNyA5LjIzMyA1LjQyNCAxMi44NDdjMy42MjEgMy42MTcgNy45MDIgNS40MjUgMTIuODUgNS40MjVoMjU1LjgxM2M0Ljk0OSAwIDkuMjMzLTEuODA4IDEyLjg0OC01LjQyNSAzLjYxMy0zLjYxMyA1LjQyNy03Ljg5OCA1LjQyNy0xMi44NDdzLTEuODE0LTkuMjMtNS40MjctMTIuODQ3eiIvPjwvc3ZnPg==");background-position-y:35%;background-size:10px}#pulseos button.gridjs-sort-desc{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOTIuMzYyIiBoZWlnaHQ9IjI5Mi4zNjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI5Mi4zNjIgMjkyLjM2MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTI4Ni45MzUgNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiAwLTkuMjMzIDEuODA3LTEyLjg1IDUuNDI0QzEuODA3IDcyLjk5OCAwIDc3LjI3OSAwIDgyLjIyOGMwIDQuOTQ4IDEuODA3IDkuMjI5IDUuNDI0IDEyLjg0N2wxMjcuOTA3IDEyNy45MDdjMy42MjEgMy42MTcgNy45MDIgNS40MjggMTIuODUgNS40MjhzOS4yMzMtMS44MTEgMTIuODQ3LTUuNDI4TDI4Ni45MzUgOTUuMDc0YzMuNjEzLTMuNjE3IDUuNDI3LTcuODk4IDUuNDI3LTEyLjg0NyAwLTQuOTQ4LTEuODE0LTkuMjI5LTUuNDI3LTEyLjg1eiIvPjwvc3ZnPg==");background-position-y:65%;background-size:10px}#pulseos button.gridjs-sort:focus{outline:none}#pulseos th.gridjs-th .gridjs-th-content{float:left;overflow:hidden;text-overflow:ellipsis;width:100%}#pulseos th.gridjs-th-sort{cursor:pointer}#pulseos th.gridjs-th-sort .gridjs-th-content{width:calc(100% - 15px)}#pulseos th.gridjs-th-fixed{box-shadow:0 1px 0 0 #e5e7eb;position:sticky}#pulseos .gridjs *,#pulseos .gridjs :after,#pulseos .gridjs :before{box-sizing:border-box}#pulseos .incident-icon{display:flex}#pulseos .incident-icon-background{width:100%;height:100%}#pulseos .incident-category-icon{position:absolute;width:100%;height:100%;padding-top:12px;padding-right:9px;padding-left:9px;padding-bottom:5px;filter:drop-shadow(0 0 0 black)}ul#select2-results-1{height:600px;max-height:600px}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body.header #pulseos{background-color:#191c21}body.header #pulseos #pulse-layer-menu{top:60px !important}@media (max-width:767px){body.header #pulseos #pulse-layer-menu{top:30px !important}}body.header .leaflet-top{margin-top:65px}@media (max-width:767px){body.header .leaflet-top{margin-top:70px}}body.header #pulse-notification{margin-top:80px}@media (max-width:767px){body.header #pulse-notification{margin-top:70px}}body.static{margin:0;padding:0}body.static .leaflet-control{display:none !important}body.static #pulse-layer-menu{display:none !important}body.static #pulse-timestep-container{display:none !important}.modal-backdrop.fade.in{position:absolute;top:0;width:100%;height:100%;z-index:1950;background:#191c21;opacity:.4}