/*
	Style sheet for a basic side navigation page with a blue color scheme.
*/


/*
	General HTML tag formatting
*/

body
{
	background-color: white;
	color: black;
	font-family: Arial, "Times New Roman", Times, serif;
	font-size: 10pt;
	padding: 0;
	margin: 0;
}

a:link
{
	text-decoration: none;
	color: blue;
}

a:visited
{
	text-decoration: none;
	color: blue;
}

a:hover
{
	text-decoration: underline;
	color: rgb(260, 130, 80);
}

td
{
	padding: 5px;
	vertical-align: top;
}

td.label
{
	padding: 0.5em 20px 0.5em 0;
	margin: 0;
	width: 170px;
	text-align: right;
}

td.field
{
	padding: 0.5em 0 0.5em 0;
	width: 367px;	/* accounts for content block width, form block padding and borders, and label width and padding */
	text-align: left;
}

p
{
	margin: 5px;
	padding: 0;
}

.rightAlign
{
	text-align: right;
}

.center
{
	text-align: center;
}

.italic
{
	font-style: italic;
}

.bold
{
	font-weight: bold;
}

.underline
{
	text-decoration: underline;
}

.largerFont
{
	font-size: larger;
}

.smallerFont
{
	font-size: smaller;
}

h1
{
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
}

h2
{
	text-decoration: underline;
	font-size: 1.1em;
}

ol.lowerAlpha
{
	list-style-type: lower-alpha;
}

ol.upperAlpha
{
	list-style-type: upper-alpha;
}

ol.decimal
{
	list-style-type: decimal;
}

ol.lowerRoman
{
	list-style-type: lower-roman;
}

ol.upperRoman
{
	list-style-type: upper-roman;
}

li
{
	margin: 0.5em 0 0.5em 0;
}

.blockIndent
{
	margin-left: 3em;
}


.error
{
	color: rgb(200, 10, 10);
}

.formTopBlock
{
	margin-top: 1em;
	margin-bottom: 1em;
}

.formMiddleBlock
{
}

.formBlock
{
	background-color: rgb(200, 200, 200);
	border: 1px black solid;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
}

.formSubmitBlock
{
	margin-top: 1em;
	text-align: center;
}

.pdfInfo
{
	text-align: center;
	font-size: .9em;
}

/*
	Main layout block formatting
*/

#page
{
	width: 770px;
	margin: 0 auto 0 auto;
	padding: 1px;
	padding-top: 0px;
	border: 1px black solid;
	background: transparent url("../images/pageBackground.jpg") top left repeat-y;
}

#title
{
	width: 748px;
	padding: 10px;
	background-color: rgb(90, 90, 130);
	color: white;
	border: 1px white solid;
	border-top: 2px white solid;
}


#languageBar
{
	background-color: rgb(210, 210, 230);
	width: 768px;
	height: 38px;
	border: 1px white solid;
}

.languageBarElement
{
	margin: 3px;
	padding: 5px;
	width: 70px;
	height: 20px;
	display: inline-block;
	float: left;
	background-color: rgb(90, 90, 130);
	border: 1px white solid;
}

#leftNavBar
{
	margin: 0;
	width: 147px;
	padding: 10px;
	background-color: rgb(210, 210, 230);
	border-top: 1px white solid;
	border-left: 1px white solid;
	border-right: 2px white solid;
	float: left;
	text-align: center;
}

#content
{
	float: left;
	padding: 10px;
	width: 579px;
	background-color: white;
	border-top: 1px white solid;
}

#footer
{
	clear: both;
	margin-left: 170px;
	width: 579px;
	padding: 10px;
	background-color: rgb(90, 90, 130);
	text-align: center;
	font-size: .9em;
	color: white;
	border-top: 2px white solid;
	border-bottom: 1px white solid;
}

/*
	Sub-block specific formatting
*/

/* title sub-blocks */
#title H1
{
	margin: .5em;
	padding: 0em;
	font-size: 2em;
	text-align: center;
}

#title H2
{
	margin: .25em;
	padding: 0em;
	font-size: .85em;
	text-align: center;
}

/* languageBar sub-blocks */
#languageBar A:link
{
	color: white;
	font-weight: bold;
	text-decoration: none;
}

#languageBar A:visited
{
	color: white;
	font-weight: bold;
	text-decoration: none;
}

#languageBar A:hover
{
	color: rgb(260, 130, 80);
}

/* leftNavBar sub-blocks */
#leftNavBar UL
{
	margin: 0;
	padding: 0;
	list-style: none;
}

#leftNavBar LI
{
	margin: 1.5em 0 1.5em 0;
}

#leftNavBar A:link
{
	color: black;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
}

#leftNavBar A:visited
{
	color: black;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
}

#leftNavBar A:hover
{
	color: rgb(260, 130, 80);
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;

}

/* footer sub-blocks */
#footer A:link
{
	color: white;
	text-decoration: none;
}

#footer A:visited
{
	color: white;
	text-decoration: none;
}

#footer A:hover
{
	color: rgb(260, 130, 80);
	text-decoration: underline;
}