/* pila at the university of washington*/
/* general css sheet */
/* author: robert cantoni */
/* with much help from a list apart for tricks and tips www.alistapart.com */
/* and from a css zen garden www.csszengarden.com */



/* main menu code begins here */


/* main menu code ends */

/* here's where we get to the text and body formatting, including colors */

/* stolen from Jon Hicks  */
/* appears to affect IE only */
/* good for accessibility */
/* resizable values for IE */
* html body {
	font: 76%/1.6em "Trebuchet MS", verdana, helvetica, sans-serif;
}


body {
    margin: 0;
    text-align: center;
	font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif;
	background-color: #fff;
	font-size: 14px;
	line-height: 15px;
}

/* more font stuff */

h1 { font-weight: bold; color: #000000; font-size: 20px; font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif; line-height: 20px; text-align: left; }

h2 { font-weight: bold; color: #000000; font-size: 16px; line-height: 10px; font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif; text-align: left; }

h3 { padding: 8px 0 0; color: #000000; line-height: 14px; font-size: 14px; font-weight: bold; font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif; text-align: left; }

/* formatting for links */
a {
	text-decoration: none;
	font-weight: bold;
	color: #9acd32;
	}
a:link { color: #9acd32; }
a.specialLink:link { color: white; }
a:visited { color: #9acd32; }
a:active {
	}
a:hover {
	color: #ff1493;
	text-decoration: none;
	}

/* site layout begins here */
#container {
	margin: 0px auto;
	text-align: left;
	width: 800px;		 

/* padding-left: 1px; taken out because I don't know what it does */
}

#top {
  height: 159px;
  width: 800px;
}

#main {
  width: 800px;
 background-image: url(../../../../images/column-background.gif);
 background-repeat: repeat-y
}

#left {
  	float: left;
	display: inline;
  	width: 480px;
	margin-left: 12px;
	margin-top: 5px;
}

#right {
	float: right;
	width: 290px;
	padding: 5px 5px 5px 5px;
}

#rightimages {
	float: right;
	width: 300px;
	margin-right: 0px;
	margin-top: 0px;
}

#footer {
	background-image: url(../../../../images/footer.jpg);
	background-repeat: no-repeat;
	height: 25px;
	width: 800px;
    text-align: left;
	vertical-align: middle;
	font-family: "Trebuchet MS", verdana, helvetica, arial, sans-serif;	font-size: 10px;
	font-size: 10px;
	color: #fff;
	line-height: 25px;
}

.portbar { 
	border-top: 1px solid #9acd32
}


/* i do not know what this clear thing does */
.clear {
   clear: both;
   height: 1px;
   overflow: hidden;
   margin-bottom: -1px;
}