/* 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 : Verdana, Arial, Sans-Serif;
	font-size : 80%;
	color : #000000;
	background-color : #FFFFFF;
	margin : 0em 0em 0em 0em;
	padding : 2em 2em 2em 2em;
	/*
	scrollbar-arrow-color : #FFFFFF;
	scrollbar-face-color : #3399FF;
	scrollbar-track-color: #FFFFFF;
	scrollbar-base-color : #99CCFF;
	scrollbar-highlight-color : #3399FF;
	scrollbar-shadow-color : #3399FF;
	scrollbar-darkshadow-color : #99CCFF;
	*/
}
	/* 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 : 2.3em;
		margin : 0em 0em 0em 0em;
	}
		h1  a:link,
		h1  a:visited {
			color : #0070b5;
			text-decoration : none;
			cursor : default;
		}
		h1  a:hover,
		h1  a:active {
			color : #0070b5;
			text-decoration : none;
			cursor : default;
		}
	h2 {
		font-size : 1.4em;
		margin : 0em 0em 0.3em 0em;
	}
	h3 {
		font-size : 1.1em;
		margin : 0em 0em 0em 0em;
	}
	p {
		margin : 0em 0em 1em 0em;
	}
	pre, code {}
	/* hypertext (a) */
	a {}
		a:link, 
		a:visited {
			text-decoration : underline;
			color : #0070b5;
		}
		a:hover, 
		a:active {
			text-decoration : underline;
			color : Red;
		}
	/* list (dl, dt, dd, ol, ul, li) */
	ul, ol {
		margin : 0em 0em 1em 2em;
		padding : 0em 0em 0em 0em;
	}
		ul li {}
		ol li {}
	dl {}
		dt {}
		dd {}
	/* object (object, param) */
	object {}
	/* presentation (b, big, hr, i, small, sub, sup, tt) */
	hr {
		border : none;
		width : 100%;
		height : 0.2em;
		color : #000000;
		background-color : #000000;
		clear : both;	
	}
	/* forms (button, fieldset, form, input, label, legend, select, optgroup, option, textarea) */
	form {
		margin : 0em 0em 0em 0em;
	}
		fieldset {
			border : none;
			padding : 0em;
			margin : 0em;
		}
			legend {
				font-size : 100%;
				font-weight : bold;
			}
			input, 
			textarea, 
			select {
				border : solid 0.1em #b0aeb1;
				font-family : Verdana, Arial, Sans-Serif;
				font-size : 100%;
				vertical-align : middle;
			}
				input.radio, 
				.radio input {
					border : none;
				}
					.radio label {
						font-weight : normal;
						color : #000000;
					}
				input.text {
					width : 100%;
					padding : 0.2em 0em 0.2em 0em
				}
					* html input.text{
						height : 2.0em;
						padding : 0.2em 0.8em 0.2em 0.8em	
					}
				input.file {
					padding : 0.2em 0em 0.2em 0em
				}
					* html input.file {
						width : 100%;
						padding : 0.2em 0.8em 0.2em 0.8em	
					}
				input.image {
					border : none;
				}
				input.button {
					border : none;
					color : #ffffff;
					font-size : 0.9em;
					background-color : #8dc474;
					font-weight : bold;
					text-transform : uppercase;
					cursor : pointer;
				}
			textarea {
				width : 100%;
				height : 20em;
				padding : 0.2em 0em 0.2em 0em				
			}
				* html textarea{
					padding : 0.2em 0.8em 0.2em 0.8em	
				}
			label {
				vertical-align : top;
				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;
		}
		thead {}
		tfoot {}
		tbody {}
			tr {
				vertical-align : top;
			}
				th {
					padding : 0.2em 0.5em 0.2em 0.0em;
					text-align : left;
					font-weight : bold;
				}
				td {
					padding : 0.2em 0.5em 0.2em 0.0em;	
				}
	/* img */
	img {
		border : none;
	}
/* Generic */
	.notbold {
		font-weight : normal;
	}
	.smaller {
		font-size : smaller;
	}
	.hidden {
		position : absolute;
		left : -10em;
		top : -10em;
	}
	.wrong {
		font-weight : bold;
		color : #de2a43;
	}
	.negative {
		color : #e52525;
	}
	.left {
		float : left;
	}
	.right {
		float : right;
	}
	.toLeft {
		text-align : left;
	}
	.toRight {
		text-align : right;
	}
	.clearboth {
		clear : both;
	}
	.clear {
		clear : both;
	}
		div.clear {
			height : 1px;
		}
			* html div.clear {
				height : auto;
			}
	.textright {
		text-align : right;
	}
