/*
Name:        text.css
Author:      Kyle Brickman, Kurt Jull
Description: CSS text definitions
Created:     24 March 2009
Modified:    15 Nov 2011 by Roxanne Martinez
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:     #666;
		font-weight: bold;
		text-align: left;
	}
	
	/* Messages *************************************/
	.success, .example
	{
		color: #0c0;
	}
	
	.warning
	{
		color: #f60;
	}
	
	.failure
	{
		color: #c00;
	}
	
	/* Default text tags ****************************/	
	h1
	{
		font-size:   19px;
		font-weight: bold;
		color:       #000;
		letter-spacing: 1px;
		margin:      0;
		padding:     0;
	}
	
	h2
	{
		font-size:   16px;
		color:       #245586;
		font-weight: bold;
		margin:      0;
		padding:     0;
		display: inline;
	}
	
	h2 a
	{
		font-size:   16px;
		color:       #245586;
		font-weight: bold;
		margin:      0;
		padding:     0;
		display: inline;
		text-decoration:none;
	}
	
	h2 a:hover
	{
		font-size:   16px;
		color:       #000;
		font-weight: bold;
		margin:      0;
		padding:     0;
		display: inline;
		text-decoration:underline;
	}
	
	h3
	{
		font-size:   16px;
		color:       #a47c04;
		font-weight: bold;
		display:inline;
	}
	
	h4
	{
		font-size:   14px;
		font-weight: bold;
		margin:      0;
		padding:     0;
	}
	
	h5
	{
	}
	
	h6
	{
	}
	
	a
	{
		text-decoration:underlined;
		color: #855d0f;
	}
	
	a:hover
	{
		text-decoration:underlined;
		color: #000;
	}
	
	p
	{
		padding-bottom: 10px;
		margin: 0px;
		font-size: 12px !important;
	}
	
	li
	{
		font-size:12px;
	}
	
	table.basic
	{
		font-size: 12px;
	}
		

	/* Links ****************************************/	
	
	.blueLink
	{
		font-size:   16px;
		color:       #245586;
		font-weight: bold;
		margin:      0;
		padding:     0;
		display:	 inline;
		text-decoration:none;
	}
	
	.blueLink:hover
	{
		font-size:   16px;
		color:       #000;
		font-weight: bold;
		margin:      0;
		padding:     0;
		display:	 inline;
		text-decoration:underline;
	}
	

	/* Admin only ***********************************/	
	a.cpLink
	{
	color:				#666;
	font-size:			12px;
	line-height:		20px;
	text-decoration:	none;
	}
	
	a.cpLink:hover
	{
	color:				#000;
	text-decoration:	underline;
	}
	
	a.cpLink2
	{
	color:				#666;
	font-size:			16px;
	line-height:		45px;
	font-weight:		bold;
	text-decoration:	none;
	}
	
	a.cpLink2:hover
	{
	color:				#000;
	text-decoration:	underline;
	}
	
	a.cpLink3
	{
	color:				#ccc;
	font-size:			12px;
	line-height:		20px;
	text-decoration:	none;
	}
	
	a.cpLink3:hover
	{
	color:				#fff;
	text-decoration:	underline;
	}
	
	/*body.mceContentBody
	{
		font-family: Arial, Helvetica, sans-serif !important;
		font-size:   12px;
		color:       #666 !important;
		line-height: 19px;
	}*/
	
	/* 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;
	}
}