/*
Name:        text.css
Author:      Kyle Brickman, Kurt Jull
Description: CSS text definitions
Created:     24 March 2009
Notes:       This file should contain ONLY definitions for text formatting
*/

@media all
{
	/* Page headers *********************************/
	
	div.pageTitle
	{
		font-size: 16px;
		font-weight:bold;
		padding-top: 10px;
		margin-left: -20px;
		font: Tahoma,Arial, Helvetica, sans-serif;
	}
	
	div.pageSubtitle
	{
		font-size: 14px;
		color:     #666;
	}
	
	/* Messages *************************************/
	.success
	{
		color: #0c0;
	}
	
	.failure
	{
		color: #c00;
	}
	
	/* Default text tags ****************************/	
	h1
	{
		margin:        0;
		padding:       0;
		font-size:     18px;
		padding-top:   10px;
		margin-bottom: 18px;
		font-weight:   normal;
	}
	
	h2
	{
		margin:        0;
		padding:       0;
		font-size:     14px;
		margin-bottom: 18px;
		color:         #666;
		font-weight:   normal;
	}
	
	h3
	{
	}
	
	h4
	{
	}
	
	h5
	{
	}
	
	h6
	{
	}
	
	a
	{
		color:           #06507c;
		text-decoration: none;
	}
	
	a:hover
	{
		text-decoration: underline;
	}

	/* Links ****************************************/	
	

	/* Admin only ***********************************/	
	.cp
	{
		color:           #043858;
		text-decoration: none;
		font-size:		 14px;
		font-weight:     bold;
	}
	
	.cp:hover
	{
		text-decoration: underline;
	}
	
	.admin
	{
		color:           #043858;
		text-decoration: none;
		font-size:		 10px;
		font-weight:     bold;
	}
	
	.admin:hover
	{
		text-decoration: underline;
	}
	
	.adminLink
	{
		color:           #000;
		text-decoration: none;
		font-size:		 12px;
	}
	
	.adminLink:hover
	{
		color:           #000;
		text-decoration: underline;
	}
	
	/* Text one-offs ********************************/
	
	
	/* Breadcrumbs **********************************/
	div.breadcrumb
	{
		font-size:     9px;
		color:         #999;
		margin-left:   -20px;
	}
	
	div.breadcrumb a
	{
		color:           #999;
		text-decoration: none;
	}
	
	div.breadcrumb a:hover
	{
		text-decoration: underline;
	}
}