/* v0.1 Elevate Design Stylesheet */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i');
/* clearfix to auto clear floats */
.clearfloats:after {
  content: "";
  display: table;
  clear: both;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
/*
  This stylesheet defines all the general element style that are not tied to any IDs or Classes
  such as: html, body, a links, headers, paragraphs, etc.
*/
html {
  box-sizing: border-box;
  -webkit-font-smoothing: auto;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background: #ffffff;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  /* set as .nav > li > a line-height as well */
  overflow-x: hidden;
}

#header {
  background: #272a36;
  margin: 0px 0px 0px 0px;
  height: auto;
}
#header .container {
  padding: 10px 0;
}
#header p {
  color: #fff;
  display: inline-block;
}

div#content {
    padding: 30px;
}

/****** FOOTER ******/
#footer {
  background: #272a36;
  margin: 0px 0px 0px 0px;
  height: auto;
}
#footer .container {
  padding: 0px;
}
#footer p {
  color: #fff;
  margin: 0px;
}
