/*
Name:        text.css
Author:      Kelly O'Neal, Kyle Brickman, Kurt Jull
Description: CSS text definitions
Created:     17 November 2009
Notes:       This file should contain ONLY definitions for text formatting
*/

@media all
{
	/* Page headers *********************************/
	div.pageTitle {
		font-size: 18px;
	}
	
	div.pageSubtitle {
		font-size: 14px;
		color:     #666666;
	}
	
	/* Messages *************************************/
	.success {
		color: #0c0;
	}
	
	.failure {
		color: #c00;
	}
	
	/* Default text tags ****************************/	
	h1 {
		line-height: 18px;
		font-size: 14px;
	}
	
	h2 {
	}
	
	h3 {
	}
	
	h4 {
	}
	
	h5 {
	}
	
	h6 {
	}
	
	
	/* Links ****************************************/	
	
	a.nav:visited {
		color: #000000;
		text-decoration: none;
	}
	
	a.nav:active {
		color: #000000;
		text-decoration: none;
	}
	
	a.nav:link {
		color: #000000;
		text-decoration: none;
	}
	
	a.nav:hover {
		color: #666666;
		text-decoration: underline;
	}
	
	a:visited {
		color: #006666;
		text-decoration: underline;
	}
	
	a:active {
		color: #006666;
		text-decoration: underline;
	}
	
	a:link {
		color: #006666;
		text-decoration: underline;
	}
	
	a:hover {
		color: #669999;
		text-decoration: none;
	}
	
	a.copy:visited {
		color: #999999;
		text-decoration: none;
	}
	
	a.copy:active {
		color: #999999;
		text-decoration: none;
	}
	
	a.copy:link {
		color: #999999;
		text-decoration: none;
	}
	
	a.seo:visited {
		color: #666666;
		text-decoration: none;
	}
	
	a.seo:active {
		color: #666666;
		text-decoration: none;
	}
	
	a.seo:link {
		color: #666666;
		text-decoration: none;
	}

	/* Admin only ***********************************/	
	
	
	/* Text one-offs ********************************/
	.quote {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 10px;
		color: #666666;
		margin: 12px;
	}
	
	/* Breadcrumbs **********************************/
	div.breadcrumb {
		font-size: 10px;
		color: #999;
		margin-bottom: 5px;
	}
	
	div.breadcrumb a {
		color: #999;
		text-decoration: none;
	}
	
	div.breadcrumb a:hover {
		text-decoration: underline;
	}
	
	
	
	/* Forum Styles ********************************/
	table.forum {
		border: 1px solid #999;
		background-color: #e9eff6;
		width: 100%;
	}
	
	.forum td {
		padding:5px;
		text-align:left;
		vertical-align:top;
	}
	
	.forum th {
		background: url(../images/forumHeader.jpg) repeat-x bottom left;
		background-color:#999;
		color:#ffffff;
		font-weight:bold;
		text-transform:uppercase;
		padding:5px;
		text-align:left;
	}	
	
	.forum hr {
		color:#ccc;
	}
	
	.forum a {
		color:#333;
		font-weight:bold;
	}			
	
	.formInput {
		font-weight:bold;
		color:#333;
		padding-left:15px;
		vertical-align:top;
	}		
	
	.forumButton {
		text-decoration:none;
		font-size:12px;
		font-weight:bold;
		color:#333;
		background-color:#eee;
		border:1px solid #ccc;
		padding:2px 5px;
		cursor:pointer;
	}
	
	.forumButtonOff {
		text-decoration:none;
		font-size:12px;
		font-weight:bold;
		color:#ccc;
		background-color:#eee;
		border:1px solid #ccc;
		padding:2px 5px;
	}	
	
	.altRow {
		background-color:#fff;
	}
	
	/* End Forum Styles ********************************/
	
}