/* layout7d.css
   3-Column CSS Layout
   Cross-Browser.com
*/

/* Element Style Rules */

body {
  margin: 0;
  padding: 0;
  font: medium verdana, arial, sans-serif;
  color: #000;
  background: #E5E4D7;
}
h1 {
  margin: 0;
  padding: 0;
  font-size: x-large;
  color: #2C6700;
}
h2 {
  font-size: large;
  font-weight: normal;
  color: #2C6700;
}
h3 {
  font-size: medium;
  font-size: small;
  color: #2C6700;
}
h4 {
  font-size: small;
  color: #2C6700;
}
p {
  margin-top: 1em;
  margin-bottom: 0;
}
a {
  color: #2C6700;
  background: transparent;
}
a:hover {
  color: #FFF;
  background: #2C6700;
}

/* Misc. Style Rules */

.fw {
  font-weight:bold;
}
.btn {
  cursor: pointer;
  border-bottom: 1px dotted #2C6700; 
}
#Menu {
  margin: 0;
  padding: 0;
}
#Menu ul {
  list-style:none;
  margin:0;
  padding:0;
}
#Menu li {
  margin:0 0 .5em 0;
  padding:0;
  line-height:1.1em;
}

/* Layout Style Rules */

#Page {
  margin: 20px 40px;
}
#Columns {
  background: #FFCF79; /* same as left/right cols */
}
#CenterContent {
  background: #E5E4D7;
}
#LeftColumn, #RightColumn {
  background: #FFCF79;
}
#LeftContent, #RightContent {
  font-size: smaller;
}
#LeftContent, #CenterContent, #RightContent {
  padding: 10px;
}
#Header, #Footer {
  padding: 10px;
  text-align: center;
  background: #92CD00;
}

/* Layout Positioning Rules */

#Page {
  padding: 0;
}
#Columns {
  margin: 0;
  padding: 0;
  position: relative;
  overflow:hidden;
  height: 100%;
}
#CenterColumn {
  float:left;
  width:100%;
  background: transparent;
}
#CenterContent {
  margin: 0 175px;
}
#LeftColumn {
  float:left;
  width:175px;
  margin-left:-100%;
}
#RightColumn {
  float:left;
  width:175px;
  margin-left:-175px;
}
#LeftContent, #RightContent {
  margin: 0;
}
#Footer {
  clear:left;
}
#Header, #Footer {
  margin: 0;
}
