form.enrolment {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 500px;
  max-width: 600px;
  width: 560px; 
}

form.enrolment label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form.horizontal label {
	float: none;
	width: auto;
	text-align: left;
	margin-left: 10px;
}

form.enrolment input, form.enrolment textarea, form.enrolment select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 5px 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form.horizontal input, form.horizontal textarea, form.horizontal select {
	margin: 5px 0 10px 10px;
}

form.enrolment textarea { overflow: auto; }

form.enrolment br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

form.enrolment .submit {
	margin-left: 160px
}
form.horizontal .submit {
	margin-left: 10px;
}
.enrolment h3 {
	margin-top: 1em;
}

#course-enrolment .required {
	color: #FF0000;
	font-weight: bold;
}

/* status messages */
#course-enrolment .info, #course-enrolment .success, #course-enrolment .warning, #course-enrolment .error {
	border: 1px solid;
	margin: 10px 0px;
	padding:12px 10px 12px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
	font-size: .9em;
}
#course-enrolment .success {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image:url('/app/templates/default/images/status-success.png');
}
#course-enrolment .info {
	color: #00529B;
	background-color: #BDE5F8;
	background-image:url('/app/templates/default/images/status-info.png');
}
#course-enrolment .warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('/app/templates/default/images/status-warning.png');
}
#course-enrolment .error {
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('/app/templates/default/images/status-error.png');
}
#course-enrolment .steps {
	color: #06154E;
	font-family: "Segoe UI",Candara,"Bitstream Vera Sans","DejaVu Sans","Trebuchet MS",Verdana,sans-serif;
	font-size: 1.3em;
	display: block;
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 0;
	margin-bottom: 10px;
}

