@charset "utf-8";

/* Formating 
border: 1px solid #000000;
*/

body {
  margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
  padding: 0;
  text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
  font-family: Arial, Helvetica, sans-serif;
  background:url(../_images/bg.jpg) no-repeat fixed;
}

#container {
  width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
  margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  text-align: left; /* this overrides the text-align: center on the body element. */
  background-image:url(../_images/contentbg.png);
  margin-top:70px;
  margin-bottom:70px;
}

#header {
  height:155px;
}

#header #logo {
  margin:-20px 0px 0px -20px;
  float:left;
}

#header #tagline {
  margin:55px 0px 0px 45px;
  float:left;
}

#footer {
  margin-top:20px;
  padding-bottom:20px;
  min-height:100px;
}

#footer #colr {
  margin: 0 0 0 230px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
  width: 600px;
}

#footer a {
  font-size:12px;
  font-weight:bold;
}

#footer p {
  margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
  font-size:11px;
  color:#333333;
  letter-spacing:.05em;
}

#colleft {
  float: left; /* since this element is floated, a width must be given */
  width: 210px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}

#colright {
  margin: 0 0 0 230px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
  width: 600px;
  min-height:350px;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 10px;
}

.fltlft { /* this class can be used to float an element left in your page */
  float: left;
  margin-right: 10px;
}

/* Elements */

h1, h2, h3, h4 {
  margin:0px;
  padding:0px;
}

:active, :focus {
  outline:none;
}

img {
  border:0px;
  margin:0px;
  padding:0px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
  clear:both;
  height:0;
  font-size: 1px;
  line-height: 0px;
}

h1 {
  font-size:26px;
  color:#743001;
}

h2 {
  margin-top:0px;
  font-size:20px;
  color:#555555;
}

p {
  font-size:13px;
  color:#000000;
  line-height:3em;
}

blockquote {
  font-size:13px;
  color:#000000;
  line-height:2em;
}

ul, ol {
  font-size:12px;
  color:#646567;
  line-height:2em;
  list-style:square;
}

a {
  color:#743001;
  text-decoration:none;
}

a:hover {
  color:#ac4701;
}

#nav li {
  font-size:14px;
  line-height:2em;
  list-style:none;
}

/* Form Elements */

label {
  float: left;
  width: 90px;
  font-weight: bold;
  font-size:12px;
  color:#646567;
  line-height:1em;
}

input, textarea {
  width: 180px;
  margin-bottom: 5px;
  border: 1px solid #646567;
}

textarea {
  width: 250px;
  height: 150px;
}

.boxes {
  width: 1em;
}

#submitinput {
  margin-left: 90px;
  margin-top: 5px;
  width: 90px;
  height:30px;
  background: #743001;
  color:#fff;
}

#success {
  padding: 3px 10px;
  color: #009218;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

#bademail, #badserver {
  padding: 3px 10px;
  background: #FFA3A1;
  border: 2px solid #D00D00;
  color: #D00D00;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

label.error {
  margin-left: 80px;
  margin-bottom:10px;
  width:100%;
  color:#F00;
}
