/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: SPOT - Free Bootstrap 3 Theme
 * Version: 1.0
 * URL: http://blacktie.co
 */
 
/* FONTS */

@font-face {
  font-family:'Minnebo';
  src:url("../fonts/AvenirLTStdBook.otf") format('opentype'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@import url(http://fonts.googleapis.com/css?family=Open+Sans);




/* OVERALL ASPECT */

body {
  background-color: #00263c;
    font-family: 'Minnebo', sans-serif;
    font-size: 18px;
    line-height: 23px;
    color: #FFF;

    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    
    margin-top: 70px;
}

p.blue {
    color: #00c0f2;
    margin-bottom: 0px;
}

/* Titles */
h1, h2, h4, h5, h6 {
    font-family: 'Minnebo';
    font-weight: normal;
    letter-spacing:0.10em;
    color: #00c0f2;
    font-size: 18px;
}

/* Paragraph & Typographic */

p.blue {
    color: #00c0f2;
}

.centered {
    text-align: center;
}

/* Links */
a {
    color: #ffffff;
    word-wrap: break-word;
    font-family: 'Minnebo', sans-serif;


    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover,
a:focus {
    color: #ffffff;
    text-decoration: underline;
    outline: 0;
}

a:before,
a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}





span.bold {
    text-decoration: bold;
}



.img-responsive{
    margin: auto;
    margin-bottom: 35px;
}

.address{
    margin-bottom: 30px;
    margin-top: 30px;
}


/*ADDED REF: http://stackoverflow.com/questions/22196587/how-to-center-align-vertically-the-container-in-bootstrap; */

html, body{height:100%; margin:0;padding:0}
 
.container-fluid{
  height:100%;
  display:table;
  width: 100%;
  padding: 0;
}
 
.row-fluid {height: 100%; display:table-cell; vertical-align: middle;}
 

.centering {
  float:none;
  margin:0 auto;
}

/*END ADDED*/

@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
    float:right;
  }
}

