@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

body {
  font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica';
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  background: url(../img/bg.png) repeat;
  padding-top: 70px;

}

p {

  letter-spacing: .25px;
  line-height: 180%;
      margin-bottom: 25px;
      text-align: justify;
}

hr.shadow{
  height: 1px;
  margin: 50px 0;
  background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0,0,0,0)), color-stop(0.5, #333333), to(rgba(0,0,0,0)));
  background: -webkit-linear-gradient(left, rgba(0,0,0,0), #333333, rgba(0,0,0,0));
  background: -moz-linear-gradient(left, rgba(0,0,0,0), #333333, rgba(0,0,0,0));
  background: -o-linear-gradient(left, rgba(0,0,0,0), #333333, rgba(0,0,0,0));
  background: linear-gradient(left, rgba(0,0,0,0), #333333, rgba(0,0,0,0));
  border: 0;
}
hr.shadow:after { 
  display: block; 
  content:'';
  height: 30px;

  background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 116, color-stop(0%, #cccccc), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -moz-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-radial-gradient(center top, farthest-side, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
  background-image: radial-gradient(farthest-side at center top, #cccccc 0%, rgba(255, 255, 255, 0) 100%);
}

body .btn {
  color: #333;
  border: 1px solid #333;
  font-weight: 400;
  padding: 5px 10px;
  text-transform: uppercase;
  background: none;
  box-shadow: none;
  letter-spacing: 2px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all .4s ease; 
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

body .btn:hover {
  background: #404041;
  color: #fff;
  border-color: #404041;
}

body .btn-lg {
  font-size: 18px;
  padding: 15px 25px;
  margin: 40px auto;
}

.navbar-default {
    background-color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #B6CAC1;
}

/* Custom page footer */
.footer {
	padding-top: 5px;
  color: #999;
  border-top: 1px solid #ccc;
  font-size: 12px;
}

.footer a { color: #999; }

.footer p {	text-align: right !important; }

/* Customize container */
@media (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}