body {
	background: #ffffff;
	color: #000000;
}

h1 {
	color: #ff0000;
	margin-top: 0;
}
input, textarea {
	border: 1px solid #aaa;
	border-radius: 2px;
	resize: none;
	outline: none; /* Disable focus outline (for Chrome mainly) */
}
input:focus, textarea:focus {
	border: 2px solid #F24C27 !important;
}
table {
	margin: 0 auto;
	font-size: 0.9em;
}
td {
	margin: 0;
	padding: 0;
}
a {
	color: #024959;
	cursor: pointer;
	text-decoration: underline;
}
a:hover {
	color: #F24C27;
}
.col {
	float: left;
	margin: 2px;
	padding: 5px 0;
	width: 32%;
}
.hint {
	font-weight: bold;
	color: white;
	background: #F24C27;
}
.scroller {
	height: 400px;
	overflow: auto;
}
.executed {
	border-right: solid 2px #024959 !important;
}
.errored {
	border-right: solid 2px red !important;
}
.message.error {
	color: red;
}
#wrapper {

	margin: 0 auto;
	text-align: center;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 2em
	border-radius: 2px;
}
#memory h1 {
	margin-bottom: 10px;
}
#machineCode h1 {
	margin-bottom: 5px;
}
#machineCode label {
	font-size: 0.8em;
}

#txtAccumulator {
	height: 20px;
	width: 80px;
	text-align: right;
}
#txtProgramCounter {
	height: 20px;
	width: 80px;
	text-align: right;
}
#txtMachineCode {
	height: 350px;
	width: 60px;
	text-align: right;
}
#txtMnemonicCode {
	height: 350px;
	width: 150px;
	background: #F2EFDC;
	resize: both;
}
#txtLineNo {
	height: 350px;
	width: 30px;
	background: #ffffff;
	text-align: right;
	overflow: hidden;
	border: none;
}
#tblMemory {
	font-size: 1.2em;
	border-collapse: collapse;
}
#tblMemory input {
	width: 50px;
    border-width: 0;
    padding: 0;
	margin: 0;
	font-size: 1em;
}
#tblReference {
	text-align: left;
	border-collapse: collapse;
}
#tblReference td {
	padding: 2px 5px;
	border: 1px solid #aaa;
	font-size: 1.2em;
}
#txtInputs, #txtOutputs {
	height: 80px;
}
#title {
	float: left;
	margin-top: 15px;
}
#messages h1 {
	margin-top: 15px;
}
#logo {
	float: left;
}
#divExample {
	margin: 0 0 10px 0;
	font-size: 0.6em;
}
#btnRevert {
	display: none;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}
.cf:after {
	clear: both;
}
.cf { /* Doesn't validate. */
	*zoom: 1;
}