
/*

	CSS DEFAULTS; Force similar cross-browser behavior in standards mode
	-------------------------------------------------------------------------
	Author: Mike Maier
	6.17.2008

*/

*
{
	padding: 0px;
	margin: 0px;
}

	body
	{
		font-family: "Trebuchet MS", "Arial", "Helvetica", sans-serif;
		color: #484a41;
		font-size: 13px;
		line-height: 22px;
		background:url(/images/bg-tile.gif);
		background-repeat:repeat-x;
		background-color:#FFFFFF;
	}
	
		h1
		{
			font-size: 20px;
			font-weight: bold;
			margin-bottom: 10px;
		}
	
		a
		{
			border: none;
		}

		img
		{
			border: none;
		}

		p
		{
			margin: 0px 0px 10px 0px;
		}

		ul
		{
			padding: 0px 0px 0px 30px;
			list-style-position: outside;
			list-style-type: disc;
		}

		ol
		{
			list-style-position: outside;
			padding: 0px 0px 0px 30px;
		}

		li
		{
			padding: 0px 0px 5px 0px;
		}

		label
		{
			cursor: pointer;
		}

		input[type="submit"]
		{
			cursor: pointer;
		}

		input[type="button"]
		{
			cursor: pointer;
		}

		input[type="radio"]
		{
			cursor: pointer;
		}

		input[type="checkbox"]
		{
			cursor: pointer;
		}

		input[type="text"]
		{
			padding: 1px 4px 1px 4px;
			font-family: "Arial", "Helvetica", sans-serif;
			font-size: 14px;
		}
		
		textarea
		{
			padding: 1px 4px 1px 4px;
			font-family: "Arial", "Helvetica", sans-serif;
			font-size: 14px;
		}

		td
		{
			text-align: left;
			vertical-align: top;
		}

		.clear
		{
			display: block;
			overflow: hidden;
			clear: both;
			height: 1px;
		}
		
		.Dimmed
		{
			filter:alpha(opacity=35);
			-moz-opacity: 0.35;
			opacity: 0.35;
		}			

