/* base.css */

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: #818181;
    font: 14px 'Open Sans', Arial, sans-serif; 
    line-height: 24px;	
}

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: #289ccb; }

.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: #289ccb; 
    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: #289ccb;
    color: #fff;
    font-size: 16px;
}

table thead th { vertical-align: bottom; }

/* #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; 		 
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
textarea:focus {
    border-color: #289ccb;
    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;
}

/* grid.css */

.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; }
    
    .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 */
}

/* eleemts.css */

	/* Accordion & Toggles */
	
	.accordion,
	.toggle { margin-bottom: 30px; }

	.accordion-item,
	.toggle-item {}

	.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: #818181; }
	
	a.accordion-item-toggle:hover,
	a.toggle-item-toggle:hover { color: #289ccb; }
	
	.accordion-item-toggle:after,
	.toggle-item-toggle:after {
		position: absolute;
		top: 15px;
		left: 10px;
		width: 24px;		
		background-color: #289ccb;
		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: #289ccb;
		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: #747474;
		color: #fafafa;
		font-size: 30px;
		text-align: center;					
		opacity: 0.5;
		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 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 { 
		border-color: #289ccb;
		background-color: #289ccb;
		color: #fff;
	}
	
	/* Colors Button */
	
	.btn-blue {
		border-color: #289ccb;
		background-color: #289ccb;
		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: #289ccb;
		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(../images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.gif) repeat-x top left; 
	}	

/* ==========================================================================
   #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: #289ccb;
		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: #289ccb;
		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: #289ccb; }
	
	.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: #289ccb; }
	
	#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: #289ccb;
		font-size: 172px;
		line-height: 200px;
		font-weight: 700;
	}
	
	@media (max-width: 767px) {
	
		.headline { margin-bottom: 50px; }
	
	}

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */

/* Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin: 50px 0; 
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;  
		font-size: 48px; 
		line-height: 68px;
		color: #289ccb;	
	} 
	
	.icon-box-1 h3 { margin-bottom: 15px; }
	
	.icon-box-1 .icon-box-content { margin-left: 85px; }

/* 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: #289ccb;
	}
	
	.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: #289ccb;	
	}
	
	.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; }
		
	}
	

/* ==========================================================================
   #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: #289ccb;
		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: #289ccb;
		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: #289ccb;
		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: #289ccb;
	}
	
	.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: #289ccb;
		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: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { 
			display: block;
		}
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.table-bordered { border-top: none; }
		tr { border-top: 1px solid #555; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   #Tabs
   ========================================================================== */

	/* Horizontal tabs */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.tabs-container .tabs-menu { 
		border-bottom: 1px solid #cdcdcd;
		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-left: 1px solid #fff;		
		margin-bottom: -1px; 
		background-color: #0f5066;
		color: #fff;
		font-size: 16px;
		text-decoration: none;
	}
	
	.tabs-container .tabs-menu li:first-child a { border-left: none; }
	
	.tabs-container .tabs-menu li.active a,
	.tabs-container .tabs-menu li a:hover { background-color: #289ccb; }
	
	.tabs-container .tabs {
		border: 1px solid #cdcdcd; 
		border-top: none;   
		margin-bottom: 30px;
	}
	
	.tabs-container .tab-content { padding: 30px 30px 10px 30px; }
	
	/* 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: #289ccb;
	}
	
	.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: #289ccb;
		}
		
		.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 #289ccb;
		content: "";
	}
	
	.separator:after {
		position: absolute;
		top: 30%;
		left: 50%;
		width: 18px;
		height: 18px;
		border: 1px solid #289ccb;
		border-radius: 50%;
		margin-left: -9px;
		background-color: #289ccb;
		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 #289ccb; 
		}
		
		.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(../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: #289ccb;
	}
	
	/*
	 * 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: #289ccb; }
	
	/* 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: #289ccb; }
	
	.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: #289ccb; }
	
	.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: #289ccb; }
	
	/* 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: #289ccb;
		background-color: #289ccb;
		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: #289ccb; }
	
	/* 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: #289ccb; 
		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: #289ccb;
	}
	
	.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 #289ccb;
		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; }  
    
/* layout.css */

#wrap {
    position: relative;
    background-color: #fff;
}

/* #Header Top
========================================================================== */	
   
#header-top { 
    padding: 15px 0;
    background-color: #289dcc;
    color: #fff;	
}

#header-top a { color: #fff; }

#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: 20px;
    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: auto;
    margin-right: 15px;
    background-color: transparent;
}

#header-top .ewf_widget_social_media .social-icon i { 
    font-size: 16px;
    line-height: 16px;
}


/* #Header
========================================================================== */	
   
#header { padding: 40px 0 20px 0; }

@media (min-width: 1024px) {

    /**
     * 1. needs to be > 1000 because revolution slider navigation has high z-index
     */

    #header {
        position: absolute;
        z-index: 1010;
        top: 0;
        right: 0;
        left: 0;
        padding: 0;
        margin: 92px auto 0 auto;	
    }
    
    #header.stuck {
        position: fixed !important;
        z-index: 1010; /* 1 */
        top: 0;
        width: 100% !important;
        padding: 10px 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: 27px; }
    
    #header.stuck .sf-menu li.dropdown ul,
    #header.stuck .sf-mega { margin-top: 10px; }
    
    #header.stuck .sf-menu li.dropdown ul ul { margin-top: 0; }
    
    #content { padding-top: 145px; }

}

/* Logo */

#logo { 
    display: block;		
    margin-top: 7px;
}
#logo img { display: block; }
    
/* 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: right;
    /*width: 100%;*/
} 

.sf-menu a {
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font: 14px 'Open Sans', Arial, sans-serif;
    color: #818181; 
    text-decoration: none;
}

.sf-menu li.dropdown a { padding: 10px 15px; }
.sf-menu li:last-child > a { border-bottom: none; }

.sf-menu > li > a,
.sf-menu > li.dropdown > a {
    padding: 25px 20px 40px 20px;
    border: none;
    color: #818181;
    font-size: 14px;
    text-transform: uppercase;	
}

.sf-menu > li a i { margin-right: 5px; }

.sf-menu > li.current > a,
.sf-menu li.sfHover > a,
.sf-menu a:hover,
.sf-menu li.sfHover a:hover {
    color: #289ccb;
    text-decoration: none;	
}

/**
  * 1. allow long menu items to determine submenu width
  */

.sf-menu li.dropdown ul {
    min-width: 180px; /* 1 */
    border: 1px solid rgba(0, 0, 0, 0.1);	
    background-color: #e9e9e9;			
}

.sf-menu > li.dropdown > ul { border-top: 3px solid #289ccb; }

.sf-menu > li.dropdown > ul li a:hover { 
    background-color: #289ccb;
    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 #289ccb;	
    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: #289ccb;
}

#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: #289ccb;
}

#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: 13px;
    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: #0f5066; }

#mobile-menu li a:hover {}

#mobile-menu { display: none; }

/* Mobile menu trigger  */
            
#mobile-menu-trigger { 
    float: right;
    display: none;  
    font-size: 32px;
}				


/* #Content
========================================================================== */
       
#content { 
    min-height: 300px; 
    padding-bottom: 60px;  
}

/* Page Header */

#page-header {
    padding: 40px 0 40px 0;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 50px;
    background-color: #e9e9e9;
}

#page-header h2,
#page-header p { margin-bottom: 0; }

        
/* #Footer
========================================================================== */		
        
#footer {
    padding: 80px 0;
    background-color: #4b4b4b;
    color: #c4c4c4;
}

#footer a { color: #c4c4c4; }

#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 .ewf_widget_social_media .social-icon {
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-color: #289ccb;
    color: #fff;
}

#footer .ewf_widget_social_media .social-icon i {
    font-size: 16px;
    line-height: 26px;
}

#footer-bottom {
    padding: 30px 0;
    background-color: #222;
    color: #6e6e6e;
}

#footer-bottom a { color: #6e6e6e; }

#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: #289ccb;
}

.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 #289ccb;
    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: 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; }

.portfolio-item-preview { position: relative; }

.portfolio-item-preview img {
    display: block;
    width: 100%;
}

.portfolio-item-description {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 5px 10px 10px 10px;
    background-color: #289ccb;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
}

.portfolio-item-description h3,
.portfolio-item-description p { margin-bottom: 0; }

.portfolio-item-description a { color: #fff; }
.portfolio-item-description a i { vertical-align: middle; }

.portfolio-item-actions { 
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 75px;
    height: 75px;
    background-color: #289ccb;
    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:hover .portfolio-item-actions { 
    right: 0;
    opacity: 1;
}
            
/* Portfolio Pagination */

.pagination {
    float: right;
    margin: 50px 0;
    list-style: none; 
}

.pagination li { 
    display: inline-block;
    margin-right: 5px;
}

.pagination li:last-child { margin-right: 0; }

.pagination a { 
    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.current a,
.pagination li a:hover {
    background-color: #289ccb;
    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: #289ccb;
    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 #289ccb;
    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: 25px 15px 30px 15px; }
    
    .portfolio-item-actions { 
        width: 115px;
        height: 115px;
        line-height: 115px;
    }
    
    .portfolio-filter ul li a { padding: 15px 30px; }
    
}

/* #Smaller then 1024px width
========================================================================== */

@media (max-width: 1024px) {

    #wrap {}
    
    #header {}
    
    #content {}
    
    #footer {}
    
}

/* #Tablet (Portrait)
========================================================================== */

@media (min-width: 768px) and (max-width: 979px) {
    
    #wrap {}
    
    #header { padding-bottom: 40px; }
    
    #menu { display: none; }
    
    #mobile-menu-trigger { 
        display: block;
        margin-right: 10px;
        margin-top: 16px;
    }	
    
    #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-actions { 
        width: 50px;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
    }
    
    .portfolio-filter ul li { margin-right: 10px; }
    
    .portfolio-filter ul li a { 
        padding: 10px 15px;
        font-size: 14px;
    }

}

/* #Mobile (Portrait and Landscape )
========================================================================== */

@media (max-width: 767px) {

    body { 
        background: none; 
        background-color: #fff; 
    }
    
    #wrap { border-top: 5px solid #289ccb; }
    
    #header-top { display: none; }
    
    #header { padding: 30px 0; }	
    
    #logo {}
    
    #menu { display: none; }
    
    #mobile-menu-trigger { 
        position: absolute;
        top: 4px;
        right: 10px;
        display: block;
        padding: 10px;
        margin-top: 0;
    }
    
    #content {}
    
    #footer {}
    
    #footer .widget:last-child { margin-bottom: 40px; }
    #footer .widget-title { margin-bottom: 30px; }

    .row { padding: 0 40px; }
    
    .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;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
    }
    
    .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; }

}

/* #Mobile ( Landscape )
========================================================================== */

@media only screen and (min-width: 480px) and (max-width: 767px) {
    
    .row { padding: 0 40px; }
    
    #mobile-menu-trigger { right: 30px; }
    
    /* Portfolio Items */
    
    .portfolio-items li,
    .portfolio-strip li {
        float: left;
        width: 50%;
    }
    
}	

