/* includes */
@import url("header.css");
@import url("static.css");
@import url("menu.css");
@import url("content.css");
@import url("boxes.css");
@import url("forms.css");
@import url("newstyle.css");

/* Reset */
* { margin:0; padding:0; }

body{
	background-color: white;
  background-image: url(../images/background_top_large.png);
	background-repeat: repeat-x;
	font-family: Century Gothic, Arial, Verdana;
	font-size: 12px;
	color: #333333;
}

/* Main layout */
#container{
	width: 900px;
	margin-left:auto;
  margin-right:auto;
}

#header{
  padding-top: 2px;
  margin-bottom: -5px;
}

#content{
	margin-top: 9px;
	background-image: url(../images/container_background.png);
	background-repeat: repeat-y;
	padding-left: 15px;
	padding-right: 15px;
}

/* Links */
a{
	color: #333333;
	text-decoration: none;
}

a:hover {
	color: #FF9900;
}

.error_message{
	color: #FF0000;
	font-size: 1.1em;
}

.noshow{
	display: none;
}