/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0;
		width: 100%;
	}

	* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
		font: 14px/21px  Arial, sans-serif;
		color: #444;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
		overflow-x: hidden;
 }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #181818;
		font-family: "Times New Roman", Times, serif;
		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px;}
	h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong, b { font-weight: bold; color: #333; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #333; text-decoration: underline; outline: 0; }
	a:hover, a:focus { color: #000; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }


/* #Buttons
================================================== */

	a.button,
	#main .button-default,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {

		display: inline-block;
		margin-right: 5px;
		padding: 9px 20px 8px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		text-decoration: none;

		cursor: pointer;

		background: #000;
		color: #ffffff;
		font-size: 14px;
		line-height: 21px;
	  	font-family: inherit;
	  	font: inherit;
	  	border: none;

	}

	.price-container-inner a.button, .price-container-inner a.button:visited {
		background: #888;
		border: none;
	}

	.price-container-inner a.button:hover {
		background: #000;
	}


	a.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover,
	.button.button.button-default.button-normal:hover {
		background-color: #000;
		box-shadow: none;
		-webkit-box-shadow: none;
	}

	a.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		
	}

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	#container-full a.button {
	}

	.the-content a.button.button-flat:hover {
		color: #ffffff !important;
	}

/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #e5e5e5;
		padding: 10px 10px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 210px;
		max-width: 100%;
		display: block;
		margin-bottom: 20px;
		background: #fff; 
	}
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #ccc;
 		color: #444;
	}
	textarea {
		min-height: 60px; 
		width: 80%;
	}
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }
	
/**********************************
WordPress WYSIWYG Editor Styles
**********************************/

	img.alignnone, img.alignright, img.alignleft {
		margin: 0 0 1em 0;
	}

	.alignleft, img.alignleft {
		margin-right: 1.5em;
		display: inline;
		float: left;
	}
	.alignright, img.alignright {
		margin-left: 1.5em;
		display: inline;
		float: right;
	}
	.aligncenter, img.aligncenter {
		margin-right: auto;
		margin-left: auto;
		display: block;
		clear: both;
	}
	.alignnone, img.alignnone {

	}
	.wp-caption {
		margin-bottom: 1.5em;
		text-align: center;
		padding-top: 5px;
		max-width: 100%;
	}
	.wp-caption img {
		border: 0 none;
		padding: 0;
		margin: 0;
	}
	.wp-caption p.wp-caption-text {
		line-height: 1.5;
		font-size: 10px;
		margin: 0;
		text-align: right;
	}
	.wp-smiley {
		margin: 0 !important;
		max-height: 1em;
	}
	blockquote.left {
		margin-right: 20px;
		text-align: right;
		margin-left: 0;
		width: 33%;
		float: left;
	}
	blockquote.right {
		margin-left: 20px;
		text-align: left;
		margin-right: 0;
		width: 33%;
		float: right;
	}

	.gallery dl {
		margin-right: 1%;
	}
	.gallery dt {}
	.gallery dd {}
	.gallery dl a {}
	.gallery dl img {}
	.gallery-caption {}

	.size-full {}
	.size-large {}
	.size-medium {}
	.size-thumbnail {}

/**************************
	NOTEPAD DOUBLE LINE STYLE
***************************/

	.notepad-border, .post.format-standard .thumbnail a, .post.format-image .thumbnail a, .post .thumbnail .slides a {
		border: 1px solid #e5e5e5;
		position: relative;
		display: block;
	}

	.notepad-border a, .notepad-border img {
		display: block;
	}

	.notepad-border:before, .post.format-standard .thumbnail a:before, .post.format-image .thumbnail a:before, .post .thumbnail .slides a:before {
		content:'';
		display: block;
		position: absolute;
		left: 2px;
		bottom: -3px;
		width: 100%;
		height: 1px;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-right: none;
		border-top: none;
	}

	.notepad-border:after, .post.format-standard .thumbnail a:after, .post.format-image .thumbnail a:after, .post .thumbnail .slides a:after{
		content:'';
		display: block;
		position: absolute;
		right: -3px;
		top: 1px;
		width: 1px;
		height: 100%;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-left: none;
	}
	
/**************************
	BODY & GENERAL
***************************/

	/* Body */

	body {
		background-image: url('../images/background_image.jpg');
	}

	#full-bg {
		width: 100%;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		background-image: url('../images/background_image.jpg');
	}

	/* Outer Glow Main */

	#main-outerglow {
		-webkit-box-shadow:  0px 0px 9px 0px rgba(0, 0, 0, 0.3);
		box-shadow:  0px 0px 9px 0px rgba(0, 0, 0, 0.3);
		background: url("../images/pattern.png") #f9f9f9;
	}

	/* Outer Glow Footer */

	#footer-outerglow {
		-webkit-box-shadow:  0px 0px 9px 0px rgba(0, 0, 0, 0.3);
		box-shadow:  0px 0px 9px 0px rgba(0, 0, 0, 0.3);
	}

	#footer-outerglow.no-shadow {
		-webkit-box-shadow: none;
		box-shadow: none;
	}

/**************************
		HEADER
***************************/	

	/* Container */

	#header-wrapper {
		background-color: #1f1a17;
		/*border-bottom: 1px solid #c9c9c9;*/
		-webkit-box-shadow:  0px 1px 9px 0px rgba(0, 0, 0, 0.24);  
		box-shadow:  0px 1px 9px 0px rgba(0, 0, 0, 0.24);
		z-index: 500;
		position: relative;
		height: 80px;
		-webkit-transition: height 0.2s;
		-moz-transition: height 0.2s;
		transition: height 0.2s;
	}

	/* Fixed Header */

	#header-wrapper.stuck {
		position: fixed;
		top: 0;
		display: block;
	}

	.xt-boxed #header-wrapper.stuck {
		width: 1185px;
	}

	.xt-wide #header-wrapper.stuck {
		width: 100%;
	}

	/* Image Header Block */

	#image-header {
		/*display: none;*/
		background-color: #fff;
		height: 100px;
		-webkit-box-shadow: inset 0px -1px 9px 0px rgba(0, 0, 0, 0.24);
		box-shadow: inset 0px -1px 9px 0px rgba(0, 0, 0, 0.24);
		z-index: 460;
	}

	#image-header h1 {
		padding: 
		margin: 0;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
		color: #ffffff;
		text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
		padding: 0 60px;
	}

	/* Logo */

	header .logo-wrapper {
		float: left;
		height: 80px;
		line-height: 80px;
		display: block;
	}

	#logo {
		display: block;
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 100%;
	}

	#logo-retina {
		display: none;
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 100%;
	}
	
	/* Menu */

	header #top-menu {
		float:left; margin-left:20px;
	}
	
	#top-menu nav {
		
	}
	
	#top-menu ul {
		margin: 0;
	}
	
	#top-menu li {
		display: inline-block;
		margin: 0;
		padding-right: 30px;
		font-size: 14px;
		font-weight: normal;
		line-height: 20px;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
		position: relative;
	}
	
	#top-menu ul li a {
		display: block;
		text-decoration: none;
		color: #fff;
	}
	
	#top-menu ul li a:hover {
		color: #444;
	}

	/* First Level Only */

	#top-menu nav > ul > li > a {
		height: 80px;
		line-height: 80px;
	}

	#top-menu nav > ul > li > a:hover {
		border-bottom: 4px solid #000;
	}

	/* Children Menu 2nd Level */

	#top-menu ul li:hover > ul {
		display: block;
	}

	#top-menu ul ul {
		display: none;
		position: absolute;
		left: -20px;
		padding: 10px 0;
		width: 220px;

		background: #ffffff;
		border: none;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.35);  
		box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.35);
		z-index: 8888;
	}

	#top-menu ul ul li {
		padding: 0;
		display: block;
		position: relative;
		font-size: 12px;
		line-height: 18px;
	}

	#top-menu ul ul li a {
		padding: 5px 25px;
		color: #a3a3a3;
	}

	#top-menu ul ul li a:hover {
		color: #000;
		border-bottom: none;
		padding: 5px 25px;
	}

	/* Children Menu 3nd Level */

	#top-menu ul ul ul {
		display: none;
		position: absolute;
		top: 0;
		left: 178px;
		
		background: #ffffff;
		border: none;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.35);  
		box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.35);

		z-index: 9999;
	}

	#top-menu ul ul li:hover ul {
		display: block;
	}

	#top-menu ul ul ul li a {
		border: none !important;
		padding: 5px 25px !important;
	}

	#top-menu ul ul ul li a:hover {
		color: #000;
	}
	
/**************************
	MAIN WRAPPER
***************************/	

	.xt-boxed #container-full {
		width: 1185px;
		margin: auto;
		margin-top: 18px;
	}

	/* Header Line */

	#header-line {
		margin-bottom: 49px;
	}
	
	#header-line h1 {
		text-align: center;
		font-weight: normal;
		font-size: 36px;
		line-height: 42px;
		margin: 0;
		color: #000000;
	}
	
	#header-line p {
		text-align: center;
		font-size: 19px;
		line-height: 25px;
		font-weight: normal;	
		color: #000000;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
	}

/***************************
	CONTENT AREA
****************************/

	/* main structure & background */

	#main-wrapper {
		padding: 45px 0;
	}

	/* notebook block */

	#notebook-wrapper {
		z-index: 440;
	}

	.notebook {
		background-color: #ffffff;
		padding: 40px 60px;
		border: 1px solid #dedede;
		z-index: 442;

	}

	.notebook:before {
		content: "";
		display: block;
		z-index: -1;
		position: absolute;
		top: 1px;
		left: 1px;
		border: 1px solid #dedede;
		width: 100%;
		height: 100%;
		background-color: #ffffff;
	}

	.notebook:after {
		content: "";
		display: block;
		z-index: -3;
		position: absolute;
		top: 4px;
		left: 4px;
		border: 1px solid #dedede;
		width: 100%;
		height: 100%;
		background-color: #ffffff;
	}

	/* Page Title */

	.page-title h1 {
		font-size: 30px;
		line-height: 37px;
		margin-bottom: 30px;
		padding-bottom: 0px;
	}	
	
	/* Content Left */

	.content.content-left {
		float: left;
		width: 560px;
	}

	/* Content Right */

	.content.content-right {
		float: right;
		width: 560px;
	}

	/* Sidebar Right */

	.sidebar.sidebar-right {
		float: right;
		width: 215px;
	}

	/* Sidebar Left */

	.sidebar.sidebar-left {
		float: left;
		width: 215px;
	}

	/* Down Widget Area */

	.widget-down-area {

	}

/**************************
	BLOG LISTING
***************************/	

	.sticky, .bypostauthor {

	}
	
	/* Post Listing Wrapper */

	.posts {

	}

	/* Error */

	.posts .error {
		padding: 15px 25px 15px 60px;
	}

	/* Post at Listing */

	.post {
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 30px;
	}

	/* Thumbnail */

	
	.post .thumbnail {
		
	}

	.post.format-standard .thumbnail a, .post.format-image .thumbnail a, .post .thumbnail .slides a {
		
		display: block;
		position: relative;
		z-index: 800;
		padding: 1px;
	}

	.post.format-standard .thumbnail a:after, .post.format-image .thumbnail a:after, .post .thumbnail .slides a:after {
		
	}

	.post .thumbnail img {
		max-width: 100%;
		height: auto;
		display: block;
	}

	.post .thumbnail {
		position: relative;
		margin-bottom: 20px;
	}

	.post .thumbnail img {
		display: block;

		border-radius: 0px;
		-webkit-border-radius: 0px;
	}

	/* Post Column and Format Icon */

	.post.post-large .post-details .post-format-icon {
		width: 40px;
		float: left;
	}

	.post.post-large .post-details .post-format-icon span {
		width: 40px;
		height: 40px;
		background: #000;
		color: #ffffff;
		line-height: 40px;
		font-size: 18px;
	}

	.post.post-large .post-details .post-infos {
		width: 510px;
	}
	
	/* Post Title */

	.post.post-large .post-details .post-infos .post-title {
		padding-right: 25px;
		background: url("../images/arrow_normal.png") transparent no-repeat right center;
		margin-bottom: 5px;
	}

	.post.post-large .post-details .post-infos .post-title:hover {
		background: url("../images/arrow_hover.png") transparent no-repeat right center;
	}

	.post.post-large .post-details .post-infos .post-title h1 {
		font-size: 32px;
		line-height: 37px;
		padding: 0;
		margin: 0;
		font-weight: normal;
	}

	.post.post-large .post-details .post-infos .post-title h1 a {
		color: #000;
		text-decoration: none;
	}

	.post.post-large .post-details .post-infos .post-title h1 a:hover {

	}

	/* Post Meta */

	.post.post-large .post-details .post-meta {
		margin-bottom: 20px;
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
	}

	.post.post-large .post-details .post-meta span {
		display: inline-block;
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
	}

	.post.post-large .post-details .post-meta span a {
		text-decoration: none;
		font-weight: normal;
		color: #000;
		font-style: italic;
		text-decoration: none;
	}

	.post.post-large .post-details .post-meta span a:hover {

	}

	/* Post Meta Individual Span */

	.post.post-large .post-details .post-meta .date {

	}

	.post.post-large .post-details .post-meta .author {

	}

	.post.post-large .post-details .post-meta .cats {
		padding-right: 10px;
	}

	.post.post-large .post-details .post-meta .comments {
		padding-left: 0px;
		border-left: none;
	}

	.post.post-large .post-details .post-meta .comments:before {
		font-family: FontAwesome;
		font-weight: normal;
		font-style: normal;
		display: inline-block;
		text-decoration: inherit;
		content: "\F086";
		color: #000;
		padding-right: 5px;
	}

	/* Excerpt */
	
	.post.post-large .post-details .post-excerpt {
		font-style: 14px;
		line-height: 21px;
		color: #737373;
		margin-bottom: 15px;
	}

	.post.post-large .post-details .post-excerpt p {
		font-style: 14px;
		line-height: 21px;
		color: #737373;
	}

	/* Read More */

	.post.post-large .post-details .read-more {
		text-align: right;
		margin-bottom: 8px;
		color: #9a9a9a;
		font-size: 13px;
		line-height: 18px;
		font-style: italic;
	}

	.post.post-large .post-details .read-more a {
		color: #000000;
		text-decoration: none;
		padding-right: 3px;
	}

	.post.post-large .post-details .read-more a:hover {

	}

	/* Post Gallery */

	.post.post-large .post-gallery {
		margin-bottom: 15px;
	}

	/* Post Quote */

	.post.post-large .post-details .post-quote p {
		margin-bottom: 0;
	}

	/* Post Medium Blog */

	/* Post Columns */

	.post.post-medium .side-post {
		width: 200px;
	}

	.post.post-medium .post-details-side {
		width: 345px;
	}

	/* Format Icon */

	.post.post-medium .side-post .post-format-icon {
		background: #000;
		z-index: 800;
	}

	/* Post Title */

	.post.post-medium .post-details .post-infos .post-title {
		padding-right: 25px;
		background: url("../images/arrow_normal.png") transparent no-repeat right center;
		margin-bottom: 10px;
	}

	.post.post-medium .post-details .post-infos .post-title:hover {
		background: url("../images/arrow_hover.png") transparent no-repeat right center;
	}

	.post.post-medium .post-details .post-infos .post-title h1 {
		font-size: 22px;
		line-height: 28px;
		padding: 0;
		margin: 0;
		font-weight: normal;
	}

	.post.post-medium .post-details .post-infos .post-title h1 a {
		color: #000;
		text-decoration: none;
	}

	.post.post-medium .post-details .post-infos .post-title h1 a:hover {

	}

	/* Post Excerpt */

	.post.post-medium .post-details .post-excerpt {
		font-style: 14px;
		line-height: 21px;
		color: #737373;
		margin-bottom: 15px;
	}

	.post.post-medium .post-details .post-excerpt p {
		font-style: 14px;
		line-height: 21px;
		color: #737373;
	}

	/* Read More */

	.post.post-medium .post-details .read-more {
		text-align: right;
		margin-bottom: 0px;
		color: #9a9a9a;
		font-size: 13px;
		line-height: 18px;
		font-style: italic;
	}

	.post.post-medium .post-details .read-more a {
		color: #000000;
		text-decoration: none;
		padding-right: 3px;
	}

	/* Post Meta */

	.post.post-medium .post-meta {
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
		margin-top: 0;
	}

	.post.post-medium .post-meta span {
		display: inline-block;
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
	}

	.post.post-medium .post-meta span a {
		text-decoration: none;
		font-weight: normal;
		color: #000;
		font-style: italic;
	}

	.post.post-medium .post-meta span a:hover {

	}

	/* Post Meta Individual Span */

	.post.post-medium .post-details .post-meta .cats {
		padding-right: 10px;
	}

	body .post.post-medium .post-meta .comments {
		padding-left: 0px;
		border-left: none;
	}

	body .post.post-medium .post-meta .comments:before {
		font-family: FontAwesome;
		font-weight: normal;
		font-style: normal;
		display: inline-block;
		text-decoration: inherit;
		content: "\F086";
		color: #000;
		padding-right: 5px;
	}

	/* Post Link */

	.post.format-link.post-medium {
		padding-bottom: 15px;
	}

	/* Post Quote */

	.post.post-medium .post-details .post-quote p {
		margin-bottom: 0;
	}

	.post.format-quote.post-medium {
		padding-bottom: 15px;
	}

/**************************
	PAGINATION
***************************/

	.pagination {
		text-align: center;
	}

	/* All Paginators */

	.pagination a, .pagination a:visited, .pagination span {
		display: inline-block;
		margin-right: 5px;
		padding: 5px 20px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		text-decoration: none;

		background-color: #222;
		color: #ffffff;
		font-size: 14px;
		line-height: 21px;
	}

	/* Hover at inactive */

	.pagination a:hover {
		background-color: #000;
	}

	/* Only Current */

	.pagination .current {
		background-color: #000;
	}
	
/**************************
	SIDEBAR
***************************/	
	
	.sidebar .widget {
		border-bottom: 1px solid #e5e5e5;
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 25px;

		font-size: 12px;
		line-height: 18px;
		color: #000000;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.sidebar .widget iframe {
		max-width: 100%;
	}
	
	.sidebar .widget:last-child {
		margin-bottom: 0;
		border-bottom: none;
	}
	
	.sidebar .widget .widgettitle {
		font-size: 14px;
		line-height: 21px;
		color: #000000;
		font-weight: bold;
		margin-bottom:0;
		margin-bottom: 15px;
		text-transform: uppercase;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
	}
	
	.sidebar .widget p {
		margin: 0;
	}
	
	.sidebar .widget ul {
		margin: 0;
		margin-left: 18px;
	}

	.sidebar .widget.dc-slider-widget ul {
		margin-left: 0;
		margin-right: 0;
	}
	
	.sidebar .widget ul li {
		margin: 0;
		margin-bottom: 10px;
	}
	
	.sidebar .widget ul li a {
		text-decoration: none;
		color: #000000;
	}

	.sidebar .widget ul li:last-child {
		margin-bottom: 0;
	}
	
	.sidebar .widget a, footer .widget a:visited {
		text-decoration: none;
		color: #000000;
	}
	
	.sidebar .widget a:hover {
	
	}
	
	.sidebar .widget img {
		max-width: 100%;
		height: auto;
	}

	.sidebar .widget form {
		margin-bottom: 0;
	}
	
	.sidebar .widget.widget_search input[type="text"] {
		border: 1px solid #e5e5e5;
		padding: 8px 10px 8px 25px;
		background: url("../images/icon_search.png") no-repeat 5px center transparent;
		width: 100%;
		color: #aaa;
		margin: 0;
	}

	.sidebar .widget.widget_search input[type="text"]:focus {
		border: 1px solid #ccc;
		box-shadow: none;
		-webkit-box-shadow: none;
	}
	
	.sidebar .widget.widget_search input[type="submit"] {
	
	}

	/**********************
		MAIL CHIMP
	**********************/

	.widget_ns_mailchimp {

	}

	.widget_ns_mailchimp form {

	}

	.widget_ns_mailchimp label {
		margin-bottom: 5px;
	}

	.widget_ns_mailchimp input[type="text"] {
		display: block;
		margin-top: 5px;
		border: 1px solid #e5e5e5;
		padding: 8px 10px 8px 10px;
		width: 175px;
		color: #aaa;
		margin-bottom: 5px;
	}

	.widget_ns_mailchimp input[type="submit"], .widget_ns_mailchimp input[type="submit"]:active {
		background: #000;
	}

	/*******************************
	*	TWITTER FEEDS
	/*******************************/
				
	body .sidebar .rotatingtweet {
		margin-bottom: 15px;
		border: none;
	}

	body .sidebar .rotatingtweet p.rtw_main {
		margin-bottom: 0;
	}

	/* Tag */

	.sidebar .tagcloud {

	}

	.sidebar .tagcloud a, .sidebar .tagcloud a:visited {
		padding: 3px 10px;
		background: #000;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		display: inline-block;
		margin-right: 3px;
		margin-bottom: 3px;
		color: #ffffff;
		font-size: 8pt !important;
	}

	/* Recent, Popular and Comments Widget */

	.sidebar .recent-popular-comments {
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 0px;
	}	

	body .sidebar .recent-popular-comments .xt_tabs_framed a {
		padding: 10px 6px;
		font-size: 11px;
		line-height: 16px;
	}

		body .sidebar .recent-popular-comments .xt_tabs_framed li:first-child a {
			padding-left: 7px;
		}

	.sidebar .recent-popular-comments .panes ul {
		margin-left: 0;
	}

	.sidebar .recent-popular-comments .panes ul li {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 19px;
		margin-left: 0;
		background: transparent;
	}

		.sidebar .recent-popular-comments .panes ul li:last-child {
			margin-bottom: 0;
		}

	/* Categories, Tags, Archives */

	.cats-arch-tags-widget {
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 0px;
	}	

	body .sidebar .cats-arch-tags-widget .xt_tabs_framed a {
		padding: 10px 7px;
		font-size: 11px;
		line-height: 16px;
	}

		body .sidebar .cats-arch-tags-widget .xt_tabs_framed li:first-child a {
			padding-left: 7px;
		}

	.sidebar .cats-arch-tags-widget .panes ul {
		margin-left: 0;
	}

	.sidebar .cats-arch-tags-widget .panes ul li {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 19px;
		margin-left: 0;
		background: transparent;
	}

		.sidebar .cats-arch-tags-widget .panes ul li:last-child {
			margin-bottom: 0;
		}

	/* Facebook Like Box */

	.sidebar .widget.facebookbox-feeds iframe {
		max-width: 100% !important;
		width: 100% !important;
	}

	/***********************
		FLICKR
	************************/

	.flickr_wrap {

	}

	.flickr_wrap .flickr_badge_image {
		display: inline-block;
		width: 31%;
		margin: 0 5px 0.333% 0;
	}

/**************************
	BACK TO TOP
***************************/

	#back-top-wrapper {
		display: block;
		height: auto;
		text-align: center;
		padding: 25px 0 20px;
	}

	#back-top-wrapper.same-pattern {
		padding-top: 0;
	}

	#back-top-wrapper a, #back-top-wrapper a:visited {
		text-transform: uppercase;
		font-size: 12px;
		font-weight: bold;
		font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
		text-decoration: none;
		letter-spacing: -0.3px;
		display: inline-block;
		padding-top: 25px;
		color: #ffffff;
		background: url("../images/arrow-top.png") no-repeat center 0 transparent;
		background-size: 35px 20px;
	}

	#back-top-wrapper.dark-version a {
		background-image: url("../images/arrow-top-dark.png");
	}

	@media all and (-webkit-min-device-pixel-ratio : 1.5) {
		#back-top-wrapper a, #back-top-wrapper a:visited {
			background: url("../images/arrow-top_2.png") no-repeat center 0 transparent;
			background-size: 35px 20px;
		}

		#back-top-wrapper.dark-version a {
			background-image: url("../images/arrow-top-dark_2.png");
		}
	}

/**************************
	FOOTER
***************************/

	/* Footer Structure */
	
	#footer-wrapper{
		background: url("../images/pattern.png") repeat scroll 0 0 #F9F9F9;
		padding: 30px 0;
	}

	/* Footer Columns */
	
	#footer-col-1 {
		width: 202px;
		margin-right: 50px;
		float: left;	
	}
	
	#footer-col-2 {
		width: 202px;
		margin-right: 50px;
		float: left;
	}
	
	#footer-col-3 {
		width: 202px;
		margin-right: 50px;
		float: left;
	}
	
	#footer-col-4 {
		width: 202px;
		float: left;
	}

	/* Footer Widgets */

	footer .widget {
		border-bottom: 1px solid #e5e5e5;
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 25px;

		font-size: 13px;
		line-height: 19px;
		color: #000;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
	}
	
	footer .widget:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	
	footer .widget .widget-title h3 {
		font-family: "MuseoSlab-500Italic", "Rokkitt", "Georgia", "Times New Roman", serif;
		font-style: italic;
		font-weight: bold;
		font-size: 14px;
		line-height: 21px;
		color: #000000;
		margin-bottom: 22px;
	}
	
	footer .widget p {
		margin: 0;

	}

	 footer .widget p:last-child {
	 	margin: 0;
	 }
	
	footer .widget ul {
		margin: 0;
	}

	footer .widget.dc-slider-widget ul {
		margin-left: 0;
		margin-right: 0;
	}
	
	footer .widget ul li {

	}
	
	footer .widget ul li:last-child {
		margin-bottom: 0;
	}
	
	footer .widget a, footer .widget a:visited {
		text-decoration: none;
		color: #000;
		font-weight: bold;
	}
	
	footer .widget a:hover {

	}
	
	footer .widget img {
		max-width: 100%;
		height: auto;
	}

	footer .widget form {
		margin-bottom: 0;
	}
	
	footer .widget.widget_search input[type="text"] {
		border: 1px solid #e5e5e5;
		padding: 8px 10px 8px 25px;
		background: url("../images/icon_search.png") no-repeat 5px center #ffffff;
		width: 100%
		color: #aaa;
		margin: 0;
	}
	
	footer .widget.widget_search input[type="text"]:focus {
		border: 1px solid #ccc;
		box-shadow: none;
		-webkit-box-shadow: none;
	}

	footer .widget.widget_search input[type="submit"] {
	
	}

	/**********************
		MAIL CHIMP
	**********************/

	footer .widget_ns_mailchimp {

	}

	footer .widget_ns_mailchimp form {

	}

	footer .widget_ns_mailchimp label {
		margin-bottom: 5px;
	}

	footer .widget_ns_mailchimp input[type="text"] {
		display: block;
		margin-top: 5px;
		border: 1px solid #e5e5e5;
		padding: 8px 10px 8px 10px;
		width: 175px;
		color: #aaa;
		margin-bottom: 5px;
	}

	/*******************************
	*	TWITTER FEEDS
	/*******************************/

	body footer .rotatingtweet {
		padding-bottom: 14px;
		margin-bottom: 15px;
		border: none;
	}

	body footer .rotatingtweet:last-child {
		padding-bottom: 0;
		border: none;
	}

	body footer .rotatingtweet p.rtw_main {
		margin-bottom: 0;
	}

	/* Tags */

	footer .tagcloud {

	}

	footer .tagcloud a, footer .tagcloud a:visited {
		padding: 3px 10px;
		background: #000;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		display: inline-block;
		margin-right: 3px;
		margin-bottom: 3px;
		color: #ffffff;
		font-size: 8pt !important;
	}

	/* Recent, Popular and Comments Widget */

	footer .recent-popular-comments {
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 0px;
	}

	footer .recent-popular-comments .xt_tabs_framed {
		left: 0;
	}	

	footer .recent-popular-comments .xt_tabs_framed li {
		display: block;
		float: none;
		padding-bottom: 0px;
	}

	footer .recent-popular-comments .xt_tabs_framed a {
		float: none;
		display: block;
		background: transparent;
		color: #c6c6c6;
		border-bottom: none;
		border-left: 1px solid #ddd;
		padding: 10px 20px;
	}

		footer .recent-popular-comments .xt_tabs_framed li.current a {
			
			color: #000;
			border-bottom: none;
		}

		footer .recent-popular-comments .xt_tabs_framed li:first-child a {
			border-bottom: none;
		}

	footer .recent-popular-comments .panes ul {
		margin-left: 0;
	}

	footer .recent-popular-comments .panes ul li {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 19px;
		padding-left: 0px;
		margin-left: 0;
		background: transparent;
	}

	/* Categories, Tags, Archives */

	footer .cats-arch-tags-widget {
		margin: 0;
		margin-bottom: 25px;
		padding-bottom: 0px;
	}

	footer .cats-arch-tags-widget .xt_tabs_framed {
		left: 0;
	}	

	footer .cats-arch-tags-widget .xt_tabs_framed li {
		display: block;
		float: none;
		padding-bottom: 0px;
	}

	footer .cats-arch-tags-widget .xt_tabs_framed a {
		float: none;
		display: block;
		background-color: transparent;
		color: #c6c6c6;
		border-bottom: none;
		border-left: 1px solid #ddd;
		padding: 10px 20px;
	}

		footer .cats-arch-tags-widget .xt_tabs_framed li.current a {
			color: #000;
			border-bottom: none;
		}

		footer .cats-arch-tags-widget .xt_tabs_framed li:first-child a {
			border-bottom: none;
		}

	footer .cats-arch-tags-widget .panes ul {
		margin-left: 0;
	}

	footer .cats-arch-tags-widget .panes ul li {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 19px;
		padding-left: 0px;
		margin-left: 0;
		background: transparent;
	}

	/* Facebook Like Box */

	footer .widget.facebookbox-feeds iframe {
		max-width: 100% !important;
		width: 100% !important;
	}

	/***********************
		FLICKR
	************************/

	footer .flickr_wrap {

	}

	footer .flickr_wrap .flickr_badge_image {
		display: inline-block;
		width: 30.8%;
		margin: 0 5px 0.333% 0;
	}

/*************************
	DOWN FOOTER
*************************/

	/* Structure */

	#down-footer-wrapper {
		background-color: #000000;
	}
	
	#down-footer {
		padding: 20px 0;
	}

	/* Copyright */

	#down-footer #copyright-area {
		float: left;
	}
	
	#down-footer #copyright-area p{
		margin: 0;
		color: #ffffff;
		font-size: 13px;
		line-height: 20px;
		display: inline-block;
	}

	#lang-logo-selector {
		display: inline-block;
		margin-left: 10px;
	}

	#lang-logo-selector img {
		margin-right: 5px;
	}

	/* Menu Down Footer */

	#down-footer #menu-footer {
		float: right;
	}
	
	#down-footer #menu-footer ul {
		margin: 0;
	}
	
	#down-footer #menu-footer ul li {
		display: inline-block;
		margin: 0;
		margin-right: 35px;

		font-size: 13px;
		line-height: 20px;
	}

	#down-footer #menu-footer ul li:last-child {
		margin-right: 0;
	}
	
	#down-footer #menu-footer a, #down-footer #menu-footer a:visited {
		text-decoration: none;
		color: #515151;
	}
	
	#down-footer #menu-footer a:hover {
		color: #ffffff;
	}

/***************************
	CONTENT ELEMENTS
****************************/

	.the-content {
		font-size: 13px;
		line-height: 19px;
		color: #000;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.the-content p, body .post-single .post-content .the-content p {
		font-size: 13px;
		line-height: 19px;
		color: #000;
		margin-bottom: 20px;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.the-content .sub-text {
		font-size: 14px;
		line-height: 21px;
		color: #555;
		margin-bottom: 20px;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.the-content .sub-text p:last-child {
		margin-bottom: 0 !important;
	}

	.the-content h1 {
		font-size: 30px;
		line-height: 37px;
		margin-bottom: 20px;
	}
	
	.the-content h2 {
		font-size: 26px;
		line-height: 33px;
		margin-bottom: 16px;
	}
	
	.the-content h3 {
		font-size: 22px;
		line-height: 29px;
		margin-bottom: 12px;
	}
	
	.the-content h4 {
		font-size: 18px;
		line-height: 25px;
		margin-bottom: 8px;
	}
	
	.the-content h5 {
		font-size: 14px;
		line-height: 21px;
		margin-bottom: 4px;
	}

	.the-content h6 {
		font-size: 12px;
		line-height: 18px;
		margin-bottom: 0px;
	}
	
	.the-content a, .the-content a:visited {
		font-weight: bold;
		color: #000;
		text-decoration: none;
	}
	
	.the-content a:hover {
		color: #000;
	}
	
	.the-content strong, .the-content b {
		font-weight: bold !important;
	}
	
	.the-content em {

	}
	
	.the-content img {
		max-width: 100%;
		height: auto;
	}
	
	.the-content ul {
		color: #444;
		margin-bottom: 20px;
		list-style-type: square;
		margin-left: 20px;
	}

	body ul.icon-list {
		margin-bottom: 20px;
	}
	
	.the-content ol {
		color: #444;
		margin-bottom: 20px;
		list-style-type: decimal;
		margin-left: 20px;
	}
	
	.the-content li {
		font-size: 14px;
		line-height: 22px;
		margin-bottom: 8px;
	}

	.the-content li:last-child {
	 	margin-bottom: 0;
	}
	
	.the-content li:last-child {
		margin-bottom: 0;
	}

	.the-content blockquote p {
		color: #777;
	}

	body .the-content .flexslider {
		margin-bottom: 10px;
	}

	/* Image Header */

	body h1.image-header, body h2.image-header, body h3.image-header, body h4.image-header, body h5.image-header, body h6.image-header {
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
		font-weight: normal;
	}

/*************************
	PAGE FULL + CALLOUT + TITLE INSIDE
*************************/

	.full-callout-titlein #header-line h1 {
		font-size: 36px;
		line-height: 42px;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
		font-weight: 300;
	}

	.full-callout-titlein #header-line p {
		font-size: 19px;
		line-height: 25px;
	}

	.full-callout-titlein .page-title h1 {
		padding-bottom: 0;
		border-bottom: none;
		font-size: 30px;
		line-height: 36px;
		margin-bottom: 35px;
	}

/**********************
	PAGE FULL + NO CALLOUT, TITLE INSTEAD
**********************/

	#main-wrapper.full-nocallout-titleabove {
		padding-top: 35px;
	}

	#header-line.header-title
	{
		margin-bottom: 35px;
		width: 860px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 15px;
	} 

	#header-line.header-title h1 {
		text-align: left;
		font-size: 30px;
		line-height: 36px;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
		font-weight: 300;
	}

/***********************
	PAGE HOME STYLE
************************/

	.page-template-page-home-php #image-header {
		display: none;
	}

	.slider-area {
		height: 400px;
		background: #fff;
		-webkit-box-shadow: inset 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
		box-shadow: inset 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
	}

	/* Features Menu */

	.sidebar .widget_nav_menu .menu li a:hover {
		background-color: #fafafa;
		color: #000;
	}

	.sidebar .widget_nav_menu .menu li.current-menu-item a {
		background-color: #000;
		color: #fff;
		font-weight: normal;
		border-color: #000;
	}

/**********************
	404 Template
***********************/

	#main .notfound #page-content {
		padding: 150px 0 170px !important;
	}

/***********************
	SINGLE POST
************************/

	.post.post-single {
		border-bottom: none;
	}

	/* Post Column and Format Icon */

	.post.post-single .post-details .post-format-icon {
		width: 40px;
		float: left;
	}

	.post.post-single .post-details .post-format-icon span {
		width: 40px;
		height: 40px;
		background: #000;
		color: #ffffff;
		line-height: 40px;
		font-size: 18px;
	}

	.post.post-single .post-details .post-infos {
		width: 510px;
	}
	
	/* Post Title */

	.post.post-single .post-details .post-infos .post-title {
		margin-bottom: 5px;
	}

	.post.post-single .post-details .post-infos .post-title h1 {
		font-size: 32px;
		line-height: 37px;
		padding: 0;
		margin: 0;
		font-weight: normal;
	}

	.post.post-single .post-details .post-infos .post-title h1 a {
		color: #000;
		text-decoration: none;
		border-bottom: none;
	}

	.post.post-single .post-details .post-infos .post-title h1 a:hover {

	}

	/* Post Quote */

	.post-single .post-details .post-quote p:last-child {
		margin-bottom: 0;
	}

	/* Post Meta */

	.post.post-single .post-details .post-meta {
		margin-bottom: 20px;
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
	}

	.post.post-single .post-details .post-meta span {
		display: inline-block;
		font-size: 12px;
		color: #9a9a9a;
		line-height: 18px;
	}

	.post.post-single .post-details .post-meta span a {
		text-decoration: none;
		font-weight: normal;
		color: #000;
		font-style: italic;
		text-decoration: none;
	}

	.post.post-single .post-details .post-meta span a:hover {

	}

	/* Post Meta Individual Span */

	.post.post-single .post-details .post-meta .date {

	}

	.post.post-single .post-details .post-meta .author {

	}

	.post.post-single .post-details .post-meta .cats {
		padding-right: 10px;
	}

	.post.post-single .post-details .post-meta .comments {
		padding-left: 0px;
		border-left:  none;
	}

	.post.post-single .post-details .post-meta .comments:before {
		font-family: FontAwesome;
		font-weight: normal;
		font-style: normal;
		display: inline-block;
		text-decoration: inherit;
		content: "\F086";
		color: #000;
		padding-right: 5px;
	}


	/* Single Post Tags */

	.post-single .post-tags {
		margin-left: 50px;
	}

	.post-single .post-tags p {
		margin: 0;
		padding: 15px 0;
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;

		color: #9a9a9a;
	}

	.post-single .post-tags p i {
	}

	.post-single .post-tags p a {
		display: inline-block;
		margin-right: 0px;

		padding: 0px;

		background: transparent;
		color: #000;

		text-decoration: none;
	}

	.post-single .post-tags p a:hover {
		background: transparent;
		color: #000;
	}

	/* Single Post Share */

	.post-single .share-post {
		
		padding: 20px 0 20px 0px;
		border-bottom: none;
		border-top: none;

		margin-left: 50px;
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.post-single .share-post .share-text {
		float: left;
		line-height: 33px;
	}

	.post-single .share-post .share-icons a {
		margin-bottom: 0 !important;
		background: transparent;
		text-decoration: none;
		padding: 10px 0;
		width: 40px;
		display: inline-block;
		border-radius: 0;
		-webkit-border-radius: 0;
	}

	.post-single .share-post .share-icons a:hover {
		background: #000;
		color: #ffffff;
	}

	/* Single Post Author Bio */

	.post-single .author-meta {
		background: #fafafa;
		margin-left: 50px;
		padding: 20px;
	}

	.post-single .author-meta .author-image {
		width: 55px;
	}

	.post-single .author-meta .author-image img {
		border: 2px solid #fff;
		max-width: 100%;
		height: auto;
	}

	.post-single .author-meta .author-details {
		float: right;
		width: 400px;
	}

	.post-single .author-meta .author-details h3 a {
		color: #000;
	}

	.post-single .author-meta .author-details p {
		margin: 0;
		font-size: 13px;
		line-height: 19px;
	}

	/* Related Posts */

	.post-single .related-posts {
		padding: 30px 0;
	}

	.post-single .related-posts h3 {
		font-weight: normal;
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 27px;
	}

	.post-single .related-posts ol {
		margin-left: 0px;
		list-style-type: none;
	}

	.post-single .related-posts ol li {
		color: #000;
	}

	.post-single .related-posts ol li i {
		color: inherit;
		margin-right: 5px;
	}

	.post-single .related-posts ol li a, .post-single .related-posts ol li a:visited {
		text-decoration: none;
	}

	/* Comments List */

	#comments {
		padding-top: 0;
	}

	.comments-list {
		margin-left: 15px;
		margin-bottom: 0;
	}

	#comments #comments_header h3 {
		font-weight: normal;
		margin-bottom: 35px;
		font-size: 21px;
		line-height: 27px;
	}

	.comments .comment {
		margin-bottom: 25px;

		padding: 20px 25px;
		border: 1px solid #e5e5e5;
	}

	.comments .blog_comment_user {
		height: auto;
	}

	.comments .blog_comment_user span {
		background-color: #000;
		padding: 2px 0;
		margin-top: 1px;
	}

	.comments .blog_comment_det {
		margin-left: 60px;
		width: auto;
	}

	.comments .blog_comment_det .blog_comment_name_det {
		color: #808080;
		font-family: inherit;
		font-size: 13px;
		margin-bottom: 5px;
		font-weight: normal;
	}

	.comments .blog_comment_det .blog_comment_name_det a {
		font-size: 13px;
		color: #000;
		font-family: inherit;
		font-weight: bold;
		margin-right: 5px;
	}

	.comments .blog_comment_det .blog_comment_name_det .comment-reply-link {
		top: -11px;
		right: -19px;
		font-size: 12px;
		color: #808080;
		border: 1px solid #f4f3f3;
		padding: 5px 8px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	.comments .children {
		margin-left: 25px;
	}

	.comments .blog_comment_text {
		font-size: 13px;
		margin-left: 20px;
	}

	.comments .blog_comment_text p {
		margin-bottom: 7px;
		font-size: 13px;
		line-height: 19px;
		color: #000;
	}

	/* Leave a Reply */

	#leave_a_reponse {
		padding: 20px 0;
	}

	#reply-title, #reply-title small, #reply-title a {
		margin-bottom: 30px;
		font-size: 21px;
		line-height: 29px;
		font-weight: normal;
		color: #000;
		text-decoration: none;
	}

	#respond {
		margin-bottom: 25px;
	}

	#respond input, #respond textarea, #respond p {
		margin: 0;
	}

	#respond .logged-in-as a {
		font-weight: bold;
		text-decoration: none;
	}

	#respond input[type="text"], #respond textarea {
		margin-bottom: 15px;
		font-size: 13px;
		color: #b2b2b2;

		box-sizing: border-box;
		-webkit-box-sizing: border-box;

		border: 1px solid #e5e5e5;
		width: 100%;
		padding: 10px 12px;

		-webkit-box-shadow: none;
		box-shadow: none;
	}

	#respond textarea {
	 	min-height: 120px;
	}

	#respond input[type="submit"], #respond input[type="submit"]:hover {
		cursor: pointer;
		padding: 9px 12px;
		border: none;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		background: #000 !important;
		font-size: 14px;
		line-height: 20px;
		color: #ffffff;
		font-weight: normal;
		letter-spacing: 0px;
		
	}

	#respond .form-submit {
		text-align: right;
	}

	/* Comments Nav */

	#comments .comments-nav {

	}

	#comments .comments-nav a, #comments .comments-nav span {
		display: inline-block;
		padding: 5px 12px;
		border: none;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		background: #000 !important;
		font-size: 12px;
		line-height: 18px;
		color: #ffffff;
		font-weight: normal;
		letter-spacing: 0px;

		margin: 20px 0;
		margin-right: 5px;

		text-decoration: none;
	}

	#comments .comments-nav span {
		background: #555 !important;
	}

/*****************
	SHORTCODE CUSTOMIZATION
*****************/

	/* Default WP Galleries */

	body .gallery .gallery-item .image-wrap,
	body .gallery .gallery-item .image-wrap img,
	body .gallery .gallery-item .image-wrap:after {
		border-radius: 0;
		-webkit-border-radius: 0;
		border-color: #111;
	}

	/******************
		MEMBER BLOCK
	********************/

	.the-content .member-block {
		border: none;
		margin-bottom: 20px;
	}

	.member-block .member-img {
		position: relative;
		border: 1px solid #e5e5e5;
	}

	.the-content .member-block .member-img img {
		max-width: 100%;
		height: auto;
		box-shadow: none;
		-webkit-box-shadow: none;
		border-radius: 0;
		-webkit-border-radius: 0;
		display: block;
		border: none;
	}

	.the-content .member-block .member-img:before {
		content:'';
		display: block;
		position: absolute;
		left: 2px;
		bottom: -3px;
		width: 100%;
		height: 1px;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-right: none;
		border-top: none;
	}

	.the-content .member-block .member-img:after {
		content:'';
		display: block;
		position: absolute;
		right: -3px;
		top: 1px;
		width: 1px;
		height: 100%;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-left: none;
	}

	.the-content .member-block .member-header {
		padding: 13px 0;
	}

	.the-content .member-block .member-header h2 {
		font-size: 14px;
		line-height: 18px;
		font-weight: bold;
		font-style: italic;
		color: #888;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2sease-in-out;
		transition: all 0.2sease-in-out;
	}

	.the-content .member-block .member-header h4 {
		font-size: 10px;
		line-height: 16px;
		padding: 0;
		color: #888;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2sease-in-out;
		transition: all 0.2sease-in-out;
	}

	.the-content .member-block:hover .member-header h2, .the-content .member-block:hover .member-header h4 {
		color: #000;
	}

	body .member-block .member-content {
		padding: 0px 0 10px;
	}

	.the-content .member-block .member-social {
		border-top: none;
		padding: 10px 0 5px;
	}

	.the-content .member-block .member-social .zocial-icon-wrap {
		background: transparent;
		padding: 8px 5px 7px;
		font-size: 12px;
		line-height: 1em;
	}

	.the-content .member-block .member-social .zocial-icon-wrap:hover {
		color: #000000 !important;
		background: transparent !important;
	}

	/****************
		FONT ICON BOX
	*****************/

	.the-content .box-font-icon h3 {
		font-size: 18px;
		line-height: 25px;
		margin-bottom: 15px;
	}

	/*************
		FONT BLOCK
	*************/

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap {
		background: #fff;
		border: 1px solid #e5e5e5;
		color: #e5e5e5;
		margin-bottom: 20px;
		position: relative;

		padding: 30px 0;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2sease-in-out;
		transition: all 0.2sease-in-out;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:before {
		content:'';
		display: block;
		position: absolute;
		left: 2px;
		bottom: -3px;
		width: 100%;
		height: 1px;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-right: none;
		border-top: none;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:after {
		content:'';
		display: block;
		position: absolute;
		right: -3px;
		top: 1px;
		width: 1px;
		height: 100%;
		background: #fff;
		border: 1px solid #e5e5e5;
		border-left: none;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap i {

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;

		font-size: 50px;
		color: #ccc;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:hover {
		border: 1px solid #000;
		background: #000;
		color: #ffffff;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:hover:before {
		border-color: #000;
		background: #000;

	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:hover:after {
		border-color: #000;
		background: #000;
	}

	.the-content .block-font-icon .block-icon-wrapper .icon-wrap:hover i {
		color: #ffffff;
	}

	/* Blockquote */

	body .blockquote, body .blockquote p {
		font-family: Georgia,"Times New Roman",Times,serif !important;
		color: #444;
		font-size: 16px;
		line-height: 24px;
	}

	body .blockquote p:last-child {
		margin-bottom: 0;
	}

	/************
		ZOCIAL
	************/

	body .zocial-icon-wrap {
		background: transparent;
		padding: 8px 0;
		font-size: 13px;
		line-height: 13px;
		width: 35px;
		text-align: center;
		border-radius: 0;
		-webkit-border-radius: 0;
	}

	body .zocial-icon-wrap:hover {
		color: #ffffff !important;
		background: #000 !important;
	}

	/**********
		TABS
	***********/

	.the-content ul.xt_tabs_framed {
		top: 2px;
	}

	body ul.xt_tabs_vertical li {
		margin-bottom: 0px;
		border: none !important;
		margin-right: 17px !important;
	}

	.the-content ul.xt_tabs_vertical li.current a {
		background: #fff;
		border: none;
		display: block;
		border: none;
		box-shadow: none;
		-webkit-box-shadow: none;
	}

	.the-content ul.xt_tabs_vertical li a {
		padding: 10px 10px;
		border: none;
		background: #ffffff;
		position: relative;
		left: 0;
		top: 0;

		background: #ffffff;
		background: -moz-linear-gradient(left,  #ffffff 0%, #f1f1f1 100%);
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(100%,#f1f1f1));
		background: -webkit-linear-gradient(left,  #ffffff 0%,#f1f1f1 100%);
		background: -o-linear-gradient(left,  #ffffff 0%,#f1f1f1 100%);
		background: -ms-linear-gradient(left,  #ffffff 0%,#f1f1f1 100%);
		background: linear-gradient(to right,  #ffffff 0%,#f1f1f1 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f1',GradientType=1 );

		-webkit-box-shadow: inset -1px 0px 2px 0px rgba(0, 0, 0, 0.2);
        box-shadow: inset -1px 0px 2px 0px rgba(0, 0, 0, 0.2);

	}

	/***************
		TESTIMONIAL BLOCK
	****************/

	.the-content .testimonial-block.block, .the-content .testimonial-block.block a {
		color: #ffffff;
	}

	.the-content .testimonial-block.block p {
		color: #ffffff;
	}

	/* Pullquote */

	.the-content .pullquote.pull-left, .the-content .pullquote.pull-right {
		color: #777;
	}

	/*******************
		CONTACT 7 FORM
	********************/

	.wpcf7-form {
	
	}

	.wpcf7-form img {
		box-shadow: none !important;
		-webkit-box-shadow: none !important;
	}

	/* Submit Button */

	.wpcf7-form input[type="submit"] {

	}

	.wpcf7-form input[type="submit"]:hover {
		background-color: #000;
	}

	.wpcf7-form input[type="submit"]:active {
		
	}

	/* Default Label */

	.wpcf7-form {
		font-size: 13px;
		line-height: 18px;
		font-weight: normal;
		color: #555;
	}

	.the-content .wpcf7-form p {
		
		font-size: 13px;
		line-height: 18px;
		color: #b2b2b2;
		vertical-align: top;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
		font-weight: normal;
		margin-bottom: 10px;
	}

	.wpcf7-form label {
		display: block;
		margin-bottom: 5px;

		font-size: 13px;
		line-height: 18px;
		font-weight: bold;
		color: #555;
	}

	.the-content .wpcf7-form p span {
		display: inline-block;
	}

	/* Form Elements */

	.the-content .wpcf7-form .wpcf7-form-control-wrap {
		margin-left: 0px;
	}

	body .wpcf7-form input[type="text"],
	body .wpcf7-form input[type="password"],
	body .wpcf7-form input[type="email"],
	body .wpcf7-form textarea,
	body .wpcf7-form select {
		border: 1px solid #ddd;
 		color: #aaa;
 		border-radius: 3px;
 		-webkit-border-radius: 3px;
 		height: 20px;
 		padding: 10px 15px;
 		margin-top: 5px;
 		display: inline-block;
 		height: auto;
	}

	.the-content .wpcf7-form input[type="text"],
	.the-content .wpcf7-form input[type="password"],
	.the-content .wpcf7-form input[type="email"] {
		padding: 10px 15px;
		margin-bottom: 0;
		width: 100%;
		max-width: 250px;
	}

	.the-content .wpcf7-form textarea,
	.the-content .wpcf7-form select {
		margin-bottom: 0;
	}

	.wpcf7-form input[type="text"]:focus,
	.wpcf7-form input[type="password"]:focus,
	.wpcf7-form input[type="email"]:focus,
	.wpcf7-form textarea:focus {
		border: 1px solid #aaa;
 		color: #777;
	}

	body .wpcf7-form textarea {
		min-height: 60px; 
		height: 150px;
		border: 1px solid #ddd;
 		color: #aaa;
 		border-radius: 3px;
 		-webkit-border-radius: 3px;
 		margin-top: 5px;
 		width: 100%;
 		max-width: 400px;
	}

	.wpcf7-form select {
		width: 220px; 
		height: 40px;
		padding: 10px 15px;
	}

	.wpcf7-form input[type="checkbox"] {
		display: inline; 
		margin: 3px;
	}

	.wpcf7-form input[type="radio"] {
		display: inline; 
		margin: 3px;
	}

	.wpcf7-form .wpcf7-list-item {
		margin: 0;
		display: inline-block;
		margin-right: 15px;
		margin-top: 10px;
	}

	.wpcf7-form .wpcf7-quiz, .wpcf7-form .wpcf7-captchar {
		width: 80px;
	}

	/* Errors */

	.wpcf7-form .wpcf7-response-output {
		margin-bottom: 0 !important;
	}

	.wpcf7-form .wpcf7-validation-errors, .wpcf7-form .wpcf7-spam-blocked {

		position: relative;
		margin-bottom: 20px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		padding: 10px 10px 10px 10px;	
		border: 1px solid;

		background-color: #fef8e2;
		border-color: #f5c558; 	
		color: #d2a604;
	}

	.wpcf7-form .wpcf7-mail-sent-ng {

		position: relative;
		margin-bottom: 20px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		padding: 10px 10px 10px 10px;	
		border: 1px solid;

		background-color: #fdf2f2;
		border-color: #ffabab; 	
		color: #fa5353;

	}

	.the-content .wpcf7-form .wpcf7-not-valid-tip, .the-content .wpcf7-form .wpcf7-not-valid-tip-no-ajax {

		border-radius: 3px;
		-webkit-border-radius: 3px;
		padding: 10px 10px 10px 10px;	
		border: 1px solid;

		background-color: #fef8e2;
		border-color: #f5c558; 	
		color: #d2a604;

		text-align: left;
	}

	.wpcf7-form .wpcf7-mail-sent-ok {
		border-radius: 3px;
		-webkit-border-radius: 3px;
		padding: 10px 10px 10px 10px;	
		border: 1px solid;

		background-color: #ecfbdd;
		border-color: #aedb2e; 	
		color: #6a9b62;
	}

	.the-content .wpcf7 .wpcf7-form .wpcf7-submit {
		margin-bottom: 0;
		padding: 9px 15px 8px;
		color: #ffffff;
		font-weight: normal;
		font-size: 14px;
	}

	/* Align to Right */

	.the-content .xt-align-right .wpcf7-form p {
		text-align: right;
	}

	.the-content .xt-align-right .wpcf7 .wpcf7-form .wpcf7-submit {
		margin: 0;
		margin-left: 10px;
		float: right;
	}

	.the-content .xt-align-right .wpcf7-form .wpcf7-form-control-wrap {
		margin-left: 10px;
	}

	/****************
		LATEST PROJECTS
	*****************/

	.widget .project-item .thumbnail .xt-project-hover {
		background: rgba(0, 0, 0, 0.8);
	}

	.widget .project-item .thumbnail .xt-project-hover span i {
		font-size: 20px;
	}

	.widget .xt-projects-wrapper .project-item-wrapper {
		border-radius: 0;
		-webkit-border-radius: 0;
		box-shadow: none;
		-webkit-box-shadow: none;
		border: none;
	}

	.widget .project-item .thumbnail img {
		border-radius: 0;
		-webkit-border-radius: 0;
		box-shadow: none;
		-webkit-box-shadow: none;
	}

	/* Latest Post Grid */

	body .xt-posts-wrapper .post-item .post-infos h1 {
		margin: 0;
		font-size: 16px;
		line-height: 22px;
		font-weight: normal;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	body .xt-posts-wrapper .post-item .post-infos h1 a {
		color: #000;
		font-weight: normal;
	}

	/* Latest Posts List */

	.xt-posts-list-wrapper .post-item .post-infos .post-title h1 {
		margin: 0;
		font-size: 16px;
		line-height: 22px;
		font-weight: normal;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.xt-posts-list-wrapper .post-item .post-infos .post-title h1 a, .xt-posts-list-wrapper .post-item .post-meta span a {
		color: #000;
		font-weight: normal;
	}

	.xt-posts-list-wrapper .post-item .post-format-icon span {
		background: #000;
	}

	/* Button Flat */

	#main a.button, #main a.button:visited, #main a.button-flat, .the-content a.button-flat:visited {
		color: #fff;
		font-weight: normal;
	}

	#main a.button-white.button-flat, .the-content a.button-white.button-flat:visited {
		color: #999;
	}

	#main a.button-white.button-flat:hover {
		color: #333 !important;
	}

	/* Carousel */

	body  .list_carousel .prev, body .list_carousel .next {
		width: 25px !important;
		height: 25px !important;
		line-height: 25px !important;
		background: #ddd;
	}

	body .list_carousel .prev:hover, body .list_carousel .next:hover {
		background: #000;
		color: #fff; 
	}

	/* Style Top */
	
	#main .list_carousel_normal .next {
		top: -11px;
		right: 6px;
	}

	#main .list_carousel_normal .prev {
		top: -11px;
		right: 26px;
	}

	/* Style Bottom */

	#main .list_carousel_bottom .prev {
		right: 26px;
	}

	/* Teaser Title */

	.the-content .teaser-simple h2 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 13px;
	}

	.the-content .teaser-box .teaser-box-content .teaser-box-title {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 13px;
		font-weight: normal;
	}

	/* Callout Title */

	.the-content .callout-box .callout-box-content .callout-box-title {
		font-weight: normal;
	}

	/* Testimonial Bubble */

	.the-content .testimonial .testimonial-meta {
		margin-left: 70px;
		padding-top: 8px;
	}

	/* Pricing Table */

	body .xt-column-pricing .pricing-details {
		background: #dfdfdf;
		background: -moz-linear-gradient(top,  #ffffff 0%, #eeeeee 5%, #ffffff 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(5%,#eeeeee), color-stop(100%,#ffffff));
		background: -webkit-linear-gradient(top,  #ffffff 0%,#eeeeee 5%,#ffffff 100%);
		background: -o-linear-gradient(top,  #ffffff 0%,#eeeeee 5%,#ffffff 100%);
		background: -ms-linear-gradient(top,  #ffffff 0%,#eeeeee 5%,#ffffff 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#eeeeee 5%,#ffffff 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfdfdf', endColorstr='#ffffff',GradientType=0 );
	}

	body .xt-column-pricing .pricing-button {
		background: #ffffff;
		background: -moz-linear-gradient(top,  #ffffff 0%, #eeeeee 95%, #dfdfdf 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(95%,#eeeeee), color-stop(100%,#dfdfdf));
		background: -webkit-linear-gradient(top,  #ffffff 0%,#eeeeee 95%,#dfdfdf 100%);
		background: -o-linear-gradient(top,  #ffffff 0%,#eeeeee 95%,#dfdfdf 100%);
		background: -ms-linear-gradient(top,  #ffffff 0%,#eeeeee 95%,#dfdfdf 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#eeeeee 95%,#dfdfdf 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dfdfdf',GradientType=0 );
	}

	.the-content .xt-column-pricing.pricing-featured {
		margin-top: -8px;
	}

	.the-content .xt-column-pricing.pricing-featured .pricing-details {
		padding: 20px;
	}

	.the-content .xt-column-pricing .pricing-top {
		background: #000;
		height: 40px !important;
		line-height: 40px;
		margin-top: -40px;
		font-size: 14px;
	}

	.the-content .xt-column-pricing .pricing-button {
		padding: 25px 20px;
	}

	.the-content .xt-column-pricing.pricing-featured .pricing-button {
		padding: 35px 20px;
	}

	.the-content .xt-column-pricing .button.button {
		margin-bottom: 0;
	}

	body .xt-column-pricing h1 {
		font-weight: normal;
		margin-bottom: 0;
	}

	body .xt-column-pricing h2 { 
		font-weight: normal;
	}

	body .xt-column-pricing:first-child {
		border-radius: 4px 0 0 4px;
		-webkit-border-radius: 4px 0 0 4px;
	}

		body .xt-column-pricing:first-child .pricing-details, body .xt-column-pricing:first-child .pricing-top {
			border-radius: 4px 0 0 0;
			-webkit-border-radius: 4px 0 0 0;
		}

		body .xt-column-pricing:first-child .pricing-button {
			border-radius: 0 0 0 4px;
			-webkit-border-radius: 0 0 0 4px;
		}

	body .xt-column-pricing:last-child {
		border-radius: 0 4px 4px 0;
		-webkit-border-radius: 0 4px 4px 0;
	}

		body .xt-column-pricing:last-child .pricing-details,  body .xt-column-pricing:last-child .pricing-top {
			border-radius: 0 4px 0 0;
			-webkit-border-radius: 0 4px 0 0;
		}

		body .xt-column-pricing:last-child .pricing-button {
			border-radius: 0 0 4px 0;
			-webkit-border-radius: 0 0 4px 0;
		}

	/* Skill Bars */

	.the-content .skill-bar .skill-title {
		color: #000000;
	}

	.the-content .skill-bar .skill-wrapper .skill-progress {
		background: #222;
	}

	/* Toggles */

	#main .toggle .toggle-title a {
		padding: 11px 30px 10px 20px;
		font-size: 13px;
		line-height: 18px;
	}

	body .toggle .toggle-title.toggle-active a {
		background-color: #fff;
		color: #000;
	}

	/* Accordion */

	#main .accordions .accordion-title a {
		padding: 11px 30px 10px 20px;
		font-size: 13px;
		line-height: 18px;
	}

	body .accordions .accordion-title.accordion-active a {
		background-color: #fff;
		color: #000;
	}

	/* Buttons */

	/* Black */
	#main .button.button-black.button-normal {
		background: #656565;
		background: -moz-linear-gradient(top,  #656565 0%, #3a3a3a 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#656565), color-stop(100%,#3a3a3a));
		background: -webkit-linear-gradient(top,  #656565 0%,#3a3a3a 100%);
		background: -o-linear-gradient(top,  #656565 0%,#3a3a3a 100%);
		background: -ms-linear-gradient(top,  #656565 0%,#3a3a3a 100%);
		background: linear-gradient(to bottom,  #656565 0%,#3a3a3a 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#656565', endColorstr='#3a3a3a',GradientType=0 );

		border: 1px solid #222222;
		border-top-color: #757575;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-black.button-normal:hover {
		background: #111111;
		background: -moz-linear-gradient(top,  #111111 0%, #000000 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#111111), color-stop(100%,#000000));
		background: -webkit-linear-gradient(top,  #111111 0%,#000000 100%);
		background: -o-linear-gradient(top,  #111111 0%,#000000 100%);
		background: -ms-linear-gradient(top,  #111111 0%,#000000 100%);
		background: linear-gradient(to bottom,  #111111 0%,#000000 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#111111', endColorstr='#000000',GradientType=0 );

		color: #fff;
		border: 1px solid #000;
	}

	/* Gray */
	#main .button.button-gray.button-normal {
		background: #a9a9a9;
		background: -moz-linear-gradient(top,  #a9a9a9 0%, #8c8c8c 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a9a9a9), color-stop(100%,#8c8c8c));
		background: -webkit-linear-gradient(top,  #a9a9a9 0%,#8c8c8c 100%);
		background: -o-linear-gradient(top,  #a9a9a9 0%,#8c8c8c 100%);
		background: -ms-linear-gradient(top,  #a9a9a9 0%,#8c8c8c 100%);
		background: linear-gradient(to bottom,  #a9a9a9 0%,#8c8c8c 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9a9a9', endColorstr='#8c8c8c',GradientType=0 );

		border: 1px solid #656565;
		border-top-color: #a2a2a2;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-gray.button-normal:hover {

		background: #999999;
		background: -moz-linear-gradient(top,  #999999 0%, #666666 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), color-stop(100%,#666666));
		background: -webkit-linear-gradient(top,  #999999 0%,#666666 100%);
		background: -o-linear-gradient(top,  #999999 0%,#666666 100%);
		background: -ms-linear-gradient(top,  #999999 0%,#666666 100%);
		background: linear-gradient(to bottom,  #999999 0%,#666666 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#666666',GradientType=0 );

		border: 1px solid #555;
	}

	/* White */
	#main .button.button-white.button-normal {
		background: #ffffff;
		background: -moz-linear-gradient(top,  #ffffff 0%, #eeeeee 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee));
		background: -webkit-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
		background: -o-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
		background: -ms-linear-gradient(top,  #ffffff 0%,#eeeeee 100%);
		background: linear-gradient(to bottom,  #ffffff 0%,#eeeeee 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 );

		border: 1px solid #ccc;
		border-top-color: #ddd;
		color: #777;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);

	}

	#main .button.button-white.button-normal:hover {
		background: #ffffff;
		color: #000;
		border: 1px solid #c2c2c2;
	}

	/* Red */
	#main .button.button-red.button-normal {
		background: #ff7f7b;
		background: -moz-linear-gradient(top,  #ff7f7b 0%, #f25a57 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff7f7b), color-stop(100%,#f25a57));
		background: -webkit-linear-gradient(top,  #ff7f7b 0%,#f25a57 100%);
		background: -o-linear-gradient(top,  #ff7f7b 0%,#f25a57 100%);
		background: -ms-linear-gradient(top,  #ff7f7b 0%,#f25a57 100%);
		background: linear-gradient(to bottom,  #ff7f7b 0%,#f25a57 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7f7b', endColorstr='#f25a57',GradientType=0 );

		border: 1px solid #c5413f;
		border-top-color: #e26a68;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-red.button-normal:hover {
		color: #ffffff;
		border: 1px solid #641111;
		background: #e56060;
		background: -moz-linear-gradient(top,  #e56060 0%, #e62727 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e56060), color-stop(100%,#e62727));
		background: -webkit-linear-gradient(top,  #e56060 0%,#e62727 100%);
		background: -o-linear-gradient(top,  #e56060 0%,#e62727 100%);
		background: -ms-linear-gradient(top,  #e56060 0%,#e62727 100%);
		background: linear-gradient(to bottom,  #e56060 0%,#e62727 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e56060', endColorstr='#e62727',GradientType=0 );
	}

	/* Orange */
	#main .button.button-orange.button-normal {
		background: #eaa021;
		background: -moz-linear-gradient(top,  #eaa021 0%, #e07519 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaa021), color-stop(100%,#e07519));
		background: -webkit-linear-gradient(top,  #eaa021 0%,#e07519 100%);
		background: -o-linear-gradient(top,  #eaa021 0%,#e07519 100%);
		background: -ms-linear-gradient(top,  #eaa021 0%,#e07519 100%);
		background: linear-gradient(to bottom,  #eaa021 0%,#e07519 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaa021', endColorstr='#e07519',GradientType=0 );

		border: 1px solid #c15416;
		border-top-color: #e79f62;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-orange.button-normal:hover {
		background: #ff8747;
		background: -moz-linear-gradient(top,  #ff8747 0%, #ff5c00 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff8747), color-stop(100%,#ff5c00));
		background: -webkit-linear-gradient(top,  #ff8747 0%,#ff5c00 100%);
		background: -o-linear-gradient(top,  #ff8747 0%,#ff5c00 100%);
		background: -ms-linear-gradient(top,  #ff8747 0%,#ff5c00 100%);
		background: linear-gradient(to bottom,  #ff8747 0%,#ff5c00 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8747', endColorstr='#ff5c00',GradientType=0 );
		color: #ffffff;
		border: 1px solid #c94e09;
	}

	/* Magenta */
	#main .button.button-magenta.button-normal {
		background: #ee61d1;
		background: -moz-linear-gradient(top,  #ee61d1 0%, #e442b4 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ee61d1), color-stop(100%,#e442b4));
		background: -webkit-linear-gradient(top,  #ee61d1 0%,#e442b4 100%);
		background: -o-linear-gradient(top,  #ee61d1 0%,#e442b4 100%);
		background: -ms-linear-gradient(top,  #ee61d1 0%,#e442b4 100%);
		background: linear-gradient(to bottom,  #ee61d1 0%,#e442b4 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee61d1', endColorstr='#e442b4',GradientType=0 );

		border: 1px solid #b92880;
		border-top-color: #f184d1;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-magenta.button-normal:hover {
		background: #fb72fb;
		background: -moz-linear-gradient(top,  #fb72fb 0%, #ef3fef 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fb72fb), color-stop(100%,#ef3fef));
		background: -webkit-linear-gradient(top,  #fb72fb 0%,#ef3fef 100%);
		background: -o-linear-gradient(top,  #fb72fb 0%,#ef3fef 100%);
		background: -ms-linear-gradient(top,  #fb72fb 0%,#ef3fef 100%);
		background: linear-gradient(to bottom,  #fb72fb 0%,#ef3fef 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb72fb', endColorstr='#ef3fef',GradientType=0 );
		color: #ffffff;
		border: 1px solid #81043b;
	}

	/* Yellow */
	#main .button.button-yellow.button-normal {
		background: #ffe69a;
		background: -moz-linear-gradient(top,  #ffe69a 1%, #ffde79 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffe69a), color-stop(100%,#ffde79));
		background: -webkit-linear-gradient(top,  #ffe69a 1%,#ffde79 100%);
		background: -o-linear-gradient(top,  #ffe69a 1%,#ffde79 100%);
		background: -ms-linear-gradient(top,  #ffe69a 1%,#ffde79 100%);
		background: linear-gradient(to bottom,  #ffe69a 1%,#ffde79 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe69a', endColorstr='#ffde79',GradientType=0 );

		border: 1px solid #d6b962;
		border-top-color: #edd48c;
		color: #a0893f;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
	}

	#main .button.button-yellow.button-normal:hover {
		background: #ffcb5b;
		background: -moz-linear-gradient(top,  #ffcb5b 0%, #f4ac11 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffcb5b), color-stop(100%,#f4ac11));
		background: -webkit-linear-gradient(top,  #ffcb5b 0%,#f4ac11 100%);
		background: -o-linear-gradient(top,  #ffcb5b 0%,#f4ac11 100%);
		background: -ms-linear-gradient(top,  #ffcb5b 0%,#f4ac11 100%);
		background: linear-gradient(to bottom,  #ffcb5b 0%,#f4ac11 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb5b', endColorstr='#f4ac11',GradientType=0 );

		color: #ffffff;
		border: 1px solid #9c7b35;
	}

	/* Blue */
	#main .button.button-blue.button-normal {
		background: #a2e8f5;
		background: -moz-linear-gradient(top,  #a2e8f5 0%, #5ec7e5 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a2e8f5), color-stop(100%,#5ec7e5));
		background: -webkit-linear-gradient(top,  #a2e8f5 0%,#5ec7e5 100%);
		background: -o-linear-gradient(top,  #a2e8f5 0%,#5ec7e5 100%);
		background: -ms-linear-gradient(top,  #a2e8f5 0%,#5ec7e5 100%);
		background: linear-gradient(to bottom,  #a2e8f5 0%,#5ec7e5 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2e8f5', endColorstr='#5ec7e5',GradientType=0 );

		border: 1px solid #5ab0c9;
		border-top-color: #88d2e1;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
	}

	#main .button.button-blue.button-normal:hover {
		background: #6bc8ea;
		background: -moz-linear-gradient(top,  #6bc8ea 0%, #00adee 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6bc8ea), color-stop(100%,#00adee));
		background: -webkit-linear-gradient(top,  #6bc8ea 0%,#00adee 100%);
		background: -o-linear-gradient(top,  #6bc8ea 0%,#00adee 100%);
		background: -ms-linear-gradient(top,  #6bc8ea 0%,#00adee 100%);
		background: linear-gradient(to bottom,  #6bc8ea 0%,#00adee 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6bc8ea', endColorstr='#00adee',GradientType=0 );

		border: 1px solid #0a88b7;
		color: #ffffff;
	}

	/* Pink */
	
	#main .button.button-pink.button-normal {
		background: #ff96bc;
		background: -moz-linear-gradient(top,  #ff96bc 0%, #dc6c89 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff96bc), color-stop(100%,#dc6c89));
		background: -webkit-linear-gradient(top,  #ff96bc 0%,#dc6c89 100%);
		background: -o-linear-gradient(top,  #ff96bc 0%,#dc6c89 100%);
		background: -ms-linear-gradient(top,  #ff96bc 0%,#dc6c89 100%);
		background: linear-gradient(to bottom,  #ff96bc 0%,#dc6c89 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff96bc', endColorstr='#dc6c89',GradientType=0 );
		
		border: 1px solid #c34f63;
		border-top-color: #d37c8c;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	
	#main .button.button-pink.button-normal:hover {
		background: #dc6c89;
		background: -moz-linear-gradient(top,  #dc6c89 0%, #a43250 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dc6c89), color-stop(100%,#a43250));
		background: -webkit-linear-gradient(top,  #dc6c89 0%,#a43250 100%);
		background: -o-linear-gradient(top,  #dc6c89 0%,#a43250 100%);
		background: -ms-linear-gradient(top,  #dc6c89 0%,#a43250 100%);
		background: linear-gradient(to bottom,  #dc6c89 0%,#a43250 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dc6c89', endColorstr='#a43250',GradientType=0 );

		color: #ffffff;
		border: 1px solid #991563;
	}

	/* Green */
	#main .button.button-green.button-normal {
		background: #9bd3ad;
		background: -moz-linear-gradient(top,  #9bd3ad 0%, #7ebb8f 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9bd3ad), color-stop(100%,#7ebb8f));
		background: -webkit-linear-gradient(top,  #9bd3ad 0%,#7ebb8f 100%);
		background: -o-linear-gradient(top,  #9bd3ad 0%,#7ebb8f 100%);
		background: -ms-linear-gradient(top,  #9bd3ad 0%,#7ebb8f 100%);
		background: linear-gradient(to bottom,  #9bd3ad 0%,#7ebb8f 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bd3ad', endColorstr='#7ebb8f',GradientType=0 );

		border: 1px solid #629370;
		border-top-color: #a3c7ae;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-green.button-normal:hover {
		background: #7ebb8f;
		background: -moz-linear-gradient(top,  #7ebb8f 0%, #4f9562 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7ebb8f), color-stop(100%,#4f9562));
		background: -webkit-linear-gradient(top,  #7ebb8f 0%,#4f9562 100%);
		background: -o-linear-gradient(top,  #7ebb8f 0%,#4f9562 100%);
		background: -ms-linear-gradient(top,  #7ebb8f 0%,#4f9562 100%);
		background: linear-gradient(to bottom,  #7ebb8f 0%,#4f9562 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7ebb8f', endColorstr='#4f9562',GradientType=0 );
		color: #ffffff;
		border: 1px solid #617b12;
	}

	/* Rosy */
	#main .button.button-rosy.button-normal {
		background: #feb7d0;
		background: -moz-linear-gradient(top,  #feb7d0 0%, #fd95ba 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#feb7d0), color-stop(100%,#fd95ba));
		background: -webkit-linear-gradient(top,  #feb7d0 0%,#fd95ba 100%);
		background: -o-linear-gradient(top,  #feb7d0 0%,#fd95ba 100%);
		background: -ms-linear-gradient(top,  #feb7d0 0%,#fd95ba 100%);
		background: linear-gradient(to bottom,  #feb7d0 0%,#fd95ba 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feb7d0', endColorstr='#fd95ba',GradientType=0 );

		border: 1px solid #da86a3;
		border-top-color: #f4bccf;
		color: #ffffff;

		-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5), 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
	}

	#main .button.button-rosy.button-normal:hover {
		background: #f19aa5;
		background: -moz-linear-gradient(top,  #f19aa5 0%, #f16c7c 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f19aa5), color-stop(100%,#f16c7c));
		background: -webkit-linear-gradient(top,  #f19aa5 0%,#f16c7c 100%);
		background: -o-linear-gradient(top,  #f19aa5 0%,#f16c7c 100%);
		background: -ms-linear-gradient(top,  #f19aa5 0%,#f16c7c 100%);
		background: linear-gradient(to bottom,  #f19aa5 0%,#f16c7c 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f19aa5', endColorstr='#f16c7c',GradientType=0 );
		color: #ffffff;
		border: 1px solid #aa3f4c;
	}

	/* Tables */

	#main-wrapper .table_style_zebra table tbody tr:nth-child(even) {
		background: #eee;
	}

	/* Teasers */

	body .teaser-simple {
		border: none;
	}

	body .teaser-simple .teaser-simple-content {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}

/********************
	PORTFOLIO
********************/

	.page-excerpt {
		margin-bottom: 45px;
	}

	.page-excerpt p {
		font-size: 14px;
		line-height: 21px;
		font-family: "MuseoSlab-500", "Rokkitt", "Georgia", "Times New Roman", serif;
	}

	.page-excerpt p:last-child {
		margin-bottom: 0;
	}

	/* Filter Wrapper and Filters */

	.xt-filters-wrapper {
		margin-bottom: 40px;
	}

	.xt-filters-wrapper ul.xt-filters li {
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	.xt-filters-wrapper ul.xt-filters li a, .xt-filters-wrapper ul.xt-filters li a:visited {
		padding: 0px 10px;
		color: #000;
		font-size: 13px;
		line-height: 19px;
		font-weight: normal;
		padding: 4px 15px;
	}

	.xt-filters-wrapper ul.xt-filters li a:first-child {
		
	}

	.xt-filters-wrapper ul.xt-filters li a:hover, .xt-filters-wrapper ul.xt-filters li a.current {
		background: #000;
		color: #fff;
		border-radius: 3px;
		-webkit-border-radius: 3px;
	}

	/* Default Margins */

	.xt-projects-wrapper .project-item {
		margin-bottom: 15px;
	}

	/* Portfolio 4 Columns Item Fix */

	.xt-projects-wrapper .project-item.project-four {
		width: 22.92%
	}

	/* Project Item */

	#main .xt-projects-wrapper .project-item-wrapper {
		border: none;
		border-radius: 0;
		-webkit-border-radius: 0;

		-webkit-box-shadow: none;
		box-shadow: none;
	}

	/* Thumbnail */

	.the-content .project-item .thumbnail {
		border: 1px solid #e5e5e5;
	}

	#main .project-item .thumbnail img {
		border-radius: 0;
		-webkit-border-radius: 0;

		box-shadow: none;
		-webkit-box-shadow: none;
	}

	#main .project-item .thumbnail .xt-project-hover {
		background: rgba(0, 0, 0, 0.5);
	}

	/* Infos */

	#main .project-item .project-infos {
		padding: 10px 0 0;
	}

	#main .project-item .project-infos h1 {
		margin: 0;
		font-size: 16px;
		line-height: 22px;
		font-weight: normal;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
	}

	#main .project-item .project-infos h1 a, .project-item .project-infos h1 a:visited {
		color: #000;
		font-weight: normal;
	}

	#main .project-item .project-infos h1 a:hover {
		
	}

	#main .project-item .project-infos .project-excerpt {
		padding-top: 0px;
		margin: 0px;
	}

	#main .project-item .project-infos .project-excerpt p {
		margin: 0;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
		font-size: 11px;
		color: #888;
	}

	/* Single Project */

	.page-title.page-title-single-project h1 {
		font-size: 27px;
		line-height: 35px;
	}

	.page-title.page-title-single-project h1 span {
		font-size: 11px;
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
		color: #888;
		line-height: 16px;
		padding-left: 10px;
	}

	.project-media img {
		max-width: 100%;
		height: auto;
	}

	/* Lightbox Style */

	.project-media img {
		border-radius: 0;
		-webkit-border-radius: 0;
	}

	.project-media .single-featured {
		position: relative;
		display: block;
	}

	.project-media .xt-project-hover {
		background: rgba(0, 0, 0, 0.6)
	}

	/* Slider */

	.project-media .flexslider {
		border: none;
		border-radius: 0;
		-webkit-border-radius: 0;
		margin-bottom: 0;
	}

	/* Project Navigation */

	body .post-navigation {
		margin-bottom: 20px;
	}

	body .post-navigation a, body .post-navigation a:visited {
		background: #eee;
		color: #000;
		font-size: 11px;
		text-transform: uppercase;
		text-decoration: none;
		padding: 2px 10px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		display: block;
	}

	body .post-navigation a:hover {
		background: #000;
		color: #ffffff;
	}

	body .post-navigation .previous-post {
		float: right;
	}

	body .post-navigation .next-post {
		float: left;
	}

	/* Related Projects */

	.single-project-related {
		margin-top: 35px; 
	}

	.single-project-related .xt-related-headline {
		border-top: 1px solid #e5e5e5;
		padding: 35px 0;

	}

	.single-project-related .xt-related-headline h1 {
		font-family: "MuseoSans-500", "Droid Sans", "Helvetica", Arial, sans-serif;
		font-size: 18px;
		color: #000;
		line-height: 25px;
		margin-bottom: 0;
	}

	.xt-related-wrapper {

	}

	/* Single Project Related */

	.xt-related-wrapper .project-item.project-four img {
		max-width: 100%;
		height: 120px;
	}

	/* Sliders */

	/* Revolution Slider */

	.rev_bannercontainer {
		padding: 0 !important;
	}

	/* Revolution Theme Default Navigation < & > */
	
	body .rev_banner_custom_arrows .tp-leftarrow.default {
		background-image: url(../images/sliders/rev_arrow_left.png);
	}

	body .rev_banner_custom_arrows .tp-rightarrow.default{
		background-image: url(../images/sliders/rev_arrow_right.png);
	}

	/* Revolution Theme Default Navigation Bar 1, 2, 3, 4 */

	body .rev_banner_custom_arrows .tp-bullets.simplebullets.round {
		left: inherit !important;
		right: 10%;
		bottom: 0px !important;
	}

	body .rev_banner_custom_arrows .tp-bullets.simplebullets.round .bullet {
		width: 42px;
		height: 17px;
		background: #000;
		margin-top: 0px;
		margin-left: 0;

		display: block;

		border-top: 6px solid #ffffff;
		border-bottom: 6px solid #ffffff;

		border-left: 8px solid #ffffff;
		border-right: 8px solid #ffffff;
	}

	body .rev_banner_custom_arrows .tp-bullets.simplebullets.round .bullet.selected {
		background: #888;
	}

	/* Revolution Captions */

	#container-full .tp-caption.default-heading { 
		background: #000;
	}

	#container-full .tp-caption.very-big {
		color: #000;
		font-family: "Droid Sans", "Helvetica", Arial, sans-serif;
		font-weight: normal;
	}

	body .tp-caption.default-heading, body .tp-caption.subheader-gray, body .tp-caption.opacity-dark,
	body .tp-caption.very-big, body .tp-caption.very-big-dark {
		font-family: "Droid Sans", "Helvetica", Arial, sans-serif;
		font-weight: normal;
	}

	body .tp-caption.very-big, body .tp-caption.very-big-dark {
		letter-spacing: -2px;
	}

	#container-full .tp-caption .button.button-white:hover {
		color: #333;
	}

	/* Camera Slider Navigation Style */

	#container-full .camera_wrap .camera_pag .camera_pag_ul li {
		padding: 6px 8px;
		background: #ffffff;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		width: 30px;
		height: 5px;
		margin: 0;
		box-sizing: content-box;
		-webkit-box-sizing: content-box;
	}

	#container-full .camera_wrap .camera_pag .camera_pag_ul li span {
		width: 30px;
		height: 5px;
		background: #000;
		margin-top: 0px;
		margin-left: 0;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		position: static;
		display: block;
	}

	#container-full .camera_wrap .camera_pag .camera_pag_ul li.cameracurrent span {
		background: #888;
	}

	#container-full .camera_pag {
		position: relative;
	}

	#container-full .camera_wrap .camera_pag .camera_pag_ul {
		position: absolute;
		top: -17px;
		right: 15px;
	}

	/* FlexSlider Custom Style */

	#container-full .flex-direction-nav a {
		width: 40px; height: 40px; margin: -25px 0 0;
		background: url(../images/sliders/rev_arrow_left.png) no-repeat;
	}

	#container-full .flex-direction-nav .flex-next {
		background: url(../images/sliders/rev_arrow_right.png) no-repeat;
	}

	#container-full .flex-control-nav {
		bottom: -6px;
	}

	#container-full .flex-control-nav li {
		margin: 0;
		padding: 6px 8px;
		background: #ffffff;
	}

	#container-full .flex-control-paging li a {
		width: 30px; height: 5px;
		background: #000; 
		
		-webkit-border-radius: 0px; -moz-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px;

		box-shadow: none;
		-webkit-box-shadow: none;
	}

	#container-full .flex-control-paging li a:hover { background: #888; }

	#container-full .flex-control-paging li a.flex-active { background: #888; }

	#container-full .flexslider {
		box-shadow: none;
		-webkit-box-shadow: none;
	}

	/* Elastislider Custom Nav */

	#container-full .elastislide-wrapper nav span {
		background-color: #000;
	}

	body .elastislide-carousel ul li img {
		border-color: transparent;
	}

	/* Kenburn Slider Customization */

	#container-full .dc-fullwidth .light .kenburn-bg, #container-full .dc-fullwidth .dark .kenburn-bg {
		border: 1px solid #ffffff;
		border-radius: 0px; 
		-moz-border-radius: 0px; 
		-webkit-border-radius: 0px;
	}

	#container-full .bannershadow {	
		height: 20px;
	}

	#container-full .dc-responsive .kbpanel-bannercontainer {
		margin-top: 20px;
	}

	/* Nivo Slider Custom Nav */

	#container-full .nivo-directionNav a {
		background: url(../images/sliders/rev_arrow_left.png) no-repeat;
		margin: 12px;
		text-indent: -9999px;
		overflow: hidden;
		width: 40px;
		height: 40px;
	}

	#container-full .nivo-directionNav a.nivo-nextNav {
		background: url(../images/sliders/rev_arrow_right.png) no-repeat;
		right: 0px;
	}

	#container-full .theme-default .nivoSlider {
		box-shadow: none;
		-webkit-box-shadow: none;
		margin-bottom: 0px;
	}

	#container-full .theme-default .nivo-controlNav {
		padding: 0;
		z-index: 88888;
		position: relative;
		margin-top: -17px;
	}

	body .theme-default .nivo-controlNav a {
		display: inline-block;
		width: 30px;
		height: 5px;
		background: #000;
		margin: 0;

		border-top: 6px solid #ffffff;
		border-bottom: 6px solid #ffffff;

		border-left: 8px solid #ffffff;
		border-right: 8px solid #ffffff;
		box-sizing: content-box;
		-webkit-box-sizing: content-box;
	}

	#container-full .theme-default .nivo-controlNav a.active {
		background: #888;
	}

	#container-full .nivo-caption {
		bottom: 30px;
		margin: 0 15px;
		width: auto;
	}

	#xt-slider-wrapper .flexslider {
		margin-bottom: 0;
	}

/*--------------------------
	Home and Pages Margins
---------------------------*/

	body .image-header {
		margin: 25px 0 35px;
	}

		body .the-content > div.image-header:first-child {
		margin-top: 0;
	}

	body .callout-box {
		margin: 20px 0 40px;
	}

		body .the-content > div.callout-box:first-child {
			margin-top: 0;
		}

	body .styled-box .wpcf7-form {
		margin: 0;
	}

	body .xt-projects-shortcode {
		margin-bottom: 20px;
	}

	body .teaser-simple .teaser-simple-content {
		/* padding-bottom: 0; Use if No Borders in Teaser */
	}

	body .teaser-simple .teaser-simple-content p:last-child {
		margin-bottom: 0;
	}

	body .gmap-wrapper {
		margin-bottom: 25px;
	}
