/* Styling in the XHTML 1.1 Document Type  - http://www.w3.org/TR/xhtml11/doctype.html#s_doctype*/
/* structure (body, head, html, title) */
html {}
	body {
		font-family : Arial, Sans-Serif;
		font-size : 68.75%;
		color : #000000;
		background-color : #FFFFFF;
		margin : 0em 0em 0em 0em;
		padding : 2em 2em 2em 2em;
	}
		/* text (abbr, acronym, address, blockquote, br, cite, code, dfn, div, em, h1, h2, h3, h4, h5, h6, kbd, p, pre, q, samp, span, strong, var) */
		h1 {
			font-size : 220%;
			color : #e76e02;
			text-transform : uppercase;
			margin : 0em 0em 8px 0em;
		}
		h2 {
			font-size : 200%;
			margin : 0em 0em 4px 0em;
		}
		h3 {
			font-size : 172%;
			color : #603701;
			margin : 0em 0em 4px 0em;
		}
		h4 {
			font-size : 100%;
			margin : 0em 0em 0em 0em;
		}
		p {
			margin : 0em 0em 1em 0em;
		}
		pre, code {}
		/* hypertext (a) */
		a {}
			a:link {
				text-decoration : underline;
				color : #100000;
			}
			a:hover{
				text-decoration : underline;
				color : #e76e02;
			}
			a:visited, 
			a:active {
				text-decoration : underline;
				color : #603701;
			}
		/* list (dl, dt, dd, ol, ul, li) */
		ul {
			margin : 0em 0em 1em 2em;
			padding : 0em 0em 0em 0em;
		}
			ul ul,
			ul ol {
				margin-bottom : 0em;
			}
				ul li {}
		ol {
			margin : 0em 0em 1em 2em;
			padding : 0em 0em 0em 0em;
		}
			ol ol,
			ol ul {
				margin-bottom : 0em;
			}
				ol li {}
		dl {}
			dt {
				font-weight : bold;
			}
			dd {}
		/* object (object, param) */
		object {}
		/* presentation (b, big, hr, i, small, sub, sup, tt) */
		hr {
			border : none;
			width : 100%;
			height : 1px;
			margin : 0px;
			color : #000000;
			background-color : #000000;
			clear : both;	
		}
		/* forms (button, fieldset, form, input, label, legend, select, optgroup, option, textarea) */
		form {
			margin : 0em;
		}
			fieldset {
				border : none;
				padding : 0em;
			}
				legend {
					font-size : 100%;
					font-weight : bold;
				}
				button,
				input, 
				textarea, 
				select {
					font-family : Verdana, Arial, Sans-Serif;
					font-size : 100%;
					vertical-align : middle;
					border : solid 1px #454b60;
				}
					input.text {
						padding : 2px 0px 2px 4px;
					}
					input.radio, 
					.radio input {
						width : auto;
						border : none;
					}
					input.image {
						width : auto;
						border : none;
					}
					input.button,
					button {
						width : auto;
					}
				textarea {
					padding : 2px 0px 2px 4px;
				}
				select {
					padding : 2px 0px 2px 4px;
				}
				label {
					vertical-align : middle;
					font-size : 100%;
					font-weight : bold;
				}
		/* table (caption, col, colgroup, table, tbody, td, tfoot, th, thead, tr) */
		table {
			font-size : 100%;
			border-collapse : collapse;
			margin : 0em 0em 1em 0em;
		}
			caption {
				font-weight : bold;
				text-align : left;	
			}
			tr {
				vertical-align : top;
			}
				th {
					text-align : left;
					font-weight : bold;
				}
				td {}
			thead {}
				thead th {}
			tfoot {}
				tfoot th {}
				tfoot td {}
			tbody {}
				tbody th {}
				tbody td {}

		/* img */
		img {
			border : none;
		}
/* Generic */
	.smaller {
		font-size : smaller;
	}
	.hidden {
		display : none;
	}
	.left {
		float : left;
	}
		img.left {
			margin : 0em 18px 0.5em 0em;
		}
	.right {
		float : right;
	}
		img.right {
			margin : 0em 0em 0.5em 0.5em;
		}
	.toRight {
		text-align : right;
	}
	.centered {
		text-align : center;
	}
	.clear {
		clear : both;
	}
		div.clear {
			height : 1px;
			overflow : hidden;
		}
	.sectionTitle {
		position : absolute;
		left : -1000px;
		top : -1000px;
	}
	.error {
		border : solid 1px red;
	}