/* BASE CSS */
/* Defines base CSS element styles; specifies base element style attributes */
/* Taken from Maestro Base 2.5.1, and Vanilla CSS 1.0.0 */

/* FONT */
body {/*, .font*/
	font: 10pt/1.5em Arial, Helvetica, sans-serif;
}
pre, code, tt {
	font: 1em/1.5em monospace;
}
p, .paragraph {
	margin-bottom: 0.5em;
}
.text {
	margin-bottom: 2px;
}

/* LISTS */
ol {
	list-style: decimal;
	padding-left: 35px;
	margin: 0.5em 0em 1em 0em;
}
ul {
	list-style: disc;
	padding-left: 35px;
	margin: 0.5em 0em 1em 0em;
}
ol li, ul li {
	padding-left: 5px;
}

dl {
	margin: 1em 0em;
}
dt {
	font-weight: bold;
	margin: 8px 0px 2px 0px;
}
dd {
	font-style: italic;
	padding-left: 15px;
	margin-bottom: 2px;
	/* light text */
}

/* FORMS */
form {
	margin: 0.5em 0em 1em 0em;
}
input {
	/*float: left;
	margin: 0px 0px 2px 0px;
	padding: 0px;
	line-height: 1.3em;*/ /* ie, smaller inputs */
}
select {
	/*float: left;
	margin: 0px 0px 2px 0px;
	padding: 0px 0px 0px 1px;
	line-height:inherit;*/
}
button {
	text-align: center; /* ie */
	line-height: inherit;
}
optgroup {
	font-style: italic;
	font-weight: bold;
	line-height: inherit;
}
textarea {
	/*float: left;
	margin: 0px 0px 2px 0px;
	padding: 1px;*/
}
fieldset {
	margin: 8px;
	padding: 8px;
	border-style: solid;
	border-width: 1px;
	border-color: #aaa;
}
legend {
	padding: 0px 4px;
	margin: 0px;
}
.legend {/*fieldset.legend*/
	border-style: solid;
	border-width: 0px;
	border-top-width: 1px;
	margin: 0px 0px 2px 0px;
	padding: 2px 8px;
}

/* HEADINGS */
.textBlock {
    font-size: 2.2em;
	line-height: normal;
    font-variant: small-caps;
	/*text-transform: uppercase;*/
    font-weight: bolder;
    margin-bottom: 0.5em;
}
h1, .h1, .textTitle {
	font-size: 2em;
}
h2, .h2, .textHeader {
	font-size: 1.8em;
}
h3, .h3, .textSection {
	font-size: 1.6em;
}
h4, .h4 {
	font-size: 1.4em;
}
h5, .h5 {
	font-size: 1.2em;
}
h6, .h6 {
	font-size: 1em;
}
h1, h2, h3, h4, h5, h6,
.textTitle, .textHeader, .textSection,
.h1, .h2, .h3, .h4, .h5, .h6 {
	line-height: normal;
	font-weight: bold;
	margin-bottom: 0.25em;
}

/* RENDERING */
th, b, strong {
	font-weight: bold;
}
em, i, dfn {
	font-style: italic;
	/* light text */
}
q {
	/* dark text */
}
blockquote {
	margin: 0.5em 2em;
	/* dark text */
}
cite {
	font-style: italic;
	font-size: 0.9em;
    /* dark text */
}
pre {
	margin: 0.5em 0;
	white-space: pre;
}

big {
	font-size: 1.2em; /* larger */
}
small {
	font-size: 0.8em; /* smaller */
}

sup, sub {
	font-size: 0.8em;
	line-height: 0;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

a {
	cursor: pointer; /* ie */
}

hr { /* recommended against due to ie */
	margin: 8px 12px;
	padding: 0px;
}

/* Clearfix (Vanialla CSS) */
/*
* html .clearfix {
	height: 1%;
}
* + html .clearfix {
	display: inline-block;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
* html .group {
	height: 1%;
}
* + html .group {
	display: inline-block;
}
.group:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
*/

/* */
