/* force border-box behavior everywhere... */
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
	/*outline: 1px solid #999;*/
}

html {
	margin: 0;
	padding: 0;
	background: #111;
}

body {
	font-size: 13px;
	font-family: Helvetica,"Helvetica neue", Arial, sans-serif;
	color: #ffc;
	background: #000;
	min-width: 1280px;
	min-height: 800px;
	margin: 0px auto;
	padding: 0px;
}

/* HTML 5 specific */
header, section, article, aside, footer, nav {
	display: block;
}

/* default behavior */

a {
	color: #fb5;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.1s;
}
a:visited { color: #fa4; }
a:hover, a:active { color: #f91; text-decoration: none; }
a img { border: none; }

h1 { color: #f92; }
h2 { color: #fb4; }
h3 { color: #fd5; }
h4 { color: #fe7; }
h5 { color: #ffa; }

/* site styles */
.headerTitle {
	font-size: 1.2em;
	font-weight: bold;
	color: #000;
	text-shadow: 1px 1px 1px #950;
	padding: 0px;
	background-color: #fa3;
	text-align: center;
	box-shadow: 0 2px 3px 2px #fa3;
	margin-bottom: 5px;
}

/*  */
.basicTable {
	border: 0px solid #ddd;
	text-align: left;
	margin: 5px auto;
	font-size: 12px;
	min-width: 40%;
}

.basicTable input {
	background-color: #111;
	font-weight: normal;
	border: 0px solid #ccc;
	text-align: center;
	width: 95%;
	margin: 10px auto;
}

.basicTable thead th {
	border: 1px solid #333;
	padding: 10px;
	text-align: center;
	background-color: #111;
	color: #fc5;
	font-weight: bold;
	font-size: 13px;
	text-transform: capitalize;
	cursor: pointer;
	
	transition: all .3s ease;
}

.basicTable thead th:hover {
	background-color: #222;
	color: #f91;
}

.basicTable tfoot {
    display: table-header-group;
}

.basicTable tfoot th {
	text-align: center;
}

.basicTable tbody td {
	border: 1px solid #222;
	padding: 3px 5px;
}


/*.basicTable thead th { border: 1px solid #f91; }*/
/*.basicTable tbody td { border: 1px solid #19f; }*/
/*.basicTable tfoot th { border: 1px solid #1f9; }*/

.basicTable tbody tr td {
	transition: all .3s ease;
}
.basicTable tbody tr:hover td {
	color: #fc8;
	padding-left: 20px;
	background-color: #000;
}

.rowEvenOdd tr:nth-child(even) { background-color: #101010; }
.rowEvenOdd tr:nth-child(odd) { background-color: #000000; }

.noTableBorder tbody tr,
.noTableBorder thead th,
.noTableBorder tbody tr td {
	border: none;
}
/*  */

.main_content {
	border: 0px solid #19f;
	min-height: 500px;
	padding: 10px;
	border-sizing: border-box;
	
	transition: all 0.5s;
}

.footer {
	border: 1px solid #222;
	border-radius: 4px;
	min-width: 500px;
	min-height: 100px;
	padding: 20px;
	margin: 20px;
	text-align: center;
	font-size: 10px;
	color: #fec;
}

/* tblAcq */
.tblAcq_table td:first-child {
	width: 10px;
}
/*  */

/* structDef */
.structDef_table {
	width: 70%;
}

.structDef_table tbody td {
	white-space: pre;
}
/*  */

/* terminology */
.terminology_table {
	width: 70%;
}

.terminology_table tbody td {
	padding-left: 10px;
}
/*  */

/* intro cube */
.home_3s {
	border: 1px solid #222;
	/*box-shadow: 0px 0px 10px #fb5;*/
	/*border-radius: 5px;*/
	background-image: url("/assets/images/menu/3S_introduction_02304.png");
	background-repeat: no-repeat;
	height: 224px;
	width: 384px;
	margin: 50px auto;
}
/* end intro */

/* rom explorer styles */
#divColorTable {
	border: 0px solid #f94;
	width: 100%;
	height: 100%;
	padding: 0px 0px 20px 0px;
	position: relative;
}

#divSeekAddr {
	text-align: center;
	color: #999;
	font-size: 12px;
	margin-top: 20px;
}

#divSeekAddr input {
	color: #777;
    height: 22px;
    padding-left: 5px;
    background-color: #222;
    border-radius: 5px; /*up to date browsers support this, but you can add prefixes if you want*/

    border: 0;
}

#tableRomExplorer {
	margin-top: 20px;
	min-width: 50px;
}

#tableRomExplorer thead {
	background-color: #333;
}

#tableRomExplorer thead th {
	border: 1px solid #444;
	padding: 5px 0px;
	text-align: center;
	font-weight: bold;
	font-size: 10px;
}

#tableRomExplorer thead th:nth-child(1) { width: 100px; font-size: 13px; }
#tableRomExplorer thead th:nth-child(2) { width: 10px; }
#tableRomExplorer thead th:nth-child(3) { width: 10px; }
#tableRomExplorer thead th:nth-child(4) { width: 10px; }
#tableRomExplorer thead th:nth-child(5) { width: 10px; }
#tableRomExplorer thead th:nth-child(6) { width: 10px; }
#tableRomExplorer thead th:nth-child(7) { width: 10px; }
#tableRomExplorer thead th:nth-child(8) { width: 10px; }
#tableRomExplorer thead th:nth-child(9) { width: 10px; }
#tableRomExplorer thead th:nth-child(10) { font-size: 13px; }

#tableRomExplorer tbody tr:hover {
	background-color: #1b1511;
}

#tableRomExplorer td {
	text-align: center;
	padding: 0px;
}

.trOdd { background-color: #111; }
.trEven { background-color: #222; }

.colorBlock {
	width: 19px;
	height: 20px;
	text-align: center;
	margin: auto;
}

.addrChange {
	margin-top: 35px;
	border: 1px solid #555;
	background-color: #333;
	padding: 5px;
	width: 35px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	transition: all .3s ease;
}

.addrChange:hover { color: #d53; }
.addrDecrease { float: left; }
.addrIncrease { float: right; }

.structDefBlock {
	padding: 10px;
	margin: 10px 0px;
	border-radius: 3px;
	background-color: #333;
	color: #d90;
	border: 1px solid #222;
	display: block;
	white-space: pre;
}

.error {
	border: 1px solid red;
	background-color: #200;
	color: #f00;
	padding: 10px;
	width: 95%;
	min-height: 400px;
	margin: auto;
}

.debugDiv {
	margin: 5px;
	padding: 5px;
	border: 1px solid #555;
	white-space: pre !important;
	border: 1px solid #555;
	color: lime;
	background-color: #000;
	text-align: left;
}

.div404 {
	width: 500px;
	border: 5px solid #fa3;
	border-radius: 4px;
	text-align: center;
	padding: 40px 20px 60px 20px;
	margin: 20px auto 40px auto;
}

/* various classes */
.border { border: 1px solid dodgerblue; }
.borderRed { border: 1px solid #f00; }
.alignCenter { text-align: center; }
.marginAuto { margin: auto; }
.width100p { width: 99%; }
.width80p { width: 80%; }
.bgColorBlack { background-color: #000; }
.floatLeft { float: left; }
.floatRight { float: right; }
.clearBoth { clear: both; }
.pre { white-space: pre; }
.displayNone { display: none; }

