/* 	
----------------------------------------------------
	960 Grid System ~ Text CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.

	HSV 
	Stylesheet: text.css
		
	Font Sizes are based on the following rules:
	http://www.alistapart.com/articles/howtosizetextincss/
	
---------------------------------------------------- 
/*	BASIC HTML
----------------------------------------------------*/
body {
	color: #444;
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-size:100%;			/* EQUIV = 1em = 16px	*/
	line-height:1.125em; 	/* EQUIV = 18px		 	*/
	}

a:focus {
	outline: 1px dotted invert;
}

hr {
	border-top: 1px #c1d1d9 solid;
	border-right: 0;
	border-bottom: 1px #ffffff solid;
	border-left: 0;
	clear: both;
	height: 0;
	margin: 10px;
}

/*	HEADINGS
----------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6{	color: #112266;}

	
h1 {
	font-size: 1.250em;					/*  = 20px	*/
	line-height: 1.375em;				/*  = 22px	*/
	font-weight: normal;
	}

h2 {
	font-size: 1.125em;					/*  = 18px	*/
	line-height: 1.5em;					/*  = 24px	*/
	font-weight: normal;
	}

h3 {
	font-size: 1em;						/*  = 16px	*/
	font-weight: normal;
	}

h4 {
	font-size: 0.875em;					/*  = 14px	*/
	line-height: 1.250em;				/*  = 20px	*/
	}

h5, h6 {
	font-size: 0.750em;					/*  = 12px	*/
	line-height: 1.125em;				/*  = 18px	*/
	}

#container p, 
#footer p, 
#container li {
	font-size: 0.750em;					/*  = 12px	*/
	}									/*  express all other font in %	*/


/*	SPACING
----------------------------------------------------*/
ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

li {
	margin-left: 30px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset {
	margin-bottom: 18px;
}

/*	LINKS
----------------------------------------------------*/

a 	{
	color: #6699ff;
	text-decoration: none;
	}

a:link, 
a:visited {
	color: #6699ff; 
	}
	
html body a:hover {
	color: #00ddff; 
	text-decoration: underline;
	}
	
a img 	{border: none;}

