/* Table of Content
==================================================
	#`XHTML, HTML4, HTML5 Reset
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Misc 
	#Base 960 Grid */


/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}



article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
/*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
  display: block;
}

b,
strong {
/*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}
em {
	font-style: italic;
}
img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}

ol,
ul {
  list-style: none;
}

li {
/*
  For IE6 + IE7:

  "display: list-item" keeps bullets from
  disappearing if hasLayout is triggered.
*/
  list-style-type:none;
  list-style:none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

sub,
sup,
small {
  font-size: 75%;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg {
/*
  For IE9. Without, occasionally draws shapes
  outside the boundaries of <svg> rectangle.
*/
  overflow: hidden;
}


/* #Basic Styles
================================================== */
	html {
		-webkit-text-size-adjust: none;
	}
	
	body {
		background: #fff !important;
		font: 13px/21px "PT Sans", Arial, sans-serif;
		color: #666;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
		/*overflow-x: hidden;*/
	}
	
	::-moz-selection {
		color: #fff;
		text-shadow:none;
	}

	::selection {
		color: #fff;
		text-shadow:none;
	}


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		 line-height:1.5; 
		 color:#444; 
		 
	}
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 22px; }
	h2 { font-size: 20px; }
	h3 { font-size: 16px; }
	h4 { font-size: 14px; }
	h5 { font-size: 13px; }
	h6 { font-size: 12px; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }

	pre,
	code {
		font-family: 'DejaVu Sans Mono', Menlo, Consolas, monospace;
	}
/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
	blockquote cite { display: block; font-size: 12px; color: #777; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #777; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a{
		webkit-transition: all 0.3s ease-in;  
		-moz-transition: all 0.3s ease-in;  
		-ms-transition: all 0.3s ease-in;  
		-o-transition: all 0.3s ease-in;  
		transition: all 0.3s ease-in;
	}
	a, a:visited { text-decoration: none; outline: 0; }
	a:hover, a:focus { color: #666; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }


/* #Images
================================================== */
	img {
		max-width: 100%; 
		height:auto;
		border:0; 
		-ms-interpolation-mode:bicubic; 
	}
	img.alignleft { float: left; margin-right:15px;}
	img.alignright { float: right; margin-left:15px;}
	img.aligncenter {
		margin-left: auto;
		margin-right: auto;
		display: block;
		clear: both;
		width:auto;
	}

/* #Misc
================================================== */
	.wp-caption{}
	.wp-caption-text{}
	.gallery-caption{}
	.alignright{ text-align:right;}
	.alignleft{ text-align:left;}
	.aligncenter{ text-align:center;}
	.alignRight{ text-align:right;}
	.alignLeft{ text-align:left;}
	.alignCenter{ text-align:center;}
	.right{ text-align:right;}
	.left{ text-align:left;}
	.center{ text-align:center;}
	.sticky{}
	.bypostauthor{}
	.wp-smiley{ display:inline;}
	
	iframe{display:block;}
	.hidden { display: none; }
	.aligncenter {
		margin-left: auto;
		margin-right: auto;
		display: block;
		clear: both;
	}
	.facebook-like-wrap iframe[style]{ 
		width:100% !important; 
	}

/* Grid systems
---------------------------------------------------------- */
	.wpb_row {
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box;
	}
	/* Grid with fluid columns */
	.vc_row-fluid {
	  width: 100%;
	  *zoom: 1;
	}
	.vc_row-fluid:before,
	.vc_row-fluid:after {
	  display: table;
	  content: "";
	}
	.vc_row-fluid:after {
	  clear: both;
	}
	.vc_row-fluid [class*="vc_span"] {
	  display: block;
	  width: 100%;
	  min-height: 5px;
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  -ms-box-sizing: border-box;
	  box-sizing: border-box;
	  float: left;
	  margin-left: 3%;
	}
	.vc_row-fluid [class*="vc_span"]:first-child {
	  margin-left: 0;
	}
	.vc_row-fluid .vc_span12,
	.wpb_teaser_grid.wpb_carousel .vc_span12 {
	  width: 100%;
	}
	.vc_row-fluid .vc_span11 {
	  width: 91.41666666666667%;
	}
	.vc_row-fluid .vc_span10 {
	  width: 82.83333333333333%;
	}
	.vc_row-fluid .vc_span9 {
	  width: 74.25%;
	}
	.vc_row-fluid .vc_span8 {
	  width: 65.66666666666666%;
	}
	.vc_row-fluid .vc_span7 {
	  width: 56.83333333333333%;
	}
	.vc_row-fluid .vc_span6,
	.wpb_teaser_grid.wpb_carousel .vc_span6 {
	  width: 48.5%;
	}
	.vc_row-fluid .vc_span5 {
	  width: 40.16666666666667%;
	}
	.vc_row-fluid .vc_span4,
	.wpb_teaser_grid.wpb_carousel .vc_span4 {
	  width: 31.33333333333333%;
	}
	.vc_row-fluid .vc_span3,
	.wpb_teaser_grid.wpb_carousel .vc_span3 {
	  width: 22.75%;
	}
	.vc_row-fluid .vc_span2 {
	  width: 14.16666666666667%;
	}
	.vc_row-fluid .vc_span1 {
	  width: 5.583333333333333%;
	}
	
	/* end Grid systems -------------------------------------- */
	/* Responsive classes
	---------------------------------------------------------- */
	.hidden {
	  display: none;
	  visibility: hidden;
	}
	.visible-phone {
	  display: none !important;
	}
	.visible-tablet {
	  display: none !important;
	}
	.hidden-desktop {
	  display: none !important;
	}
	
/* end Responsive classes -------------------------------- */
	
/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }


.footer-wrap {
	position: relative;
}



