@charset "UTF-8";
/* Main CSS Document */

* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 13px;
}
#wrapper {
	min-height: 100%;
	position: relative;
}
header {
	background: #bb0007;
	height: 100px;
}
#logo {
	background: url(../images/logo.png) no-repeat;
	width: 375px;
	height: 100px;
}
#content {
	padding-bottom: 50px;   /* Height of the footer */
}
footer {
	background: #000000;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;   /* Height of the footer */
}
#copyright {
	line-height: 50px;
	font-size: 10px;
	color: #cccccc;
}

.container {
	margin: 0 auto;
	width: 720px;
}
nav {
	color: #999999;
}
nav ul {
	padding: 0;
	list-style: none;
}
nav ul li {
	display: inline-block;
}
nav ul li a {
	padding: 0 15px;
	text-decoration: none;
	color: #ffffff;
}
header nav {
	padding: 60px 0;
}
header nav ul li a:hover {
	color: #333333;
}
header nav ul li:last-child a {
	padding-right: 0;
}
footer nav {
	font-size: 11px;
}
footer nav ul li {
	line-height: 50px;
}
footer nav ul li a {
	padding: 0 10px;
	color: #cccccc;
}
footer nav ul li:first-child a {
	padding-left: 0;
}

@media (max-width: 720px) {
  .container {
      width: 100%;
  }
  .homeOptions .column {
      display: block;
      float: none;
      margin: 0 auto 30px;
  }
}