/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)


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;
}*/

/* CSS RESET DONE */
/*html, body { } 
body {
  color: #fff;
  margin: 0 auto;
  font: 1em/1.3em Helvetica, sans-serif;
	background-color: #f36c60;
  font-family: 'Montserrat', Helvetica, arial, sans-serif;
}
.background {
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
  .background img { width: 100%; }

  @media (max-width: 767px) {
    .background img { 
      width: auto; 
      height: 100%;
    }
  }


.clearfix {
  clear: both;
}
.section {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
h1 {
  margin: 40px 0;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
  text-shadow: 0px 1px 1px rgba(0,0,0,.2);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: #fff;  
  margin: 0 10px;
}
*/
/* Button styles */
/*.btn {
  box-sizing:border-box;
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
  
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
    
  line-height: 50px;
  padding: 0 30px;  
  margin-bottom: 40px;
  font-size: 14px;
  text-shadow: 0 1px rgba(0,0,0,.1);
  font-weight: bold;
  -webkit-font-smoothing: antialiased;

  -webkit-box-shadow: 0 3px 0 0 #72ad0d;
  box-shadow: 0 3px 0 0 #72ad0d;
  background-color: #9bd668;
}
  .btn:active,
  .btn.active {
    top: 2px;
    -webkit-box-shadow: 0 1px 0 0 #72ad0d;
    box-shadow: 0 1px 0 0 #72ad0d;
  }
.container {
  padding: 0 10%;
}
.left {
  padding: 30px 5%;
  width: 35%;
  display: inline-block;
}
.right {
  padding: 30px 5%;
  width: 35%;
  background-color: #ddd;
  display: inline-block;
}
*/

/* CUSTOM CSS CHECKBOXES */
form p {
  margin-bottom: 10px;
  text-align: left;
}
  form p:last-child {
    margin-bottom: 0px;
  }

/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {  
  position: relative;
  overflow: hidden;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;

  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
}

/* checkbox aspect */
[type="checkbox"] + label:before,
[type="checkbox"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;

  -webkit-transition: .2s;
  transition: .2s;
}
/* Unchecked styles */
[type="checkbox"]:not(:checked) + label:before {
  top: 0px;
  width: 19px; height: 19px;
  border: 3px solid #fff;
}
[type="checkbox"]:not(:checked) + label:after {
  top: 0px;
  width: 19px; height: 19px;
  border: 3px solid #fff;
  z-index: 0;
}
/* Checked styles */
[type="checkbox"]:checked + label:before {
  top: 2px;
  width: 6px; height: 12px;
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
  border-right: 3px solid #4B679E;
  border-bottom: 3px solid #4B679E;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);

  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}
[type="checkbox"]:checked + label:after {
  top: 0px;
  width: 19px; height: 19px;
  border: 3px solid #fff;
  background-color: #fff;
  z-index: 0;
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  top: 0;
  box-shadow: none;
  background-color: #444;
  width: 19px; height: 19px;
  border: 3px solid #444;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
}
[type="checkbox"]:disabled + label {
  color: #555;
}
[type="checkbox"]:disabled:not(:checked) + label:hover:before {
  border-color: #444;
}

/* hover style just for information */
[type="checkbox"]:not(:checked) + label:hover:before {
  border-color: #fff;
}


/* Dark Version */
/* Unchecked styles */
form.dark [type="checkbox"] + label {
  color: #555;
}
form.dark [type="checkbox"]:not(:checked) + label:before,
form.dark [type="checkbox"]:not(:checked) + label:after {
  border-color: #555;
}
/* Checked styles */
form.dark [type="checkbox"]:checked + label:before {
  border-right: 3px solid #51bdf8;
  border-bottom: 3px solid #51bdf8;
}
form.dark [type="checkbox"]:checked + label:after {
  border-color: #555;
  background-color: #555;
}
/* disabled checkbox */
form.dark [type="checkbox"]:disabled:not(:checked) + label:before,
form.dark [type="checkbox"]:disabled:checked + label:before {
  background-color: #999;
  border-color: #999;
}
form.dark [type="checkbox"]:disabled + label {
  color: #777;
}
form.dark [type="checkbox"]:disabled:not(:checked) + label:hover:before {
  border-color: #999;
}
/* hover style just for information */
form.dark [type="checkbox"]:not(:checked) + label:hover:before {
  border-color: #777;
}