/**
 *	
 *	=Accordions and Toogles
 *	=Alerts
 *	=Animations
 *	=Buttons
 *	=Client logos
 *	=Custom Lists
 *	=Dividers
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *	=Milestones
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Social Media
 *	=Styled Tables
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Timeline
 *	=Personal info
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio pagination
 *	=Portfolio Isotope
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Contact form
 *	=Blog
 *	=Fullwidth Section
 */

 
/* ==========================================================================
   =Accordions and Toogles
   ========================================================================== */

/* =Accordion
   ========================================================================== */
	
	.accordion { margin-bottom: 50px; }

	.accordion-item {
		position: relative;
		display: block;
		padding: 20px 25px;
		border: 1px solid #e0e0e0;
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;	
	}
	
	a.accordion-item { color: #6d6d6d; }
	
	.accordion-item:after {
		position: absolute;
		top: -1px;
		right: -1px;
		width: 60px;
		height: 60px;  
		background-color: #4fb7ff;
		color: #fff;
		font-size: 18px;
		line-height: 60px;
		text-align: center;
		content: "+";
	}
	
	.accordion-item.active:after { content: "-"; }
	
	.accordion-item:hover,
	.accordion-item.active {
		border-color: #3a4e6a;
		background-color: #3a4e6a;
		color: #fff;
		text-decoration: none; 
	}
	
	.accordion-item-content { 
		display: none; 
		padding: 15px 60px 15px 25px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =Toogle
   ========================================================================== */
	
	.toggle { margin-bottom: 0px; }

	.toggle-item {
		position: relative;
		display: block;
		padding: 20px 25px;
		border: 1px solid #e0e0e0;
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;	
	}
	
	a.toggle-item { color: #6d6d6d; }
	
	.toggle-item:after {
		position: absolute;
		top: -1px;
		right: -1px;
		width: 60px;
		height: 60px;  
		background-color: #4fb7ff;
		color: #fff;
		font-size: 18px;
		line-height: 60px;
		text-align: center;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover,
	.toggle-item.active {
		border-color: #3a4e6a;
		background-color: #3a4e6a;
		color: #fff;
		text-decoration: none; 
	}
	
	.toggle-item-content { 
		display: none; 
		padding: 15px 60px 15px 25px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (max-width: 767px) {
		
		
		.toggle-item-content,
		.accordion-item-content { padding: 15px 0; }
		
	}

/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 1px solid #cdcdcd;
		margin-bottom: 30px;
		font-size: 18px;
		text-align: center;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 20px;
	}
	
	.alert.info {
		background-color: #94cee4;
		color: #fff;
	}
	
	.alert.success {
		background-color: #56bf2b;
		color: #fff;
	}
	
	.alert.error {
		background-color: #ff0030;
		color: #fff;
	}
	
	.alert.warning {
		background-color: #ff7992;
		color: #fff;
	}
	
/* ==========================================================================
   =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: 10px; 
		border-bottom: 1px solid #ee0724;
		border-radius: 2px;
		margin: 0 5px 20px 0;
		background-color: #ed1c24;
		color: #fff;
		font: 12px/12px 'Open Sans', Arial, sans-serif; 
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	a.btn { color: #fff; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 20px 25px;
		border-bottom-width: 2px;
		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-bottom-color: #ed1c24;
		background-color: #303946;
	}

/* =Colored Buttons
   ========================================================================== */
	
	.btn-white {
		border: 1px solid #ed1c24;
		background-color: transparent;
		color: #4fb7ff;
	}
	
	a.btn-white { color: #ed1c24; }
	
	.btn-white:hover { 
		border-color: #ed1c24;
		background-color: #ed1c24;
		color: #fff;
	}
	
	.btn-white.alt { border-color: #6d6d6d; }
	a.btn-white.alt { color: #6d6d6d; }
	
	.btn-white.alt:hover {
		border-color: #ed1c24;
		color: #fff; 
	}
	
	.btn-black {
		border: 1px solid #000000;
		background-color: #000000;
		color: #fff;
	}
	
	a.btn-black { color: #fff; }
	
	.btn-black:hover { 
		border-color: #ed1c24;
		background-color: #ed1c24;
		color: #fff;
	}

/* ==========================================================================
   =Client logos
   ========================================================================== */
   
   	.client-logos { 
		padding: 40px 0;
		border: 1px solid #e0e0e0;
		margin-bottom: 20px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.client-logos img { 
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.client-logos:hover { background-color: #f9f9f9; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.client-logos { padding: 25px 0; }
		
	}
	
/* ==========================================================================
   =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 */
	ul.circle2 { list-style-type: circle; } /* 3 */
	
	/**
 	 * FontAwesome lists
 	 *
	 * 1. Check list
	 * 2. Square check list
	 * 3. Fill circle list
	 * 4. Square list
	 * 5. Diamond list
	 *
	 */
	 
	ul.check,								/* 1 */
	ul.square-check,						/* 2 */
	ul.fill-circle,							/* 3 */
	ul.fill-circle2,							/* 3 */
	ul.square,								/* 4 */
	ul.diamond { list-style: none; }		/* 5 */	
	
	ul.check li:before,
	ul.square-check li:before { 
		position: relative;
		top: -1px;
		margin-right: 15px;
		color: #4fb7ff;
		font-family: 'FontAwesome';
		font-size: 14px;
	}
	
	ul.check li:before { content: ""; }
	
	ul.square-check li:before {
		top: 2px;
		font-size: 18px;
		content: ""; 
	}
	
	ul.fill-circle2 li:before {
		position: relative;
		top: -1px;
		display: inline-block;
		width: 2px;
		height: 2px;
		border-radius: 50%;
		margin-right: 15px;
		margin-bottom: 3px; 
		background-color: #000;
		content: "";
	}
	
	
	ul.fill-circle li:before {
		position: relative;
		top: -1px;
		display: inline-block;
		width: 2px;
		height: 2px;
		border-radius: 50%;
		margin-right: 15px; 
		margin-bottom: 3px;
		background-color: #000;
		content: "";
	}
	
	ul.square li:before {
		position: relative;
		top: 4px;
		display: inline-block;
		width: 16px;
		height: 16px;
		border-radius: 3px;
		margin-right: 15px; 
		background-color: #4fb7ff;
		content: "";
	}
	
	ul.diamond li:before {
		position: relative;
		top: 4px;
		display: inline-block;
		width: 16px;
		height: 16px;
		margin-right: 15px; 
		background-color: #4fb7ff;
		content: "";
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	ul.check li,
	ul.square-check li,
	ul.fill-circle li { margin-bottom: 4px; }
	ul.fill-circle2 li { margin-bottom: 4px; }
	ul.square li { margin-bottom: 10px; }
	
	ul.diamond li {
		margin-bottom: 25px;
		font-size: 18px; 
	}
	
	ul.check li:last-child,
	ul.square-check li:last-child,
	ul.fill-circle li:last-child,
	ul.fill-circle2 li:last-child,
	ul.square li:last-child,
	ul.diamond 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: 680px; 
		margin-bottom: 100px; 
	}
	
	@media (max-width: 767px) {
		
		.map { height: 300px; }
		
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline { 
		margin: 50px 0 100px 0;
		text-align: center;
		text-transform: uppercase; 
		word-wrap: break-word;
	}
	
	.headline h2,
	.headline h3 {
		margin-bottom: 0;
		font-weight: 800;
	}
	
	.headline h2:after,
	.headline h3:after {
		display: block;
		width: 35px;
		border-top: 2px solid #4fb7ff;
		margin: 3px auto 5px;
		content: "";
	}
	
	.headline-2 {
		margin-bottom: 20px;
		text-transform: uppercase; 
		word-wrap: break-word;
	}
	
	.headline-2 h1 { font-weight: 800; }
	
	.headline-2 h1:after {
		display: block;
		width: 120px;
		border-top: 2px solid #4fb7ff;
		margin: 15px 0 20px 0;
		content: "";
	}
	
	.headline-2 h2 {
		margin-bottom: 0;
		font-weight: 800;
	}
	
	.headline-2 h2:after {
		display: block;
		width: 375px;
		border-top: 1px solid #ed1c24;;
		margin: 8px 0 10px 0;
		content: "";
	}
	
	.headline-2 h3 { font-weight: 700; }
	
	.headline-2 h3,
	.headline-2 h4 { 
		margin-bottom: 0;
		text-transform: none;
	}
	
	.headline-2 h3:after,
	.headline-2 h4:after {
		display: block;
		width: 30px;
		border-top: 0px solid #4fb7ff;
		margin: 3px 0 5px 0;
		content: "";
	}
	
/* ==========================================================================
   =Headlines Main
   ========================================================================== */

	
	
	.headline-Main,
	.headline-Main:after,
	
	.headline-Main {
		margin-bottom: 20px;
		text-transform: uppercase; 
		word-wrap: break-word;
	}
	
	.headline-Main h1 { font-weight: 800; }
	
	.headline-Main h1:after {
		display: block;
		width: 120px;
		border-top: 2px solid #4fb7ff;
		margin: 15px 0 20px 0;
		content: "";
	}
	
	.headline-Main h2 {
		margin-bottom: 0;
		font-weight: 800;
	}
	
	.headline-Main h2:after {
		display: block;
		width: 505px;
		border-top: 1px solid #ed1c24;;
		margin: 8px 0 10px 0;
		content: "";
	}
	
	.headline-Main h3 { font-weight: 700; }
	
	.headline-Main h3,
	.headline-Main h4 { 
		margin-bottom: 0;
		text-transform: none;
	}
	
	.headline-Main h3:after,
	.headline-Main h4:after {
		display: block;
		width: 30px;
		border-top: 0px solid #4fb7ff;
		margin: 3px 0 5px 0;
		content: "";
	}
	
	
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 50px; 
	}
		
	.icon-box-1 > span {
		float: left;
		display: block;  
		width: 35px;
		height: 35px;
		background-color: #3a4e6a;
		color: #fff; 
		text-align: center;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	} 
	
	.icon-box-1 > span i {
		display: inline-block;
		font-size: 18px;
		line-height: 35px;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.icon-box-1 > img { 
		float: left; 
		display: block; 
	} 
	
	.icon-box-1 .icon-box-content { margin-left: 55px; }
	
	.icon-box-1:hover > span {
		background-color: #4fb7ff;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.icon-box-1:hover > span i {
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
	}

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 50px;
		text-align: center; 
	}
		
	.icon-box-2 > span { 
		display: inline-block;
		width: 48px;
		height: 48px;
		border: 1px solid #e0e0e0;
		margin-bottom: 30px;  
		text-align: center;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.icon-box-2 > span i {
		display: inline-block;
		font-size: 25px;
		line-height: 48px;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.icon-box-2 > img { margin-bottom: 10px; }
	
	.icon-box-2 h4 { margin-bottom: 30px; }
	
	.icon-box-2 .btn { margin-top: 10px; }
	
	.icon-box-2 .icon-box-content {}	
	
	.icon-box-2:hover > span {
		background-color: #4fb7ff;
		color: #fff;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.icon-box-2:hover > span i {
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
	}

/* =Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { 
		position: relative; 
		margin-bottom: 50px; 
	}	
	
	/**
	 * 1. Stop bg color from leaking outside the border	
	 */
	
	.icon-box-3 > span {
		position: absolute;	 
		z-index: 20; 
		left: 50%; 
		width: 60px; 
		height: 60px;
		border: 1px solid #e0e0e0;
		margin-top: -30px; 
		margin-left: -30px; 			
		background-color: #fff;	
		text-align: center; 
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.icon-box-3 > span i {
		display: inline-block;
		font-size: 32px;
		line-height: 60px;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.icon-box-3 h4 { margin-bottom: 30px; }
	.icon-box-3 .btn { margin-top: 15px; }
	 
	.icon-box-3 .icon-box-content { 
		position: relative;
		z-index: 10;
		padding: 55px 20px 30px 20px;
		border: 1px solid #e0e0e0; 
		border-radius: 3px; 
		margin-top: 16px;
		text-align: left; 
	}
	
	.icon-box-3:hover > span {
		background-color: #ed1c24;
		color: #ffffff; 
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.icon-box-3:hover > span i {
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
	}

/* =Icon Box 4
   ========================================================================== */
   
	
	.icon-box-color { 		
		color: #303946; 		
	}
			
	.icon-box-4 { 		
		position: relative; 
		margin-bottom: 50px; 
	}
		
	.icon-box-4 > i {
		float: left;
		display: block;   
		font-size: 32px;		
		line-height: 32px;
		text-align: center;
	} 
	
	.icon-box-4 > img { 
		float: left; 
		display: block; 
	} 
	
	.icon-box-4 h4 {
		margin-bottom: 15px;
		font-weight: 700;
	}
	
	.icon-box-4 .icon-box-content { margin-left: 55px; }
	
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 50px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 20;
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		color: #313947;
		font: 72px/85px 'Open Sans', Arial, sans-serif;
		font-weight: 600;
	}
	
	.milestone .milestone-description {
		font: 14px/24px 'PT Sans', Arial, sans-serif; 
		font-weight: 400;
	}
	
	.milestone .milestone-description p:before {
		display: block;
		width: 40px;
		border-top: 2px solid #4fb7ff;
		margin-bottom: 10px;
		content: "";
	}
	

/* ==========================================================================
   =Our Process
   ========================================================================== */

/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 50px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 60px;
		left: 135px;
		display: block;
		width: 74%;
		border-top: 1px solid #e0e0e0;
		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: 1px solid #e0e0e0;
		margin: 0 auto 20px;
		background-color: #fff;
		background-clip: padding-box;
		color: #111;
		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: #4fb7ff;
		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 10px; }
	
	@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%; }
		
	}
	

/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 32px;
		height: 32px;
		border: 1px solid #4fb7ff;
		margin-right: 10px;
		margin-bottom: 1px;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 18px;
		line-height: 32px;
	}
	
	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 { margin-bottom: 50px; } /* 1 */

	.tabs-container .tabs-menu { 
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 20px 25px;
		border-top: 3px solid #fff;
		border-right: 1px solid #fff;
		background-color: #000;
		color: #fff;
		font-size: 16px;
		line-height: 16px;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.tabs-container .tabs-menu li:last-child a { border-right: none; }
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.tabs-container .tabs-menu li a:hover,
	.tabs-container .tabs-menu li.active a {
		border-top-color: #313947;
		background-color: #ed1c24;
	}
	
	.tabs-container .tabs {
		margin-bottom: 30px;
	}
	
	.tabs-container .tab-content { 
		padding: 30px;
		border-radius: 0 0 2px 2px;
		background-color: #ed1c24;
		color: #fff;
	}
	
	.tabs-container .tab-content h1,
	.tabs-container .tab-content h2,
	.tabs-container .tab-content h3,
	.tabs-container .tab-content h4,
	.tabs-container .tab-content h5,
	.tabs-container .tab-content h6 { color: #fff; }
	
	.tabs-container .tab-content p:last-child { margin-bottom: 0; }
	
	.tabs-container .tab-content img {
		float: left;
		margin-right: 30px;
	}
	
/* =Vertical tabs
   ========================================================================== */
	
	.vertical-tabs-container {
		position: relative;
	}
	
	.vertical-tabs-container .tabs-menu { 
		float: left;
		width: 269px;
		margin-bottom: 0;
		list-style: none;
	}
	
	.vertical-tabs-container .tabs-menu li a { 
		display: block;
		padding: 20px 25px;
		border: 1px solid #e0e0e0;
		border-bottom: none;
		color: #6d6d6d;
		font-weight: 700; 
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.vertical-tabs-container .tabs-menu li:last-child a { border-bottom: 1px solid #e0e0e0; }
	
	.vertical-tabs-container .tabs-menu li.active a,
	.vertical-tabs-container .tabs-menu li a:hover {
		background-color: #4fb7ff;
		color: #fff;
	}
	
	.vertical-tabs-container .tabs { margin-left: 270px;}
	
	.vertical-tabs-container .tab-content { padding: 15px 15px 15px 30px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.tabs-container .tabs-menu li a { 
			padding: 15px 12px;
			font-size: 14px;
		}
		
	}
	
	@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-top: none;
			border-right: none;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			border-bottom-color: #bbb;
			margin: 0;
		}
		
		.tabs-container .tab-content img {
			float: none;
			margin-right: 0;
			margin-bottom: 20px;
		}
		
		.vertical-tabs-container .tabs-menu { 
			float: none;
			width: 100%;
		}
		
		.vertical-tabs-container .tabs { margin-left: 0; }
		
		.vertical-tabs-container .tabs-menu li a { 
			padding: 20px 25px;
			margin-right: 0;
		}		
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { 
		margin-bottom: 30px;
		text-align: center;
	}
	
	.testimonial span {
		position: relative;
		overflow: hidden;
		display: block;
		width: 100px;
		height: 100px;
		margin: 30px auto 70px auto;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.testimonial span img {
		display: block; 
		-webkit-transform: rotate(-45deg) translateY(-28px);
				transform: rotate(-45deg) translateY(-28px);
	}
	
	.testimonial > h4 {
		margin-bottom: 0;
		text-transform: uppercase;
	}
	
	.testimonial > h4:after {
		display: block;
		width: 30px;
		border-top: 1px solid #4fb7ff;
		margin: 5px auto;
		content: "";
	}
	
	.testimonial blockquote { margin: 20px 0 50px 0; }
	
	.testimonial.alt { text-align: left; }
	
	.testimonial.alt span { 
		float: left;
		margin-right: 50px;
	}
	
	.testimonial.alt > h4:after { margin: 5px 0 5px 150px; }
	
	.testimonial-2 { margin-bottom: 30px; }
	
	.testimonial-2 blockquote {
		position: relative;
		padding: 15px 20px;
		border: 1px solid #ed1c24;
		margin-bottom: 30px;
	}
	
	.testimonial-2 blockquote:before {
		position: absolute;
		bottom: -10px;
		left: 27px;
		width: 0; 
		height: 0; 
		border-left: 8px solid transparent; 
		border-right: 8px solid transparent; 
		border-top: 10px solid #ed1c24;
		content: "";
		-moz-transform: scale(.9999);
	}
	
	.testimonial-2 blockquote:after {
		position: absolute;
		bottom: -8px;
		left: 28px;
		width: 0; 
		height: 0; 
		border-left: 7px solid transparent; 
		border-right: 7px solid transparent; 
		border-top: 8px solid #fff;
		content: "";
		-moz-transform: scale(.9999);
	}
	
	.testimonial-2 blockquote p:last-child { margin-bottom: 0; } 
	
	.testimonial-2 span {
		position: relative;
		overflow: hidden;
		float: left;
		display: block;
		width: 50px;
		height: 50px;
		margin: 10px 30px 10px 10px;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.testimonial-2 span img {
		display: block; 
		-webkit-transform: rotate(-45deg) translateY(-14px);
				transform: rotate(-45deg) translateY(-14px);
	}
	
	.testimonial-2 h5 {
		padding-top: 5px;
		margin-bottom: 0;
	}
	
	.testimonial-2 > h5:after {
		display: block;
		width: 30px;
		border-top: 1px solid #ed1c24;
		margin: 5px 0 0 0px;
		content: "";
	}
	
	.testimonial-3 { margin-bottom: 40px; }
	
	.testimonial-3 img { margin-bottom: 20px; }
	
	.testimonial-3 > h4 {
		margin-bottom: 0;
		text-transform: uppercase;
	}
	
	.testimonial-3 > h4:after {
		display: block;
		width: 30px;
		border-top: 1px solid #4fb7ff;
		margin-top: 5px;
		content: "";
	}
	
	.testimonial-3 blockquote { margin-top: 20px; }
	
	
/* ==========================================================================
   =Timeline
   ========================================================================== */	
	
	.vertical-timeline {
		margin-bottom: 50px;
		list-style: none; 
	}

	.vertical-timeline li { position: relative; }
	
	.vertical-timeline h3 { margin-bottom: 0; }
	
	.left-side,
	.right-side {
		position: relative;
		float: left;  
		width: 370px; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
				box-sizing: border-box; 
		padding: 20px 25px; 
		border-radius: 2px;
		margin-bottom: 50px;
		background-color: #f1f1f1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.left-side:before,
	.right-side:before {
		position: absolute;
		top: 50%;
		width: 0;
		height: 0; 
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		margin-top: -15px;
		content: "";
		-moz-transform: scale(.9999);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.left-side:before {
		right: -10px;
		border-left: 10px solid #f1f1f1;
	}
	
	.right-side:before {
		left: -10px;
		border-right: 10px solid #f1f1f1;
	}
	
	.vertical-timeline li:nth-child(odd) .right-side,
	.vertical-timeline li:nth-child(even) .left-side,
	.vertical-timeline li:hover:nth-child(odd) .right-side,
	.vertical-timeline li:hover:nth-child(even) .left-side { background-color: transparent; }
	
	.vertical-timeline li:nth-child(odd) .right-side:before,
	.vertical-timeline li:nth-child(even) .left-side:before { display: none; }
	
	.left-side p:last-child,
	.right-side p:last-child { margin-bottom: 0; }
	
	.vertical-timeline li:hover .left-side,
	.vertical-timeline li:hover .right-side { 
		background-color: #4fb7ff;
		color: #fff;
	}
	
	.vertical-timeline li:hover .left-side h4,
	.vertical-timeline li:hover .right-side h4 { color: #fff; }
	
	.vertical-timeline li:hover .left-side:before { border-left-color: #4fb7ff; }
	.vertical-timeline li:hover .right-side:before { border-right-color: #4fb7ff; }
	
	.separator {
		position: relative; 
		float: left;
		width: 200px;  
		margin-top: 20px;
	}
	
	.separator:before {
		position: absolute;
		top: 0;
		left: 50%;
		height: 100%;
		border-left: 1px solid #e0e0e0;
		content: "";
	}
	
	.vertical-timeline li:last-child .separator:before { display: none; }
	
	.separator span {
		display: block;
		width: 100px;
		height: 100px;
		margin: 0 auto;
		background-color: #4fb7ff;
		text-align: center;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.separator span i {
		display: inline-block;
		color: #fff;
		font-size: 50px;
		line-height: 100px;
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg); 
	}
	
	.vertical-timeline li:hover .separator span { background-color: #313947; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.vertical-timeline li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1400px) {
		
		.left-side,
		.right-side { width: 485px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.left-side,
		.right-side { width: 300px; }
		
		.separator { width: 105px; }
		
		.separator span {
			width: 50px;
			height: 50px;
			margin-top: 35px;
		}
		
		.separator:before { top: 60px; }
		
		.separator span i {
			font-size: 24px;
			line-height: 50px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.left-side,
		.right-side {
			float: left;
			width: 100%;
			margin-top: 100px;
		}
		
		.left-side:before,
		.right-side:before { display: none; }
		
		.separator {
			position: absolute;
			top: -75px;
			left: 0;
			width: 100%;
			float: none;
		}
		
		.separator span {
			width: 75px;
			height: 75px;
			margin-top: 50px;
		}
		
		.separator:before { display: none; }
		
		.separator span i {
			font-size: 42px;
			line-height: 75px;
		}
		
		.vertical-timeline li:nth-child(odd) .right-side,
		.vertical-timeline li:nth-child(even) .left-side { display: none; }
		
	}

/* ==========================================================================
   =Personal info
   ========================================================================== */
	
	.personal-info { list-style: none; }
	
	.personal-info li {
		padding-bottom: 10px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 10px;
	}
	
	.personal-info li:last-child {
		padding-bottom: 0;
		border: none;
		margin-bottom: 0;
	}
	

/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
	
	#contact-form fieldset {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	  
	
	#contact-form #submit { border: 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: 50px 0;
		margin-bottom: 0px;
		color: #fff;
		background-color: #F7F7F7;
		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-color: rgba(0, 33, 56, 0.8);	
	}
	
	.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,
	.fullwidth-section a,
	.fullwidth-section h1,
	.fullwidth-section h2,
	.fullwidth-section h3,
	.fullwidth-section h4,
	.fullwidth-section h5,
	.fullwidth-section h6,
	.fullwidth-section .btn-white,
	.fullwidth-section .btn-white.alt,
	.fullwidth-section a.toggle-item,
	.fullwidth-section a.accordion-item,
	.fullwidth-section ul.check li:before,
	.fullwidth-section ul.square-check li:before,
	.fullwidth-section .icon-box-3:hover > span i,
	.fullwidth-section .milestone .milestone-content,
	.fullwidth-section .vertical-tabs-container .tabs-menu li a { color: #fff; }
	
	.fullwidth-section ul.square li:before,
	.fullwidth-section ul.fill-circle li:before { background-color: #fff; }
	
	.fullwidth-section .icon-box-3 > span i { color: #191919; }
	
	.fullwidth-section .btn-white.alt { border-color: #fff; }
	
	.fullwidth-section .pie-chart {
		margin-bottom: 20px;
		background-color: transparent; 
	}
	
	.fullwidth-section .pricing-table { background-color: #4fb7ff }
	.fullwidth-section .pricing-table h1 { background-color: #313947; }
	.fullwidth-section .pricing-table-header h4:after { border-top-color: #313947; }
	
	.fullwidth-section .pricing-table:hover { background-color: #313947; }
	.fullwidth-section .pricing-table:hover h1 { background-color: #4fb7ff; }
	.fullwidth-section .pricing-table .pricing-table-header h4:after { border-top-color: #313947; }
	.fullwidth-section .pricing-table:hover .pricing-table-header h4:after { border-top-color: #4fb7ff; }
	
	.fullwidth-section .tabs-container .tabs-menu li a { border-top: none; }
	
	
	/* Fullwidth section backgrounds */
	
	#portfolio {
		padding: 50px 0 80px 0;
		background-color: #f7f7f7;
	}
	
	#features {
		padding-top: 50px;
		background-color: #f7f7f7;
	}
	
	#services {
		padding: 50px 0;
		margin-top: 50px;
		background-color: #f7f7f7;
	}
	
	#subscribe {
		padding: 50px 0 80px 0; 
		margin: 100px 0 -50px 0;
		background-color: #f7f7f7;
	}
	
	#subscribe .headline { margin-bottom: 50px; }
	
	#subscribe .ewf_widget_newsletter { 
		margin-top: 60px;
		margin-bottom: 0;
	}
	
	#bg-1 { 
		margin-top: 50px;
		margin-bottom: 0;
		background: url(../../information/backgrounds/1920x1600.jpg) no-repeat center center;
	}
	
	#bg-2 {
		padding: 100px 0 60px 0;
		margin-bottom: 0;
		background-image: url(../../information/backgrounds/1920x1200-1.jpg);
	}
	
	#bg-3 {
		padding: 100px 0;
		background-image: url(../../information/backgrounds/1920x1200-2.jpg);
	}
	
	#bg-4 {
		padding-bottom: 30px;
		margin: 50px 0 -50px 0;
		background-image: url(../../information/backgrounds/1920x800-1.jpg);
	}
	
	#bg-4 h3 { margin-top: 10px; }
	
	#bg-5 {
		padding: 120px 0px 150px 0px;
		margin-top: 0px;
		background-image: url(../../information/backgrounds/main-header.jpg);
		color: #6d6d6d;
	}
	
	span.highlight {
    background-color: white;
	padding: 5px 5px;
	
}

span.highlight-red {
    background-color: white;
	padding: 5px 5px;
	color: #ec1c23;
	
}	
	
	#bg-5.fullwidth-section h1,
	#bg-5.fullwidth-section h2,
	#bg-5.fullwidth-section h3,
	#bg-5.fullwidth-section h4,
	#bg-5.fullwidth-section h5,
	#bg-5.fullwidth-section h6 { color: #313947; }
	
	#bg-6 {
		padding-top: 90px;
		padding-bottom: 0;
		margin-top: 80px;
		background-image: url(../../information/backgrounds/1920x1200-3.jpg);
	}
	
	#bg-7 {
		padding-bottom: 350px;
		margin: 70px 0 -50px 0;
		background: #f7f7f7 url(../../information/backgrounds/1920x320.png) no-repeat bottom center;
		color: #6d6d6d;
	}
	
	#bg-7.fullwidth-section a,
	#bg-7.fullwidth-section h1,
	#bg-7.fullwidth-section h2,
	#bg-7.fullwidth-section h3,
	#bg-7.fullwidth-section h4,
	#bg-7.fullwidth-section h5,
	#bg-7.fullwidth-section h6 { color: #313947; }
	
	#bg-8 {
		padding: 100px 0 80px 0;
		margin-top: 80px;
		background-image: url(../../information/backgrounds/1715x850.jpg);
	}
	
	#bg-9 {
		padding-bottom: 30px;
		background-image: url(../../information/backgrounds/1920x800-2.jpg);
	}
	
	#bg-10 {
		padding: 100px 0 80px 0;
		margin-top: 80px;
		background-image: url(../../information/backgrounds/1920x850.jpg);
	}
	
	#bg-11-3 {
		padding-bottom: 30px;
		margin: 80px 0 -50px 0;
		background-image: url(../../information/backgrounds/world.jpg);
	}
	
	#bg-11-3 h3 { margin-top: 10px; }
	
	
	#bg-11 {
		padding-bottom: 30px;
		margin: 80px 0 -50px 0;
		background-image: url(../../information/backgrounds/1920x800-2.jpg);
	}
	
	#bg-11 h3 { margin-top: 10px; }
	
	#bg-12 {
		background-image: url(../../information/backgrounds/1920x1200-4.jpg);
	}
	
	#bg-13 {
		padding: 120px 0 100px 0;
		margin-top: 50px;
		background-image: url(../../information/backgrounds/1920x1000-2.jpg);
	}
	
	#bg-14 {
		padding: 70px 0 110px 0;
		margin-top: 50px;
		background-image: url(../../information/backgrounds/1920x2000.jpg);
	}
	
	#bg-15 {
		padding: 70px 0 20px 0;
		margin-top: 80px;
		background-image: url(../../information/backgrounds/1920x1000-3.jpg);
	}
	
	#bg-16 {
		padding: 260px 0 240px 0;
		margin-bottom: -50px;
		background-image: url(../../information/backgrounds/1920x1200-5.jpg);
	}
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
		#bg-7.fullwidth-section {
			-webkit-background-size: auto;
					background-size: auto;	
		}
		
		#bg-5.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;	
		}
		
		#bg-5 {
		padding: 50px 0px 10px 0px;
		margin-top: 0px;
		background-image: url(../../information/backgrounds/main-header.jpg);
		color: #6d6d6d;
	}
		
		
	}
	
	
	
/* =Widgets default
   ========================================================================== */
	
	.widget { margin-bottom: 60px; }
	
	.widget-title { 
		margin-bottom: 20px;
		line-height: 18px;
		font-weight: 500;
		text-transform: uppercase;  
	}
	
	.widget-title:after {
		display: block;
		width: 150px;
		border-top: 1px solid #ed1c24;
		margin-top: 10px;
		content: "";
		
	}
	
/* =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 { margin-bottom: 30px; }
	.widget_recent_entries ul li:last-child { margin-bottom: 0; }
	
	.widget_recent_entries ul li > a {
		color: #313947;
		font-weight: 700;
	}
	
	.widget_recent_entries ul li img {
		float: left;
		margin-right: 10px;
	}
	
	.widget_recent_entries ul li .post-date a { color: #6d6d6d; }
	
	.ewf_widget_social_media {}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.widget_recent_entries ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	
	
	@media (min-width: 1400px) {
		
		.widget_recent_entries ul li img { margin-right: 30px; }
		
	}
	
	@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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.widget_pages li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.widget_pages li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.widget_archive li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.widget_archive li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		text-decoration: none;
	}	
	
/* =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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.widget_categories li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.widget_categories li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		text-decoration: none;
	}
	
	.widget_categories ul ul.children {}
	
	.widget_categories select{}
	
	.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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.widget_meta li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.widget_meta li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		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: 3px 10px;
		border: 1px solid #e0e0e0;
		border-radius: 2px;
		margin: 0 5px 8px 0; 
		color: #6d6d6d;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover {
		border-color: #4fb7ff;
		color: #4fb7ff;
		text-decoration: none;
	}
	
	.widget_tag_cloud a:after {}
	
	.widget_tag_cloud a:before {}
	
/* =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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.widget_nav_menu li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.widget_nav_menu li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		text-decoration: none;
	}	
	
/* =RSS Widget
   ========================================================================== */
	
	.widget_rss {}
	
	.widget_rss ul { list-style: none; }	
	
   
/* =EWF Twitter widget
   ========================================================================== */
	
	.ewf_widget_latest_tweets{}
	
	.ewf-tweet-list .tweet { word-wrap: break-word; }
	
	.ewf-tweet-list ul { 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: 68px; 
		height: auto;
		padding-right: 5px; 
		border: none;
	}
	
	@media (min-width: 1400px) {
		
		.flickr-feed img { padding: 0 20px 15px 0;  }
		
	}
	
/* =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: 40px;
		margin-bottom: 5px; 
	}
	
	.ewf_widget_contact_info ul li:last-child { margin-bottom: 30px; }
	
	.ewf_widget_contact_info ul li span {
		position: absolute;
		top: 0;
		left: 0;
		width: 25px;
		height: 25px;
		border: 0px solid #ed1c24;
		text-align: center;
		-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.ewf_widget_contact_info ul li span i {
		display: inline-block;
		color:#ed1c24;
		font-size: 18px;
		line-height: 25px;
		-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
	}
	
	.ewf_widget_contact_info ul li a { color: #6d6d6d;  }
	
/* =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;
		border: none;
		margin: 0;
	}
	
	#newsletter-subscribe-form input[type="submit"]:hover { background-color: #313947; }

/* =EWF Latest posts widget
   ========================================================================== */

	.ewf_widget_latest_posts {}
	
	.ewf_widget_latest_posts ul { list-style: none; }
	
	.ewf_widget_latest_posts ul li { margin-bottom: 40px; }
	.ewf_widget_latest_posts ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_latest_posts ul li img { 
		float: left;
		margin-right: 30px;
	}
	
	.ewf_widget_latest_posts ul li .title {
		color: #313947;
		font-size: 18px;
	}	
	
	.ewf_widget_latest_posts ul li .title:after {
		position: relative;
		left: 100px;
		display: block;
		width: 20px;
		border-top: 1px solid #4fb7ff;
		margin: 5px 0;
		content: "";
	}
	
	.ewf_widget_latest_posts ul li .date {}
	
	.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: 20px;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 20px;
		color: #6d6d6d;
		font-size: 16px;
	}
	
	.ewf_widget_navigation li:last-child a {
		padding-bottom: 0;
		border-bottom: none;
		margin-bottom: 0;	
	}
	
	.ewf_widget_navigation li a:hover {
		border-bottom-color: #4fb7ff;
		color: #313947;
		text-decoration: none;
	}	
	
	.fullwidth-section .ewf_widget_navigation ul { margin-top: 40px; }
	.fullwidth-section .ewf_widget_navigation ul li { display: inline-block; }
	
	.fullwidth-section .ewf_widget_navigation li a {
		padding: 5px 20px;
		border: 1px solid transparent;
		color: #fff;
	}
	
	.fullwidth-section .ewf_widget_navigation li a:hover { border-color: #fff; }
	
	@media (max-width: 767px) {
		
		.fullwidth-section .ewf_widget_navigation ul li { display: block; }
		.fullwidth-section .ewf_widget_navigation ul li a { display: inline-block; }
		
	}

/* =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;
	}	

