/* CSS Document */

body { /* sets the default box for the page to fill the entire window */
	margin: 0;
	padding: 0;
}

p, td, li, ul, ol, h1, h2, h3, h4, h5, h6 { /*sets the overall font styles for the page */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}

table#content { /*this is the main table on the page, the left cell is the navigation, the right cell is the main content*/
	margin: 10px 0px 5px 20px;
	width: 775px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}

div#header { /* this box contains the trec logo as well as the image of the paws*/
	width: 775px;
	height: 120px;
	border-bottom: 1px solid #330391;
	margin: 0px 0px 15px 20px;
	background-image: url(/trec/images/paws.gif);
	background-repeat: repeat;
	background-position: 20px 35px;
	}
	
div#header img { /*sets the properties for the TREC logo inside the header box */
	margin: 5px 5px 5px 0px;
	border: none;
	}
	
td#leftnav { /* sets properties for the table cell which contains the main navigation elements */
	margin: 10px 0px 5px 10px;
	padding: 0px;
	vertical-align: top;
	border-top: 1px solid #8b8be8;
	width: 200px;
	
}

td#leftnav ul { /*sets properties for main level navigation links, this box is inside the leftnav box*/
	list-style: none;
	margin: 0;
	padding: 0;
	border-left: 8px solid #ababe8;
	border-right: 1px dotted #309;
	font: bold .75em Verdana, Arial, Helvetica, sans-serif;
	width: 190px;
	}
	
td#leftnav li { /*sets properties for the list items inside the ul box*/
	border-bottom: 1px dotted #8b8be8;
}

td#leftnav li a { /*sets properties for the a tag inside the li box*/
	display: block;
	padding: 5px 5px 5px 0.5em;
	color: #309;
	text-decoration: none;
	white-space: nowrap;
	}

td#leftnav li a:hover { /*sets properties for the links in the top level menu item's hover state*/
	text-decoration: underline overline;
	color: #ababe8;
	}
	
td#leftnav  ul  ul  { /*sets the properties for the sub menu items, this box is a chile of a main li element*/
	border: none;
	font: bold .85em Verdana, Arial, Helvetica, sans-serif;
	list-style-position: inside;
	margin-left: 10px;
	padding-left: 0px;
	width: 160px;
	}



td#leftnav ul ul a { /*sets properties for the links in the sub menu*/
	background-image: url(/trec/images/onepaw.gif);
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 15px;
	}

td#leftnav ul ul a:hover {/*sets properties for the links in the sub menu*/
	text-decoration: underline;
	background-image: url(/trec/images/onepawdark.gif);
	background-position: left;
	background-repeat: no-repeat;
	padding-left: 15px;
	}
	
	
td#maincontent { /*this is the right cell of the main table, all content goes here*/
		font: normal 11px Verdana, Arial, Helvetica, sans-serif;
		vertical-align: top;
		padding: 0px 10px 5px 10px;
}

td#maincontent a:link { /*main content link styles*/
	text-decoration: none;
	color: #309;
	}

td#maincontent a:visited {/*main content link styles*/
	text-decoration: none;
	color: #6885a5;
	}

td#maincontent a:hover {/*main content link styles*/
	text-decoration: underline;
	color: #ababe8;
	}
	
td#maincontent h2 { /*use for main headers, has margin/padding*/
	font: bold 18px Verdana, Arial, Helvetica, sans-serif;
	color: #330099;
	margin: 2px 0px 15px 0px;
	}

td#maincontent h3 { /*use for sub headers that you want black*/
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	margin: 20px 2px 15px 0px;
	padding-bottom: 0px;
}

td#maincontent h4 { /*use for sub headers that you want black*/
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	margin: 20px 2px 15px 0px;
	padding-bottom: 0px;
	color: #330099;
}

td#maincontent h5 { /*use for sub headers that you want black*/
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 1px;
}

td#maincontent h6 { /*use for sub headers that you want purple*/
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 1px;
	color: #330099;
}




td#maincontent p { /*removes top margin from all p tags*/
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0px;
	
}
/* horizontal navigation definitions */
#maincontent #subnav {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

#maincontent #subnav ul {
	margin: 0px;
	padding: 2px 0px;

	}
	
#maincontent #subnav li {
	display: inline;
	background-image: url(/trec/images/onepaw.gif);
	background-repeat: no-repeat;
	padding-left: 15px;
	padding-right: 10px;
	
	}

#maincontent #subnav a {
	text-decoration: none;
	font: bold 1.0em Verdana, Arial, Helvetica, sans-serif;
	color: #309;
	}
	
#maincontent #subnav a:hover {
	color: #ababe8;
	}
	
/*end horizontal navigation */

/*footer defintions */	
div#footer {
	width: 775px;
	height: 75px;
	border-top: 1px solid #330391;
	margin-left: 20px;
	padding-top: 5px;
	}
div#footer p {
	font: italic 10px/.5 verdana, arial, helvetica;;
	text-align: center;
	}
div#footer a:link {
	font: bold 1em Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #309;
	}

div#footer a:visited {
	font: bold 1em Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #309;
	}

div#footer a:hover {
	font: bold 1em Verdana, Arial, Helvetica, sans-serif;
	text-decoration: underline;
	color: #ababe8;
	}
/* end footer */

/*classesww available for contribute*/

/* TREC colors */
.c1{color: #b8c3ed;}
.c2{color: #c2b2e1;}
.c3{color: #ababe8;}
.c4{color: #330099;}
.c5{color: #330391;}
.c6{color: #1d0154;}
.c7{color: #ccccff;}
.c8{color: #070707;}
/* end colors */

/* clear floats */
.clear { clear: both;}
/* end clear*/

/* image classes */
.rightimg {
	float: right;
	border: 1px solid #000000;
	margin-left: 10px;
	margin-bottom: 6px;
	}

.centerimg {
	position: relative;
	top: -10px;
	left: 75px;
	}
	
	/*end classes*/
	
	/*TREC VBC imported styles*/
	
	.maintitle,
.maintitlecollapse{
	background: transparent url(http://archive.arcus.org/TREC/VBC/style_images/1/tile_cat.gif);
	border: 1px solid #FFF;
	border-bottom: 1px solid #5176B5;
	color: #FFF; 
	font-size: 12px;
	font-weight: bold; 
	margin: 0;
	padding: 8px;
}

.maintitlecollapse{
	border: 1px solid #FFF;
}

.maintitle p,
.maintitlecollapse p,
.formsubtitle p{
	background: transparent !important;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.maintitle p.expand,
.maintitle p.goto,
.maintitlecollapse p.expand,
.formsubtitle p.members{
	float: right;
	width: auto !important;
}

.maintitle a:link, 
.maintitle a:visited,
.maintitlecollapse a:link, 
.maintitlecollapse a:visited{ 
	background: transparent;
	color: #FFF;
	text-decoration: none; 
}

.maintitle a:hover, 
.maintitle a:active,
.maintitlecollapse a:hover, 
.maintitlecollapse a:active{ 
	background: transparent;
	color: #F1F1F1;
}