@font-face {
  font-family: 'Verdana';
  font-style: normal;
  font-weight: normal;
  src: local('Verdana'), url('verdana.ttf') format('truetype');
}

/* HEADER STYLES 
-------------------------------------------- */

h1, h2 { 
	color: #003300; 
	margin: 0 0 18px 0;
	font-weight: 500;
}
h1 {
	font-size: 24px;
}
h2 { 
 	font-size: 20px; 
}	
h3 {
	color: #222;
	margin: 0 0 18px 0;
	font-weight: 300;
	clear: both;
	font-size: 18px;
}
h4 {
	font-size: 16px;
	color: #222;
	width: 95%;
	font-weight: 300;
	line-height: 18px;
	border-bottom: 1px solid #ccc;
	margin: 0 0 16px 0;
}
h5 {
	font-size: 14px;
	color: #222;
	font-weight: 700;
	margin: 0 0 12px 0;
}
h6 {
	font-size: 13px;
	color: #555;
	line-height: 1.4em;
	margin: 0 0 12px 0;
}

/* PARAGRAPHS
-------------------------------------------- */
p {
    color: #000;
    line-height: 18px;
    font-size: 1em;
    margin: 0 0 15px 0;
}

/* LIST STYLES
-------------------------------------------- */
ul, ol {
	margin: 0 0 18px 24px;
	color: #000;
}
	li {
		margin: 5px 10px;
		font-size: 1em;
	}
		li li {
			font-size: 0.9em;
		}

/* LINKS
-------------------------------------------- */
a {
 	text-decoration: none;
	color: #005E3F;
}
	a:hover {
 		text-decoration: underline;
	}

	/* LINK ICONS - shows type of file
	------------------------------------ */
	a[href$=".pdf"], a[href$=".PDF"], a.pdf {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
	}
	a[href$=".doc"], a[href$=".DOC"], a.doc {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_word.png) no-repeat left center;
	}
	a[href$=".xls"], a[href$=".XLS"], a.xls {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_excel.png) no-repeat left center;
	}
	a[href$=".gz"], a[href$=".GZ"], a[href$=".gzip"], a[href$=".GZIP"], a[href$=".zip"], a[href$=".ZIP"], a.archive {
		padding: 2px;
		padding-left: 20px;
		background: url(../images/icons/page_white_zip.png) no-repeat left center;
	}
	a[href$=".exe"],a[href$=".EXE"],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;
}
        td {
                /*border:0px solid #999;*/
                padding:5px;
        }

/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.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;
	}