/*
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:   14px;
		font-weight: bold;
		color:       #09236e;
	}
	
	div.pageSubtitle
	{
		font-size:   12px;
		font-weight: bold;
		color:       #928a73;
	}
	
	/* Messages *************************************/
	.success
	{
		color: #0c0;
	}
	
	.failure
	{
		color: #c00;
	}
	
	/* Default text tags ****************************/	
	h1
	{
		font-size:  14px;
		color:      #09236e;
		margin-top: 0;
	}
	
	h2
	{
		font-size: 12px;
		color:     #928a73;
		margin-top: 0;
	}
	
	h3
	{
		font-size:   13px;
		font-weight: normal;
		font-style:  italic;
		color:       #8da9f8;
	}
	
	h4
	{
	}
	
	h5
	{
	}
	
	h6
	{
	}
	
	a
	{
		color:           #333;
		text-decoration: underline;
	}
	
	a:hover
	{
	}

	/* Links ****************************************/	
	

	/* Admin only ***********************************/	
	
	
	/* Text one-offs ********************************/
	
	
	/* 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;
	}
}