/* 
    Document   : main
    Created on : Oct 2, 2009, 11:34:54 AM
    Author     : Ryan Schumacher <j.r.schumacher@gmail.com>
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #c5d3f8;
  color: #5f5e5e;
  font: 14px "Myriad Pro", sans-serif;
}

.display-none {
  display: none;
}

.clearfix {
  clear: both;
}

a, a:visited{
  color: #5f7aaa;
  text-decoration: none;
  font-size: 14px;
}
a:hover {
  text-decoration: underline;
}

/**
 * Header
 */
#header {
  width: 700px;
  height: 250px;
  margin: auto;
  background: url(../images/header.png) no-repeat bottom left;
}
#header h1 {
  display: none;
}

/**
 * Message
 */

 #message-canvas {
   width: 700px;
   margin: 25px auto 0 auto;;
 }

 #message-canvas #error {
   padding: 10px;
   background-color: #FFFFFF;
   text-align: center;
 }

 #message-canvas #error span {
   font-weight: bold;
 }

/**
 *Content
 */
#content {
  width: 700px;
  margin: 25px auto;
}
#content .top {
  height: 3px;
  background: url(../images/css_sprite_map.png) 0 0 no-repeat;
}
#content .middle {
  height: 250px;
  padding: 5px 10px;
  background: url(../images/content_bg.png) repeat-y top left;
}
#content .bottom {
  height: 3px;
  background: url(../images/css_sprite_map.png) 0 -3px no-repeat;
}
#content .middle .column {
  float: left;
  width: 205px;
  height: 240px;
  margin: 5px 10px;
}
#content .middle .column h2 {
  margin: 0;
  padding: 0;
  font: 18px normal;
}
#content .middle .column p {
  margin: 5px 0;
  line-height: 20px;
}
#content .middle .column ul {
  list-style: none;
  padding-left: 15px;
  margin: 5px 0;
}
#content .middle .column form {
  margin: 5px 0;
}
#content .middle .column input[type="text"] {
  height: 30px;
  width: 150px;
  padding: 8px 2px 0 2px;
  border: 1px solid #B6B4B2;
  vertical-align: bottom;
  color: #989898;
  font-size: 16px;
}
#content .middle .column input[type="submit"] {
  height: 30px;
  border: 1px solid #B6B4B2;
  border-left: 0;
  font-size: 20px;
  padding: 0 3px 3px 3px;
}
#content .middle .column input[type="submit"]:hover {
  cursor: pointer;
  background-color: #CACACA;
}

#footer {
  position: relative;
  width: 100%;
  bottom: 0;
  padding: 0 0 17px 0;
  background-color: #6D758A;
  border-top: 3px solid #77849B;
}
#footer .ribbon {
  height: 25px;
  background-color: #343A44;
  border-bottom: 1px solid #1E2228;
  color: #748498;
}
#footer .ribbon div {
  margin: 0 auto;
  padding: 5px 0;
  text-align: center;
}
#footer .content {
  width: 700px;
  margin: 5px auto;
  color: #DFE6FA;
}
#footer .content > div {
  float: left;
  width: 350px
}
#footer .content div > div {
  float: left;
  margin-right: 20px;
}
#footer .content ul {
  list-style: none;
  margin: 5px;
  padding-left: 5px;
}
#footer .content a {
  font-weight: bold;
  color: #E3EAFF;
}

#copyright {
  width: 100%;
  text-align: right;
}
#social-media {
  width: 100%;
  text-align: right;
}

/**
 * Extra
 */
#extra-div {
 position: absolute;
 top: 0;
 left: 0;
 z-index: -1;
 width: 100%;
 height: 150px;
 background-color: #e3ebfe;
}