/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
  #Reset & Basics
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc 
  #Custom */
/* #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;
}
html {
  min-height: 100%;
  overflow-y: scroll;
  overflow-x: auto;
  /*border: 10px solid white;*/
}
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;
  overflow: hidden;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* #Basic Styles
================================================== */
body {
  font: 18px/26px 'Open Sans Condensed', Arial, Helvetica, sans-serif;
  color: #ff8c57;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */

  -webkit-text-size-adjust: 100%;
  margin: 0px;
/*  background: #091b1c;
*/ 
  background: #0d2426;
  font-weight: normal;
}

/* #Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ff8c57;
  /*font-family: "Georgia", "Times New Roman", serif;*/

  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */

  -webkit-text-size-adjust: 100%;
  display: block;
  text-shadow: 1px 1px #252535;
  text-transform: uppercase;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  color: #ff8c57;
  
}
h1 {
  font-size: 42px;
  line-height: 90%;
  letter-spacing: 2px;
  margin-bottom:10px;
}
h2 {
  font-size: 26px;
  line-height: 120%;
  letter-spacing: 2px;
  margin-bottom:10px;
}
h3 {
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 2px;
}

.center {
  text-align: center;
}
.alt {
  font-size:220%;
  text-transform:uppercase;
}
p {
  margin: 0 0 20px 0;
  line-height: 130%;
  letter-spacing: 1px;
}
p img {
  margin: 0;
}
p.lead {
  margin: 10px 0px 0px 0px;
}
em {
  font-style: italic;
  color: #bd6840;
}
strong {
  font-weight: bold;
}
small {
  font-size: 70%;
}

sup {
  vertical-align:super;
  font-size: 50%;
}

/*  Blockquotes  */
blockquote,
blockquote p {
  color:#bd6840;
  font-size: 1.1em;
  font-style: italic;
  overflow: hidden;
}
blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #ff8c57;
  overflow: hidden;
}
blockquote cite {
  display: block;
  font-size: 80%;
  margin-top: 10px;
  color: #ff8c57;
  overflow: hidden;
}
blockquote cite:before {
  content: "\2014 \0020";
  overflow: hidden;
}
blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #91545F;
  overflow: hidden;
}
/* #Links
================================================== */
a,
a:visited {
  color: #ffa982;
  text-decoration: none;
  outline: none;
  border: none;
}
a:hover {
  color: #ffb657;
  text-decoration: none;
}
p a,
p a:visited {
  line-height: inherit;
}
a:hover img {
  border:none;
  outline:none;
  background: none;
}
/* #Lists
================================================== */
ul,
ol {
  margin-bottom: 20px;
}
ul {
  list-style: none outside;
}
ol {
  list-style: decimal;
}
ol,
ul.square,
ul.circle,
ul.disc {
  margin-left: 30px;
}
ul.square {
  list-style: square outside;
}
ul.circle {
  list-style: circle outside;
}
ul.disc {
  list-style: disc outside;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0;
}
ul ul li,
ul ol li,
ol ol li,
ol ul li {
  margin-bottom: 0;
}
li:first-child {
  margin-top: 5px;
}
li:last-child {
  margin-bottom: 0px;
}
li {
  font-size:0.9em;
  margin-bottom: 0px;
}
ul.large li {
  line-height: 21px;
}
li h2 {
  line-height: 1em;
}
li p {
  line-height: 19px;
}
/* #Images
================================================== */
img {
  vertical-align: top;
}
img.scale-with-grid {
  max-width: 100%;
  height: auto;
}
img.portrait {
  float: left;
  max-height: 150px;
  margin: 0px 10px 0px 0px;
}
/* #Buttons
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  /*background: rgba(255, 0, 110, 0.1);*/
  /*color: #000;*/
  font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #ff8c57;
  border: 2px solid #ff8c57;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background:#352535;
  text-decoration: none;
  cursor: pointer;
  z-index: 0;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background: #513e51;
  color: #ff8c57;
  border-color: #ff8c57;
}
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  box-shadow: 0;
  outline: 0;
}
.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* #Forms
================================================== */
form {
  margin-top:10px;
}
fieldset {
  margin-bottom: 65px;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;
  border: 2px solid #ff8c57;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 24px;
  padding: 5px;
  color: #ff8c57;
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  box-sizing: border-box;
  /* Opera/IE 8+ */

  /*background: #000;*/
  background: rgba(37, 37, 53, 0.4);
  margin-bottom:10px;
}
select {
  padding: 0;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover,
textarea:hover {
  border: 2px solid #ff8c57;
  color: #ff8c57;
  outline: 0;
  outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {

  border: 2px solid #ff8c57;
  color: #ff8c57;
  outline: 0;
  outline: none;
}
textarea {
  min-height: 60px;
}
label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}
input[type="checkbox"] {
  display: inline;
}
label span,
legend span {
  font-weight: normal;
  font-size: 13px;
  color: #444;
}
/* #Misc
================================================== */
.remove-bottom {
  margin-bottom: 0 !important;
}
.half-bottom {
  margin-bottom: 10px !important;
}
.add-bottom {
  margin-bottom: 20px !important;
}
/* #Custom
================================================== */

