Min-height fix for ie6

This fix allows ie6 to show min-height on content without /actually/ supporting 'min-height'

selector {
 min-height: 300px;
 height: auto !important;
 height: 300px;
}

(This works for max-height as well!)