/*
* Skin Flesh 'n' Bones V1.1
* Inspired by Dave Gamache's Skeleton and Twitter Bootstrap
* 01/01/2015
*/



/* FLESH - Basic Typography, Images, Lists and Buttons
================================================== */

/* !!! APPLY BOX LAYOUT MODEL TO ALL ELEMENTS !!!  */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* I think is wrong now 
  font-size: 62.5%; */
  /* Removes grey highlkight from iPhones */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* #Basic Styles
================================================== */
body {
    background: #FFFFFF;
    /* font: 14px/20px helvetica, arial sans-serif; */
    font: 14px/1.428571429 adelle, Verdana, Geneva, sans-serif; /* set default font size to 14px/20px */
    font-weight: 300;
    color: #333333;
    -webkit-font-smoothing: subpixel-antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
    padding-top: 0.001em; /* Fix for Firefox rendering - White space above body */
 }

.inverse { color: #FFFFFF; background-color: #000000; }

/* #Typography
================================================== */
  h1, h2, h3, h4 { font-family: Myriad-pro, Verdana, Geneva, sans-serif; font-weight: 600; color: #000030; }
  h5, h6 { font-family: Myriad-pro, Verdana, Geneva, sans-serif; font-weight: 400; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
  /*
  h1 { font-size: 44px;}
  h2 { font-size: 35px; }
  h3 { font-size: 28px; }
  h4 { font-size: 21px; }
  h5 { font-size: 17px; }
  h6 { font-size: 14px; }
  */
  h1 { font-size: 40px;}
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  h6 { font-size: 13px; }
  
  h1, h2, h3, h4, h5, h6 { line-height: 1.1; }
  h1, h2, h3 { margin: 20px 0 10px 0; }
  h4, h5, h6 { margin: 10px 0 10px 0; color: #333333; }

  p { margin: 0 0 1.428571429em 0; }
  p:last-child { margin: 0; }
  p img { margin: 0; }
  p.lead { font-size: 21px;  color: #777; color: #000030; margin-top: 30px;  }

  em { font-style: italic; }
  strong { font-weight: bold; }
  .small { font-size: 80%; }

/*  Blockquotes  */
  blockquote, blockquote p { font-size: 18px; line-height: 1.428571429em; color: #777; font-style: italic; }
  blockquote { margin: 20px 0 0 0; padding: 9px 20px 9px 19px; border-left: 1px solid #ddd; }
  blockquote cite { display: block; font-size: 12px; color: #555; }
  blockquote cite:before { content: "\2014 \0020"; }
  blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }
  span.attribution { padding-left: 20px; margin-bottom: 20px; }


  hr { border: 0;  clear: both; margin: 0px 0px; height: 10px; background: url(../images/hr_5px_cccccc.png) repeat-x 0 0; }
  
  

/* #Links
================================================== */
  a, a:visited { color: #00A1F1; text-decoration: none; outline: 0; }
  a:hover, a:focus { color: #00A1F1; text-decoration: underline; }
  p a, p a:visited { line-height: inherit; }

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}





/* #Lists
================================================== */
  ul, ol { margin: 10px 0 20px 0; padding-left: 30px }
  ul { list-style: outside; }
  ol { list-style: decimal; }
  ol, ul, ul.square, ul.circle, ul.disc { margin-left: 0; }
  ul.none { list-style: none outside; }
  ul.square { list-style: square outside; }
  ul.circle { list-style: circle outside; }
  ul.disc { list-style: disc outside; }
  
  ul ul { list-style: circle 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: 3px; }
  li, li li { margin-bottom: 4px; }
  li:last-child { margin-bottom: 8px; }
  li p {   }

  dl { }
  dt { font-weight: bold; }
  dd { margin-left: 20px; }

/* #Images
================================================== */


img {
  vertical-align: middle;
}
.img-wrap > img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

img.rounded {
  border-radius: 6px;
}

img.thumbnail {
  display: inline-block;
  height: auto;
  max-width: 100%;
  padding: 4px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

img.circle {
  border-radius: 50%;
}




/* #Buttons
================================================== */

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
}
input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
}

.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.large {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn.small, .btn.xs {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn.xs {
  padding: 1px 5px;
}

.btn.block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 5px;
}

.btn.block:last-child {
  margin-bottom: 0;
}

input[type="submit"].btn.block,
input[type="reset"].btn.block,
input[type="button"].btn.block {
  width: 100%;
}




/* Flat Buttons */
.btn.default {
  color: #333333;
  background-color: #eeeeee;
  border-color: #cccccc;
}

.btn.default:hover,
.btn.default:focus,
.btn.default:active,
.btn.default.active {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}

.btn.default:active,
.btn.default.active {
  background-image: none;
}

.btn.highlight {
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
}

.btn.highlight:hover,
.btn.highlight:focus,
.btn.highlight:active,
.btn.highlight.active {
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.btn.highlight:active,
.btn.highlight.active {
  background-image: none;
}

.btn.success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn.success:hover,
.btn.success:focus,
.btn.success:active,
.btn.success.active {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}

.btn.success:active,
.btn.success.active {
  background-image: none;
}

.btn.warning {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn.warning:hover,
.btn.warning:focus,
.btn.warning:active,
.btn.warning.active {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}

.btn.warning:active,
.btn.warning.active,
.open .dropdown-toggle.btn.warning {
  background-image: none;
}




/* GRADIENT BUTTONS ============================ Need to add hover state !!!!!
.btn.default,
.btn.highlight,
.btn.success,
.btn.warning {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn.default:active,
.btn.highlight:active,
.btn.success:active,
.btn.warning:active,
.btn.default.active,
.btn.highlight.active,
.btn.success.active,
.btn.warning.active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:active,
.btn.active {
  background-image: none;
}

.btn.default {
  text-shadow: 0 1px 0 #fff;
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, 0%, #e6e6e6, 100%);
  background-image: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
  background-repeat: repeat-x;
  border-color: #e0e0e0;
  border-color: #ccc;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
}

.btn.default:active,
.btn.default.active {
  background-color: #e6e6e6;
  border-color: #e0e0e0;
}

.btn.highlight {
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
  background-image: -webkit-linear-gradient(top, #428bca, 0%, #3071a9, 100%);
  background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
  background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  background-repeat: repeat-x;
  border-color: #2d6ca2;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);
}

.btn.highlight:active,
.btn.highlight.active {
  background-color: #3071a9;
  border-color: #2d6ca2;
}

.btn.success {
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
  background-image: -webkit-linear-gradient(top, #5cb85c, 0%, #449d44, 100%);
  background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
  background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
  background-repeat: repeat-x;
  border-color: #419641;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}

.btn.success:active,
.btn.success.active {
  background-color: #449d44;
  border-color: #419641;
}

.btn.warning {
  background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
  background-image: -webkit-linear-gradient(top, #d9534f, 0%, #c9302c, 100%);
  background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
  background-repeat: repeat-x;
  border-color: #c12e2a;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}

.btn.warning:active,
.btn.warning.active {
  background-color: #c9302c;
  border-color: #c12e2a;
}
*/

  /* Fix for odd Mozilla border & padding issues */
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }


/* #Forms
================================================== */

/* WE NEED TO SORT OUT FORMS AREA
  input padding and height (24px) an issue */

/*form {
    margin-bottom: 20px; }
  fieldset {
    margin-bottom: 20px; }
*/
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="email"],
  textarea,
  select {
    border: 1px solid #cccccc;
    padding: 6px 4px;
    padding-left: 4px;
    height: 28px;
    outline: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-size: 14px;
    color: #777;
    margin: 0;
    width: 95%;
    max-width: 95%;
    display: block;
    margin-bottom: 20px;
    background: #ececec; }
/*
  select {
    padding: 0; }
*/
  input[type="text"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border: 1px solid #ababab;
    color: #333;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
    box-shadow:  0 0 3px rgba(0,0,0,.2); }
  textarea {
    min-height: 60px;
    padding-top: 4px;
  }
  label,
  legend {
    display: block;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;}
  select {
    width: 220px; }
  input[type="checkbox"] {
    display: inline; }
  label span,
  legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444; }

  /* LKH */

  input[type="number"] {
    /*display:inline;*/
    width: 120px;
    padding: 2px 4px;
    /*margin-top: 5px;*/
  }
  select option {
    font-size: 100%;
    margin: 0;
    margin-top: 5px;
    vertical-align: middle;
  }


/* #Misc
================================================== */
  .remove-margin-bottom { margin-bottom: 0; }
  .half-margin-bottom { margin-bottom: 10px; }
  .add-margin-bottom { margin-bottom: 20px; }


