/*Configure minimum page width, available width, margins and default*/
/*font family for the document*/
body {
  min-width: 800px;
  width: 80%;
  margin: 0 auto;
  padding: 0;
  font-family: Arial, sans-serif;
  background: black;
}

/*Configure the colors when displaying links*/
a:link, a:visited {
  color: white;
}
a:hover, a:focus, a:active {
  color: red;
  font-size: 120%;
}

/*Configure the size and color of level 1 headings*/
h1 {
  color: white;
  font-size: 160%;
  margin-top: 0;
}

/*Configure the size and color of level 2 headings*/
h2 {
  color: white;
  font-size: 120%;
  margin-top: 0;
}

/*Configure the location, height, and width of the document's logo*/
/*located at the left-hand side of the banner*/
#logo {
  position: relative;
  height: 260px;
  margin-top: 40px;
  padding: 10px;
  margin-bottom: 20px;
  background: url(background.jpg) repeat-x;
  color: white;
}

/*Specify the placement of the logo graphic at the top*/
/*of the screen*/
#concept {
  margin: 0;
  position: absolute;
  top: 50px;
  right: 140px;
  width: 50%;
  color: white;
  text-align: center;
}

/*Set the size of the area where content is displayed and float it*/
/*to the right*/
#content {
  width: 70%;
  float: right;
  padding-bottom: 20px;
  margin-left: 10px;
  padding: 2px;
  color: white;
}

/*Set width of menu and float it to the left, disabling list style*/
/*and displaying a border on top of the first menu item*/
#menu {

  width: 25%;
  float: left;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  border-top: 2px solid black;
}

/*Display a border below each menu item and increase menu font size*/
#menu li {
  border-bottom: 2px solid black;
  font: 150% Arial, sans-serif;
  padding: 5px 0 5px 25px;
}

/*Disable the underlining of links*/
#menu a {
  text-decoration: none;
}

/*Configure the display of the copyright statement*/
#copyright {
  clear: both;
  text-align: right;
  font-size: 90%;
  color: white;
  padding-top: 20px;
  margin-bottom: 20px;
  background: url(separator.jpg) repeat-x;
}

