/* fluid columns shortcode */
.one-half {
	width: 48%;
}
.one-third {
	width: 30.66%;
}
.two-third {
	width: 65.33%;
}
.one-fourth {
	width: 22%;
}
.three-fourth {
	width: 74%;
}
.one-fifth {
	width: 16.8%;
}
.two-fifth {
	width: 37.6%;
}
.three-fifth {
	width: 58.4%;
}
.four-fifth {
	width: 79.2%;
}
.one-sixth {
	width: 13.33%;
}
.five-sixth {
	width: 82.67%;
}
.one-half, .one-third, .two-third, .three-fourth, .one-fourth, .one-fifth, .two-fifth, .three-fifth, .four-fifth, .one-sixth, .five-sixth {
	position: relative;
	margin-right: 4%;
	margin-bottom: 20px;
	float: left;
}
.last {
	margin-right: 0 !important;
	clear: right;
}
.clearboth {
	clear: both;
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	width: 100%;
}
/* divider shortcode */

.dash-divider {
	clear: both;
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	padding: 0 0 30px;
	margin-top: 15px;
	border-top: 1px dashed #bec5ca;
}
.space-divider {
	clear: both;
	display: block;
	position: relative;
	width: 100%;
}
/* framed image shortcode */

.framed-img {
	display: inline-block;
	position: relative;
	margin-bottom: 20px;
}
.framed-img img {
	padding: 4px;
	border: 1px solid #ebebeb;
	background: #fff;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
}
.align-left {
	float: left;
	margin-right: 10px;
}
.align-right {
	float: right;
	margin-left: 10px;
}
/* framed box shortcode */

.framed-box {
	background: #fff;
	margin-bottom: 30px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
/* highlight shortcode */
.red-highlight, .yellow-highlight, .blue-highlight, .green-highlight, .black-highlight {
	padding: 0 2px;
}
.red-highlight {
	background: #ff0000;
	color: #fff;
}
.yellow-highlight {
	background: #fff880;
}
.blue-highlight {
	background: #aeefff;
}
.green-highlight {
	background: #b0ffae;
}
.black-highlight {
	background: #000;
	color: #fff;
}
/* tooltip shortcode */
.tool-tip-content {
	position: relative;
}
.tool-tip {
	position: relative;
	border-bottom: 1px dotted #888;
}
.tooltip {
	position: absolute;
	display: none;
	font-size: 12px;
	left: 0px;
	bottom: 25px;
	width: 150px;
	background: rgba(0, 0, 0, .7);
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #383838;
	line-height: 14px;
	padding: 10px;
}
.tooltip-arrow {
	width: 11px;
	height: 8px;
	background: url(../images/tooltip-arrow.png) no-repeat;
	position: absolute;
	bottom: -9px;
	left: 20px;
}