
/*

	CSS DEFAULTS; Force similar cross-browser behavior in standards mode
	-------------------------------------------------------------------------
	Author:		Michael Argentini; magic@mezzocode.com
	Updated:	09/18/2008

*/

*
{
	padding: 0px;
	margin: 0px;
}

	html
	{
		overflow-y: scroll !important;
	}

	body
	{
		font-family: "Arial", "Helvetica", Sans-Serif;
		font-size: 12px;
		color: #656565;
		line-height: 16px;
	}

		a
		{
			color: #c01424;
			text-decoration: none;
		}
		
			a:hover
			{
				text-decoration: underline;
			}
		
		blockquote
		{
			margin: 0px;
			padding: 0px 0px 0px 24px;
		}

		p
		{
			padding: 0px 0px 10px 0px;
		}

		ol, ul
		{
			padding: 0px 25px 0px 25px;
			margin: 0px;
		}

		li
		{
			padding: 0px 0px 10px 0px;
		}

		label, button, input[type="submit"], input[type="button"], input[type="radio"], input[type="checkbox"]
		{
			cursor: pointer !important;
		}

		textarea
		{
			padding: 2px 4px 2px 4px;
			font-family: "Arial", "Helvetica", sans-serif;
			font-size: 13px;
		}
	
		img.inline 
		{
			display: inline;
			border: none;
		}						

		img
		{
			display: block;
			border: none;
		}

		table
		{
			border: none;
			border-spacing: 0px;
			border-collapse: collapse;
		}

			td
			{
				text-align: left;
				vertical-align: top;
				border: none;
			}




/*

	UTILITY CLASSES; General purpose classes
	-------------------------------------------------------------------------

*/

	.Left
	{
		float: left;
	}

	.Right
	{
		float: right;
	}

	.Clear
	{
		clear: both !important;
		display: block !important;
		height: 1px;
		width: 1px;
		font-size: 1px;
		line-height: 1px;
	}

	.Red
	{
		color: Red;
	}
	
	.Bold
	{
		font-weight: bold;
	}
	