/*
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: 18px;
		padding-top: 10px;
	}
	
	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:           #626e4d;
		text-decoration: none;
	}
	
	a:hover
	{
		text-decoration: underline;
	}

	/* Links ****************************************/	
	

	/* Admin only ***********************************/	
	.cp
	{
		color:           #626e4d;
		text-decoration: none;
		font-size:		 14px;
		font-weight:     bold;
	}
	
	.cp:hover
	{
		text-decoration: underline;
		font-size:		 14px;
		font-weight:     bold;
	}
	
	/* 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;
	}
}
