
/* ------------------------------------------------------------------------------------------
	Weird attempt #2 [debatable.css is for general weirdness] to separate and keep track
	of what validates and what not. Common sense we said, so... this is IE bug fixing and
	IE fun stuff, loaded for IE only. Foremost, scrollbar values, we like 'm :p, sorry...
	
	A strict doctype prevents them from showing when applied to 'body', but with 'html'
	part they just work (thanks kmr), seperate settings for textarea.
------------------------------------------------------------------------------------------ */

html {
	scrollbar-3dlight-color: #344;
	scrollbar-arrow-color: #344;
	scrollbar-base-color: #AA8;
	scrollbar-darkshadow-color: #AA8;
	scrollbar-highlight-color: #DDB;
	scrollbar-shadow-color: #344;
	}

textarea {
	overflow: auto;
	overflow-x: hidden;
	scrollbar-3dlight-color: #CCA;
	scrollbar-arrow-color: #886;
	scrollbar-base-color: #DDB;
	scrollbar-darkshadow-color: #CCA;
	scrollbar-highlight-color: #FFE;
	scrollbar-shadow-color: #886;
	}
	
/* ------------------------------------------------------------------------------------------
	Legend and fieldset. Moz and IE define area of fieldset differently when you set a
	background.  
------------------------------------------------------------------------------------------ */

#html_box, #css_box {
	margin-top: 40px;
	}
	
fieldset {
	margin: 0px;
	position: relative;
	border-top: 0px;
	}

legend {
	position: relative;
	margin-left: -10px;
	margin-top: -25px;
	}

label {
	top: -1px;
	}

.icon {
	padding: 0.12em;
	}

.info:hover dfn {
	filter: alpha(opacity=80, style=0); 
	}

