/*********************************************************/
/******************** BOX GENERAL ************************/
/*********************************************************/

.Box{
	float: left; 
	position: relative;
	width: 100%;
	margin: 0 0 15px;
}

/*** Header ***/

.Box .Header{
	float: left; 
	width: 100%; 
	padding: 10px 15px 0;
}

aside .Box .Header{
	padding: 0 15px !important;
}

.Box .Header.Rounded{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.Box .Header h1{
	margin: 4px 0;
}

.Box .Header h2{
	margin: 9px 0;
}

.Box .Header h3{
	margin: 11px 0;
}

/*** Content ***/

.Box .Content{
	float: left; 
	width: 100%;
	padding: 10px 15px 5px;
}

aside .Box .Content !important{
	padding: 0 15px;
}

/*********************************************************/
/******************** BOX ICONS **************************/
/*********************************************************/


.Box .Icon{
	position: relative;
	float: right;
	background-image: url('../images/icons/ring.png');
	margin-left: 0.5em;
}

.Box .Icon.Left{
	float: left;
	margin-right: 0.5em;
	margin-left: 0;
}

.Box .Icon.Inactive{ background-image: url('../images/icons/ring-inactive.png'); }

.Box .Icon .Center{
	display: table-cell;
	vertical-align: middle;
	width: 47px;
	height: 47px;
	text-align: center; 
}

/*** Label ***/

.Box .Icon .Label{
	position: absolute;
	bottom: -16px;
	left: 50%;
	margin-left: -30px;
	font-family: "Nunito";
	font-size: 0.7em;
	text-align: center;
	width: 60px;
}

/*********************************************************/
/******************** BOX VARIANTS ***********************/
/*********************************************************/


/**********************************/
/*** SHADOW BOX *******************/
/**********************************/

.Box.Shadow{
	background-color: #e8eef4;
}


/**********************************/
/*** BORDER BOX *******************/
/**********************************/

.Box.Border{
	border: 1px solid #dedede;
}

.Box .Content.Border{
	border-left: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
	border-right: 1px solid #dedede;
}

/*********************************************************/
/******************** BOX HEADER/CONTENT VARIANTS ********/
/*********************************************************/

/**********************************/
/*** PRIMARY COLOUR HEADER ********/
/**********************************/

.Box .Header.Primary{
	background-color: #252161;
	padding-bottom: 10px;
}

.Box .Header.Primary *{ color: #ffffff; }

.Box .Header.Primary + .Content.Primary{ padding-top: 0; }

/**********************************/
/*** PRIMARY COLOUR CONTENT *******/
/**********************************/

.Box .Content.Primary{
	background-color: #252161;
}

.Box .Content.Primary *{ color: #ffffff; }

/**********************************/
/*** SECONDARY COLOUR HEADER ******/
/**********************************/

.Box .Header.Secondary{
	background-color: #ec7516;
	padding-bottom: 10px;
}

.Box .Header.Secondary *{ color: #ffffff; }

.Box .Header.Secondary + .Content.Secondary{ padding-top: 0; }

/**********************************/
/*** SECONDARY COLOUR CONTENT *****/
/**********************************/

.Box .Content.Secondary{
	background-color: #ec7516;
}

.Box .Content.Secondary *{ color: #ffffff; }

/**********************************/
/*** TERTIARY COLOUR HEADER *******/
/**********************************/

.Box .Header.Tertiary{
	background-color: #e8eef4;
	padding-bottom: 10px;
}

.Box .Header.Tertiary + .Content.Tertiary{ padding-top: 0; }

/**********************************/
/*** TERTIARY COLOUR CONTENT ******/
/**********************************/

.Box .Content.Tertiary{
	background-color: #e8eef4;
}

/**********************************/
/*** ICONIC HEADER ****************/
/**********************************/

.Box .Header.Iconic{
	padding: 0 2.0em;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.Box .Header.Iconic h1{
	line-height: 27px;
	font-size: 1.0em;
}

.Box .Header.Iconic .Icon{
	position: absolute;
	right: 4px;
	top: -4px;
}


/**********************************/
/*** STEPS HEADER *****************/
/**********************************/

.Box .Header.Steps{
	background-image: url('../images/obj/steps.png');
	background-repeat: no-repeat;
	background-position: 85% 16px;
	padding-bottom: 1em;
}

.Box .Header.Steps .Icon{
	margin: 0 10px;
}

.Box .Header.Steps .Icon.Inactive{
	margin: 0 5px;
}


/*********************************************************/
/******************** TAB BOX ****************************/
/*********************************************************/


.Box.Tab-Box .Header.Tabs{
	padding: 0;
	background: none;
}

.Box.Tab-Box .Header.Tabs a{
	float: left;
	padding: 17px 0 20px 0;
	text-align: center;
	width: 50%;
	
	font-family: "Nunito";
	font-size: 0.8em;
	font-weight: bold;
	text-transform: uppercase;
	color: #b3b2c2;
	background-image: url('../images/elem/tab.png');
	background-position: bottom;
	position: relative;
	top: 7px;
}

.Box.Tab-Box .Header.Tabs a.Selected,
.Box.Tab-Box .Header.Tabs a:hover{
	color: #ffffff;
	text-decoration: none;
	background-image: url('../images/elem/tab-active.png');
	background-position: bottom;
}

.Box.Tab-Box .Content{
	padding: 25px;
}

@media only screen and (max-width: 783px) {
	.Box.Tab-Box .Header.Tabs a{
		width: 100%;
	}
}