/**
 * Global Sytles
 **/
html {
  font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

/* Links */
a {
  color: #111;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #cecece;
}

a:focus,
a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

body,
button,
input,
select,
textarea {
  color: #111;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
  margin: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/* Text elements */
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
  font-style: italic;
  font-size: 13px;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 1.6em;
  padding: 1.6em;
  overflow: auto;
  max-width: 100%;
  color: #111;
  border: 1px dashed #ccc;
  white-space: pre-wrap;
}

code,
kbd,
tt,
var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

a abbr,
a acronym,
a abbr[title] {
  border-bottom: 0 none;
  text-decoration: none;
}

mark,
ins {
  background-color: #fff9c0;
  text-decoration: none;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

figure {
  margin: 0;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 1.5em;
  width: 100%;
}

th {
  font-weight: bold;
}

button,
input,
select,
textarea {
  outline: 0;
  vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid #d7d7d7;
  border-bottom-color: #bdbdbd;
  border-radius: 1px;
  background: #f5f5f5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 15px 17px rgba(255,255,255,0.5), inset 0 -5px 12px rgba(0,0,0,0.05);
  color: rgba(0,0,0,.8);
  cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
  font-size: 13px;
  line-height: 1;
  padding: 6px 8px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
  font-weight: bold;
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa #bbb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02);
}

button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15);
}

input[type="search"] {
  box-sizing: content-box;
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  color: #999;
  border: 1px solid #d7d7d7;
  border-top-color: #c5c5c5;
  border-radius: 1px;
}

input[type=text],
input[type=password],
input[type=email] {
  font-size: .8125em;
}

input[type=text]:hover,
input[type=password]:hover,
input[type=email]:hover,
textarea:hover,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
  color: #111;
  border-color: #c5c5c5;
}

input[type=text],
input[type=password],
input[type=email] {
  padding: 3px 8px;
}

textarea {
  vertical-align: top; /* Improves readability and alignment in all browsers */
  width: 100%;
  padding: 4px;
}

/**
 * Make sure embeds and iframes fit their containers.
 */
embed,
iframe,
object {
  max-width: 100%;
}

/**
 * Utility classes.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/**
 * Hides text, but makes it visible to screen readers.
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px,0px 0px, 0px 0px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/**
 * Bootstrap Grid
 */
.row-fluid {
  width: 100%;
}

.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  float: left;
  margin-left: 6.563706563706563%;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 99.99999999999999%;
}

.row-fluid .span11 {
  width: 91.11969111969111%;
}

.row-fluid .span10 {
  width: 82.23938223938222%;
}

.row-fluid .span9 {
  width: 73.35907335907335%;
}

.row-fluid .span8 {
  width: 64.47876447876448%;
}

.row-fluid .span7 {
  width: 55.59845559845559%;
}

.row-fluid .span6 {
  width: 46.71814671814671%;
}

.row-fluid .span5 {
  width: 37.83783783783784%;
}

.row-fluid .span4 {
  width: 28.957528957528954%;
}

.row-fluid .span3 {
  width: 20.077220077220076%;
}

.row-fluid .span2 {
  width: 11.196911196911195%;
}

.row-fluid .span1 {
  width: 2.3166023166023164%;
}

.row-fluid .offset12 {
  margin-left: 113.1274131274131%;
}

.row-fluid .offset12:first-child {
  margin-left: 106.56370656370655%;
}

.row-fluid .offset11 {
  margin-left: 104.24710424710423%;
}

.row-fluid .offset11:first-child {
  margin-left: 97.68339768339767%;
}

.row-fluid .offset10 {
  margin-left: 95.36679536679534%;
}

.row-fluid .offset10:first-child {
  margin-left: 88.80308880308878%;
}

.row-fluid .offset9 {
  margin-left: 86.48648648648647%;
}

.row-fluid .offset9:first-child {
  margin-left: 79.92277992277991%;
}

.row-fluid .offset8 {
  margin-left: 77.6061776061776%;
}

.row-fluid .offset8:first-child {
  margin-left: 71.04247104247104%;
}

.row-fluid .offset7 {
  margin-left: 68.72586872586871%;
}

.row-fluid .offset7:first-child {
  margin-left: 62.16216216216215%;
}

.row-fluid .offset6 {
  margin-left: 59.84555984555984%;
}

.row-fluid .offset6:first-child {
  margin-left: 53.28185328185327%;
}

.row-fluid .offset5 {
  margin-left: 50.965250965250966%;
}

.row-fluid .offset5:first-child {
  margin-left: 44.4015444015444%;
}

.row-fluid .offset4 {
  margin-left: 42.08494208494208%;
}

.row-fluid .offset4:first-child {
  margin-left: 35.52123552123552%;
}

.row-fluid .offset3 {
  margin-left: 33.204633204633204%;
}

.row-fluid .offset3:first-child {
  margin-left: 26.64092664092664%;
}

.row-fluid .offset2 {
  margin-left: 24.324324324324323%;
}

.row-fluid .offset2:first-child {
  margin-left: 17.76061776061776%;
}

.row-fluid .offset1 {
  margin-left: 15.444015444015442%;
}

.row-fluid .offset1:first-child {
  margin-left: 8.88030888030888%;
}
