/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
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;
}

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;
}

code {
	padding: 3px 6px;
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
	background: #fcfcfc;
	border: 1px solid #e4e4e4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #3f8faf;
}

/************************************/
/*	BASE STYLES 
/************************************/
body {
	padding: 0;	
	margin: 0;	
	width: 100%;	
	height: 100%;
	font-size: 14px;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	line-height: 1.6;
}

/* Main Font */
body, h1, h2, h3, h4, h5, h6,
.button, input[type="button"], input[type="submit"],
input[type="text"], input[type="password"], input[type="email"], textarea, select {
	font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

* {
	outline: none;
	border: none;
}

a img {
	border: none;
}

.spacer{
	clear: both;	
	width: 100%;	
	height: 0;
}

.body-wrapper {
	width: 100%;		
	margin: 0 auto;	
	padding: 0;
}

.controller {
	width: 940px; 
	height: auto; 
	margin: 0 auto;	
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #696969;
	margin: 0 0 15px 0;
	font-weight: 600;
}

p {
	font-size: 14px;
	color: #696969;
	margin: 0 0 15px 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #696969;
}

h5 {
	font-size: 20px;
}

input, textarea {
	font-family: inherit;
	font-size:13px;
	-webkit-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out;
	   -moz-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out;
	    -ms-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out;
	     -o-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out;
	        transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

footer#footer h1,
footer#footer h2,
footer#footer h3,
footer#footer h4,
footer#footer h5,
footer#footer h6 {color: #696969;}

::-moz-selection { background: #ea4748; color: #fff; text-shadow: none; }
.::selection { background: #ea4748; color: #fff; text-shadow: none; }

/* :: RADIUS :: */
.radius-2{	-webkit-border-radius: 2px;	-moz-border-radius: 2px;	border-radius: 2px; }
.radius-3{	-webkit-border-radius: 3px;	-moz-border-radius: 3px;	border-radius: 3px; }
.radius-5{	-webkit-border-radius: 5px;	-moz-border-radius: 5px;	border-radius: 5px; }
.radius-10{	-webkit-border-radius: 10px;	-moz-border-radius: 10px;	border-radius: 10px; }
.radius-15{	-webkit-border-radius: 15px;	-moz-border-radius: 15px;	border-radius: 15px; }
.radius-20{	-webkit-border-radius: 20px;	-moz-border-radius: 20px;	border-radius: 20px; }


/* #Forms
================================================== */

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
	border: 1px solid #e0e0e0;
	padding: 8px 9px;
	outline: none;
	font-size: 13px;
	color: #888;
	margin: 0;
	max-width: 100%;
	display: block;
	background: #fff;
	-webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.03);
	border-radius: 2px;
}

/* select {
	padding: 0;} */

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
	border: 1px solid #d6d6d6;
	color: #888; 
}

textarea {
	min-height: 60px;
}

label,
legend {
	display: block;
	font-weight: bold;
	font-size: 13px; 
	font-weight: normal;
	margin-bottom: 5px;
}

input[type="checkbox"] {
	display: inline;
}

label span,
legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444;
}


/* #Alignments
================================================== */
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-middle {
  vertical-align: middle !important;
}


/* #Links
================================================== */
a { 
	color: #EA4748;
	text-decoration: none;
	/*background: transparent; Fix for IE*/
	outline: 0;
	-webkit-transition: color 0.1s ease-in-out;
	-moz-transition: color 0.1s ease-in-out;
	-o-transition: color 0.1s ease-in-out;
	-transition: color 0.1s ease-in-out;
}

a:visited {
	text-decoration: none;
	/*background: transparent; Fix for IE*/
	outline: 0;
	-webkit-transition: color 0.1s ease-in-out;
	-moz-transition: color 0.1s ease-in-out;
	-o-transition: color 0.1s ease-in-out;
	-transition: color 0.1s ease-in-out;
}

.page-content p a,
.page-content ol a,
.page-content ul a,
table > tbody a,
#footer p a {
	border-bottom: 1px solid rgba(0,0,0,.1);
	/*padding-bottom: 1px;*/
}

.page-content p a:hover,
.page-content p a:focus,
.page-content ol a:hover,
.page-content ol a:focus,
.page-content ul a:hover,
.page-content ul a:focus,
table > tbody a:hover,
table > tbody a:focus,
#footer p a:hover,
#footer p a:focus {
	border-bottom: 1px solid #EA4748;
}

a b,
span b {
	font-family: Verdana, Tahoma; font-weight: normal; opacity: 0.5;
}

span b {
	line-height: 14px;
}

.body-wrapper img {
	height: auto;
	max-width: 100%;
}

.columns.google-map img {
	max-width: none;
}

img, object, video {
	height: auto;
	display: block;
}

img {
	width: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Bootstrap Add-On Compatible Fix */
/* Removed by Clement on 2015-06-17 after testing */
/*a.btn {
	border-bottom: none !important;
	padding: 10px 16px !important;
	line-height: 1.33;
}

a.btn:hover,
a.btn:focus {
	border-bottom: none !important;
}*/