/* Intro
--------------------------------------------------------

   This file is used to help make cross-browser design
   easier by setting default styles. Most of these
   styles can be overriden and styled by editing
   'layout.css'.

   DO NOT EDIT THIS FILE!


   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;
	}

	table {
		font-size: inherit;
		}

	select, input, textarea {
		font: 99% arial,helvetica,clean,sans-serif;
		}

	pre, code {
		font: 115% monospace;
		}

body * {
	line-height: 1.22em;
	}


/* Removes Ugly Default Border From Linked Images
-------------------------------------------------------*/

a img {
	border: none;
	}


/* Gereric Clear, Use On Divs
-------------------------------------------------------*/

.clear {
	clear: both;
	}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}

.clearfix {
	display: inline-block;
	}

/* Hide from IE Mac \*/

.clearfix {
	display: block;
	}

/* End hide from IE Mac */

/* Accessible Hide: visualy hides an element yet
   makes content available to screen-readers.
-------------------------------------------------------*/

.hide {
	position: absolute;
	left: -3000px;
	}

/* Makes Horizontal Rules look (somewhat) consistant
   accross popular browsers.
-------------------------------------------------------*/

hr {
	background: #ccc;
	border: 0;
	color: #ccc;
	height: 1px;
	margin: 0 0 10px;
	}


/* Define some default margins to common elements,
   again for cross-browser purposes
-------------------------------------------------------*/

body {
	margin: 0; padding: 0; color:#333333;
	}

h1, h2, h3, h4, h5, h6,
p,
blockquote,
form,
label, dl, ul, ol,
fieldset,
address {
    margin: 0 0 1em 0;
	}


dd {
	margin: 0 0 0.5em 0; padding: 0;
	}

dt {
	margin: 0; padding: 0;
	font-weight: bold;
	}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
	}

caption, th, td {
	text-align: left;
	font-weight: normal;
	}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	}

blockquote, q {
	quotes: "" "";
	}

abbr,acronym {
	border:0;
	}


a {outline: none}

/* Forms
-------------------------------------------------------*/

legend {
	color: #000;
	}