/**
 * Name: base.css
 *
 *	T.O.C
 *	
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 */


/* ==========================================================================
   #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: #616161;
		font: 16px 'Open Sans', Arial, sans-serif; 
		line-height: 24px;	
	}
	
	body {
		font-family: 'Muli', sans-serif;
	}

	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 { font-weight: normal; }
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a {
		color: #818181;
		font-weight: inherit; 
	}
	
	h1 {
		margin-bottom: 14px; 	 
		font-size: 36px; 
		line-height: 48px; 
	}
	
	h2 { 
		margin-bottom: 10px;	
		font-size: 30px; 
		line-height: 42px;  
	}
	
	h3 { 
		margin-bottom: 8px;
		font-size: 24px; 
		line-height: 36px;   
	}
	
	h4 {
		margin-bottom: 4px; 
		font-size: 18px; 
		line-height: 28px;   
	}
	
	h5 { 
		font-size: 16px; 
		line-height: 26px; 
	}
	
	h6 { 
		font-size: 14px; 
		line-height: 24px; 
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: 600; }
	small { font-size: 90%; }
	
	sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}
	
	abbr[title] {  
		border-bottom: 1px dotted #cdcdcd; 
		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 #e9e9e9; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

	code, 
	pre { 
		-webkit-border-radius: 3px;
			    border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #cdcdcd;
		background-color: #e9e9e9;  
		color: #d14;  
	}
	
	pre { 
		overflow-x: auto; 
		display: block;
		padding: 20px;
		border: 1px solid #cdcdcd;   
		margin-bottom: 20px;
		white-space: pre-wrap;
		background-color: #e9e9e9; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #e9e9e9;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { color: #48719b; }

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #aaa; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
/* #Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #48719b; 
		text-decoration: none; 
	}
	
   /**
	* 1. Remove the gray background color from active links in IE 10.
	*/
	
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus {
		outline: 0; 
		text-decoration: none;
		color: #0f5066;
	}	
	
/* #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; }

/* #Images
   ========================================================================== */
	
	img { 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; 
	}

/* #Tables
   ========================================================================== */

	table { 
		width: 100%;
		margin-bottom: 20px; 
		border-collapse: collapse; 
		border-spacing: 0; 
		background-color: transparent; 
	}
	
	caption { 
		margin: 20px 0;
		text-align: center; 
	}

	table th, 
	table td {
		padding: 15px 8px; 
		border-top: 1px solid #cdcdcd;
		text-align: center;
		vertical-align: top; 
	}
	
	table th { 
		border-top: none;
		background-color: #48719b;
		background-color: #273a51;
		color: #fff;
		font-size: 16px;
	}
	
	table thead th { vertical-align: bottom; }

	table td a, table td a:visited {
	    color: #273a51;
	}

	table td.today,
	table td.today a {
		/* background-color: #273a51; */
		background-color: inherit;
	    color:#fff;
	}
	
/* #Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #ff0000; }
	
	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: 6px 10px;
		border: 1px solid #cdcdcd;
		margin-bottom: 10px;
		background: #fff;
		color: #818181;	
/*		font: 14px/24px 'Open Sans', Arial, sans-serif; 		*/ 
		font: 14px/24px Muli, sans-serif; 		 
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #48719b;
		outline: 0;		
	}
	
	select { height: 35px; }
	
	select:focus {
	  outline: thin dotted #cdcdcd;
	  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: #ccc;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #ccc;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #ccc;
	}

/* #Misc
   ========================================================================== */
   
   .javascript-required {
	    padding: 15px 0;
		background-color: #f00;
		color: #fff;
		text-align:center;
		font-weight: bold;
	}
   



h2 {
	color: #273a51;
}
h3 {
	color: #a1b926;
}


.portfolio-item-slider li {
	list-style-type: none;
}


/**
 * Name: boxed.css
 *
 * This file contains an alternative styling to make the layout boxed. 
 * The boxed version also comes with a few background options that you can choose from.
 *
 */

/* ==========================================================================
   #General Layout 
   ========================================================================== */

	/**
	 * You can choose an alternative background
	 */
		 
	body { 
		background: #fff url(../../files/images/bg-body12.png) repeat top left;
		/*
		background: #fff url(../../files/images/bg-body2.png) repeat top left;
		background: #fff url(../../files/images/bg-body3.png) repeat top left;
		background: #fff url(../../files/images/bg-body4.png) repeat top left;
		background: #fff url(../../files/images/bg-body5.png) repeat top left;
		background: #fff url(../../files/images/bg-body6.png) repeat top left;
		background: #fff url(../../files/images/bg-body7.png) repeat top left;
		background: #fff url(../../files/images/bg-body8.png) repeat top left;
		background: #fff url(../../files/images/bg-body9.png) repeat top left;
		background: #fff url(../../files/images/bg-body10.png) repeat top left;
		background: #fff url(../../files/images/bg-body11.png) repeat top left;
		background: #fff url(../../files/images/bg-body12.png) repeat top left;
		background: #fff url(../../files/images/bg-body13.png) repeat top left;
		background: #fff url(../../files/images/bg-body14.png) repeat top left;
		background: #fff url(../../files/images/bg-body15.png) repeat top left;
		background: #fff url(../../files/images/bg-body16.png) repeat top left;
		background: #fff url(../../files/images/bg-body17.png) repeat top left;
		background: #fff url(../../files/images/bg-body18.png) repeat top left;
		background: #fff url(../../files/images/bg-body19.png) repeat top left;
		background: #fff url(../../files/images/bg-body20.png) repeat top left;
		*/
	}
	
	#wrap {
		max-width: 1140px; 
		margin: 0 auto;
		-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
		   -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);    
		        box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);  
	}
	
	#header { max-width: 1140px; }
	
/* ==========================================================================
   #Responsive
   ========================================================================== */
	
	@media (min-width: 1400px) {
		
		#wrap {	max-width: 1370px; }
		
		#header { max-width: 1370px; }
		
	}
	
	@media (max-width: 1279px) {
	
		#wrap {
			-webkit-box-shadow: none;  
			   -moz-box-shadow: none;     
		            box-shadow: none;  
		}
	
	}

/**
 * Name: elements.css
 *
 *	T.O.C
 *	
 *	#Accordions & Toggles
 *  #Alerts
 *  #Animations
 *  #Back to top
 *	#Buttons
 *	#Callout Boxes
 *	#Custom Lists
 *	#Dividers
 *  #Fullwidth Section
 *	#Google Maps
 *  #Headlines
 *	#Icon Boxes
 *	#Milestones
 *	#Our Process
 *	#Pie charts
 *	#Pricing Tables
 *	#ProgressBars
 *	#SocialMedia
 *	#Styled Tables
 *	#Tabs
 *	#Testimonials
 *	#Timeline
 *  #WordPress Widgets
 *  #WordPress Comments
 *  #WordPress Comment Form
 */

/* ==========================================================================
   #Accordions & Toggles
   ========================================================================== */

	/* Accordion & Toggles */
	
	.accordion,
	.toggle { margin-bottom: 30px; }

	.accordion-item,
	.toggle-item { border-bottom: 1px solid #273a51;}

	.accordion-item-toggle,
	.toggle-item-toggle {
		position: relative;
		display: block;
		padding: 15px 20px 15px 45px;
		/*border-bottom: 1px solid #cdcdcd;
		font-weight: 600;*/
	}
	
	a.accordion-item-toggle,
	a.toggle-item-toggle { color: #48719b; font-size: 19px; }
	
	a.accordion-item-toggle:hover,
	a.toggle-item-toggle:hover { color: #273a51; }
	
	.accordion-item-toggle:after,
	.toggle-item-toggle:after {
		position: absolute;
		top: 15px;
		left: 10px;
		width: 24px;		
		background-color: #48719B;
		color: #fff;
		font-size: 18px;
		text-align: center;
		content: "+";
	}
	
	.accordion-item-toggle.active:after,
	.toggle-item-toggle.active:after { content: "-"; }
	
	.accordion-item-toggle:hover,
	.accordion-item-toggle.active,
	.toggle-item-toggle:hover,
	.toggle-item-toggle.active { text-decoration: none; }
	
	.accordion-item-toggle.active,
	.toggle-item-toggle.active { border-bottom: none; }
	
	.accordion-item-content,
	.toggle-item-content { 
		display: none; 
		padding: 15px 20px 15px 45px; 
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after,
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

/* ==========================================================================
   #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: #48719B;
		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; }
   
/* ==========================================================================
   #Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1000;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #92b648;
		color: #fafafa;
		font-size: 30px;
		text-align: center;					
		opacity: 0.7;
		cursor: pointer;
		border-radius: 3px;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 37px;
		line-height: 37px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	/*#back-to-top:hover {
		background-color: rgba(0, 0, 0, 0.7);
	}*/
	#back-to-top:hover {
    	background-color: #92b648;
    	opacity: 1;
	}
	
	#back-to-top:hover i {
		color: #fff;
	}
	
	#back-to-top.visible {
		right: 40px;
	}
	
	#back-to-top.gone {
		right: -40px;
	}

/* ==========================================================================
   #Buttons
   ========================================================================== */

	.btn { 
		display: inline-block; 
		padding: 10px 25px; 
		border: 1px solid #cdcdcd;
		margin: 0 5px 20px 0;
		background-color: #fff;
		color: #818181;
		line-height: 18px; 
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	a.btn { color: #818181; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 17px 45px;
		font-size: 18px;
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 16px; 
		line-height: 16px; 
	}
	
	.btn:hover,
	.btn.active { 
		border-color: #48719B;
		background-color: #48719B;
		color: #fff;
	}
	
	/* Colors Button */
	
	.btn-blue {
		border-color: #48719B;
		background-color: #48719B;
		color: #fff;
	}
	
	a.btn-blue { color: #fff; }
	
	.btn-blue:hover {
		border-color: #0f5066;
		background-color: #0f5066;
	}
	
/* ==========================================================================
   #Callout Boxes
   ========================================================================== */

	.callout-box {
		padding: 30px 0;
		margin-bottom: 50px;
		background-color: #333;
	}
	
	.callout-box p { margin-bottom: 0; }
	
	/**
 	 * Callout box with one background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-img {
		background-repeat: no-repeat; /* 1 */ 
		background-position: center center;
		-webkit-background-size: cover;
				background-size: cover;
		color: #fff;
	}
	
	/**
 	 * Callout box with repeating background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-pattern {
		background: repeat top left; /* 1 */	
		color: #fff;
	}
	
	.callout-box.bordered {
		border: 1px solid #efefef;
		background-color: #f5f5f5;
	}
	
	/**
 	 * Callout box grid system
 	 *
	 * 1. overwriting inherited .row width to 100% in order to make it fluid
	 *
	 */
	
	.callout-box .row { 
		width: 100%; /* 1 */ 
	}
	
	.callout-box .span1,
	.callout-box .span2,
	.callout-box .span3,
	.callout-box .span4,
	.callout-box .span5,
	.callout-box .span6,
	.callout-box .span7,
	.callout-box .span8,
	.callout-box .span9,
	.callout-box .span10,
	.callout-box .span11,
	.callout-box .span12 {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
		margin: 0;	
	}
	
	.callout-box .span12 { width: 100%; }
	.callout-box .span11 { width: 91.6666666667%; }
	.callout-box .span10 { width: 83.3333333333%; }
	.callout-box  .span9 { width: 75%; }
	.callout-box  .span8 { width: 66.6666666667%; }
	.callout-box  .span7 { width: 58.3333333333%; }
	.callout-box  .span6 { width: 50%; }
	.callout-box  .span5 { width: 41.6666666667%; }
	.callout-box  .span4 { width: 33.3333333333%; }
	.callout-box  .span3 { width: 25%; }
	.callout-box  .span2 { width: 16.66666666666667%; }
	.callout-box  .span1 { width: 8.333333333333333%; }
  
	@media (max-width: 767px) {
	
		.callout-box .span1,
		.callout-box .span2,
		.callout-box .span3,
		.callout-box .span4,
		.callout-box .span5,
		.callout-box .span6,
		.callout-box .span7,
		.callout-box .span8,
		.callout-box .span9,
		.callout-box .span10,
		.callout-box .span11,
		.callout-box .span12 { width: 100%; }
	  
	}

/* ==========================================================================
   #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 */
	
	/**
 	 * FontAwesome lists
 	 *
	 * 1. Check list
	 * 2. Fill circle list
	 *
	 */
	 
	ul.check,									/* 1 */
	ul.fill-circle { list-style: none; }		/* 2 */

	ul.check li:before,
	ul.fill-circle li:before { 
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 10px;
		color: #48719B;
		font-family: 'FontAwesome';
		font-size: 14px;
		font-style: normal;
	}
	
	ul.fill-circle li:before {
		top: -2px;
		font-size: 8px; 
	}
	
	ul.check li:before { content: ""; }	
	ul.fill-circle li:before { content: ""; }
	
	ul.check li,
	ul.fill-circle li { margin-bottom: 10px; }
	
	ul.check li:last-child,
	ul.fill-circle li:last-child { margin-bottom: 0; }

/* ==========================================================================
   #Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 1px solid #e9e9e9; }
	
	.divider.double-line { border-top: 4px double #e9e9e9; }
	
	.divider.single-dotted {
		 height: 1px;
		 background: url(../../files/images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../../files/images/bg-double-dotted.gif) repeat-x top left; 
	}	

/* ==========================================================================
   #Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */
	 
   .fullwidth-section {
		overflow: hidden;
		position: relative;
		z-index: 0;	
		padding: 60px 0;
		margin: 50px 0;
		color: #fff;
		background-color: #48719B;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
	}

	.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: #48719B;
		opacity: 0.6;
	}
	
	.fullwidth-section-video {
		position: absolute;
		z-index: 1;
		top: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		/* if parallax then we don't want it to cover */
		-webkit-background-size: cover;
				background-size: cover;
		
	}
	
	
	.fit-vids-style { display:none; } /* ytplayer fix */
	
	.fullwidth-section .callout-box {
		padding: 0;
		margin-bottom: 0;
		background-color: transparent;
	}
	
	.fullwidth-section .callout-box .btn { margin-top: 40px; }
	
	/* Overwite element color in fullwidth-section */
	
	.fullwidth-section .btn { color: #48719B; }
	
	.fullwidth-section a,
	.fullwidth-section ul.check li:before,
	.fullwidth-section ul.fill-circle li:before,
	.fullwidth-section .btn:hover,
	.fullwidth-section .btn-blue { color: #fff; }
	
	.fullwidth-section .accordion-item-toggle,
	.fullwidth-section .toggle-item-toggle,
	.fullwidth-section .btn { border-color: #fff; }
	
	.fullwidth-section .process-builder li i,
	.fullwidth-section .process-builder li h1 { outline: none; }
	
	.fullwidth-section .headline:before {
		left: 0;
		width: 40%;
		border-color: #fff;
	}
	
	.fullwidth-section .headline:after {
		right: 0;
		left: auto;
		width: 40%;
		border-color: #fff;
	}
	
	.fullwidth-section .headline h1 { background-color: transparent; }
	
	/* Full width section backgrounds */
	
	#bg-1 {
		padding: 100px 0 80px 0;
		border-top: 1px solid #e9e9e9;
		margin-bottom: 0;
		background-color: #f0f0f0;
		color: #818181; 
	}
	
	#bg-1 .btn {
		border-color: #818181;
		background-color: transparent;
		color: #818181;
	}
	
	#bg-1 .btn:hover { background-color: #fff; }
	
	#bg-2 {
		padding-bottom: 0; 
		margin-top: 0;
		background-image: url(../../_content/backgrounds/1920x1200-1.jpg);
	}
	
	#bg-3 {
		margin-top: 0;
		background-image: url(../../_content/backgrounds/1920x1000-1.jpg);
	}
	
	#bg-3 h1 { font-size: 58px; }
	#bg-3 h1 small { font-size: 34px; }
	
	#bg-3 i {
		margin-right: 50px;
		font-size: 75px;
		line-height: 75px;
	}
	
	#bg-3 i:last-child { margin-right: 0; }
	
	#bg-3 i:hover { color: #48719B; }
	
	#bg-4 {
		padding: 30px 0; 
		margin-bottom: 0;
		background-color: #d1eaf4;
		color: #818181;
	}
	
	#bg-4 a { color: #818181; }
	
	#bg-5 {
		padding: 120px 0;
		margin-top: 100px; 
		background: url(../../_content/backgrounds/1920x1000-2.jpg); 
	}
	
	#bg-6 {
		padding-top: 90px;
		padding-bottom: 0;
		margin-top: 100px;
		margin-bottom: -60px;
		background-color: #d5d5d5;
	}
	
	#bg-7 {
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		margin-top: 80px;
		background-color: #e9e9e9;
		color: #818181;
	}
	
	#bg-8 {
		padding: 25px 0;
		margin-top: 0;
		margin-bottom: 90px;
	}
	
	#bg-9 {
		overflow: visible;
		padding-bottom: 0;
		margin: 70px 0 100px 0;
	}
	
	#bg-9 img {
		display: block;
		margin: -170px auto -50px auto;
	}
	
	#bg-10 {
		padding: 150px 0 100px 0;
		margin-bottom: 0;
		background-image: url(../../_content/backgrounds/1920x1200-2.jpg);
	}
	
	#bg-11 {
		margin-top: 0;
		margin-bottom: 100px;
		background-color: #d6eef7;
		color: #0f5066;
	}
	
	#bg-12 {
		margin-bottom: 100px;
		background-image: url(../../_content/backgrounds/1920x1000-3.jpg);
	}
	
	#bg-13 {
		padding: 100px 0 40px 0;
		background-image: url(../../_content/backgrounds/1920x1200-3.jpg);
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.fullwidth-section .headline:before,
		.fullwidth-section .headline:after { width: 35%; }
		
		#bg-9 img { margin-top: -120px; }
		
	}
	
	@media (max-width: 767px) {
				
		.fullwidth-section .headline:before,
		.fullwidth-section .headline:after { content: none; }
		
		#bg-3 h1 { font-size: 34px; }
		
		#bg-3 i {
			display: block;
			margin-right: 0;
			margin-bottom: 30px;
		}
		
		#bg-3 i:last-child { margin-bottom: 0; }
		
		#bg-9 img { 
			margin-top: 40px;
			margin-bottom: 0;
		}
		
	}
   
/* ==========================================================================
   #Google Maps
   ========================================================================== */

	.map {
		position: relative;		
		margin: 50px 0;  
	}
	
	.google-map { 
		width: 100%; 
		height: 560px;	
		border: 1px solid #cdcdcd;	
	}	
	
	.contact {
		position: absolute;
		top: 50px;
		left: 150px;
		padding: 40px 150px 20px 50px;
		border: 1px solid #cdcdcd;
		background-color: #fff;
	}
	
	.contact:before {
		position: absolute;
		z-index: 2;
		bottom: -35px;
		left: 50%;
		width: 0; 
		height: 0; 
		border-left: 20px solid transparent; 
		border-right: 20px solid transparent; 
		border-top: 35px solid #fff;
		margin-left: -10px;
		content: "";
	}
	
	.contact:after {
		position: absolute;
		z-index: 1;
		bottom: -36px;
		left: 50%;
		width: 0; 
		height: 0; 
		border-left: 18px solid transparent; 
		border-right: 18px solid transparent; 
		border-top: 35px solid #cdcdcd;
		margin-left: -9px;
		content: "";
	}
	
	@media (max-width: 767px) {
		
		.contact {
			position: relative;
			top: 0;
			left: 0;
			padding: 30px 15px 10px 15px;
			border: none;
		}
		
		.contact:before,
		.contact:after { display: none; }
		
	}

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

	.headline {
		position: relative;
		margin: 50px 0 100px 0;
		text-align: center;		
	}
	
	.headline:before,
	.headline:after {
		position: absolute;
		z-index: 1;
		top: 19px;
		left: 0;
		right: 0;
		height: 10px;
		/*border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;*/
		content: "";
	}
	
	.headline h1 {
		position: relative;
		z-index: 2;
		display: inline-block;
		padding: 0 25px;
		margin-bottom: 0;
		background-color: #fff;
	}
	
	.title {
		font-size: 50px;
		line-height: 50px;
	}
	
	.title-error {
		color: #48719B;
		font-size: 172px;
		line-height: 200px;
		font-weight: 700;
	}
	
	@media (max-width: 767px) {
	
		.headline { margin-bottom: 50px; }
	
	}

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */

.iconboxen_left {
	background: #f4f4f4;
	background: #92B648;
}


/* Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin: 50px 0; 
	}
	.icon-box-1 p { 
		color: #fff;
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;  
		font-size: 48px; 
		line-height: 68px;
		color: #48719B;	
		color: #fff;	
	} 
	
	.icon-box-1 h3 { margin-bottom: 15px; color: #818181; color: #fff; line-height: 1.3em; }
	
	.icon-box-1 .icon-box-content { margin-left: 70px; border-bottom: 1px solid #fff; }

	.iconboxen_left.aufweiss .icon-box-1 .icon-box-content { margin-left: 70px; border-bottom: 1px solid #616161; }
	.iconboxen_left.aufweiss .icon-box-1 p,
	.iconboxen_left.aufweiss .icon-box-1 h3 { color: #616161; }

	.iconboxen_left.aufweiss .icon-box-1 > i { color: #92b648; }


/* Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin: 50px 0;
		text-align: center;		
	}
		
	.icon-box-2 > i { 
		display: block;
		margin-bottom: 15px; 
		font-size: 48px;
		color: #48719B;
	}
	
	.icon-box-2 > img {
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.icon-box-2 h3 { 
		margin-bottom: 20px;
		line-height: 24px;
	}
	
	.icon-box-2 h3 small {
		font-size: 14px;
		color: #48719B;	
	}
	
	.icon-box-2 .icon-box-content {}
	
/* Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { position: relative; }
		
	.icon-box-3 > i { 
		float: left;
		display: block;  
		font-size: 75px; 
		line-height: 75px;	
	} 
	
	.icon-box-3 .icon-box-content { margin-left: 105px; }
	.icon-box-3 .icon-box-content h4 { padding-top: 7px; }
	
	@media (max-width: 767px) {
		
		
		.icon-box-3 > i { margin-right: 20px; }
		.icon-box-3 .icon-box-content { margin-left: 0; }
		
	}
	

.iconboxen_left.aufweiss { background: #fff; }

/* ==========================================================================
   #Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 50px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 20;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		color: #222222;
		font-size: 48px;
		line-height: 48px;
		font-weight: 600;
	}
	
	.milestone .milestone-description {
		margin-top: 35px;
		color: #48719B;
		font-size: 18px; 
		line-height: 24px;
	}

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

	.process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.process-builder:before {
		position: absolute;
		z-index: 1;
		top: 70px;
		left: 130px;
		display: block;
		width: 75%;
		border-top: 1px solid #cdcdcd;
		content: "";
	}
	
	.process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.process-builder li i,
	.process-builder li h1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 140px; 
		height: 140px;
		overflow: hidden;  
		border: 1px solid #d7d7d7;
		border-radius: 50%;
		outline: 10px solid #fff;
		margin: 0 auto 20px;
		background-color: #fff;
		font-size: 48px; 
		line-height: 140px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.process-description {
		padding: 0 20px;
		text-align: left; 
	}
	
	.process-description h2 { line-height: 24px; }
	.process-description small { font-size: 14px; }
	
	.process-builder li:hover i,
	.process-builder li:hover h1 {
		background-color: #48719B;
		color: #fff;
	}
	
	/* Number of Items */
	
	.process-builder.three-items li { width: 33.3333333333%; }
	.process-builder.four-items li { width: 25%; }
	.process-builder.five-items li { width: 20%; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.process-builder:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1400px) {
		
		.process-description { padding: 0 50px; }
		
	}
	
	@media (max-width: 767px) {
		
		.process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.process-builder:before { content: none; }
		
		.process-builder.three-items li { width: 100%; }
		.process-builder.four-items li { width: 100%; }
		.process-builder.five-items li { width: 100%; }
		
		.process-description { text-align: center; }
		
	}

/* ==========================================================================
   #Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto;
		padding: 30px 0;
		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: -10px;
		left: 0;
		display: block;
		width: 100%;
		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-size: 48px;
		font-weight: 600;
	}
	
	.pie-chart-description {
		position: absolute;
		top: 30px;
		left: 0;
		display: block;
		width: 100%;
		font-size: 18px;
		font-weight: 600;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.pie-chart .pie-chart-percent { font-size: 38px; }
		.pie-chart-description { top: 20px; }
		
	}

/* ==========================================================================
   #Pricing Tables
   ========================================================================== */

	.pricing-table {
		padding: 0 20px;
		border: 1px solid #cdcdcd;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: background-color 0.3s ease 0s;
				transition: background-color 0.3s ease 0s;
	}
	
	.pricing-table .btn { margin-bottom: -20px; }

	.pricing-table-header {
		padding: 20px 0;	
		margin: 0 -20px 45px -20px;
		background-color: #48719B;
		color: #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.pricing-table-header h1,
	.pricing-table-header h3 { margin-bottom: 0; }
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul {
		margin-bottom: 30px;
		list-style: none; 
	}
	
	.pricing-table-offer ul li { margin-bottom: 20px; }
	.pricing-table-offer ul li:last-child { margin-bottom: 0; }
	
	.pricing-table:hover .pricing-table-header { background-color: #0f5066; }

/* ==========================================================================
   #ProgressBars
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 15px;
		line-height: 14px;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 20px;
		margin-bottom: 15px;
		background-color: #cdcdcd;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #48719B;
	}
	
	.progress-bar.alt .progress-bar-outer {
		right: 0;
		left: auto;
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		display: block;
		overflow: hidden;
		height: 100%;
		width: 100%;
	}
	
	@media (max-width: 767px) {
	
		.progress-bar.alt .progress-bar-outer { 
			right: auto; 
			left: 0;
		}
		
	}

/* ==========================================================================
   #SocialMedia
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		margin-right: 10px;
		margin-bottom: 1px;
		color: #48719B;
		text-align: center;
	}

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

	a.social-icon i {
		font-size: 18px;
		line-height: 30px;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0f5066 !important; }
	a.dribble-icon:hover { color: #ea73a0 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.googleplus-icon:hover { color: #282927 !important; }
	a.tumblr-icon:hover { color: #586980 !important; }
	a.instagram-icon:hover { color: #82685a !important; }
	a.rss-icon:hover { color: #f79638 !important; }
	a.linkedin-icon:hover { color: #018faf !important; }
	a.skype-icon:hover { color: #00b0f6 !important; }
	a.flickr-icon:hover { color: #0061db !important; }
	a.vimeo-icon:hover { color: #63879c !important; }
	a.github-icon:hover { color: #3b3b3b !important; }
	a.youtube-icon:hover { color: #cc181e !important; }
	a.windows-icon:hover { color: #6dc2e9 !important; }
	a.dropbox-icon:hover { color: #007ee5 !important; }
	a.xing-icon:hover { color: #026566 !important; }	
	a.adn-icon:hover { color: #1ea076 !important; }
	a.android-icon:hover { color: #98cb02 !important; }
	a.apple-icon:hover { color: #000000 !important; }
	a.behance-icon:hover { color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { color: #214f81 !important; }
	a.bitcoin-icon:hover { color: #f7931b !important; }
	a.codepan-icon:hover { color: #000000 !important; }
	a.css3-icon:hover { color: #3289ce !important; }
	a.delicious-icon:hover { color: #3399fe !important; }
	a.deviantart-icon:hover { color: #c8da30 !important; }
	a.digg-icon:hover { color: #0080c2 !important; }
	a.drupal-icon:hover { color: #0077b9 !important; }
	a.empire-icon:hover { color: #000000 !important; }
	a.foursquare-icon:hover { color: #daecb0 !important; }
	a.git-icon:hover { color: #f34f29 !important; }
	a.gitti-icon:hover { color: #634c3e !important; }
	a.hacker-news-icon:hover { color: #f18642 !important; }
	a.html5-icon:hover { color: #e54c1f !important; }
	a.joomla-icon:hover { color: #016fb9 !important; }
	a.jsfiddle-icon:hover { color: #4679a4 !important; }
	a.linux-icon:hover { color: #fece0e !important; }
	a.maxcdn-icon:hover { color: #f36f20 !important; }
	a.openid-icon:hover { color: #fe6101 !important; }
	a.pagelines-icon:hover { color: #3783e3 !important; }
	a.pied-piper-icon:hover { color: #0c7b48 !important; }
	a.qq-icon:hover { color: #23286c !important; }
	a.rebel-icon:hover { color: #000000 !important; }
	a.reddit-icon:hover { color: #cee3f8 !important; }
	a.renren-icon:hover { color: #0d81e4 !important; }
	a.share-icon:hover { color: #252525 !important; }
	a.slack-icon:hover { color: #453744 !important; }
	a.soundcloud-icon:hover { color: #fe4e00 !important; }
	a.spotify-icon:hover { color: #80bb41 !important; }
	a.stack-exchange-icon:hover { color: #265a93 !important; }
	a.stackoverflow-icon:hover { color: #fea501 !important; }
	a.steam-icon:hover { color: #191919 !important; }
	a.stumbleupon-icon:hover { color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { color: #0063a7 !important; }
	a.trello-icon:hover { color: #226784 !important; }
	a.vine-icon:hover { color: #00b081 !important; }
	a.vk-icon:hover { color: #50769d !important; }
	a.wechat-icon:hover { color: #a4dc31 !important; }
	a.weibo-icon:hover { color: #d82828 !important; }
	a.wordpress-icon:hover { color: #454442 !important; }
	a.yahoo-icon:hover { color: #4b04a8 !important; }

/* ==========================================================================
   #Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 1px solid #cdcdcd; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 1px solid #cdcdcd; }
	
	.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; }	

	@media (max-width: 768px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { 
			display: block;
		}
		
		/**
		 * Hide table headers
		 */
	
		.hdnkalender thead tr:nth-child(n+2) { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.hdnkalender thead .previous, 
		.hdnkalender thead .next {
			width: 30px;
		    display: inline-block;
		    /* vertical-align: middle; */
		    /* float: left; */
		    height: 32px;
		}
		
		.minicalendar thead .next,
		.minicalendar thead .previous {
			width: 24px;
		    display: inline-block;
		    /* vertical-align: middle; */
		    /* float: left; */
		    height: 32px;
		}
		
		table.hdnkalender thead .current{
			width: auto;
		    display: inline-block;
		    vertical-align: middle;
		    min-width: 75%;
		    height: 32px;
		}
		
		table.minicalendar thead .current {
			width: auto;
		    display: inline-block;
		    vertical-align: middle;
		    min-width: 75%;
		}
		
		.table-bordered { border-top: none; }
		tr { border-top: 1px solid #555; }
		
		td:first-child { border-top: none !important; }
	  
	}
	
	@media (max-width: 562px) {
		table.hdnkalender thead .current, table.minicalendar thead .current {
			width: auto;
		    min-width: 70%;
		}
		
		.hdnkalender thead .previous, .hdnkalender thead .next,
		.minicalendar thead .previous, .minicalendar thead .next {
			width: 15px;
		}
	}
	
	@media (max-width: 450px) {
		table.hdnkalender thead .current {
			font-size: 1.2em !important;
		}
		
		table.minicalendar thead .current {
			font-size: 1em !important;
		}
		
		table.hdnkalender thead .current,
		table.minicalendar thead .current {
			width: auto;
			height: 32px;
		    min-width: 65%;
		}
	}

/* ==========================================================================
   #Tabs
   ========================================================================== */

	/* Horizontal tabs */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.tabs-container .tabs-menu { 
		border-bottom: 1px solid #48719b;
		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: 10px 25px; 
		border-right: 1px solid #48719b;		
		border-top: 1px solid #48719b;		
		border-bottom: 1px solid #48719b;		
		margin-bottom: -1px; 
		background-color: #fff;
		color: #818181;
		font-size: 16px;
		text-decoration: none;
	}
	.tabs-container .tabs-menu li.first a { 
		border-left: 1px solid #48719b;		
	}
	
	.tabs-container .tabs-menu li:first-child a { 		border-left: 1px solid #48719b;		 }
	
	.tabs-container .tabs-menu li.active a,
	.tabs-container .tabs-menu li a:hover { background-color: #48719b; color: #fff; }
	
	.tabs-container .tabs {
		border: 1px solid #48719b; 
		border-top: none;   
		margin-bottom: 30px;
	}
	
	.tabs-container .tab-content { padding: 20px; }

.tabcontentleft {
    display: block;
    float: left;
    text-align: left;
    width: 50%;
}
.tabcontentright {
    display: block;
    float: left;
    text-align: right;
    width: 50%;
}
.tabcontentleft .inside {
    padding-right: 10px;
}
.tabcontentright .inside {
    padding-left: 10px;
}

	
	/* Vertical tabs */
	
	.vertical-tabs-container { 
		position: relative;
		margin-bottom: 30px;
	}
	
	.vertical-tabs-container .tabs-menu { 
		float: left;
		width: 124px;
		border-right: 1px solid #cdcdcd;
		margin-bottom: 0;
		list-style: none;
	}
	
	.vertical-tabs-container .tabs-menu li a { 
		display: block;
		padding: 10px 15px; 	
		border-bottom: 1px solid #fff;
		margin-right: -2px;
		background-color: #0f5066;
		color: #fff;
		font-size: 16px;
		text-decoration: none;
	}
	
	.vertical-tabs-container .tabs-menu li:last-child a { border-bottom: none; }
	
	.vertical-tabs-container .tabs-menu li.active a,
	.vertical-tabs-container .tabs-menu li a:hover {
		border-right-color: #fff;
		background-color: #48719B;
	}
	
	.vertical-tabs-container .tabs {
		margin-left: 125px;	
	}
	
	.vertical-tabs-container .tab-content { 
		padding: 40px 20px 20px 40px;
		border: 1px solid #cdcdcd;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.tabs-container .tabs-menu li a { padding: 10px 15px; }
		
	}
	
	@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 #cdcdcd;
			border-top: none;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li:first-child a { border: 1px solid #cdcdcd; }
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li:first-child a { border-top: 1px solid #e7e7e7; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			margin: 0px;
			background-color: #48719B;
		}
		
		.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;
			border-right: none;
			margin-right: 0;
		}

		.vertical-tabs-container .tabs-menu li.active a { border-bottom-color: #333; }		
	  
	}
	
/* ==========================================================================
   #Testimonials
   ========================================================================== */

	.testimonial { margin-bottom: 30px; }
	.testimonial h3 { margin-bottom: 0; }
	
	.testimonial blockquote { 
		position: relative; 
		margin-bottom: 20px;  
	}
	
	.testimonial blockquote p { font-style: normal; }

	.testimonial img { 
		float: left;
		max-width: 100%; 
		-webkit-border-radius: 50%;
				border-radius: 50%;
		margin-right: 30px;  
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.testimonial:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.testimonial img { 
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.testimonial img { 
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
	}
	
/* ==========================================================================
   #Timeline
   ========================================================================== */

	.timeline {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.timeline li {}
	
	.timeline h3 { margin-bottom: 0; }
	
	.left-side,
	.right-side {
		float: left;  
		width: 420px; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
				box-sizing: border-box; 
		padding: 0 20px 20px 20px; 
	}
	
	.left-side { text-align: right; }
	.right-side { text-align: left; }
	
	.separator {
		position: relative; 
		float: left;
		width: 80px;  
		margin-bottom: -15px;
	}
	
	.separator:before {
		position: absolute;
		top: 0;
		left: 50%;
		height: 100%;
		border-left: 2px solid #48719B;
		content: "";
	}
	
	.separator:after {
		position: absolute;
		top: 30%;
		left: 50%;
		width: 18px;
		height: 18px;
		border: 1px solid #48719B;
		border-radius: 50%;
		margin-left: -9px;
		background-color: #48719B;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.timeline li:hover .separator:after { background-color: #fff; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.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: 535px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.left-side,
		.right-side { width: 345px; }
		
		.separator { width: 15px; }
		
	}
	
	@media (max-width: 767px) {
		
		.timeline li { 
			padding: 40px 0 20px 0; 
			border-bottom: 1px solid #48719B; 
		}
		
		.timeline li:last-child { border-bottom: none; }
			
		.left-side,
		.right-side { 
			width: 100%;
			text-align: left;
		}
		
		.separator { display: none; }
		
	}

/* ==========================================================================
   #WordPress Widgets
   ========================================================================== */
	
	/* WordPress Widget Defaults */
	
	.widget { margin-bottom: 100px; }
	
	#header-top .widget:last-child{ margin-bottom:0; }
	#footer .widget:last-child{ margin-bottom:0; }
	#footer-bottom .widget:last-child{ margin-bottom:0; }
	
	.widget-title {
		position: relative;
		margin-bottom: 20px;
		line-height: 18px;  
		font-weight: 600;
	}
	
	.widget-title span {
		position: relative;
		z-index: 2;
		padding-right: 15px;
		background-color: #fff;
	}
	
	.widget-title:before {
		position: absolute;
		z-index: 1;
		top: 4px;
		right: 0;
		left: 0;
		height: 10px;
		/*border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;*/
		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;
		height: 38px;
		padding: 6px 15px;
		border: none;
		background: url(../../files/images/bg-search.png) no-repeat center center;
	}

	/* Recent Entries Widget */
	
	.widget_recent_entries {}
	
	.widget_recent_entries ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_recent_entries ul li { margin-bottom: 20px; }
	.widget_recent_entries ul li:last-child { margin-bottom: 0; }
	
	.widget_recent_entries ul li a { color: #818181; }
	
	.widget_recent_entries ul li img { 
		float: left;
		margin: 5px 10px 0 0;
	}
	
	.widget_recent_entries ul li .post-author { 
		display: block;
		color: #48719B;
	}
	
	/*
	 * 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: 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 ul li a { color: #818181; }
	.widget_pages ul li a:hover { color: #48719B; }
	
	/* Archive Widget */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_archive ul li {} 
	
	.widget_archive ul li  a { color: #818181; }
	.widget_archive ul li a:hover { color: #48719B; }
	
	.widget_archive select {}
	
	.widget_archive option {}	
	
	/* Categories Widget */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_categories ul li {} 
	
	.widget_categories ul ul.children {}
	
	.widget_categories ul li a { color: #818181; }
	.widget_categories ul li a:hover { color: #48719B; }
	
	.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 ul li a { color: #818181; }
	.widget_meta ul li a:hover { color: #48719B; }
	
	/* Recent Comments Widget */
	
	.widget_recent_comments {}
	
	#recentcomments {
		margin-bottom: 0;
		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: 1px solid #cdcdcd;
		margin: 0 2px 5px 0;
		color: #818181;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover {
		border-color: #48719B;
		background-color: #48719B;
		color: #fff;
	}
	
	.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 {}
	
	/* Custom Menu Widget */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu .menu {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_nav_menu .menu li a { color: #818181; }
	.widget_nav_menu .menu li a:hover { color: #48719B; }
	
	/* RSS Widget */
	
	.widget_rss {}
	
	.widget_rss ul {
		margin-bottom: 0;
		list-style: none;
	}
	
/* Custom - Twitter Widget */
	
	.ewf_widget_twitter {}
	
	#tweet .tweet { word-wrap: break-word; }
	
	#tweet ul { list-style: none; }
	
	#tweet .interact { text-align: center; }
	#tweet .interact a { margin-right: 10px; }
	#tweet .interact a:last-child { margin-right: 0; }
	
/* Custom - EWF Flickr Widget */
	
	.ewf_widget_flickr {}
	
	.flickr-feed {}
	
	.flickr-feed .flickr_badge_image { display: inline; }
	
	.flickr-feed img { 
		width: 75px; 
		height: auto;
		border: none;
		padding: 0 10px 5px 0; 
	}
	
	@media (min-width: 1400px) {
		
		.flickr-feed img {  }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.flickr-feed img { width: 70px; }
		
	}
	
/* Custom - 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 { color: #818181; }
	
/* Custom - Newsletter Subscribe Widget */

	.ewf_widget_newsletter {}
	
	#newsletter-subscribe-form { position: relative; }
	
	#newsletter-subscribe-form input[type="text"] { width: 100%; }
	
	#newsletter-subscribe-form input[type="submit"] {
		padding: 11px 25px;
		margin: 0;
	}
	
/* Custom - Navigation Widget */
	
	.ewf_widget_navigation {}
	
	.ewf_widget_navigation ul {  
		margin-bottom: 30px; 
		list-style-type: none; 
		list-style-position: outside; 
	}
	
	.ewf_widget_navigation li { border-bottom: 1px solid #d7d7d7; }
	
	.ewf_widget_navigation li:last-child { border-bottom: none; }
	
	.ewf_widget_navigation li a { 
		display: block; 
		padding: 10px 0; 
		color: #818181;
	}
	
	.ewf_widget_navigation li a:hover {
		color: #48719B; 
		text-decoration: none; 
	}

/* Custom - Social Media Widget */
	
	.ewf_widget_social_media {}
	
	.ewf_widget_social_media a.social-icon {
		width: 37px;
		height: 37px;
		border-radius: 50%;
		background-color: #e9e9e9;
		color: #48719B;
	}
	
	.ewf_widget_social_media a.social-icon i {
		font-size: 22px;
		line-height: 37px; 
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.ewf_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	

/* ==========================================================================
   #WordPress Comments
   ========================================================================== */
   
	.comments-title { 
		position: relative;
		font-weight: 600;
	}
	
	.comments-title:before {
		position: absolute;
		top: 10px;
		left: 110px;
		right: 0;
		height: 7px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}
	
	.comment-body { margin-bottom: 40px; }
	
	.comment-reply-title {}
	
	.commentlist .reply { text-align: right; }
	.commentlist .reply a {}
	
	.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;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 10px solid #48719B;
		border-radius: 50%;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard cite.fn a.url { 
		margin-left: 30px;
		color: #818181;
		font-weight: 600;
	}
	
	.commentlist .comment-meta { margin: 0 0 10px 110px; } 
	.commentlist .comment-meta a { color: #818181; }
	.commentlist .commentmetadata {}
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	.commentlist .comment {}
	.commentlist .children {}
	.commentlist .pingback {}
	.commentlist .bypostauthor {}
	.commentlist .comment-author {}
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin: 100px 0 50px 0;
		list-style: none; 
	}
	
	.commentlist li {}
	.commentlist li p { margin-left: 110px; }
	
	.commentlist li ul {
		margin-left: 0;
		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 .comment-meta,
		.commentlist .vcard cite.fn a.url { margin-left: 0; }
		
		.commentlist .vcard img.photo { 
			float: none;
			margin-bottom: 15px;
		}
		
		.commentlist .reply { text-align: left; }
		
	}
	
/* ==========================================================================
   #WordPress Comment Form
   ========================================================================== */	
   
	/* Blog Post Comment Form */

	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }
	
	.nav-previous,
	.nav-next { display: none; }
	
	.section-heading { 
		position: relative;
		font-weight: 600;
	}
	
	.section-heading:before {
		position: absolute;
		top: 10px;
		left: 170px;
		right: 0;
		height: 7px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}

	/* Comment Form */

	#commentform { margin: 50px 0; }
	
	/* Comment notes */
	
	.comment-notes { display: none; }
	
	/* Comment author field. */
	
	.comment-form-author { }
	
	.comment-form-author label { display: none; }
	
	.comment-form-author input#author { }

	/* Comment email field. */
	
	.comment-form-email { }
	
	.comment-form-email label { display: none; }
	
	.comment-form-email input#email { }

	/* Comment URL field. */
	
	.comment-form-url { }
	
	.comment-form-url label { display: none; }
	
	.comment-form-url input#url { }

	/* Required (*) text. */
	
	#commentform .required { }

	/* Comment form comment. */
	
	.comment-form-comment { }
	
	.comment-form-comment label { display: none; }
	
	.comment-form-comment textarea#comment { }

	/* Allowed tags paragraph. */
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code { }

	/* Paragraph that wraps the submit button and hidden comment ID fields. */
	
	.form-submit { text-align: right; }

	/* Submit button. */
	
	#commentform #submit { margin-right: 0; }  
	


/****responsive IMG*/

	@media (max-width: 1440px) {
		img {
			max-width: 100%;
			height: auto;
		}
}
/**
 * Name: grid.css
 *
 *	T.O.C
 *	
 *	#Base Grid
 *  #Large Display
 *	#Tablet (Portrait)
 *  #Mobile (Portrait and landscape)
 *  #Align
 *	#Responsive Images and embeds
 *	#Clearing
 *  #ResponsiveFormInputs
 */
 

/* ==========================================================================
   #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 )
   ========================================================================== */

	@media (max-width: 767px) {
		
		.row { width: auto; }
		
		.span4 > .block {
			 padding: 0 40px;
		}
		
		.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; }
		
	}
	
/* ==========================================================================
   #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 */
	}
@charset "UTF-8";
/*
 * Main Stylesheet
 *
 * @copyright Copyright (c) 2012 rocksolidthemes.com
 * @license   https://rocksolidthemes.com/agb   No free usage allowed
 */
/* ===========================================
 * # Index: The structure of this stylesheet
 *
 * - Imports (Sass only)
 * - Fonts
 * - Basic settings (Sass only)
 * - Colors (Sass only)
 * - General styles
 * - Button styles
 * - Wrapper Elements
 * - Elements in order of appearance in HTML
 * - Content styles
 * - Sidebar styles
 * - Form styles
 * - Content elements
 * - Footer styles
 * - Module styles (Search, FAQ, News, Events, Comments)
 * - Media queries
 * - Grid (design + production helper)
 * ======================================== */
/* ===========================================
 * Fonts
 * ======================================== */
@font-face {
	font-family: "RockSolid Icons";
	src: url("../../files/fonts/rocksolid-icons.eot");
	src: url("../../files/fonts/rocksolid-icons.eot?#iefix") format('eot'), url("../../files/fonts/rocksolid-icons.woff") format('woff'), url("../../files/fonts/rocksolid-icons.ttf") format('truetype'), url("../../files/fonts/rocksolid-icons.svg") format('svg');
	font-weight: normal;
	font-style: normal;
}

/* ===========================================
 * General styles
 * ======================================== */
html {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: #1fa5d1;
}

body {
	font: 15px/1.6 "Open Sans", sans-serif;
	color: #1e2022;
	background: #ffffff none 50% 0 no-repeat scroll;
	background-size: auto;
}
@media screen and (max-width: 599px) {
	body {
		font-size: 13px;
	}
}
body.background-variation-1 {
	background: url("../../files/img/pattern.png");
}
body.background-variation-1 .page {
	background: #ffffff;
}
body.background-variation-1 .page-footer {
	background: url("../../files/img/pattern.png");
}
body.background-variation-1 .page-footer-inner {
	background: #44464b;
}

* {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

.rs-columns {
	clear: both;
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.rs-column {
	float: left;
	width: 100%;
	margin-top: 7.69231%;
	margin-right: 7.69231%;
}
.rs-column.-large-first {
	clear: left;
}
.rs-column.-large-last {
	margin-right: -5px;
}
.rs-column.-large-first-row {
	margin-top: 0;
}
.rs-column.-large-col-1-1 {
	width: 100%;
}
.rs-column.-large-col-2-1 {
	width: 46.15385%;
}
.rs-column.-large-col-2-2 {
	width: 100%;
}
.rs-column.-large-col-3-1 {
	width: 28.20513%;
}
.rs-column.-large-col-3-2 {
	width: 64.10256%;
}
.rs-column.-large-col-3-3 {
	width: 100%;
}
.rs-column.-large-col-4-1 {
	width: 19.23077%;
}
.rs-column.-large-col-4-2 {
	width: 46.15385%;
}
.rs-column.-large-col-4-3 {
	width: 73.07692%;
}
.rs-column.-large-col-4-4 {
	width: 100%;
}
.rs-column.-large-col-5-1 {
	width: 13.84615%;
}
.rs-column.-large-col-5-2 {
	width: 35.38462%;
}
.rs-column.-large-col-5-3 {
	width: 56.92308%;
}
.rs-column.-large-col-5-4 {
	width: 78.46154%;
}
.rs-column.-large-col-5-5 {
	width: 100%;
}
.rs-column.-large-col-6-1 {
	width: 10.25641%;
}
.rs-column.-large-col-6-2 {
	width: 28.20513%;
}
.rs-column.-large-col-6-3 {
	width: 46.15385%;
}
.rs-column.-large-col-6-4 {
	width: 64.10256%;
}
.rs-column.-large-col-6-5 {
	width: 82.05128%;
}
.rs-column.-large-col-6-6 {
	width: 100%;
}
.luxe-fullwidth .rs-column {
	margin-top: 4.34783%;
	margin-right: 4.34783%;
}
.luxe-fullwidth .rs-column.-large-last {
	margin-right: -5px;
}
.luxe-fullwidth .rs-column.-large-first-row {
	margin-top: 0;
}
.luxe-fullwidth .rs-column.-large-col-1-1 {
	width: 100%;
}
.luxe-fullwidth .rs-column.-large-col-2-1 {
	width: 47.82609%;
}
.luxe-fullwidth .rs-column.-large-col-2-2 {
	width: 100%;
}
.luxe-fullwidth .rs-column.-large-col-3-1 {
	width: 30.43478%;
}
.luxe-fullwidth .rs-column.-large-col-3-2 {
	width: 65.21739%;
}
.luxe-fullwidth .rs-column.-large-col-3-3 {
	width: 100%;
}
.luxe-fullwidth .rs-column.-large-col-4-1 {
	width: 21.73913%;
}
.luxe-fullwidth .rs-column.-large-col-4-2 {
	width: 47.82609%;
}
.luxe-fullwidth .rs-column.-large-col-4-3 {
	width: 73.91304%;
}
.luxe-fullwidth .rs-column.-large-col-4-4 {
	width: 100%;
}
.luxe-fullwidth .rs-column.-large-col-5-1 {
	width: 16.52174%;
}
.luxe-fullwidth .rs-column.-large-col-5-2 {
	width: 37.3913%;
}
.luxe-fullwidth .rs-column.-large-col-5-3 {
	width: 58.26087%;
}
.luxe-fullwidth .rs-column.-large-col-5-4 {
	width: 79.13043%;
}
.luxe-fullwidth .rs-column.-large-col-5-5 {
	width: 100.0%;
}
.luxe-fullwidth .rs-column.-large-col-6-1 {
	width: 13.04348%;
}
.luxe-fullwidth .rs-column.-large-col-6-2 {
	width: 30.43478%;
}
.luxe-fullwidth .rs-column.-large-col-6-3 {
	width: 47.82609%;
}
.luxe-fullwidth .rs-column.-large-col-6-4 {
	width: 65.21739%;
}
.luxe-fullwidth .rs-column.-large-col-6-5 {
	width: 82.6087%;
}
.luxe-fullwidth .rs-column.-large-col-6-6 {
	width: 100.0%;
}
@media screen and (max-width: 900px) {
	.rs-column,
	.luxe-fullwidth .rs-column {
		margin-top: 7.69231%;
		margin-right: 7.69231%;
	}
	.rs-column.-large-first,
	.luxe-fullwidth .rs-column.-large-first {
		clear: none;
	}
	.rs-column.-large-last,
	.luxe-fullwidth .rs-column.-large-last {
		margin-right: 7.69231%;
	}
	.rs-column.-large-first-row,
	.luxe-fullwidth .rs-column.-large-first-row {
		margin-top: 7.69231%;
	}
	.rs-column.-medium-first,
	.luxe-fullwidth .rs-column.-medium-first {
		clear: left;
	}
	.rs-column.-medium-last,
	.luxe-fullwidth .rs-column.-medium-last {
		margin-right: -5px;
	}
	.rs-column.-medium-first-row,
	.luxe-fullwidth .rs-column.-medium-first-row {
		margin-top: 0;
	}
	.rs-column.-medium-col-1-1,
	.luxe-fullwidth .rs-column.-medium-col-1-1 {
		width: 100%;
	}
	.rs-column.-medium-col-2-1,
	.luxe-fullwidth .rs-column.-medium-col-2-1 {
		width: 46.15385%;
	}
	.rs-column.-medium-col-2-2,
	.luxe-fullwidth .rs-column.-medium-col-2-2 {
		width: 100%;
	}
	.rs-column.-medium-col-3-1,
	.luxe-fullwidth .rs-column.-medium-col-3-1 {
		width: 28.20513%;
	}
	.rs-column.-medium-col-3-2,
	.luxe-fullwidth .rs-column.-medium-col-3-2 {
		width: 64.10256%;
	}
	.rs-column.-medium-col-3-3,
	.luxe-fullwidth .rs-column.-medium-col-3-3 {
		width: 100%;
	}
	.rs-column.-medium-col-4-1,
	.luxe-fullwidth .rs-column.-medium-col-4-1 {
		width: 19.23077%;
	}
	.rs-column.-medium-col-4-2,
	.luxe-fullwidth .rs-column.-medium-col-4-2 {
		width: 46.15385%;
	}
	.rs-column.-medium-col-4-3,
	.luxe-fullwidth .rs-column.-medium-col-4-3 {
		width: 73.07692%;
	}
	.rs-column.-medium-col-4-4,
	.luxe-fullwidth .rs-column.-medium-col-4-4 {
		width: 100%;
	}
	.rs-column.-medium-col-5-1,
	.luxe-fullwidth .rs-column.-medium-col-5-1 {
		width: 13.84615%;
	}
	.rs-column.-medium-col-5-2,
	.luxe-fullwidth .rs-column.-medium-col-5-2 {
		width: 35.38462%;
	}
	.rs-column.-medium-col-5-3,
	.luxe-fullwidth .rs-column.-medium-col-5-3 {
		width: 56.92308%;
	}
	.rs-column.-medium-col-5-4,
	.luxe-fullwidth .rs-column.-medium-col-5-4 {
		width: 78.46154%;
	}
	.rs-column.-medium-col-5-5,
	.luxe-fullwidth .rs-column.-medium-col-5-5 {
		width: 100%;
	}
	.rs-column.-medium-col-6-1,
	.luxe-fullwidth .rs-column.-medium-col-6-1 {
		width: 10.25641%;
	}
	.rs-column.-medium-col-6-2,
	.luxe-fullwidth .rs-column.-medium-col-6-2 {
		width: 28.20513%;
	}
	.rs-column.-medium-col-6-3,
	.luxe-fullwidth .rs-column.-medium-col-6-3 {
		width: 46.15385%;
	}
	.rs-column.-medium-col-6-4,
	.luxe-fullwidth .rs-column.-medium-col-6-4 {
		width: 64.10256%;
	}
	.rs-column.-medium-col-6-5,
	.luxe-fullwidth .rs-column.-medium-col-6-5 {
		width: 82.05128%;
	}
	.rs-column.-medium-col-6-6,
	.luxe-fullwidth .rs-column.-medium-col-6-6 {
		width: 100%;
	}
}
@media screen and (max-width: 599px) {
	.rs-column,
	.luxe-fullwidth .rs-column {
		margin-right: 7.69231%;
	}
	.rs-column.-medium-first,
	.luxe-fullwidth .rs-column.-medium-first {
		clear: none;
	}
	.rs-column.-medium-last,
	.luxe-fullwidth .rs-column.-medium-last {
		margin-right: 7.69231%;
	}
	.rs-column.-medium-first-row,
	.luxe-fullwidth .rs-column.-medium-first-row {
		margin-top: 7.69231%;
	}
	.rs-column.-small-first,
	.luxe-fullwidth .rs-column.-small-first {
		clear: left;
	}
	.rs-column.-small-last,
	.luxe-fullwidth .rs-column.-small-last {
		margin-right: -5px;
	}
	.rs-column.-small-first-row,
	.luxe-fullwidth .rs-column.-small-first-row {
		margin-top: 0;
	}
	.rs-column.-small-col-1-1,
	.luxe-fullwidth .rs-column.-small-col-1-1 {
		width: 100%;
	}
	.rs-column.-small-col-2-1,
	.luxe-fullwidth .rs-column.-small-col-2-1 {
		width: 46.15385%;
	}
	.rs-column.-small-col-2-2,
	.luxe-fullwidth .rs-column.-small-col-2-2 {
		width: 100%;
	}
	.rs-column.-small-col-3-1,
	.luxe-fullwidth .rs-column.-small-col-3-1 {
		width: 28.20513%;
	}
	.rs-column.-small-col-3-2,
	.luxe-fullwidth .rs-column.-small-col-3-2 {
		width: 64.10256%;
	}
	.rs-column.-small-col-3-3,
	.luxe-fullwidth .rs-column.-small-col-3-3 {
		width: 100%;
	}
	.rs-column.-small-col-4-1,
	.luxe-fullwidth .rs-column.-small-col-4-1 {
		width: 19.23077%;
	}
	.rs-column.-small-col-4-2,
	.luxe-fullwidth .rs-column.-small-col-4-2 {
		width: 46.15385%;
	}
	.rs-column.-small-col-4-3,
	.luxe-fullwidth .rs-column.-small-col-4-3 {
		width: 73.07692%;
	}
	.rs-column.-small-col-4-4,
	.luxe-fullwidth .rs-column.-small-col-4-4 {
		width: 100%;
	}
	.rs-column.-small-col-5-1,
	.luxe-fullwidth .rs-column.-small-col-5-1 {
		width: 13.84615%;
	}
	.rs-column.-small-col-5-2,
	.luxe-fullwidth .rs-column.-small-col-5-2 {
		width: 35.38462%;
	}
	.rs-column.-small-col-5-3,
	.luxe-fullwidth .rs-column.-small-col-5-3 {
		width: 56.92308%;
	}
	.rs-column.-small-col-5-4,
	.luxe-fullwidth .rs-column.-small-col-5-4 {
		width: 78.46154%;
	}
	.rs-column.-small-col-5-5,
	.luxe-fullwidth .rs-column.-small-col-5-5 {
		width: 100%;
	}
	.rs-column.-small-col-6-1,
	.luxe-fullwidth .rs-column.-small-col-6-1 {
		width: 10.25641%;
	}
	.rs-column.-small-col-6-2,
	.luxe-fullwidth .rs-column.-small-col-6-2 {
		width: 28.20513%;
	}
	.rs-column.-small-col-6-3,
	.luxe-fullwidth .rs-column.-small-col-6-3 {
		width: 46.15385%;
	}
	.rs-column.-small-col-6-4,
	.luxe-fullwidth .rs-column.-small-col-6-4 {
		width: 64.10256%;
	}
	.rs-column.-small-col-6-5,
	.luxe-fullwidth .rs-column.-small-col-6-5 {
		width: 82.05128%;
	}
	.rs-column.-small-col-6-6,
	.luxe-fullwidth .rs-column.-small-col-6-6 {
		width: 100%;
	}
}

/* Resetting box model for moo_mediabox,  moo_slimbox and j_colorbox */
#mbCenter,
#colorbox,
#lbCenter,
#lbBottomContainer {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

::selection {
	background: #1fa5d1;
	color: #ffffff;
	text-shadow: none !important;
}

::-moz-selection {
	background: #1fa5d1;
	color: #ffffff;
	text-shadow: none !important;
}

button,
input,
select,
textarea {
	outline: none;
	font-family: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
table th,
table td {
	border: 1px solid #e5e5e5;
}
table th {
	padding: 0.66667em 1em;
	font-weight: bold;
	text-align: left;
}
table td {
	padding: 0.76923em 1.15385em;
	font-size: 0.86667em;
	color: #5a5d63;
}
table thead tr {
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03));
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.03));
}
table tfoot tr {
	background-color: #f7f7f7;
}

a {
	color: #1fa5d1;
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}
a:hover,
a:active {
	outline: 0;
}
a.external-link:after {
	font: 0.86667em/1 "RockSolid Icons";
	content: "\e151";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-left: 0.26667em;
}

/* Icon attribute */
*[data-icon]:before {
	font: 100%/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.26667em;
}
*[data-icon].after:before {
	content: none;
}
*[data-icon].after:after {
	font: 100%/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-left: 0.26667em;
}

.clear {
	clear: both;
}

.invisible {
	position: absolute;
	height: 1px !important;
	width: 1px !important;
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0 !important;
	overflow: hidden;
	border: 0;
}

.pdf_link {
	margin: 0.8em 0 0 1.33333em;
	float: right;
}
.pdf_link a {
	margin-left: 0.13333em;
	border: 0 !important;
}
.pdf_link img {
	border: 0 !important;
}

.mime_icon {
	margin-bottom: -0.25em;
}

.ce_toplink,
.toplink {
	margin: 1.6em 0;
}
.ce_toplink a,
.toplink a {
	display: block;
	width: 100%;
}

.ce_toplink > a:before,
.toplink > a:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e00c";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.33333em;
}

.ce_accordion {
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
.ce_accordion .accordion {
	position: relative;
	overflow: hidden;
	padding: 1px 3.84615% 0.8em;
	-webkit-box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.12);
	box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.12);
}
.ce_accordion .accordion:before {
	content: "";
	position: absolute;
	top: -50px;
	left: 5%;
	z-index: -1;
	width: 90%;
	height: 50px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.ce_accordion .toggler {
	position: relative;
	margin: -1px;
	padding: 0.66667em 11.53846% 0.66667em 3.84615%;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	outline: none;
	color: #5a5d63;
	background: #ffffff;
	cursor: pointer;
}
.ce_accordion .toggler:after {
	font: 1.33333em/1 "RockSolid Icons";
	content: "\e00b";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0.6em;
	right: 3.84615%;
	width: 1em;
	height: 1em;
	padding-left: 0.05em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	color: #ffffff;
	background: #75bb3c;
}
.ce_accordion .toggler.ui-accordion-header-active:after,
.ce_accordion .toggler:hover:after {
	content: "\e009";
	padding: 0.05em 0 0;
}
.ce_accordion + .ce_accordion {
	margin-top: -3px;
}

hr {
	clear: both;
	height: 1px;
	overflow: visible;
	margin: 1.6em 0;
	border: 0;
	background: #c2c6cc;
}

.confirmation {
	color: #75bb3c;
}

.information {
	color: #1fa5d1;
}

.warning {
	color: #e52f2f;
}

p.confirmation,
p.information,
p.warning,
div.confirmation,
div.information,
div.warning,
span.confirmation,
span.information,
span.warning {
	position: relative;
	display: block;
	padding: 0.66667em 0 0.66667em 3.33333em;
	color: #5d9530;
}
p.confirmation:before,
p.information:before,
p.warning:before,
div.confirmation:before,
div.information:before,
div.warning:before,
span.confirmation:before,
span.information:before,
span.warning:before {
	font: 1.73333em/1 "RockSolid Icons";
	content: "\e044";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	left: 0.30769em;
	top: 1.06667em;
	margin-top: -0.5em;
}
p.information,
div.information,
span.information {
	border-color: #1fa5d1;
	color: #1884a7;
}
p.information:before,
div.information:before,
span.information:before {
	content: "\e0a6";
	left: 0.46154em;
}
p.warning,
div.warning,
span.warning {
	border-color: #e52f2f;
	color: #b72525;
}
p.warning:before,
div.warning:before,
span.warning:before {
	content: "\e144";
}

p.drop-cap:first-letter,
span.drop-cap {
	float: left;
	margin: 0.12em 0.12em -0.2em 0;
	font-size: 3.33333em;
	line-height: 0.7;
	color: #75bb3c;
}

p.drop-cap:first-letter {
	/* IE8 and IE9 calculate em's from the parent element */
	margin: 0.4em 0.4em -0.66667em 0 \0/;
}

code {
	padding: 0.14286em 0.35714em;
	font-family: "Lucida Console", monospace;
	font-size: 0.93333em;
	line-height: 1.35714;
	background-color: #e5e5e5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

pre {
	margin: 1.71429em 0;
	padding: 0 0.42857em;
	display: block;
	overflow: auto;
	font-family: "Lucida Console", monospace;
	font-size: 0.93333em;
	line-height: 1.71429;
	color: white;
	background: #44464b;
}
pre code {
	font-size: 1em;
	padding: 0;
	line-height: inherit;
	background-color: transparent;
}

/* ===========================================
 * Button styles
 * ======================================== */
.button-secondary,
.page-footer-inner form button,
.page-footer-inner form input[type="submit"],
button,
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	padding: 0.8em 1.33333em;
	border: 1px solid;
	border-color: #82c54b #588d2d #518129;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 0 #588d2d;
	background: #75bb3c;
	background: -webkit-linear-gradient(#82c54b, #7dc343 50%, #69a836);
	background: -moz-linear-gradient(#82c54b, #7dc343 50%, #69a836);
	background: -o-linear-gradient(#82c54b, #7dc343 50%, #69a836);
	background: linear-gradient(#82c54b, #7dc343 50%, #69a836);
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.05), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.05), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.05), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
}
.button-secondary:hover,
.page-footer-inner form button:hover,
.page-footer-inner form input[type="submit"]:hover,
.button-secondary:focus,
.page-footer-inner form button:focus,
.page-footer-inner form input[type="submit"]:focus,
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
	text-decoration: none;
	background: #5d9530;
	background: -webkit-linear-gradient(#8ac957, #7ac240 50%, #64a033);
	background: -moz-linear-gradient(#8ac957, #7ac240 50%, #64a033);
	background: -o-linear-gradient(#8ac957, #7ac240 50%, #64a033);
	background: linear-gradient(#8ac957, #7ac240 50%, #64a033);
}
.button-secondary:active,
.page-footer-inner form button:active,
.page-footer-inner form input[type="submit"]:active,
button:active,
.button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), inset 1px 0 rgba(0, 0, 0, 0.05), inset -1px 0 rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.1);
}

.button-secondary {
	padding: 0.4em 0.8em;
	border-color: #eaeaea #d8d8d8 #d1d1d1;
	font-weight: normal;
	color: #5a5d63;
	text-shadow: none;
	background: #f7f7f7;
	background: -webkit-linear-gradient(#ffffff, #ffffff 50%, #eaeaea);
	background: -moz-linear-gradient(#ffffff, #ffffff 50%, #eaeaea);
	background: -o-linear-gradient(#ffffff, #ffffff 50%, #eaeaea);
	background: linear-gradient(#ffffff, #ffffff 50%, #eaeaea);
}
.button-secondary:hover,
.button-secondary:focus {
	border-color: #e0e0e0 #cecece #c9c9c9;
	background: #c5c5c5;
	background: -webkit-linear-gradient(#ffffff, #fcfcfc 50%, #e5e5e5);
	background: -moz-linear-gradient(#ffffff, #fcfcfc 50%, #e5e5e5);
	background: -o-linear-gradient(#ffffff, #fcfcfc 50%, #e5e5e5);
	background: linear-gradient(#ffffff, #fcfcfc 50%, #e5e5e5);
}
.button-secondary:active {
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

/* ===========================================
 * Wrapper Elements
 * ======================================== */
.page-wrapper {
	position: relative;
}

.page,
.page-footer-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* Main wrapper */
.page {
	zoom: 1;
	position: relative;
	padding-bottom: 2.66667em;
	background-color: #ffffff;
}
.page:before {
	content: "";
	display: table;
}
.page:after {
	content: "";
	display: table;
	clear: both;
}

/* ===========================================
 * Elements in order of appearance in HTML
 * ======================================== */
.page-header {
	zoom: 1;
	position: relative;
	z-index: 50;
	margin: 0 4%;
	padding: 0 0 35px;
	border-bottom: 1px solid #e5e5e5;
}
.page-header:before {
	content: "";
	display: table;
}
.page-header:after {
	content: "";
	display: table;
	clear: both;
}
@media screen and (max-width: 900px) {
	.page-header {
		margin-right: 6.66667%;
		margin-left: 6.66667%;
	}
}

.logo {
	float: left;
	margin: 20px 0 0 0;
}
@media screen and (max-width: 599px) {
	.logo {
		margin: 20px 0;
		width: 100%;
	}
}
.logo a {
	display: block;
}
.logo img {
	display: block;
	width: auto;
	height: 120px;
}
@media screen and (max-width: 599px) {
	.logo img {
		margin: 0 auto;
	}
}

.main-navigation {
	margin: 56px 0 0;
	text-align: right;
}
@media screen and (max-width: 900px) {
	.main-navigation {
		clear: both;
		margin: 0 0 0 -2.8em;
		padding-top: 1.33333em;
		text-align: left;
	}
}
@media screen and (max-width: 599px) {
	.main-navigation {
		display: none;
	}
}
.main-navigation ul {
	display: inline;
	margin: 0;
	padding: 0;
}
.main-navigation li {
	position: relative;
	display: inline-block;
	margin-right: -1.06667em;
	margin-left: 1.73333em;
}
.main-navigation > ul > li > a {
	position: relative;
	display: block;
	z-index: 3;
	padding: 0.57143em 1.14286em;
	font-family: "Droid Serif", Georgia, serif;
	font-style: italic;
	font-size: 0.93333em;
	color: #1e2022;
	text-decoration: none;
}
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li > a:focus {
	color: #75bb3c;
}
.main-navigation > ul > li.active > a,
.main-navigation > ul > li.trail > a {
	color: #75bb3c;
}
.main-navigation > ul > li.submenu:before {
	content: "";
	position: absolute;
	left: 1.06667em;
	right: 1.06667em;
	bottom: 0;
	display: none;
	z-index: 2;
	height: 3px;
	background: #75bb3c;
}
.main-navigation > ul > li > ul {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 1;
	overflow: hidden;
	min-width: 100%;
	max-height: 0;
	margin-top: -2px;
	padding: 0;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align: left;
	white-space: nowrap;
	background: #ffffff;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-webkit-transition: max-height 0s, padding 0s, opacity 0.3s;
	-webkit-transition-delay: 0.3s, 0.3s, 0s;
	-moz-transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
	-o-transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
	transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.main-navigation > ul > li > ul li {
	display: inline;
	margin: 0;
}
.main-navigation > ul > li > ul a {
	position: relative;
	display: block;
	padding: 0.38462em 1em 0.38462em 0;
	border-top: 1px solid #e5e5e5;
	font-size: 0.86667em;
	color: #5a5d63;
	text-decoration: none;
}
.main-navigation > ul > li > ul a:hover,
.main-navigation > ul > li > ul a:focus {
	color: #75bb3c;
}
.main-navigation > ul > li > ul > li:first-child > a {
	border-top: 0;
}
.main-navigation > ul > li > ul li.active > a,
.main-navigation > ul > li > ul li.trail > a {
	color: #75bb3c;
}
.main-navigation > ul > li > ul ul a {
	padding-left: 0.76923em;
	border-top: 0;
}
.main-navigation > ul > li > ul ul ul a {
	margin-left: 1.33333em;
}
.main-navigation > ul > li:hover {
	z-index: 5;
}
.main-navigation > ul > li:hover > ul {
	max-height: 9999px;
	padding: 1em;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.main-navigation > ul > li.submenu:hover:before {
	/* change generated content to avoid IE8 ghost pseudo elements */
	content: " ";
	display: block;
}
.main-navigation > ul > li:last-child > ul,
.main-navigation > ul > li.last > ul {
	left: auto;
	right: 0;
}
@media screen and (max-width: 900px) {
	.main-navigation > ul > li:last-child > ul,
	.main-navigation > ul > li.last > ul {
		left: 0;
		right: auto;
	}
}

.main-navigation-mobile-open {
	position: absolute;
	top: 50px;
	left: 6.66667%;
	width: 44px;
	height: 39px;
	margin: -20px 0 0 -11px;
	padding: 11px;
	display: none;
	z-index: 200;
	text-indent: -99em;
	line-height: 0;
}
.main-navigation-mobile-open:after {
	content: "";
	display: block;
	height: 3px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #1e2022;
	-webkit-box-shadow: 0 7px #1e2022, 0 14px #1e2022;
	-moz-box-shadow: 0 7px #1e2022, 0 14px #1e2022;
	box-shadow: 0 7px #1e2022, 0 14px #1e2022;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile-open {
		display: block;
	}
}

.main-navigation-mobile-close {
	position: absolute;
	top: 0;
	right: -17.64706%;
	display: none;
	width: 17.64706%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0 !important;
	text-indent: -99em;
	background: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}
.is-active > .main-navigation-mobile-close {
	display: block;
}

.main-navigation-mobile {
	/* Hide mobile navigation by default */
	display: none;
	padding: 0;
	color: #ffffff;
	background: #1e2022;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile {
		display: block;
	}
}
.modernizr-js .main-navigation-mobile {
	display: none;
}
.main-navigation-mobile.is-enabled {
	position: absolute;
	top: 0;
	left: -85%;
	z-index: 201;
	width: 85%;
	min-height: 100%;
	-webkit-transition: left 0.2s ease-out;
	-moz-transition: left 0.2s ease-out;
	-o-transition: left 0.2s ease-out;
	transition: left 0.2s ease-out;
}
@media screen and (max-width: 599px) {
	.main-navigation-mobile.is-enabled {
		display: block;
	}
}
.modernizr-csstransforms3d .main-navigation-mobile.is-enabled {
	left: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-moz-transition: -moz-transform 0.2s ease-out;
	-o-transition: -o-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
}
.main-navigation-mobile.is-active {
	left: 0;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.modernizr-csstransforms3d .main-navigation-mobile.is-active {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.main-navigation-mobile ul {
	display: block;
	margin: 0;
	padding: 0;
}
.main-navigation-mobile ul ul {
	background: #1e2022;
	-webkit-box-shadow: inset 0 40px 40px -20px rgba(0, 0, 0, 0.04), inset 0 -40px 40px -20px rgba(0, 0, 0, 0.04);
	-moz-box-shadow: inset 0 40px 40px -20px rgba(0, 0, 0, 0.04), inset 0 -40px 40px -20px rgba(0, 0, 0, 0.04);
	box-shadow: inset 0 40px 40px -20px rgba(0, 0, 0, 0.04), inset 0 -40px 40px -20px rgba(0, 0, 0, 0.04);
}
.main-navigation-mobile .is-collapsed > ul {
	display: none;
}
.main-navigation-mobile li {
	position: relative;
	display: block;
}
.main-navigation-mobile a,
.main-navigation-mobile span.active,
.main-navigation-mobile span.trail {
	display: block;
	padding: 0.69231em 1em 0.61538em;
	border-bottom: 1px solid #000000;
	color: inherit;
	background-color: #1e2022;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	-moz-box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	-webkit-transition: background-color 0.6s ease-out;
	-moz-transition: background-color 0.6s ease-out;
	-o-transition: background-color 0.6s ease-out;
	transition: background-color 0.6s ease-out;
}
.main-navigation-mobile a:hover,
.main-navigation-mobile a:focus,
.main-navigation-mobile span.active:hover,
.main-navigation-mobile span.active:focus,
.main-navigation-mobile span.trail:hover,
.main-navigation-mobile span.trail:focus {
	outline: none;
	text-decoration: none;
	background-color: #121314;
	-webkit-transition: background-color 0.2s ease-out;
	-moz-transition: background-color 0.2s ease-out;
	-o-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}
.main-navigation-mobile a.active,
.main-navigation-mobile a.trail,
.main-navigation-mobile span.active,
.main-navigation-mobile span.trail {
	font-weight: bold;
}
.main-navigation-mobile a.active,
.main-navigation-mobile span.active {
	background-color: #313438;
	-webkit-box-shadow: inset 0 0 5px #1e2022;
	-moz-box-shadow: inset 0 0 5px #1e2022;
	box-shadow: inset 0 0 5px #1e2022;
}
.main-navigation-mobile li li a,
.main-navigation-mobile li li span.active,
.main-navigation-mobile li li span.trail {
	padding-left: 2em;
}
.main-navigation-mobile li li li a,
.main-navigation-mobile li li li span.active,
.main-navigation-mobile li li li span.trail {
	padding-left: 3em;
}
.main-navigation-mobile li li li li a,
.main-navigation-mobile li li li li span.active,
.main-navigation-mobile li li li li span.trail {
	padding-left: 4em;
}
.main-navigation-mobile li li li li li a,
.main-navigation-mobile li li li li li span.active,
.main-navigation-mobile li li li li li span.trail {
	padding-left: 5em;
}
.main-navigation-mobile .main-navigation-mobile-expand {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	margin: 0;
	padding: 0.61538em 1em;
	border: solid transparent;
	border-width: 0.23077em 0;
	-webkit-box-shadow: inset 1px 0 #333333;
	-moz-box-shadow: inset 1px 0 #333333;
	box-shadow: inset 1px 0 #333333;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	outline: none;
	line-height: 0;
	color: inherit;
	text-indent: -99em;
	text-shadow: none;
	background: none;
}
.main-navigation-mobile .main-navigation-mobile-expand:after {
	font: 1.23077em/1 "RockSolid Icons";
	content: "\e009";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
}
.main-navigation-mobile .is-expanded > .main-navigation-mobile-expand:after {
	content: "\e00c";
}

.content-wrapper {
	zoom: 1;
}
.content-wrapper:before {
	content: "";
	display: table;
}
.content-wrapper:after {
	content: "";
	display: table;
	clear: both;
}

.tag-line {
	margin: 0 4%;
	padding: 2em 0;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 900px) {
	.tag-line {
		margin-right: 6.66667%;
		margin-left: 6.66667%;
	}
}
.tag-line h1,
.tag-line h2,
.tag-line h3 {
	margin: 0;
	font-family: "Droid Serif", Georgia, serif;
	font-weight: normal;
	font-style: italic;
	color: #5a5d63;
}
.tag-line h1,
.tag-line h2 {
	font-size: 1.6em;
}
.tag-line h3 {
	font-size: 1.06667em;
}
.tag-line .image_container {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}
.tag-line .image_container img,
.tag-line img {
	display: block;
	width: 100%;
	height: auto;
	margin: 2em 0;
}
@media screen and (max-width: 900px) {
	.tag-line .image_container img,
	.tag-line img {
		width: 115.38462%;
		margin-right: -7.69231%;
		margin-left: -7.69231%;
	}
}
.tag-line > img:first-child, .tag-line > .mod_article > img:first-child,
.tag-line > .image_container:first-child img, .tag-line > .mod_article > .image_container:first-child img,
.tag-line > .ce_image:first-child img,
.tag-line > .mod_article > .ce_image:first-child img {
	margin-top: -2em;
}
.tag-line > img:last-child, .tag-line > .mod_article > img:last-child,
.tag-line > .image_container:last-child img, .tag-line > .mod_article > .image_container:last-child img,
.tag-line > .ce_image:last-child img,
.tag-line > .mod_article > .ce_image:last-child img {
	margin-bottom: -2em;
}
.tag-line .rsts-main {
	margin: 2em 0;
}
.tag-line .rsts-slide img {
	margin: 0;
}

/* ===========================================
 * Content styles
 * ======================================== */
.main-content {
	float: right;
	width: 52%;
	margin: 4% 12% 0 0;
}
.luxe-fullwidth .main-content {
	float: none;
	width: auto;
	margin-left: 4%;
	margin-right: 4%;
}
.luxe-sidebar-right .main-content {
	float: left;
	margin-right: 0;
	margin-left: 8%;
}
@media screen and (max-width: 900px) {
	.main-content,
	.luxe-fullwidth .main-content,
	.luxe-sidebar-right .main-content {
		float: none;
		width: auto;
		margin-right: 6.66667%;
		margin-left: 6.66667%;
	}
}
.main-content p,
.main-content ul,
.main-content ol,
.main-content table,
.main-content form,
.main-content fieldset {
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
	margin-top: 0.75em;
	margin-bottom: 0.3em;
	font-family: "Droid Serif", Georgia, serif;
	font-style: italic;
	font-weight: normal;
	line-height: 1.4;
	color: #1e2022;
}
.main-content h1 {
	margin-top: 1em;
	margin-bottom: 0.66667em;
	font-size: 2.4em;
	line-height: 1.25;
	color: #75bb3c;
}
@media screen and (max-width: 599px) {
	.main-content h1 {
		font-size: 1.71429em;
	}
}
.main-content h2 {
	font-size: 1.86667em;
}
.main-content h3 {
	font-size: 1.6em;
}
.main-content h4 {
	font-size: 1.4em;
}
.main-content h5 {
	font-size: 1.2em;
}
.main-content h6 {
	font-size: 1em;
}
.main-content h2 + p,
.main-content h2 + ul,
.main-content h2 + ol,
.main-content h2 + blockquote,
.main-content h3 + p,
.main-content h3 + ul,
.main-content h3 + ol,
.main-content h3 + blockquote,
.main-content h4 + p,
.main-content h4 + ul,
.main-content h4 + ol,
.main-content h4 + blockquote,
.main-content h5 + p,
.main-content h5 + ul,
.main-content h5 + ol,
.main-content h5 + blockquote,
.main-content h6 + p,
.main-content h6 + ul,
.main-content h6 + ol,
.main-content h6 + blockquote {
	margin-top: 0;
}
.main-content ul,
.main-content ol {
	padding-left: 7.69231%;
}
.main-content ul li[data-icon],
.main-content ol li[data-icon] {
	list-style: none;
}
.main-content ul li[data-icon]:before,
.main-content ol li[data-icon]:before {
	left: -1.4em;
	width: 0;
}
.main-content ul {
	list-style: disc;
}
.main-content ul ul {
	margin-top: 0;
}
.main-content ol {
	list-style: decimal;
}
.main-content ol ol,
.main-content ol ul {
	margin-top: 0;
}
.main-content ol ol {
	list-style: upper-alpha;
}
.main-content ol ol ol {
	list-style: lower-roman;
}
.main-content ol ol ol ol {
	list-style: lower-alpha;
}
.main-content blockquote {
	position: relative;
	margin: 1.66667em 0;
	font-family: "Droid Serif", Georgia, serif;
	font-size: 1.6em;
	font-style: italic;
}
@media screen and (max-width: 599px) {
	.main-content blockquote {
		font-size: 1.28571em;
	}
}
.main-content blockquote p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.main-content blockquote:before {
	content: "\201e";
	display: block;
	width: 0.58333em;
	height: 0.83333em;
	padding: 0 0 0 0.25em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	font-size: 2em;
	line-height: 0.2;
	color: white;
	background: #75bb3c;
}
.main-content blockquote small,
.main-content blockquote i,
.main-content blockquote em {
	display: block;
	margin-top: 0.33333em;
	font-family: "Open Sans", sans-serif;
	font-size: 0.75em;
	font-style: normal;
	color: #5a5d63;
}
.main-content blockquote small:before,
.main-content blockquote i:before,
.main-content blockquote em:before {
	content: "– ";
}
.main-content img {
	max-width: 100%;
	height: auto;
}

.ce_accordion h1 {
	font-size: 1.86667em;
}
.ce_accordion h2 {
	font-size: 1.6em;
}
.ce_accordion h3 {
	font-size: 1.4em;
}

/* ===========================================
 * Sidebar styles
 * ======================================== */
.sidebar {
	position: relative;
	float: left;
	width: 28.0%;
	margin: 4% 0 0;
	padding: 0 0 0 4%;
}
@media screen and (max-width: 900px) {
	.sidebar {
		clear: both;
		float: none;
		width: auto;
		padding: 0;
	}
}
@media screen and (max-width: 599px) {
	.sidebar {
		margin: 0 6.66667%;
	}
}
.luxe-sidebar-right .sidebar {
	float: right;
	padding-right: 4%;
	padding-left: 0;
}
@media screen and (max-width: 900px) {
	.luxe-sidebar-right .sidebar {
		float: none;
		padding-right: 0;
	}
}
.sidebar .mod_article > .block,
.sidebar .mod_form,
.sidebar .mod_subscribe {
	margin: 1.33333em 0;
}
@media screen and (max-width: 900px) {
	.sidebar .mod_article > .block,
	.sidebar .mod_form,
	.sidebar .mod_subscribe {
		float: left;
		width: 40%;
		margin: 6.66667% 0 0 6.66667%;
	}
}
@media screen and (max-width: 599px) {
	.sidebar .mod_article > .block,
	.sidebar .mod_form,
	.sidebar .mod_subscribe {
		float: none;
		width: auto;
		margin-left: 0;
	}
}
.sidebar h1,
.sidebar h2,
.sidebar h3,
.sidebar h4,
.sidebar h5 {
	margin: 1em 0 0.5em;
}
.sidebar h1,
.sidebar h2,
.sidebar h3 {
	font-size: 1.33333em;
	color: #75bb3c;
}
.sidebar h4 {
	font-size: 1.13333em;
}
.sidebar h5 {
	font-size: 1em;
}
.sidebar p,
.sidebar ul,
.sidebar ol,
.sidebar table,
.sidebar blockquote,
.sidebar fieldset,
.sidebar form {
	margin: 1em 0;
}
.sidebar ul,
.sidebar ol {
	padding: 0;
	list-style-type: none;
}

@media screen and (max-width: 900px) {
	.sidebar .sub-navigation {
		float: left;
		width: 40%;
		margin: 6.66667% 0 0 6.66667%;
	}
}
@media screen and (max-width: 599px) {
	.sidebar .sub-navigation {
		display: none;
	}
}
.sub-navigation h3 {
	display: inline;
	margin: 0;
	font-size: 0.8em;
}
.sub-navigation h3 a {
	display: block;
	margin: 2.91667em 0 1.25em;
	font-weight: bold;
	letter-spacing: 1px;
	color: #75bb3c;
	text-decoration: none;
	text-transform: uppercase;
}
.sub-navigation h3 a:hover,
.sub-navigation h3 a:focus {
	text-decoration: underline;
}
.sub-navigation ul {
	margin: 0;
	padding: 0;
}
.sub-navigation ul li {
	display: inline;
}
.sub-navigation ul a {
	display: block;
	padding: 0.61538em 0;
	font-size: 0.86667em;
	color: #5a5d63;
	text-decoration: none;
}
.sub-navigation ul a:hover,
.sub-navigation ul a:focus {
	color: #75bb3c;
}
.sub-navigation ul ul a {
	padding-top: 0;
	padding-left: 6.25%;
}
.sub-navigation ul ul ul a {
	padding-left: 12.5%;
}
.sub-navigation ul li.active > a,
.sub-navigation ul li.trail > a {
	color: #75bb3c;
}

.mod_subscribe {
	padding: 1.33333em;
	border: 1px solid #e5e5e5;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
.mod_subscribe form {
	margin: 0;
}
.mod_subscribe form input {
	padding-right: 3.66667em;
}
.mod_subscribe .formbody {
	position: relative;
}
.mod_subscribe .formbody .form-row {
	margin: 0;
}
.mod_subscribe h1,
.mod_subscribe h2,
.mod_subscribe h3 {
	margin-top: 0;
	font-size: 0.8em;
	text-transform: uppercase;
}
.mod_subscribe button[type="submit"] {
	position: absolute;
	top: 2.2em;
	right: 0.26667em;
	width: auto;
	overflow: hidden;
	padding: 0.4em 0.66667em;
	line-height: 0;
	text-indent: -99em;
}
.mod_subscribe button[type="submit"]:after {
	font: 1.6em/1 "RockSolid Icons";
	content: "\e0ce";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
}

/* ===========================================
 * Form styles
 * ======================================== */
form h1,
form h2,
form h3,
form h4,
form h5,
form h6 {
	clear: both;
}
form .form-row {
	clear: both;
	position: relative;
	margin: 1.33333em 0;
}
form p b.error,
form p.error {
	display: block;
	margin: 0;
	color: #e52f2f;
}
form input,
form textarea {
	padding: 0.8em 1em;
	line-height: normal;
	border: 1px solid #c2c6cc;
	outline: none;
	color: inherit;
	background: #f9f9f9;
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
	-webkit-transition: border 0.2s;
	-moz-transition: border 0.2s;
	-o-transition: border 0.2s;
	transition: border 0.2s;
}
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
	/* multiple rules, because user agents are required to ignore a rule with an unknown selector */
	color: #5a5d63;
}
form input:-moz-placeholder,
form textarea:-moz-placeholder {
	color: #5a5d63;
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
	color: #5a5d63;
}
form input::placeholder,
form textarea::placeholder {
	color: #5a5d63;
}
form input:hover,
form textarea:hover {
	border-color: #9b9ea3;
}
form input:focus,
form textarea:focus {
	border-color: #75bb3c;
}
form textarea {
	height: 200px;
	resize: vertical;
	line-height: 1.5;
}
form fieldset {
	margin: 1.33333em 0;
	border: 1px solid #c2c6cc;
}
form fieldset legend {
	padding: 0 0.33333em;
}
form fieldset + br {
	/* Kill <br> that Contao injects */
	display: none;
}
form input[type="checkbox"],
form input[type="radio"],
form input[type="image"] {
	width: auto !important;
	height: auto !important;
	margin: 0;
	padding: 0;
	border: 0;
}
form input[type="checkbox"] {
	vertical-align: middle;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
form input[type="radio"] {
	vertical-align: middle;
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
	background: none;
}
form .valid input,
form .valid textarea {
	border-color: #75bb3c;
}
form .invalid input,
form .invalid textarea,
form input.error,
form textarea.error {
	border-color: #e52f2f;
}
form input[type="file"] {
	height: auto;
	padding: 0;
	border: 0;
	/* IE8 and IE9 */
	border: 1px solid #c2c6cc \0/;
	font-size: 0.8em;
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
form button,
form input[type="submit"] {
	margin-top: 1.33333em;
}

.main-content form p b.error,
.main-content form p.error {
	float: right;
	width: 69.23077%;
	margin-bottom: 0.66667em;
}
@media screen and (max-width: 599px) {
	.main-content form p b.error,
	.main-content form p.error {
		float: none;
		width: auto;
		margin-left: 0;
	}
}
.main-content form .explanation,
.main-content form .captcha_text {
	width: 69.23077%;
	margin-left: 30.76923%;
}
@media screen and (max-width: 599px) {
	.main-content form .explanation,
	.main-content form .captcha_text {
		width: auto;
		margin-left: 0;
	}
}
.main-content form fieldset p b.error,
.main-content form fieldset p.error {
	width: auto;
	margin-left: 0;
}
.main-content form label {
	display: inline-block;
	width: 30.76923%;
}
@media screen and (max-width: 599px) {
	.main-content form label {
		display: block;
		width: auto;
	}
}
.main-content form label + input,
.main-content form label + textarea,
.main-content form label + select {
	/* Kill space between label and element */
	margin-left: -0.26667em;
}
@media screen and (max-width: 599px) {
	.main-content form label + input,
	.main-content form label + textarea,
	.main-content form label + select {
		margin-left: 0;
	}
}
.main-content form input[type="checkbox"] + label {
	display: inline;
	width: auto;
	margin-right: 0;
}
.main-content form textarea,
.main-content form fieldset,
.main-content form button,
.main-content form input[type="submit"] {
	margin-left: 30.76923%;
}
@media screen and (max-width: 599px) {
	.main-content form textarea,
	.main-content form fieldset,
	.main-content form button,
	.main-content form input[type="submit"] {
		margin-left: 0;
	}
}
.main-content form fieldset p {
	margin: 0;
}
.main-content form fieldset label {
	display: inline;
	width: auto;
	margin: 0;
}
.main-content form fieldset label:after {
	/* add line break after label */
	content: "\A";
	white-space: pre;
}
.main-content form input,
.main-content form textarea,
.main-content form select,
.main-content form fieldset,
.main-content form button {
	width: 69.23077%;
	/* For rounding failures */
	margin-right: -0.66667em;
}
@media screen and (max-width: 599px) {
	.main-content form input,
	.main-content form textarea,
	.main-content form select,
	.main-content form fieldset,
	.main-content form button {
		width: 100%;
	}
}
.main-content form input[type="checkbox"],
.main-content form input[type="radio"],
.main-content form input[type="image"] {
	margin-right: 0;
}

form span.mandatory {
	margin-left: 0.13333em;
	color: #e52f2f;
}
form .explanation,
form .captcha_text {
	font-size: 0.8em;
	margin: -1em 0 2em;
	color: #5a5d63;
}
form .explanation p,
form .captcha_text p {
	margin: 0 !important;
}
form .captcha_text {
	float: left;
	margin-top: 0.8em;
	font-size: inherit;
	color: #1e2022;
}
form .styled_select {
	font-size: 1.06667em;
}
form label + .styled_select {
	/* Kill space between label and element */
	margin-left: -0.26667em;
}
form .submit_container {
	margin-top: 0.8em;
}

.sidebar form input,
.sidebar form textarea,
.sidebar form button {
	width: 100%;
	margin: 0;
}
.sidebar form label {
	display: block;
	margin-bottom: 0.33333em;
}
.sidebar form input[type="checkbox"],
.sidebar form input[type="radio"],
.sidebar form input[type="image"] {
	width: auto;
	height: auto;
}

/* ===========================================
 * Content elements
 * ======================================== */
.content-404 {
	position: relative;
}
.content-404 h1 {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-size: 1.6em;
	color: #5a5d63;
	text-align: center;
}
@media screen and (max-width: 599px) {
	.main-content .content-404 h1 {
		font-size: 1.28571em;
	}
}
.content-404 h1 i {
	display: block;
	margin-bottom: 0.16em;
	font-weight: bold;
	font-style: normal;
	font-size: 5.20833em;
	line-height: 1;
}
.content-404 h1 b {
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	overflow: hidden;
	margin: 0 0.08333em -0.55em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	font-family: "Droid Serif", Georgia, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 0.48em;
	color: #c5c6c8;
	text-indent: -999px;
	background: #ebebeb;
}
.content-404 h1 b:after {
	content: "Oh!";
	position: relative;
	top: -0.2em;
	display: block;
	text-indent: 0;
}
.content-404 form {
	position: relative;
	margin: 0 auto;
}
.content-404 form input {
	width: 69.23077%;
	margin-left: 15.38462%;
	padding-right: 3.33333em;
}
@media screen and (max-width: 599px) {
	.main-content .content-404 form input {
		width: 100%;
		margin-left: 0;
	}
}
.content-404 form button {
	position: absolute;
	top: -0.2em;
	right: 15.38462%;
	width: 3.53333em;
	height: 3.53333em;
	overflow: hidden;
	margin: 0 0.33333em 0 0;
	padding: 0;
	white-space: nowrap;
	background: none;
	border: 0;
	text-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
@media screen and (max-width: 599px) {
	.main-content .content-404 form button {
		width: 3.53333em;
		right: 0;
	}
}
.content-404 form button:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0cb";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin: 0.6087em 0.65217em;
	font-size: 1.53333em;
	color: #1fa5d1;
}

.image-wrapper,
.image_container a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.image-wrapper:before,
.image_container a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1e2022;
	opacity: 0;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.image-wrapper:after,
.image_container a:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: none;
	width: 31px;
	height: 31px;
	margin: -15px;
	background: -webkit-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat, -webkit-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat;
	background: -moz-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat, -moz-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat;
	background: -o-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat, -o-linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat;
	background: linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50% no-repeat;
	background-size: 100% 1px, 1px 100%;
}
.image-wrapper:hover:before,
.image_container a:hover:before,
.image-wrapper:focus:before,
.image_container a:focus:before {
	opacity: 0.6;
}
.image-wrapper:hover:after,
.image_container a:hover:after,
.image-wrapper:focus:after,
.image_container a:focus:after {
	display: block;
}

.image_container {
	position: relative;
	display: inline-block;
}
.image_container.float_below,
.image_container.float_above {
	width: 100%;
	margin: 0.8em 0 0;
}
.image_container a:before,
.image_container a:after {
}
.image_container img {
	display: block;
	width: 100%;
	height: auto;
}
.image_container figcaption,
.image_container .caption {
	position: relative;
	float: left;
	width: auto !important;
	max-width: 91.66667%;
	margin-top: -1.69231em;
	padding: 0.46154em 1em;
	font-size: 0.86667em;
	color: white;
	background: #75bb3c;
	background: rgba(117, 187, 60, 0.9);
}

.image_container.float_right,
.image_container.float_left {
	float: right;
	margin: 1.53846% 0 3.84615% 7.69231%;
	width: 46.15385% !important;
}
@media screen and (max-width: 599px) {
	.image_container.float_right,
	.image_container.float_left {
		float: none !important;
		margin-left: 0;
		width: auto !important;
	}
}
.luxe-fullwidth .image_container.float_right,
.luxe-fullwidth .image_container.float_left {
	margin: 0 0 2.17391% 4.34783%;
	width: 39.13043% !important;
}
@media screen and (max-width: 900px) {
	.luxe-fullwidth .image_container.float_right,
	.luxe-fullwidth .image_container.float_left {
		width: 46.15385%;
	}
}
@media screen and (max-width: 599px) {
	.luxe-fullwidth .image_container.float_right,
	.luxe-fullwidth .image_container.float_left {
		width: auto !important;
		margin-left: 0;
	}
}
.no-resize .image_container.float_right,
.luxe-fullwidth .no-resize .image_container.float_right,
.image_container.float_right.no-resize,
.luxe-fullwidth .image_container.float_right.no-resize,
.no-resize .image_container.float_left,
.luxe-fullwidth .no-resize .image_container.float_left,
.image_container.float_left.no-resize,
.luxe-fullwidth .image_container.float_left.no-resize {
	width: auto !important;
}

.image_container.float_left {
	float: left;
	margin: 1.53846% 7.69231% 3.84615% 0;
}
@media screen and (max-width: 599px) {
	.image_container.float_left {
		float: none !important;
		margin-right: 0;
	}
}
.luxe-fullwidth .image_container.float_left {
	margin: 0 4.34783% 2.17391% 0;
}
@media screen and (max-width: 599px) {
	.luxe-fullwidth .image_container.float_left {
		margin-right: 0;
	}
}

.ce_youtube-wrapper {
	position: relative;
	/* ratio 16 to 9 */
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.ce_youtube-wrapper iframe,
.ce_youtube-wrapper object,
.ce_youtube-wrapper embed,
.ce_youtube-wrapper .ce_youtube-wrapper-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ce_youtube-wrapper-poster {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.ce_youtube-wrapper-poster:before {
	font: 1.33333em/1 "RockSolid Icons";
	content: "\25b6";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1.2em -1.675em;
	padding: 0.7em 1.2em 0.7em 1.4em;
	border-radius: 0.5em;
	color: white;
	background: black;
	background: rgba(0, 0, 0, 0.6);
	transition: background-color 0.1s linear;
}
.ce_youtube-wrapper-poster:hover:before {
	opacity: 1;
	background: #cc181e;
}

.mejs-video:not(.mejs-container-fullscreen),
.mejs-audio:not(.mejs-container-fullscreen) {
	margin: 1.33333em 0;
	background: transparent;
}
.mejs-video button,
.mejs-audio button {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border-radius: 0;
	box-shadow: none !important;
}

.ce_gallery > ul.cols_1 > li {
	width: 100%;
}
.ce_gallery > ul.cols_2 > li {
	width: 49.25%;
}
.ce_gallery > ul.cols_3 > li {
	width: 32.33333%;
}
.ce_gallery > ul.cols_4 > li {
	width: 23.875%;
}
.ce_gallery > ul.cols_5 > li {
	width: 18.8%;
}
.ce_gallery > ul.cols_6 > li {
	width: 15.41667%;
}
.ce_gallery > ul.cols_7 > li {
	width: 13%;
}
.ce_gallery > ul.cols_8 > li {
	width: 11.1875%;
}
.ce_gallery > ul.cols_9 > li {
	width: 9.77778%;
}
.ce_gallery > ul.cols_10 > li {
	width: 8.65%;
}
.ce_gallery > ul.cols_11 > li {
	width: 7.72727%;
}
.ce_gallery > ul.cols_12 > li {
	width: 6.95833%;
}
@media screen and (max-width: 599px) {
	.ce_gallery {
		/* doubled class for specificity */
	}
	.ce_gallery.ce_gallery > ul > li {
		width: auto;
	}
}
.ce_gallery.no-resize > ul > li {
	width: auto;
}
.ce_gallery > ul {
	zoom: 1;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.ce_gallery > ul:before {
	content: "";
	display: table;
}
.ce_gallery > ul:after {
	content: "";
	display: table;
	clear: both;
}
.ce_gallery > ul > li {
	float: left;
	width: 23.875%;
	margin: 1.5% 0 0 1.5%;
}
@media screen and (max-width: 599px) {
	.ce_gallery > ul > li {
		margin-right: 0;
		margin-left: 0;
	}
}
.ce_gallery > ul > li.col_first {
	clear: left;
	margin-left: 0;
}
.ce_gallery > ul > li.col_last {
	/* for rounding failures */
	margin-right: -1%;
}
.ce_gallery > ul > li > .image_container {
	width: 100%;
}
.ce_gallery img {
	width: 100%;
	height: auto;
}

.main-content .ce_imageslider img {
	max-width: none;
}

.enclosure,
.ce_downloads {
	position: relative;
	margin: 2.66667em 0;
	padding: 1.33333em 7.69231%;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
.luxe-fullwidth .enclosure,
.luxe-fullwidth .ce_downloads {
	padding: 1.33333em 4.34783%;
}
.enclosure p,
.enclosure h3,
.enclosure h4,
.enclosure h5,
.enclosure h6,
.ce_downloads p,
.ce_downloads h3,
.ce_downloads h4,
.ce_downloads h5,
.ce_downloads h6 {
	margin: 0.4em 0 !important;
}
.enclosure h1,
.enclosure h2,
.enclosure h3,
.main-content .enclosure h1,
.main-content .enclosure h2,
.main-content .enclosure h3,
.ce_downloads h1,
.ce_downloads h2,
.ce_downloads h3,
.main-content .ce_downloads h1,
.main-content .ce_downloads h2,
.main-content .ce_downloads h3 {
	margin: 0 0 0.83333em;
	padding: 0 0 0.83333em;
	border-bottom: 1px solid #e5e5e5;
	font-family: "Open Sans", sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	font-style: normal;
	letter-spacing: 0.08333em;
	color: #5a5d63;
	text-transform: uppercase;
}
.enclosure ul,
.main-content .enclosure ul,
.ce_downloads ul,
.main-content .ce_downloads ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-content .ce_imageslider img {
	max-width: none;
}

.home-slider,
.main-image {
	margin: 2.66667em 0;
}

@media screen and (max-width: 900px) {
	.home-slider {
		width: 115.38462%;
		margin-right: -7.69231%;
		margin-left: -7.69231%;
	}
}
@media screen and (max-width: 900px) {
	.home-slider img {
		margin-bottom: 1em;
	}
}

.main-image img {
	display: block;
	width: 100%;
	max-width: none !important;
	height: auto;
}

.section-headline,
.featured-list > header,
.teaser-boxes > header,
.team-boxes > header {
	display: inline-block;
	width: 100%;
	margin-bottom: 2em;
	border-bottom: 1px solid #e5e5e5;
}
.section-headline h1,
.featured-list > header h1,
.teaser-boxes > header h1,
.team-boxes > header h1,
.section-headline h2,
.featured-list > header h2,
.teaser-boxes > header h2,
.team-boxes > header h2,
.section-headline h3,
.featured-list > header h3,
.teaser-boxes > header h3,
.team-boxes > header h3 {
	margin: 0;
	float: left;
	margin: 0 0.83333em -0.16667em 0;
	padding: 0.25em 0 0.66667em;
	border-bottom: 3px solid #75bb3c;
	font-family: "Open Sans", sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	font-style: normal;
	color: #5a5d63;
	letter-spacing: 0.08333em;
	text-transform: uppercase;
}
.section-headline a,
.featured-list > header a,
.teaser-boxes > header a,
.team-boxes > header a {
	float: right;
	font-size: 0.86667em;
}
.section-headline a:after,
.featured-list > header a:after,
.teaser-boxes > header a:after,
.team-boxes > header a:after {
	font: 0.53846em/1 "RockSolid Icons";
	content: "\e019";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	top: -0.14286em;
	margin-left: 1.42857em;
}

@media screen and (max-width: 599px) {
	.featured-list {
		float: none;
		width: auto;
	}
}
.featured-list.-left,
.featured-list.-right {
	width: 46.15385%;
	margin-bottom: 2.66667em;
}
.luxe-fullwidth .featured-list.-left,
.luxe-fullwidth .featured-list.-right {
	width: 47.82609%;
}
.featured-list.-left {
	float: left;
}
.featured-list.-right {
	float: right;
}
.featured-list > header {
	margin: 0.66667em 0 0.4em;
}
.featured-list ul {
	padding-left: 2.15385em;
	list-style: none;
	font-size: 0.86667em;
	line-height: 1.61538;
}
.featured-list li {
	position: relative;
	margin: 0.30769em 0;
}
.featured-list li:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e019";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0.375em;
	left: -3.5em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 2em;
	height: 2em;
	padding-top: 0.5em;
	font-size: 0.61538em;
	color: white;
	text-align: center;
	background: #75bb3c;
}

.icon-boxes {
	position: relative;
	overflow: hidden;
	clear: both;
	padding: 1.6em 0.66667em;
	margin: 1.06667em -0.66667em;
	letter-spacing: -0.3em;
}
@media screen and (max-width: 599px) {
	.icon-boxes {
		margin-right: 0;
		margin-left: 0;
	}
	.icon-boxes:after {
		right: 0;
		left: 0;
	}
	.icon-boxes .box {
		width: 100%;
	}
}
.icon-boxes.-highlight {
	padding-top: 2.66667em;
	border-top: 1px solid #e5e5e5;
}
.icon-boxes.-highlight:before {
	content: "";
	position: absolute;
	top: -50px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 50px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.icon-boxes-item {
	position: relative;
	display: inline-block;
	font-size: 0.86667em;
	letter-spacing: normal;
	color: #5a5d63;
	text-decoration: none;
	vertical-align: top;
}
.icon-boxes-item:nth-child(3n+1):before {
	-webkit-transition-delay: 0.3s, 0.3s;
	-moz-transition-delay: 0.3s, 0.3s;
	-o-transition-delay: 0.3s, 0.3s;
	transition-delay: 0.3s, 0.3s;
}
.icon-boxes-item:nth-child(3n+2):before {
	-webkit-transition-delay: 0.6s, 0.6s;
	-moz-transition-delay: 0.6s, 0.6s;
	-o-transition-delay: 0.6s, 0.6s;
	transition-delay: 0.6s, 0.6s;
}
.icon-boxes-item:nth-child(3n+3):before {
	-webkit-transition-delay: 0.9s, 0.9s;
	-moz-transition-delay: 0.9s, 0.9s;
	-o-transition-delay: 0.9s, 0.9s;
	transition-delay: 0.9s, 0.9s;
}
.icon-boxes-item:nth-child(3n+4):before {
	-webkit-transition-delay: 1.2s, 1.2s;
	-moz-transition-delay: 1.2s, 1.2s;
	-o-transition-delay: 1.2s, 1.2s;
	transition-delay: 1.2s, 1.2s;
}
.icon-boxes-item:hover,
.icon-boxes-item:focus {
	text-decoration: none;
}
.icon-boxes-item:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 1.66667em;
	height: 1.66667em;
	padding-top: 0.33333em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	font-size: 1.84615em;
	color: white;
	text-align: center;
	background: #75bb3c;
	-webkit-transition-property: opacity, -webkit-transform, color, background;
	-moz-transition-property: opacity, -moz-transform, color, background;
	-o-transition-property: opacity, -o-transform, color, background;
	transition-property: opacity, transform, color, background;
	-webkit-transition-duration: 0.2s, 0.2s, 0.2s, 0.1s;
	-moz-transition-duration: 0.2s, 0.2s, 0.2s, 0.1s;
	-o-transition-duration: 0.2s, 0.2s, 0.2s, 0.1s;
	transition-duration: 0.2s, 0.2s, 0.2s, 0.1s;
}
.not-in-view > .icon-boxes-item:before,
.does-repeat.not-in-view > .icon-boxes-item:before,
.does-repeat .not-in-view > .icon-boxes-item:before {
	opacity: 0;
	-webkit-transform: translate(0, -30px);
	-moz-transform: translate(0, -30px);
	-ms-transform: translate(0, -30px);
	-o-transform: translate(0, -30px);
	transform: translate(0, -30px);
}
.does-repeat.in-view > .icon-boxes-item:before,
.does-repeat .in-view > .icon-boxes-item:before,
.has-shown > .icon-boxes-item:before {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}
.icon-boxes-item:hover:before,
.icon-boxes-item:focus:before {
	color: #75bb3c;
	background: transparent;
	-webkit-transition-delay: 0s, 0s;
	-moz-transition-delay: 0s, 0s;
	-o-transition-delay: 0s, 0s;
	transition-delay: 0s, 0s;
}
.icon-boxes-item h3 {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-size: 1.61538em;
	color: #5a5d63;
}
.icon-boxes-item p {
	line-height: 1.84615;
}

.teaser-boxes,
.team-boxes {
	margin: 2.66667em 0;
	zoom: 1;
}
.teaser-boxes:before,
.team-boxes:before {
	content: "";
	display: table;
}
.teaser-boxes:after,
.team-boxes:after {
	content: "";
	display: table;
	clear: both;
}

.teaser-boxes-item,
.team-boxes-item {
	font-size: 0.86667em;
	color: #5a5d63;
	text-decoration: none;
}
.teaser-boxes-item:hover,
.team-boxes-item:hover {
	text-decoration: none;
}
.teaser-boxes-item h3,
.team-boxes-item h3 {
	margin: 0 0 0.125em;
	font: normal bold 1em/1.6 "Open Sans", sans-serif;
	color: #5a5d63;
}
.teaser-boxes-item h4,
.team-boxes-item h4 {
	margin: 0.72727em 0;
	padding-bottom: 0.54545em;
	border-bottom: 1px solid #e5e5e5;
	font-size: 0.84615em;
}
.teaser-boxes-item p,
.team-boxes-item p {
	margin: 0.15385em 0;
}
.teaser-boxes-item > a,
.team-boxes-item > a {
	display: block;
}
.teaser-boxes-item .image-wrapper,
.team-boxes-item .image-wrapper,
.teaser-boxes-item .no-image,
.team-boxes-item .no-image {
	margin-bottom: 1.125em;
}
.teaser-boxes-item img,
.team-boxes-item img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 1.125em;
}
@media screen and (max-width: 599px) {
	.teaser-boxes-item img,
	.team-boxes-item img {
		max-width: 100%;
	}
}
.teaser-boxes-item .image-wrapper img,
.team-boxes-item .image-wrapper img {
	margin: 0;
}
.teaser-boxes-item .no-image,
.team-boxes-item .no-image {
	display: block;
	width: 100%;
	padding-top: 56.25%;
	background: #e5e5e5;
}

.team-boxes-item > ul {
	margin: 0.61538em 0;
	padding: 0;
	border-top: 1px solid #e5e5e5;
	list-style-type: none;
}
.team-boxes-item > ul li {
	display: inline;
}
.team-boxes-item > ul a {
	display: inline-block;
	overflow: hidden;
	padding: 0.61538em 0.30769em 0 1px;
	outline: none;
	line-height: 0;
	letter-spacing: -1em;
	text-indent: -99em;
	text-decoration: none;
}
.team-boxes-item > ul a:before {
	content: none;
}
.team-boxes-item > ul a:after {
	font: 1.38462em/1 "RockSolid Icons";
	content: attr(data-icon);
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	letter-spacing: 0;
	color: #c2c6cc !important;
}
.team-boxes-item > ul a:hover:after,
.team-boxes-item > ul a:focus:after {
	color: inherit !important;
}

.feature-box {
	display: inline-block;
	width: 100%;
	margin: 0.8em 0;
}
.feature-box h2 {
	margin-bottom: 0;
	font-size: 1.6em;
	line-height: 1.5;
	color: #5a5d63;
}
.feature-box h2 + p {
	margin-top: 1.2em;
}
.feature-box.-left .feature-box-text {
	float: right;
}
@media screen and (max-width: 599px) {
	.feature-box.-left .feature-box-text {
		float: none;
	}
}
.feature-box.-left .feature-box-image {
	float: left;
}
@media screen and (max-width: 599px) {
	.feature-box.-left .feature-box-image {
		float: none;
	}
}
.feature-box.-fade.not-in-view {
	opacity: 0;
}
.feature-box.-fade.in-view {
	-webkit-transition: opacity 2s;
	-moz-transition: opacity 2s;
	-o-transition: opacity 2s;
	transition: opacity 2s;
	opacity: 1;
}
.feature-box.-move.not-in-view .feature-box-text {
	-webkit-transform: translate(-20%, 0);
	-moz-transform: translate(-20%, 0);
	-ms-transform: translate(-20%, 0);
	-o-transform: translate(-20%, 0);
	transform: translate(-20%, 0);
}
.feature-box.-move.not-in-view .feature-box-image {
	-webkit-transform: translate(20%, 0);
	-moz-transform: translate(20%, 0);
	-ms-transform: translate(20%, 0);
	-o-transform: translate(20%, 0);
	transform: translate(20%, 0);
}
.feature-box.-move.-left.not-in-view .feature-box-text {
	-webkit-transform: translate(20%, 0);
	-moz-transform: translate(20%, 0);
	-ms-transform: translate(20%, 0);
	-o-transform: translate(20%, 0);
	transform: translate(20%, 0);
}
.feature-box.-move.-left.not-in-view .feature-box-image {
	-webkit-transform: translate(-20%, 0);
	-moz-transform: translate(-20%, 0);
	-ms-transform: translate(-20%, 0);
	-o-transform: translate(-20%, 0);
	transform: translate(-20%, 0);
}
.feature-box.-move.in-view.in-view .feature-box-text,
.feature-box.-move.in-view.in-view .feature-box-image {
	/* Doubled class to get needed specificity */
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.feature-box-text,
.feature-box-image {
	width: 46.15385%;
}
@media screen and (max-width: 599px) {
	.feature-box-text,
	.feature-box-image {
		float: none;
		width: auto;
	}
}
.luxe-fullwidth .feature-box-text,
.luxe-fullwidth .feature-box-image {
	width: 47.82609%;
}
@media screen and (max-width: 599px) {
	.luxe-fullwidth .feature-box-text,
	.luxe-fullwidth .feature-box-image {
		float: none;
		width: auto;
	}
}

.feature-box-image {
	float: right;
	margin-bottom: 2.4em;
}
@media screen and (max-width: 599px) {
	.feature-box-image {
		float: none;
	}
}

.highlight-box {
	position: relative;
	margin: 4.8em 0 3.2em;
	padding: 0 0 8em;
}
.highlight-box:before,
.highlight-box:after {
	content: "";
	position: absolute;
	bottom: 4em;
	width: 39.13043%;
	border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 599px) {
	.highlight-box:before,
	.highlight-box:after {
		width: 23.07692%;
	}
}
.highlight-box:before {
	left: 0;
}
.highlight-box:after {
	right: 0;
}
.highlight-box h1,
.highlight-box h2,
.highlight-box h3 {
	margin-top: 1em;
	margin-bottom: 0.66667em;
	text-align: center;
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-size: 1.6em;
	color: #5a5d63;
}
.highlight-box a {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 6.66667em;
	height: 6.66667em;
	margin: 0 -3.33333em;
	font-style: italic;
	font-size: 1.2em;
	color: white;
	text-align: center;
	text-shadow: 0 1px 0 #5d9430;
}
.highlight-box a:hover {
	text-decoration: none;
}
.highlight-box a:hover .highlight-box-link-label {
	-webkit-transform: perspective(750px) rotateX(180deg);
	-moz-transform: perspective(750px) rotateX(180deg);
	-ms-transform: perspective(750px) rotateX(180deg);
	-o-transform: perspective(750px) rotateX(180deg);
	transform: perspective(750px) rotateX(180deg);
}
.highlight-box a:hover .highlight-box-link-icon {
	-webkit-transform: perspective(750px) rotateX(360deg);
	-moz-transform: perspective(750px) rotateX(360deg);
	-ms-transform: perspective(750px) rotateX(360deg);
	-o-transform: perspective(750px) rotateX(360deg);
	transform: perspective(750px) rotateX(360deg);
}
.highlight-box .highlight-box-link-label,
.highlight-box .highlight-box-link-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1.66667em 0.83333em 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: #75bb3c;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	transition: transform 0.3s;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: perspective(750px);
	-moz-transform: perspective(750px);
	-ms-transform: perspective(750px);
	-o-transform: perspective(750px);
	transform: perspective(750px);
}
.highlight-box .highlight-box-link-icon {
	-webkit-transform: perspective(750px) rotateX(180deg);
	-moz-transform: perspective(750px) rotateX(180deg);
	-ms-transform: perspective(750px) rotateX(180deg);
	-o-transform: perspective(750px) rotateX(180deg);
	transform: perspective(750px) rotateX(180deg);
}
.highlight-box .highlight-box-link-icon:before {
	top: 0.10417em;
	margin-right: 0;
	font-size: 2.66667em;
}

.highlight-headline h1,
.highlight-headline h2,
.highlight-headline h3 {
	color: #5a5d63;
	text-align: center;
	line-height: 1.5;
}
.highlight-headline h1 {
	margin-bottom: 1.28571em;
	font-size: 1.86667em;
}
.highlight-headline h2 {
	margin-bottom: 1.5em;
	font-size: 1.6em;
}
.highlight-headline h3 {
	margin-bottom: 1.71429em;
	font-size: 1.4em;
}

.testimonial,
.main-content .testimonial {
	font-size: 1.2em;
}
.testimonial:before,
.main-content .testimonial:before {
	content: none;
}
.testimonial > p,
.main-content .testimonial > p {
	position: relative;
	padding: 1.11111em;
	border: 1px solid #c2c6cc;
}
.testimonial > p:before,
.testimonial > p:after,
.main-content .testimonial > p:before,
.main-content .testimonial > p:after {
	content: "";
	position: absolute;
	right: 29px;
	bottom: -32px;
	width: 0;
	height: 0;
	border-color: #b4b9c0 transparent transparent transparent;
	border-style: solid;
	border-width: 32px 32px 0 0;
}
@media screen and (max-width: 599px) {
	.testimonial > p:before,
	.testimonial > p:after,
	.main-content .testimonial > p:before,
	.main-content .testimonial > p:after {
		content: none;
	}
}
.testimonial > p:after,
.main-content .testimonial > p:after {
	right: 30px;
	bottom: -30px;
	border-color: #ffffff transparent transparent transparent;
	border-width: 30px 30px 0 0;
}

.testimonial-author,
.testimonial .testimonial-author {
	font-size: 0.86667em;
}
@media screen and (max-width: 599px) {
	.testimonial-author,
	.testimonial .testimonial-author {
		font-size: 1.06667em;
	}
}
.testimonial-author img,
.testimonial .testimonial-author img {
	float: left;
	margin-left: 1.53846em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
@media screen and (max-width: 599px) {
	.testimonial-author img,
	.testimonial .testimonial-author img {
		margin-left: 0;
	}
}
.testimonial-author > small,
.testimonial .testimonial-author > small {
	margin: 0.46154em 0 2em 1.53846em;
}
.testimonial-author > img + small,
.testimonial-author > picture + small,
.testimonial .testimonial-author > img + small,
.testimonial .testimonial-author > picture + small {
	margin: 1.07692em 0 0 0.76923em;
}
.testimonial-author small,
.testimonial .testimonial-author small {
	float: left;
}
.testimonial-author small:before,
.testimonial .testimonial-author small:before {
	content: none;
}
.testimonial-author small a:after,
.testimonial .testimonial-author small a:after {
	content: none;
}

.contact-box-map {
	position: relative;
	/* Fixes bug in iOS with too small maps */
	min-height: 280px;
	padding-bottom: 56.25%;
}
.contact-box-map > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.contact-box > ul {
	padding: 0;
	list-style-type: none;
}

.contact-box-address,
.contact-box-hours,
.contact-box-phone,
.contact-box-fax,
.contact-box-email {
	position: relative;
	padding-left: 1.53846em;
}
.contact-box-address:before,
.contact-box-hours:before,
.contact-box-phone:before,
.contact-box-fax:before,
.contact-box-email:before {
	font: 0.92308em/1 "RockSolid Icons";
	content: "\e0d3";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0.33333em;
	left: 0;
	color: #c2c6cc;
}

.contact-box-hours:before {
	content: "\e049";
}

.contact-box-phone:before {
	content: "\e0e6";
}

.contact-box-fax:before {
	content: "\e078";
}

.contact-box-email:before {
	content: "\e0cd";
}

/* ===========================================
 * Footer styles
 * ======================================== */
.page-footer {
	background-color: #44464b;
}

.page-footer-inner {
	zoom: 1;
	padding: 3% 0 0;
	font-size: 0.86667em;
	color: #c2c6cc;
	/* collapse white-space between inline-block elements */
	letter-spacing: -0.3em;
}
.page-footer-inner:before {
	content: "";
	display: table;
}
.page-footer-inner:after {
	content: "";
	display: table;
	clear: both;
}
@media screen and (max-width: 900px) {
	.page-footer-inner {
		margin-top: 0;
	}
}
.page-footer-inner h1,
.page-footer-inner h2,
.page-footer-inner h3 {
	margin: 0 0 1.66667em;
	padding: 0 0 0.41667em;
	border-bottom: 1px solid #5a5d63;
	font-size: 0.92308em;
	color: #ffffff;
	text-transform: uppercase;
}
.page-footer-inner ul {
	padding: 0;
	list-style: none;
}
.page-footer-inner a {
	color: #ffffff;
	text-decoration: none;
}
.page-footer-inner a:hover,
.page-footer-inner a:focus {
	text-decoration: underline;
}
.page-footer-inner form label {
	position: absolute;
	left: 1.30769em;
	top: 1.15385em;
	color: #83868b;
}
.page-footer-inner form .error + label {
	top: 2.76923em;
}
.page-footer-inner form input,
.page-footer-inner form textarea {
	width: 81.81818%;
	padding: 1.15385em 1.15385em 1em;
	border-color: #3d3f43 transparent #5c5f66;
	background: #44464b;
	background: -webkit-linear-gradient(#3d3f43, #5c5f66) 0 0/1px 100% no-repeat, -webkit-linear-gradient(#3d3f43, #5c5f66) 100% 0/1px 100% no-repeat, -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.02)), #44464b;
	background: -moz-linear-gradient(#3d3f43, #5c5f66) 0 0/1px 100% no-repeat, -moz-linear-gradient(#3d3f43, #5c5f66) 100% 0/1px 100% no-repeat, -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.02)), #44464b;
	background: -o-linear-gradient(#3d3f43, #5c5f66) 0 0/1px 100% no-repeat, -o-linear-gradient(#3d3f43, #5c5f66) 100% 0/1px 100% no-repeat, -o-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.02)), #44464b;
	background: linear-gradient(#3d3f43, #5c5f66) 0 0/1px 100% no-repeat, linear-gradient(#3d3f43, #5c5f66) 100% 0/1px 100% no-repeat, linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.02)), #44464b;
	-webkit-background-origin: border, border;
	-moz-background-origin: border, border;
	background-origin: border-box, border-box;
	-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 900px) {
	.page-footer-inner form input,
	.page-footer-inner form textarea {
		width: 100%;
	}
}
.page-footer-inner form input:focus,
.page-footer-inner form textarea:focus {
	border-color: #5c8043;
}
.page-footer-inner form button,
.page-footer-inner form input[type="submit"] {
	font-size: 1.15385em;
	padding-right: 2.66667em;
	padding-left: 2.66667em;
}

.footer-column {
	display: inline-block;
	width: 20%;
	margin: 0 0 4% 4%;
	letter-spacing: 0;
	vertical-align: top;
}
.footer-column.-large {
	width: 44%;
}

@media screen and (max-width: 900px) {
	.footer-column,
	.footer-column-1,
	.footer-column.-large {
		width: 40%;
		margin-left: 6.66667%;
	}
}
@media screen and (max-width: 599px) {
	.footer-column,
	.footer-column-1,
	.footer-column.-large {
		display: block;
		width: auto;
		margin-top: 10%;
		margin-right: 6.66667%;
	}
}

.footer-map {
	display: block;
	margin: 0 -3px;
	border: 3px solid #5a5d63;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.footer-map:hover,
.footer-map:focus {
	border-color: #1e2022;
}
.footer-map:after {
	content: none !important;
}
.footer-map img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-address,
.footer-hours,
.footer-phone,
.footer-fax,
.footer-email {
	position: relative;
	padding-left: 1.53846em;
}
.footer-address:before,
.footer-hours:before,
.footer-phone:before,
.footer-fax:before,
.footer-email:before {
	font: 0.92308em/1 "RockSolid Icons";
	content: "\e0d3";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: 0.33333em;
	left: 0;
	color: #c2c6cc;
}

.footer-hours:before {
	content: "\e049";
}

.footer-phone:before {
	content: "\e0e6";
}

.footer-fax:before {
	content: "\e078";
}

.footer-email:before {
	content: "\e0cd";
}

.footer-link-list {
	margin: -0.76923em 0 1em;
}
.footer-link-list a {
	display: block;
	padding: 0.76923em 0;
	border-top: 1px dotted #c2c6cc;
}
.footer-link-list a:before {
	font: 0.46154em/1 "RockSolid Icons";
	content: "\e019";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	top: -0.33333em;
	margin-right: 0.83333em;
}
.footer-link-list > li:first-child > a {
	border-top: 0;
}

.page-footer .mod_newslist article {
	border-bottom: 0;
}
.page-footer .mod_newslist .news-boxes-item {
	font-size: 1em;
}
.page-footer .mod_newslist .news-boxes-item .news-boxes-item-info {
	margin-top: 1.92308em;
	color: #c2c6cc;
}
.page-footer .mod_newslist .news-boxes-item h4 {
	margin: 0 0 0.46154em;
	line-height: 1.38462;
}
.page-footer .mod_newslist .news-boxes-item h4 > a {
	color: #ffffff;
}

.footer-navigation {
	zoom: 1;
	clear: both;
	margin: 0 4%;
	padding: 2.30769em 0 1.53846em;
	border-top: 1px solid #5a5d63;
	letter-spacing: 0;
}
.footer-navigation:before {
	content: "";
	display: table;
}
.footer-navigation:after {
	content: "";
	display: table;
	clear: both;
}
@media screen and (max-width: 900px) {
	.footer-navigation {
		margin: 0 6.66667%;
	}
}
.footer-navigation .social-links {
	float: right;
	margin: 0;
	padding: 0;
	font-size: 1.23077em;
}
@media screen and (max-width: 599px) {
	.footer-navigation .social-links {
		float: none;
		margin-left: -0.5em;
	}
}
.footer-navigation .social-links li {
	display: inline;
}
.footer-navigation .social-links a {
	display: inline-block;
	width: 1.0625em;
	overflow: hidden;
	margin-left: 0.5em;
	white-space: nowrap;
}
.footer-navigation .social-links a:hover,
.footer-navigation .social-links a:focus {
	color: inherit;
}

.footer-info-links {
	display: inline;
}
.footer-info-links ul,
.footer-info-links li {
	display: inline;
	margin: 0;
	padding: 0;
}
.footer-info-links li:after {
	content: " · ";
	margin: 0 2px;
}

.footer-info {
	display: inline;
}
@media screen and (max-width: 599px) {
	.footer-info {
		text-align: left;
		clear: both;
	}
}
.footer-info p {
	display: inline;
	margin: 0;
}
.footer-info .rocksolid-copyright {
	color: #c2c6cc;
}
.footer-info .rocksolid-copyright:before {
	content: "·";
	display: inline-block;
	margin: 0 0.38462em 0 0.15385em;
}

/* ===========================================
 * Slider styles
 * ======================================== */
.rsts-skin-testimonials.rsts-main {
	position: relative;
	margin: 1.8em 0;
}
.rsts-skin-testimonials .rsts-header {
	border-bottom: 1px solid #e5e5e5;
}
.rsts-skin-testimonials .rsts-header h1,
.rsts-skin-testimonials .rsts-header h2,
.rsts-skin-testimonials .rsts-header h3,
.rsts-skin-testimonials .rsts-header h4,
.rsts-skin-testimonials .rsts-header h5,
.rsts-skin-testimonials .rsts-header h6 {
	margin: 0;
	padding: 0.14286em 0 0.64286em;
	font-size: 0.93333em;
	font-weight: 600;
	color: #5a5d63;
	letter-spacing: 0.07143em;
	text-transform: uppercase;
}
.rsts-skin-testimonials .rsts-prev,
.rsts-skin-testimonials .rsts-next {
	position: absolute;
	top: -0.33333em;
	left: 0;
	overflow: hidden;
	text-indent: -99em;
	line-height: 0;
}
.rsts-skin-testimonials .rsts-prev:hover,
.rsts-skin-testimonials .rsts-next:hover {
	text-decoration: none;
}
.sidebar .rsts-skin-testimonials .rsts-prev,
.sidebar .rsts-skin-testimonials .rsts-next {
	bottom: 0.4em;
}
.rsts-skin-testimonials .rsts-prev:after,
.rsts-skin-testimonials .rsts-next:after {
	font: 0.66667em/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	display: block;
	padding: 1em;
	color: #c2c6cc;
}
.rsts-skin-testimonials .rsts-next {
	left: 2.06667em;
}
.rsts-skin-testimonials .rsts-next:after {
	content: "\e019";
}
.rsts-skin-testimonials .rsts-nav {
	position: absolute;
	right: -5px;
	top: 2px;
	line-height: 0;
}
.rsts-skin-testimonials .rsts-nav ul {
	margin: 0;
	padding: 0;
}
.rsts-skin-testimonials .rsts-nav li {
	display: inline;
}
.rsts-skin-testimonials .rsts-nav a {
	float: left;
	width: 17px;
	height: 17px;
	overflow: hidden;
	outline: none;
	padding: 5px;
	text-indent: -99em;
}
.rsts-skin-testimonials .rsts-nav a:after {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: #c2c6cc;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
}
.rsts-skin-testimonials .rsts-nav a:hover:after,
.rsts-skin-testimonials .rsts-nav a.active:after {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
	width: 10px;
	height: 10px;
	margin: -1px;
}
.rsts-skin-testimonials .rsts-nav-prev,
.rsts-skin-testimonials .rsts-nav-next {
	display: none !important;
}

/* ===========================================
 * Module styles (Search, FAQ, News, Events, Comments, Sitemap etc.)
 * ======================================== */
.fixed-note {
	position: fixed;
	display: table;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 4em;
	padding: 0.8em 1.33333em 0.8em 5.33333em;
	border-top: 1px solid #c2c6cc;
	z-index: 99;
	background-color: #ffffff;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
	.fixed-note {
		position: relative;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note {
		display: block;
		padding-left: 1.33333em;
	}
}
.fixed-note:before {
	position: absolute;
	top: 50%;
	margin-top: -0.5em;
	left: 0.83333em;
	font-size: 2.4em;
	color: #75bb3c;
}
@media screen and (max-width: 900px) {
	.fixed-note:before {
		top: 0.66667em;
		margin-top: 0;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note:before {
		position: static;
	}
}
.fixed-note h1,
.fixed-note h2,
.fixed-note h3 {
	font-size: 1em;
	margin: 0.4em 0;
}
.fixed-note p {
	font-size: 0.93333em;
	margin: 0.42857em 0;
}
@media screen and (max-width: 599px) {
	.fixed-note p {
		font-size: 1.06667em;
	}
}

.fixed-note-column {
	display: table-cell;
	vertical-align: middle;
	padding: 0 0.66667em;
}
.fixed-note-column:last-child {
	text-align: right;
}
@media screen and (max-width: 900px) {
	.fixed-note-column:last-child {
		text-align: left;
	}
}
@media screen and (max-width: 900px) {
	.fixed-note-column {
		display: block;
		margin: 0.8em 0;
		padding: 0;
	}
}

.fixed-note-link,
.fixed-note-button {
	white-space: nowrap;
}

.fixed-note-button {
	margin: 0;
}

.fixed-note-closed {
	position: fixed;
	right: 2em;
	bottom: 0;
	z-index: 99;
	padding: 0.53333em 0.8em;
	color: #ffffff;
	text-decoration: none;
	background: #75bb3c;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1100px) {
	.fixed-note-closed {
		right: 0;
	}
}
@media screen and (max-width: 900px) {
	.fixed-note-closed {
		position: absolute;
		top: 0.8em;
		right: 6.66667%;
		bottom: auto;
		padding: 0.26667em 0.8em;
	}
}
@media screen and (max-width: 599px) {
	.fixed-note-closed {
		right: 0.8em;
	}
}
.fixed-note-closed:hover,
.fixed-note-closed:focus {
	background-color: #5d9430;
}
.fixed-note-closed:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0a6";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
}
.fixed-note-closed > span {
	display: none;
}

.back a:before,
.previous a:before,
.next a:after {
	font: 100%/1 "RockSolid Icons";
	content: "\e018";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.33333em;
}

.next a:after {
	content: "\e019";
	margin-right: 0;
	margin-left: 0.33333em;
}

.pagination > p {
	text-align: center;
}
.pagination ul {
	padding: 0 !important;
	list-style-type: none !important;
	text-align: center;
}
.pagination ul li {
	display: inline-block;
}
.pagination ul li a,
.pagination ul li span {
	padding: 0.33333em 0.66667em;
}
.pagination ul li .current {
	font-weight: bold;
}

/* Search */
.main-content .mod_search {
	margin: 1.33333em 0;
}
.main-content .mod_search form input[type="search"] {
	width: 74%;
	margin: 0;
}
.main-content .mod_search form input[type="submit"] {
	width: 25%;
	margin-top: -1px;
	margin-right: -2%;
	margin-left: 0;
}
.main-content .mod_search h3 span.relevance {
	display: block;
	margin: 0.25em 0;
	font-size: 0.66667em;
	color: #5a5d63;
}
.main-content .mod_search .header {
	padding-bottom: 0.33333em;
	border-bottom: 1px solid #c2c6cc;
	color: #5a5d63;
}
.main-content .mod_search .highlight {
	padding: 0 0.26667em;
	font-weight: bold;
	background: #d2edf5;
}
.main-content .mod_search .url {
	padding-bottom: 1.33333em;
	border-bottom: 1px dotted #c2c6cc;
	color: #5a5d63;
}
.main-content .mod_search .url:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e0b5";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.33333em;
}
.main-content .mod_search .url .filesize {
	font-size: 0.8em;
}
.main-content .mod_search .context {
	display: block;
	clear: both;
}

/* FAQ */
.mod_faqpage section {
	position: relative;
	margin: 2.66667em 0;
	padding-left: 7.69231%;
}
.mod_faqpage section h3 {
	color: #5a5d63;
}
.mod_faqpage section h3:before {
	font: 0.83333em/1 "RockSolid Icons";
	content: "\3f";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 1.54167em;
	height: 1.5em;
	padding: 0.25em 0 0 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	color: #ffffff;
	text-align: center;
	background: #75bb3c;
}

.mod_faqpage .info,
.mod_faqreader .info {
	font-size: 12px;
	color: #5a5d63;
}

.mod_faqlist ul {
	padding: 0 !important;
	list-style-type: none !important;
}
.mod_faqlist ul li:before {
	font: 0.93333em/1 "RockSolid Icons";
	content: "\3f";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 1.42857em;
	height: 1.42857em;
	margin: 0 0.57143em 0 0;
	padding: 0.21429em 0 0 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	text-align: center;
	color: #ffffff;
	background: #1fa5d1;
}

/* News */
.mod_newslist article,
.mod_newsarchive article {
	margin-bottom: 2.4em;
	padding-bottom: 0.8em;
	border-bottom: 1px solid #e5e5e5;
}
.mod_newslist article img,
.mod_newsarchive article img {
	width: 100%;
	height: auto;
	margin: 0.8em 0;
}
.mod_newslist article h2,
.main-content .mod_newslist article h2,
.mod_newsarchive article h2,
.main-content .mod_newsarchive article h2 {
	margin: 0.53571em 0 0.35714em;
	font-size: 1.6em;
	line-height: 1.5;
}
.mod_newslist article h2 a,
.mod_newsarchive article h2 a {
	color: #1e2022;
}
.mod_newslist article header,
.mod_newsarchive article header {
	float: left;
	width: 23.07692%;
	padding-top: 0.16667em;
	font-size: 0.8em;
	line-height: 2;
}
@media screen and (max-width: 599px) {
	.mod_newslist article header,
	.mod_newsarchive article header {
		float: none;
		width: auto;
		font-size: 0.85714em;
		line-height: 1.6666;
	}
}
.mod_newslist article header p,
.mod_newsarchive article header p {
	margin: 0 !important;
}
.mod_newslist article header i,
.mod_newsarchive article header i {
	font-family: "Droid Serif", Georgia, serif;
	color: #5a5d63;
}
.mod_newslist article header a,
.mod_newsarchive article header a {
	color: inherit;
}
.mod_newslist article .teaser,
.mod_newsarchive article .teaser {
	margin-left: 30.76923%;
}
@media screen and (max-width: 599px) {
	.mod_newslist article .teaser,
	.mod_newsarchive article .teaser {
		margin-left: 0;
	}
}
.mod_newslist article .teaser > p:first-child,
.mod_newsarchive article .teaser > p:first-child {
	margin-top: 0;
}

.news-boxes-item,
.mod_newslist .news-boxes-item {
	font-size: 0.86667em;
}
.news-boxes-item:before,
.mod_newslist .news-boxes-item:before {
	content: none;
}
.news-boxes-item > h3,
.mod_newslist .news-boxes-item > h3 {
	font: bold 1em "Open Sans", sans-serif;
	margin: 0 0 0.46154em;
}
.news-boxes-item > h3 > a,
.mod_newslist .news-boxes-item > h3 > a {
	color: #5a5d63;
}
.news-boxes-item .news-boxes-item-info,
.mod_newslist .news-boxes-item .news-boxes-item-info {
	margin: 0.54545em 0;
	font: italic 0.84615em "Droid Serif", Georgia, serif;
	color: #5a5d63;
}
.news-boxes-item .news-boxes-item-info > .comment-count,
.mod_newslist .news-boxes-item .news-boxes-item-info > .comment-count {
	color: inherit;
	text-decoration: none;
}
.news-boxes-item .news-boxes-item-info > .comment-count:before,
.mod_newslist .news-boxes-item .news-boxes-item-info > .comment-count:before {
	content: "· ";
}
.news-boxes-item .news-boxes-item-info > .comment-count:first-child:before,
.mod_newslist .news-boxes-item .news-boxes-item-info > .comment-count:first-child:before {
	content: none;
}

/* Events */
.mod_calendar th {
	border-bottom: 1px solid #c2c6cc;
}
.mod_calendar th.previous,
.mod_calendar th.next {
	font-size: 0.93333em;
	padding: 0;
}
.mod_calendar th.previous a,
.mod_calendar th.next a {
	padding: 0.66667em 1em;
	display: block;
	text-decoration: none;
}
.mod_calendar th.previous a:after,
.mod_calendar th.previous a:before,
.mod_calendar th.next a:after,
.mod_calendar th.next a:before {
	display: none;
}
.mod_calendar th.current {
	text-align: center;
}
.mod_calendar th.current:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e036";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.33333em;
}
.mod_calendar th.next {
	text-align: right;
}
.mod_calendar th.label {
	font-size: 0.8em;
	text-align: center;
}
.mod_calendar td {
	width: 14.28571%;
	background: #f7f7f7;
	vertical-align: top;
}
.mod_calendar td.empty {
	background: none;
}
.mod_calendar td.today {
	font-weight: bold;
	color: #1e2022;
	background: #ebebeb;
}
.mod_calendar .event {
	font-size: 0.8em;
}
.mod_calendar .minicalendar td,
.mod_calendar .minicalendar th {
	padding: 0;
	text-align: center;
}
.mod_calendar .minicalendar td.previous a,
.mod_calendar .minicalendar td.next a,
.mod_calendar .minicalendar th.previous a,
.mod_calendar .minicalendar th.next a {
	padding-left: 0;
	padding-right: 0;
}

.mod_eventreader .info,
.mod_eventlist .header {
	font-weight: bold;
}

.mod_eventreader .info time:before,
.mod_eventlist .header:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e036";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.33333em;
}

/* Comments */
.ce_comments {
	margin-top: 2.66667em;
}
.ce_comments .comment_default {
	position: relative;
	padding: 1.6em 0;
	margin-bottom: 1.33333em;
	border-top: 1px solid #e5e5e5;
}
.ce_comments .comment_default:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 30.76923%;
	height: 3px;
	background: #75bb3c;
}
.ce_comments .comment_default > .info {
	float: left;
	width: 30.76923%;
	font-size: 0.8em;
	line-height: 2;
}
@media screen and (max-width: 599px) {
	.ce_comments .comment_default > .info {
		float: none;
		width: auto;
		font-size: 0.85714em;
		line-height: 1.6666;
	}
}
.ce_comments .comment_default > .info p {
	margin: 0 !important;
}
.ce_comments .comment_default > .info i {
	font-family: "Droid Serif", Georgia, serif;
	font-style: italic;
	color: #5a5d63;
}
.ce_comments .comment_default > .info a {
	color: inherit;
}
.ce_comments .comment_default > .info a:after {
	content: none;
}
.ce_comments .comment_default > .comment {
	margin-left: 38.46154%;
	font-size: 0.86667em;
	line-height: 1.84615;
}
@media screen and (max-width: 599px) {
	.ce_comments .comment_default > .comment {
		margin-left: 0;
		font-size: 0.92857em;
	}
}
.ce_comments .comment_default > .comment p {
	margin: 0.53846em 0 !important;
}
.ce_comments .comment_default > .reply {
	position: relative;
	margin: 1.6em -3.84615% 1.6em 34.61538%;
	padding: 0.33333em 3.84615%;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 599px) {
	.ce_comments .comment_default > .reply {
		margin-left: -3.84615%;
	}
}
.ce_comments .comment_default > .reply:before {
	font: 2.13333em/1 "RockSolid Icons";
	content: "\e032";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	position: absolute;
	top: -2px;
	right: 5.55556%;
	margin-right: -0.1875em;
	color: #75bb3c;
}
.ce_comments .comment_default > .reply > .info {
	padding-bottom: 0.66667em;
	border-bottom: 1px solid #e5e5e5;
	font-weight: bold;
	font-size: 0.8em;
	letter-spacing: 0.08333em;
	color: #5a5d63;
	text-transform: uppercase;
}
.ce_comments .comment_default > .reply > .info b {
	padding: 0 0.41667em;
	-webkit-border-radius: 0.16667em;
	-moz-border-radius: 0.16667em;
	border-radius: 0.16667em;
	color: white;
	background: #75bb3c;
}
.ce_comments .comment_default > .reply > .comment {
	font-size: 0.86667em;
	line-height: 1.84615;
}
.ce_comments .comment_default > .reply > .comment p {
	margin: 0.53846em 0 !important;
}
.ce_comments .form {
	margin-top: 2.66667em;
}
.ce_comments form input {
	float: right;
	width: 61.53846%;
	margin-right: 0;
}
.ce_comments form input[type="submit"] {
	float: none;
	width: auto;
	margin: 0;
}
@media screen and (max-width: 599px) {
	.ce_comments form input {
		width: 100%;
	}
}
.ce_comments form textarea {
	width: 100%;
	margin-left: 0;
}
.ce_comments form label {
	display: inline-block;
	padding-top: 1.06667em;
	font-size: 0.86667em;
}
@media screen and (max-width: 599px) {
	.ce_comments form label {
		padding-top: 0.26667em;
		font-size: 1em;
	}
}
.ce_comments form label[for="ctrl_email"] {
	padding: 0;
}
@media screen and (max-width: 599px) {
	.ce_comments form label[for="ctrl_email"] {
		padding-top: 0.26667em;
	}
}
.ce_comments form fieldset {
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
}
.ce_comments form fieldset label {
	float: none;
	margin-left: 0.33333em;
}
.ce_comments form fieldset input[type="checkbox"],
.main-content .ce_comments form fieldset input[type="checkbox"] {
	float: none;
	width: auto;
	margin: 0;
}
.ce_comments form .widget {
	clear: both;
	padding-top: 1.33333em;
}
.ce_comments form .captcha_text {
	float: none;
	display: inline;
	margin: 0;
	width: auto;
}

/* Sitemap */
.main-content .mod_sitemap ul {
	padding-left: 0;
	list-style-type: none;
}
.main-content .mod_sitemap ul li li {
	padding: 0.21429em 0 0.21429em 1.85714em;
	font-size: 0.93333em;
}
.main-content .mod_sitemap ul li li.submenu ul {
	margin: 0;
}
.main-content .mod_sitemap > ul > li:before {
	font: 100%/1 "RockSolid Icons";
	content: "\e083";
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	text-indent: 0;
	display: inline-block;
	position: relative;
	margin-right: 0.66667em;
	color: #1fa5d1;
}

/* Login */
.mod_login input {
	width: 80% !important;
	margin-left: 0 !important;
}
.mod_login table {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.mod_login table td {
	border: 0;
	padding: 0.33333em 0;
}

/* Newsletter */
.main-content .mod_nl_list ul {
	padding-left: 0;
	list-style-type: none;
}
.main-content .mod_nl_list ul li {
	padding: 0.33333em 0;
	border-top: 1px solid #c2c6cc;
}
.main-content .mod_nl_list ul li:first-child,
.main-content .mod_nl_list ul li.first {
	border-top: 0;
}

/* Breadcrumbs */
.mod_breadcrumb {
	clear: both;
	font-size: 0.86667em;
}
.mod_breadcrumb ul,
.mod_breadcrumb li {
	display: inline;
	margin: 0;
	padding: 0;
}
.mod_breadcrumb li:before {
	content: " \A0 / \A0 ";
}
.mod_breadcrumb li:first-child:before {
	content: none;
}
.mod_breadcrumb a {
	color: inherit;
	text-decoration: underline;
}
.mod_breadcrumb a:hover {
	text-decoration: none;
}

/* Style for dlh_googlemaps (if you don't use the plugin, you might want to delete this) */
.dlh_googlemap {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.sidebar .dlh_googlemap {
	/* Setting the maps width to 100% is best practice in the sidebar, since it becomes fluid that way */
	width: 100% !important;
}

.main-content .dlh_googlemap img {
	max-width: none;
}

/*
 * Name: layout.css
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#General Layout 
 *		#Header
 *		#Content
 *		#Footer
 *	#Page Styles
 *		#Index
 *		#About
 *		#Services
 *		#Portfolio
 *		#Blog
 *		#Contact
 *	#Responsive
 *		#Large Display
 *		#Smaller then 1024px width	
 *		#Tablet (Portrait)
 *		#Mobile (Portrait and Landscape )
 *		#Mobile ( Landscape )
 */

/* ==========================================================================
   #General Layout 
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	.invisible {
	    border: 0 none;
	    clip: rect(0px, 0px, 0px, 0px);
	    height: 1px;
	    margin: -1px;
	    overflow: hidden;
	    padding: 0;
	    position: absolute;
	    width: 1px;
	}

/* #Header Top
   ========================================================================== */	
   	
	#header-top { 
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
		height: 40px;
		padding: 0;
		background-color: #273a51;
		color: #fff;
	}
	
	#header-top a { color: #fff; font-size: 1.2em; line-height: 40px; }
	
	#header-top .widget-title span { background-color: #289dcc; }
	
	#header-top .widget-title:before,
	#header-top .widget_tag_cloud a { border-color: #fff; }
	
	#header-top .widget_tag_cloud a:hover,
	#header-top #newsletter-subscribe-form input[type="submit"]:hover { background-color: #0f5066; }
	
	#header-top .ewf_widget_contact_info ul li {
		display: inline-block;
		padding-left: 0;
		margin-right: 40px;
		margin-bottom: 0;
	}
	
	#header-top .ewf_widget_contact_info ul li:last-child { margin-right: 0; } 
	
	#header-top .ewf_widget_social_media { float: right; }
	
	#header-top .ewf_widget_social_media .social-icon {
		width: auto;
		height: 40px;
		margin-right: 15px;
		background-color: transparent;
	}
	
	#header-top .ewf_widget_social_media .social-icon i { 
		font-size: 20;
		line-height: 40px;
	}

	
/* #Header
   ========================================================================== */	
   	
/*	#header { padding: 0px 0 20px 0; }*/
	
	@media (min-width: 1024px) {
	

	/**
		 * 1. needs to be > 1000 because revolution slider navigation has high z-index
		 */
/*	.nobreadcrumb #content { padding-top: 236px; }*/
	
		#header {
			/*position: absolute;*/
			z-index: 1010;
			top: 0;
			right: 0;
			left: 0;
			padding: 0;
			margin: 0 auto;	
		}
		
		#header.stuck {
			position: fixed !important;
			z-index: 1010; /* 1 */
			top: 0;
			width: 100% !important;
			padding: 10px 0 0 0;
			-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
			margin-top: 0;
			background: none repeat scroll 0 0 #fff;
			-webkit-transition: padding 0.5s;
			     -o-transition: padding 0.5s;
					transition: padding 0.5s;
		}
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding-bottom: 0px; }
		
		#header.stuck .sf-menu li.dropdown ul,
		#header.stuck .sf-mega { margin-top: 0px; }
		
		#header.stuck .sf-menu li.dropdown ul ul { margin-top: 0; }

		#header.stuck #logo {
			margin: 0;
		}
		#header.stuck #logo img {
			max-width: 200px;
		}
		
		#content.stuck { padding-top: 317px; }

	
	}
	
	/* Logo */

	#logo { 
		display: block;		
		margin: 18px 0 0 0;
	}
	#logo img { display: block; float:right; }
		
	/* 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;
	}
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 210;
		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: left;
		/*width: 100%;*/
	} 
	
	.sf-menu a {
		display: block;
		padding: 10px 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
/*		font: 20px 'Open Sans', Arial, sans-serif;*/
		font: 20px Muli, sans-serif;
		color: #616161; 
		text-decoration: none;
	}
	
	.sf-menu li.dropdown a { padding: 10px 15px; }
.sf-menu li.dropdown a {
    padding: 12px 15px;
    font-size: 16px;
}	
	.sf-menu li:last-child > a { border-bottom: none; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		margin: 30px 30px 0 0;
		border: none;
		color: #616161;
		font-size: 21px;
		text-transform: uppercase;
		padding: 0 0 2px;
		border-bottom: 6px solid #fff;
	}

.sf-menu > li.active > a,
.sf-menu > li.trail > a {
	border-bottom: 6px solid #48719B;
}



@media (max-width: 1399px) {

.sf-menu > li > a, .sf-menu > li.dropdown > a {
    border: medium none;
    color: #818181;
    font-size: 18px;
    padding: 20px 20px 20px 0;
    text-transform: uppercase;
}


}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu li.trail > a,
	.sf-menu li.current > a,
	.sf-menu li.sfHover > a,
	.sf-menu a:hover,
	.sf-menu li.sfHover a:hover {
		color: #48719B;
		text-decoration: none;	
	}


/*	.sf-menu li li.trail > a,
	.sf-menu li li.current > a {
		font-weight: bold;
	}*/

	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 200px; /* 1 */
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #e9e9e9;			
	}

/*	.sf-menu > li.dropdown > ul { border-top: 3px solid #48719B; }*/
	
	.sf-menu > li.dropdown > ul li a:hover { 
		background-color: #48719B;
		color: #fff;
	}	
		
	/* mega menu dropdown */
	
	.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);
		border-top: 3px solid #48719B;	
		background-color: #e9e9e9;
	}
	
	.sf-mega-section {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}
	
	.sf-mega-section:last-child { border-right: none; }

	/* arrows */
	
	/* styling for both css and generated arrows */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		height: 0;
		width: 0;
		/* order of following 3 rules important for fallbacks to work */
		border: 5px solid transparent;
		border-top-color: rgba(0, 0, 0, 0.5);
		margin-top: -3px;
		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); }
	
	/* styling for right-facing arrows */
	
	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: rgba(0 ,0, 0, 0.5);
		margin-top: -5px;
		margin-right: -3px;
	}
	
	.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); }
	
	/* Mobile Menu  */
			
	#mobile-menu {
		z-index: 20;
		border-bottom: 1px solid #e9e9e9;
		margin-bottom: 0;
		background-color: #48719B;
	}
	
	#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;
		background-color: #48719B;
	}
	
	#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 #e9e9e9;
		color: #fff;
		font-size: 18px;
		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;
		height: 100%;
		width: 70px;
		border-left: 1px solid #efefef;
		color: #fff;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #273a51; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }
	
	/* Mobile menu trigger  */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;  
		font-size: 32px;
	}				
	
	/* Custom Search Form */
	
	#custom-search-button + .sf-menu { margin-right: 30px; }
	
	#custom-search-button { 
		position: absolute;
		top: 49px;
		right: 0;
		display: block;
		width: 16px;
		height: 16px;
		background: url(../../files/images/bg-search.png) no-repeat center center;
	}
	
	#custom-search-button.open { 
		background: none;
		text-decoration: none;
	}
	
	#custom-search-button.open:before {
		position: absolute;
		top: -4px;
		color: #69675b;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "";
	}
	
	#custom-search-form {
		position: absolute;
		z-index: 2000;
		top: 86px;
		right: 0;
		display: none;
	}
	
	#custom-search-submit {
		position: absolute;
		top: 0;
		right: 5px;
		border: none;
		background: url(../../files/images/bg-search.png) no-repeat center center;
	}
	
	#s { background-color: #fff; }
	#s:focus { border-color: #d7d7d7; }
	
/* #Content
   ========================================================================== */
   		
	#content { 
		min-height: 300px; 
		padding-bottom: 0px;  
	}

	/* Page Header */
	
	#page-header {
		padding: 40px 0 40px 0;
/*		border-top: 1px solid #cdcdcd;*/
/*		border-bottom: 1px solid #cdcdcd;*/
		margin-bottom: 0px;
		background-color: #e9e9e9;
	}
	
	#page-header h2 { margin-bottom: 0; text-transform: uppercase;
    color: #48719b;
    font-size: 33px;
    line-height: 42px;
	}
	#page-header h1 { margin-bottom: 0; text-transform: uppercase;
    color: #48719B;
    font-size: 30px;
    line-height: 42px;
	}
	#page-header p { margin-bottom: 0; color: #273a51; font-size: 18px;


	 }
	
			
/* #Footer
   ========================================================================== */		
			
	#footer {
		padding: 80px 0;
		background-color: #48719b;
		color: #fff;
	}
	
	#footer a, #footer p, #footer-bottom p { color: #fff;     font-size: 14px;
    line-height: 1.4em;
 }
	
	#footer .widget { margin-bottom: 40px; }
	
	#footer .widget-title { margin-bottom: 70px; }
	
	#footer .widget-title span { background-color: #4b4b4b; }
	
	#footer .widget-title:before,
	#footer .widget_tag_cloud a { border-color: #c4c4c4; }
	#footer a:hover { color: #273a51; }

	#footer .ewf_widget_social_media .social-icon {
		width: 26px;
		height: 26px;
		margin-right: 5px;
		background-color: #48719B;
		color: #fff;
	}
	
	#footer .ewf_widget_social_media .social-icon i {
		font-size: 28px;
		line-height: 28px;
	}
	
	#footer h3 {
		color: #fff;
	}

	#footer-bottom {
		padding: 30px 0;
		background-color: #273a51;
		color: #c5c5c5;
	}
	
	#footer-bottom a { color: #c5c5c5; }
	#footer-bottom a:hover { color: #fff; }
	
	#footer-bottom .widget-title span { background-color: #222; }
	
	#footer-bottom .widget-title:before,
	#footer-bottom .widget_tag_cloud a { border-color: #6e6e6e; }
	
	#footer-bottom .widget_pages ul { float: right; }
	
	#footer-bottom .widget_pages ul li { 
		display: inline-block;
		margin-right: 20px;
	}
	
	#footer-bottom .widget_pages ul li:last-child { margin-right: 0; }
	
/* ==========================================================================
   #Page Styles
   ========================================================================== */
   
/* #Index
   ========================================================================== */
   
   	.client-logos {
		margin-bottom: 50px;
		list-style: none;	
		text-align: center;
	}
	
	.client-logos li { display: inline-block; }
   
/* #About
   ========================================================================== */
   	
	.team-member { margin: 25px 0 50px 0; }
	
	.team-member h4 {
		padding-top: 20px;
		color: #48719B;
	}
	
	.team-member-thumb {
		position: relative;
		float: left;
		display: inline-block;
		border: 10px solid transparent;
		border-radius: 50%;
		margin-right: 30px;
	}
	
	.team-member-thumb img {
		display: block;
		max-width: 100%;
		border-radius: 50%;
	}
	
	.team-member-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0; 
		left: 0;
		border: 10px solid #48719B;
		border-radius: 50%;
		opacity: 0;
		-webkit-transition: 0.3s;
				transition: 0.3s; 
	}
	
	.team-member:hover .team-member-overlay { opacity: 0.5; }


/* #Services
   ========================================================================== */
      
/* #Portfolio
   ========================================================================== */
   
    /* Isotope */
	
	.portfolio-items { 
		margin-bottom: 40px;
		list-style: none; 
	}
	
	.portfolio-items li {
		float: left;
		width: 25%;
	}
	
	/* Portfolio Strip */
	
	.portfolio-strip {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.portfolio-strip li {
		float: left;
		width: 25%; /*33.3333333333%;*/
	}
	
	.portfolio-strip.two-col li { width: 50%; }
   
    /* Portfolio Item */
	
	.portfolio-item { 
		position: relative;
		overflow: hidden; 
		margin-bottom: 30px;
	}
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; padding: 15px; }
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview img {
		display: block;
		width: 100%;
		height: auto;
	}
	
	.portfolio-item-description {
		height: 75px;
		position: absolute;
		bottom: -50px;
		left: 0;
		width: 100%;
		padding: 5px 10px 10px 10px;
		background-color: #48719B;
		color: #fff;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-description h3,
	.portfolio-item-description p { margin-bottom: 0; color: #fff; }

.portfolio-item-description h3 {
    font-size: 20px;
    line-height: 1.5em;
    text-transform: uppercase;
}
	
	.portfolio-item-description a { color: #fff; }
	.portfolio-item-description a i { vertical-align: middle; }
	
	.portfolio-item-actions { 
		position: absolute;
		right: 0px;
		bottom: 0;
		width: 75px;
		height: 75px;
		background-color: #48719B;
		color: #fff;
		font-size: 80px;
		line-height: 75px;
		font-weight: 300;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-description + .portfolio-item-actions { border-left: 1px solid #fff; }
	
	.portfolio-item-actions a { color: #fff; }
	
	.portfolio-item-actions:hover { background-color: #0f5066; }
	
	.portfolio-item:hover .portfolio-item-description { 
		bottom: 0;
		opacity: 1;
	}

.portfolio-item .portfolio-item-description {
    background: rgba(39, 58, 81, 0.7) none repeat scroll 0 0;
    bottom: 0;
    box-sizing: border-box;
    opacity: 1;
}

.portfolio-item:hover .portfolio-item-description {
background-color: #92B648;
}

#introboxen .portfolio-item-description {
    padding: 20px 15px 20px;
}
		 
	.portfolio-item:hover .portfolio-item-actions { 
		right: 0;
		opacity: 1;
	}


.ce_gallery .portfolio-item-actions {
	background: rgba(144, 173, 0, 0.8);
    height: 100%;
    width: 100%;
}
.ce_gallery .inner {
    display: table;
    height: 100%;
    width: 100%;
}
.ce_gallery .portfolio-item-actions a {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}

.ce_gallery .portfolio-item-actions {
    line-height: unset;
}
				
	/* Portfolio Pagination */
	
	.pagination {
/*		float: right;
		margin: 50px 0;*/
		list-style: none; 

    float: left;
    list-style: outside none none;
    margin: 50px 0;
    text-align: center;
    width: 100%;
border-bottom: 1px solid #616161;		

	}
	
	.pagination li { 
		display: inline-block;
		margin-right: 0px;
	}


	
	.pagination li:last-child { margin-right: 0;}

	.pagination a, .pagination span { 
		display: block; 
		padding: 12px 16px;;
		/*background-color: #e9e9e9;*/
		color: #818181;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
		
	.pagination li a:hover {
/*		background-color: #48719B;*/
		color: #48719b;
	}
	.pagination li span.current {
		background-color: #48719b;
		color: #fff;
	}


	/* Portfolio filter */
	
	.portfolio-filter ul {
		float: right;
		margin-bottom: 100px;
		list-style: none;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 20px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a {
		display: block;
		padding: 10px 20px;
		background-color: #e9e9e9;
		color: #818181;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-filter ul li a.active,
	.portfolio-filter ul li a:hover {
		background-color: #48719B;
		color: #fff;
	}
	
/* #Blog
   ========================================================================== */
   
	/* Blog Post */
	
	.blog-post { margin-bottom: 60px; }
	
	.blog-post-title { margin-bottom: 15px; }
	
	.blog-post-thumb { margin-bottom: 20px; }
	
	.blog-post-thumb img {
		display: block;
		width: 100%;
	}
	
	.blog-post-info {
		margin-top: 45px; 
		text-align: center;
	}
	
	.blog-post-info img {
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 10px solid #48719B;
		border-radius: 50%;
		margin-bottom: 20px;
	}
	
	.blog-post-readmore {}
		
	.blog-post + .pagination { margin-top: 0px; }	
	
   
/* #Contact
   ========================================================================== */
   
	/* Contact Form */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
	
	#contact-form fieldset {}
	
	label.validation-error { color: #b55454; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border :1px solid #e9e9e9; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}
	
	#contact-form .btn { margin-right: 0; }
	
/* ==========================================================================
   #Responsive
   ========================================================================== */
   
/* #Large Display
   ========================================================================== */
   	
	@media (min-width: 1400px) {
		
		#wrap {}
		
		/* Index */
		
		.client-logos li { margin: 0 25px; }
		
		/* Portfolio */
		
		.portfolio-strip li { width: 25%; }
		
.portfolio-item-description {
    padding: 28px 15px 27px;
}		

	.portfolio-item-description {
		height: 115px;
	}
		.portfolio-item-actions { 
			width: 115px;
			height: 115px;
			line-height: 115px;
		}

.portfolio-item-description h3 {
 	font-size: 24px;
    line-height: 1.2em;
    text-transform: uppercase;
}		
		
		.portfolio-filter ul li a { padding: 15px 30px; }
		
	}

	@media (max-width: 1399px) {

#footer-bottom-widget-area-2 ul {
    padding-right: 60px;
}


		.sf-menu > li > a, .sf-menu > li.dropdown > a {
			margin: 20px 0px 0 0;
		}

	}


/* #Smaller then 1024px width
   ========================================================================== */
	
	@media (max-width: 1024px) {


		#wrap {}
		
		#header {}
		
		#content {}
		
		#footer {}
		
	}

/* #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 980px) {
	}



	@media (min-width: 768px) and (max-width: 979px) {


#logo .responsive-img {
    height: auto;
    max-width: 180px;
    margin-right: 50px;
}
		
		#wrap {}
		
		#header { padding-bottom: 40px; }
		
		#menu, .mod_breadcrumb, .breadcrumb { display: none; }
		
		#mobile-menu-trigger { 
			display: block;
			margin-right: 10px;
			margin-top: 16px;
			    position: absolute;
    right: 0;
    top: -70px;

		}	
		
		#content {}
		
		#footer {}
		
		#footer-bottom .widget_pages ul li { margin-right: 10px; }
		
		/* Index */
		
		.client-logos li { margin: 0 25px; }				
		
		/* About */
		
		.team-member-thumb { 
			float: none;
			margin-right: 0;
		}
		
		/* Portfolio */
		
		.portfolio-item-description h3 { font-size: 18px; }
.portfolio-item-description h3 {
    font-size: 15px;
    line-height: 1.2em;
    text-transform: uppercase;
}
		
		.portfolio-item-actions { 
			width: 50px;
			height: 50px;
			font-size: 30px;
			line-height: 50px;
		}
		
	.portfolio-item-description {
		height: 50px;
	}

		.portfolio-filter ul li { margin-right: 10px; }
		
		.portfolio-filter ul li a { 
			padding: 10px 15px;
			font-size: 14px;
		}

	}


@media (min-width: 768px) and (max-width: 979px) {
	#header-top a { color: #fff; font-size: 1em; line-height: 40px; }
}


	
/* #Mobile (Portrait and Landscape )
   ========================================================================== */
	
	@media (max-width: 767px) {
	
		body { 
			background: none; 
			background-color: #fff; 
		}

.nachunten { display: none;}

.span6 .portfolio-item-slider {
	padding-bottom: 40px;
}

#logo .responsive-img {
    height: auto;
    max-width: 180px;
    margin-right: 50px;
}


		#wrap { border-top: 5px solid #48719B; }
		
		#header-top #header-top-widget-area-1 { display: none; }
		
		#header { padding: 30px 0; }	
		
		#logo { margin: 0}
		
		#menu, .mod_breadcrumb, .breadcrumb { display: none; }
		
		#mobile-menu-trigger { 
			position: absolute;
			top: -70px;
			right: 20px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}
		
		#content {}
		
		#footer {}
		
		#footer .widget:last-child { margin-bottom: 40px; }
		#footer .widget-title { margin-bottom: 30px; }

		.row, .mod_newslist { padding: 0 40px; }
		.widget .mod_newslist,
		/*.blogsidebar.mod_newslist { padding: 0; }*/
		
		.row .row { 
			width: auto; 
			padding: 0; 
			margin: 0; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last, 
		ul.last, 
		ol.last { margin-bottom: 20px; }
		
		.text-right{ text-align: left; }
		
		/* Index */
		
		.client-logos li {
			display: block;
			margin: 10px 0;
		}	
		
		/* About */
		
		.team-member-thumb { 
			float: none;
			margin-right: 0;
		}
		
		/* Portfolio Items */
		
		.portfolio-items li,
		.portfolio-strip li,
		.portfolio-strip.two-col li {
			float: none;
			width: 100%;
		}
		
		.portfolio-item-description h3 { font-size: 18px; }
		
		.portfolio-item-actions { 
/*			width: 50px;
			line-height: 50px;
			height: 50px;*/
			font-size: 30px;
		}
		
		.portfolio-filter ul { 
			float: none;
			margin-bottom: 50px;
		}
		
		.portfolio-filter ul li {
			display: block;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.portfolio-filter ul li:last-child { margin-bottom: 0; }
		
		.pagination { float: none; }

.portfolio-strip.drittel li {
    width: 100% !important;
}
/*.portfolio-strip li {
    float: none;
    width: 25%;
}*/

@media (max-width: 767px) {
	.portfolio-strip .portfolio-item-text {
		display: none;
	}	
.blogsidebar.mod_newslist { padding: 0; }

}


	}
	
/* #Mobile ( Landscape )
  ========================================================================== */

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row, .mod_newslist { padding: 0 40px; }
		.widget .mod_newslist,
		
		
		
		/*#mobile-menu-trigger { right: 30px; }*/
		
		/* Portfolio Items */
		
		.portfolio-items li,
		.portfolio-strip li {
			float: left;
			width: 50%;
		}
		
	}	



	i {
    font-style: italic;
    font-weight: bold;
}



body p {
    color: #616161;
/*    font: 16px/24px "Open Sans",Arial,sans-serif;*/
    font: 16px/24px Muli,sans-serif;
}


.cta {
    background: #f4f4f4 none repeat scroll 0 0;
}
.cta-row {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    background-color: #48719B;
}
.cta-item {
    background-color: #273a51;
    width: 50%;
    box-sizing: border-box;
    padding: 15px;
    display: -webkit-flex;
    display: flex;
	align-items: center;
	justify-content: center;    
}

@media (max-width: 767px) {
	.cta-item {
	    background-color: #273a51;
	    width: 100%;
	    box-sizing: border-box;
	    padding: 15px;
	}
}



.cta-rechts {
    background-color: #92b648;
}

.cta-rechts .inside.hasnoimage {
	width: 70%;
}
.cta-rechts .inside.hasnoimage .cta-text {
    box-sizing: border-box;
    float: left;
    width: 100%;
}


.cta-links .cta-textarea {
	align-self: start;
}

.cta-full {
	width: 100%;
}

.cta-row
{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
 
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cta-socials {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.cta a.social-icon {
    color: #fff;
}
/*.cta-textarea p {
	color: #fff;
	padding: 10px 0;
	line-height: 1.5em;
}
.cta-eins .cta-textarea p,
.cta-zwei .cta-textarea p {
	color: #fff;
	padding: 35px 20px 0 80px;
	line-height: 1.5em;
}*/


.cta-textarea.s p {
	font-size: 16px;
}
.cta-textarea.m p {
	font-size: 18px;
}
.cta-textarea.l p {
	font-size: 24px;
}
.mod_timetable .cta-links a {
	font-size: 24px;
}
.mod_timetable .cta-item.cta-rechts p {
    margin-bottom: 5px;
}


.cta-image {
    box-sizing: border-box;
    float: left;
    padding: 0px 30px 0px 15px;
    width: 30%;
}
.cta-text {
    box-sizing: border-box;
    float: left;
    width: 70%;
}
.cta-text.linkonly {
    box-sizing: border-box;
    float: left;
    width: 100%;
}
.cta-text p {
	color:#fff;
	line-height: 1.5em;
}

.cta-text span {
    border-bottom: 1px solid #fff;
    display: block;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.5em;
}
.cta-image img {
    border-radius: 50%;
    height: auto;
    width: 100%;
}



.cta .link {
    background: #999 none repeat scroll 0 0;
    bottom: 0;
    display: block;
    height: 45px;
    position: absolute;
    right: 0;
    width: 45px;
}
.cta .linkl {
    background: #999 none repeat scroll 0 0;
    bottom: 0;
    display: block;
    height: 45px;
    position: absolute;
    right: 50%;
    width: 45px;
}
.cta .link .fa,
.cta .linkl .fa{
    display: block;
    font-size: 35px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 45px;
}

.cta-button {
    text-align: center;
}
.cta-link {
    box-sizing: border-box;
    display: inline-block;
    padding: 15px 50px;
}


.cta-link {
background: rgba(39, 58, 81, 0.8) none repeat scroll 0 0;
}

.cta-link:hover {
	background-color: #273a51;
}

.cta-link i {
	padding-right: 10px;
}

.cta-full .cta-link {
	background-color: #92b648;
}

.cta-full .cta-link {
background: rgba(161, 185, 38, 0.8) none repeat scroll 0 0;
}

.cta-full .cta-link:hover {
	background-color: #92b648;
}


/*.cta-eins .cta-textarea p::before,
.cta-zwei .cta-textarea p::before {
    color: #92b648;
    content: "\"";
    display: block;
    font-size: 120px;
    left: 25px;
    position: absolute;
    top: 100px;
}*/
.ctasprechblase {
    display: block;
    height: 60px;
    left: 20px;
    position: absolute;
    top: 20px;
    width: 60px;
}
.ctasprechblase img {
	width: 100%;
	height: auto;
	display: block;
}
.cta-eins .cta-link {
    box-sizing: border-box;
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    padding: 0px; /* 15px 50px;*/
    width: 100%;
}

.cta-zwei .cta-link {
    box-sizing: border-box;
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    padding: 15px 50px;
    width: auto;
}

.cta-eins .cta-link {
	background: none;
	color: #273a51;
}
.cta-eins .cta-link:hover {
	background: none;
	color: #48719b;
}

.cta-item.cta-links {
    background-color: #f4f4f4;
    box-sizing: border-box;
    padding: 15px;
    color: #273a51;
	justify-content: left;    
}

.cta-eins .cta-textarea .cta-links-text {
    color: #273a51;
    line-height: 1.5em;
    padding: 40px 20px 0 80px;
}


@media (max-width: 767px) {
	.cta-eins .cta-textarea .cta-links-text {
	    color: #273a51;
	    line-height: 1.5em;
	    padding: 80px 0 0;
	}
}









.breadcrumb {
    background: #48719B none repeat scroll 0 0;
    color: #fff;
    padding: 5px 0;
}

.breadcrumb a, .breadcrumb a:visited {
    color: #fff;
    text-decoration: none;
	font-size: 14px;
	line-height: 26px;
}
.breadcrumb li.active {
	font-weight: bold;
/*    color: #273a51;*/
	font-size: 14px;    
	line-height: 26px;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.mod_breadcrumb ul{margin:0;padding:0;list-style-type:none;}
.mod_breadcrumb li{float:left;margin:0;padding:0 5px 0 0;}

.mod_breadcrumb li::before {
    content: "› ";
    padding: 0 5px;
}

.mod_breadcrumb li.first::before {
    content: none;
    padding: 0px;
}

.nobreadcrumb .breadcrumb {
	display: none;
}

#introboxen .item {
	position:relative;
	width: 100%;
	padding-top: 100%;
	background-color: #ff0;
}
#introboxen .item h3 {
	top: calc(50% - 36px);
	position: absolute;
	text-align: center;
	width: 100%;
}
#introboxen .item .text {
	top: calc(50%);
	position: absolute;
	text-align: center;
	width: 100%;
}
#introboxen .item p,
#introboxen .item h3,
#introboxen .item a,
#introboxen .item a:hover {
	color: #fff;
}


a.social-icon {
    float: none;
    display: inline-block;
}
.videobackground {
    padding: 0;
}
.widget.ewf_widget_social_media {
    margin: 0;
}

/*sorgt dafuer, dass der zweitäußerste Container immer das Seitenverhaeltnis 16:9 behaelt */
.mejs-container { 
	width: 100% !important;
	height: auto !important;
	padding-top: 57%;
}

/* sorgt dafuer, dass das Vorschaubild und der Play-Button wieder mittig zentriert sind */
.mejs-overlay, .mejs-poster { 
	width: 100% !important;
	height: 100% !important;
}

/* sorgt dafuer, dass das Video-Element, der übergeordnete DIV-Container vom Flash-Video
und das Flash-Video richtig skaliert werden */ 
.mejs-mediaelement video,
.mejs-mediaelement .me-plugin,
.mejs-mediaelement embed { 
	position: absolute;
	top: 0;
        left: 0;
        right: 0;
        bottom: 0;
	width: 100% !important;
	height: 100% !important;
}


.accordion-info p i {
    font-size: 20px;
    padding-right: 10px;
    color: #48719b;
}
.alter, .dauer {
    border-bottom: 1px solid #273a51;
    display: block;
    float: none;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    width: 33%;
}

.downloadarchivItem {
    border-top: 1px solid #616161;
    padding: 15px 0;
}

.downloadarchivItem.last {
    border-bottom: 1px solid #616161;
}


.timetable_item {
    display: block;
    float: left;
    text-align: center;
    width: 60px;
    border-left: 1px solid #fff;
}
.timetable_item.item_1 {
    border-left: none;
}
.timetable_item.hasevent, .timetable_item.hasevent a {
    background-color: #92b648;
    color: #fff;
}
.timetable_item.today, .timetable_item.today a {
    background-color: #48719b;
    color: #fff;
}
.timetable_prev,
.timetable_next {
    display: block;
    float: left;
    text-align: center;
    width: 50px;
}
.timetable_daylabel {
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}
.timetable_day {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}



.timetable .cta-textarea p {
	padding: 0;
	margin: 0;
	text-align: center;
}
.timetable .cta-textarea p::before {
    content: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.timetable p span {
    font-size: 1.5em;
    font-weight: bold;
}
.timetable .viewmore {
    text-align: center;
    display: block;
    padding: 0;
    margin: 0;
}

.timetable .cta-rechts {
    background-color: #273a51;
}
.timetable .cta-links {
    background-color: #92b648;
}

.timetable_prev i, .timetable_next i {
    font-size: 3em;
    font-weight: normal;
    line-height: 1.7em;
}

.mod_timetable .cta-links a,
.mod_timetable .timetable_prev a,
.mod_timetable .timetable_next a {
    color: #48719b;
}




.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
 /* -webkit-flex-flow: row wrap;
  justify-content: space-around;*/
}

.flex-item {
  width: 200px;
}


.hdnkalender_days .inner {
    border: 3px solid red;
    box-sizing: border-box;
    height: 100%;
    padding: 5px;
    text-align: center;
    width: 100%;
}


.intro-icon {
    border-bottom: 1px solid #616161;
    font-size: 2rem;
    margin-bottom: 10px;
    padding: 15px;
    text-align: left;
    color: #90ad00;
}
.intro-icon-text {
    text-align: left;
}

.hdnkalender thead,
.minicalendar thead {
    text-transform: uppercase;
}
.hdnkalender .previous > a {
    padding-left: 2em;
    text-align: left;
}
.hdnkalender .next > a {
    padding-right: 2em;
    text-align: right;
}
.hdnkalender .head.current {
    font-size: 1.5em;
}

.hdnkalender .label,
.minicalendar .label {
    background: #48719b none repeat scroll 0 0;
}
.hdnkalender a {
    display: block;
    line-height: 1.2em;
}
.hdnkalender .active,
.minicalendar .active {
    padding: 3px;
}
.hdnkalender .header,
.minicalendar .header {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 8px;
}
/*.hdnkalender .active div,
.hdnkalender .active div a {
    background: #92b648 none repeat scroll 0 0;
    color: #fff;
}*/
.hdnkalender .event,
.minicalendar .event {
    padding: 8px 8px;
}
/*.hdnkalender td.today,*/
/*.hdnkalender td.today a,
.hdnkalender .today div {
    background: #48719b none repeat scroll 0 0;
    color: #fff;
}*/


.hdnkalender td,
.minicalendar td {
    background: #efefef none repeat scroll 0 0;
    border: 3px solid #fff;
    padding: 5px;
    text-align: center;
	vertical-align: top;
	color: #616161;
}

.btn.book-event {
	float: right;
	line-height: 1.25em;
}

.btn.book-event.submit {
	float: none;
}

.hdnkalender td.event,
.minicalendar td.event,
.btn.book-event {
    background: #92b648 none repeat scroll 0 0;
    color: #fff;
}

.hdnkalender td.event.full,
.minicalendar td.event.full,
.btn.book-event.full {
	background: #ffcd02 none repeat scroll 0 0;
	color: #fff;
	cursor: not-allowed;
}

.hdnkalender td.event.cancelled,
.minicalendar td.event.cancelled,
.btn.book-event.cancelled {
	background: #e84e58 none repeat scroll 0 0;
	color: #fff;
	cursor: not-allowed;
}

.hdnkalender td.event a,
.minicalendar td.event a {
    color: #fff;
}

.hdnkalender td.today{
    background: #48719b none repeat scroll 0 0;
    color: #fff;
}
.hdnkalender td.today a {
    background: #48719b none repeat scroll 0 0;
    color: #fff;
}

.minicalendar .previous > a,
.minicalendar .next > a {
    color: #fff;
}

.minicalendar td.today {
	background: #efefef none repeat scroll 0 0;
    border: 3px solid #fff;
    padding: 5px;
    text-align: center;
	vertical-align: top;
	color: #616161;
}

.minicalendar td.event.today {
	background: #92b648 none repeat scroll 0 0;
    color: #fff;
}

.minicalendar td.event.today a {
	color: #fff;
}

.layout_teaser {
    border-bottom: 1px solid #616161;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.mod_eventlist .layout_teaser {
    border: medium none;
}


/*h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a:visited {
    color: #48719b;
    text-decoration: none;
}*/

.mod_newslist .row {
    border-top: 1px solid #616161;
    padding: 15px 0;
}
.mod_newslist .row:first-of-type {
    border-top: none;
}

.mod_newslist .row.pressearchiv {
    border-top: none;
}


.mod_newsreader .pageheadline {
    padding: 0 !important;
}
.mod_newsreader h3,
.mod_newslist h3 a {
    color: #48719b !important;
}
.mod_newslist h3 a:hover {
    color: #0f5066 !important;
}

.mod_newsreader .back-link:hover {
/*    background: rgba(39, 58, 81, 0.8) none repeat scroll 0 0;*/
    color: #fff;
}
.mod_newsreader .back-link {
/*	background: rgba(39, 58, 81, 1) none repeat scroll 0 0;*/
	text-align: center;
	color: #fff;
	padding: 15px 50px;
	font-size: 20px;
    font-weight: normal;
}


.viewall-presse a {
	background: rgba(39, 58, 81, 1) none repeat scroll 0 0;
	text-align: center;
	color: #fff;
	padding: 15px 50px;
	font-size: 20px;
    font-weight: normal;
    display: block;
}
.viewall-presse a:hover {
	background: rgba(39, 58, 81, 0.8) none repeat scroll 0 0;
	
}

.span6.pagesliderright {
    margin-left: 10px;
    width: 470px;
}
@media (min-width: 1400px) {
	.span6.pagesliderright {
	    margin-left: 15px;
	    width: 585px;
	}
}
@media (min-width: 768px) and (max-width: 979px) {
	.span6.pagesliderright {
	    margin-left: 7px;
	    width: 353px;
	}	
}
@media (max-width: 767px) {
	
	.span6.pagesliderright { 
		float: none;
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-left: 0;
	}
}

.accordion-item-content, .toggle-item-content {
    padding: 15px 0px;
}
.accordion-text, .accordion-info {
    padding: 0 20px 15px 0;
}
.accordion-img {
	padding: 0px 0px 0px 45px;
}
@media (max-width: 767px) {

.accordion-img {
    padding: 0 0 20px;
}
		
}



.mfp-bottom-bar {
    display: none;
}

.padding-both {
	margin-top: 50px;
	margin-bottom: 50px;
}
.padding-top {
	margin-top: 50px;
	margin-bottom: 0px;
}
.padding-bottom {
	margin-top: 0px;
	margin-bottom: 50px;
}
.padding-none {
	margin-top: 0px;
	margin-bottom: 0px;
}

.tabs-container .tabs {
    margin-bottom: 0px;
}

.mod_timetable .cta-item {
	display: block;
}


.accordion-info p i {
    color: #48719b;
    font-size: 2rem;
    padding-right: 10px;
}
/*.ifc-data-icon::before {
    content: attr(data-icon);
    vertical-align: middle;
}*/

.textbildicon {
    border-bottom: 1px solid #616161;
    color: #90ad00;
    font-size: 2rem;
    margin-bottom: 10px;
    padding: 15px 0;
    text-align: left;	
}

.accordion-item .textbildicon {
    border-bottom: none;
}


.textbildicon .hdnico-data.ifc-data-icon {
    float: left;
    font-size: 2rem;
    line-height: 2rem;
    padding-right: 10px;
}

.textbildicon > p {
    margin: 0 0 0 42px;
}

.alter, .dauer {
    border-bottom: 1px solid #273a51;
    display: block;
    float: none;
    font-size: 2rem;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    width: 33%;
}
.accordion-info i {
    color: #90ad00;
    float: left;
    font-size: 2rem;
    padding-right: 10px;
}
.alter > p,
.dauer > p {
    line-height: 2rem;
    margin: 0;
}

.portfolio-item-text {
    padding: 10px 15px;
}
.portfolio-item-text h2,
.portfolio-item-text p {
    margin: 0;
}

#footer-widget-area-4 .widget {
	width: 150px;
}


.mod_timetable .cta,
.timetable .cta-links,
.timetable .cta-rechts {
    background-color: #fff;
    color: #273a51;
}
.mod_timetable .fullwidth-section {
    padding: 0;
}
.cta-links a {
    color: #48719b;
}
.cta-rechts a {
    color: #fff;
}

.cta-links a:hover {
    color: #0f5066;
}
.cta-rechts a:hover {
    color: #273a51;
}


.timetable_item.hasevent, .timetable_item.hasevent a {
    background-color: #fff;
    color: #92b648;
}
.timetable_item.today, .timetable_item.today a {
    background-color: #48719b;
    color: #fff;
}

.timetable_item {
    border-left: 1px solid #48719b;
}


.hdnkalender .event {
    border-top: 1px solid #fff;
}

.fullwidth-section.ce_download {
    background: #fff none repeat scroll 0 0;
    color: #616161;
    padding-bottom: 0;
    padding-top: 0;
}
.ce_download {
    text-align: center;
}
.ce_download > a {
    font-size: 22px;
    color: #616161;
}
.ce_download .hdnico-data.ifc-data-icon {
    font-size: 2em;
    padding-right: 20px;
    vertical-align: middle;
    color: #92b648;
}
.ce_download > a:hover {
	color: #273a51;
}
.ce_download .ce_download {
    border-bottom: 1px solid #616161;
    padding-bottom: 30px;
    text-align: center;
}


.hdnkalender .head.previous i {
    font-size: 40px;
    left: 20px;
    position: absolute;
    top: 8px;
}
.hdnkalender .head.next i {
    font-size: 40px;
    right: 20px;
    position: absolute;
    top: 8px;
}
.hdnkalender .head > a:hover,
.minicalendar .head > a:hover {
    opacity: 0.5;
}
.hdnkalender td.event:hover,
.minicalendar td.event:hover {
    background: #6D8836 none repeat scroll 0 0;
    color: #fff;
}

.minicalendar i {
    font-size: 22px;
}

.mod_newsreader .span12,
.span8 .span12,
.span4 .span12 {
	width: 100%;
}

.mod_newsreader img {
    height: auto;
    width: 100%;
}
.mod_newsreader .mime_icon {
    height: auto;
    width: auto;
}


.mod_eventreader img {
    height: auto;
    width: 100%;
}


p.more {
    border-bottom: 1px solid #616161;
    color: #90ad00;
    margin-bottom: 10px;
    padding: 15px 0;
    text-align: left;
}

p.more i {
    color: #90ad00;
    float: left;
    font-size: 2rem;
    line-height: 2rem;
    padding-right: 10px;
}
/*.textbildicon a,*/
p.more a {
	line-height: 2rem;
}
.mod_newslist_blog {
	padding-top: 50px;
}

h3 {
    font-size: 22px;
    line-height: 1.3em;
    margin-bottom: 8px;
}


p.more.overview {
	border: none;
	line-height: 40px;
}

p.more.overview i {
    line-height: 40px;
    text-align: center;
    width: 40px;
}

.mod_newslist_blog .teaser > p {
    margin: 0;
    padding: 0;
}
.mod_newslist_blog p.more {
    margin-bottom: 20px;
}
.mod_newslist_blog h2 {
    background: #92b648 none repeat scroll 0 0;
    color: #fff;
    display: block;
    line-height: 4em;
    padding: 5px 10px;
    font-size: 20px;
}



.mod_newslist_blog .span4:nth-child(3n+4) {
	margin-left: 0;
	clear: both;
}
.mod_newslist_blog p.info {
    margin: 0px;
    font-size: 14px;
}

	.back-link-icon {
		position: relative;
		display: block;
		float: left;
		width: 40px;
		height: 40px;
		background-color: #92b648;
		color: #fafafa;
		font-size: 30px;
		text-align: center;					
		opacity: 0.7;
		cursor: pointer;
		border-radius: 3px;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	.back-link-icon a,
	.back-link-icon i {
		color: #fff;
	}

	.back-link-text {
		padding-left: 10px;
		display: block;
		float: left;
		height: 40px;
		line-height: 40px;
		font-weight: normal;
	}
	
	.back-link-icon i {
		font-size: 37px;
		line-height: 37px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	.back-link-icon:hover {
    	background-color: #92b648;
    	opacity: 1;
	}
	
	.back-link-icon:hover i {
		color: #fff;
	}

#footer-widget-area-2 .mod_newslist li {
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
    padding-bottom: 10px;
}

h2 {
    font-size: 30px;
    line-height: 1.1em;
    margin-bottom: 10px;
}


.ewf_widget_contact_info ul li {
    font-size: 14px;
    line-height: 1.4em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

#footer .row .span3 {
    box-sizing: border-box;
    padding: 0 10px;
}

.mod_newsreader .cta {
    margin: 0 0 50px;
}






/* CUSTOM */
#page-header h1 {
    color: #48719b;
    font-size: 33px;
    line-height: 42px;
    margin-bottom: 0;
    text-transform: uppercase;
}

h2 {
    font-size: 22px;
    line-height: 1.3em;
    color: #616161;
}
h3 {
    font-size: 19px;
    line-height: 1.3em;
    color: #48719b;
}
h4 {
    font-size: 19px;
    line-height: 1.3em;
    color: #a1b926;
}

.mod_newsreader .caption {
    margin-bottom: 1em;
}
.row.haspaddingbottom {
	padding: 0 0 50px 0;
}


.span8 .mod_newsreader .span6,
.span8 .mod_eventreader .span6
  {
    /*width: calc(50% - 20px);*/
    width: 100%;
    margin: 0;
}
.span8 .mod_newsreader .span4,
.span8 .mod_eventreader .span4 {
    width: calc(33% - 20px);
}
.span8 .mod_newsreader .span4 .icon-box-content > h2, 
.span8 .mod_eventreader .span4 .icon-box-content > h2 {
    font-size: 1.1em;
}

.mod_eventlist h3 a,
.mod_eventlist h3 a:visited {
	color: #48719b;	
}
.mod_eventlist h3 a:hover,
.mod_eventlist h3 a:focus {
    color: #0f5066;
    outline: 0 none;
    text-decoration: none;
}

.mod_eventlist p.more {
    border-bottom: 1px solid #616161;
    color: #90ad00;
    margin-bottom: 20px;
    padding: 0 0 15px;
    text-align: left;
}

.eventheader.header.even.first.last {
    border-bottom: 1px solid #616161;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.mod_eventlist .teaser > p {
    margin: 0;
}

.mod_eventreader .info {
    border-bottom: 1px solid #616161;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.mod_eventreader .row,
.mod_eventreader .customelement-section {
    padding-top: 0px !important;
}


.ce_youtube .video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.ce_youtube .video-container {
position: relative;
padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
padding-top: 0px;
height: 0;
overflow: hidden;
}

.partnerlogos .responsive-img {
    max-width: 150px;
}

.row.gallery {
	margin-top: 50px;
}


.timetable .seeall {
    border-top: 1px solid #616161;
    display: block;
    margin-top: 25px;
    padding-top: 15px;
}
.timetable .seeall a {
	color: #48719b;
	font-size: 24px;
	line-height: 32px;
}




.row.padding-all {
	padding-top: 50px;
	padding-bottom: 50px;
}


#searchoverlay form {
    background-color: #48719b;
    display: none;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100001;
    text-align: center;
}
#searchoverlay.active form {
	display: block;
}
#searchoverlay form::before {
    content: "";
    display: block;
    height: 50%;
    margin-bottom: -6.66667em;
}
#searchoverlay input {
    font-size: 16px;
    margin: 0 auto 20px;
}
#searchoverlay label {
    color: #fff;
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
}


.downloadarchivItem em {
    font-style: normal;
}

.overlayclose a {
    color: #fff;
    font-size: 40px;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100002;
}

#header-top .top-search i {
    color:#fff;
}        	

#header-top .ewf_widget_social_media a.top-search i {
    font-size: 26px;
    line-height: 40px;
    margin-right: 10px;
    font-weight: normal;
}        	
#header-top a.social-icon {
	display:block;
	float:left;
}

.sprachenwechsler {
    display: block;
    float: left;
}
.sprachenwechsler ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.sprachenwechsler li {
    float: left;
    font-size: 24px;
}
#header-top .sprachenwechsler li span, #header-top .sprachenwechsler li a {
    font-size: 18px;
    line-height: 40px;
    padding: 0 5px;
}
.sprachenwechsler li::before {
    content: "|";
}
.sprachenwechsler li.first::before {
    content: none;
}
.ce_form .widget {
	margin-bottom: 0;
}
.datepicker_bootstrap .title {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    padding: 0;
}
.single_field input {
    width: 50%;
}
@media (max-width: 767px) {
	.single_field input {
	    width: 100%;
	}
}
.text.double_field.short_text.datepicker {
    display: block;
    float: left;
}
.CalendarFieldIcon {
    margin-left: 10px;
    margin-top: 8px;
}
.formbody > br {
    clear: both;
}
.ce_form .headline {
    text-align: left;
}

p.slidecaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 2px 15px;
    background: rgba(255,255,255,0.7);
    color: #000;
}

.sternfuehrungen {
	width: 100%;
    float: right;
}

.calendar.hdnkalender .rsfh-event-1671.moved:before, .mod_eventlist .rsfh-event-1671.moved:before,
.calendar.hdnkalender .rsfh-event-1606.moved:before, .mod_eventlist .rsfh-event-1606.moved:before {
	content:"Wetterbedingt abgesagt:";
}

.calendar.hdnkalender .moved:before, .mod_eventlist .moved:before {
	content:"Fällt aus:";
}


.moved h3{
	text-decoration:line-through;
}

.minicalendar td.event.moved  {
	background-color: #e84e58;
}

.calendar.hdnkalender .moved a {
	text-decoration:line-through;
}

@media screen and (max-width: 980px) {
  .sternfuehrungen {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .sternfuehrungen {
    width: 100%;
    float: none;
  }
}

/*Responsive Veranstaltungstabelle -- ag*/

@media (min-width: 992px)and (max-width: 1400px) {
  	.hdnkalender .head.next i {
	    right: auto !important;
	}
	
	table th {
		font-size: 12px;
	}
	
	table th, table td {
    	padding: 15px 0px; 
   }
   
   .hdnkalender .event, .minicalendar .event {
	    padding: 8px 0px;
	}
   
   .hdnkalender .previous > a {
   	padding-left: 3em;
   }
   
  
   
}


@media (min-width: 769px)and (max-width: 991px) {
	.hdnkalender .head.next i {
	    right: auto !important;
	}
	
	table th {
		font-size: 12px;
	}
	
	table th, table td {
    	padding: 15px 0px; 
   }
   
   .hdnkalender .event, .minicalendar .event {
	    padding: 8px 1px;
	}
   
   .hdnkalender .previous > a {
   	padding-left: 3em;
   }
   
    .hdnkalender td.event a {
   		font-size: 12px;
   }
}


@media (max-width: 768px) {

	a.btn.book-event {
		float: none;
		margin-top: 1em;
	}
	
	td.days.empty {
	    display: none;
	    background: transparent;
	}
	
	.minicalendar thead tr:nth-child(2) {
		display: none;
	}
	
	.minicalendar  tr, .hdnkalender tr {
	    border-top: 0px solid #555;
	}
	
	.minicalendar .bygone {
		display: none;
	}
	
	.hdnkalender thead,
	.minicalendar thead {
		background-color: #273a51;
	}
	
	.hdnkalender thead .next i, 
	.hdnkalender thead .previous i, 
	.minicalendar thead .previous i, 
	.minicalendar thead .next i {
		display: none;
	}
	
	.hdnkalender thead .next a:after, 
	.minicalendar thead .next a:after {
		content:"";
		color: #fff;
		font-size: 20px;
		font-family: FontAwesome;
		margin-top: 10px;
	    display: block;
	    position: absolute;
	    right: 52px;
	}
	
	.minicalendar thead .next a:after {
		margin-top: 0px;
	}
	
	.minicalendar td {
		border-top:0;
	}
	
	.minicalendar thead {
		border-bottom: 3px solid #fff;
	}

	.minicalendar thead .previous a:before {
		padding-left: 10px;
	}
	
	.minicalendar thead .next a:after {
		padding-right: 5px;
	}
	
	.hdnkalender .previous > a, 
	.hdnkalender .next > a, 
	.minicalendar .previous > a, 
	.minicalendar .next > a {
		padding-left:0;
		font-size: 1px;
		color:transparent;
	}
	
	.hdnkalender .next > a, 
	.minicalendar thead .next a  {
		text-align: right;
		padding-right:0;
	}
	
	.hdnkalender thead .previous a:before,
	.minicalendar thead .previous a:before{
		content:"";
		color: #fff;
		font-size: 20px;
		font-family: FontAwesome;
		position: absolute;
   		margin-top: 10px;
	}
	
	.minicalendar thead .previous a:before{
   		margin-top: 0px;
	}
	
	.hdnkalender td, 
	.minicalendar td {
		border-right: 0;
		border-left: 0;
	}
	
	td.days.upcomming:not(.event), td.days.today:not(.event) {
	    display: none;
	}
	
}

.ser_wrapper .formbody input[type=text], .ser_wrapper .formbody input[type=email], .ser_wrapper .formbody input[type=tel] {
	width: 100%;
}

.ser_wrapper .formbody {
	margin-bottom: 2em;
}

.ser_wrapper .formbody .select_container *, .ser_wrapper .formbody .agb_container * {
	display: inline-block;
}
.ser_wrapper .formbody .contactinfo_container {
	column-count: 2;
}

@media (max-width: 979px) {
   .ser_wrapper .formbody .contactinfo_container {
    	column-count: 1;
    }
}

span.form-error {
    color: #e84e58;
}

input.form-error {
    border-color: #e84e58;
}


/*FIX Calender*/


/**
 * Global TinyMCE style sheet
 *
 * Use this style sheet to define CSS classes for the rich text editor. The
 * stlye sheet will be included in the editor and the page layout automatically.
 * Although the stlye sheet is shared by all themes, you can override its
 * formattings in any of your theme style sheets.
 *
 *   files/tinymce.css (this is how it looks like in TinyMCE)
 *   .warning { color:#c55; }
 *
 *   theme_a.css (this is how it looks like in theme A)
 *   .warning { font-weight:bold; }
 *
 *   theme_b.css (this is how it looks like in theme B)
 *   .warning { color:#000; }
 *
 * If you do not want to use a global TinyMCE style sheet at all, simply delete
 * this file (files/tinymce.css).
 */
.warning { color:#c55; font-size:1.1em; }
.confirmation { color:#090; font-size:1.1em; }
.information { color:#999; font-size:0.9em; }
