/*
	based on 960 Grid System ~ Text CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/* `Font
----------------------------------------------------------------------------------------------------*/
html{
	font: 100%;
}

body {
	font: 12px verdana,'lucida grande',sans-serif;
}

h1 {
	font-size: 25px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 17px;
}

h4 {
	font-size: 14px;
}

h5 {
	font-size: 12px;
}

h6 {
	font-size: 10px;
}

/* `Decoration
----------------------------------------------------------------------------------------------------*/
a{
	color : #1098d7;
	text-decoration : none;
}

a:hover{
	text-decoration : underline;
}

a:focus {
	outline: invert dotted 1px;
}

hr {
	border: 0 #ccc solid;
	border-top-width: 1px;
	clear: both;
	height: 0;
}

acronym{
  text-decoration : dotted;
}
/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
	list-style: decimal;
}

ul {
	list-style: square;
}

li {
	margin-left: 25px;
}

p{
	text-align : left;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset {
	margin-bottom: 20px;
}