/*********** use relative positioning on the legend to move it up to align with the top of the fieldset...quirk -- IE always shifts legends to the right by 7px (regardless of text size), so we need to negate that shift to get the legend and the label elements lining up neatly ***********/

fieldset {
	position: relative;
	visibility: visible;
	width: 350px;
}

fieldset ol {  
padding-top: 3.25em;
}

legend {
	position: relative;
	left: -7px;
	top: -0.75em;
	background-color: #FFFF00;
}

legend span {  
margin-top: 1.25em;
}

element-subgroups-ie.css (excerpt)
fieldset fieldset legend {  
top: 0;
}
