﻿/*My CSS File*/
.img-left {
	border: 1px solid #000000;
	float: left;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.img-center {
	text-align: center;
	border: 1px solid #000000;
	padding: 0px;
	margin: 5px;
	position: absolute;
}
.img-right {
	border: 1px solid #000000;
	float: right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
}
body {
	margin: 10px 10px 10px 50px;
	padding: 10px 10px 10px 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #FFFFFF; /*border:5px double #330033;*/;
	font-size: 12pt;
}
h1 {
	font-size: 20pt;
}
h2 {
	font-size: 18pt;
}
h3 {
	font-size: 16pt;
}
h4 {
	font-size: 14pt;
}
h5 {
	font-size: 12pt;
}
h6 {
	font-size: 11pt;
}
p {
	text-indent: 10px;
}
i {
	font-size: 12pt;
}
b {
	font-size: 12pt;
}
em {
	font-size: 12pt;
}
strong {
	font-size: 14pt;
	color: #000099;
}
pre {
	font-family: "Courier New", Courier, mono;
}
code {
	font-family: "Courier New", Courier, mono;
}
citation {
	font-size: 9pt;
}
dfn {
	background-color: #CCFFCC;
	border-bottom: 1px;
}
/*ol ul*/
li {
	padding-bottom: 10px;
}
/*dl*/
dt {
	background-color: #9999FF;
	font-size: 13pt;
	border: 2px solid #000;
	padding-left: 5px;
}
dd {
	font-size: 10pt;
	padding-bottom: 10px;
}
table {
	margin: 5px 0px 5px 10px;
	border-top: 3px solid #65a9a9;
	border-right: 3px solid #65a9a9;
	border-bottom: 3px solid #65a9a9;
	border-left: 3px solid #65a9a9;
}
caption {
	font-size: 13pt;
	font-weight: bold;
	color: #008478;
	text-align: left;
	padding: 5px;
}
TH {
	font-size: 12pt;
	font-weight: bold;
	margin-left: 0px;
	border-top: 1px solid #65a9a9;
	border-right: 1px solid #65a9a9;
	border-bottom: 1px solid #65a9a9;
	border-left: 1px solid #65a9a9;
	background-color: #d8e3fd;
}
tr {
	border-bottom: 0px;
	border-top: 1px solid #65a9a9;
	border-right: 0px;
	border-bottom: 0px;
	border-left: 0px;
}
TD {
	font-size: 12pt;
	text-align: center;
	border-top: 1px solid #65a9a9;
	border-right: 1px solid #65a9a9;
	border-bottom: 1px solid #65a9a9;
	border-left: 1px solid #65a9a9;
	background-color: #fff;
}
a {
	text-decoration: none;
	background-color: #FFFFFF;	/*white*/
	color: #0000FF;	/*blue*/
}
a:link {
	text-decoration: underline;
	color: #000080; /* dark blue*/;
	background-color: #FFFFFF;	/*white*/
}
a:visited {
	text-decoration: underline;
	background-color: #FFFFFF;	/*white*/
	color: #800080;	/*purple*/
}
a:hover {
	text-decoration: blink;
	border-bottom: 2px #FF6600 solid; /*orange*/
	background-color: #FFFFFF;	/*white*/
}
a:active {
	border-bottom: 2px solid #669900;
	background-color: #FFFFFF;	/*white*/
	color: #990000;	/*dark red*/
}
p.dotted {
	border-style: dotted;
}
p.dashed {
	border-style: dashed;
}
p.solid {
	border-style: solid;
}
p.double {
	border-style: double;
}
p.groove {
	border-style: groove;
}
p.ridge {
	border-style: ridge;
}
p.inset {
	border-style: inset;
}
p.outset {
	border-style: outset;
}
