// Implementation of float:left with fix for the // [double-margin bug in IE5/6](www.positioniseverything.net/explorer/doubled-margin.html) @mixin float-left {

@include float(left); }

// Implementation of float:right with fix for the // [double-margin bug in IE5/6](www.positioniseverything.net/explorer/doubled-margin.html) @mixin float-right {

@include float(right); }

// Direction independent float mixin that fixes the // [double-margin bug in IE5/6](www.positioniseverything.net/explorer/doubled-margin.html) @mixin float($side: left) {

display: inline;
float: unquote($side); }