
/* ==========================================================================
   =CssReset
   ========================================================================== */

	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;
	}
	
	/* HTML5 display-role reset for older browsers */
	
	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;
	}
	
	/**
	 * 1. Always force vertical scroll
	 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
	 * 3. For animations
	 */
	
	html { 
		font-size: 100%; 
		overflow-y: scroll; /* 1  */ 
		-ms-text-size-adjust: 100%; /* 2 */
    	-webkit-text-size-adjust: 100%; /* 2 */
		-webkit-font-smoothing: antialiased; 
		overflow-x: hidden; /* 3 */
	}

/* ==========================================================================
   =Typography
   ========================================================================== */
   
   /**
	 * 1. For animations
	 */
	 
	body {
		overflow-x: hidden; /* 1 */
		background-color: #fff;
		color: #4b4b4b;
		font: 16px "PT Sans Narrow", Arial, sans-serif; 
		line-height: 24px;	
	}

	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 {
		color: #0e0e0e;
		font-family: "Oswald", Arial, sans-serif;
	}
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		color: #0e0e0e;
		font-weight: inherit;
		text-decoration: none !important;
	}
	
	h1 {
		margin-bottom: 18px; 	 
		font-size: 48px; 
		line-height: 72px;
		letter-spacing: 5px; 
	}
	
	h2 {
		margin-bottom: 14px; 	 
		font-size: 36px; 
		line-height: 54px; 
		letter-spacing: 4px; 
	}
	
	h3 { 
		margin-bottom: 10px;	
		font-size: 24px; 
		line-height: 36px;
		letter-spacing: 3px;   
	}
	
	h4 { 
		margin-bottom: 8px;
		font-size: 18px; 
		line-height: 27px;
		letter-spacing: 3px;   
	}
	
	h5 {
		margin-bottom: 4px; 
		font-size: 16px; 
		line-height: 24px;
		letter-spacing: 2px;  
	}
	
	h6 { 
		font: 14px "PT Sans Narrow", Arial, sans-serif; 
		line-height: 21px;
		letter-spacing: 1px;
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: 700; }
	small { font-size: 90%; }
	
	sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}
	
	abbr[title] {  
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	address { 
		display: block; 
		margin-bottom: 20px; 
	}
	
	blockquote {}
	
	blockquote p { font-style: italic; }
	
	blockquote span { 
		display: block;
		margin-top: 5px;
		color: #999999;  
	}
	
	blockquote span:before { content: "\2013 \00A0"; }

	hr { 
		height: 0; 
		border: solid #e0e0e0; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

	code, 
	pre { 
		border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #e0e0e0;
		background-color: #f3f3f3;  
		color: #d50f25;  
	}
	
	pre { 
		overflow-x: auto; 
		display: block;
		padding: 20px;
		border: 1px solid #e0e0e0;   
		margin-bottom: 20px;
		white-space: pre-wrap;
		background-color: #f3f3f3; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #e0e0e0;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { color: #c88b5e; }

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #777; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
	@media (max-width: 767px) {
	
		/**
		 * 1. Hide background on mobile devices
		 */
	 
		body { 
			background: none; /* 1 */
			background-color: #fff; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last { margin-bottom: 20px; }
		
		.text-right { text-align: left; }

	}

/* ==========================================================================
   =Typography - Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #c88b5e; 
		text-decoration: none; 
	}
	
   /**
	* 1. Remove the gray background color from active links in IE 10.
	*/
	
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus {
		color: #c88b5e; 
		outline: 0; 
		text-decoration: underline;
	}	
	
/* ==========================================================================
   =Typography - Lists
   ========================================================================== */
	
	ul, 
	ol { 
		margin-bottom: 20px;
		list-style-position: inside; 
	}
	
	ul ul, 
	ul ol, 
	ol ol, 
	ol ul { 
		margin-bottom: 0; 
		margin-left: 30px; 
	}
	
	li {}
	
	ul { list-style-type: disc; }
	ol { list-style-type: decimal; }
	
	/* List Helper Classes */

	ul.last,
	ol.last { margin-bottom: 0; }
	
	@media (max-width: 767px) {

		ul.last, 
		ol.last { margin-bottom: 20px; }
		
	}

/* ==========================================================================
   =Typography - Images
   ========================================================================== */
	
	img { 
		max-width: 100%;
		border: none; 
	}
	
	/* Images Helper Classes */
	
	.img-align-left { 
		float: left;
		margin: 5px 10px 0 0;  
	}
	
	.img-align-right { 
		float: right;
		margin: 5px 0 0 10px; 
	}
	
	.img-block { display: block; }

/* ==========================================================================
   =Typography - Tables
   ========================================================================== */

	table { 
		width: 100%;
		border-collapse: collapse; 
		border-spacing: 0; 
		margin-bottom: 20px; 
		background-color: transparent; 
	}
	
	caption { 
		margin: 20px 0;
		font-weight: 700; 
		text-align: center; 
	}

	table th, 
	table td {
		padding: 8px; 
		border-top: 1px solid #e0e0e0;
		text-align: left; 
		vertical-align: top; 
	}
	
	table th { 
		border-top: 0;
		font-weight: 700;  
	}
	
	table thead th { vertical-align: bottom; }
	
/* ==========================================================================
   =Typography - Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #d50f25; }
	
	select,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="radio"],
	input[type="checkbox"] { cursor: pointer; }
	
	/*
	 * 1. stop safari from overwriting input styles
	 */	
	
	input,
	textarea,
	select {
		-webkit-appearance: none; /* 1 */
		display: block;		
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px 15px;
		border: 2px solid #4b4b4b;
		margin-bottom: 10px;
		background: transparent;
		color: #4b4b4b;
		font: 16px "PT Sans Narrow", Arial, sans-serif; 
		line-height: 21px;	
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #c88b5e;
		outline: 0;		
	}
	
	select { height: 45px; }
	
	select:focus {
	  outline: thin dotted #4b4b4b;
	  outline: 5px auto -webkit-focus-ring-color;
	  outline-offset: -2px;
	}
	
	textarea { 
		min-height: 100px; 
		overflow: auto;
	}

	.radio,
	.checkbox {
		min-height: 18px;
		padding-left: 18px;
	}
	
	.radio input[type="radio"],
	.checkbox input[type="checkbox"] {
		float: left;
		margin-left: -18px;
	}
	
	input:-moz-placeholder,
	textarea:-moz-placeholder {
		color: #999;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #999;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #999;
	}

/* ==========================================================================
   =Misc
   ========================================================================== */
   
	.javascript-required,
	.modern-browser-required {
	    padding: 15px 0;
		background-color: #d50f25;
		color: #fff;
		text-align: center;
		font-weight: 700;
	}
   

/* ==========================================================================
   =Base Grid
   ========================================================================== */

	.row { 
		position: relative; 
		width: 940px; 
		margin: 0 auto;
	}
	
	.row .row { 
		width: auto; 
		margin: 0;
	 }

 	.span1, 
	.span2, 
	.span3, 
	.span4, 
	.span5, 
	.span6, 
	.span7, 
	.span8, 
	.span9, 
	.span10, 
	.span11, 
	.span12 { float: left; }

	.span1 { 
		width: 60px;  
		margin-left: 20px; 
	}
	
	.span2 { 
		width: 140px; 
		margin-left: 20px; 
	}
	
	.span3 { 
		width: 220px; 
		margin-left: 20px; 
	}
	
	.span4 { 
		width: 300px;
		margin-left: 20px; 
	}
	
	.span5 { 
		width: 380px; 
		margin-left: 20px; 
	}
	
	.span6 { 
		width: 460px; 
		margin-left: 20px; 
	}
	
	.span7 { 
		width: 540px; 
		margin-left: 20px; 
	}
	
	.span8 { 
		width: 620px; 
		margin-left: 20px; 
	}
	
	.span9 { 
		width: 700px; 
		margin-left: 20px; 
	}
	
	.span10 { 
		width: 780px; 
		margin-left: 20px; 
	}
	
	.span11 { 
		width: 860px; 
		margin-left: 20px; 
	}
	
	.span12 { 
		width: 940px; 
		margin-left: 20px; 
	}
	
	.span1:first-child, 
	.span2:first-child, 
	.span3:first-child, 
	.span4:first-child, 
	.span5:first-child, 
	.span6:first-child, 
	.span7:first-child, 
	.span8:first-child, 
	.span9:first-child, 
	.span10:first-child, 
	.span11:first-child, 
	.span12:first-child { margin-left: 0; }
 
	.visible-phone { display: none !important; }
	.visible-tablet { display: none !important; }
	.hidden-desktop { display: none !important; }
	.visible-desktop { display: inherit !important; } 

/* ==========================================================================
   =Large Display
   ========================================================================== */

	@media (min-width: 1400px) {
	
		.row { width: 1170px; }
	
		.span1 { 
			width: 70px;  
			margin-left: 30px; 
		}
		
		.span2 { 
			width: 170px; 
			margin-left: 30px; 
		}
		
		.span3 { 
			width: 270px; 
			margin-left: 30px; 
		}
		
		.span4 { 
			width: 370px; 
			margin-left: 30px; 
		}
		
		.span5 { 
			width: 470px; 
			margin-left: 30px; 
		}
		
		.span6 { 
			width: 570px; 
			margin-left: 30px; 
		}
		
		.span7 { 
			width: 670px; 
			margin-left: 30px; 
		}
		
		.span8 { 
			width: 770px; 
			margin-left: 30px; 
		}
		
		.span9 { 
			width: 870px; 
			margin-left: 30px; 
		}
		
		.span10 { 
			width: 970px;
			margin-left: 30px;
		}
		
		.span11 { 
			width: 1070px; 
			margin-left: 30px; 
		}
		
		.span12 { 
			width: 1170px;
			margin-left: 30px; 
		}
		
	}
 
/* ==========================================================================
   =Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		.row { width: 705px; }
	
		.span1 { 
			width: 45px;  
			margin-left: 15px; 
		}
		
		.span2 { 
			width: 105px; 
			margin-left: 15px; 
		}
		
		.span3 { 
			width: 165px; 
			margin-left: 15px; 
		}
		
		.span4 { 
			width: 225px; 
			margin-left: 15px; 
		}
		
		.span5 { 
			width: 285px; 
			margin-left: 15px; 
		}
		
		.span6 { 
			width: 345px; 
			margin-left: 15px; 
		}
		
		.span7 { 
			width: 405px; 
			margin-left: 15px; 
		}
		
		.span8 { 
			width: 465px; 
			margin-left: 15px; 
		}
		
		.span9 { 
			width: 525px; 
			margin-left: 15px; 
		}
		
		.span10 { 
			width: 585px;
			margin-left: 15px; 
		}
		
		.span11 { 
			width: 645px; 
			margin-left: 15px; 
		}
		
		.span12 { 
			width: 705px;
			margin-left: 15px; 
		}
		
		.hidden-desktop { display: inherit !important; } 
		.visible-desktop { display: none !important; }
		.visible-tablet { display: inherit !important; } 
		.hidden-tablet { display: none !important; }
		
	}

/* ==========================================================================
   =Mobile (Portrait and Landscape )
   ========================================================================== */

/* =Portrait and landscape
   ========================================================================== */
   
	@media (max-width: 767px) {
		
		.row { width: auto; }
		
		
		.row { padding: 0 20px; }
		
		.row .row { 
			width: auto; 
			padding: 0; 
			margin: 0; 
		}	
		
		.span1,
		.span2,
		.span3,
		.span4,
		.span5,
		.span6,
		.span7,
		.span8,
		.span9,
		.span10,
		.span11,
		.span12 { 
			float: none;
			display: block;
			width: 100%;
			-webkit-box-sizing: border-box;
			   -moz-box-sizing: border-box;
					box-sizing: border-box;
			margin-left: 0;
		}
		
		.hidden-desktop { display: inherit !important; }
		.visible-desktop { display: none !important; }
		.visible-phone { display: inherit !important; }
		.hidden-phone { display: none !important; }
		
	}
	
/* =Landscape
   ========================================================================== */
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row { padding: 0 40px; }
		
	}	
	
/* ==========================================================================
   =Align
   ========================================================================== */

	.float-left { float: left; }
	.float-right { float: right; }

/* ==========================================================================
   =Responsive Images and Embeds
   ========================================================================== */

	.responsive-img { 
		max-width: 100%; 
		height: auto; 
	}
	
	/**
 	 * 1. 16/9 ratio
 	 */
	 
	.responsive-embed {
		position: relative;
		overflow: hidden;
		height: 0;
		padding: 0;
		padding-bottom: 56.25%; /* 1 */	
		margin-bottom: 20px;
	}

	.responsive-embed iframe,
	.responsive-embed object,
	.responsive-embed embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/* ==========================================================================
   =Clearing
   ========================================================================== */

	/**
 	 * Automatically Clear Fix rows
 	 */
	 
	.row:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}

	/**
 	 * Clear Fix hack
	 * Usage:  add  class="fixed"  to div's that have floated elements in them
 	 */
	 
	.fixed:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	/**
 	 * Clear content
	 * Usage:  <br class="clear"> 
 	 */	
	 
	.clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
	} 
	
/* ==========================================================================
   =ResponsiveFormInputs
   ========================================================================== */
	
	/**
	 * 1. Reset float inherited from .span*	
 	 * 2. Reset margin-left inherited from .span*
 	 */
	 
	input.span1,
	textarea.span1,
	select.span1,
	input.span2,
	textarea.span2,
	select.span2,
	input.span3,
	textarea.span3,
	select.span3,
	input.span4,
	textarea.span4,
	select.span4,
	input.span5,
	textarea.span5,
	select.span5,
	input.span6,
	textarea.span6,
	select.span6,
	input.span7,
	textarea.span7,
	select.span7,
	input.span8,
	textarea.span8,
	select.span8,
	input.span9,
	textarea.span9,
	select.span9,
	input.span10,
	textarea.span10,
	select.span10,
	input.span11,
	textarea.span11,
	select.span11,
	input.span12,
	textarea.span12,
	select.span12 {
		float: none; 	/* 1 */
		margin-left: 0; /* 2 */
	}

 
/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	
	@media (max-width: 767px) {

		#wrap {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	/**
 	 * 1. z-index is 25 because the fullwidthbanner ul li is 20
 	 */
	
	#header {
		position: absolute;
		z-index: 25;
		top: 0;
		left: 0;
		right: 0;
		background-color: rgba(23, 23, 23, 0.9);
	}
	
	#header.no-background { background-color: transparent; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#header,
		#header.no-background {
			position: relative;
			background-color: #171717; 
		}
		
	}
	
	@media (max-width: 767px) {
		
		#header,
		#header.no-background {
			position: relative;
			background-color: #171717; 
		}
		
	}
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo { 
		display: inline-block; 
		padding: 40px 0 36px 0;
	}
	
/* ==========================================================================
   =Menu 
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */
   
	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025; /* 1 */
		top: 100%;
		left: 0;
		display: none;
	}
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -1px;
		left: 100%;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu { float: right;} 
	
	.sf-menu a {
		display: inline-block;
		padding: 14px 0;
		border-bottom: 1px solid #c88b5e;
		font: 14px 'PT Sans Narrow', Arial, sans-serif;
		color: #fff; 
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 3px;	
	}
	
	.sf-menu li.dropdown a { padding: 14px 0; }
	
	.sf-menu li:last-child > a { border-bottom: none; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 50px 0;
		border: none;
		color: #fff;
		font: 16px "Oswald", Arial, sans-serif;
	}
	
	.sf-menu > li > a span,
	.sf-menu > li.dropdown > a span {
		display: inline-block;
		padding: 5px 8px;
		border: 2px solid transparent;
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.active > a span { 
		border-color: #c88b5e;
		color: #fff;
	}
	
	.sf-menu > li.active > a,
	.sf-menu li.sfHover > a,
	.sf-menu a:hover,
	.sf-menu li.sfHover a:hover {
		color: #c88b5e;
		text-decoration: none;	
	}
	
	@media (min-width: 1400px) {
		
		.sf-menu > li > a,
		.sf-menu > li.dropdown > a { padding: 50px 15px; }
		
	}

/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 180px; /* 1 */
		padding: 20px 0 20px 30px;
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #171717;			
	}

	.sf-menu > li.dropdown > ul {}	
		
/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #171717;
	}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
		border-right: 1px solid #e0e0e0;
	}
	
	.sf-mega-section:last-child { border-right: none; }

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */
	
	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */
	
	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }
	
	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }
	
	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: #999;
		margin-top: 2px;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: #999;
		margin-top: -5px;
		margin-right: 4px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: rgba(0, 0, 0, 0.7); }
	
	@media (min-width: 768px) and (max-width: 979px) {

		#menu { display: none; }

	}
	
	@media (max-width: 767px) {

		#menu { display: none; }
	
	}
	
/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */
			
	#mobile-menu {
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 0;
		background-color: #171717;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { margin-left: 0; }

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #e0e0e0;
		color: #fff;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #e0e0e0;
		color: #fff;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #c88b5e; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 32px;
	}

	@media (min-width: 768px) and (max-width: 979px) {

		#mobile-menu-trigger { 
			display: block;
			margin-top: 52px;
			margin-right: 0;
		}	

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger { 
			position: absolute;
			top: 42px;
			right: 20px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger { right: 30px; }
	
	}		

/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 768px) {
		
	/**
 	 * We want to allow the header to be sticky on resolutions > 1024. In order to do this
	 * we position it absolute and when the sticky trigger point is reached we give the #header
     * the .stuck class	and change it's positioning to fixed
	 * 	
 	 */
		
		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */
		
		#header.stuck {
			display: block;
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			padding: 5px 0 0 0;
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
			margin: 0 auto;
			background-color: #171717 !important;
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}
		
		#header.stuck  #logo { padding: 10px 0 11px 0; }
		
		#header.stuck  .sf-menu > li > a,
		#header.stuck  .sf-menu > li.dropdown > a { padding: 20px 0 25px; }

		#header.stuck .sf-arrows .sf-with-ul:after { margin-top: -6px; }		
	
		#header.stuck  #custom-search-button { top: 28px; }
		#header.stuck  #custom-search-form { top: 83px; }
	
	}
	
	@media (min-width: 1400px) {
		
		#header.stuck  .sf-menu > li > a,
		#header.stuck  .sf-menu > li.dropdown > a { padding: 20px 15px 25px; }
		
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 50px; }

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header {
		padding: 235px 0 100px 0;
		margin-bottom: 100px;
		background: no-repeat center center;
		text-align: center;
	}
	
	#page-header .headline { margin: 0; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#page-header { padding-top: 100px; }
		
	}
	
	@media (max-width: 767px) {
		
		#page-header { padding-top: 100px; }
		
	}
   
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer {
		padding: 75px 0 10px 0;
		background-color: #171717;
		color: #fff;
	}
	
	#footer a,
	#footer h1,
	#footer h2,
	#footer h3,
	#footer h4,
	#footer h5,
	#footer h6 { color: #fff; }
	
	#footer-widget-area-1 {}	
	
	#footer .ewf_widget_social_media { text-align: center; }
	
	#footer .ewf_widget_social_media a.social-icon { 	
		float: none;
		display: inline-block;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: #fff;
		background-clip: padding-box;
		color: #4b4b4b;
	}
	
	#footer .ewf_widget_social_media a.social-icon:hover { color: #fff; }
	
	#footer .ewf_widget_social_media a.social-icon i {
		font-size: 26px;
		line-height: 50px;
	}
	
	#footer .custom-box-item i { background-color: #171717; }
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { padding: 35px 0; }
	
	#footer-bottom-widget-area-1 {}
	
	#footer-bottom .widget:last-child { margin-bottom: 0; }
	
	#footer-bottom .widget_text h4 {
		margin-bottom: 0;
		font-family: "PT Sans Narrow", Arial, sans-serif; 
	}
	
/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #0e0e0e;
		color: #fafafa;
		font-size: 30px;
		text-align: center;					
		opacity: 0.5;
		cursor: pointer;
		text-decoration: none;
		-webkit-transition: all 0.4s;
				transition: all 0.4s;
	}
	
	#back-to-top i {
		font-size: 28px;
		line-height: 40px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s;
				transition: all 0.4s;
	}
	
	#back-to-top:hover { background-color: rgba(0, 0, 0, 0.7); }
	#back-to-top:hover i { color: #fff; }
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -40px; }	
	
/* ==========================================================================
   =Services
   ========================================================================== */
   	
	#services { padding: 125px 0 25px 0; }

/* ==========================================================================
   =Features
   ========================================================================== */
	
	#features { padding-top: 125px; }
	
/* ==========================================================================
   =Portfolio
   ========================================================================== */
   	
	#portfolio { padding-top: 85px; }
	
/* ==========================================================================
   =About
   ========================================================================== */
   
   	#about { padding: 125px 0 100px 0; }
	
/* ==========================================================================
   =Team
   ========================================================================== */
   
   	#team { padding: 125px 0 75px 0; }
	
/* ==========================================================================
   =Pricing
   ========================================================================== */
   
   	#pricing { padding-top: 125px; }
		
/* ==========================================================================
   =Blog
   ========================================================================== */
   
   	#blog { padding: 125px 0 55px 0; }
	
/* ==========================================================================
   =contact
   ========================================================================== */
   
   	#contact { 
		padding: 125px 0 75px 0;
		margin-bottom: -50px;
		background: url(../../content/backgrounds/1920x1280-3.jpg) no-repeat center center;
	}
	
	#contact-form { color: #fff; }
	
	#contact-form input,
	#contact-form textarea {
		border-color: #fff;
		color: #fff;
	}
	
	#contact-form input:focus,
	#contact-form textarea:focus,
	#contact-form #submit:hover { border-color: #c88b5e; }

/* ==========================================================================
   #Slider
   ========================================================================== */
   
	.main-slider {
		position: relative;
		overflow: hidden;
		margin: 0 auto 60px auto;
	}

	.main-slider .main-slider__slides {
		margin-bottom: 0;
		list-style: none;
		position: relative;
	}

	.main-slider .main-slider__slides li {
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		padding: 50px 30px;
		min-height: 250px;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__slides li {
			padding: 75px 15px;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__slides li {
			padding: 75px 20px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__slides li {
			padding: 100px 30px;
		}
	}

	.main-slider .main-slider__slides li .main-slider-slide__overlay {
		position: absolute;
		z-index: 1;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.25);
	}

	.main-slider .main-slider__slides li .main-slider-slide__content {
		position: relative;
		z-index: 2;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 730px;
			min-height: 90vh;
			box-sizing: border-box;
			margin: 0 auto;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 940px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 1140px;
		}
	}

	@media (min-width: 768px) {
		.main-slider-slide__content--align-center {
			text-align: center;
		}
		.main-slider-slide__content--align-right {
			text-align: right;
		}
	}

	.main-slider .main-slider-slide__content-wrap *:last-child {
		margin-bottom: 0;
	}

	@media (min-width: 768px) {
		.main-slider-slide__content--valign-middle .main-slider-slide__content-wrap {
			position: absolute;
			top: 50%;
			width: 100%;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
		}
		.main-slider-slide__content--valign-bottom .main-slider-slide__content-wrap {
			position: absolute;
			bottom: 0;
			width: 100%;
		}
	}
	
	.main-slider-slide__content h1 {
		color: #fff;
		font: 72px/72px "Oswald", Arial, sans-serif;
		letter-spacing: 10px;
		text-transform: uppercase;
	}
	
	.main-slider-slide__content h1:after {
		display: block;
		width: 145px;
		border-bottom: 3px solid #c88b5e;
		margin: 40px auto 0 auto;
		content: "";
	}
	
	.main-slider-slide__content h2 {}
	
	.main-slider-slide__content p {
		color: #fff;
		font-size: 18px;
		letter-spacing: 5px;
	}
	
	.main-slider-slide__content .btn {
		border-color: #fff;
		color: #fff;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 2px;
	}
	

	.main-slider .main-slider__pager {
		position: absolute;
		width: 100%;
		bottom: 0;
		padding: 15px;
		z-index: 3;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__pager {
			left: 50%;
			bottom: 10px;
			padding: 15px 0;
			width: 730px;
			-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
			transform: translateX(-50%);
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__pager {
			width: 940px;
			bottom: 15px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__pager {
			width: 1140px;
		}
	}

	@media (min-width: 1400px) {
		.main-slider .main-slider__pager {
			bottom: 25px;
		}
	}

	.main-slider .main-slider__pager .slick-dots {
		list-style: none;
		margin-bottom: 0;
	}

	.main-slider .main-slider__pager .slick-dots:after {
		display: block;
		visibility: hidden;
		height: 0;
		font-size: 0;
		content: ' ';
		clear: both;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-left .slick-dots {
		text-align: left;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-center .slick-dots {
		text-align: center;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-right .slick-dots {
		text-align: right;
	}

	.main-slider .main-slider__pager .slick-dots li {
		position: relative;
		z-index: 2;
		display: inline-block;
		border-radius: 50%;
		padding: 1px;
		margin-right: 3px;
	}

	.main-slider .main-slider__pager .slick-dots li:last-child {
		margin-right: 0;
	}

	.main-slider .main-slider__pager .slick-dots li button {
		display: block;
		padding: 0;
		width: 12px;
		height: 12px;
		border: 0;
		border-radius: 50%;
		background-color: #0e0e0e;
		cursor: pointer;
		outline: none;
		color: transparent;
		font-size: 0;
		line-height: 0;
	}

	.main-slider .main-slider__pager .slick-dots li.slick-active button {
		background-color: #c88b5e;
	}

	.main-slider .main-slider__arrows a {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		color: #0e0e0e;
		font-size: 24px;
		text-decoration: none;
	}

	.main-slider .main-slider__arrows a:hover {
		color: #c88b5e;
	}

	.main-slider .main-slider__arrows .slick-prev {
		left: 5px;
	}

	.main-slider .main-slider__arrows .slick-next {
		right: 5px;
	}

	@media (min-width: 767px) {
		.main-slider .main-slider__arrows a {
			font-size: 30px;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__arrows .slick-prev {
			left: 10px;
		}
		.main-slider .main-slider__arrows .slick-next {
			right: 10px;
		}
	}

	@media (min-width: 1400px) {
		.main-slider .main-slider__arrows .slick-prev {
			left: 25px;
		}
		.main-slider .main-slider__arrows .slick-next {
			right: 25px;
		}
	}
	 
/* ==========================================================================
   =Accordions and Toogles
   ========================================================================== */

/* =Accordion
   ========================================================================== */
	
	.accordion { margin-bottom: 30px; }

	.accordion-item {
		position: relative;
		display: block;
		padding: 10px 20px 10px 40px;
		border: 2px solid #e1e1e1;
		border-top-color: transparent;
	}
	
	.accordion-item:first-child { border-top-color: #e1e1e1; }
	
	a.accordion-item { color: #4b4b4b; }
	
	.accordion-item:after {
		position: absolute;
		top: 10px;
		left: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.accordion-item.active:after { content: "-"; }
	
	.accordion-item:hover { 
		border-color: #4b4b4b; 
		text-decoration: none;
	}
	
	.accordion-item.active {
		border-color: #4b4b4b;
		border-bottom: none;
		text-decoration: none;
	}
	
	.accordion-item-content { 
		display: none; 
		padding: 15px 20px 15px 38px; 
		border: 2px solid #4b4b4b;
		border-top-color: #e1e1e1;
		margin-top: -2px;
	}
	
	.accordion-item-content p:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =Toogle
   ========================================================================== */
	
	.toggle { margin-bottom: 30px; }

	.toggle-item {
		position: relative;
		display: block;
		padding: 10px 20px 10px 40px;
		border: 2px solid #e1e1e1;
		border-top-color: transparent;
	}
	
	.toggle-item:first-child { border-top-color: #e1e1e1; }
	
	a.toggle-item { color: #4b4b4b; }
	
	.toggle-item:after {
		position: absolute;
		top: 10px;
		left: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover { 
		border-color: #4b4b4b;
		text-decoration: none;
	}
	
	.toggle-item.active {
		border-color: #4b4b4b;
		border-bottom: none;
		text-decoration: none;
	}
	
	.toggle-item-content { 
		display: none; 
		padding: 15px 20px 15px 38px; 
		border: 2px solid #4b4b4b;
		border-top-color: #e1e1e1;
		margin-top: -2px;
	}
	
	.toggle-item-content p:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 15px 15px 15px 30px;
		margin-bottom: 30px;
		background-color: #4b4b4b;
		color: #fff;
	}
	
	.alert i {
		position: relative;
		top: 2px;
		margin-right: 10px;
		font-size: 20px;
	}
	
	.alert.info {
		background-color: #f6f6f6;
		color: #4b4b4b;
	}
	
	.alert.success { 
		background-color: #e5e5e5;
		color: #4b4b4b;
	}
	
	.alert.success i { color: #a3d39c; }
	
	.alert.error { background-color: #a1a1a1; }
	.alert.error i { color: #ed1c24; }
	
	.alert.warning { background-color: #cb9166; }
	
/* ==========================================================================
   =Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
				animation-duration: 1s;
		-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	.animate.hidden { visibility: hidden; }
   
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn { 
		display: inline-block; 
		padding: 8px 12px; 
		border: 2px solid #4b4b4b;
		margin: 0 5px 20px 0;
		color: #4b4b4b;
		font-size: 14px;
		line-height: 14px; 
		letter-spacing: 1px;
		text-decoration: none !important;
		text-transform: uppercase;
		vertical-align: middle;
		cursor: pointer; 	
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	a.btn { color: #4b4b4b; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 12px 20px;
		font-size: 18px;
		line-height: 18px; 
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 14px; 
		line-height: 14px; 
	}
	
	.btn:hover {
		border-color: #c88b5e;
		color: #c88b5e;
	}

/* =Colored Buttons
   ========================================================================== */
	
	.btn-white {
		border: 1px solid #e0e0e0;
		background-color: #f3f3f3;
		color: #4b4b4b;
	}
	
	a.btn-white { color: #4b4b4b; }
	.btn-white:hover { background: #f0f0f0; }
	
	.btn-black {
		border: 1px solid #464646;
		background-color: #464646;
		color: #fff;
	}
	
	a.btn-black { color: #fff; }
	.btn-black:hover { background: #535353; }
	
	.btn-blue {
		border: 1px solid #1f70ad;
		background-color: #2778c8;
		color: #fff;
	}
	
	a.btn-blue { color: #fff; }
	.btn-blue:hover { background: #287fc8; }

	.btn-red {
		border: 1px solid #b23730;
		background-color: #c74039;
		color: #fff;
	}
	
	a.btn-red { color: #fff; }
	.btn-red:hover { background: #ce4640; }

	.btn-green {
		border: 1px solid #819633;
		background-color: #8da046;
		color: #fff;
	}
	
	a.btn-green{ color: #fff; }
	.btn-green:hover { background: #93a749; }

/* ==========================================================================
   =Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */
	 
	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */
	
	/**
 	 * Custom Icon Font lists
 	 *
	 * 1. Check list
	 *
	 */
	 
	ul.check { list-style: none; }			/* 1 */
	
	ul.check li:before { 
		width: auto;
		height: auto;
		margin-right: 12px;
		color: #0e0e0e;
		font-family: 'iconfontcustom';
		font-size: 14px;
	}
	
	ul.check li:before { content: ""; }	
	
	ul.check li { margin-bottom: 5px; }
	ul.check li:last-child { margin-bottom: 0; }

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 1px solid #e0e0e0; }
	
	.divider.double-line { border-top: 4px double #e0e0e0; }
	
	.divider.single-dotted {
		 height: 1px;
		 background: url(../images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.gif) repeat-x top left; 
	}	
   
/* ==========================================================================
   =Google Maps
   ========================================================================== */

	 /**
	 * 1. needed so that Google Maps controls are not distorted
	 */
	 
	.google-map {}
	.google-map  img { max-width: none; }	/* 1 */
	
	.map { 
		width: 100%; 
		height: 400px; 
		margin-bottom: 30px; 
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		display: inline-block;
		padding: 5px 20px;
		border: 2px solid #fff;
		margin: 10px 0 110px 0;
		outline: 10px solid #c88b5e;
		background-color: #c88b5e;
		text-align: center;
	}
	
	.headline h2 {
		margin-bottom: 0;
		color: #fff;
		text-transform: uppercase;
		letter-spacing: 6px;
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 80px; 
	}
		
	.icon-box-1 span {
		float: left;
		display: block;
		padding: 10px;
		border-radius: 50%;
		background-color: #c88b5e;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-1 span > i { 		
		display: block;
		width: 110px;
		height: 110px;
		border: 2px solid #fff;
		border-radius: 50%;
		color: #fff;  
		font-size: 50px; 
		line-height: 110px; 
		text-align: center;
	} 
	
	.icon-box-1 > img { 
		float: left; 
		display: block; 
	} 
	
	.icon-box-1 h3 {
		margin-bottom: 20px;
		text-transform: uppercase; 
	}
	
	.icon-box-1 .btn { margin-top: 10px; }
	
	.icon-box-1 .icon-box-content { margin-left: 170px; }
	
	.icon-box-1:hover span { background-color: #171717; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.icon-box-1 span > i { 	
			width: 75px;
			height: 75px;
			font-size: 32px; 
			line-height: 75px; 
		}
		
		.icon-box-1 .icon-box-content { margin-left: 120px; }
	}
	
	@media (max-width: 767px) {
		
		.icon-box-1 span {
			float: none;
			display: inline-block;
			margin-bottom: 20px;
		}
		
		.icon-box-1 span > i { 	
			width: 75px;
			height: 75px;
			font-size: 32px; 
			line-height: 75px; 
		}
		
		.icon-box-1 .icon-box-content { margin-left: 0; }
	}

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 30px;
		text-align: center; 
	}
		
	.icon-box-2 > i { 
		display: inline-block;
		width: 70px;
		height: 70px;
		border: 2px solid #4b4b4b;
		margin: 0 auto 30px auto; 
		font-size: 32px;
		line-height: 70px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-2 > img { margin-bottom:10px; }
	
	.icon-box-2 h4 {
		margin-bottom: 15px;
		text-transform: uppercase; 
	}
	
	.icon-box-2 .btn { margin-top: 10px; }
	
	.icon-box-2 .icon-box-content {}	
	
	.icon-box-2:hover > i {
		border-color: #c88b5e;
		color: #c88b5e;
	}

/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		padding: 50px 0 60px 0;
		border: 2px solid #4b4b4b;
		margin: 100px 0;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		font-family: "Oswald", Arial, sans-serif;
		font-size: 48px;
		line-height: 72px;
	}
	
	.milestone .milestone-description {
		padding: 0 10px; 
		font-size: 18px; 
		line-height: 27px;
		text-transform: uppercase;
		letter-spacing: 3px;
	}
	
	.milestone:hover {
		border-color: #c88b5e;
		background-color: #c88b5e;
		color: #fff;
	}

/* ==========================================================================
   =Our Process
   ========================================================================== */

/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 60px;
		left: 135px;
		display: block;
		width: 75%;
		border-top: 2px solid #c88b5e;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1,
	.horizontal-process-builder li img {
		position: relative;
		z-index: 2;
		display: block;
		width: 120px; 
		height: 120px;
		overflow: hidden;  
		border: 2px solid #c88b5e;
		border-radius: 50%;
		outline: 10px solid #fff;
		margin: 0 auto 20px;
		background-color: #fff;
		background-clip: padding-box;
		color: #0e0e0e;
		font-size: 48px; 
		line-height: 120px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.horizontal-process-builder li:hover i,
	.horizontal-process-builder li:hover h1 {
		background-color: #c88b5e;
		color: #fff;
	}

	.horizontal-process-builder.three-items li { width: 33.3333333333%; }
	.horizontal-process-builder.four-items li { width: 25%; }
	.horizontal-process-builder.five-items li { width: 20%; }
	
	.process-description { padding: 0 15px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.horizontal-process-builder:before { left: 120px; }
		
	}
	
	@media (max-width: 767px) {
		
		.horizontal-process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.horizontal-process-builder:before { content: none; }
		
		.horizontal-process-builder.three-items li { width: 100%; }
		.horizontal-process-builder.four-items li { width: 100%; }
		.horizontal-process-builder.five-items li { width: 100%; }
		
	}
	
/* =Vertical process
   ========================================================================== */

	.vertical-process-builder {
		position: relative;
		margin-bottom: 40px;
		list-style: none;
	}
	
	.vertical-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 26px;
		display: block;
		height: 85%;
		border-left: 1px solid #e0e0e0;
		content: "";
	}
	
	.vertical-process-builder li { margin-bottom: 70px; }
	
	.vertical-process-builder li i,
	.vertical-process-builder li h1 {
		position: relative;
		z-index: 2;
		float: left;
		display: block;
		width: 72px;
		height: 72px;
		overflow: hidden;
		border: 1px solid #e0e0e0;
		border-radius: 50%;
		outline: 10px solid #fff;
		margin-left: -10px;
		background-color: #fff;
		background-clip: padding-box;
		font-size: 36px;
		line-height: 72px;
		text-align: center;
		-webkit-transition: backgroud-color 0.3s;
				transition: backgroud-color 0.3s;
	}
	
	.vertical-process-builder .process-description { margin-left: 100px; }
	
	.vertical-process-builder li:hover i,
	.vertical-process-builder li:hover h1 {
		background-color: #f3f3f3;
	}
	
	@media (max-width: 767px) {
		
		.vertical-process-builder li i,
		.vertical-process-builder li h1 { margin-left: 0; }
		
		.vertical-process-builder:before { left: 36px; }
		
	}

/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto 30px auto;
		text-align: center;
	}
	
	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}
	
	.pie-chart i, 
	.pie-chart .pie-chart-custom-text, 
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		color: #0e0e0e;
		text-align: center;
	}
	
	.pie-chart img {
		max-width:100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text {
		font-size: 18px;
	}
	
	.pie-chart .pie-chart-percent {
		font-family: "Oswald", Arial, sans-serif;
		font-size: 16px;
		color: #c88b5e;
	}
	
	.pie-chart-description {
		display: block;
		margin-bottom: 30px;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-align: center;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px 10px 20px 10px;
		margin-bottom: 0;
		background-color: #171717;
		color: #fff;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.pricing-table + .pricing-table { margin-top: 30px; }

	.pricing-table-header {
		padding: 20px 10px;	
		border: 2px solid #c88b5e;
		border-bottom: none;
	}
	
	.pricing-table-header h1 {
		border-bottom: 1px solid #c88b5e;
		margin-bottom: 0;
		color: #c88b5e;
		letter-spacing: 0;
		text-transform: uppercase;
	}
	
	.pricing-table-header h1 small { 
		margin-bottom: 0;
		margin-left: -10px;
		color: #fff;
		font-size: 14px;
	}
	
	.pricing-table-header h3 {
		padding-bottom: 20px;
		border-bottom: 1px solid #c88b5e;
		color: #fff;
		text-transform: uppercase;
	}
		
	.pricing-table-offer {
		padding: 10px 0;
		border: 2px solid #c88b5e;
		border-top: none;
		margin-bottom: 40px;
	}
	
	.pricing-table-offer ul { list-style: none; }
	
	.pricing-table-offer ul li { 
		padding: 10px 0;
		letter-spacing: 1px;
		text-transform: uppercase; 
	}
	
	.pricing-table .btn {
		border-color: #fff;
		color: #fff;
	}
	
	.pricing-table .btn:hover {
		border-color: #c88b5e;
		color: #c88b5e;
	}
	
	.pricing-table:hover {
		-webkit-transform: scale(1.05);
		   -moz-transform: scale(1.05);
				transform: scale(1.05);
	}
	
	@media (max-width: 767px) {
		
		.pricing-table { margin: 20px 0; }		
		
	}

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 10px;
		font: 16px/16px "Oswald", Arial, sans-serif;
		letter-spacing: 1.5px;
		text-transform: uppercase;
	}
	
	.progress-bar-description span { color: #c88b5e; }
	
	.progress-bar {
		position: relative;
		display: block;
		height: 16px;
		margin-bottom: 25px;
		background-color: #4b4b4b;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #c88b5e;
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		overflow: hidden;
		top: 0;
		left: 0;
		display: block;
		height: 100%;
		width: 100%;
	}

/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 30px;
		height: 30px;
		border: 1px solid #171717;
		margin-right: 10px;
		margin-bottom: 10px;
		color: #4b4b4b;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 18px;
		line-height: 30px;
	}
	
	a.social-icon:hover {
		color: #fff;
		text-decoration: none; 
	}
	
	a.facebook-icon:hover { background-color: #0e59a0 !important; }
	a.twitter-icon:hover { background-color: #0ea4ff !important; }
	a.dribble-icon:hover { background-color: #ea73a0 !important; }
	a.pinterest-icon:hover { background-color: #d73532 !important; }
	a.googleplus-icon:hover { background-color: #282927 !important; }
	a.tumblr-icon:hover { background-color: #586980 !important; }
	a.instagram-icon:hover { background-color: #82685a !important; }
	a.rss-icon:hover { background-color: #f79638 !important; }
	a.linkedin-icon:hover { background-color: #018faf !important; }
	a.skype-icon:hover { background-color: #00b0f6 !important; }
	a.flickr-icon:hover { background-color: #0061db !important; }
	a.vimeo-icon:hover { background-color: #63879c !important; }
	a.github-icon:hover { background-color: #3b3b3b !important; }
	a.youtube-icon:hover { background-color: #cc181e !important; }
	a.windows-icon:hover { background-color: #6dc2e9 !important; }
	a.dropbox-icon:hover { background-color: #007ee5 !important; }
	a.xing-icon:hover { background-color: #026566 !important; }	
	a.adn-icon:hover { background-color: #1ea076 !important; }
	a.android-icon:hover { background-color: #98cb02 !important; }
	a.apple-icon:hover { background-color: #000000 !important; }
	a.behance-icon:hover { background-color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { background-color: #214f81 !important; }
	a.bitcoin-icon:hover { background-color: #f7931b !important; }
	a.codepan-icon:hover { background-color: #000000 !important; }
	a.css3-icon:hover { background-color: #3289ce !important; }
	a.delicious-icon:hover { background-color: #3399fe !important; }
	a.deviantart-icon:hover { background-color: #c8da30 !important; }
	a.digg-icon:hover { background-color: #0080c2 !important; }
	a.drupal-icon:hover { background-color: #0077b9 !important; }
	a.empire-icon:hover { background-color: #000000 !important; }
	a.foursquare-icon:hover { background-color: #daecb0 !important; }
	a.git-icon:hover { background-color: #f34f29 !important; }
	a.gitti-icon:hover { background-color: #634c3e !important; }
	a.hacker-news-icon:hover { background-color: #f18642 !important; }
	a.html5-icon:hover { background-color: #e54c1f !important; }
	a.joomla-icon:hover { background-color: #016fb9 !important; }
	a.jsfiddle-icon:hover { background-color: #4679a4 !important; }
	a.linux-icon:hover { background-color: #fece0e !important; }
	a.maxcdn-icon:hover { background-color: #f36f20 !important; }
	a.openid-icon:hover { background-color: #fe6101 !important; }
	a.pagelines-icon:hover { background-color: #3783e3 !important; }
	a.pied-piper-icon:hover { background-color: #0c7b48 !important; }
	a.qq-icon:hover { background-color: #23286c !important; }
	a.rebel-icon:hover { background-color: #000000 !important; }
	a.reddit-icon:hover { background-color: #cee3f8 !important; }
	a.renren-icon:hover { background-color: #0d81e4 !important; }
	a.share-icon:hover { background-color: #252525 !important; }
	a.slack-icon:hover { background-color: #453744 !important; }
	a.soundcloud-icon:hover { background-color: #fe4e00 !important; }
	a.spotify-icon:hover { background-color: #80bb41 !important; }
	a.stack-exchange-icon:hover { background-color: #265a93 !important; }
	a.stackoverflow-icon:hover { background-color: #fea501 !important; }
	a.steam-icon:hover { background-color: #191919 !important; }
	a.stumbleupon-icon:hover { background-color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { background-color: #0063a7 !important; }
	a.trello-icon:hover { background-color: #226784 !important; }
	a.vine-icon:hover { background-color: #00b081 !important; }
	a.vk-icon:hover { background-color: #50769d !important; }
	a.wechat-icon:hover { background-color: #a4dc31 !important; }
	a.weibo-icon:hover { background-color: #d82828 !important; }
	a.wordpress-icon:hover { background-color: #454442 !important; }
	a.yahoo-icon:hover { background-color: #4b04a8 !important; }

/* ==========================================================================
   =Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 1px solid #e0e0e0; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 1px solid #e0e0e0; }
	
	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }
	
	.table-striped tbody tr:nth-child(odd) td,
	.table-striped tbody tr:nth-child(odd) th { background-color: #f3f3f3; }	

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { display: block; }
		
		.table-bordered { border-top: none; }
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		tr { border-top: 1px solid #bbb; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   =Tabs
   ========================================================================== */

/* =Horizontal tabs
   ========================================================================== */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.tabs-container .tabs-menu { 
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline-block; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 13px 25px 15px 25px;
		border-top: 2px solid #f3f3f3;
		margin-bottom: -1px; 
		background-color: #f3f3f3;
		color: #4b4b4b;
		font: 14px/14px "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-decoration: none;
		text-transform: uppercase;
	}
	
	.tabs-container .tabs-menu li a:hover {
		border-top-color: #c88b5e;
		text-decoration: none; 
	}
	
	.tabs-container .tabs-menu li.active a {
		border-top-color: #c88b5e;
		background-color: transparent
	}
	
	.tabs-container .tabs { margin-bottom: 30px; }
	
	.tabs-container .tab-content { 
		padding: 40px;
		letter-spacing: 1px;
	}	
	
	.tabs-container .tab-content p:last-child { margin-bottom: 0; }
	
	.tabs-container .tab-content i {
		float: left;
		display: block;
		margin: 0 60px 10px 0;
		font-size: 72px;
		line-height: 72px;
	}
	
	@media (max-width: 767px) {
	
		.tabs-container .tabs-menu { border-bottom: none; }
		
		.tabs-container .tabs-menu li { display: block; }
	
		.tabs-container .tabs-menu li a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #e0e0e0;
			border-top: none;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li:first-child a { border-top: 1px solid #e0e0e0; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			margin: 0;
			background-color: transparent; 
		}	
		
		.tabs-container .tab-content { padding: 20px; }
		
		.tabs-container .tab-content i { 
			float: none;
			margin-bottom: 20px;
		}
		
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */
	
	.testimonial {
		padding: 60px;
		border: 2px solid #4b4b4b;
		margin-bottom: 50px;
		font-size: 18px;
	}
	
	.testimonial img { 
		float: left;
		margin-right: 60px;
	}
	
	.testimonial blockquote p { font-style: normal; }
	.testimonial blockquote p:last-child { margin-bottom: 0; } 
	
	.testimonial blockquote h3 {
		margin-bottom: 20px;
		text-transform: uppercase; 
	}
	
	.testimonial blockquote h3 small {
		display: block;
		color: #c88b5e;
		font: 16px "PT Sans Narrow", Arial, sans-serif; 
	}
	
	@media (max-width: 767px) {
		
		.testimonial { padding: 25px; }
		
		.testimonial img { 
			float: none;
			margin-right: 0;
		}
		
	}
	
	
/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member { 
		position: relative;
		padding-bottom: 120px;
		margin-bottom: 50px;
	}
	
	.team-member img {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 2px solid #c88b5e;
	}
	
	.team-member-description {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 25px;
		background-color: rgba(23, 23, 23, 0.9);
		color: #fff;
	}
	
	.team-member-description h4 { 
		margin-bottom: 0;
		color: #fff;
		text-transform: uppercase;
	}
	
	.team-member-description h6 {
		color: #c88b5e; 
		text-transform: uppercase;
	}
	
	.team-member .social-media {
		margin: 25px 0 15px 0;
		text-align: center; 
	}
	
	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
		border-color: #fff;
		color: #fff;
	}
	
	.team-member-details { display: none; }
	
	.team-member-details p:last-child { margin-bottom: 0; }
	
	a.expand {
		position: absolute;
		top: 30px;
		right: 30px;
		display: inline-block;
		width: 20px;
		height: 20px;
		background-color: #c88b5e;
		color: #fff;
		font-size: 14px;
		line-height: 20px;
		text-decoration: none;
		text-align: center;
	}
	
	a.expand:before {
		font-family: "FontAwesome";
		content: "";
	}
	
	a.expand.open:before { content: ""; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		a.expand { right: 10px; }
		
	}
	
/* ==========================================================================
   =Page Loader
   ========================================================================== */
	
	#page-loader {
		position: fixed;
		z-index: 999999;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	
	.loader-img {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
				transform: translateX(-50%) translateY(-50%);
		text-align: center;
	}
	
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
	}
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 0; 
		right: 0; 
		bottom: 0; 
		left: 0; 
		padding: 30px;
		background-color: rgba(23, 23, 23, 0.7);
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
		
	.portfolio-item-overlay-actions {
		position: absolute;
		bottom: 0;
		left: 30px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-top: -30px;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s 0.2s;
				transition: all 0.3s 0.2s; 
	}
	
	.portfolio-item-overlay-actions .btn {
		border-color: #fff;
		color: #fff;
	}
	
	.portfolio-item-overlay-actions .btn:hover {
		border-color: #c88b5e;
		color: #c88b5e;
	}
	
	.portfolio-item-description { 
		position: absolute;
		bottom: 100px;
		left: 0;
		right: 0;
		padding: 0 30px;
		color: #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.portfolio-item-description h4 {
		margin-bottom: 15px;
		text-transform: uppercase;
	}

	.portfolio-item-description a { color: #fff; }
	
	.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }	
	
	.portfolio-item:hover .portfolio-item-description { bottom: 60px; }
	
	.portfolio-item:hover .portfolio-item-overlay-actions { 
		bottom: 10px;
		opacity: 1;
	}
	
	.load-more { margin-bottom: 0; }
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin-bottom: 45px;
		list-style: none;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 5px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a {
		display: block;
		padding: 10px 15px; 
		border: 2px solid transparent;
		color: #4b4b4b;
		font-size: 18px;
		text-decoration: none;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active {
		border-color: #c88b5e;
		color: #c88b5e;
	}	
	
	@media (max-width: 767px) {
		
		.portfolio-filter ul li { 
			display: block;
			margin-bottom: 10px;
		}
		
		.portfolio-filter ul li:last-child { margin-bottom: 0; }
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.pagination { list-style: none; }
	
	.pagination li {
		float: left;
		margin-right: 10px;
	}	
	
	.pagination li:last-child { margin-right: 0; }
	
	.pagination li a {
		display: block;
		padding: 4px 12px;
		border: 2px solid #4b4b4b;
		color: #4b4b4b;
		font-size: 18px;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.pagination li.current a,
	.pagination li a:hover {
		border: 2px solid #c88b5e;
		color: #c88b5e;
	}

/* ==========================================================================
   =Portfolio Columns
   ========================================================================== */
	
	.portfolio-columns {
		margin: -15px -15px 15px -15px;
		list-style: none;
	}
	
	.portfolio-columns .item {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		
	}
	
	.portfolio-columns .item .portfolio-item { margin-bottom: 0; }
	
	@media (min-width: 1400px) {
			
		.portfolio-columns .item {}
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-columns .item { 
			width: 33.3333333333%;
			padding: 7.5px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-columns .item {
			float: none;
			width: 100%; 
		}
		
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-columns .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

   .portfolio-grid {
		margin-bottom: 0;
		list-style: none;
	}
	
	.portfolio-grid .item {
		float: left;
		width: 20%;
	}
	
	.portfolio-grid.four-cols .item { width: 33.3333333333%; }
	.portfolio-grid.three-cols .item { width: 33.3333333333%; }
	.portfolio-grid.two-cols .item { width: 50%; }
	
	.portfolio-grid .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 1400px) {
		
		.portfolio-grid.four-cols .item { width: 25%; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-grid.four-cols .item { width: 50%; }
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-grid .item,
		.portfolio-grid.four-cols .item,
		.portfolio-grid.three-cols .item,
		.portfolio-grid.two-cols .item {
			float: none;
			width: 100%; 
		}
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-grid .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Portfolio Strip
   ========================================================================== */
   
   .portfolio-strip {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.portfolio-strip .item {
		float: left;
		width: 25%;
	}
	
	.portfolio-strip .item:last-child { display: none; }
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 1400px) {
		
		.portfolio-strip .item { width: 20%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-strip .item { width: 33.3333333333%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-strip .item {
			float: none;
			width: 100%; 
		}
		
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-strip .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 50px; 
	}
	
	#contact-form fieldset {}
	
	#contact-form label.validation-error { 
		position: relative;
		top: 0;
		left: 0;
		color: #d50f25;
	}
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea,
	#contact-form input[type="text"] {
		border-width: 0 0 2px 0;
		text-indent: 30px; 
	}	
	
	#contact-form p { position: relative; }
	
	#contact-form p label {
		position: absolute;
		top: 12px;
		left: 10px;
	}
	
	#contact-form p label i {
		font-size: 20px;
		line-height: 20px;
	}  
	
	#contact-form #submit {
		display: block;
		margin: 40px auto 0 auto; 
	}
	         
/* ==========================================================================
   =Blog
   ========================================================================== */

	.blog-post { margin-bottom: 50px; }
	
	.blog-post-title { text-transform: uppercase; }
	
	.blog-post-title i {
		float: left;
		display: block;
		width: 44px;
		height: 44px;
		border: 2px solid #4b4b4b;
		font-size: 25px;
		line-height: 44px;
		text-align: center;
	}
	
	.blog-post-title p,
	.blog-post-title h4 { margin-left: 70px; }
	
	.blog-post-title h4 {
		margin-bottom: 0;
		letter-spacing: 2px;
	}
	
	.blog-post-thumb { 
		position: relative;
		margin-bottom: 40px;
	}
	
	.blog-post-thumb img {
		display: block;
		width: 100%;
	}
	
	.blog-post-info {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-post-info h3 {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 60px;
		height: 60px;
		border: 2px solid #fff;
		color: #fff;
		-webkit-transform: translateY(-50%) translateX(-50%);
				transform: translateY(-50%) translateX(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-post-info h3 small {
		display: block;
		font-size: 14px;
		line-height: 14px;
		text-transform: uppercase;
	}
	
	.blog-post-readmore {}
	
	.blog-post:hover .blog-post-info { background-color: rgba(23, 23, 23, 0.5); }
	
	.blog-post:hover .blog-post-info h3 {
		border-color: #c88b5e;
		color: #c88b5e;
	}
	
	.blog-post blockquote {
		position: relative;
		padding: 40px 40px 40px 140px;
		border: 2px solid #171717;
		margin: 50px 0;
	}
	
	.blog-post blockquote:before {
		position: absolute;
		top: 40px;
		left: 40px;
		font-size: 160px;
		line-height: 140px;
		color: #c88b5e;
		content: '\201c';
	}
	
	.blog-post blockquote:after {
		position: absolute;
		top: 60px;
		left: 80px;
		font-size: 160px;
		line-height: 140px;
		color: #c88b5e;
		content: '\201d';
	}
	
	.blog-post blockquote p:last-child { margin-bottom: 0; }
	
	.more-blog-post {
		padding: 80px 20px;
		border: 2px solid #e1e1e1;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.more-blog-post:before {
		color: #e1e1e1;
		font-size: 300px;
		line-height: 300px;
		content: "+";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.more-blog-post h3 a { 
		color: #e1e1e1;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.more-blog-post:hover { 
		border-color: #4b4b4b;
		cursor: pointer;
	}
	
	.more-blog-post:hover h3 a,
	.more-blog-post:hover:before { color: #4b4b4b; } 
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.blog-post-title i { display: none; }
		
		.blog-post-title p,
		.blog-post-title h4 { margin-left: 0; }
		
	}
	
	@media (max-width: 767px) {
		
		.more-blog-post { padding: 0; }
		.more-blog-post:before { line-height: 150px; }
		
		.blog-post blockquote { padding-left: 40px; }
		
		.blog-post blockquote:before,
		.blog-post blockquote:after { display: none; }
		
	}

/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */
	 
   .fullwidth-section {
		position: relative;
		overflow: hidden;
		z-index: 0;	
		padding: 45px 0;
		color: #fff;
		background-color: #171717;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;		
	}

	.fullwidth-section-content {
		position: relative;
		z-index: 3;
	}
   
   	.fullwidth-section-overlay {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-repeat: repeat;
		background-position: 0 0;	
	}
	
	.fullwidth-section-video {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		-webkit-background-size: cover;
				background-size: cover;	
	}
	

	.horizontal-parallax { background-repeat: repeat-x; }
	
	.animated-parallax { background-repeat: repeat-x; }
	
	.fullwidth-section a,
	.fullwidth-section h1,
	.fullwidth-section h2,
	.fullwidth-section h3,
	.fullwidth-section h4,
	.fullwidth-section h5,
	.fullwidth-section h6,
	.fullwidth-section ul.check li:before,
	.fullwidth-section .portfolio-filter ul li a,
	.fullwidth-section .tabs-container .tabs-menu li.active a { color: #fff; }
	
	.fullwidth-section .btn,
	.fullwidth-section .milestone,
	.fullwidth-section a.social-icon,
	.fullwidth-section .icon-box-2 > i { border-color: #fff; }
	
	.fullwidth-section .testimonial,
	.fullwidth-section .milestone:hover { border-color: #c88b5e; }
	
	.fullwidth-section .portfolio-filter ul li a:hover,
	.fullwidth-section .portfolio-filter ul li a.active { color: #c88b5e; } 
	
	.fullwidth-section .horizontal-process-builder li i,
	.fullwidth-section .horizontal-process-builder li h1,
	.fullwidth-section .horizontal-process-builder li img { outline: none; }
	
	
	/* Fullwidth section backgrounds */
	
	#bg-1 {
		padding-top: 110px;
		background-image: url(../../content/backgrounds/1920x1280-1.jpg);
	}
	
	#bg-2 { padding-bottom: 0; }
	
	#bg-2 h4 { padding-top: 10px; }
	
	#bg-3 {
		padding: 110px 0 100px 0;
		background-image: url(../../content/backgrounds/1920x1000-1.jpg);
	}
	
	#bg-4 {
		padding-top: 110px;
		padding-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1280-2.jpg);
	}
	
	#bg-5 { background-color: #f7f7f7; }
	
	#bg-6 {
		padding: 110px 0 100px 0;
		background-image: url(../../content/backgrounds/1920x1000-2.jpg);
	}
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
	}
	
/* ==========================================================================
   =WordPress Default Classes
   ========================================================================== */
   
    .ewf-inline-style { display: none; }
	
	.wp-caption {}
	
	.wp-caption-text {}
	
	.sticky {}
	
	.gallery-caption {}
	
	.alignright  {}
	
	.alignleft  {}
	
	.aligncenter  {}
	
	.alignnone { margin: 5px 20px 20px 0; }

	.aligncenter,
	div.aligncenter {
		display: block;
		margin: 5px auto;
	}

	.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	.aligncenter {
		display: block;
		margin: 5px auto;
	}

	a img.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	a img.alignnone { margin: 5px 20px 20px 0; }

	a img.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	a img.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	
	/**
 	 * 1. Image does not overflow the content area
 	 */
	
	.wp-caption {
		max-width: 96%; /* 1 */
		padding: 5px 3px 10px;
		border: 1px solid #e0e0e0;
		background: #fff;
		text-align: center;
	}

	.wp-caption.alignnone { margin: 5px 20px 20px 0; }

	.wp-caption.alignleft { margin: 5px 20px 20px 0; }

	.wp-caption.alignright { margin: 5px 0 20px 20px; }

	.wp-caption img {
		max-width: 98.5%;
		width: auto;
		height: auto;
		padding: 0;
		border: none;
		margin: 0;
	}

	.wp-caption p.wp-caption-text {
		padding: 0 4px 5px 4px;
		margin: 0;
		font-size: 11px;
		line-height: 17px;		
	}
	
/* ==========================================================================
   =WordPress Widgets
   ========================================================================== */
	
/* =Widgets default
   ========================================================================== */
	
	.widget { margin-bottom: 55px; }
	
	.widget-title { 
		margin-bottom: 40px;
		line-height: 24px;
		text-transform: uppercase; 
	}
	
/* =Text Widget
   ========================================================================== */
	
	.widget_text {}
	
	.textwidget {}
	
/* =Search Widget
   ========================================================================== */
	
	.widget_search {}
	
	#searchform { position: relative }
	
	.screen-reader-text { display: none; }
	
	#s { 
		display: inline-block; 
		width: 100%; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
		   		box-sizing: border-box; 
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		border: none;
		background: url(../images/bg-search.png) no-repeat center center;
		vertical-align: inherit; 
	}

/* =Recent Entries Widget
   ========================================================================== */
	
	.widget_recent_entries {}
	
	.widget_recent_entries ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_recent_entries ul li {}
	
	.widget_recent_entries ul li a {}
	
	.widget_recent_entries ul li img {
		float: left;
		margin-right: 15px;
	}
	
	.widget_recent_entries ul li .post-date {}
	
	@media (min-width: 768px) and (max-width: 979px) {
			
		.widget_recent_entries ul li img { display: none; }
		
	}
	
/* =Pages Widget
   ========================================================================== */
	
	.widget_pages {}
	
	.widget_pages ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_pages ul li {} 
	
	.widget_pages li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.widget_pages li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_pages li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}
	
/* =Archive Widget
   ========================================================================== */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_archive ul li {} 
	
	.widget_archive li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.widget_archive li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_archive li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}
	
	.widget_archive select { text-transform: uppercase; }
	
	.widget_archive option {}	
	
/* =Categories Widget
   ========================================================================== */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_categories ul li {} 
	
	.widget_categories li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.widget_categories li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_categories li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}
	
	.widget_categories ul ul.children {}
	
	.widget_categories select { text-transform: uppercase; }
	
	.widget_categories select#cat {}
	
	.widget_categories select.postform {}
	
	.widget_categories option {}
	
	.widget_categories .level-0 {}
	
	.widget_categories .level-1 {}
	
	.widget_categories .level-2 {}
	
	.widget_categories .level-3 {}
	
/* =Meta Widget
   ========================================================================== */
	
	.widget_meta {}
	
	.widget_meta ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_meta ul li {} 
	
	.widget_meta li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.widget_meta li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_meta li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}
	
/* =Recent Comments Widget
   ========================================================================== */
	
	.widget_recent_comments {}
	
	#recentcomments { list-style: none; }
	
	#recentcomments li {}
	
	#recentcomments li a {}
	
	.recentcomments {}
	
/* =Tag Cloud Widget
   ========================================================================== */
	
	.widget_tag_cloud {}
	
	.widget_tag_cloud a { 
		display: inline-block; 
		padding: 5px 10px; 
		border: 2px solid #4b4b4b;
		margin: 0 5px 10px 0;
		color: #4b4b4b; 
		text-decoration: none;
		vertical-align: middle;
		cursor: pointer; 	
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.widget_tag_cloud a:hover {
		border-color: #c88b5e;
		color: #c88b5e;
	}
	
/* =Calendar Widget
   ========================================================================== */
	
	.widget_calendar {}
	
	#calendar_wrap {}
	
	#calendar_wrap th {}
	
	#calendar_wrap td {}
	
	#wp-calendar tr td {}
	
	#wp-calendar caption {}
	
	#wp-calendar a {}
	
	#wp-calendar #today {}
	
	#wp-calendar #prev {}
	
	#wp-calendar #next {}
	
	#wp-calendar #next a {}
	
	#wp-calendar #prev a {}
	
/* =Nav Menu Widget
   ========================================================================== */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_nav_menu ul li {} 
	
	.widget_nav_menu li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.widget_nav_menu li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.widget_nav_menu li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}
	
/* =RSS Widget
   ========================================================================== */
	
	.widget_rss {}
	
	.widget_rss ul {
		margin-bottom: 0;
		list-style: none; 
	}	
	
/* ==========================================================================
   =WordPress Custom Widgets
   ========================================================================== */
   
/* =EWF Twitter widget
   ========================================================================== */
	
	.ewf_widget_latest_tweets{}
	
	.ewf-tweet-list .tweet { word-wrap: break-word; }
	
	.ewf-tweet-list ul {
		padding: 35px 35px 15px 35px;
		border: 2px solid #32ccfe;
		margin-bottom: 0;
		list-style: none; 
	}
	
	.ewf-tweet-list .interact { text-align: center; }
	
	.ewf-tweet-list .interact a { margin-right: 10px; }
	
	.ewf-tweet-list .interact a:last-child { margin-right: 0; }
	
/* =EWF Flickr widget
   ========================================================================== */
	
	.ewf_widget_flickr {}
	
	.flickr-feed {}
	
	.flickr-feed .flickr_badge_image { display: inline; }
	
	.flickr-feed img { 
		width: 75px; 
		height: auto;
		padding: 0 5px 0 0; 
		border: none;
	}
	
/* =EWF Contact Info widget
   ========================================================================== */	
	
	.ewf_widget_contact_info {}
	
	.ewf_widget_contact_info ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.ewf_widget_contact_info ul li {
		position: relative;
		padding-left: 30px;
		margin-bottom: 10px; 
	}
	
	.ewf_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_contact_info ul li i {
		position: absolute;
		top: 7px;
		left: 0;
	}
	
	.ewf_widget_contact_info ul li a {  }
	
/* =EWF Newsletter subscribe widget
   ========================================================================== */

	.ewf_widget_newsletter {}
	
	#newsletter-subscribe-form { position: relative; }
	
	#newsletter-subscribe-form input[type="text"] { 
		width: 100%;
		height: 45px;
		margin-bottom: 0;
	}
	
	#newsletter-subscribe-form input[type="submit"] {
		position: absolute;
		top: 0;
		right: -1px;
		height: 45px;
		padding: 11px 25px;
		margin: 0;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#newsletter-subscribe-form input[type="submit"] {
			position: relative;
			margin-top: 10px;
		}
		
	}

/* =EWF Latest posts widget
   ========================================================================== */

	.ewf_widget_latest_posts {}
	
	.ewf_widget_latest_posts ul { 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.ewf_widget_latest_posts ul li { margin-bottom: 55px; }
	.ewf_widget_latest_posts ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_latest_posts ul li img { 
		float: left;
		margin: 5px 30px 0 0;
	}
	
	.ewf_widget_latest_posts ul li .title {
		display: block;
		margin: 0 0 15px 100px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		text-transform: uppercase;
	}	
	
	.ewf_widget_latest_posts ul li p { margin-left: 100px; }

	/*
	 * 1. Clearfix hack 
	 */
	 
	.ewf_widget_latest_posts ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =EWF Navigation widget
   ========================================================================== */
	
	.ewf_widget_navigation {}
	
	.ewf_widget_navigation ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.ewf_widget_navigation ul li {} 
	
	.ewf_widget_navigation li a {
		display: block;
		padding-bottom: 12px;
		border-bottom: 2px solid #4b4b4b;
		margin-bottom: 12px;
		color: #4b4b4b;
		font-family: "Oswald", Arial, sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.ewf_widget_navigation li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;
	}
	
	.ewf_widget_navigation li a:hover {
		color: #c88b5e;
		text-decoration: none;
	}

/* =EWF Social media widget
   ========================================================================== */
	
	.ewf_widget_social_media {}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.ewf_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	
	
/* =EWF Custom Box widget
   ========================================================================== */
   	
	.ewf_custom_box_widget {}
	
	.ewf_custom_box_widget .widget-title + .custom-box-item { margin-top: 60px; }
	
	.custom-box-item {
		position: relative;
		padding: 30px 20px 20px 20px;
		border: 2px solid #c88b5e;
		margin: 15px 0 40px 0; 
		text-align: center;
	}
	
	.custom-box-item:last-child { margin-bottom: 0; }
	
	.custom-box-item i {
		position: absolute;
		top: -21px;
		left: 50%;
		display: block;
		padding: 0 10px;
		background-color: #fff;
		font-size: 42px;
		-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.custom-box-item a { color: #4b4b4b; }

/* ==========================================================================
   =WordPress Comments
   ========================================================================== */
   
   	.comments-area { margin-top: 100px; }
   
	.comments-title { text-transform: uppercase; }
	
	.comment-reply-title {}
	
	.commentlist .reply {}
	
	.commentlist .reply a {
		display: inline-block; 
		padding: 8px 12px; 
		border: 2px solid #4b4b4b;
		margin: 0 5px 20px 110px;
		color: #4b4b4b;
		font-size: 14px;
		line-height: 14px; 
		letter-spacing: 1px;
		text-decoration: none !important;
		text-transform: uppercase;
		vertical-align: middle;
		cursor: pointer; 	
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.commentlist .reply a:hover {
		border-color: #c88b5e;
		color: #c88b5e;
	}
	
	.commentlist .alt {}
	
	.commentlist .odd {}
	
	.commentlist .even {}
	
	.commentlist .thread-alt {}
	
	.commentlist .thread-odd {}
	
	.commentlist .thread-even {}
	
	.commentlist li ul.children .alt {}
	
	.commentlist li ul.children .odd {}
	
	.commentlist li ul.children .even {}
	
	.commentlist .vcard {}
	
	.commentlist .vcard cite.fn {}
	
	.commentlist .vcard span.says { display: none; }
	
	.commentlist .vcard img.photo {
		float: left;
		display: block;
		margin-right: 30px;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard cite.fn a.url {
		color: #4b4b4b;
		font: 16px "Oswald", Arial, sans-serif;
		text-transform: uppercase;
	}
	
	.commentlist .comment-meta { margin-bottom: 15px; }
	
	.commentlist .comment-meta a { font-size: 16px; }
	
	.commentlist .commentmetadata {}
	
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	
	.commentlist .comment {}
	
	.commentlist .children {}
	
	.commentlist .pingback {}
	
	.commentlist .bypostauthor {}
	
	.commentlist .comment-author {}
	
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin-bottom: 70px;
		list-style: none; 
	}
	
	.commentlist li {}
	
	.commentlist li .comment-body { margin-top: 70px; }
	
	.commentlist li p { margin-left: 110px; }
	
	.commentlist li ul {
		margin-left: 110px;
		list-style: none; 
	}
	
	.commentlist li ul.children li {}
	
	.commentlist li ul.children li.alt {}
	
	.commentlist li ul.children li.byuser {}
	
	.commentlist li ul.children li.comment {}
	
	.commentlist li ul.children li.bypostauthor {}
	
	.commentlist li ul.children li.comment-author-admin {}
	
	#cancel-comment-reply {}
	
	#cancel-comment-reply a {}
	
	@media (max-width: 767px) {
		
		
		.commentlist li p,
		.commentlist li ul,
		.commentlist .reply a { margin-left: 0; }
		
		.commentlist .vcard img.photo {
			float: none;
			margin-right: 0;
			margin-bottom: 20px;
		}
		
	}
	
/* ==========================================================================
   =WordPress Comment Form
   ========================================================================== */	
   
   	.section-heading { text-transform: uppercase; }
	
	.nav-previous { display: none; }
	
	.nav-next { display: none; }
   
	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }

	#commentform { margin: 50px 0; }
	
	.comment-notes { display: none; }
	
	.comment-form p { position: relative; }
	
	.comment-form label {
		position: absolute;
		top: 10px;
		left: 0;
		font-size: 22px;
	}
	
	.comment-form-author {}
	
	.comment-form-author label {}
	
	.comment-form-author input#author {
		padding-left: 30px;
		border: none;
		border-bottom: 2px solid #4b4b4b;
	}
	
	.comment-form-email {}
	
	.comment-form-email label {}
	
	.comment-form-email input#email {
		padding-left: 30px;
		border: none;
		border-bottom: 2px solid #4b4b4b;
	}
	
	.comment-form-url {}
	
	.comment-form-url label {}
	
	.comment-form-url input#url {
		padding-left: 30px;
		border: none;
		border-bottom: 2px solid #4b4b4b;
	}
	
	#commentform .required {}
	
	.comment-form-comment {}
	
	.comment-form-comment label {}
	
	.comment-form-comment textarea#comment {
		padding-left: 30px;
		border: none;
		border-bottom: 2px solid #4b4b4b;
	}
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code {}
	
	.form-submit {}
	
	#commentform #submit {}
		