
/* general styles
----------------------------------------------- */
 
body {
	font-family: 'Courier New', Courier, monospace;
	font-size:12px;
	color:#444;
	text-align:left;
}

p { 
 	line-height: 16px;
	padding: 20px 0 0 0;
}

b, strong {
	font-weight:bold;
}

a {
	text-decoration:none;
	color:#3399ff;
}

a:hover {
	text-decoration:underline;
}

h1 a:hover, h2 a:hover {
	text-decoration:none;
	color:#3399ff;
}

h1 a:hover:after, h2 a:hover:after, h3 a:hover:after { 
	content: " \2192";
}

a:active {
	text-decoration:line-through;
	color:#3399ff;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	text-decoration:none;
	color:#bba;
	font-weight:100;
}

h1, h2, h3, h4, h5, h6 {
	font-weight:100;
	font-family:'Hevletica Neue', Helvetica, Arial, san-serif;
}


h1 {
	font-size:18px;
}

h2 {
	font-size:16px;
}

h3 {
	font-size:14px;
}

h4 {
	font-size:12px;
}

h5 {
	font-size:11px;
}

h6 {
	font-size:10px;
}

.uppercase {
	text-transform:uppercase;
}


/* colors
----------------------------------------------- */

.light-brown {
	color:#bba;
}

.light-grey {
	color:#aaa;
}

.blue {
	color:#3399ff;
}


/* quotes
-------------------------------------------- */
blockquote {
	margin: 10px;
	font-size: 1.4em;
	color: #777;
	font-style: italic;
}	
q {
	display: block;
	font-size: 0.8em;
	margin: 1em 1em;
	padding: 0.5em;
	border: 1px #ccc solid;
}


/* LINKS 
-------------------------------------------- */


	/* LINK ICONS - shows type of file
	------------------------------------ */
	.typography a[href$=".pdf"],
	.typography a[href$=".PDF"],
	.typography a.pdf {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
	}
	.typography a[href$=".doc"],
	.typography a[href$=".DOC"],
	.typography a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.png) no-repeat left center;
	}
	.typography a[href$=".xls"],
	.typography a[href$=".XLS"],
	.typography a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.png) no-repeat left center;
	}
	.typography a[href$=".gz"],
	.typography a[href$=".GZ"],
	.typography a[href$=".gzip"],
	.typography a[href$=".GZIP"],
	.typography a[href$=".zip"],
	.typography a[href$=".ZIP"],
	.typography a.archive {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_zip.png) no-repeat left center;
	}
	.typography a[href$=".exe"],
	.typography a[href$=".EXE"],
	.typography a.application {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/application.png) no-repeat left center;
	}
		

/* PRE STYLES 
-------------------------------------------- */	
pre {
	font-family:"Courier New",Courier;
	display:block;
	font-size:1.2em;
	margin:2em 5em;
	padding:0.5em;
	border:1px #ccc solid;
	background:#eee;;
}

/* TABLE STYLING 
-------------------------------------------- */
table {
	margin: 0 0 18px 0;
	font-size: 11px;
	color: #666;
	border-collapse:collapse;
}
	tr {}
	
		td {
			border:1px solid #999;
			padding:5px;
		}


/* alignment
-------------------------------------------- */
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}


/* images
-------------------------------------------- */
img {
	border: none;
}
img.right {
	float: right;
	margin-left: 20px;
}
img.left {
	float: left;
}
img.leftAlone {
	float: left;
	margin-right: 100%;
}
img.center {
	float: none;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
