/**
 *  master.css - Globally applicable styles
 */

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-size: 100%;
  font-weight: normal;
  font-family: Helvetica, Arial, sans-serif;
  list-style: none;
}

img {
  border: 0;
}

body {
  background-color: #2a3436;
}

/*Center everything. Can't center div.body b/c it needs to be width 100%*/
div.body > div.header, div.footer ul {
  margin: auto;
  width: 970px;
}

/*Common properties...*/
div.body, div.footer {
  background-repeat: repeat-x;
  min-width: 970px;
}

/*Gradient background for the main div*/
div.body {
  padding-bottom: 50px;
  background-color: #d2edf7;
  background-image: url(/images/layout/global/body_background.jpg);
/*  width: 100%;*/
/*  overflow: auto;*/
}

div.body > div.header {
  position: relative;
}

/*Fix the float on the container*/
ul.float_left {
  overflow: auto !important;
}

/*Apply the float*/
ul.float_left li {
  float: left !important;
}

/*In case the user has JS off, give them something nice to look at in place of the pretty headers*/
span.replaceable.headers {
  font-family: Georgia, serif;
  font-size: 18px;
  display: none;
}

/*A generic clearing class*/
.clear {
  float: none !important;
  clear: both !important;
}

.hidden {
  display: none !important;
}

.inline {
  display: inline !important;
}

.block {
  display: block !important;
}

.invisible {
  visibility: hidden !important;
}

small, small * {
  font-size: 11px;
  color: #666;
}

small.bigger, small.bigger * {
  font-size: 12px;
}

strong, strong *,
b, b * {
  font-weight: bold;
}

em, em *,
i, i * {
  font-style: italic;
}

span.optional, span.optional * {
  color: #ababab !important;
}

a {
  color: #05B0EF;
}

.blue_button {
  margin-top: 15px;
  padding: 8px 18px;
  display: block;
  background-color: #e8f7fd;
  border: 2px solid #e8f7fd;
  font-size: 16px;
  color: #05B0EF;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
}

.blue_button:hover {
    cursor: pointer;
}

.blue_button:active {
  background-color: #e4f2f7;
  padding: 9px 17px 7px 19px;
}

.blue_button.float_left {
  float: left;
}

.blue_button.disabled {
  border-color: #999;
  background-color: #999;
  color: #ddd;
}

.blue_button.disabled:active {
  background-color: #999;
}

.blue_button.borderless {
  border: 2px solid #e8f7fd;
}

.blue_button.small {
  font-size: 14px;
  padding: 2px 8px;
}

.blue_button.small:active {
  padding: 3px 7px 1px 9px;
}

.alert {
  padding: 10px 0;
  border-bottom: 3px solid #aa2222;
  background-color: #ff2222;
  color: #ffffff;
}

.alert p {
  max-width: 970px;
  margin: 0 auto;
}

.alert a {
  color: #ffee00;
}
