/* basic html elements */

h1,h2,h3,h4,h5,h6 {
	font-weight: bold;
	margin: 0 0 .5em 0;
	line-height: 110%;
}

abbr,
acronym {
	text-decoration: underline;
}
abbr:hover,
acronym:hover {
	cursor: help;
}

/* links and link-styled spans */

a,
.link {
	color: #690;
	text-decoration: underline;
}
a,
.link,
.hover {
	cursor: pointer;
}

a:hover,
.link:hover,
.link:focus,
.hover a,
.hover .link {
	text-decoration: none; 
}

/* accessibility */

.accessible {
	display: none;
}

/* form fields */

optgroup {
	padding: .5em 0 0 0;
}
optgroup option {
	padding: 0 1em;
}
/* utility styles */

.monospace {
	font-family: "Lucida Console", Monaco, Courier, "Courier New", monospace;
}

strong, .strong, b, .b, .bold {
	font-weight: bold;
}
.unbold {
	font-weight: normal;
}
em, .em, i, .i {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.floatLeft {
	float:left;
}

.floatRight {
	float:right;
}
.rt {
	float: right;
	margin: 0 0 12px 12px;
}
.lt {
	float: left;
	margin: 0 12px 12px 0;
}
.toUpperCase{
    text-transform: uppercase;
}

/* shared styles: normal lists */

ul.list,
ol.list {
	margin-left: 1em;
	padding-left: 2.5em;
}
ol.list li {
	list-style: decimal outside;
}
ol.list ol.list li {
	list-style: lower-alpha outside;
}
ul.list li {
	list-style: disc outside;
}
dl.list {
	margin-left: 1em;	
}
dl.list dt {
	clear: left;
	float: left;
	width: 30%;
	font-weight: bold;
	margin: 0 1em .5em 0;
}
dl.list dd {
	width: 60%;
	float: left;
	margin: 0 0 .5em 0;
}

dl.list.plain dt,
dl.list.plain dd {
	margin-bottom: .25em !important;
}
dl.list.plain dt {
	font-weight: normal !important;
}

/* shared styles: pipe delimited lists */

ul.piped {
	margin: 0;
	padding: 0;
}
ul.piped li {
	list-style: none;
	float: left;
	margin-left: .5em;
	padding-left: .5em;
	border-left: 1px solid #444;
}
ul.piped li:first-child,
ul.piped li.firstChild {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

dl.piped dt {
	float: left;
	margin-left: .5em;
	padding-left: .5em;
	border-left: 1px solid #444;
}
dl.piped dd {
	float: left;
	margin-left: .25em;
	padding-left: .25em;
}
dl.piped dt:first-child,
dl.piped dt.firstChild {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

/******************************************************************************
*
* float clearing
*
******************************************************************************/

.clear {
	clear: both;
}

* html ul.piped,
* html dl.piped,
* html dl.list,
* html .clearfix {
	height: 1%;
	overflow: visible;
}

*+html ul.piped,
*+html dl.piped,
*+html dl.list,
*+html .clearfix {
	min-height: 1%;
}

ul.piped:after,
dl.piped:after,
dl.list:after,
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

/* END OF FILE */

