/*
	960 Grid System ~ Text CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/* `Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
	font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
}

a:focus {
	outline: 1px dotted invert;
}

hr {
	border: 0 #ccc solid;
	border-top-width: 1px;
	clear: both;
	height: 0;
}

/* `Headings
----------------------------------------------------------------------------------------------------*/

h1, .size_1 {
	font-size: 25px;
}

h2, .size_2 {
	font-size: 23px;
}

h3, .size_3 {
	font-size: 21px;
}

h4, .size_4 {
	font-size: 19px;
}

h5, .size_5 {
	font-size: 17px;
}

h6, .size_6 {
	font-size: 15px;
}

/* `Spacing
----------------------------------------------------------------------------------------------------*/

ol {
	list-style: decimal;
}

ul {
	list-style: disc;
}

/* DG - Removed because I want no margin on most LIs.
li {
	margin-left: 30px;
}
*/

p,
dl,
ol,
ul,
pre,
table,
address,
fieldset,
.section {
	margin-bottom: 20px;
}

hr,
.even-vertical-spacing {
    margin-bottom: 10px;
    margin-top: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.3em;
    letter-spacing:-0.04em;
}

li p {
	margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.line-height-tight {
    line-height: 1;
}

/* DG - Ellipsis support
http://mattsnider.com/css/css-string-truncation-with-ellipsis/
----------------------------------------------------------------------------------------------------*/
.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-moz-binding: url('ellipsis.xml#ellipsis');
}