@charset "utf-8";
/* CSS Document */
/* Dirty hacks for <fieldset>s to work and display as expected in different browsers T_T */

.fieldsetIE {
	/* Having nothing makes IE render rounded corners */
}
.fieldsetFF {
	-moz-border-radius: 6px;
	border: 1px solid #CCC;
}
.fieldsetSafari {
	-webkit-border-radius: 6px; /* I know this doesn't work but lets hope they'll fix the bug */
	border: 1px solid #CCC;
}
.fieldsetChrome {
	-webkit-border-radius: 6px;
	border: 1px solid #CCC;
}
.fieldsetOpera {
	border-radius: 6px; /* Lets hope they support it in the future */
	border: 1px solid #CCC;
}
.fieldsetOthers {
	border-radius: 6px; /* Wild stab in the dark */
	border: 1px solid #CCC;
}
