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

	/*--------------------------------------------------*/
	/* Main                                             */

		.form1 {
			padding-bottom: 1em;
		}

		.form1 fieldset {
			border: 0;
		}

		.form1 fieldset legend {
			display: none;
		}

		#pageContent #mainBody .form1 fieldset p {
			clear: both;
			padding: 0 0 1em 0;
			margin: 0;
		}

	/*--------------------------------------------------*/
	/* Main                                             */

		.form1 .error {
			color: #F00;
			background: inherit;
			font-weight: bold;
		}

		.form1 ul.error {
			padding: 0 1em 1em 2em;
		}

	/*--------------------------------------------------*/
	/* Type                                             */

		.form1 fieldset div.type {
			padding: 0 0 2em 0;
		}

		.form1 fieldset div.type label {
			padding-right: 0.5em;
		}

	/*--------------------------------------------------*/
	/* Date fieldset                                    */

		.form1 fieldset fieldset.date {
			float: left;
			margin: 0 3em 2em 0;
			padding: 0;
		}

		.form1 fieldset fieldset.date label {
			position: absolute;
			left: -5000px;
		}

		.form1 fieldset fieldset.error {
			padding: 4px;
			background: #F00;
		}

	/*--------------------------------------------------*/
	/* Submit button                                    */

		.form1 .submit {
			clear: both;
			text-align: right;
			overflow: auto;
			width: 100%; /* IE5+6 WIN: does not contain the floats with the overflow auto, but this triggers a bug that has the same effect */
		}

		.form1 .submit input {
			font-size: 1.3em;
			color: #7D7D7D;
			border: 0;
			background: #FFF url("../../img/global/nextLinkArrow.gif") no-repeat 100% 70%;
			float: right; /* Display block will make the hit area too large */
			padding: 0 75px 0 0;
			cursor: pointer;
		}

		.form1 .submit input:hover,
		.form1 .submit input:active,
		.form1 .submit input:focus {
			text-decoration: underline;
		}


