@CHARSET "UTF-8";

html {
	box-sizing: border-box;
	height: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background-color: #000;
	color: #ccc;
	min-height: 98%;
	position: relative;
	font-family: sans-serif;
}

.hide { visibility: hidden; }

/* */

/* scrollbars style*/
::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(200,200,200,0.3); 
    border-radius: 10px 0px 0px 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 10px 0px 0px 10px;
    background: rgba(255,150,70,0.8); 
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(255,150,70,0.9);
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255,0,0,0.4); 
}
/* */

section {
	border: 0px solid #ccc;
	min-height: 50px;
}

.menubar {
	position: relative;
	border: 0px solid #fcc;
	height: 60px;
}

.fps {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 150px;
	border: 0px solid #999;
	font-size: 15px;
	line-height: 10px;
	padding: 5px;
	text-align: right;
}

.fps::after {
	content: "fps";
}

.sidebar {
	position: absolute;
	width: 300px;
	top: 60px;
	bottom: 5px;
	background-color: #222;
	overflow: hidden;
	padding-left: 20px;
	border-radius: 4px 4px 0px 0px;
}
.sidebar_left {
	border: 1px solid #aaa;
	left: 0px;
	padding: 0px;
	width: 270px;
}
.sidebar_right {
	border: 1px solid #aaa;
	left: 950px;
	padding: 0px;
	width: 500px;
	overflow: auto;
}

.sidebarTitle {
	margin: 0px 0px 10px 0px;
	padding: 5px;
	text-align: center;
	color: #333;
	font-size: 15px;
	border-bottom: 1px solid #777;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
	text-align: center;
	box-shadow: inset 0 1px 0 #fff;
	background: linear-gradient(to bottom, #eee 0%, #ccc 100%);
}

.address, .hex_header, .hex_data, .hex_text, .hex_info {
	font-family: 'Source Code Pro','Courier New', Consolas, Monospace;
	font-size: 14px;
	line-height: 18px;
	cursor: default;
}

.editor {
	position: absolute;
	top: 60px;
	bottom: 5px;
	left: 310px;
	width: 600px;
	border: 0px solid #ff0;
	background: #333;
	color: #aaa;
	overflow: hidden;
	padding: 5px;
	background-color: #000;
}
.address {
	float: left;
	padding: 0px 10px;
	background: #000;
	text-align: right;
	border: 0px solid dodgerblue;
	font-weight: bold;
}
.address div { padding: 0px 20px; }
.address div:hover { transition: all 0.5s; color: #f70; }
.hex {
	float: left;
	width: 600px;
	height: 95%;
	padding: 0px 0px;
	border: 0px solid #5b9;
	overflow-x: hidden;
	overflow-y: scroll;
}
.hex_header {
	background-color: #000;
	border: 0px solid dodgerblue;
	font-weight: bold;
	width: 800px;
	padding-bottom: 10px;
	margin-left: 140px;
}
.hex_text > span, .hex_info > span {
	margin: 0px 2px 0px 2px;
	padding: 0px 2px 0px 2px;
}
.hex_header > span, .hex_data > span {
	margin: 0px 2px 0px 2px;
	padding: 0px 3px 0px 1px;
}

.hex_header > span {
	border: 1px solid transparent;
}

/* HEX DATA */
.dataSpan {
	color: #9c9;
	
	/* force border with to 1 and black (invisible) to avoir shift in display when some other class is added... */
	border: 1px solid transparent;
}
.dataSpan:hover {
	transition: all 0.2s;
	background-color: #FFE0B2;
	color: #f23;
}

/* display highlight */
.valueNeverChangeNotZero { color: #800; }
.valueNeverChangeZero 	{ color: #244; }
.hasIncr { border-bottom: 2px solid #5ff; font-weight: bold; border-radius: 0px 0px 8px 0px; }
.hasDecr { border-bottom: 2px solid #f55; font-weight: bold; border-radius: 0px 0px 0px 8px; }
/* */

/* selectable */
.selectedSpan {
	background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
	color: #000;
}
/* HEX DATA END */

.hex_text {
	float: left;
	padding: 0px 20px 0px 5px;
	color: #888;
}
.hex_info {
	float: left;
	padding: 0px 20px 0px 5px;
	color: #888;
}

/* IMAGE DISPLAY */
.canvasPng {
	position: absolute;
	top: 100px;
	left: 1500px;
	width: 384px;
	height: 224px;
	background-image: url("");
	background-repeat: none;
	border: 1px solid #19f;
}
/* IMAGE DISPLAY END */

/* SIDEBAR */
.sidebar_section section {
	border: 0px solid ccc;
	padding-left: 10px;
}

.sidebar_data input {
	background-color: #555;
	border: 1px solid #000;
	color: #fff;
	margin-left: 5px;
	text-align: center;
	width: 100px;
}


.sidebar_span_title {
	display: inline-block;
	width: 80px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	border: 0px solid dodgerblue;
}
.sidebar_span_line {
	display: inline-block;
	padding-left: 10px;
	font-size: 12px;
	font-weight: normal;
	border: 0px solid dodgerblue;
	width: 75px;
}
.input_insp {
	background-color: #111;
	border: 0px solid #000;
	color: #fff;
	margin-left: 5px;
	text-align: center;
	width: 75px;
	margin-left: 5px;
}

/* KNOWN RANGES */
.known_range {
	border-width: 1px;
	border-style: solid;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.known_range_left { border-left-width: 1px; }
.known_range_right { border-right-width: 1px; }
.known_range_b {
	border-color: #5af;
}
.known_range_w {
	border-color: #5f5;
}
.known_range_ws {
	border-color: #f55;
}
.known_range_dw {
	border-color: #ff5;
}

.span_b 	{ color: #0af; }
.span_w 	{ color: #0f0; }
.span_ws 	{ color: #f55; }
.span_dw 	{ color: #ff0; }

.btn_add {
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	border: 1px solid #777;
	width: 30px;
	margin-left: 5px;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
}
.btn_add:hover {
	transition: all 0.5s;
	border-color: #ccc;
}

.watchlist {
	border: 0px solid red;
	padding: 5px;
}

.watcher {
	font-size: 14px;
	border: 0px solid #555;
	position: relative;
	margin: 2px;
	padding: 3px;
	z-index: 1;
}
.watcher:hover {
	transition: all 0.5s;
	background-color: rgba(255,255,255,0.1)
}
.watcher_name {
	display: inline-block;
	border: 0px solid red;
	width: 270px;
	margin: 0px 0px;
}
.watcher_data {
	margin-left: 15px;
	border: 0px solid #55f;
}
.watcher_del {
	display: inline-block;
	position: absolute;
	top: 2px;
	right: 3px;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	vertical-align: middle;
	border: 1px solid #555;
	width: 20px;
	height: 19px;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	color: #900;
}
.watcher_del:hover {
	transition: all 0.5s;
	color: #f00;
	border: 1px solid #f00;
}
.watcher_record {
	display: inline-block;
	position: absolute;
	top: 2px;
	right: 25px;
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
	vertical-align: middle;
	border: 1px solid #555;
	width: 20px;
	height: 19px;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	color: #8cf;
}
.watcher_record:hover {
	transition: all 0.5s;
	color: #19f;
	border: 1px solid #19f;
}
.watcher_highlight {
	display: inline-block;
	position: absolute;
	top: 2px;
	right: 47px;
	font-size: 15px;
	font-weight: bold;
	line-height: 22px;
	vertical-align: middle;
	border: 1px solid #555;
	width: 20px;
	height: 19px;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	color: #fc8;
}
.watcher_highlight:hover {
	transition: all 0.5s;
	color: #fa0;
	border: 1px solid #fa0;
}
.watcher_highlighted {
	color: #fa0;
}
.watcher_grayed {
	background-color: #333;
	opacity: 0.3;
}

/* */
.hide { display: none !important; }
.display { display: block !important; }

/* */
.loadingText {
	color: #fc9;
	font-size: 10px;
}
.st-loader {
	display: none;
	width: 150px;
	height: 12px;
	position: absolute;
	top: 60px;
	left: 270px;
	text-align: center;
	font-size: 10px;
	color: #fc9;
}
@-moz-keyframes st-loader_loading {
  0% {
    left: 0;
  }
  50% {
    left: 97%;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes st-loader_loading {
  0% {
    left: 0;
  }
  50% {
    left: 90%;
  }
  100% {
    left: 0;
  }
}
@keyframes st-loader_loading {
  0% {
    left: 0;
  }
  50% {
    left: 93%;
  }
  100% {
    left: 0;
  }
}
.st-loader:before,
.st-loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  border: 1px solid #f80;
}

.st-loader:before {
  left: -6px;
  border-right: 0;
}

.st-loader:after {
  right: -6px;
  border-left: 0;
}

.st-loader .equal {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 10px;
  height: 8px;
  width: 15px;
  border: 1px solid #f80;
  border-width: 1px 0;
  -moz-animation: st-loader_loading 2.5s infinite ease-in-out;
  -webkit-animation: st-loader_loading 2.5s infinite ease-in-out;
  animation: st-loader_loading 2.5s infinite ease-in-out;
}
/* */