
/*
   Global Font Sizes
--------------------------------------------------------

The following code is to help achieve scalable and consistant
font-sizes across major platforms. To set a font-size in the 
CSS, use one of the percentage values from the table below.

This code is courtosy of the fine folks at Yahoo, Code is 
licensed under the BSD License: http://developer.yahoo.net/yui/license.txt

--------------------------------------------------------

	 77% = 10px	 85% = 11px	 92% = 12px
 		
	100% = 13px	107% = 14px	114% = 15px
 	
	122% = 16px	129% =17px	136% = 18px
	
	144% = 19px	152% = 20px	159% = 21px

	167% = 22px	174% = 23px	182% = 24px

	189% = 25px	197% = 26px

-------------------------------------------------------*/

body {
	font:13px arial,helvetica,clean,sans-serif;
	*font-size:small;
	*font:x-small;
	}

	table {
		font-size:inherit;
		font:100%;
		}

	select, input, textarea {
		font:99% arial,helvetica,clean,sans-serif;
		}

	pre, code {
		font:115% monospace;
		*font-size:100%;
		}

body * {
	line-height:1.22em;
	}


a img {
	border: none;
	}

.clear {
	clear: both;
	}

.hide {
	position: absolute;
	left: -3000px;
	}

hr {
	background: #ccc;
	border: 0;
	color: #ccc;
	height: 1px;
	margin: 0 0 10px;
	}


body {
	margin: 0; padding: 0;
	}

h1, h2, h3, h4, h5, h6,
p,
blockquote,
form,
label,
ul, ol, dl,
fieldset,
address {
    margin: lem 0 lem 0;
	}

dd {
	margin: 0 0 0.5em 0; padding: 0;
	}

dt {
	margin: 0; padding: 0;
	font-weight: bold;
	}


legend {
	color: #000;
	}