3.1.12 (Brainy Betty) b63b6666b6e5654ab951697a637b5ba011a1d50a o:Sass::Tree::RootNode : @options{:@has_childrenT:@template"@import "shared"; @import "compass/utilities/general/hacks"; // Background property support for vendor prefixing within values. @mixin background( $background-1, $background-2: false, $background-3: false, $background-4: false, $background-5: false, $background-6: false, $background-7: false, $background-8: false, $background-9: false, $background-10: false ) { $backgrounds: compact($background-1, $background-2, $background-3, $background-4, $background-5, $background-6, $background-7, $background-8, $background-9, $background-10); $mult-bgs: -compass-list-size($backgrounds) > 1; $add-pie-bg: prefixed(-pie, $backgrounds) or $mult-bgs; @if $experimental-support-for-svg and prefixed(-svg, $backgrounds) { background: -svg($backgrounds); } @if $support-for-original-webkit-gradients and prefixed(-owg, $backgrounds) { background: -owg($backgrounds); } @if $experimental-support-for-webkit and prefixed(-webkit, $backgrounds) { background: -webkit($backgrounds); } @if $experimental-support-for-mozilla and prefixed(-moz, $backgrounds) { background: -moz($backgrounds); } @if $experimental-support-for-opera and prefixed(-o, $backgrounds) { background: -o($backgrounds); } @if $experimental-support-for-microsoft and prefixed(-ms, $backgrounds) { background: -ms($backgrounds); } @if $experimental-support-for-pie and $add-pie-bg { -pie-background: -pie($backgrounds); } background: $backgrounds ; } @mixin background-with-css2-fallback( $background-1, $background-2: false, $background-3: false, $background-4: false, $background-5: false, $background-6: false, $background-7: false, $background-8: false, $background-9: false, $background-10: false ) { $backgrounds: compact($background-1, $background-2, $background-3, $background-4, $background-5, $background-6, $background-7, $background-8, $background-9, $background-10); $mult-bgs: -compass-list-size($backgrounds) > 1; $simple-background: if($mult-bgs or prefixed(-css2, $backgrounds), -css2(-compass-nth($backgrounds, last)), false); @if not blank($simple-background) { background: $simple-background; } @include background($background-1, $background-2, $background-3, $background-4, $background-5, $background-6, $background-7, $background-8, $background-9, $background-10); } // Background image property support for vendor prefixing within values. @mixin background-image( $image-1, $image-2: false, $image-3: false, $image-4: false, $image-5: false, $image-6: false, $image-7: false, $image-8: false, $image-9: false, $image-10: false ) { $images: compact($image-1, $image-2, $image-3, $image-4, $image-5, $image-6, $image-7, $image-8, $image-9, $image-10); $add-pie-bg: prefixed(-pie, $images) or -compass-list-size($images) > 1; @if $experimental-support-for-svg and prefixed(-svg, $images) { background-image: -svg($images); background-size: 100%; } @if $support-for-original-webkit-gradients and prefixed(-owg, $images) { background-image: -owg($images); } @if $experimental-support-for-webkit and prefixed(-webkit, $images) { background-image: -webkit($images); } @if $experimental-support-for-mozilla and prefixed(-moz, $images) { background-image: -moz($images); } @if $experimental-support-for-opera and prefixed(-o, $images) { background-image: -o($images); } @if $experimental-support-for-microsoft and prefixed(-ms, $images) { background-image: -ms($images); } @if $experimental-support-for-pie and $add-pie-bg { @warn "PIE does not support background-image. Use @include background(#{$images}) instead." } background-image: $images ; } // Emit a IE-Specific filters that renders a simple linear gradient. // For use in IE 6 - 8. Best practice would have you apply this via a // conditional IE stylesheet, but if you must, you should place this before // any background-image properties that you have specified. @mixin filter-gradient($start-color, $end-color, $orientation: vertical) { @include has-layout; $gradient-type: if($orientation == vertical, 0, 1); @if $legacy-support-for-ie6 or $legacy-support-for-ie7 or $legacy-support-for-ie8 { filter: progid:DXImageTransform.Microsoft.gradient(gradientType=#{$gradient-type}, startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}'); } } // Border image property support for vendor prefixing properties and values. @mixin border-image($value) { @if $experimental-support-for-mozilla { -moz-border-image: -moz(reject(-compass-list($value), fill)); } @if $support-for-original-webkit-gradients { -webkit-border-image: -owg(reject(-compass-list($value), fill)); } @if $experimental-support-for-webkit { -webkit-border-image: -webkit(reject(-compass-list($value), fill)); } @if $experimental-support-for-opera { -o-border-image: -o(reject(-compass-list($value), fill)); } @if $experimental-support-for-svg { border-image: -svg(reject(-compass-list($value), fill)); } border-image: $value; } // List style image property support for vendor prefixing within values. @mixin list-style-image($image) { @if $experimental-support-for-mozilla and prefixed(-moz, $image) { list-style-image: -moz($image); } @if $support-for-original-webkit-gradients and prefixed(-owg, $image) { list-style-image: -owg($image); } @if $experimental-support-for-webkit and prefixed(-webkit, $image) { list-style-image: -webkit($image); } @if $experimental-support-for-opera and prefixed(-o, $image) { list-style-image: -o($image); } @if $experimental-support-for-svg and prefixed(-svg, $image) { list-style-image: -svg($image); } list-style-image: $image ; } // List style property support for vendor prefixing within values. @mixin list-style($value) { $value: -compass-list($value); @if $experimental-support-for-mozilla and prefixed(-moz, $value) { list-style-image: -moz($value); } @if $support-for-original-webkit-gradients and prefixed(-owg, $value) { list-style-image: -owg($value); } @if $experimental-support-for-webkit and prefixed(-webkit, $value) { list-style-image: -webkit($value); } @if $experimental-support-for-opera and prefixed(-o, $value) { list-style-image: -o($value); } @if $experimental-support-for-svg and prefixed(-svg, $value) { list-style-image: -svg($value); } list-style-image: $value ; } // content property support for vendor prefixing within values. @mixin content($value) { $value: -compass-list($value); @if $experimental-support-for-mozilla and prefixed(-moz, $value) { content: -moz($value); } @if $support-for-original-webkit-gradients and prefixed(-owg, $value) { content: -owg($value); } @if $experimental-support-for-webkit and prefixed(-webkit, $value) { content: -webkit($value); } @if $experimental-support-for-opera and prefixed(-o, $value) { content: -o($value); } @if $experimental-support-for-svg and prefixed(-svg, $value) { content: -svg($value); } content: $value ; } :@children[o:Sass::Tree::ImportNode ;@;0; [: @linei:@imported_filename" sharedo; ;@;0; [; i; "$compass/utilities/general/hackso:Sass::Tree::CommentNode : @loud0;@: @silenti: @value["J/* Background property support for vendor prefixing within values. */; [; i o:Sass::Tree::MixinDefNode ;@: @args[[o:Sass::Script::Variable;@: @name"background-1:@underscored_name"background_10[o;;@;"background-2;"background_2o:Sass::Script::Bool;@;F; i [o;;@;"background-3;"background_3o;;@;F; i [o;;@;"background-4;"background_4o;;@;F; i[o;;@;"background-5;"background_5o;;@;F; i[o;;@;"background-6;"background_6o;;@;F; i[o;;@;"background-7;"background_7o;;@;F; i[o;;@;"background-8;"background_8o;;@;F; i[o;;@;"background-9;"background_9o;;@;F; i[o;;@;"background-10;"background_10o;;@;F; i;T; [o:Sass::Tree::VariableNode ;@; [: @guarded0;"backgrounds; i: @expro:Sass::Script::Funcall ;@:@keywords{;[o; ;@;"background-1; i;"background_1o; ;@;"background-2; i;"background_2o; ;@;"background-3; i;"background_3o; ;@;"background-4; i;"background_4o; ;@;"background-5; i;"background_5o; ;@;"background-6; i;"background_6o; ;@;"background-7; i;"background_7o; ;@;"background-8; i;"background_8o; ;@;"background-9; i;"background_9o; ;@;"background-10; i;"background_10;" compact; io; ;@; [;0;" mult-bgs; i;o:Sass::Script::Operation :@operand2o:Sass::Script::Number :@numerator_units[;@:@original"1;i; i:@denominator_units[:@operator:gt:@operand1o; ;@;{;[o; ;@;"backgrounds; i;"backgrounds;"-compass-list-size; i;@; io; ;@; [;0;"add-pie-bg; i;o; ;o; ;@;" mult-bgs; i;" mult_bgs;":or;$o; ;@;{;[o:Sass::Script::String ;@;" -pie; i: @type:identifiero; ;@;"backgrounds; i;"backgrounds;" prefixed; i;@; iu:Sass::Tree::IfNode$[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -svg: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"!experimental-support-for-svg; i;"!experimental_support_for_svg;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;" -svg; i:@children[;["background: @tabsi; iu;)6[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -owg: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"*support-for-original-webkit-gradients; i;"*support_for_original_webkit_gradients;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;" -owg; i:@children[;["background: @tabsi; iu;)0[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -webkit: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"$experimental-support-for-webkit; i;"$experimental_support_for_webkit;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;" -webkit; i:@children[;["background: @tabsi; iu;),[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -moz: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"%experimental-support-for-mozilla; i;"%experimental_support_for_mozilla;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;" -moz; i:@children[;["background: @tabsi; iu;)$[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-o: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"#experimental-support-for-opera; i;"#experimental_support_for_opera;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;"-o; i:@children[;["background: @tabsi; iu;).[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-ms: @linei: @type:identifiero:Sass::Script::Variable ;@: @name"backgrounds; i:@underscored_name"backgrounds;" prefixed; i:@operator:and:@operand1o; ;@;"'experimental-support-for-microsoft; i;"'experimental_support_for_microsoft;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;"backgrounds; i;"backgrounds;"-ms; i:@children[;["background: @tabsi; iu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Variable : @options{: @name"add-pie-bg: @linei :@underscored_name"add_pie_bg:@operator:and:@operand1o; ;@; "!experimental-support-for-pie; i ; "!experimental_support_for_pie;@; i 0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@; "backgrounds; i ; "backgrounds; " -pie; i :@children[; ["-pie-background: @tabsi; i o:Sass::Tree::PropNode :@prop_syntax:new;@;o; ;@;"backgrounds; i!;"backgrounds; [;["background: @tabsi; i!;"background; io; ;@;[[o;;@;"background-1;"background_10[o;;@;"background-2;"background_2o;;@;F; i&[o;;@;"background-3;"background_3o;;@;F; i'[o;;@;"background-4;"background_4o;;@;F; i([o;;@;"background-5;"background_5o;;@;F; i)[o;;@;"background-6;"background_6o;;@;F; i*[o;;@;"background-7;"background_7o;;@;F; i+[o;;@;"background-8;"background_8o;;@;F; i,[o;;@;"background-9;"background_9o;;@;F; i-[o;;@;"background-10;"background_10o;;@;F; i.;T; [ o; ;@; [;0;"backgrounds; i1;o; ;@;{;[o; ;@;"background-1; i0;"background_1o; ;@;"background-2; i0;"background_2o; ;@;"background-3; i0;"background_3o; ;@;"background-4; i0;"background_4o; ;@;"background-5; i0;"background_5o; ;@;"background-6; i1;"background_6o; ;@;"background-7; i1;"background_7o; ;@;"background-8; i1;"background_8o; ;@;"background-9; i1;"background_9o; ;@;"background-10; i1;"background_10;" compact; i1o; ;@; [;0;" mult-bgs; i2;o; ;o; ;[;@; "1;i; i2;!@s;";#;$o; ;@;{;[o; ;@;"backgrounds; i2;"backgrounds;"-compass-list-size; i2;@; i2o; ;@; [;0;"simple-background; i3;o; ;@;{;[o; ;o; ;@;{;[o;& ;@;" -css2; i3;';(o; ;@;"backgrounds; i3;"backgrounds;" prefixed; i3;";%;$o; ;@;" mult-bgs; i3;" mult_bgs;@; i3o; ;@;{;[o; ;@;{;[o; ;@;"backgrounds; i3;"backgroundso;& ;@;" last; i3;';(;"-compass-nth; i3;" -css2; i3o;;@;F; i3;"if; i3u;)[o:!Sass::Script::UnaryOperation :@operator:not: @options{: @linei4: @operando:Sass::Script::Funcall ;@:@keywords{: @args[o:Sass::Script::Variable ;@: @name"simple-background; i4:@underscored_name"simple_background;" blank; i40[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo; ;@;"simple-background; i4;"simple_background:@children[;["background: @tabsi; i4o:Sass::Tree::MixinNode ;@;{;[o; ;@;"background-1; i5;"background_1o; ;@;"background-2; i5;"background_2o; ;@;"background-3; i5;"background_3o; ;@;"background-4; i5;"background_4o; ;@;"background-5; i5;"background_5o; ;@;"background-6; i6;"background_6o; ;@;"background-7; i6;"background_7o; ;@;"background-8; i6;"background_8o; ;@;"background-9; i6;"background_9o; ;@;"background-10; i6;"background_10; [;"background; i6;""background-with-css2-fallback; i/o; ;0;@;i;["P/* Background image property support for vendor prefixing within values. */; [; i:o; ;@;[[o;;@;" image-1;" image_10[o;;@;" image-2;" image_2o;;@;F; i=[o;;@;" image-3;" image_3o;;@;F; i>[o;;@;" image-4;" image_4o;;@;F; i?[o;;@;" image-5;" image_5o;;@;F; i@[o;;@;" image-6;" image_6o;;@;F; iA[o;;@;" image-7;" image_7o;;@;F; iB[o;;@;" image-8;" image_8o;;@;F; iC[o;;@;" image-9;" image_9o;;@;F; iD[o;;@;" image-10;" image_10o;;@;F; iE;T; [o; ;@; [;0;" images; iG;o; ;@;{;[o; ;@;" image-1; iG;" image_1o; ;@;" image-2; iG;" image_2o; ;@;" image-3; iG;" image_3o; ;@;" image-4; iG;" image_4o; ;@;" image-5; iG;" image_5o; ;@;" image-6; iG;" image_6o; ;@;" image-7; iG;" image_7o; ;@;" image-8; iG;" image_8o; ;@;" image-9; iG;" image_9o; ;@;" image-10; iG;" image_10;" compact; iGo; ;@; [;0;"add-pie-bg; iH;o; ;o; ;o; ;[;@; "1;i; iH;!@s;";#;$o; ;@;{;[o; ;@;" images; iH;" images;"-compass-list-size; iH;@; iH;";%;$o; ;@;{;[o;& ;@;" -pie; iH;';(o; ;@;" images; iH;" images;" prefixed; iH;@; iHu;)Y[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -svg: @lineiJ: @type:identifiero:Sass::Script::Variable ;@: @name" images; iJ:@underscored_name" images;" prefixed; iJ:@operator:and:@operand1o; ;@;"!experimental-support-for-svg; iJ;"!experimental_support_for_svg;@; iJ0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iJ;" images;" -svg; iJ:@children[;["background-image: @tabsi; iJo; ;;;@; o; ;@; " 100%;;;[;["background-size;i; iJu;)([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -owg: @lineiK: @type:identifiero:Sass::Script::Variable ;@: @name" images; iK:@underscored_name" images;" prefixed; iK:@operator:and:@operand1o; ;@;"*support-for-original-webkit-gradients; iK;"*support_for_original_webkit_gradients;@; iK0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iK;" images;" -owg; iK:@children[;["background-image: @tabsi; iKu;)"[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -webkit: @lineiL: @type:identifiero:Sass::Script::Variable ;@: @name" images; iL:@underscored_name" images;" prefixed; iL:@operator:and:@operand1o; ;@;"$experimental-support-for-webkit; iL;"$experimental_support_for_webkit;@; iL0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iL;" images;" -webkit; iL:@children[;["background-image: @tabsi; iLu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -moz: @lineiM: @type:identifiero:Sass::Script::Variable ;@: @name" images; iM:@underscored_name" images;" prefixed; iM:@operator:and:@operand1o; ;@;"%experimental-support-for-mozilla; iM;"%experimental_support_for_mozilla;@; iM0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iM;" images;" -moz; iM:@children[;["background-image: @tabsi; iMu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-o: @lineiN: @type:identifiero:Sass::Script::Variable ;@: @name" images; iN:@underscored_name" images;" prefixed; iN:@operator:and:@operand1o; ;@;"#experimental-support-for-opera; iN;"#experimental_support_for_opera;@; iN0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iN;" images;"-o; iN:@children[;["background-image: @tabsi; iNu;) [o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-ms: @lineiO: @type:identifiero:Sass::Script::Variable ;@: @name" images; iO:@underscored_name" images;" prefixed; iO:@operator:and:@operand1o; ;@;"'experimental-support-for-microsoft; iO;"'experimental_support_for_microsoft;@; iO0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" images; iO;" images;"-ms; iO:@children[;["background-image: @tabsi; iOu;)+[o:Sass::Script::Operation :@operand2o:Sass::Script::Variable : @options{: @name"add-pie-bg: @lineiP:@underscored_name"add_pie_bg:@operator:and:@operand1o; ;@; "!experimental-support-for-pie; iP; "!experimental_support_for_pie;@; iP0[o:Sass::Tree::WarnNode ;@:@children[; iP: @expro:&Sass::Script::StringInterpolation : @aftero:Sass::Script::String ;@: @value") instead.; iP: @type: string;@: @mido; ;@; " images; iP; " images; iP: @beforeo; ;@;"DPIE does not support background-image. Use @include background(; iP;;o;* ;+;,;@;o; ;@;" images; iQ;" images; [;["background-image;-i; iQ;"background-image; iFo; ;0;@;i;["/* Emit a IE-Specific filters that renders a simple linear gradient. * For use in IE 6 - 8. Best practice would have you apply this via a * conditional IE stylesheet, but if you must, you should place this before * any background-image properties that you have specified. */; [; iTo; ;@;[[o;;@;"start-color;"start_color0[o;;@;"end-color;"end_color0[o;;@;"orientation;"orientationo;& ;@;" vertical; iX;';(;T; [o;. ;@;{;[; [;"has-layout; iYo; ;@; [;0;"gradient-type; iZ;o; ;@;{;[o; ;o;& ;@;" vertical; iZ;';(;":eq;$o; ;@;"orientation; iZ;"orientation;@; iZo; ;[;@; "0;i; iZ;!@so; ;[;@; "1;i; iZ;!@s;"if; iZu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Variable : @options{: @name"legacy-support-for-ie8: @linei[:@underscored_name"legacy_support_for_ie8:@operator:or:@operand1o; ;o; ;@; "legacy-support-for-ie7; i[; "legacy_support_for_ie7; ; ;o; ;@; "legacy-support-for-ie6; i[; "legacy_support_for_ie6;@; i[;@; i[0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo: Sass::Script::Interpolation :@whitespace_beforeF: @aftero:Sass::Script::String ;@;"'); i\: @type:identifier;@:@originally_textF: @mido:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@; "end-color; i\; "end_color; "ie-hex-str; i\:@whitespace_afterF: @beforeo; ;F;o; ;@;"', endColorstr='; i\;;;@;F;o; ;@;{;[o; ;@; "start-color; i\; "start_color; "ie-hex-str; i\;F;o; ;F;o; ;@;", startColorstr='; i\;;;@;F;o; ;@; "gradient-type; i\; "gradient_type;F;o; ;@;"=progid:DXImageTransform.Microsoft.gradient(gradientType=; i\;;:@children[; [" filter: @tabsi; i\;"filter-gradient; iXo; ;0;@;i;["T/* Border image property support for vendor prefixing properties and values. */; [; iao; ;@;[[o;;@;" value;" value0;T; [ u;)[o:Sass::Script::Variable : @options{: @name"%experimental-support-for-mozilla: @lineic:@underscored_name"%experimental_support_for_mozilla0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@;{;[o; ;@;{;[o; ;@;" value;ic; " value;"-compass-list;ico:Sass::Script::String ;@; " fill;ic: @type:identifier;" reject;ic;" -moz;ic:@children[;["-moz-border-image: @tabsi;icu;)[o:Sass::Script::Variable : @options{: @name"*support-for-original-webkit-gradients: @lineid:@underscored_name"*support_for_original_webkit_gradients0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@;{;[o; ;@;{;[o; ;@;" value;id; " value;"-compass-list;ido:Sass::Script::String ;@; " fill;id: @type:identifier;" reject;id;" -owg;id:@children[;["-webkit-border-image: @tabsi;idu;)[o:Sass::Script::Variable : @options{: @name"$experimental-support-for-webkit: @lineie:@underscored_name"$experimental_support_for_webkit0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@;{;[o; ;@;{;[o; ;@;" value;ie; " value;"-compass-list;ieo:Sass::Script::String ;@; " fill;ie: @type:identifier;" reject;ie;" -webkit;ie:@children[;["-webkit-border-image: @tabsi;ieu;)[o:Sass::Script::Variable : @options{: @name"#experimental-support-for-opera: @lineif:@underscored_name"#experimental_support_for_opera0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@;{;[o; ;@;{;[o; ;@;" value;if; " value;"-compass-list;ifo:Sass::Script::String ;@; " fill;if: @type:identifier;" reject;if;"-o;if:@children[;["-o-border-image: @tabsi;ifu;)[o:Sass::Script::Variable : @options{: @name"!experimental-support-for-svg: @lineig:@underscored_name"!experimental_support_for_svg0[o:Sass::Tree::PropNode :@prop_syntax:new;@: @valueo:Sass::Script::Funcall ;@:@keywords{: @args[o; ;@;{;[o; ;@;{;[o; ;@;" value;ig; " value;"-compass-list;igo:Sass::Script::String ;@; " fill;ig: @type:identifier;" reject;ig;" -svg;ig:@children[;["border-image: @tabsi;igo;* ;+;,;@;o; ;@;" value; ih;" value; [;["border-image;-i; ih;"border-image; ibo; ;0;@;i;["P/* List style image property support for vendor prefixing within values. */; [; iko; ;@;[[o;;@;" image;" image0;T; [ u;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -moz: @lineim: @type:identifiero:Sass::Script::Variable ;@: @name" image; im:@underscored_name" image;" prefixed; im:@operator:and:@operand1o; ;@;"%experimental-support-for-mozilla; im;"%experimental_support_for_mozilla;@; im0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" image; im;" image;" -moz; im:@children[;["list-style-image: @tabsi; imu;)$[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -owg: @linein: @type:identifiero:Sass::Script::Variable ;@: @name" image; in:@underscored_name" image;" prefixed; in:@operator:and:@operand1o; ;@;"*support-for-original-webkit-gradients; in;"*support_for_original_webkit_gradients;@; in0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" image; in;" image;" -owg; in:@children[;["list-style-image: @tabsi; inu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -webkit: @lineio: @type:identifiero:Sass::Script::Variable ;@: @name" image; io:@underscored_name" image;" prefixed; io:@operator:and:@operand1o; ;@;"$experimental-support-for-webkit; io;"$experimental_support_for_webkit;@; io0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" image; io;" image;" -webkit; io:@children[;["list-style-image: @tabsi; iou;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-o: @lineip: @type:identifiero:Sass::Script::Variable ;@: @name" image; ip:@underscored_name" image;" prefixed; ip:@operator:and:@operand1o; ;@;"#experimental-support-for-opera; ip;"#experimental_support_for_opera;@; ip0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" image; ip;" image;"-o; ip:@children[;["list-style-image: @tabsi; ipu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -svg: @lineiq: @type:identifiero:Sass::Script::Variable ;@: @name" image; iq:@underscored_name" image;" prefixed; iq:@operator:and:@operand1o; ;@;"!experimental-support-for-svg; iq;"!experimental_support_for_svg;@; iq0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" image; iq;" image;" -svg; iq:@children[;["list-style-image: @tabsi; iqo;* ;+;,;@;o; ;@;" image; ir;" image; [;["list-style-image;-i; ir;"list-style-image; ilo; ;0;@;i;["J/* List style property support for vendor prefixing within values. */; [; iuo; ;@;[[o;;@;" value;" value0;T; [ o; ;@; [;0;" value; iw;o; ;@;{;[o; ;@;" value; iw;" value;"-compass-list; iwu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -moz: @lineix: @type:identifiero:Sass::Script::Variable ;@: @name" value; ix:@underscored_name" value;" prefixed; ix:@operator:and:@operand1o; ;@;"%experimental-support-for-mozilla; ix;"%experimental_support_for_mozilla;@; ix0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; ix;" value;" -moz; ix:@children[;["list-style-image: @tabsi; ixu;)$[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -owg: @lineiy: @type:identifiero:Sass::Script::Variable ;@: @name" value; iy:@underscored_name" value;" prefixed; iy:@operator:and:@operand1o; ;@;"*support-for-original-webkit-gradients; iy;"*support_for_original_webkit_gradients;@; iy0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; iy;" value;" -owg; iy:@children[;["list-style-image: @tabsi; iyu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -webkit: @lineiz: @type:identifiero:Sass::Script::Variable ;@: @name" value; iz:@underscored_name" value;" prefixed; iz:@operator:and:@operand1o; ;@;"$experimental-support-for-webkit; iz;"$experimental_support_for_webkit;@; iz0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; iz;" value;" -webkit; iz:@children[;["list-style-image: @tabsi; izu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-o: @linei{: @type:identifiero:Sass::Script::Variable ;@: @name" value; i{:@underscored_name" value;" prefixed; i{:@operator:and:@operand1o; ;@;"#experimental-support-for-opera; i{;"#experimental_support_for_opera;@; i{0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i{;" value;"-o; i{:@children[;["list-style-image: @tabsi; i{u;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -svg: @linei|: @type:identifiero:Sass::Script::Variable ;@: @name" value; i|:@underscored_name" value;" prefixed; i|:@operator:and:@operand1o; ;@;"!experimental-support-for-svg; i|;"!experimental_support_for_svg;@; i|0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i|;" value;" -svg; i|:@children[;["list-style-image: @tabsi; i|o;* ;+;,;@;o; ;@;" value; i};" value; [;["list-style-image;-i; i};"list-style; ivo; ;0;@;i;["G/* content property support for vendor prefixing within values. */; [; i{o; ;@;[[o;;@;" value;" value0;T; [ o; ;@; [;0;" value; i};o; ;@;{;[o; ;@;" value; i};" value;"-compass-list; i}u;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -moz: @linei~: @type:identifiero:Sass::Script::Variable ;@: @name" value; i~:@underscored_name" value;" prefixed; i~:@operator:and:@operand1o; ;@;"%experimental-support-for-mozilla; i~;"%experimental_support_for_mozilla;@; i~0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i~;" value;" -moz; i~:@children[;[" content: @tabsi; i~u;)#[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -owg: @linei: @type:identifiero:Sass::Script::Variable ;@: @name" value; i:@underscored_name" value;" prefixed; i:@operator:and:@operand1o; ;@;"*support-for-original-webkit-gradients; i;"*support_for_original_webkit_gradients;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i;" value;" -owg; i:@children[;[" content: @tabsi; iu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -webkit: @linei: @type:identifiero:Sass::Script::Variable ;@: @name" value; i:@underscored_name" value;" prefixed; i:@operator:and:@operand1o; ;@;"$experimental-support-for-webkit; i;"$experimental_support_for_webkit;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i;" value;" -webkit; i:@children[;[" content: @tabsi; iu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value"-o: @linei: @type:identifiero:Sass::Script::Variable ;@: @name" value; i:@underscored_name" value;" prefixed; i:@operator:and:@operand1o; ;@;"#experimental-support-for-opera; i;"#experimental_support_for_opera;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i;" value;"-o; i:@children[;[" content: @tabsi; iu;)[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @options{:@keywords{: @args[o:Sass::Script::String ;@: @value" -svg: @linei: @type:identifiero:Sass::Script::Variable ;@: @name" value; i:@underscored_name" value;" prefixed; i:@operator:and:@operand1o; ;@;"!experimental-support-for-svg; i;"!experimental_support_for_svg;@; i0[o:Sass::Tree::PropNode :@prop_syntax:new;@; o; ;@; {; [o; ;@;" value; i;" value;" -svg; i:@children[;[" content: @tabsi; io;* ;+;,;@;o; ;@;" value; i;" value; [;[" content;-i; i;" content; i|; i