
/* Basic HTML
----------------------------------------------------------------------------------------------------*/

body {
	font: 14px/1.5em "Times New Roman", Times, serif
}

a:focus {
	outline: none;
}

hr {
	border-color: #ccc;
	border-style: solid;
	border-width: 1px 0 0;
	clear: both;
	height: 0;
}

strong, b {
	font-weight: bold;
}

i {
	font-style: italic;
}

blockquote {
	margin-left: 30px;
}

/* Headings
----------------------------------------------------------------------------------------------------*/

h1 {
	font-size: 25px;
}

h2 {
	font-size: 23px;
}

h3 {
	font-size: 21px;
}

h4 {
	font-size: 19px;
}

h5 {
	font-size: 17px;
}

h6 {
	font-size: 15px;
}

/*	links
------------------------------------------------------------------------------- */

a:visited,
a:active,
a:link {
	/*color: #900;*/
	color: #747C0C;
	text-decoration: none;
}

a:hover {
	color: #9FAB10; 
	text-decoration: underline;
}

a.lnk-sml {
	font: 0.65em Tahoma, Arial, sans-serif;
	color: #747C0C;
	text-decoration: none;
}

a.lnk-sml:hover {
	color: #9FAB10; 
	text-decoration: underline;
}


/* Spacing
----------------------------------------------------------------------------------------------------*/

ol {
	list-style: decimal;
}

ul {
	list-style: circle;
}

li {
	margin-left: 20px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset,
blockquote {
	margin-bottom: 15px;
}

ol li, ul li, dl dt, dl dd {
	margin-bottom: 5px;
}

dl dd {
	margin: 5px 0 20px 0;
}


/*	Fieldset & Legend
------------------------------------------------------------------------------- */

fieldset {
	margin: 10px;
	padding: 20px 15px 15px 15px;
	border: 1px dotted #633;
}

legend {
	padding: 0 10px 0 10px;
	background: #FFF;
}

