@charset "utf-8";

* {
	font-family: 'Roboto',sans-serif;;
	color: #333333;
}

h1 { font-size: 24pt;}
h2 { font-size: 22pt; font-weight: bold; line-height: 26pt;  }
h3 { font-size: 18pt; font-weight: bold; line-height: 22pt;  }
p,a,li  { font-size: 12pt; color: #333333; line-height: 18pt;  }

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:#ffffff; 
  padding: 0 0 12px 0;
  
};  

.nav {
  background: #444;
	padding: 0; margin; 0; 
	}

.nav ul {
  list-style: none;
  background: #444;
  text-align: left;
  padding: 10px 0 10px 5%;
  margin: 0;
}
.nav li {
  margin: 0 0 0 0px;  
  height: 30px;
  border-bottom: 1px solid #888;
  list-style: none; 
}
 
.nav a {
  text-decoration: none;
  font-size: 1.0em;
  line-height: 30px;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background: #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;
  }
}



