/* CSS Document */

/* set page background to white and text to very dark gray
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
html, body {
  background-image: url(../images/blueWhiteBkg.jpg);
  background-color: #141414;
  background-repeat:repeat;
  color:#373737;
  margin: 0;
  padding: 0;
  font-family:Arial, Helvetica, sans-serif;
 
  }
/* set width of wrapper to same width as title image
 * no top or bottom margin
 * auto on both sides will center wrapper in modern browsers */
#wrapper {
	width: 800px;
	margin: 0 auto;
	border: 2px solid #FFF;
	background-color: #FFF;
	}
/* set 15px top margin for titlebar, other margins set to zero */
#titlebar {
  background-image:url(../images/RTYLogo.jpg);
  background-color:#FFF;
  height:125px;
  }

#nav {
	height:41px;
	background-image: url(../CSSMenuWriter/cssmw_images/menu_bg.jpg);
	background-repeat: repeat-x;
	background-color: #3A3A3A;
}
#banner {
	background-color: #3A3A3A;
	width:800px;
	background-color:#3A3A3A;
	padding-bottom: 5px;
	}
/* maincontent width is 1px smaller to account for left border */
#maintext {
	width: 780px;
	background-color: #FFFFFF;
	font-family: Verdana, Geneva, sans-serif;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 15px;
	margin-left: 10px;
	padding: 0px;
  }

/* footer styles - set to height and width of the footer image */
#footer {
	background-color: #FFFFFF;
	width: 795px;
	margin: 0;
	padding: 0px;
	font-size: 75%;
	border-top-width: 2px;
	border-top-style: solid;
  }
#footer p {
  margin: 0;
  padding: 10px 15px 0 25px;
  clear:both;
  }
  
