/*!
 *
 * Radar Simulation
 * Stylesheet
 * v0.0.2
 *
 */


/* Global Styles
/* -------------------- */

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: #006400;
}

h1 {
  font-size: 21px;
  margin-top: 0;
}

h2 {
  font-size: 19px;
  margin-top: 0;
}

p {
  margin: 0 0 10px;
}

button {
  width: auto;
  padding: 4px 8px;
  border: solid #000000 2px;
  border-radius: 3px;
  background: #c0c0c0;
  font-size: 16px;
  cursor: pointer;
}

button:hover,
button:focus {
  background: #a0a0a0;
}

/* Layout
/* -------------------- */

.wrapper {
  position: relative;
  width: 1200px;
  height: 820px;
  margin: 0 auto;
}
  
.left-column {
  position: absolute;
  top: 10px;
  left: 0;
  width: 330px; 
  height: 635px;
  color: #000000;
}

.left-column > * {
  border-radius: 4px;
}
  
.center-column {
  position: absolute;
  top: 10px;
  left: 350px; 
  width: 845px;
  height: 700px;
  color: #000000;
}


/* Left Column
/* -------------------- */

.header {
  position: absolute;
  width: 345px;
  height: 57px;
  border-radius: 4px;
  background-color: white;
  color: #000000;
}

.site-title a {
  text-decoration: none;
  color: #000000;
}

#next {
  float: right;
}
  
#scenario {
  position: absolute;
  left: 0;
  top: 60px;
  width: 325px; 
  height: 659px;
  padding: 10px;
  background: #d3d3d3;
  font-size: 16px;
}

#scenario-description {
  margin-bottom: 10px;
}
  
  
#cursor {
  position: absolute;
  width: 175px;
  height: 60px;
  left: 0;
  top: 80px;
  padding: 10px; 
  background: #000000;
  color: #00ff00;
  font-size: 20px;
  text-align: left;
}
  
/* Center Column
/* -------------------- */

  
#list {
  position: absolute;
  left: 350;
  top: 0px;
  width: 835px; 
  height: 700px;
  padding: 20px;
  border-radius: 4px;
  background: #99FB99;
  font-size: 16px;
}


/* Footer
/* -------------------- */
  
.footer {
  position: absolute;
  top: 750px;
  left: 0;
  right: 0;
  bottom: 770;
  padding: 10px;
  font-size: 11px;
  text-align: center;
  color: white;
}
    