.footer {
  width: 100%;
  border-top: 1px solid #eaeaea;
}

.footerContent {
  max-width: 860px;
	padding:30px;
  margin: 0 auto;
  overflow: auto; /*allows parent to grow with floating children*/
  padding-top: 30px;
  padding-bottom: 80px;
}
.copyright {
  float:left;
  width: 40%;
  color:#999999;
	font-size: 12px;
	font-family: Century gothic, verdana,arial,sans-serif;
	line-height:20px;
}

/* start footer sub menu
------------------------------------------------------------ */
.footerMenu {
  float: right;
  width: 60%;
	color:#999999; /*color of bars in between*/
  text-align: right;
}
.footerMenu ul {
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.footerMenu li {
  display: inline;
}
.footerMenu p {
	display:inline;
}
.footerMenu a:link, .footerMenu a:visited {
	font-weight: bold;
	color:#999999; /*color of plain ul menu text*/
	font-size: 11px;
	font-family: Century gothic, verdana,arial,sans-serif;
	padding: 0 15px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: color 0.5s, -webkit-transform 0.5s;
	-moz-transition: color 0.5s, -moz-transform 0.5s;
	transition: color 0.5s, transform 0.5s;
}
.footerMenu a:hover, .footerMenu a:active {
  color:#777777; /*color of menu on hover*/
  -webkit-transition: color 0.5s, -webkit-transform 0.5s;
	-moz-transition: color 0.5s, -moz-transform 0.5s;
	transition: color 0.5s, transform 0.5s;
}

/* Media Queries
------------------------------------------------------------ */
@media screen and (max-width: 850px) {
	.footerMenu {
		display: none;
	}
  .copyright {
    width: 100%;
  }
}
