/* 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 : 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-family : Georgia, Serif;
			font-size :	220%;
			font-weight : normal;
			margin : 0em 0em 0.25em 0em;
			color : #053761;
			background-color : inherit;
		}
		h2,
		legend,
		caption {
			font-family : Georgia, Serif;
			font-size : 166%;
			font-weight : normal;
			margin : 0em 0em 0.5em 0em;
			color : #053761;
			background-color : inherit;
		}
			h2.subTitle {
				color : #372626;
			}
		h3 {
			font-size :	100%;
			margin : 0em 0em 0em 0em;
		}
		p {
			margin : 0em 0em 1em 0em;
		}
		pre, code {}
		/* hypertext (a) */
		a {}
			a:link, 
			a:visited {
				text-decoration : underline;
				color : #372626;
			}
			a:hover, 
			a:active {
				text-decoration : underline;
				color : #657888;
			}
		/* 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-bottom : 1em;
		}
			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;
			color : #000000;
			background-color : #000000;
			clear : both;	
		}
		/* forms (button, fieldset, form, input, label, legend, select, optgroup, option, textarea) */
		form {
			margin : 0em;
		}
			fieldset {
				padding : 0px;
				border : none;
			}
				legend {
					margin-left : -0.3em;
				}
				input, 
				textarea, 
				select {
					font-family : Arial, Sans-Serif;
					font-size : 100%;
					vertical-align : middle;
				}
					input.textHomeSearch {
						border : solid 1px #857d7d;
						padding : 2px 4px 2px 4px;
						width:100px;
					}
					input.text {
						border : solid 1px #857d7d;
						padding : 2px 4px 2px 4px;
					}
					input.text.error {
						background-color: #F2EBDA;
					}					
					input.radio, 
					.radio input {
						width : auto;
						border : none;
					}
					input.image {
						width : auto;
						border : none;
					}
					input.button,
					input.submit {
						width : auto;
						cursor : pointer;
					}
				textarea {
					border : solid 1px #857d7d;
					padding : 2px 4px 2px 4px;
				}
				textarea.error {
					background-color: #F2EBDA;
				}
				select {
					border : solid 1px #857d7d;
					padding : 1px 1px 1px 1px;
				}
				select.error {
					background-color: #F2EBDA;
				}				
				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 {
				text-align : left;
			}
			tr {
				vertical-align : top;
			}
				th {
					padding : 0px 0px 2px 0px;
					text-align : left;
					font-weight : bold;
				}
				td {
					padding : 0px 0px 2px 16px;
				}
			thead {}
				thead th {}
			tfoot {}
				tfoot th {
					padding : 0px 0px 2px 0px;
				}
				tfoot td {
					padding : 0px 0px 2px 0px;
				}
			tbody {}
				tbody th {}
				tbody td {}

		/* img */
		img {
			border : none;
		}
/* Generic */
	.smaller {
		font-size : smaller;
	}
	.hidden {
		display : none;
	}
	.left {
		float : left;
	}
		img.left {
			margin : 0em 20px 20px 0em;
		}
	.right {
		float : right;
	}
		img.right {
			margin : 0em 0em 20px 20px;
		}
	.toRight {
		text-align : right;
	}
	.clear {
		clear : both;
	}
		div.clear {
			min-height : 1px;
		}