/* CSS Reset */
html, body, 
div, p, span, 
h1, h2, h3, h4, h5, h6, 
blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strike, strong, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, input, textarea, button, 
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
}



/* General Styles */
body {
  background: #fff;
  color: #333;
  font: normal normal 12px/18px Helvetica, Arial, sans-serif;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #000;
}



/* Layout Styles */
div#wrapper {
  margin: 0 auto;
  width: 730px;
}

div#header {
  padding: 20px 0;
}

div#header h1 {
  font: normal bold 20px/36px Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

div#content {
  background: #eee;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
  padding: 20px;
  width: 690px;
}

form {
  float: left;
}

form fieldset {
  border: none;
  float: left;
  margin: 0 20px 0 10px;
  width: 200px;
}
form fieldset:last-of-type {
  margin-bottom: 0;
}

form legend {
  color: #333;
  font-size: 16px;
  padding-bottom: 10px;
  text-shadow: 0 3px 3px #fff;
}

form label {
  padding: 0 10px;
}

form div.submit {
  clear: both;
  padding: 40px 0 20px 0;
  text-align: center;
}

form div.submit input {
  background: #222 url(../img/alert-overlay.png) repeat-x;
  display: inline-block;
  padding: 5px 10px 6px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-box-shadow: 0 1px 3px #999;
  -webkit-box-shadow: 0 1px 3px #999;
  text-shadow: 0 -1px 1px #222;
  border-bottom: 1px solid #222;
  position: relative;
  cursor: pointer;
}

form ol li {
  list-style: none;
}
