/*Styles Relating to Dev Tools Area Only*/


/* ####################################### */
/* ############# NO RESULTS ############## */
/* ####################################### */

.start-options {
	margin: 0;
	padding: 20px 0;
	list-style: none;
	overflow: hidden;
}

.start-options li {
	float: left;
	width: 460px;
}

.start-options li em {
	color: #98D30E ;
	font-style: normal;
}

.option-basic {
	padding-right: 18px;

}

.option-advanced {
	padding-left: 21px;
	border-left: 1px dashed #ccc;
}

/* ####################################### */
/* ######### TEST RESULT LISTING ######### */
/* ####################################### */

.test-results {
	margin: 0;
	padding: 0;
	list-style: none;
}

.test-result-set {
	border-bottom:1px dashed #CCCCCC;
	clear:both;
	margin-bottom:40px;
	overflow:hidden;
	padding-bottom:20px;
}

.test-result-set ol {
	margin: 0;
	padding: 0;
	list-style: none;
}


.test-result {
	margin-bottom: 20px;
	background-color: #4C332F;
	overflow:hidden;
	padding: 20px;
	float: left;
	width: 420px;
	margin-right: 20px;
}

.rgba .test-result {
	background-color: rgba(190, 172, 150, 0.15);
}


/* SET A CSS COUNTER (http://www.w3schools.com/CSS/pr_gen_counter-increment.asp) */
.test-result-set {
	counter-reset: li;
}

/* INCREMENT CSS COUNTER */
.test-result .ip-address:before {
	content: "Result " counter(li) ": ";
	counter-increment: li;
}






	
.test-result table {
	margin: 1em 0 0 0;
}

.test-result td,
.test-result th {
	padding: 0 1em 1em 0;
}

.test-result th {
	position: absolute;
	left: -9999px;
}

.test-result td span {
	display: block;
	height: 40px;
	line-height: 40px;
	padding-left: 50px;
	background-repeat: no-repeat;
	background-position: 0 50%;
}



.test-result .cta {
	float: right;
	line-height: 18px;
}

.test-result .cta span {
	padding: 10px 15px;
}


/* ####################################### */
/* ########## RESULT FULL DETAIL ######### */
/* ####################################### */

.full-result {
	margin-top: 40px;
	padding-top:40px;
	border-top: 1px dashed #CCCCCC;
}

.full-result-desc {
	font-size: 1.4em;
}