/*
960 Grid System ~ Text CSS.
Learn more ~ http://960.gs/

Licensed under GPL and MIT.

`Basic HTML
----------------------------------------------------------------------------------------------------*/
BODY
{
	font: 16px/1.5 Helvetica, Arial, "Trebuchet MS", "Liberation Sans", FreeSans, sans-serif;
}
/*Change Default Colors*/
A:link
{
	color: #989832;
}
/*Magenta - unvisited link*/
A:visited
{
	color: #989832;
}
/*Cyan - visited link 00ffff*/
A:hover
{
	color: #999;
}
/*Yellow - mouse over link ffff00*/
A:active
{
	color: #999;
}
/*Light Green - selected link*/
A:focus
{
	outline: 1px dotted #000000;
}
HR
{
	border: 0 solid #CCC;
	border-top-width: 1px;
	clear: both;
	height: 0;
}
/*`Headings
----------------------------------------------------------------------------------------------------*/
H1
{
	font-size: 25px;
}
H2
{
	font-size: 23px;
}
H3
{
	font-size: 21px;
}
H4
{
	font-size: 19px;
}
H5
{
	font-size: 17px;
}
H6
{
	font-size: 15px;
}
/*`Spacing
----------------------------------------------------------------------------------------------------*/
OL
{
	list-style: decimal;
}
UL
{
	list-style: square;
}
LI
{
	list-style-type: none;
	list-style-position: outside;
}

