/*======================================================
 *
 * Stylesheet for "Chimera Shortcodes" WordPress Plugin
 * NOTE: This stylesheet assumes that your theme already
 *       has a CSS reset.
 *
 * TABLE OF CONTENTS
 *
 * 1.  COLUMN SHORTCODE
 * 2.  PIE GRAPHS/PROGRESS BARS
 * 3.  SPECIAL HEADERS
 * 4.  PRICING COLUMNS
 * 5.  TEAM
 * 6.  ICON BOXES
 * 7.  SEPERATOR
 * 8.  BLOG LISTING
 * 9.  PAGE DIVIDERS
 * 10. TESTIMONIALS
 * 11. CYCLE SLIDESHOW
 * 12. TOOLTIPS
 *
 *====================================================*/

/**
 *
 * 1. COLUMN SHORTCODE
 *------------------------------------------------------
 *
 * These work in conjunction with unsemantic grid CSS.
 *
 * @since 1.0
 *
 */
@media screen and (max-width: 767px) {
	.first-on-mobile 	{ padding-left: 0 !important; }
	.last-on-mobile		{ padding-right: 0 !important; }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.first-on-tablet 	{ padding-left: 0 !important; }
	.last-on-tablet		{ padding-right: 0 !important; }
}
@media screen and (min-width: 1025px) {
	.first-on-desktop 	{ padding-left: 0 !important; }
	.last-on-desktop	{ padding-right: 0 !important; }
}

/**
 *
 * 2. PIE GRAPHS/PROGRESS BARS
 *------------------------------------------------------
 *
 * @since 1.0
 *
 */
.chimera-pie {
	text-align: center;
	position: relative;
	padding-bottom: 30px;
}
.chimera-pie img {
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.chimera-pie h1 {
	font-size: 48px;
	font-weight: 300;
	color: #595959;
	text-shadow: 0px 1px 0px #fff;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 33%;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.grid-33 .chimera-pie h1 { top: 180px; }
.grid-25 .chimera-pie h1 { top: 130px; }
.grid-20 .chimera-pie h1 { top: 100px; }
.chimera-pie h2 {
	font-size: 20px;
	color: #737373;
	text-align: center;
}
.chimera-pie:hover img,
.chimera-pie:hover h1 {
	-webkit-transform: scale(1.10);
	   -moz-transform: scale(1.10);
	     -o-transform: scale(1.10);
	        transform: scale(1.10);
}
/* -- Mobile Displays -- */ 
@media screen and (max-width: 767px) {

	.grid-33 .chimera-pie h1, 
	.grid-25 .chimera-pie h1, 
	.grid-20 .chimera-pie h1 {
		font-size: 24px;
		top: 23%;
	}

}
/* -- Tablet Displays -- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

	.grid-33 .chimera-pie h1, 
	.grid-25 .chimera-pie h1, 
	.grid-20 .chimera-pie h1 {
		font-size: 28px;
		top: 25%;
	}

}

/**
 *
 * 3. SPECIAL HEADERS
 *------------------------------------------------------
 * @since 1.0
 *
 */
.special-header-one {
	text-align: center;
	background: url(/wp-content/plugins/chimera-shortcodes/images/header-bottom.png) no-repeat 50% 100%;
	padding-bottom: 50px;
	margin-bottom: 50px;
}
.special-header-one h1 {
	font-size: 28px;
	font-weight: 300;
	color: #737373;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.special-header-one h2 {
	font-size: 20px;
	font-weight: 300;
	color: #999;
	text-transform: none;
	line-height: 26px;
	padding: 0 32% 0 32%;
}
.special-header-two {
	font-size: 22px;
	font-weight: 300;
	color: #737373;
	text-transform: none;
	background: url(/wp-content/plugins/chimera-shortcodes/images/header-bg.png) repeat-x 0 50%;
	margin-bottom: 50px;
}
.special-header-two span {
	background: #fff;
	padding-right: 10px;
}

/**
 *
 * 4. PRICING COLUMNS
 *------------------------------------------------------
 * @since 1.0
 *
 */
.chimera-price-column {
	position: relative;
}
.chimera-price-column header,
.chimera-price {
	background: rgb(250,250,250); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(250,250,250,1) 0%, rgba(235,235,235,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,250,250,1)), color-stop(100%,rgba(235,235,235,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* W3C */
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
}
.chimera-price-column header {
	height: 50px;
	text-align: center;
	margin-bottom: 10px;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
	        border-radius: 50px;
}
.chimera-price-column header h1 {
	font-size: 20px;
	font-weight: 300;
	color: #737373;
	line-height: 50px;
	text-shadow: 0px 1px 0px #fff;
	margin: 0;
}
.chimera-price {
	text-align: center;
	padding: 45px 0 45px 0;
	margin-bottom: 25px;
	position: relative;
	-webkit-border-radius: 25px;
	   -moz-border-radius: 25px;
	        border-radius: 25px;
}
.chimera-price:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/shadow-alt.png) no-repeat 50% 100%;
}
.chimera-price p {
	font-size: 46px;
	color: #808080;
	text-transform: uppercase;
	text-shadow: 0px 1px 0px #fff;
	margin: 0;
	padding: 0;
}
.chimera-price p span {
	display: block;
	font-size: 20px;
	line-height: 20px;
	color: #a6a6a6;
	margin-top: 12px;
}
.chimera-price-column-body ul {
	padding: 0;
	margin-bottom: 10px;
	text-align: center;
	list-style: none;
}
.chimera-price-column-body ul li {
	color: #8c8c8c;
	line-height: 40px;
}
.chimera-price-column-body ul li strong {
	color: #404040;
	font-weight: normal;
}
.chimera-price-column-body ul li:nth-child(odd) {
	background: #fafafa;
}
.chimera-price-column .button-large-outer {
	width: 100%;
	text-align: center;
	margin-bottom: 100px;
}
.chimera-price-star {
	position: absolute;
	top: -35px;
	left: 50%;
	margin-left: -25px;
	width: 50px;
	height: 50px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/star.png) no-repeat 50% 50%;
	background-size: 50px 50px;
}

/**
 *
 * 5. TEAM
 *-----------------------------------------------------
 *
 * These work in conjunction with the 'Woothemes Our Team' Plugin
 *
 * @since 1.0
 *
 */
.chimera-team-member {
	background: #fafafa;
	position: relative;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.15);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.15);
	        box-shadow: 0px 1px 1px rgba(0,0,0,0.15);
}
.chimera-team-member:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/shadow-large.png) no-repeat;
	background-size: 100% 20px;
}
.chimera-team-member-thumbnail {
	float: left;
	margin-right: 30px;
	position: relative;
}
.chimera-team-member-thumbnail:after {
	content: "";
	position: absolute;
	top: 0;
	right: -10px;
	width: 60px;
	height: 230px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/team-left.png) no-repeat;
}
.chimera-team-member-thumbnail img 	{ display: block; }
.chimera-team-member-content 		{ padding: 25px 30px 0 30px; }
.chimera-team-member-content h2 {
	font-size: 20px;
	color: #737373;
	margin-bottom: 3px;
}
.chimera-team-member-content h3 {
	font-size: 16px;
	text-transform: none;
	color: #bfbfbf;
	margin-bottom: 18px;
}
.chimera-team-member-content p { margin-bottom: 20px; }
.chimera-team-member-content a { color: #999; }
.chimera-team-member-content a:hover {
	color: #252525;
	text-decoration: none;
}
.chimera-team-member-icons { padding-left: 30px; }
.chimera-team-member-icons ul {
	padding: 0;
	margin: 0;
}
.chimera-team-member-icons ul li {
	display: inline;
	list-style: none;
}
.chimera-team-member-icons ul li a {
	width: 30px;
	height: 30px;
	display: inline-block;
	text-align: center;
	margin-right: 10px;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	-webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
	   -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
	        box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
}
.chimera-team-member-icons ul li a i:before {
	color: #bfbfbf;
	text-shadow: 0px 1px 0px #fff;
}

/* -- RIGHT ALIGNMENT -- */
.chimera-team-member.team-right .chimera-team-member-thumbnail {
	float: none;
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 0;
}
.chimera-team-member.team-right .chimera-team-member-thumbnail:after {
	left: -10px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/team-right.png) no-repeat;
}
.chimera-team-member.team-right .chimera-team-member-content {
	text-align: right;
	padding: 25px 260px 0 30px;
}
.chimera-team-member.team-right .chimera-team-member-icons {
	padding-left: 0;
	padding-right: 260px;
}
.chimera-team-member.team-right .chimera-team-member-icons ul {
	float: right;
	padding-bottom: 24px;
}
.chimera-team-member.team-right .chimera-team-member-icons ul li a {
	margin-right: 0;
	margin-left: 10px;
}

/**
 *
 * 6. ICON BOXES
 *-----------------------------------------------------
 * @since 1.0
 *
 */
.chimera-icon-box 					{ margin-bottom: 10px; }
.chimera-icon-box:last-of-type 		{ margin-bottom: 100px; }
.chimera-icon-box.icon-box-right 	{ text-align: right; }
.chimera-icon-box .chimera-icon {
	width: 80px;
	height: 56px;
	padding-top: 24px;
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
	text-align: center;
	position: relative;
	background: rgb(250,250,250); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(250,250,250,1) 0%, rgba(235,235,235,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,250,250,1)), color-stop(100%,rgba(235,235,235,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(250,250,250,1) 0%,rgba(235,235,235,1) 100%); /* W3C */
	-webkit-border-radius: 80px;
	   -moz-border-radius: 80px;
	        border-radius: 80px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.chimera-icon-box:hover .chimera-icon {
	-webkit-transform: scale(1.20);
	   -moz-transform: scale(1.20);
	     -o-transform: scale(1.20);
	        transform: scale(1.20);
}
.chimera-icon-box.icon-box-right .chimera-icon {
	float: right;
	margin-right: 0;
	margin-left: 30px;
}
.chimera-icon-box .chimera-icon:after {
	content: "";
	display: block;
	width: 80px;
	height: 54px;
	position: absolute;
	left: 0;
	bottom: -20px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/icon-shadow.png) no-repeat;
}
.chimera-icon-box .chimera-icon i:before {
	font-size: 31px;
	color: #bfbfbf;
	text-shadow: 0px 1px 0px #fff;
}
.chimera-icon-box .chimera-icon-box-content h1,
.chimera-icon-box .chimera-icon-box-content h2,
.chimera-icon-box .chimera-icon-box-content h3,
.chimera-icon-box .chimera-icon-box-content h4,
.chimera-icon-box .chimera-icon-box-content h5,
.chimera-icon-box .chimera-icon-box-content h6 { margin-bottom: 15px; }

/**
 *
 * 7. SEPERATOR
 *-----------------------------------------------------
 * @since 1.0
 *
 */
.chimera-sep {
	width: 100%;
	height: 329px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/sep.png) no-repeat 50% 50%;
}

/**
 *
 * 8. BLOG LISTING
 *-----------------------------------------------------
 * @since 1.0
 *
 */
.chimera-blog-listing {
	display: block;
	background: #fff;
	padding: 5px;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
	   -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
	        box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.chimera-blog-listing:after {
	content: "";
	display: block;
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: -20px;
	left: 0;
	background: url(/wp-content/plugins/chimera-shortcodes/images/shadow-small.png) no-repeat;
	background-size: 100% 20px;
}
.chimera-blog-listing:hover {
	text-decoration: none;
	opacity: 0.65;
}
.chimera-blog-listing img {
	width: 100%;
	display: block;
}
.chimera-blog-listing h4 {
	color: #595959;
	margin-top: 20px;
	margin-bottom: 2px;
}
.chimera-blog-listing h6 {
	font-size: 14px;
	color: #bfbfbf;
	margin-bottom: 15px;
}
.chimera-blog-listing h6 span {	color: #808080; }

/**
 *
 * 9. PAGE DIVIDERS
 *-----------------------------------------------------
 *
 * These work in conjunction with the "Chimera" Theme.
 *
 * @since 1.0
 *
 */
.page-divider {
	padding: 0;
	margin: 0 0 100px 0;
	-webkit-box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
	   -moz-box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
	        box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
}

/* -- IMAGE GALLERY SECTION -- */
.page-divider .divider-images 				{ padding: 60px 0 40px 0; }
.page-divider .divider-images .gallery-item { margin: 0; }
.page-divider .divider-images .gallery-icon img {
	background: transparent;
	opacity: 0.35;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	        box-shadow: none;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.page-divider .divider-images .gallery-icon img:hover {	opacity: 0.85; }

/* -- PORTFOLIO SECTION -- */
.page-divider .divider-portfolio { padding: 50px 0 30px 0; }
.page-divider .divider-portfolio h1 {
	font-size: 24px;
	color: #737373;
	text-shadow: 0px 1px 0px #fff;
	margin-bottom: 0;
}
.page-divider .divider-portfolio .post-thumbnail-container {
	max-width: 95%;
	margin-bottom: 20px;
}
.page-divider .divider-portfolio .post-thumbnail-container:after {
	bottom: -20px;
	height: 20px;
	background: url(/wp-content/plugins/chimera-shortcodes/images/shadow-medium.png) no-repeat;
	background-size: 100% 20px;
}

/* -- MAP SECTION -- */
.page-divider #map-canvas {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 380px;
	-webkit-box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
	   -moz-box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
	        box-shadow: inset 0px 0px 1px rgba(0,0,0,0.20);
}

/**
 *
 * 10. TESTIMONIALS
 *-----------------------------------------------------
 *
 * @since 1.0
 *
 */
.chimera-testimonial {
	background: #fafafa;
	padding: 30px 30px 20px 30px;
	margin-bottom: 60px;
	position: relative;
	-webkit-border-radius: 8px;
	   -moz-border-radius: 8px;
	        border-radius: 8px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
}
.chimera-testimonial:after {
	content: "";
	width: 100%;
	height: 60px;
	position: absolute;
	bottom: -60px;
	left: 0;
	background: url(/wp-content/plugins/chimera-shortcodes/images/subtle-shadow.png) no-repeat;
	background-size: 100% 60px;
	z-index: -999;
}
.chimera-testimonial-thumbnail {
	position: absolute;
	bottom: -35px;
	left: 30px;
}
.chimera-testimonial-thumbnail img {
	background: #fff;
	padding: 5px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
}
.chimera-testimonial-author {
	position: absolute;
	bottom: -40px;
	left: 100px;
}
.chimera-testimonial-author h5 {
	font-size: 14px;
	color: #404040;
	background: #fff;
	padding: 5px 10px 5px 10px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
	        box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
}
.chimera-testimonial-author h5 a {
	color: #999;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.chimera-testimonial-author h5 a:hover {
	color: #404040;
	text-decoration: none;
}

/**
 *
 * 11. CYCLE SLIDESHOW
 *-----------------------------------------------------
 *
 * @since 1.0
 *
 */
.cycle-slideshow-shadow {
	width: 100%;
	height: 4em;
	background: url(/wp-content/plugins/chimera-shortcodes/images/shadow-large.png) no-repeat;
	background-size: 100% 100%;
}
.cycle-slideshow img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	display: block;
}

/**
 *
 * 12. TOOLTIPS
 *-----------------------------------------------------
 *
 * @since 1.0
 *
 */
.tooltip-wrap {
	font-weight: 700;
	color: #787878;
}