body {
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #FFFFFF;
	color: #000000;
}

a {
        color: #285A9D; text-decoration: none;
}

a:focus, a:hover {
        color: #FF0000;
}

a.external {
        padding-right: 12px;
        background: url(/images/le.gif) right center no-repeat;
}

a.external:hover {
        background: url(/images/le-on.gif) right center no-repeat;
}

ul
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

ul li
{
	background-image: url(/images/oa.gif);
	background-repeat: no-repeat;
	background-position: 0px 5px;
	padding-left: 14px;
	margin: 8px 0;
}

.container {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 3px;
}

.left {
	width: 143px;
	height: 382px;
	background: url(/images/kelv-half4.jpg) no-repeat;
	float: left;
}

.content {
	background: url(/images/kelv-net.png) no-repeat right 10px;
	padding-left: 30px;
	padding-top: 55px;
	width: 425px;
	float: left;
}

.footer {
	clear: both;
	padding-top: 20px;
	text-align: right;
}

@media only screen and (max-width: 600px) {

.content {
	width: auto;
	padding-left: 0px;
}

.container {
	width: auto;
}

ul li {
	margin: 20px 0;
}

.left {
	display: none;
}

}

/* New stuff */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
header {
  background-color: #666;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  color: white;
}

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ccc;
  padding: 20px;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #f1f1f1;
  padding: 10px;
}

/* Style the footer */
footer {
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: white;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

