/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* START RESET */
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;
}
/* END RESET */
/* BASE STYLES */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.group:after {
  content: "";
  display: table;
  clear: both;
}
html,body{
  color: #333333;
  font-family: Arial,Verdana,Helvetica,sans-serif;
  line-height: 1.6em;
  font-size:0.9em;
}
img{
  max-width: 100%;
}
p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, blockquote, cite {
  margin-bottom: 15px;
}
a{
  color: #777;
}
a:hover{
  color: #d99400;
}
h2 {
  color: #d99400;
  font-size: 1.8em;
}
h3 {
  color: #777;
  font-size: 1.1em;
  margin-bottom: 5px;
}
h4{
  color: #777;
  font-style: italic;
}
h5{
  color: #000080;
}
h6{
  color: #ff9900;
}
hr {
  border: none;
  border-top: 1px dashed #e9c400;
}
strong{
  font-weight: 700;
}
blockquote{
  font-weight: 700;
  color: #000080;
  font-style: italic;    
  font-size: 1.3em;
  line-height: 1.4em;
}
cite{
  font-size: 0.9em;
  color: gray;
  font-style: italic;
  line-height: 1.4em;
}
ul,ol{
  margin: 0 0 0 25px;
}
ul{
  list-style: disc;
}
ol{
  list-style: decimal;
}
li{
  margin: 0 0 10px 0;
}
.col-half{
  float: left;
  width: 50%;
}
.col-half:first-child{
  padding: 0 20px 0 0;
}
.col-half:last-child{
  padding: 0 0 0 20px;
}
/* END BASE */
/* NAVIGATAUR */
header { position: relative; }
#toggle, .toggle { display: none; }
.menu > li { list-style: none; float:left;	}

/* Nicolas Gallagher micro clearfix */
.clearfix:before, .clearfix:after { display: table; content: ""; }
.clearfix:after { clear: both; }

@media only screen and (max-width: 768px){
	.menu { display: none; opacity: 0; width: 100%; position: absolute; right: 0; }
	.menu > li { display: block; width: 100%; margin: 0; }
	.menu > li > a { display: block; width: 100%; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	.toggle { display: block; position: relative; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
	#toggle:checked + div .menu { display: block; opacity: 1;}
}
.nav{ 
	display: block; 
	float: right; 
}

.nav, .menu, .menu > li, .menu > li > a{ 
	/*height: 100%;*/ 
}

.menu > li > a{
	display: block;
	padding: 12px 30px 12px 0;
	text-decoration: none;
	font-weight: normal;
  text-transform: uppercase;
  font-size: 11px;
	line-height: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.menu > li > a:hover, .menu > li > a:focus{
	color: #d99400;
}

.toggle{ 
	z-index: 2; 
}

@media only screen and (max-width: 768px){
	.menu{
		background: #000000;
		/*border-top: 1px solid #51C1F1;*/
    margin-top: -2px;
	}
	
	.menu, .menu > li, .menu > li > a{
		height: auto;
	}
	
	.menu > li > a{
		padding: 15px 15px;
	}
	
	.menu > li > a:hover, .menu > li > a:focus{
		background: #F2F2F2;
		box-shadow: inset 5px 0px #d99400;
		padding: 15px 15px 15px 25px;
	}
	
	.toggle:after {
		content: attr(data-open);
		display: block;
		width: 100%;
		/*margin: 33px 0;*/
		padding: 13px 50px;
		/*background: #51C1F1;*/
		-webkit-border-radius: 2px;
		border-radius: 2px;
		text-align: center;
		font-size: 12px;
		color: #FFFFFF;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box; 
	}
	
	.toggle:hover:after{
		color: #d99400;
	}
	
	#toggle:checked + div .toggle:after{
		content: attr(data-close);
	}
}

@media only screen and (max-width: 479px){
	.header > h1 { 
		text-align: center;
	}
	.header > h1, .nav, .toggle:after{ 
		float: none; 
	}
	.toggle:after { 
		text-align: center; width: 100%; 
	}
}
/* END NAVIGATAUR */
/* GLOBAL */
html,body{
  background: url("../images/background.png") repeat-x;
}
html{
  position: relative;
  min-height: 100%;
}
body {
  margin: 0 0 150px; /* bottom = footer height */
}
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 150px;
  width: 100%;
  text-align: center;
  font-size: 0.8em;
  color: #777;
  padding: 20px 0;
  background: none repeat scroll 0 0 #eeeeee;
  border-top: 1px solid #dedede;
}
header{
  position: relative;
  height: 175px;
}
header h1{
  display: none;
}
.wrapper{
  width: 1024px;
  margin: 0 auto;
  padding:0 20px
}
footer *{
  margin: 0;
}
header address{
  color: gray;
  margin-right: 16px;
  position: relative;
  text-align: right;
  top: 50px;
  width: 20%;
}
header span#tagline{
  float: left;
  color: gray;
  font-family: Arial,sans-serif;
  font-size: 1.1em;
  line-height: 1.2em;
  margin: 50px 0 0 10px;
}
#logo{
  max-width: 200px; 
  /*position: absolute;*/
  margin-top: 20px;
  float: left;
}
.content-main{
  padding: 40px 0px 20px 0;
  width: 73%;
}
.col-right{
  width: 27%;
  padding: 70px 0 0 0;
}
.sidebar-right{
  padding: 0 0 0 40px;
}
form{
  padding: 5px 0 30px 0;
}
select, textarea, input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"]{
  display: block;
  margin: 0;
  width: 100%;
  font-family: sans-serif;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  padding: 5px;
  border: solid 1px #dcdcdc;
  transition: box-shadow 0.3s, border 0.3s;
}
select:hover, textarea:hover, input[type="text"]:hover, input[type="tel"]:hover, input[type="email"]:hover, input[type="password"]:hover, input[type="number"]:hover{
  border: solid thin #d99400
}
select:focus, textarea:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus{
  outline: none;
  border: solid 1px #9c9c9c;
  box-shadow: 0 0 5px 1px #b5b5b5;
}
input[type='submit'], input[type='button'] {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  background: #eeeeee;
  background: -moz-linear-gradient(top, #eeeeee 0%, #dddddd 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#dddddd));
  background: -webkit-linear-gradient(top, #eeeeee 0%,#dddddd 100%);
  background: -o-linear-gradient(top, #eeeeee 0%,#dddddd 100%);
  background: -ms-linear-gradient(top, #eeeeee 0%,#dddddd 100%);
  background: linear-gradient(to bottom, #eeeeee 0%,#dddddd 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#dddddd',GradientType=0 );
  border: 1px solid #777;
  padding: 0 1.5em;
  margin: 0.5em 0.5em 0.5em 0;
  font: bold 1em/2em Arial, Helvetica;
  text-decoration: none;
  color: #333;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
  border-radius: .2em;
  box-shadow: 0 0 1px 1px rgba(255,255,255,.8) inset, 0 1px 0 rgba(0,0,0,.3);
  -webkit-appearance: none;
}
input[type='submit']:hover, input[type='button']:hover {
  background: #d99400;
  border: solid thin #d99400;
  color: #fff;
  text-shadow: none;
}
input[type='submit']:focus, input[type='button']:focus {
  outline: 0;
  background: #fafafa;
}  
input[type='submit']:before, input[type='button']:before {
  background: #ccc;
  background: rgba(0,0,0,.1);
  float: left;        
  width: 1em;
  text-align: center;
  font-size: 1.5em;
  margin: 0 1em 0 -1em;
  padding: 0 .2em;
  box-shadow: 1px 0 0 rgba(0,0,0,.5), 2px 0 0 rgba(255,255,255,.5);
  border-radius: .15em 0 0 .15em;
  pointer-events: none;        
}
nav{
  /*width: 100%;*/
  margin: 0;
  position: absolute;
  bottom: 0;
}
nav ul ul{
  display: none;
  width: auto;
}
nav ul li:hover > ul{
  display: block;
}
nav ul{
  list-style: none;
  position: relative;
  z-index: 20;
  font-size: 1em;
  display: inline-table;
  margin: 0;
}
nav ul:after {
  content: ""; 
  clear: both; 
  display: block;
}
nav ul li{
  float: left;
  margin: 0;
}
nav ul li a{
  text-shadow: 0px 1px 1px #333;
  text-decoration: none;
  display: block;
  color: #FFF;
}
nav ul li:hover > a{
  text-shadow: none;
  color: #00B4D8;
  text-decoration: none;
  /*background: #E0E0E0;*/
}
nav ul ul{
  position: absolute; 
  padding: 0;
  top: 100%;
}
nav ul ul li{
  float: none;
  position: relative;
  background: #e6ecf3;
}
nav ul ul li:first-child{
  -webkit-box-shadow: inset 0 6px 6px -6px #333;
  -moz-box-shadow: inset 0 6px 6px -6px #333;
  box-shadow: inset 0 6px 6px -6px #333;
}
nav ul ul li a{
  padding: 10px 15px;
  margin: 0;
  /*border-bottom: solid thin #5b6b88;*/
}
nav ul ul li:hover > a{
  background: #4e4e50;
}
nav ul ul ul {
  position: absolute; 
  background: url('../images/design/empty.png') repeat;
  left: 100%; 
  top:0;
  white-space: nowrap;
  width: auto;
}
nav ul ul ul li{
  background: #9e2f23;
}
nav ul ul ul li a:hover{
  background: #e13a27;
}
nav ul ul ul li:first-child{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
footer ul{
  margin: 0 auto;
  list-style: none;
  width: 160px;
  padding: 0 0 10px 0;
}
footer ul li{
  float: left;
}
footer ul li a{
  display: block;
  padding: 0 10px;
}
#signup-response {
  padding-left:30px;
}
.response-waiting {
  background:url("../images/loading.png") no-repeat;
}

.response-success {
  background:url("../images/tick.png") no-repeat;
}

.response-error {
  background:url("../images/cross.png") no-repeat;
}

.floatLeft{
  float: left;
}
.floatRight{
  float: right;
}
/* END GLOBAL */



.checkbox label, .radio label{
  padding-right: 30px;
}
.checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"], .radio input[type="radio"], .radio-inline input[type="radio"] {
  margin: 4px 0px 0 0;
  right: 10px;
}