.clear:before, .clear:after { 
	content: " "; 
	display: table; 
}

.clear:after { 
	clear: both; 
}

/***Buttons***/
.button {
	margin: 5px 5px 5px 0;	
	display: inline-block;
	line-height: 1;
}

.button {
	text-decoration: none !important;
}

.button.rounded_corner {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-ms-border-radius: 5px;
}

.button:hover {
	background: #515e6c !important;
	color: white !important;
}

.button.small {
	padding: 8px 14px;
	font-size: 1rem;
}

.button.medium {
	padding: 12px 16px;
	font-size: 1.2rem;
}

.button.large {
	padding: 17px 21px;
	font-size: 1.5rem;
}

/***Dropcap***/
.dropcap {
	font-size: 55px;
	font-weight: bold;
	line-height: 33px;
	margin-right: 6px;
	text-align: center;
	text-transform: uppercase;
	float: left;
	position: relative;
	top: 8px;
}

.dropcap-bg {
	margin-right: 8px;
	padding: 5px 5px 7px 5px;
	color: white;
}


/***Intro text***/
.intro-text {
	font-size: 1.2rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #dedede;
}


/***Columns***/
.inner-row {
	width: auto;
}

.inner-row:before, .inner-row:after { 
	content: " "; 
	display: table; 
}

.inner-row:after { 
	clear: both; 
}

.inner-row [class*='col-'] {
	float: left;
	margin-right: 4%;
	margin-bottom: 1.3rem;
}

.inner-row .last {
	margin-right: 0; 
}

.inner-row .col-1-2 {
	width: 48%;
}

.inner-row .col-1-3 {
	width: 30.66%;
}

.inner-row .col-2-3 {
	width: 65.34%;
}

.inner-row .col-1-4 {
	width: 22%;
}

.inner-row .col-3-4 {
	width: 74%;
}


@media only screen and (max-width: 768px) {
	.inner-row [class*='col-'] {
		width: auto !important;
		margin-bottom: 30px;
		margin-right: 0;
		float: none;
	}
}


/***Alert Boxes***/

.alert_box {
	margin-bottom: 1.3em;
	padding: 25px;
}

.info_box {
	background: #E7F6FC;
}

.info_box, .info_box a {
	color: #2d98bd;
}

.success_box {
	background: #ecffe7;
}

.success_box, .success_box a {
	color: #509640;
}

.error_box {
	background: #FFF2F3;
}

.error_box, .error_box a {
	color: #ca3436;
}

.warning_box {
	background: #FFF7A8;
}

.warning_box, .warning_box a {
	color: #695D43;
}




/****Toggle, Accordion****/
.accordion-box, .toggle-box {
	margin-bottom: 1.3em;
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
	border-top: 1px solid #dedede;
}

.accordion-box i, .toggle-box i {
	margin-right: 15px;
}

.accordion-title:hover, .toggle-title:hover {
	cursor: pointer;
}

.accordion-title, .toggle-title {
	padding: 10px 20px;
	background: #f5f5f5;
	border-bottom: 1px solid #dedede;
	transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
}

.accordion-title:hover, .toggle-title:hover {
	background: #f8f8f8;
}

.active .accordion-title, .active .toggle-title {
	background: white;
}

.accordion-content, .toggle-content {
	padding: 25px;
	border-bottom: 1px solid #dedede;
}



/****Tabs****/

.tabgroup {
	margin-bottom: 1.3em;
}

.tab_titles {
	margin: 0;
	border-left: 1px solid #dedede;
}

.tab_titles li {
	display: inline-block;
	float: left;
}

.tab_title i {
	margin-right: 15px;
}

.tab_title {
	background: #555;
}

.tab_title a {
	padding: 10px 20px;
	display: inline-block;
	background: #f5f5f5;
	color: #6a6359 !important;
	border-right: 1px solid #dedede;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
	text-decoration: none !important;
}

.tab_title a:hover {
	opacity: 0.9;
}

.tab_title.active a {
	background: white;
	border-bottom-color: white;
	opacity: 1;
}

.tab_panel {
	margin-top: -1px;
	padding: 25px;
	border: 1px solid #dedede;
}