/*
 *  @author:   Bryan Bramlett
 *  @email:    <bbramlett1@atu.edu>
 *  @created:  Fri May  7 10:28:49 CDT 2010
 *
 *  @filename: layout.css
 *
 *  @purpose:
 *    This file contains the layout information for the Arkansas Tech University
 *    web site.
 *
 */

html, body {
  padding: 0;
  margin: 0;
  min-height: 100%;
  height: 100%;
}

body {
  background-image: url('../shared_images/atu-background.png');
  background-repeat: repeat-x;
  background-color: #fff;
  color: #000;
  font-family: arial, sans-serif;
  font-size: 14px;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#header {
  width: 100%;
  height: 91px;
  margin: 0 0 10px 0;
  padding: 0;
}

#header .left {
  float: left;
  width: 50%;
}

#header .right {
  float: right;
  width: 50%;
  text-align: right;
}

#header .right img {
  padding: 0;
  margin: 0;
}

img {
  border: none;
}

#header h1 {
  font-family: Arial;
  padding: 0;
  margin: 0;
  padding-top: 23px;
  font-size: .75em;
  color: #fff;
}

#search {
  font-family: Arial;
  font-size: .9em;
  color: #808080;
  border: 1px solid #c0c0c0;
  padding-left: .15em;
  padding-right: .1em;
}

#banner {
  width: 800px;
  height: 0px;
  margin: 0;
  padding: 0;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

#contents {
  width: 800px;
  background-color: #fff;
  border: 1px solid #d2cc80;
  min-height: 450px;
}

#contents #bread_and_butter {
  padding: .5em;
}

#footer {
  width: 800px;
  margin-top: 10px;
  font-size: .8em;
}

#footer #bottom_menu {
  float: left;
  width: 50%;
}

#footer #bottom_menu ul {
  margin: 0 0 4px 0;
  padding: 0;
  list-style: none;
}

#footer #bottom_menu ul li {
  display: inline;
}

#footer #bottom_menu ul li a {
  padding: 0 .25em 0 .25em;
}

#footer #copyright {
  float: left;
  width: 50%;
}

#footer #hlc {
  float: right;
  text-align: right;
  width: 40%;
}

.left { float: left; }
.right { float: right; }
.clear { clear: both; }

