/*
Name:        text.css
Author:      Kyle Brickman, Kurt Jull
Description: CSS text definitions
Created:     24 March 2009
Modified:    18 April 2012 by Roxanne Martinez - added additional fonts in the event that Calibri is unavailable
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:     #000;
		font-weight: bold;
		text-align: left;
	}
	
	/* Messages *************************************/
	.success, .example
	{
		color: #0c0;
	}
	
	.warning
	{
		color: #f60;
	}
	
	.failure
	{
		color: #c00;
	}
	
	/* Default text tags ****************************/	
	
	body
	{
		font-family: Calibri, Arial, Helvetica, sans-serif;
		font-size:   14px;
		color:       #333;
		font-weight: normal;
		
	}
	
	h1
	{
		font-size:   26px;
		font-weight: bold;
		color:       #000;
		font-family: Calibri, Arial, Helvetica, sans-serif;
		margin:      0;
		padding:     0;
	}
	
	h2
	{
		font-size:   16px;
		color:       #666;
		font-weight: bold;
		font-family: Calibri, Arial, Helvetica, sans-serif;
		margin:      0;
		padding:     0;
	}
	
	h3
	{
	}
	
	h4
	{
	}
	
	h5
	{
	}
	
	h6
	{
	}
	
	a
	{
		font-family:     Calibri, Arial, Helvetica, sans-serif;
		font-size:       14px;
		font-weight:     normal;
		text-decoration: none;
		color:           #ef3125;
	}
	
	a:hover
	{
		font-family:     Calibri, Arial, Helvetica, sans-serif;
		font-size:       14px;
		font-weight:     normal;
		text-decoration: underline;
		color:           #000;
	}
	
	span a
	{
		font-family:     Calibri, Arial, Helvetica, sans-serif;
		font-size:       inherit;
		font-weight:     normal;
		text-decoration: none;
		color:           #ef3125;
	}
	
	span a:hover
	{
		font-family:     Calibri, Arial, Helvetica, sans-serif;
		font-size:       inherit;
		font-weight:     normal;
		text-decoration: underline;
		color:           #ef3125;
	}
	
	.redHeader
	{
		color:       #ef3125;
		font-family: Calibri, Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size:   16px;
	}

	/* Links ****************************************/	
	

	/* Admin only ***********************************/	
	a.cpLink
	{
	color:				#666;
	font-size:			12px;
	line-height:		20px;
	text-decoration:	none;
	}
	
	a.cpLink:hover
	{
	color:				#000;
	font-size:			12px;
	line-height:		20px;
	text-decoration:	underline;
	}
	
	a.cpLink2
	{
	color:				#666;
	font-size:			18px;
	line-height:		45px;
	font-weight:		bold;
	text-decoration:	none;
	}
	
	a.cpLink2:hover
	{
	color:				#000;
	font-size:			18px;
	line-height:		45px;
	font-weight:		bold;
	text-decoration:	underline;
	}
	
	.cpText
	{
	color:				#fff;
	font-size:			14px;
	line-height:		20px;
	text-decoration:	none;
	}
	
	.cpLink3
	{
	color:				#fff;
	font-size:			14px;
	line-height:		20px;
	text-decoration:	none;
	}
	
	.cpLink3:hover
	{
	color:				#fff;
	text-decoration:	underline;
	}
	
	/* 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;
	}
}