/**********************************************************
// Body
**********************************************************/
html { height: 100%; }
body {
	font-family: "segoe ui", arial, verdana, sans-serif;
	font-size: 12px;
	overflow-x: hidden;
	cursor: default;
	display: block;
	}
	
body *,
body *:before,
body *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	}

a:hover { text-decoration: underline; }
a {
	text-decoration: none;
	cursor: pointer;
	}

.Hidden { display: none; }

.Clear       { *zoom: 1; }
.Clear:after { clear: both; }
.Clear:before,
.Clear:after {
	content: " ";
	display: table;
	}

.Trans {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}
	
.No-Select {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
			user-select: none;
	}

p {
	margin: 5px 5% 0 5%;
	padding: 5px 0;
	width: 90%;
	line-height: 20px;
	text-align: justify;
	}
	
p strong,
p .fa { font-size: 18px; }
p .fa { margin-right: 5px; }
	
/**********************************************************
// Box
**********************************************************/
#Box {
	margin: 200px auto 0 auto;
	width: 100%;
	min-width: 200px;
	max-width: 500px;
	min-height: 100px;
	overflow: hidden;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	}

/**********************************************************
// Header
**********************************************************/
#Header {
	text-align: center;
	overflow: hidden;
	}

#Header-Title {
	width: 100%;
	height: 36px;
	line-height: 38px;
	text-transform: uppercase;
	font-size: 12px;
	overflow: hidden;
	}
	
#Header-Details {
	width: 100%;
	min-height: 70px;
	}

#Header-Details h1 {
	line-height: 68px;
	font-size: 30px;
	}

#Header-Details h2 {
	padding-bottom: 20px;
	line-height: 20px;
	font-size: 18px;
	}
	
/**********************************************************
// Tabs
**********************************************************/
#Tabs {
	padding-top: 10px;
	width: 100%;
	height: 56px;
	text-align: center;
	}
	
#Tabs ul { width: 100%; }

#Tabs .Tabs-4 li { width: 25%;   }
#Tabs .Tabs-3 li { width: 33.3%; }
#Tabs .Tabs-2 li { width: 50%;   }

#Tabs span { display: none; }
#Tabs li.Active { cursor: default; }
#Tabs li {
	height: 100%;
	min-width: 46px;
	line-height: 46px;
	display: block;
	font-size: 24px;
	cursor: pointer;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	   -moz-border-radius-topleft: 4px;
	   -moz-border-radius-topright: 4px;
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
	float: left;
	}

/**********************************************************
// Social Links
**********************************************************/
#Social-Links {
	width: 100%;
	height: 50px;
	text-align: center;
	float: right;
	}

#Social-Links span { display: none;  }
#Social-Links li {
	margin: 10px 5px 0 5px;
	width: 40px;
	height: 40px;
	line-height: 34px;
	display: inline-block;
	font-size: 20px;
	}

/**********************************************************
// Section: Classes
**********************************************************/
.Section {
	margin: auto;
	width: 100%;
	min-height: 100px;
	overflow: hidden;
	}
	
.Section-Title {
	margin-top: 10px;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: normal;
	}
	
/**********************************************************
// Section: Contact Form
**********************************************************/
#Form {
	margin: auto;
	width: 98%;
	padding: 0 1% 15px 1%;
	text-align: center;
	}
	
#Form-Status  {
	margin: 10px 1% 0 1%;
	width: 98%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: 14px;
	border-radius: 4px;
	overflow: hidden;
	display: none;
	}
	
#Form input,
#Form textarea { border: 0; }
#Form label { display: none; }
	
#Form input[type="text"] {
	margin: 15px 1% 0 1%;
	padding: 7px 5px;
	width: 48%;
	height: 30px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	float: left;
	}
	
#Form textarea {
	margin: 15px 1% 0 1%;
	padding: 5px;
	width: 98%;
	height: 70px;
	line-height: 20px;
	resize: vertical;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	float: left;
	}

#Form input[type="submit"] {
	margin-top: 15px;
	padding: 0;
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	cursor: pointer;
	}
	
#Form input[type="submit"]:active {
	-webkit-box-shadow: 0 0 0 #000;
	   -moz-box-shadow: 0 0 0 #000;
			box-shadow: 0 0 0 #000;
	position: relative;
	top: 2px;
	}
	
#Form input[type="submit"]:hover {
	-webkit-transition: background 0.2s ease-in-out;
	   -moz-transition: background 0.2s ease-in-out;
		-ms-transition: background 0.2s ease-in-out;
		 -o-transition: background 0.2s ease-in-out;
			transition: background 0.2s ease-in-out;
	}

#Form-Captcha {
	margin: 15px auto 0 auto;
	width: 100%;
	max-width: 304px;
	}

#Form-Sending {
	margin: 15px auto 0 auto;
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	display: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	}
	
/**********************************************************
// Section: Domain Stats
**********************************************************/
#Domain-Stats {
	padding-bottom: 20px;
	min-height: 160px;
	text-align: center;
	overflow: hidden;
	}

.Stats-Section {
	margin-top: 20px;
	width: 45%;
	min-width: 200px;
	height: 90px;
	display: inline-block;
	}
	
.Stats-Section h2 { font-size: 15px; }
.Stats-Section h3 { font-size: 48px;  }
	
/**********************************************************
// Section: Additional Domain
**********************************************************/
#Additional-Domains { min-height: 160px; }

#Domains-List {
	margin: 0 5%;
	padding: 10px 0 20px 0;
	width: 90%;
	}

#Domains-List li {
	margin-top: 3px;
	padding: 0 5%;
	width: 90%;
	min-height: 26px;
	line-height: 26px;
	font-size: 12px;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
	}

#Domains-List span {
	width: 30px;
	height: 100%;
	font-weight: bold;
	display: block;
	float: left;
	}
	
/**********************************************************
// Footer
**********************************************************/
#Footer {
	margin: 10px auto 0 auto;
	padding-bottom: 10px;
	width: 100%;
	min-width: 200px;
	max-width: 500px;
	line-height: 30px;
	text-align: center;
	font-size: 20px;
	}
	
#Footer i {	margin: 0 5px; }
#Footer strong { text-transform: uppercase; }

/**********************************************************
// Media Queries
**********************************************************/
@media all and (max-width: 750px) {
	#Box { margin-top: 100px; }
}

@media all and (max-width: 500px) {
	#Box {
		margin-top: 0;
		-webkit-border-radius: 0;
		   -moz-border-radius: 0;
				border-radius: 0;
	}
}

@media all and (max-width: 410px) {
	#Header-Details h1 { font-size: 20px; }
	#Header-Details h2 { font-size: 15px; }
	.Section-Title { font-size: 12px; }
	#Footer { font-size: 18px; }
	
	#Form input[type="text"],
	#Form textarea {
		margin: 15px 2% 0 2%;
		width: 96%;
		}
}

@media all and (max-width: 240px) {
	#Header-Details h1 { font-size: 18px; line-height: 58px; }
	#Header-Details h2 { font-size: 12px; }
	
	#Domains-List { text-align: center; }
	#Domains-List span { display: none; }
}