3.1.15 (Brainy Betty) b63b6666b6e5654ab951697a637b5ba011a1d50a o:Sass::Tree::RootNode :@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 ; } :@has_childrenT: @options{:@children[o:Sass::Tree::ImportNode ;0;@:@imported_filename" shared; [: @lineio; ;0;@; "$compass/utilities/general/hacks; [; io:Sass::Tree::CommentNode ;@: @loud0; [: @value["J/* Background property support for vendor prefixing within values. */; i : @silentio:Sass::Tree::MixinDefNode : @name"background;T;@; [o:Sass::Tree::VariableNode ;"backgrounds;@: @guarded0; [; i: @expro:Sass::Script::Funcall ;" compact:@keywords{;@; i: @args[o:Sass::Script::Variable :@underscored_name"background_1;"background-1;@; io; ;"background_2;"background-2;@; io; ;"background_3;"background-3;@; io; ;"background_4;"background-4;@; io; ;"background_5;"background-5;@; io; ;"background_6;"background-6;@; io; ;"background_7;"background-7;@; io; ;"background_8;"background-8;@; io; ;"background_9;"background-9;@; io; ;"background_10;"background-10;@; io; ;" mult-bgs;@;0; [; i;o:Sass::Script::Operation :@operand2o:Sass::Script::Number :@numerator_units[;@:@original"1:@denominator_units[;i; i:@operand1o; ;"-compass-list-size;{;@; i;[o; ;"backgrounds;"backgrounds;@; i;@; i:@operator:gto; ;"add-pie-bg;@;0; [; i;o; ;o; ;" mult_bgs;" mult-bgs;@; i;!o; ;" prefixed;{;@; i;[o:Sass::Script::String : @type:identifier;@;" -pie; io; ;"backgrounds;"backgrounds;@; i;@; i;":oru:Sass::Tree::IfNode$[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -svg; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"!experimental_support_for_svg;"!experimental-support-for-svg; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;" -svg; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;(6[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -owg; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"*support_for_original_webkit_gradients;"*support-for-original-webkit-gradients; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;" -owg; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;(0[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -webkit; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"$experimental_support_for_webkit;"$experimental-support-for-webkit; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;" -webkit; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;(,[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -moz; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"%experimental_support_for_mozilla;"%experimental-support-for-mozilla; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;" -moz; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;($[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value"-o; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"#experimental_support_for_opera;"#experimental-support-for-opera; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;"-o; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;(.[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value"-ms; io:Sass::Script::Variable :@underscored_name"backgrounds;"backgrounds; @ ; i:@operand1o; ;"'experimental_support_for_microsoft;"'experimental-support-for-microsoft; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;["background:@prop_syntax:new; @ :@children[;o; ;"-ms; {; @ ; i; [o; ;"backgrounds;"backgrounds; @ ; i; i: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Variable :@underscored_name"add_pie_bg: @name"add-pie-bg: @options{: @linei :@operand1o; ;"!experimental_support_for_pie; "!experimental-support-for-pie; @ ; i ; @ ; i :@operator:and0[o:Sass::Tree::PropNode ; ["-pie-background:@prop_syntax:new; @ :@children[: @valueo:Sass::Script::Funcall ; " -pie:@keywords{; @ ; i : @args[o; ;"backgrounds; "backgrounds; @ ; i ; i : @tabsio:Sass::Tree::PropNode ;["background:@prop_syntax:new;@; [;o; ;"backgrounds;"backgrounds;@; i!; i!: @tabsi; i;[[o;;"background_1;"background-1;@0[o;;"background_2;"background-2;@o:Sass::Script::Bool;@;F; i [o;;"background_3;"background-3;@o;-;@;F; i [o;;"background_4;"background-4;@o;-;@;F; i[o;;"background_5;"background-5;@o;-;@;F; i[o;;"background_6;"background-6;@o;-;@;F; i[o;;"background_7;"background-7;@o;-;@;F; i[o;;"background_8;"background-8;@o;-;@;F; i[o;;"background_9;"background-9;@o;-;@;F; i[o;;"background_10;"background-10;@o;-;@;F; io; ;""background-with-css2-fallback;T;@; [ o; ;"backgrounds;@;0; [; i1;o; ;" compact;{;@; i1;[o; ;"background_1;"background-1;@; i0o; ;"background_2;"background-2;@; i0o; ;"background_3;"background-3;@; i0o; ;"background_4;"background-4;@; i0o; ;"background_5;"background-5;@; i0o; ;"background_6;"background-6;@; i1o; ;"background_7;"background-7;@; i1o; ;"background_8;"background-8;@; i1o; ;"background_9;"background-9;@; i1o; ;"background_10;"background-10;@; i1o; ;" mult-bgs;@;0; [; i2;o; ;o; ;[;@;"1; @B;i; i2;!o; ;"-compass-list-size;{;@; i2;[o; ;"backgrounds;"backgrounds;@; i2;@; i2;";#o; ;"simple-background;@;0; [; i3;o; ;"if;{;@; i3;[o; ;o; ;" prefixed;{;@; i3;[o;$ ;%;&;@;" -css2; i3o; ;"backgrounds;"backgrounds;@; i3;!o; ;" mult_bgs;" mult-bgs;@; i3;@; i3;";'o; ;" -css2;{;@; i3;[o; ;"-compass-nth;{;@; i3;[o; ;"backgrounds;"backgrounds;@; i3o;$ ;%;&;@;" last; i3o;-;@;F; i3u;([o:!Sass::Script::UnaryOperation : @options{: @operando:Sass::Script::Funcall : @name" blank:@keywords{;@: @linei4: @args[o:Sass::Script::Variable :@underscored_name"simple_background; "simple-background;@; i4; i4:@operator:not0[o:Sass::Tree::PropNode ; ["background:@prop_syntax:new;@:@children[: @valueo; ;"simple_background; "simple-background;@; i4; i4: @tabsio:Sass::Tree::MixinNode ;"background;{;@; [; i6;[o; ;"background_1;"background-1;@; i5o; ;"background_2;"background-2;@; i5o; ;"background_3;"background-3;@; i5o; ;"background_4;"background-4;@; i5o; ;"background_5;"background-5;@; i5o; ;"background_6;"background-6;@; i6o; ;"background_7;"background-7;@; i6o; ;"background_8;"background-8;@; i6o; ;"background_9;"background-9;@; i6o; ;"background_10;"background-10;@; i6; i/;[[o;;"background_1;"background-1;@0[o;;"background_2;"background-2;@o;-;@;F; i&[o;;"background_3;"background-3;@o;-;@;F; i'[o;;"background_4;"background-4;@o;-;@;F; i([o;;"background_5;"background-5;@o;-;@;F; i)[o;;"background_6;"background-6;@o;-;@;F; i*[o;;"background_7;"background-7;@o;-;@;F; i+[o;;"background_8;"background-8;@o;-;@;F; i,[o;;"background_9;"background-9;@o;-;@;F; i-[o;;"background_10;"background-10;@o;-;@;F; i.o; ;@;0; [;["P/* Background image property support for vendor prefixing within values. */; i:;io; ;"background-image;T;@; [o; ;" images;@;0; [; iG;o; ;" compact;{;@; iG;[o; ;" image_1;" image-1;@; iGo; ;" image_2;" image-2;@; iGo; ;" image_3;" image-3;@; iGo; ;" image_4;" image-4;@; iGo; ;" image_5;" image-5;@; iGo; ;" image_6;" image-6;@; iGo; ;" image_7;" image-7;@; iGo; ;" image_8;" image-8;@; iGo; ;" image_9;" image-9;@; iGo; ;" image_10;" image-10;@; iGo; ;"add-pie-bg;@;0; [; iH;o; ;o; ;o; ;[;@;"1; @B;i; iH;!o; ;"-compass-list-size;{;@; iH;[o; ;" images;" images;@; iH;@; iH;";#;!o; ;" prefixed;{;@; iH;[o;$ ;%;&;@;" -pie; iHo; ;" images;" images;@; iH;@; iH;";'u;(Y[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiJ: @args[o:Sass::Script::String : @type:identifier; @ : @value" -svg; iJo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iJ:@operand1o; ;"!experimental_support_for_svg;"!experimental-support-for-svg; @ ; iJ; @ ; iJ:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;" -svg; {; @ ; iJ; [o; ;" images;" images; @ ; iJ; iJ: @tabsio; ;["background-size;;; @ ;[;o; ;;; @ ;" 100%; iJ;iu;(([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiK: @args[o:Sass::Script::String : @type:identifier; @ : @value" -owg; iKo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iK:@operand1o; ;"*support_for_original_webkit_gradients;"*support-for-original-webkit-gradients; @ ; iK; @ ; iK:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;" -owg; {; @ ; iK; [o; ;" images;" images; @ ; iK; iK: @tabsiu;("[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiL: @args[o:Sass::Script::String : @type:identifier; @ : @value" -webkit; iLo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iL:@operand1o; ;"$experimental_support_for_webkit;"$experimental-support-for-webkit; @ ; iL; @ ; iL:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;" -webkit; {; @ ; iL; [o; ;" images;" images; @ ; iL; iL: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiM: @args[o:Sass::Script::String : @type:identifier; @ : @value" -moz; iMo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iM:@operand1o; ;"%experimental_support_for_mozilla;"%experimental-support-for-mozilla; @ ; iM; @ ; iM:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;" -moz; {; @ ; iM; [o; ;" images;" images; @ ; iM; iM: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiN: @args[o:Sass::Script::String : @type:identifier; @ : @value"-o; iNo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iN:@operand1o; ;"#experimental_support_for_opera;"#experimental-support-for-opera; @ ; iN; @ ; iN:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;"-o; {; @ ; iN; [o; ;" images;" images; @ ; iN; iN: @tabsiu;( [o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiO: @args[o:Sass::Script::String : @type:identifier; @ : @value"-ms; iOo:Sass::Script::Variable :@underscored_name" images;" images; @ ; iO:@operand1o; ;"'experimental_support_for_microsoft;"'experimental-support-for-microsoft; @ ; iO; @ ; iO:@operator:and0[o:Sass::Tree::PropNode ;["background-image:@prop_syntax:new; @ :@children[;o; ;"-ms; {; @ ; iO; [o; ;" images;" images; @ ; iO; iO: @tabsiu;(+[o:Sass::Script::Operation :@operand2o:Sass::Script::Variable :@underscored_name"add_pie_bg: @name"add-pie-bg: @options{: @lineiP:@operand1o; ;"!experimental_support_for_pie; "!experimental-support-for-pie; @ ; iP; @ ; iP:@operator:and0[o:Sass::Tree::WarnNode ; @ :@children[; iP: @expro:&Sass::Script::StringInterpolation : @mido; ;" images; " images; @ ; iP: @beforeo:Sass::Script::String : @type: string; @ : @value"DPIE does not support background-image. Use @include background(; iP; @ : @aftero; ;;; @ ;") instead.; iP; iPo;) ;["background-image;*;+;@; [;o; ;" images;" images;@; iQ; iQ;,i; iF;[[o;;" image_1;" image-1;@0[o;;" image_2;" image-2;@o;-;@;F; i=[o;;" image_3;" image-3;@o;-;@;F; i>[o;;" image_4;" image-4;@o;-;@;F; i?[o;;" image_5;" image-5;@o;-;@;F; i@[o;;" image_6;" image-6;@o;-;@;F; iA[o;;" image_7;" image-7;@o;-;@;F; iB[o;;" image_8;" image-8;@o;-;@;F; iC[o;;" image_9;" image-9;@o;-;@;F; iD[o;;" image_10;" image-10;@o;-;@;F; iEo; ;@;0; [;["/* 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. */; iT;io; ;"filter-gradient;T;@; [o;. ;"has-layout;{;@; [; iY;[o; ;"gradient-type;@;0; [; iZ;o; ;"if;{;@; iZ;[o; ;o;$ ;%;&;@;" vertical; iZ;!o; ;"orientation;"orientation;@; iZ;@; iZ;":eqo; ;[;@;"0; @B;i; iZo; ;[;@;"1; @B;i; iZu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Variable :@underscored_name"legacy_support_for_ie8: @name"legacy-support-for-ie8: @options{: @linei[:@operand1o; ;o; ;"legacy_support_for_ie7; "legacy-support-for-ie7; @ ; i[; o; ;"legacy_support_for_ie6; "legacy-support-for-ie6; @ ; i[; @ ; i[:@operator:or; @ ; i[; ;0[o:Sass::Tree::PropNode ; [" filter:@prop_syntax:new; @ :@children[: @valueo: Sass::Script::Interpolation : @mido:Sass::Script::Funcall ; "ie-hex-str:@keywords{; @ ; i\: @args[o; ;"end_color; "end-color; @ ; i\:@whitespace_afterF: @beforeo; ;o; ; "ie-hex-str;{; @ ; i\;[o; ;"start_color; "start-color; @ ; i\;F;o; ;o; ;"gradient_type; "gradient-type; @ ; i\;F;o:Sass::Script::String : @type:identifier; @ ;"=progid:DXImageTransform.Microsoft.gradient(gradientType=; i\; @ :@whitespace_beforeF: @aftero; ;;; @ ;", startColorstr='; i\:@originally_textF; @ ;F;o; ;;; @ ;"', endColorstr='; i\; F; @ ;F;o; ;;; @ ;"'); i\; F; i\: @tabsi; iX;[[o;;"start_color;"start-color;@0[o;;"end_color;"end-color;@0[o;;"orientation;"orientation;@o;$ ;%;&;@;" vertical; iXo; ;@;0; [;["T/* Border image property support for vendor prefixing properties and values. */; ia;io; ;"border-image;T;@; [ u;([o:Sass::Script::Variable :@underscored_name"%experimental_support_for_mozilla: @name"%experimental-support-for-mozilla: @options{: @lineic0[o:Sass::Tree::PropNode ;["-moz-border-image:@prop_syntax:new;@ :@children[: @valueo:Sass::Script::Funcall ;" -moz:@keywords{;@ ; ic: @args[o; ;" reject;{;@ ; ic;[o; ;"-compass-list;{;@ ; ic;[o; ;" value;" value;@ ; ico:Sass::Script::String : @type:identifier;@ ;" fill; ic; ic: @tabsiu;([o:Sass::Script::Variable :@underscored_name"*support_for_original_webkit_gradients: @name"*support-for-original-webkit-gradients: @options{: @lineid0[o:Sass::Tree::PropNode ;["-webkit-border-image:@prop_syntax:new;@ :@children[: @valueo:Sass::Script::Funcall ;" -owg:@keywords{;@ ; id: @args[o; ;" reject;{;@ ; id;[o; ;"-compass-list;{;@ ; id;[o; ;" value;" value;@ ; ido:Sass::Script::String : @type:identifier;@ ;" fill; id; id: @tabsiu;([o:Sass::Script::Variable :@underscored_name"$experimental_support_for_webkit: @name"$experimental-support-for-webkit: @options{: @lineie0[o:Sass::Tree::PropNode ;["-webkit-border-image:@prop_syntax:new;@ :@children[: @valueo:Sass::Script::Funcall ;" -webkit:@keywords{;@ ; ie: @args[o; ;" reject;{;@ ; ie;[o; ;"-compass-list;{;@ ; ie;[o; ;" value;" value;@ ; ieo:Sass::Script::String : @type:identifier;@ ;" fill; ie; ie: @tabsiu;([o:Sass::Script::Variable :@underscored_name"#experimental_support_for_opera: @name"#experimental-support-for-opera: @options{: @lineif0[o:Sass::Tree::PropNode ;["-o-border-image:@prop_syntax:new;@ :@children[: @valueo:Sass::Script::Funcall ;"-o:@keywords{;@ ; if: @args[o; ;" reject;{;@ ; if;[o; ;"-compass-list;{;@ ; if;[o; ;" value;" value;@ ; ifo:Sass::Script::String : @type:identifier;@ ;" fill; if; if: @tabsiu;([o:Sass::Script::Variable :@underscored_name"!experimental_support_for_svg: @name"!experimental-support-for-svg: @options{: @lineig0[o:Sass::Tree::PropNode ;["border-image:@prop_syntax:new;@ :@children[: @valueo:Sass::Script::Funcall ;" -svg:@keywords{;@ ; ig: @args[o; ;" reject;{;@ ; ig;[o; ;"-compass-list;{;@ ; ig;[o; ;" value;" value;@ ; igo:Sass::Script::String : @type:identifier;@ ;" fill; ig; ig: @tabsio;) ;["border-image;*;+;@; [;o; ;" value;" value;@; ih; ih;,i; ib;[[o;;" value;" value;@0o; ;@;0; [;["P/* List style image property support for vendor prefixing within values. */; ik;io; ;"list-style-image;T;@; [ u;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineim: @args[o:Sass::Script::String : @type:identifier; @ : @value" -moz; imo:Sass::Script::Variable :@underscored_name" image;" image; @ ; im:@operand1o; ;"%experimental_support_for_mozilla;"%experimental-support-for-mozilla; @ ; im; @ ; im:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -moz; {; @ ; im; [o; ;" image;" image; @ ; im; im: @tabsiu;($[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linein: @args[o:Sass::Script::String : @type:identifier; @ : @value" -owg; ino:Sass::Script::Variable :@underscored_name" image;" image; @ ; in:@operand1o; ;"*support_for_original_webkit_gradients;"*support-for-original-webkit-gradients; @ ; in; @ ; in:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -owg; {; @ ; in; [o; ;" image;" image; @ ; in; in: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineio: @args[o:Sass::Script::String : @type:identifier; @ : @value" -webkit; ioo:Sass::Script::Variable :@underscored_name" image;" image; @ ; io:@operand1o; ;"$experimental_support_for_webkit;"$experimental-support-for-webkit; @ ; io; @ ; io:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -webkit; {; @ ; io; [o; ;" image;" image; @ ; io; io: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineip: @args[o:Sass::Script::String : @type:identifier; @ : @value"-o; ipo:Sass::Script::Variable :@underscored_name" image;" image; @ ; ip:@operand1o; ;"#experimental_support_for_opera;"#experimental-support-for-opera; @ ; ip; @ ; ip:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;"-o; {; @ ; ip; [o; ;" image;" image; @ ; ip; ip: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiq: @args[o:Sass::Script::String : @type:identifier; @ : @value" -svg; iqo:Sass::Script::Variable :@underscored_name" image;" image; @ ; iq:@operand1o; ;"!experimental_support_for_svg;"!experimental-support-for-svg; @ ; iq; @ ; iq:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -svg; {; @ ; iq; [o; ;" image;" image; @ ; iq; iq: @tabsio;) ;["list-style-image;*;+;@; [;o; ;" image;" image;@; ir; ir;,i; il;[[o;;" image;" image;@0o; ;@;0; [;["J/* List style property support for vendor prefixing within values. */; iu;io; ;"list-style;T;@; [ o; ;" value;@;0; [; iw;o; ;"-compass-list;{;@; iw;[o; ;" value;" value;@; iwu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineix: @args[o:Sass::Script::String : @type:identifier; @ : @value" -moz; ixo:Sass::Script::Variable :@underscored_name" value;" value; @ ; ix:@operand1o; ;"%experimental_support_for_mozilla;"%experimental-support-for-mozilla; @ ; ix; @ ; ix:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -moz; {; @ ; ix; [o; ;" value;" value; @ ; ix; ix: @tabsiu;($[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiy: @args[o:Sass::Script::String : @type:identifier; @ : @value" -owg; iyo:Sass::Script::Variable :@underscored_name" value;" value; @ ; iy:@operand1o; ;"*support_for_original_webkit_gradients;"*support-for-original-webkit-gradients; @ ; iy; @ ; iy:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -owg; {; @ ; iy; [o; ;" value;" value; @ ; iy; iy: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @lineiz: @args[o:Sass::Script::String : @type:identifier; @ : @value" -webkit; izo:Sass::Script::Variable :@underscored_name" value;" value; @ ; iz:@operand1o; ;"$experimental_support_for_webkit;"$experimental-support-for-webkit; @ ; iz; @ ; iz:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -webkit; {; @ ; iz; [o; ;" value;" value; @ ; iz; iz: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei{: @args[o:Sass::Script::String : @type:identifier; @ : @value"-o; i{o:Sass::Script::Variable :@underscored_name" value;" value; @ ; i{:@operand1o; ;"#experimental_support_for_opera;"#experimental-support-for-opera; @ ; i{; @ ; i{:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;"-o; {; @ ; i{; [o; ;" value;" value; @ ; i{; i{: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei|: @args[o:Sass::Script::String : @type:identifier; @ : @value" -svg; i|o:Sass::Script::Variable :@underscored_name" value;" value; @ ; i|:@operand1o; ;"!experimental_support_for_svg;"!experimental-support-for-svg; @ ; i|; @ ; i|:@operator:and0[o:Sass::Tree::PropNode ;["list-style-image:@prop_syntax:new; @ :@children[;o; ;" -svg; {; @ ; i|; [o; ;" value;" value; @ ; i|; i|: @tabsio;) ;["list-style-image;*;+;@; [;o; ;" value;" value;@; i}; i};,i; iv;[[o;;" value;" value;@0o; ;@;0; [;["G/* content property support for vendor prefixing within values. */; i{;io; ;" content;T;@; [ o; ;" value;@;0; [; i};o; ;"-compass-list;{;@; i};[o; ;" value;" value;@; i}u;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei~: @args[o:Sass::Script::String : @type:identifier; @ : @value" -moz; i~o:Sass::Script::Variable :@underscored_name" value;" value; @ ; i~:@operand1o; ;"%experimental_support_for_mozilla;"%experimental-support-for-mozilla; @ ; i~; @ ; i~:@operator:and0[o:Sass::Tree::PropNode ;[" content:@prop_syntax:new; @ :@children[;o; ;" -moz; {; @ ; i~; [o; ;" value;" value; @ ; i~; i~: @tabsiu;(#[o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -owg; io:Sass::Script::Variable :@underscored_name" value;" value; @ ; i:@operand1o; ;"*support_for_original_webkit_gradients;"*support-for-original-webkit-gradients; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;[" content:@prop_syntax:new; @ :@children[;o; ;" -owg; {; @ ; i; [o; ;" value;" value; @ ; i; i: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -webkit; io:Sass::Script::Variable :@underscored_name" value;" value; @ ; i:@operand1o; ;"$experimental_support_for_webkit;"$experimental-support-for-webkit; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;[" content:@prop_syntax:new; @ :@children[;o; ;" -webkit; {; @ ; i; [o; ;" value;" value; @ ; i; i: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value"-o; io:Sass::Script::Variable :@underscored_name" value;" value; @ ; i:@operand1o; ;"#experimental_support_for_opera;"#experimental-support-for-opera; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;[" content:@prop_syntax:new; @ :@children[;o; ;"-o; {; @ ; i; [o; ;" value;" value; @ ; i; i: @tabsiu;([o:Sass::Script::Operation :@operand2o:Sass::Script::Funcall : @name" prefixed:@keywords{: @options{: @linei: @args[o:Sass::Script::String : @type:identifier; @ : @value" -svg; io:Sass::Script::Variable :@underscored_name" value;" value; @ ; i:@operand1o; ;"!experimental_support_for_svg;"!experimental-support-for-svg; @ ; i; @ ; i:@operator:and0[o:Sass::Tree::PropNode ;[" content:@prop_syntax:new; @ :@children[;o; ;" -svg; {; @ ; i; [o; ;" value;" value; @ ; i; i: @tabsio;) ;[" content;*;+;@; [;o; ;" value;" value;@; i; i;,i; i|;[[o;;" value;" value;@0; i