/*--------------------------------------------------*/
/* General Setup                                    */

	* {
		padding: 0;
		margin: 0;
	}

	html {
		/* overflow-y: scroll; /* Force Scrollbar - Firefox2 and Safari */
	}

	body {
		font-family: verticalrdana, arial, helvetica, sans-serif;
		font-size: 0.8em;
		color: #000;
		background-color: #FFF;
	}

	a {
		color: #00F;
	}

	a img {
		border: 0;
	}

	p,
	h1,
	h2,
	h3 {
		margin: 0 0 10px 0;
	}

	ul,
	ol {
		margin: 0 0 10px 2em;
	}

	table {
		font-size: 1em; /* IE5 WIN: does not inherit the font size correctly */
	}

	table thead {
		display: table-header-group; /* IE6: Wont repeat table headers over multiple printed pages */
	}

	input {
		font-size: 1em; /* FF: keep font size consistent, by default it is increased by 0.1em */
	}

	select option {
		padding-right: 5px; /* FF: The star rule above for removing the padding also effects the select option's  */
	}

	select optgroup option {
		padding-left: 20px; /* FF: The star rule above for removing the padding also effects the select opt-groups  */
	}

/*--------------------------------------------------*/
/* Generic Classes                                  */

	.offScreen {
		position: absolute;
		left: -5000px;
	}

/*--------------------------------------------------*/
/* Page Frame                                       */

	/*--------------------------------------------------*/
	/* Navigation                                       */

		#pageNavigation {
			padding: 10px 10px 10px 0;
			background: #E0E0E0;
		}

		#pageNavigation ul {
			margin: 0;
			list-style: none;
		}

		#pageNavigation ul li {
			display: inline;
			padding: 0 10px;
			border-right: 1px solid #000;
		}

		#pageNavigation ul li.lastChild {
			border-right: 0;
		}

	/*--------------------------------------------------*/
	/* Content                                          */

		#pageContent {
			padding: 10px;
		}

/*--------------------------------------------------*/
/* Basic Form                                       */

	.basicForm fieldset {
		padding: 10px 0 0 0;
		margin: 0 0 10px 0;
		border: 0;
	}

	.basicForm fieldset legend {
		color: #000; /* IE6: defaults to using blue text */
		font-weight: bold;
		margin: 0 0 10px 0;
		padding: 0;
	}

	.basicForm fieldset fieldset legend {
		padding: 10px 0 0 0;
		margin: 0;
	}

	.basicForm .error {
		color: red;
		background: inherit;
		font-weight: bold;
	}

	.basicForm .row {
		padding: 5px 0 0 11.5em;
		clear: both;
	}

	.basicForm .row .label,
	.basicForm .row.inputFirst .input {
		float: left;
		width: 11em;
		margin: 3px 0 0 -11.5em;
		text-align: right;
	}

	.basicForm .row .label abbr.required {
		border: 0;
	}

	.basicForm .row.inputFirst .label {
		float: none;
		display: block;
		width: auto;
		margin: 3px 0 0 0;
		text-align: left;
	}

	.basicForm .row.info .input,
	.basicForm .row.radio .input,
	.basicForm .row.check .input {
		display: block;
		padding: 3px 0 0 0;
	}

	.basicForm .row.date input {
		text-align: center;
	}

	.basicForm .submit {
		padding-bottom: 10px;
	}

/*--------------------------------------------------*/
/* Single line form                                 */

	.singleLineForm fieldset {
		margin: 0 0 10px 0;
		border: 0;
	}

/*--------------------------------------------------*/
/* Delete form                                      */

	.deleteForm fieldset {
		margin: 0 0 10px 0;
		border: 0;
	}

	.deleteForm .error {
		color: red;
		background: inherit;
		font-weight: bold;
	}

/*--------------------------------------------------*/
/* Basic Table                                      */

	.basicTable {
		margin: 0 0 10px 0;
		color: inherit;
		background: #E0E0E0;
		border-top: 1px solid #000;
		border-right: 0;
		border-bottom: 0;
		border-left: 1px solid #000;
	}

	.basicTable.fullWidth {
		width: 100%;
	}

	.basicTable tr.even {
		background: #F5F5F5;
	}

	.basicTable tr.highlight td.name {
		font-weight: bold;
	}

	.basicTable th {
		color: inherit;
		background: #AAA;
	}

	.basicTable th,
	.basicTable td {
		padding: 2px 4px;
		border-top: 0;
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
		border-left: 0;
	}

	.basicTable td.noResults {
		text-align: center;
	}

	.basicTable td.view,
	.basicTable td.delete {
		text-align: center;
		width: 4em;
	}

/*--------------------------------------------------*/
/* Basic nav                                        */

	.basicNav {
		margin: 0;
		padding: 0;
	}

	.basicNav li {
		float: left;
		list-style: none;
		margin: 0 10px -1px 0;
		position: relative; /* IE5/6 WIN: needs this the the issueLogBody sits under this li */
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		border-left: 1px solid #000;
	}

	.basicNav li a {
		text-decoration: none;
	}

	.basicNav li span,
	.basicNav li strong {
		display: block;
		padding: 5px;
		position: relative; /* IE5/6 WIN: needs this rule to apply the background colour */
		color: #000;
		background: #E0E0E0;
		border-bottom: 1px solid #000;
	}

	.basicNav li strong {
		font-weight: normal;
		color: #000;
		background: #FFF;
		border-bottom: 1px solid #FFF;
	}

	.basicNavChild {
		clear: both;
		border: 1px solid #000;
		padding: 10px 10px 0 10px;
		margin: 0 0 10px 0;
	}

/*--------------------------------------------------*/
/* Small nav                                        */

	.smallNav {
		margin: 0 0 10px 0;
		list-style: none;
	}

	.smallNav li {
		display: inline;
	}

/*--------------------------------------------------*/
/* Outputs                                          */

	#outputDom,
	#outputHtml {
		background: #EEE;
		padding: 10px;
		margin: 0 0 10px 0;
	}

/*--------------------------------------------------*/
/* Output table                                     */

	.outputTable {
		margin: 0 auto 10px auto;
	}

	.outputTable4 {
		width: 750px;
	}

	.outputTable3 {
		width: 100%;
	}

	.outputTable4 th,
	.outputTable4 td {
		width: 230px;
		overflow: auto;
	}

	.outputTable4 th.type,
	.outputTable4 td.type {
		width: 60px;
	}

	.outputTable td pre {
		overflow: auto;
		margin: 0;
		padding: 5px;
	}

	.outputTable4 td pre {
		width: 220px;
	}

	.outputTable td.type {
		text-align: center;
	}

	.outputTable td.dom {
		color: #555;
		vertical-align: top;
	}

	.outputTable td.dom strong {
		color: #000;
	}

	.outputTable td.dom em {
		color: #D00;
		font-weight: bold;
		font-style: normal;
	}

	.outputTable tr.changed {
		background: #FDD;
	}

	.outputTable td.dom p {
		padding: 0 5px 5px 5px;
		margin: 0;
	}

	.outputTable td.noResults {
		text-align: center;
		padding: 10px;
	}

/*--------------------------------------------------*/
/* Download                                         */

	#downloadParts {
		width: 40em;
	}

	#downloadParts li {
		padding-bottom: 10px;
	}

