* {
  padding: 0;
  margin: 0;
}

/* http://www.strictlycss.com Developed by Eivind Savio */
pre {
  font-family: "Lucida Grande", Verdana, Arial, Tahoma, sans-serif;
}

body, html {
  color: #000;
  font: 13px "Lucida Grande", Verdana, Arial, Tahoma, sans-serif;
  height: 100%;
}

body {
  min-width: 995px;
  padding: 0;
  margin: 0;
  border: 0;
}

p {
  padding: 7px 0 7px 0;
}

a {
  color: #000099;
}

a img {
  border: none;
}

a:hover {
  color: #0000FF;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: bold;
  padding-bottom: 5px;
}

h1 {
  font-size: 1.4em;
}

h2 {
  font-size: 1.2em;
}

h3 {
  font-size: 1em;
}

.clear {
  clear: both;
}

#mainContainer {
  min-height: 100%;
  background: #98afc7;
}

* html {
  height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
  padding-left: 165px; /*** Same width as margin-left for the float-wrap div ***/
  padding-right: 235px; /*** Our right column width ***/
}

.inner {
  width: 100%;
  padding-bottom: 45px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
  float: left;
  width: 100%;
  margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}

#content {
  float: right;
  margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
  width: 100%;
  position: relative; /** IE needs this  **/
}

#contentWrap {
  padding: 10px;
  background-color: white;
  margin-top: 35px;
  margin-bottom: 40px;
}

#contentWrap .sb-inner {
  background: #fff;
}

p.layout-div {
  padding: 0px;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and
when div.float-wrap is neg margined to the left,
div.left is carried over into the proper position.

To change left column width,
  #left { width }                 (1)
  #content { margin-right }       -((1) + 10)
  .float-wrap { margin-left }     -((1) + 10)
  .outer { padding-left }         (1) + 10
***/
#left {
  float: left;
  width: 155px;
  padding: 5px;
  margin-top: 10px;
  position: relative; /*** IE needs this  ***/
}

#left ul {
  list-style: none;
  padding-bottom: 2px;
  margin-left: 0;
  padding-left: 15px;
}

#left li {
  padding-bottom: 3px;
  margin: 2px;
}

/*************************
RIGHT COLUMN
To change width,
  #right { width }                (1)
  #right { margin-right }         -(1)
  .outer { padding-right }        (1)
**************************/
#right {
  float: right;
  width: 235px;
  padding: 5px 0 20px 10px;
  margin-top: 10px;
  position: relative; /*** IE needs this  ***/
  margin-right: -235px; /** This negative margin-right value is in this example the same as the right column width. ***/
/* Temporarily hiding right column globally */
  display: none;
}

/**************************
HEADER
**************************/
#header {
  background-color: #252525;
}

/**************************
FOOTER
**************************/
#footer {
  height: 60px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
  margin-top: -60px; /** By using a negative margin-top we now move the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. **/
  text-align: center;
  background-color: #252525;
  color: white;
}

#footerTop {
  height: 25px;
}

#footer p {
  clear: both;
}

#footer a {
  color: #4db4df;
}

/* Login page, Signup page changes*/
/* Please refactor*/

.fixed_width_content {
  margin: 0px auto;
  width: 940px;
}

#login-section, #signup-section {
  clear: both;
  padding: 15px 0;
}

div#login-section .myform {
  width: 50%;
  float: left;
}

div#login-section .section_box {
  width: 50%;
  float: left;
}

#signup-section .page-title {
  margin-top: 0;
}

.section_box {
  padding: 15px 0px;
}

div#footer-section {
  background-color: #c3dffb;
  margin: -10px;
  padding: 20px;
}

div#footer-section .section_box {
  width: 48%;
  float: left;
  padding: 0 5px;
}

div#signup-section .section_box {
  width: 50%;
  padding-left: 30px;
  float: left;
}
