@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
/* CSS Document */

h1,h2,p,a {
	font-family: 'Open Sans',sans-serif,Arial;;
	color: #888888;
}

h1 { font-size: 32px;}
h2 { font-size: 14px; font-weight: bold; line-height: 14px;  }
p,a  { font-size: 14px; color: #666666; line-height: 20px;  }

img {
	max-width: 100%; /* Adhere to container width. */
	height: auto; /* Make sure images are scaled correctly. */
}

body {
  margin: 0;
  padding: 0;
  margin: 0 auto;
  float: none;
  max-width: 850px;
  background:#ffffff; 
}
 
.footer {
  background:#dddddd; 
  padding: 0 0 12px 0;
  
};  

.nav ul {
  list-style: none;
  background-color: #444;
  text-align: left;
  padding: 10px 0 0 5%;
  margin: 0;
}
.nav li {
  font-family: 'Oswald', sans-serif;
  margin: 0 0 0 0px;  
  height: 30px;
  border-bottom: 1px solid #888;
  list-style: none; 
}
 
.nav a {
  text-decoration: none;
  font-size: 1.2em;
  line-height: 30px;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background-color: #CC0066;
}
 
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
  padding-left: 10px; padding-right: 10px;
}
 
@media screen and (min-width: 700px) {
  .nav li {
    /* width: 130px; */
    border-bottom: none;
    height: 30px;
    line-height: 30px;
    padding: 0 5% 0 0;

	
    /* font-size: 1.2em;  */

  }
 
  /* Option 1 - Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
 
}

@media screen and not (min-width: 700px) {
  .nav li {
     padding: 0;
  }
}



