/*
colour settings
*/

html, body, #container {
  color:              #ffffff;
  background:         #ffffff;
  background-image:   url("bg2.png");
  background-repeat:  repeat;  }
a         {	color:    #00ff00; }
span.ma   { color:    #ffffff; }
span.ma a { color:    #ffffff; }
#center { background: #000000; }

/*
layout settings
*/

html    { margin: 0; padding: 0; }
body    { margin: 0; padding: 0; }
#center { margin: 0; padding: 0 50px; height: 100%; }

/*
inspired by "Centering Variable Width Content With CSS"
http://www.tightcss.com/centering/center_variable_width.htm
*/

#container {
  float:left;
  position:relative;
  left:50%;
}

#center {
  float:left;
  position:relative;
  left:-50%;
}

#outerwrap {
  position:relative;
  overflow:hidden;
}

