/* ==================================================================

Reversal CSS

Main Color: #ff7500

================================================================== */


/* ==================================================================
CSS Reset
================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
/*	list-style: none;	*/
	margin-left: 20px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==================================================================
Basic Document Styles
================================================================== */

body {
	line-height: 1;
/*	color: #555555;	*/
	color: #444444;
/*	font: 13px/24px 'Noto Sans JP', 'Yusei Magic', 'Lato', Helvetica, Arial, sans-serif;	*/
	font: 16px/24px 'Yusei Magic', 'Lato', Helvetica, Arial, sans-serif;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
}

input,
select,
textarea { 
/*	font: 13px/24px 'Noto Sans JP', 'Yusei Magic', 'Lato', Helvetica, Arial, sans-serif;	*/
	font: 16px/24px 'Noto Sans JP', 'Yusei Magic', 'Lato', Helvetica, Arial, sans-serif;
}

hr {
/*	background: #e1e1e1;	*/
	background: #f8f8f8;
	margin: 40px 0 40px 0;
/*	height: 1px;	*/
	height: 2px;
	border: none;
	width: 100%;
	float: left;
}

hr.fancy-hr, hr.fancy-hr-alt {
	position: relative;
	float: left;
}

hr.fancy-hr:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
/*	width: 75px;	*/
	width: 96px;
/*	height: 1px;	*/
	height: 2px;
	background: #ff7500;
	display: block;
}

hr.fancy-hr-alt:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 75px;
	height: 1px;
	background: #ff7500;
	display: block;
}

.clearfix:after { 
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	font-size: 0;
}

.clearfix { 
	display: inline-block; 
	*zoom: 1;
}

* html .clearfix { 
	height: 1%;
}

.clearfix {
	display: block;
}

.clear {
	clear: both;
	display: block;
	font-size: 0px;
	height: 0px;
	line-height: 0;
	width: 100%;
	overflow:hidden;
}

::selection {
    background: #ff7500;
    color: #fff;
}

::-moz-selection {
    background: #ff7500; /* Firefox */
    color: #fff;
}

::-webkit-selection {
	background: #ff7500; /* Safari */
	color: #fff;
}

/* ==================================================================
Typography
================================================================== */

h1 {
	font-size: 50px;
	line-height: 58px;
	font-weight: 300;
	color: #333333;
}

h2 {
	font-size: 28px;
	line-height: 34px;
	font-weight: 300;
	margin-bottom: 30px;
}

h3 {
/*	font-size: 16px;	*/
	font-size: 18px;
	line-height: 34px;
/*	color: #555555;	*/
	color: #444444;
	margin-bottom: 10px;
	font-weight: bold;	/*	add	*/
}

h4 {
/*	color: #555555;	*/
	color: #444444;
	font-size: 16px;
	font-weight: 400;
}

p {
	margin-bottom: 10px;
}

a, a > * {
	color: #ff7500;
	text-decoration: none;
	-webkit-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, padding .3s ease;
	   -moz-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, padding .3s ease;
	    -ms-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, padding .3s ease;
	     -o-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, padding .3s ease;
	        transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, padding .3s ease;
}

a:hover, a > *:hover {
	color: #363636;
	text-decoration: none;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

b {
	text-decoration: underline solid;
}

/* ==================================================================
Basic Layout Styles
================================================================== */

.text-left {
	text-align: left !important;
}

.text-right { 
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.float-left {
	float: left !important;
}

.float-right {
	float: right !important;
}

.clear {
	clear: both;
}

.all-margin {
	margin: 20px !important;
}

.left-margin {
	margin-left: 20px !important;
}

.right-margin {
	margin-right: 20px !important;
}

.top-margin {
	margin-top: 20px !important;
}

.bottom-margin {
	margin-bottom: 20px !important;
}

.no-margin {
	margin: 0 !important;
}

.no-left-margin {
	margin-left: 0 !important;
}

.no-right-margin {
	margin-right: 0 !important;
}

.no-top-margin {
	margin-top: 0 !important;
}

.no-bottom-margin {
	margin-bottom: 0 !important;
}

.disabled,
.disabled i {
	color: #eaeaea !important;
}

.custom-icon-list li i {
	float: left;
	font-size: 14px;
	margin-top: 5px;
	color: #333333;
	padding-right: 15px;
}

.custom-icon-list li p {
	margin-left: 30px;
}

.button {
	background: #f26122;
	padding: 6px 10px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
	margin-top: 20px;
}

.button:hover {
	color: #ffffff;
	background: #252525;
}

/* ==================================================================
Progress Bar
================================================================== */

.progress {
	height: 40px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	margin-bottom: 10px;
}

.progress .bar {
	background: #c2c2c2 !important;
	line-height: 40px;
	text-align: left;
	text-indent: 15px;
	font-style: italic;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-text-shadow: none;
	-moz-text-shadow: none;
	text-shadow: none;
	-webkit-transition: background-color .3s ease;
	   -moz-transition: background-color .3s ease;
	    -ms-transition: background-color .3s ease;
	     -o-transition: background-color .3s ease;
	        transition: background-color .3s ease;
}

.progress:hover .bar {
	background: #ff7500 !important;
}

/* ==================================================================
Forms
================================================================== */

input, textarea {
	background: #f2f2f2 !important;
	-webkit-appearance: none;
/*	color: #959595 !important;	*/
	color: #444444 !important;
/*	border: none !important;	*/
	width: 100%;
/*	padding: 10px 20px !important;	*/
	padding: 4px 4px !important;
	margin: 0px !important;
/*	font-style: italic;	*/
	font-size: 14px;	/*	add	*/
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	height: auto !important;
/*	-webkit-border-radius: 0px !important;	*/
	-moz-border-radius: 0px !important;
/*	border-radius: 0px !important;	*/
/*	margin-bottom: 20px !important;	*/
	margin-bottom: 2px !important;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-transition: background-color .3s ease, color .3s ease !important;
	   -moz-transition: background-color .3s ease, color .3s ease !important;
	    -ms-transition: background-color .3s ease, color .3s ease !important;
	     -o-transition: background-color .3s ease, color .3s ease !important;
	        transition: background-color .3s ease, color .3s ease !important;
}

select {
	background: #f2f2f2 !important;
	-webkit-appearance: none;
/*	color: #959595 !important;	*/
	color: #444444 !important;
/*	border: none !important;	*/
	width: 100%;
/*	padding: 10px 20px !important;	*/
	padding: 4px 4px !important;
	margin: 0px !important;
/*	font-style: italic;	*/
	font-size: 14px;	/*	add	*/
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	height: 30px !important;
/*	-webkit-border-radius: 0px !important;	*/
	-moz-border-radius: 0px !important;
/*	border-radius: 0px !important;	*/
/*	margin-bottom: 20px !important;	*/
	margin-bottom: 2px !important;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-transition: background-color .3s ease, color .3s ease !important;
	   -moz-transition: background-color .3s ease, color .3s ease !important;
	    -ms-transition: background-color .3s ease, color .3s ease !important;
	     -o-transition: background-color .3s ease, color .3s ease !important;
	        transition: background-color .3s ease, color .3s ease !important;
}


textarea {
	width: 100%;
	padding: 10px 20px;
	resize: both;
	margin-top: 0px;
/*	font-style: italic;	*/
}
	
input:hover, textarea:hover, select:hover {
	background: #e1e1e1 !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
/*	border: none !important;	*/
}
	
input:focus, textarea:focus, select:focus {
	background: #ff7500;
	color: #ffffff;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
/*	border: none !important;	*/
}

input[type="submit"], button, a.button {
	text-transform: none;
	width: auto;
	margin-top: 20px;
	font-style: normal;
	font-weight: normal;
/*	background: #ff7500 !important;	*/
/*	color: #ffffff !important;	*/
	background: none !important;
	color: #ff7500 !important;
	cursor: pointer;
	border: thin solid #ff7500;	/* add	*/
	border-radius: 4px;	/* add	*/
}

input[type="submit"]:hover, button:hover, a.button:hover {
/*	background: #252525 !important;	*/
	background: #ff7500 !important;
	color: #ffffff !important;
}

input[type="submit"].deletebutton {
	text-transform: none;
	width: auto;
	margin-top: 20px;
	margin-left: 20px !important;
	font-style: normal;
	font-weight: normal;
/*	background: #ff7500 !important;	*/
/*	color: #ffffff !important;	*/
	background: none !important;
	color: #5e00e0 !important;
	cursor: pointer;
	border: thin solid #5e00e0;	/* add	*/
	border-radius: 4px;	/* add	*/
}

input[type="submit"].deletebutton:hover {
/*	background: #252525 !important;	*/
	background: #5e00e0 !important;
	color: #ffffff !important;
}

input[type="submit"] {
	padding: 6px 10px !important;
	min-width: 128px !important;	/*	add	*/
}

select, option {
	cursor: pointer;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #b0b0b0; }

input:-moz-placeholder, textarea:-moz-placeholder { color: #b0b0b0; }

input.placeholder, textarea.placeholder { color: #b0b0b0; }

/* ==================================================================
Preloader
================================================================== */

#preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999;
}

#loading-animation {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/loading-animation.gif); 
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

/* ==================================================================
Main Navigation
================================================================== */

a.logo {
/*	margin: 15px 0 0 20px;	*/
	margin: 6px 0 0 6px;
	float: left;
}

nav#main-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	width: 100%;
/*	height: 56px;	*/
	height: auto;
	background: white;
	min-width: 300px;
}

nav#main-nav ul {
	float: right;
	margin-right: 10px;
}

nav#main-nav ul li {
	float: left;
	display: inline-block;
	line-height: 14px;
}

nav#main-nav ul li a {
	color: #333333;
	text-transform: uppercase;
	padding: 20px 20px;
	display: inline-block;
}

nav#main-nav ul li a.active {
	color: #ff7500;
}

body.no-intro nav#main-nav {

}

/* ==================================================================
Footer Navigation
================================================================== */

aside#clientinfo {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
	width: 100%;
	height: auto;
	min-width: 300px;
}

aside#clientinfo p {
	font-size: small;
	text-align: center;
	width: 100%;
	background: white;
	margin-bottom: 0;
	line-height: initial;
}

/* ==================================================================
Responsive Navigation
================================================================== */

#main-nav #responsive-nav {
	display: none;
	float: right;
/*	width: 50px;	*/
	width: 62px;
/*	height: 50px;	*/
	height: 62px;
/*	background: #333333;	*/
	background: #3f4e5c;
	text-align: center;
/*	line-height: 50px;	*/
	line-height: 62px;
}

#main-nav #responsive-nav:hover i {
	color: #ffffff;
}

#main-nav .responsive-nav {
	margin-bottom: 20px;
	padding: 10px;
}

/* ==================================================================
Sections
================================================================== */

section {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 50;
	overflow: auto;
/*	background: #f2f2f2;	*/
	background: #f0f2f4;
}

section .container {
/*	padding-top: 150px;	*/
	padding: 150px 30px 0px;
	background-color: rgba(255, 255, 255, 0.88);
	background-color: rgb(255, 255, 255, 0.88);
}

section > .container {
	padding-bottom: 80px;
}

section .center
{
	margin: 0 auto !important;
    display: block;
}

section .fontauto12px
{
	font-family: auto; 
	font: 12px/20px auto;
}

section .fontauto14px
{
	font-family: auto; 
	font: 14px/22px auto;
}

section .fontauto16px
{
	font-family: auto; 
	font: 16px/24px auto;
}

p a {
	text-shadow: 1px 1px gray;
}


/* ==================================================================
Intro(Top Section)
================================================================== */

#intro {
	/*background: url(http://placehold.it/640x480) no-repeat center center fixed;*/
	background: url('../images/top_1280x800_009.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	text-align: center;
	padding-top: -50px;
}

#intro > .container {
	padding-top: 150px;
	padding: 150px 0px 0px;
	background-color: rgba(255, 255, 255, 0.0);
	background-color: rgb(255, 255, 255, 0.0);
}

#intro h1 {
/*	font-size: 60px;	*/
	font-size: 42px;
/*	color: #111111;	*/
	color: #f0f0f0;
	margin-bottom: 0px;
	line-height: 72px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: 700;
}

#intro h1 span {
	font-family: auto;	/*	add	*/
	font-size: 60px;	/*	add	*/
	color: #ff7500;
}

#intro h1 span.subText {
	font-size: 33.3%;
	vertical-align: bottom;
	position: relative;
	top: 0.8em;
}

#intro h2 {
	color: #ffffff;
	padding-top: 20px;
	padding-bottom: 20px;
}

.get-started {
	position: relative;
/*	margin: 50px auto 0px auto;	*/
	margin: 24px auto 0px auto;
	display: block;
	text-align: center;
	width: 130px;
	padding: 10px 5px;
/*	background-color: #ff7500;	*/
	color: #ffffff;
	border: thin solid #ffffff;	/* add	*/
    border-radius: 4px;	/* add	*/
}

.get-started i {
/*	color: #111111;	*/
	color: #ffffff;
	margin-left: 10px;
}

.get-started:hover {
	color: #ffffff;
/*	background: #111111;	*/
	background: #ff7500;
	border: thin solid #ff7500;	/* add	*/
    border-radius: 4px;	/* add	*/
	font-weight: bold;
}

.get-started:hover i {
/*	color: #ff7500;	*/
	color: #ffffff;
	font-weight: bold;
}

/* ==================================================================
About
================================================================== */

#about {
	background: url('../images/top_1280x800_004.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
How to Use
================================================================== */

#howtouse {
	background: url('../images/top_1280x800_002.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Let's try
================================================================== */

#lets-try {
	background: url('../images/top_1280x800_006.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Terms
================================================================== */

#terms {
	background: url('../images/top_1280x800_004.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Join us
================================================================== */

#join-us {
	background: url('../images/top_1280x800_005.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Contact us / Forgot Passwd
================================================================== */

#contact-us, #forgot-passwd {
	background: url('../images/top_1280x800_009.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Login / Members / Logout
================================================================== */

#login, #members {
	background: url('../images/top_1280x800_006.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Logout
================================================================== */

#logout {
	background: url('../images/top_1280x800_005.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Log info
================================================================== */

#loginfo {
	background: url('../images/top_1280x800_007.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
User info
================================================================== */

#userinfo {
	background: url('../images/top_1280x800_005.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
Domain info
================================================================== */

#domaininfo {
	background: url('../images/top_1280x800_002.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
IP info
================================================================== */

#ipinfo {
	background: url('../images/top_1280x800_006.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/background.jpg', sizingMethod='scale')";
	padding-top: -50px;
}

/* ==================================================================
User Info / Child ID
================================================================== */
/* Table 20:80 */
.table-2-8 {
}

.table-2-8 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-2-8 > .thead > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 20%;
	padding: 0px 4px;
}

.table-2-8 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 80%;
	padding: 0px 10px;
}

.table-2-8 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-2-8 > .tbody > .tr > .th {
	display: table-cell;
	width: 20%;
	padding: 0px 4px;
}

.table-2-8 > .tbody > .tr > .td {
	display: table-cell;
	width: 80%;
	padding: 0px 10px;
}

/* Table 30:70 */
.table-3-7 {
}

.table-3-7 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-3-7 > .thead > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 30%;
	padding: 0px 4px;
}

.table-3-7 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 70%;
	padding: 0px 10px;
}

.table-3-7 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-3-7 > .tbody > .tr > .th {
	display: table-cell;
	width: 30%;
	padding: 0px 4px;
}

.table-3-7 > .tbody > .tr > .td {
	display: table-cell;
	width: 70%;
	padding: 0px 10px;
}

/* Table 50:50 */
.table-5-5 {
}

.table-5-5 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-5-5 > .thead > .tr > .th,
.table-5-5 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 50%;
	padding: 0px 4px;
}

.table-5-5 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-5-5 > .tbody > .tr > .th,
.table-5-5 > .tbody > .tr > .td {
	display: table-cell;
	width: 50%;
	padding: 0px 4px;
}

/* Table 33:33:33 */
.table-3-3-3 {
}

.table-3-3-3 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-3-3-3 > .thead > .tr > .th,
.table-3-3-3 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 33%;
	padding: 0px 4px;
}

.table-3-3-3 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-3-3-3 > .tbody > .tr > .th,
.table-3-3-3 > .tbody > .tr > .td {
	display: table-cell;
	width: 33%;
	padding: 0px 4px;
}

/* Table 2:4:4 */
.table-2-4-4 {
}

.table-2-4-4 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-2-4-4 > .thead > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 28%;
	padding: 0px 4px;
}

.table-2-4-4 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 36%;
	padding: 0px 4px;
}

.table-2-4-4 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-2-4-4 > .tbody > .tr > .th {
	display: table-cell;
	width: 28%;
	padding: 0px 4px;
}

.table-2-4-4 > .tbody > .tr > .td {
	display: table-cell;
	width: 36%;
	padding: 0px 4px;
}

/* Table 2:4:4 */
.table-2-4-4 {
}

.table-2-4-4 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-2-4-4 > .thead > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 28%;
	padding: 0px 4px;
}

.table-2-4-4 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 36%;
	padding: 0px 4px;
}

.table-2-4-4 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-2-4-4 > .tbody > .tr > .th {
	display: table-cell;
	width: 28%;
	padding: 0px 4px;
}

.table-2-4-4 > .tbody > .tr > .td {
	display: table-cell;
	width: 36%;
	padding: 0px 4px;
}

/* Table 1:1:1:1(25:25:25:25) */
.table-1-1-1-1 {
}

.table-1-1-1-1 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-1-1-1-1 > .thead > .tr > .th,
.table-1-1-1-1 > .thead > .tr > .td {
	display: table-cell;
	background: #aaacae !important;
	width: 25%;
	padding: 0px 4px;
}

.table-1-1-1-1 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-1-1-1-1 > .tbody > .tr > .th,
.table-1-1-1-1 > .tbody > .tr > .td {
	display: table-cell;
	width: 25%;
	padding: 0px 4px;
}

/* Table 20:10:50:20 (for Domain Info) */
.table-2-1-5-2 {
}

.table-2-1-5-2 > .thead > .tr {
	display: table;
	width: 100%;
}

.table-2-1-5-2 > .thead > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 100%;
	padding: 0px 4px;
}

.table-2-1-5-2 > .thead > .tr > .td1 {
	display: table-cell;
	background: #aaacae !important;
	width: 20%;
	padding: 0px 4px;
}

.table-2-1-5-2 > .thead > .tr > .td2 {
	display: table-cell;
	background: #aaacae !important;
	width: 10%;
	padding: 0px 4px;
}

.table-2-1-5-2 > .thead > .tr > .td3 {
	display: table-cell;
	background: #aaacae !important;
	width: 50%;
	padding: 0px 4px;
}

.table-2-1-5-2 > .thead > .tr > .td4 {
	display: table-cell;
	background: #aaacae !important;
	width: 20%;
	padding: 0px 4px;
}

.table-2-1-5-2 > .tbody > .tr {
	display: table;
	width: 100%;
}

.table-2-1-5-2 > .tbody > .tr > .th {
	display: table-cell;
	background: #aaacae !important;
	width: 100%;
}

.table-2-1-5-2 > .tbody > .tr > .td1 {
	display: table-cell;
	width: 20%;
}

.table-2-1-5-2 > .tbody > .tr > .td2 {
	display: table-cell;
	width: 10%;
}

.table-2-1-5-2 > .tbody > .tr > .td3 {
	display: table-cell;
	width: 50%;
}

.table-2-1-5-2 > .tbody > .tr > .td4 {
	display: table-cell;
	width: 20%;
}

.table-2-1-5-2 > .tbody > .tr > .td {
	display: table-cell;
	width: 100%;
}


.table-title {
	font-weight: bold;
	background: #aaacae !important;
}

.table-border {
	border-left: 1px solid #aaacae;
	border-right: 1px solid #aaacae;
	border-bottom: 1px solid #aaacae;
}

.table-check {
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	line-height: 20px;
	padding: 4px;
	background-color: #eaecee !important;
	overflow-wrap: anywhere;
}

/* ==================================================================
features
================================================================== */

.features .feature-box .box-content {
/*	background: white; */
	background-color: rgb(255, 255, 255, 0.9);
	padding: 30px;
	text-align: center;
}

.features .feature-box .box-content .feature-icon {
	font-size: 50px;
	color: #ff7500;
	margin-bottom: 10px;
	display: inline-block;
}

.features .feature-box .box-content h4 {
	margin-bottom: 10px;
	color: #111111;
}

.features .feature-box .box-content p {
/*	color: #555555;	*/
	color: #444444;
}

.features-list .feature-box .feature-icon {
	float: left;
	margin-top: 15px;
}

.features-list .feature-box .feature-icon i {
	font-size: 20px;
	color: #111111;
}

.features-list .feature-box .feature-text {
	padding-left: 40px;
}

.features-list .feature-box .feature-text h3 {
	margin-bottom: -7px;
	color: #ff7500;
}

.accordion-toggle {
	background: #ebebeb;
}

.accordion-toggle i {
	color: #111111;
	padding-right: 10px;
}

.accordion-body {
	background: #ffffff;
}

/* ==================================================================
Terms
================================================================== */

#terms ul li, #terms dl dt, #terms dl dd {
	font-family: auto;	/*	add	*/
	font-size: 14px;	/*	add	*/
}

/* ==================================================================
Flexslider
================================================================== */

.flexslider {
	border: none;
	box-shadow: none;
	margin: 0px;
}

.flexslider img {
	display: block;
}

.flexslider a.flex-prev {
	width: 30px;
	height: 35px;
	background: url(../images/flexslider-left-arrow.png) no-repeat;
}

.flexslider a.flex-next {
	width: 30px;
	height: 35px;
	background: url(../images/flexslider-right-arrow.png) no-repeat;
}

/* ==================================================================
Contacts
================================================================== */

#contacts {
	background: url(http://placehold.it/1920x1500) no-repeat center center;
}

#map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	display: none;
}

#map img {
	max-width: none;
}

.contact-info {
/*	background: #ffffff;	*/
	padding: 40px;
	position: relative;
	z-index: 100;
	margin-bottom: 30px;
}

.social {
	padding: 40px;
/*	background: #ffffff;	*/
	z-index: 100;
	position: relative;
}

.social .fancy-hr {
	margin-top: 10px;
	margin-bottom: 20px;
}

.social ul {
	display: inline-block;
}

.social ul li {
	float: left;
	margin-right: 10px;
}

form.contact-form {
/*	background: #ffffff;	*/
/*	padding: 40px;	*/
	padding: 10px 40px 10px 40px;
	position: relative;
	z-index: 50;
}

form.contact-form textarea {
	height: 200px !important;
}

.form-error {
	background: #fcdcdc !important;
}

.error {
	color:lightcoral !important;
/*	padding: 10px 10px !important;	*/
	padding: 4px 10px !important;
/*	margin: 10px 0px !important;	*/
	margin: 4px 0px 10px !important;
	border: thin solid lightcoral !important;;
    border-radius: 4px !important;;
}