/*
 * Plugin: Symple Shortcodes Plugin CSS
 * Author: AJ Clarke : http://wpexplorer.com
 * Copyright: Copyright (c) 2012, AJ Clarke
 * License: GNU General Public License version 3.0
 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/


/* Clear Floats
================================================== */
.symple-clear-floats {
	clear: both;
}

.symple-clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/* Spacing
================================================== */
.symple-spacing {
	display: block;
	height: auto;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	border: none !important;
	outline: none !important;
}


/* Divider
================================================== */
.symple-divider {
	display: block;
	width: 100%;
	height: 0;
	margin: 0;
	background: none;
}
.symple-divider.solid{
	border-top: 1px solid #eee;
}
.symple-divider.dashed{
	border-top: 2px dashed #eee;
}
.symple-divider.dotted{
	border-top: 3px dotted #eee;
}
.symple-divider.double{
	height: 5px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.symple-divider.fadeout{
	width: 100%;
	height: 1px;
	border: none;
	margin-bottom: 42px;
	margin-top: 12px;
	margin-left: auto;
	margin-right: auto;
	background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(#eeeeee), to(#ffffff));
	background-image: -webkit-radial-gradient(50% 50%, #eeeeee, #ffffff);
	background-image: -moz-radial-gradient(50% 50%, #eeeeee, #ffffff);
	background-image: -o-radial-gradient(50% 50%, #eeeeee, #ffffff);
	background-image: -ms-radial-gradient(50% 50%, #eeeeee, #ffffff);
	background-image: radial-gradient(50% 50%, #eeeeee, #ffffff);
}
.symple-divider.fadein{
  	width: 100%;
	height: 1px;
	border: none;
	margin-bottom: 42px;
	margin-top: 12px;
	margin-left: auto;
	margin-right: auto;
	background-image: -webkit-gradient(radial, 50% 50%,0,50% 50%,200, from(#ffffff), to(#eeeeee));
	background-image: -webkit-radial-gradient(50% 50%, #ffffff, #eeeeee);
	background-image: -moz-radial-gradient(50% 50%, #ffffff, #eeeeee);
	background-image: -o-radial-gradient(50% 50%, #ffffff, #eeeeee);
	background-image: -ms-radial-gradient(50% 50%, #ffffff, #eeeeee);
	background-image: radial-gradient(50% 50%, #ffffff, #eeeeee);
}

/* Social
================================================== */
.symple-social-icon{
	display: inline-block;
	margin-right: 5px;
}
.symple-social-icon img{
	display: inline;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	box-shadow: none !important;
}
.symple-social-icon img:hover{
	opacity: 0.8;
}

/* Columns
================================================== */
.symple-one-half {
	width: 48%;
}

.symple-one-third {
	width: 30.66%;
}

.symple-two-third {
	width: 65.33%;
}

.symple-one-fourth {
	width: 22%;
}

.symple-three-fourth {
	width: 74%;
}

.symple-one-fifth {
	width: 16.8%;
}

.symple-two-fifth {
	width: 37.6%;
}

.symple-three-fifth {
	width: 58.4%;
}

.symple-four-fifth {
	width: 67.2%;
}

.symple-one-sixth {
	width: 13.33%;
}

.symple-five-sixth {
	width: 82.67%;
}

.symple-one-half, .symple-one-third, .symple-two-third, .symple-three-fourth, .symple-one-fourth, .symple-one-fifth, .symple-two-fifth,.symple-three-fifth, .symple-four-fifth, .symple-one-sixth, .symple-five-sixth {
	position: relative;
	margin-right: 4%;
	margin-bottom: 2em;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.symple-column-last {
	margin-right: 0!important;
	clear: right;
}
.symple-column-last:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}


.symple-one-half, .symple-one-third, .symple-two-third, .symple-three-fourth, .symple-one-fourth, .symple-one-fifth, .symple-two-fifth,.symple-three-fifth, .symple-four-fifth, .symple-one-sixth, .symple-five-sixth {
}

/* Buttons
================================================== */
.symple-button {
	position: relative;
	margin: 7px 7px 7px 0;
	cursor: pointer;
	display: inline-block;
	white-space: nowrap;
	nowhitespace: afterproperty;
	padding: 5px 15px;
	font-size: 0.929em;
	font-weight: 400;
	color: #fff;
	background: #888;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	transition: all 0.1s ease;
}

.symple-button:hover {
	text-decoration: none;
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}

.symple-button:active {
	text-decoration: none;
	top: 1px;
}

.symple-button.black {
	background-color: #000000;
}

.symple-button.red {
	background-color: #db4a38;
}

.symple-button.orange {
	background-color: #fa6801;
}

.symple-button.blue {
	background-color: #4c8ffd;
}

.symple-button.rosy {
	background-color: #d90073;
}

.symple-button.pink {
	background-color: #f473d0;
}

.symple-button.green {
	background-color: #60aa17;
}

.symple-button.brown {
	background-color: #835a2c;
}

.symple-button.purple {
	background-color: #852b99;
}

.symple-button.gold {
	background-color: #f1a30b;
}

.symple-button.teal {
	background-color: #01abaa;
}

.symple-button.navy {
	background-color: #323b44;
}

.symple-button.left {
	float: left;
}

.symple-button.right {
	float: right;
	margin-right: 0;
	margin-left: 5px;
}

/* Testimonial
================================================== */
.symple-testimonial-content {
	font-family: "Open Sans";
	position: relative;
	background: #f5f5f5;
	padding: 20px;
	color: #000;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	font-size: 1em;
	font-weight: 300;
}

.symple-testimonial-content img:first-child{
	background: #fff;
	padding: 3px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 transparent, 0 0 0 transparent;
}

.symple-testimonial-content:after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: -15px;
	width: 0px;
	height: 0px;
	border-bottom: 15px solid rgba(255,255,255,0);
	border-top: 15px solid rgba(255,255,255,0);
	border-right: 15px solid #f5f5f5;
	font-size: 0px;
	line-height: 0px;
	border-radius: 2px;
}

.symple-testimonial-content p:last-child {
	margin: 0;
}

.symple-testimonial-author {
	margin-top: 20px;
	margin-left: 15px;
	font-size: 0.857em;
	font-weight: 900;
	color: #000;
}

/* Highlights
================================================== */
.symple-highlight{
	padding: 0 3px;
}
.symple-highlight-yellow,
.symple-highlight-yellow a {
	background-color: #f1a30b;
	color: #fff;
}

.symple-highlight-blue,
.symple-highlight-blue a {
	color: #fff;
	background: #1ba0e1;
}

.symple-highlight-green,
.symple-highlight-green a {
	color: #fff;
	background: #60aa17;
}

.symple-highlight-red,
.symple-highlight-red a {
	color: #fff;
	background: #e51400;
}

.symple-highlight-gray,
.symple-highlight-gray a {
	color: #fff;
	background: #657688;
}

.symple-highlight-black,
.symple-highlight-black a {
	color: #fff;
	background: #000;
}


/* Boxes
================================================== */

/*main*/
.symple-box {
	position: relative;
	display: block;
	padding: 20px;
	margin: 10px 0;
	font-size: 1.125em;
	font-weight: 400;
	color: #fff;
	background: #657688;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.symple-box a{
	color: #fff;
	text-decoration: underline;
}

.symple-box a:hover{
	text-decoration: none;
}

.symple-box h2 a, .symple-box h3 a, .symple-box h4 a{
	color: #fff;
}

.symple-box p:last-child {
	margin: 0;
}

.symple-box h2, .symple-box h3, .symple-box h4{
	color: #fff;
	font-size: 1.125em;
	margin: 0 0 20px;
}

/*aligns*/
.symple-box.left {
	float: left;
}

.symple-box.right {
	float: right;
}

/*colors*/
.symple-box.gray {
	background: #eee;
	color: #666;
}

.symple-box.red {
	background: #db4a38;
}

.symple-box.green {
	background: #60aa17;
}

.symple-box.blue {
	background: #4c8ffd;
}

.symple-box.yellow {
	background: #f1a30b;
}

/* Toggle
================================================== */
.symple-toggle .symple-toggle-trigger {
	display: block;
	color: #000;
	padding: 15px 0 15px 35px;
	background: url("images/plus.png") left no-repeat;
	border-bottom: 1px solid #eee;
	outline: 0;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5em;
	margin: 0 !important;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.symple-toggle .symple-toggle-trigger:hover,
.symple-toggle .symple-toggle-trigger.active:hover{
	background-color: #f9f9f9;
	background-position: 7px center;
}
.symple-toggle .symple-toggle-trigger.active {
	background: url("images/minus.png") left no-repeat;
}

.symple-toggle .symple-toggle-container {
	display: none;
	overflow: hidden;
	padding: 15px 0 0;
}

/* Accordion
================================================== */
.symple-accordion h3.symple-accordion-trigger {
	display: block;
	color: #000;
	padding: 15px 0 15px 35px;
	background: url("images/plus.png") left no-repeat;
	border-bottom: 1px solid #eee;
	outline: 0;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.5em;
	margin: 0 !important;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.symple-accordion h3.symple-accordion-trigger a {
	color: #000;
	text-decoration: none !important;
}

.symple-accordion .ui-state-focus {
	outline: none;
}

.symple-accordion .symple-accordion-trigger:hover {
	background-color: #f9f9f9;
	text-decoration: none;
}

.symple-accordion .symple-accordion-trigger.ui-state-active,
.symple-accordion .symple-accordion-trigger.ui-state-active:hover{
	background-color: #f9f9f9;
	background-position: 7px center;
}

.symple-accordion .ui-accordion-content {
	padding: 15px 0 0;
}

.symple-accordion .ui-accordion-content p:last-child {
	margin: 0px;
}

.symple-accordion .ui-icon {
	margin-right: 7px;
}

/* Tabs
================================================== */
.symple-tabs ul.ui-tabs-nav {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px #ddd;
	margin-left: 1px;
}

.symple-tabs ul.ui-tabs-nav li {
	display: block;
	width: auto;
	height: 45px;
	padding: 0 !important;
	float: left !important;
	margin: 0 !important;
	outline: none;
}

.symple-tabs ul.ui-tabs-nav li a {
	display: block;
	text-decoration: none;
	width: auto;
	height: 44px;
	padding: 0px 20px;
	line-height: 45px;
	margin: 0;
	font-weight: 700;
	border: solid 1px #ddd;
	border-right: 0;
	background-color: #f9f9f9;
	font-size: 1em;
	color: #000;
	outline: none;
}
.symple-tabs ul.ui-tabs-nav li:last-child a {
	border-right: solid 1px #ddd;
}

.symple-tabs ul.ui-tabs-nav li a:hover {
	background: #eee;
}

.symple-tabs ul.ui-tabs-nav .ui-state-active a {
	background: #fff;
	height: 45px;
	position: relative;
	border-bottom: none;
	margin: 0 0 0 -1px;
	color: #111 !important;
}

.symple-tabs ul.ui-tabs-nav .ui-state-active a:hover {
	background: #fff;
}

.symple-tabs ul.ui-tabs-nav li:first-child .ui-state-active a {
	margin-left: 0;
}

.symple-tabs .tab-content {
	background: #fff;
	padding: 20px;
	border-left: solid 1px #eee;
	border-right: solid 1px #eee;
	border-bottom: solid 1px #eee;
}

.symple-tabs:before, ul.symple-tabs:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.symple-tabs:after {
	clear: both;
}

.symple-tabs {
	zoom: 1;
}

.symple-tabs .ui-tabs-hide {
	display: none;
}

/* Pricing Table
================================================== */
.symple-pricing-table {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.symple-pricing-table div {
	list-style: none;
}

.symple-pricing-table > div {
	margin-right: 4%;
	list-style: none;
	text-shadow: none;
	margin-bottom: 0;
	background: #f6f6f6;
	color: #666;
	box-shadow: 0 10px 0 -6px #eee; 
}

.symple-pricing-table .featured{
	border: 3px solid #000;
}

.symple-pricing-table .symple-pricing-header {
	text-align: center;
	padding: 20px 0;
	border-bottom: 1px solid #ebedf0;
}

.symple-pricing-table .symple-pricing-header h5 {
	color: #1f2123;
	font-size: 1em;
	margin: 0;
	padding: 0 20px 10px;
	font-weight: 700;
}

.symple-pricing-table .symple-pricing-cost {
	color: #1f2123;
	font-size: 2em;
	line-height: 1em;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.symple-pricing-table .symple-pricing-per {
	margin-top: 7px;
	font-size: 0.786em;
	color: #1f2123;
	font-weight: 300;
}

.symple-pricing-table .symple-pricing-content {
	font-size: 0.857em;
	text-align: center;
}

.symple-pricing-table .symple-pricing-content ul {
	margin: 20px 0 !important;
	list-style: none !important;
}

.symple-pricing-table .symple-pricing-content ul li {
	margin: 0 0 5px !important;
	padding: 0 20px !important;
	list-style: none !important;
}

.symple-pricing-table .symple-pricing-button {
	text-align: center;
	border-top: 1px solid #ebedf0;
	padding: 20px;
	font-size: 0.857em;
}

.symple-pricing-table .symple-pricing-button .symple-button {
	float: none;
	margin: 0 auto;
}


/* Heading - v1.1
================================================== */
.symple-heading{
	clear: left;
	font-weight: 900;
	font-size: 1em;
	margin: 30px 0;
	text-align: center;
	background: url("images/heading-bg.png") center center repeat-x;
}
.symple-heading span{
	background: #fff;
	padding: 0 40px;
}

.symple-heading.text-align-center{
	text-align: center;
}
.symple-heading.text-align-left{
	text-align: left;
}
.symple-heading.text-align-right{
	text-align: right;
}

.symple-heading.text-align-left span{
	padding-left: 0 !important;
}
.symple-heading.text-align-right span{
	padding-right: 0 !important;
}


/* Googlemap - v1.1
================================================== */
.googlemap {
	position: relative;
	max-width: inherit;
}
.googlemap .map_canvas {
	width: 100%;
	height: 100%;
	font-size: 0.929em;
}
.googlemap .map_canvas h3 {
	font-weight: bold;
	margin: 0 0 10px;
	font-size: 14px;
}
.map_canvas img {
	max-width: none !important;
}