/**
 * Basic style rules for all media types.  Layout independent.
 *
 * Contents:
 *   - Reset
 *   - Block Elementsents (Headings, Lists, Forms, etc)
 *   - Inline Elements (Images, Hyperlinks)
 */
 
 
/* ============================================================================
   BASE ELEMENTS */

* {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12px;
	letter-spacing: .0125em;
}

html {
	width: 100%;
	height: 100%;
}

body {
	border: 0;
	margin: 0;
	padding: 0;
}

#div {
	border: 0;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, .h5, h6 {
	color: #120A5B;
	font-weight: normal;
	margin-top: 30px;
	margin-bottom: 12px;
}

h1 {
	font-size: 22px;
	font-family: Georgia, "Times New Roman", Times, serif;}
h2 { font-size: 16px;
font-family: Georgia;
font-weight: bold;
color: #6b8a51;
}
h3 { font-size: 16px;
font-family: Georgia;
font-weight: bold;
color: #6b8a51; }
h4, h6 { font-size: 14px; } 
h5, .h5 { font-size: 12px; }
/* h6 { font-size: 12px; } */

h6, h6 a {color:#120A5B; text-decoration: none; border:none; font-size:16px;}

h6 a, h6 a:active, h6 a:link, h6 a:hover, h6 a:visited {font-weight: bold; font-size:14px;}

.h5 {
	font-weight:bold;
}

p {	
	line-height: 18px;
	margin: 0 0 14px 0;
	padding: 0;
}

ul, ol {
	line-height: 16px;
	margin-top: -13px;
}

li {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 5px;
	padding-bottom: 0;
}

a, a:link, a:visited {
	color: #120a5b;
	font-weight: lighter;
	text-decoration: none;
}

a:hover, p a:hover {
	color: #6b8a51;
	font-weight: bold;
	text-decoration: underline;
}

img {
	border: 0;
	margin: 0;
	padding: 0;
}

hr {
	color: #D67D13;
	height: 1px;
	margin: 5px 0 10px 0;
	padding: 0;
	border-top: none;
}


/* ============================================================================
   BASE CLASSES */

.noMarginPaddingTop {
	padding-top: 0;
	margin-top: 0;
}

.noMarginPaddingBottom {
	padding-bottom: 0;
	margin-bottom: 0;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: left;
}

.clearBoth {
	clear: both;
}

.hidden {
	display: none;
}

.boldBlue {
	font-weight: bold;
	color:#2E3055;
}

