SVG to CSS Help for Linear Gradient

Below is the linear gradient i created to skin the TabPane
SVG code
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292">
     <stop offset="0" style=stop-color:#C2B59B;stop-opacity:0.43"/>
     <stop offset="0" style=stop-color:#E2DBCE;stop-opacity:0.66"/>
     <stop offset="0.7939" style=stop-color:#C2B59B;stop-opacity:0.19"/>
     <stop offset="1" style=stop-color:#C2B59B;stop-opacity:0.02"/>
</linearGradient>
Css Code i used as
#tab-pane *.tab-header-background {
    -fx-background-color: linear-gradient(#c2b59b 40%, #e2dbce 60%, #c2b59b 19%, #c2b59b 2%);
}Now my question is how to specify theses thing in css
x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292" and offset of each stop ?
Edited by: Pugazhendhi on Apr 12, 2012 2:59 AM
Edited by: Pugazhendhi on Apr 12, 2012 2:59 AM

If you look at http://docs.oracle.com/javafx/2.0/api/javafx/scene/doc-files/cssref.html#typepaint, you will see that you can give a "from <point> to <point>" in the linear-gradient.
Here is your SVG:
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292">
<stop  offset="0" style="stop-color:#C2B59B;stop-opacity:0.43"/>
<stop  offset="0" style="stop-color:#E2DBCE;stop-opacity:0.66"/>
<stop  offset="0.7939" style="stop-color:#C2B59B;stop-opacity:0.19"/>
<stop  offset="1" style="stop-color:#C2B59B;stop-opacity:0.02"/>
</linearGradient>The offsets in your SVG linear gradient are percentages, not absolute values. Here, then, would be the equivalent linear-gradient (I rounded .7939 to 80%):
linear-gradient(from 6.4492 95.292 to 1186.2246 95.292, #C2B59B 0%, #E3DBCE 0%, #C2B59B 80%, #C2B59B 100%)Having two color stops at 0% seems like a mistake.
I also doubt that you want the absolute x1,y1 and x2,y2 values. You need to ask yourself what direction you want the gradient to go. It looks to me like this is going "to right" (since y1==y2). So, it is more likely that you want:
linear-gradient(to right, #C2B59B 0%, #E3DBCE 0%, #C2B59B 80%, #C2B59B 100%)The thing I didn't do here is to include the opacity from the svg stops. There are a few things you can do to solve that but the easiest is to translate the stop-opacity into a hex two hex digits and add those to the color. Just multiply the opacity by 255 and convert to hex. For example, .19 * 255 = 0x30 so the third stop would be #C2B59B30. Note that standard CSS doesn't support this extra byte for opacity in a hex color, so you could translate the hex color and opacity to rgba - #C2B59B30 = rgba(194, 181, 155, .19)

Similar Messages

  • No "ANGLE" Option for Linear Gradients in Motion 4!

    Referring to the help section for Motion 4, there should be an "angle" tool for linear gradients, but there's not! I have a linear gradient that runs top to bottom and I want it to run left to right. Is there any other way to do this without having to rotate my entire shape object (which would require other modifications?)
    Thanks,
    ~Greg

    You can do it by the numbers in the Inspector by changing the start and end points, or you can right-click in the Canvas and choose Edit Gradient to adjust it interactively - assuming it's a shape with a gradient applied.

  • Syntax for linear gradient

    I'm getting:
    WARNING: com.sun.javafx.css.parser.CSSParser linearGradient Using deprecated syntax for linear gradient at <filename & line #>. Refer to the CSS Reference Guide.
    But I'm copying the syntax from the only reference guide I can find (no reference is included in the JDK)
    http://download.oracle.com/javafx/2.0/api/javafx/scene/doc-files/cssref.html

    The docs in the SDK have the correct reference. You can find the ref by following the link from the class doc for Node. Here is the relevant section.
    Linear Gradients <linear-gradient>
    linear-gradient( [ [from <point> to <point>] | [ to <side-or-corner>], ]? [ [ repeat | reflect ], ]? <color-stop>[, <color-stop>]+)
    where <side-or-corner> = [left | right] || [top | bottom]
    Linear gradient creates a gradient going though all the stop colors along the line between the "from" <point> and the "to" <point>. If the points are percentages, then they are relative to the size of the area being filled. Percentage and length sizes can not be mixed in a single gradient function.
    If neither repeat nor reflect are given, then the CycleMethod defaults "NO_CYCLE".
    If neither [from <point> to <point>] nor [ to <side-or-corner> ] are given, then the gradient direction defaults to 'to bottom'.
    Stops are per W3C color-stop syntax and are normalized accordingly.
    This example will create a gradient from top left to bottom right of the filled area with red at the top left corner and black at the bottom right.
    linear-gradient(to bottom right, red, black)
    This is equivalent to:
    linear-gradient(from 0% 0% to 100% 100%, red 0%, black 100%)
    This more complex example will create a 50px high bar at the top with a 3 color gradient with white underneath for the rest of the filled area.
    linear-gradient(from 0px 0px to 0px 50px, gray, darkgray 50%, dimgray 99%, white)
    The following syntax for linear gradient does not conform to the CSS grammar and is deprecated in JavaFX 2.0. The JavaFX 2.0 CSS parser supports the syntax but this support may be removed in later releases.
    linear (<size>, <size>) to (<size>, <size>) stops [ (<number>,<color>) ]+ [ repeat | reflect ]?
    Radial Gradients <radial-gradient>
    radial-gradient([ focus-angle <angle>, ]? [ focus-distance <percentage>, ]? [ center <point>, ]? radius [ <length> | <percentage> ] [ [ repeat | reflect ], ]? <color-stop>[, <color-stop>]+)
    If neither repeat nor reflect are given, then the CycleMethod defaults "NO_CYCLE".
    Stops are per W3C color-stop syntax and are normalized accordingly.
    Following are examples of the use of radial-gradient:
    radial-gradient(radius 100%, red, darkgray, black)
    radial-gradient(focus-angle 45deg, focus-distance 20%, center 25% 25%, radius 50%, reflect, gray, darkgray 75%, dimgray)
    The following syntax for radial gradient does not conform to the CSS grammar and is deprecated in JavaFX 2.0. The JavaFX 2.0 CSS parser supports the syntax but this support may be removed in later releases.
    radial [focus-angle <number> | <number> ] ]? [ focus-distance <size> ]? [ center <size,size> ]? <size> stops [ ( <number>, <color> ) ]+ [ repeat | reflect ]?

  • Script for Linear Gradient Fill

    I need a script to gradient fill - linear top to bottom - rectangles. Can someone help me with this?

    Hi,
    You may need to create the linear elements first if they have not been defined at design time,  there is a sample of doing that here, http://forms.stefcameron.com/2008/03/14/field-background-color-fill/#comment-4423
    Regards
    Bruce

  • Need CSS Help for Gallery

    I have an image gallery which is working fine. But I'm at a loss for what CSS rule will center my large image vertically within its div. I've tried several attempts, none of which have had any affect. I've temporarily resorted to using a top margin to bump down my portrait image (image 1) so it appears centered... but that won't solve my landscape image (image 2).
    Here's my link  http://home.comcast.net/~steven.kay/  and my current styles below.
    #apDiv1 {width:495px; height:460px; z-index:1; float: right; margin-top: -38px; margin-right: 10px; text-align: center; background-image: url(../images/gallery/apDiv_bckgr.jpg); background-position: center center; vertical-align: middle;}
    #apDiv1 img {margin-top: 17px;}
    Thanks,
    Steve  

    Sorry to say  there is no CSS vertical centering rule that can automagically center your portrait & landscape  images on screen.   Perhaps if you display all your portait images in one division and all your  landscapes in another you can apply the correct top margin.  Or consider using another scripted gallery based on   JQuery or Lightbox.
    4Level has a free Lightbox extension for DW that may do what you need.
    http://www.fourlevel.com/dreamweaver/extensions/lightbox/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • SVG supports CSS and SMIL, can Edge Animate help?

    SVG supports CSS and SMIL, can Edge Animate help?

    DvdW_,
    The objective of my use is to have  Edge Animate OPEN/IMPORT an SVG file with many other SVG elements then animate just one item. For example, below is a flight instrument that I want to animate just the needle. How could that be done? Or is Edge Animate the wrong tool?
    GV
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!-- Generator: Adobe Illustrator 9.0, SVG Export Plug-In  -->
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN"   "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd" [
              <!ENTITY st0 "fill:#474747;">
              <!ENTITY st1 "fill:#D9D9D9;stroke:none;">
              <!ENTITY st2 "fill:#7C7C7C;">
              <!ENTITY st3 "font-size:6.0012;">
              <!ENTITY st4 "fill:#141414;">
              <!ENTITY st5 "fill-rule:nonzero;clip-rule:nonzero;fill:#363636;stroke:#000000;stroke-miterlimit:4;">
              <!ENTITY st6 "fill:#E5E5E5;stroke:none;">
              <!ENTITY st7 "fill:#171717;">
              <!ENTITY st8 "fill:#191919;">
              <!ENTITY st9 "fill:#4D4D4D;">
              <!ENTITY st10 "fill:#B2B2B2;">
              <!ENTITY st11 "fill:#1A1A1A;">
              <!ENTITY st12 "fill:#878787;">
              <!ENTITY st13 "fill:#1C1C1C;">
              <!ENTITY st14 "fill:#1E1E1E;">
              <!ENTITY st15 "fill-rule:nonzero;clip-rule:nonzero;fill:#999999;stroke:#000000;stroke-miterlimit:4;">
              <!ENTITY st16 "fill:#595959;">
              <!ENTITY st17 "fill:#202020;">
              <!ENTITY st18 "fill:#212121;">
              <!ENTITY st19 "fill:#232323;">
              <!ENTITY st20 "fill:#252525;">
              <!ENTITY st21 "fill-rule:nonzero;clip-rule:nonzero;fill:none;stroke:#000000;stroke-miterlimit:4;">
              <!ENTITY st22 "fill:#292929;">
              <!ENTITY st23 "fill:#2B2B2B;">
              <!ENTITY st24 "fill:#2C2C2C;">
              <!ENTITY st25 "fill:#2D2D2D;">
              <!ENTITY st26 "fill:#2E2E2E;">
              <!ENTITY st27 "fill-rule:nonzero;clip-rule:nonzero;fill:#CCCCCC;stroke:#000000;stroke-miterlimit:4;">
              <!ENTITY st28 "fill:#FFFFFF;">
              <!ENTITY st29 "fill:#646464;">
              <!ENTITY st30 "fill:#666666;">
              <!ENTITY st31 "fill:#303030;">
              <!ENTITY st32 "fill:#323232;">
              <!ENTITY st33 "fill:#333333;">
              <!ENTITY st34 "fill:#353535;">
              <!ENTITY st35 "fill:#373737;">
              <!ENTITY st36 "fill:#393939;">
              <!ENTITY st37 "fill:#000000;">
              <!ENTITY st38 "font-family:'Helvetica';">
              <!ENTITY st39 "fill:#3A3A3A;">
              <!ENTITY st40 "fill:#3C3C3C;">
              <!ENTITY st41 "fill:#3E3E3E;">
              <!ENTITY st42 "fill:#D9D9D9;">
              <!ENTITY st43 "fill:#707070;">
              <!ENTITY st44 "fill-rule:nonzero;clip-rule:nonzero;stroke:#000000;stroke-miterlimit:4;">
              <!ENTITY st45 "stroke:none;">
              <!ENTITY st46 "fill:#A6A6A6;">
              <!ENTITY st47 "fill:#404040;">
              <!ENTITY st48 "fill:#414141;">
    ]>
    <svg  width="162.031pt" height="164.281pt" viewBox="0 0 162.031 164.281" xml:space="preserve">
              <style type="text/css">
              <![CDATA[
              ]]>
              </style>
              <g id="Bounding_x0020_Box" style="&st21;">
                        <path style="&st45;" d="M162.031,164.281V0H0v164.281h162.031z"/>
                        <path style="&st45;" d="M81.016,134.197c29.371,0,53.181-23.811,53.181-53.181s-23.811-53.181-53.181-53.181S27.8 34,51.645,27.834,81.016s23.811,53.181,53.181,53.181z"/>
                        <text transform="matrix(1 0 0 1 4.126 159.0308)"><tspan x="0" y="0" style="&st45; &st38; &st3;">ACSPRUCE/5KSALT</tspan></text>
              </g>
              <g id="Spare_x0020_Number_x0020_Set" style="&st44;">
                        <g style="&st45;">
                                  <g>
                                            <path d="M87.134,60.226l-0.757,0.555v-0.81l0.757-0.555h0.765v5.338h-0.765v-4.528z"/>
                                  </g>
                                  <g>
                                            <path d="M89.52,64.034l2.084-2.609c0.165-0.21,0.195-0.375,0.195-0.532c0-0.375-0.277-0.757-0.735 -0.757c-0.412,0-0.742,0.292-0.78,0.772H89.52c0.008-0.87,0.682-1.537,1.484-1.537c0.892,0,1. 56,0.682,1.56,1.529c0,0.353-0.098,0.66-0.322,0.938l-1.717,2.152
                                                      h2.039v0.765H89.52v-0.72z"/>
                                  </g>
                                  <g>
                                            <path d="M94.2,61.665h0.262c0.51,0,0.825-0.322,0.825-0.757s-0.352-0.772-0.779-0.772c-0.323,0-0. 652,0.21-0.735,0.645h-0.765c0.06-0.757,0.712-1.41,1.469-1.41c0.952,0,1.575,0.742,1.575,1.5 22c0,0.405-0.127,0.817-0.57,1.102
                                                      c0.45,0.285,0.629,0.735,0.629,1.17c0,0.989-0.712,1.634-1.619,1.6 34c-0.72,0-1.372-0.48-1.515-1.372h0.765c0.143,0.367,0.36,0.607,0.795,0.607c0.427,0,0.81-0. 323,0.81-0.847c0-0.533-0.375-0.847-0.825-0.847H94.2v-0.675z"/>
                                  </g>
                                  <g>
                                            <path d="M96.571,63.239l1.784-3.824h0.855l-1.807,3.824h1.395v-1.537h0.765v1.537h0.428v0.72h-0.4 28v0.795h-0.765v-0.795h-2.227v-0.72z"/>
                                  </g>
                                  <g>
                                            <path d="M100.457,59.416h2.842v0.765h-2.122v1.207c0.255-0.202,0.525-0.292,0.855-0.292c0.405,0,0 .757,0.18,0.952,0.39c0.292,0.315,0.42,0.577,0.42,1.462c0,0.712-0.098,0.99-0.33,1.282c-0.21 7,0.277-0.622,0.57-1.155,0.57c-0.689,0-1.447-0.39-1.559-1.387
                                                      h0.765c0.083,0.382,0.337,0.623,0.765,0.623c0.75,0,0.75-0.645,0.7 5-1.147c0-0.592-0.142-1.027-0.772-1.027c-0.292,0-0.51,0.12-0.69,0.442h-0.72v-2.887z"/>
                                  </g>
                                  <g>
                                            <path d="M107.665,59.416h3.037v0.765l-1.807,4.573h-0.855l1.807-4.573h-1.417v0.772h-0.765v-1.537 z"/>
                                  </g>
                                  <path d="M105.737,61.605c-0.127,0-0.292,0.022-0.405,0.067h-0.015l1.125-2.257h-0.855l-1.432,2.86 4c-0.135,0.27-0.203,0.577-0.203,0.892c0,1.005,0.742,1.627,1.484,1.627c0.756,0,1.491-0.449, 1.561-1.545h-0.768c-0.044,0.555-0.417,0.781-0.748,0.781
                                            c-0.465,0-0.765-0.277-0.765-0.877c0-0.6,0.345-0.877,0.765-0.877c0.419 ,0,0.765,0.277,0.765,0.877c0,0.038-0.014,0.062-0.017,0.097h0.768c0.003-0.056,0.014-0.105,0 .014-0.164c0-1.035-0.6-1.484-1.274-1.484z"/>
                                  <path d="M112.683,59.371c-0.862,0-1.529,0.682-1.529,1.544c0,0.465,0.217,0.795,0.532,1.08c-0.405 ,0.27-0.629,0.697-0.629,1.2c0,0.021,0.005,0.039,0.005,0.059h0.773c-0.002-0.023-0.014-0.042 -0.014-0.066c0-0.488,0.405-0.847,0.862-0.847
                                            c0.458,0,0.862,0.359,0.862,0.847c0,0.487-0.405,0.847-0.862,0.847c-0.4 35,0-0.811-0.33-0.848-0.781h-0.773c0.031,0.912,0.756,1.545,1.621,1.545c0.885,0,1.627-0.66, 1.627-1.604c0-0.502-0.225-0.93-0.63-1.2c0.315-0.285,0.533-0.615,0.533-1.08
                                            c0-0.008-0.002-0.015-0.002-0.023l-0.771-0.039c0.001,0.018,0.009,0.029 ,0.009,0.047c0,0.502-0.375,0.765-0.765,0.765c-0.39,0-0.765-0.263-0.765-0.765c0-0.502,0.375 -0.765,0.765-0.765c0.376,0,0.73,0.25,0.756,0.718l0.771,0.039
                                            c-0.012-0.851-0.673-1.521-1.527-1.521z"/>
                                  <path d="M116.328,59.371c-0.757,0-1.492,0.45-1.561,1.549l0.761,0.038c0.026-0.59,0.415-0.822,0.7 55-0.822c0.465,0,0.765,0.278,0.765,0.877s-0.345,0.877-0.765,0.877s-0.765-0.277-0.765-0.877 c0-0.021,0.009-0.034,0.01-0.055l-0.761-0.038
                                            c-0.003,0.055-0.013,0.103-0.013,0.161c0,1.035,0.6,1.484,1.274,1.484c0 .127,0,0.292-0.022,0.405-0.067h0.015l-1.125,2.257h0.854l1.432-2.864c0.135-0.27,0.203-0.577 ,0.203-0.892c0-1.004-0.743-1.627-1.485-1.627z"/>
                                  <path d="M119.884,59.371c-0.787,0-1.514,0.555-1.514,1.537v2.354c0,0.982,0.727,1.537,1.514,1.537 s1.515-0.555,1.515-1.537v-0.095l-0.765-0.229v0.279c0,0.518-0.3,0.817-0.75,0.817c-0.45,0-0. 75-0.3-0.75-0.817v-2.264c0-0.517,0.3-0.817,0.75-0.817
                                            c0.45,0,0.75,0.3,0.75,0.817v1.985l0.765,0.229v-2.259c0-0.982-0.728-1. 537-1.515-1.537z"/>
                        </g>
              </g>
              <g id="Base" style="&st5;">
                        <g style="&st45;">
                                  <g>
                                            <path d="M80.641,162.581c43.942,0,79.564-35.623,79.564-79.565S124.583,3.451,80.641,3.451S1.076, 39.074,1.076,83.016s35.623,79.565,79.565,79.565z"/>
                                            <g>
                                                      <path style="&st32;" d="M76.916,161.956c38.832,0.404,64.504-35.568,63.958-75.119c-0.786-40.379-30.65-70.472-67 .841-72.985C37.111,4.6,1.076,39.548,1.076,83.016c0,42.637,33.728,77.398,75.84,78.94z"/>
                                                      <path style="&st25;" d="M73.19,161.332c33.722,0.809,49.444-35.514,48.352-70.672c-1.572-36.817-25.678-61.38-56. 118-66.406C37.523,5.748,1.076,40.021,1.076,83.016c0,41.333,31.832,75.231,72.114,78.316z"/>
                                                      <path style="&st22;" d="M69.464,160.707c28.611,1.214,34.381-35.458,32.744-66.224c-2.358-33.254-20.705-52.288-4 4.394-59.826C37.935,6.897,1.076,40.496,1.076,83.016c0,40.027,29.936,73.064,68.389,77.691z" />
                                                      <path style="&st20;" d="M65.739,160.082c23.5,1.619,19.32-35.404,17.138-61.778c-3.144-29.691-15.732-43.195-32.6 71-53.246C38.347,8.045,1.076,40.97,1.076,83.016c0,38.723,28.041,70.897,64.664,77.066z"/>
                                                      <path style="&st18;" d="M62.014,159.458c18.39,2.023,4.258-35.349,1.529-57.331c-3.929-26.128-10.759-34.102-20.9 46-46.666C38.759,9.194,1.076,41.443,1.076,83.016c0,37.417,26.145,68.73,60.938,76.442z"/>
                                                      <path style="&st14;" d="M58.289,158.833c13.28,2.428-10.802-35.294-14.077-52.884c-4.715-22.566-5.786-25.009-9.2 23-40.086c4.183-55.52-33.913-23.945-33.913,17.153c0,36.113,24.249,66.563,57.213,75.817z"/>
                                            </g>
                                            <path style="&st11;" d="M54.563,158.208c8.169,2.833-25.863-35.24-29.684-48.438c-5.501-19.004-0.813-15.917,2.5- 33.507C39.583,11.492,1.076,42.391,1.076,83.016c0,34.808,22.353,64.396,53.488,75.193z"/>
                                  </g>
                                  <path style="&st0;" d="M50.453,154.477c-12.195-5.073-23.517-14.588-32.824-27.953C3,105.52,0.474,78.915,6.658, 59.667C3,69.513,3.085,72.258,3.085,83.016c0,32.124,19.532,59.687,47.368,71.461z"/>
                                  <g>
                                            <path d="M96.894,126.774c21.116,19.196,37.313,20.782,51.354-1.788c7.58-12.184,11.958-26.566,11. 958-41.971c0-25.291-11.801-47.827-30.196-62.4C116.443,9.868,79.891,18.82,79.891,62.762s-5. 001,44.008,17.003,64.012z"/>
                                            <g>
                                                      <path style="&st48;" d="M99.465,120.916c23.57,16.454,37.734,21.178,50.079,0.193c6.626-11.129,10.447-24.166,10. 447-38.094c0-23.102-10.377-43.781-26.623-57.529C120.11,11.994,89.959,26.026,85.105,63.69c- 6.277,37.665-10.778,40.079,14.36,57.226z"/>
                                                      <path style="&st9;" d="M102.037,115.058c26.025,13.711,38.156,21.574,48.804,2.174c5.673-10.075,8.936-21.765,8. 936-34.217c0-20.913-8.953-39.736-23.049-52.658c-12.95-16.239-36.7,2.874-46.407,34.261c-12. 555,31.387-16.555,36.15,11.716,50.439z"/>
                                                      <path style="&st16;" d="M104.609,109.199c28.479,10.969,38.578,21.971,47.528,4.156c4.72-9.021,7.425-19.365,7.42 5-30.34c0-18.724-7.529-35.69-19.476-47.786c-12.641-18.985-29.99,5.209-44.551,30.318c-18.83 2,25.11-22.333,32.221,9.073,43.651z"/>
                                                      <path style="&st29;" d="M107.181,103.341c30.934,8.227,39,22.367,46.253,6.137c3.767-7.967,5.914-16.964,5.914-26 .463c0-16.535-6.105-31.645-15.902-42.915c-12.333-21.731-23.281,7.544-42.695,26.376c-25.109 ,18.833-28.11,28.292,6.43,36.865z"/>
                                                      <path style="&st43;" d="M109.753,97.482c33.388,5.484,39.421,22.763,44.978,8.119c2.813-6.913,4.402-14.564,4.402 -22.585c0-14.346-4.681-27.599-12.328-38.043c-12.026-24.478-16.572,9.879-40.839,22.433C74.5 8,79.96,72.079,91.767,109.753,97.482z"/>
                                                      <path style="&st2;" d="M112.325,91.625c35.842,2.742,39.843,23.159,43.703,10.1c1.859-5.859,2.891-12.163,2.891- 18.708c0-12.157-3.257-23.553-8.754-33.172c-11.717-27.224-9.862,12.213-38.983,18.49c-37.665 ,6.277-39.665,20.433,1.143,23.291z"/>
                                            </g>
                                            <path style="&st12;" d="M114.897,85.766c38.297,0,40.265,23.556,42.428,12.082c0.906-4.806,1.38-9.764,1.38-14.83 2c0-9.968-1.833-19.508-5.181-28.301c-11.409-29.97-3.153,14.548-37.127,14.548c-43.942,0-45. 442,16.503-1.5,16.503z"/>
                                  </g>
                                  <path style="&st37;" d="M80.641,153.568c38.964,0,70.552-31.588,70.552-70.552s-31.588-70.552-70.552-70.552S10.0 88,44.051,10.088,83.016s31.588,70.552,70.552,70.552z"/>
                                  <path d="M80.641,152.396c38.317,0,69.381-31.063,69.381-69.381s-31.063-69.381-69.381-69.381S11.2 6,44.698,11.26,83.016s31.063,69.381,69.381,69.381z"/>
                                  <g>
                                            <g>
                                                      <path style="&st47;" d="M80.266,149.465c36.635,0,66.334-29.699,66.334-66.334c0-36.634-29.699-66.333-66.334-66. 333c-36.634,0-66.333,29.699-66.333,66.333c0,36.635,29.699,66.334,66.333,66.334z"/>
                                            </g>
                                            <g>
                                                      <path style="&st41;" d="M83.928,21.066c-33.8,1.259-62.854,32.341-65.72,66.295c-1.004,33.865,25.742,61.545,61.4 07,61.695c36.834,0.245,67.276-29.692,66.471-66.723c-0.358-35.244-28.359-62.584-62.158-61.2 68z"/>
                                                      <path style="&st40;" d="M87.589,25.334c-30.966,2.518-59.374,34.983-65.105,66.257c-2.008,31.095,21.784,56.758,5 6.48,57.058c37.034,0.489,68.22-29.685,66.608-67.111c-0.717-33.855-27.019-58.836-57.983-56. 203z"/>
                                                      <path style="&st39;" d="M91.252,29.604C63.121,33.381,35.358,67.23,26.761,95.822c-3.012,28.324,17.826,51.969,51 .553,52.418c37.233,0.733,69.163-29.678,66.744-67.5c-1.074-32.464-25.677-55.087-53.806-51.1 37z"/>
                                                      <path style="&st36;" d="M94.914,33.872c-25.297,5.037-52.414,40.269-63.877,66.18c-4.016,25.555,13.869,47.181,46 .626,47.78c37.434,0.978,70.106-29.671,66.881-67.889c-1.433-31.075-24.337-51.338-49.631-46. 072z"/>
                                                      <path style="&st35;" d="M98.575,38.141c-22.462,6.295-48.934,42.911-63.262,66.142c-5.021,22.785,9.911,42.394,41 .7,43.143c37.633,1.222,71.048-29.664,67.018-68.278c-1.791-29.685-22.997-47.589-45.456-41.0 06z"/>
                                                      <path style="&st34;" d="M102.237,42.409c-19.628,7.555-45.454,45.553-62.648,66.103c-6.024,20.015,5.953,37.606,3 6.773,38.504c37.833,1.467,71.992-29.657,67.156-68.667c-2.149-28.294-21.657-43.84-41.28-35. 941z"/>
                                                      <path style="&st33;" d="M105.9,46.678c-16.793,8.814-41.974,48.196-62.034,66.065c-7.029,17.245,1.995,32.817,31. 846,33.865c38.032,1.711,72.935-29.65,67.292-69.055c-2.507-26.904-20.315-40.091-37.104-30.8 75z"/>
                                                      <path style="&st32;" d="M109.562,50.947c-13.959,10.073-38.494,50.838-61.42,66.026c-8.033,14.475-1.962,28.029,2 6.919,29.228c38.232,1.956,73.878-29.643,67.429-69.444c-2.865-25.514-18.975-36.342-32.928-2 5.81z"/>
                                                      <path style="&st31;" d="M113.223,55.215c-11.125,11.332-35.014,53.48-60.806,65.988c-9.037,11.705-5.92,23.241,21 .993,24.589c38.432,2.2,74.82-29.636,67.566-69.833c-3.224-24.124-17.635-32.593-28.753-20.74 4z"/>
                                                      <path style="&st26;" d="M116.885,59.484c-8.291,12.591-31.534,56.123-60.192,65.949c-10.041,8.936-9.877,18.454,1 7.066,19.952c38.632,2.444,75.764-29.629,67.703-70.222c-3.582-22.735-16.294-28.844-24.577-1 5.679z"/>
                                                      <path style="&st24;" d="M120.548,63.753c-5.456,13.851-28.054,58.766-59.578,65.911c-11.045,6.165-13.835,13.665, 12.138,15.313c38.832,2.689,76.707-29.622,67.84-70.611c-3.94-21.344-14.954-25.094-20.401-10 .613z"/>
                                                      <path style="&st23;" d="M124.209,68.021c-2.621,15.109-24.574,61.408-58.963,65.873c-12.049,3.395-17.793,8.876,7 .212,10.674c39.031,2.934,77.65-29.615,67.977-70.999c-4.298-19.955-13.613-21.346-16.226-5.5 48z"/>
                                            </g>
                                            <path style="&st22;" d="M127.871,72.29c0.213,16.368-21.094,64.05-58.349,65.834c-13.054,0.625-21.751,4.089,2.28 5,6.036c39.23,3.178,78.592-29.608,68.114-71.388c-4.656-18.564-12.273-17.597-12.05-0.482z"/ >
                                  </g>
                        </g>
              </g>
              <g id="Labels_x0020__x0028_Body_x0029_" style="&st27;">
                        <path style="&st1;" d="M79.769,123.537c-1.26,0-2.423,0.888-2.423,2.459v0.755l1.224,0.506v-1.189c0-0.828,0.479 -1.308,1.2-1.308c0.719,0,1.199,0.48,1.199,1.308v3.623c0,0.828-0.48,1.308-1.199,1.308c-0.72 ,0-1.2-0.48-1.2-1.308v-2.433l-1.224-0.506v3.011
                                  c0,1.572,1.164,2.459,2.423,2.459c1.259,0,2.423-0.888,2.423-2.459v-3.767c0- 1.571-1.164-2.459-2.423-2.459z"/>
                        <path style="&st6;" d="M140.072,85.563l0.055-2.625l-4.542,1.217l4.487,1.408z"/>
                        <g style="&st45;">
                                  <g>
                                            <g>
                                                      <path d="M43.422,40.598l-5.599-6.116c-0.209-0.229-0.565-0.246-0.794-0.037c-0.23,0.209-0.246,0.5 65-0.037,0.795l5.599,6.116c0.209,0.229,0.565,0.246,0.795,0.037s0.246-0.565,0.037-0.795z"/>
                                                      <path d="M38.403,45.644l-6.321-5.366c-0.236-0.202-0.592-0.173-0.793,0.063c-0.201,0.236-0.173,0. 591,0.063,0.793l6.321,5.366c0.236,0.202,0.592,0.173,0.793-0.063c0.202-0.236,0.173-0.591-0. 063-0.793z"/>
                                                      <path d="M34.056,51.279l-6.944-4.531c-0.26-0.17-0.609-0.098-0.779,0.162c-0.17,0.26-0.098,0.609, 0.163,0.779l6.943,4.531c0.26,0.17,0.609,0.098,0.779-0.162c0.17-0.26,0.098-0.609-0.162-0.77 9z"/>
                                                      <path d="M30.449,57.415l-7.457-3.625c-0.279-0.137-0.616-0.021-0.752,0.258c-0.136,0.279-0.021,0. 616,0.259,0.752l7.457,3.625v0c0.279,0.137,0.616,0.021,0.752-0.258c0.137-0.279,0.021-0.616- 0.258-0.752z"/>
                                                      <path d="M25.671,70.793l-8.124-1.657c-0.304-0.063-0.602,0.133-0.665,0.438s0.133,0.602,0.438,0.6 65l8.124,1.657c0.304,0.063,0.602-0.133,0.665-0.438c0.063-0.304-0.133-0.602-0.438-0.665z"/>
                                                      <path d="M24.576,77.825l-8.268-0.626c-0.31-0.024-0.58,0.208-0.604,0.518c-0.024,0.31,0.208,0.581 ,0.518,0.604l8.268,0.626c0.31,0.024,0.58-0.208,0.604-0.518c0.024-0.31-0.208-0.581-0.518-0. 604z"/>
                                                      <path d="M24.371,84.939l-8.281,0.415c-0.311,0.015-0.55,0.279-0.535,0.589c0.015,0.311,0.278,0.55 ,0.589,0.535l8.281-0.416c0.31-0.015,0.55-0.278,0.535-0.589c-0.015-0.311-0.278-0.55-0.589-0 .535z"/>
                                                      <path d="M25.059,92.023l-8.164,1.45c-0.306,0.054-0.51,0.345-0.457,0.651c0.054,0.306,0.346,0.51, 0.652,0.457l8.163-1.45c0.306-0.054,0.511-0.345,0.457-0.651c-0.054-0.306-0.345-0.51-0.651-0 .457z"/>
                                                      <path d="M29.057,105.654l-7.546,3.434c-0.283,0.128-0.409,0.461-0.281,0.744c0.128,0.283,0.461,0. 409,0.745,0.281l7.546-3.434c0.283-0.128,0.409-0.461,0.28-0.745c-0.128-0.283-0.461-0.409-0. 744-0.28z"/>
                                                      <path d="M32.304,111.987l-7.056,4.353c-0.265,0.163-0.348,0.509-0.185,0.773c0.163,0.265,0.509,0. 348,0.773,0.185l7.057-4.353c0.265-0.163,0.348-0.509,0.185-0.774c-0.163-0.265-0.509-0.348-0 .774-0.185z"/>
                                                      <path d="M36.319,117.863l-6.456,5.203c-0.242,0.194-0.281,0.548-0.086,0.791c0.194,0.243,0.549,0. 281,0.791,0.087l6.456-5.203h0c0.243-0.195,0.281-0.549,0.087-0.791c-0.195-0.242-0.549-0.281 -0.791-0.086z"/>
                                                      <path d="M41.039,123.189l-5.752,5.971c-0.216,0.223-0.21,0.58,0.013,0.795c0.223,0.216,0.58,0.21, 0.795-0.013l5.752-5.971c0.216-0.223,0.21-0.579-0.013-0.795c-0.223-0.216-0.58-0.21-0.795,0. 013z"/>
                                                      <path d="M52.285,131.868l-4.087,7.213c-0.153,0.27-0.059,0.614,0.211,0.767c0.27,0.154,0.613,0.06 ,0.767-0.21l4.087-7.213c0.154-0.27,0.06-0.614-0.21-0.767c-0.27-0.154-0.614-0.06-0.767,0.21 z"/>
                                                      <path d="M58.633,135.083l-3.151,7.668c-0.119,0.287,0.018,0.616,0.305,0.735s0.616-0.018,0.735-0. 305l3.151-7.668c0.119-0.287-0.018-0.616-0.305-0.735s-0.616,0.018-0.735,0.305z"/>
                                                      <path d="M65.335,137.478l-2.165,8.003c-0.082,0.3,0.095,0.609,0.395,0.691c0.3,0.082,0.609-0.095, 0.691-0.395l2.165-8.003c0.082-0.3-0.095-0.609-0.395-0.69c-0.3-0.082-0.609,0.095-0.691,0.39 5z"/>
                                                      <path d="M72.284,139.013l-1.145,8.211c-0.043,0.308,0.17,0.592,0.478,0.636c0.308,0.043,0.592-0.1 71,0.636-0.479l1.145-8.211c0.043-0.307-0.17-0.592-0.478-0.636s-0.592,0.171-0.636,0.479z"/>
                                                      <path d="M86.483,139.425l0.933,8.238c0.035,0.309,0.313,0.532,0.622,0.497c0.309-0.034,0.531-0.31 3,0.497-0.621l-0.933-8.238c-0.035-0.309-0.313-0.531-0.622-0.497c-0.309,0.034-0.531,0.313-0 .497,0.621z"/>
                                                      <path d="M93.509,138.295l1.958,8.056c0.073,0.302,0.377,0.488,0.679,0.416c0.302-0.073,0.488-0.37 7,0.415-0.679l-1.958-8.056c-0.073-0.302-0.376-0.488-0.679-0.415c-0.302,0.073-0.488,0.376-0 .415,0.679z"/>
                                                      <path d="M100.338,136.293l2.952,7.747c0.11,0.291,0.435,0.437,0.726,0.327c0.291-0.11,0.437-0.435 ,0.327-0.725l-2.952-7.747c-0.11-0.291-0.435-0.437-0.726-0.327c-0.291,0.11-0.437,0.435-0.32 7,0.726z"/>
                                                      <path d="M106.862,133.451l3.899,7.316c0.146,0.274,0.486,0.379,0.761,0.233c0.274-0.146,0.379-0.4 86,0.233-0.76l-3.9-7.316c-0.146-0.274-0.486-0.379-0.76-0.233c-0.274,0.146-0.379,0.486-0.23 3,0.761z"/>
                                                      <path d="M118.592,125.439l5.596,6.116c0.209,0.23,0.565,0.246,0.795,0.037c0.229-0.209,0.246-0.56 5,0.037-0.795l-5.596-6.116c-0.209-0.229-0.565-0.246-0.795-0.037c-0.229,0.209-0.246,0.565-0 .037,0.795z"/>
                                                      <path d="M123.612,120.396l6.319,5.367c0.236,0.202,0.591,0.174,0.793-0.063c0.202-0.237,0.173-0.5 92-0.063-0.793l-6.319-5.367c-0.236-0.202-0.591-0.173-0.793,0.063s-0.173,0.592,0.063,0.793z "/>
                                                      <path d="M127.96,114.763l6.941,4.533c0.26,0.17,0.609,0.098,0.779-0.162s0.098-0.608-0.162-0.779l -6.941-4.533c-0.26-0.17-0.608-0.098-0.779,0.162s-0.098,0.608,0.162,0.779z"/>
                                                      <path d="M131.568,108.629l7.455,3.627c0.279,0.137,0.616,0.021,0.752-0.258c0.137-0.279,0.021-0.6 16-0.258-0.753l-7.455-3.627v0c-0.279-0.137-0.616-0.021-0.752,0.258c-0.136,0.279-0.021,0.61 6,0.258,0.752z"/>
                                                      <path d="M136.349,95.254l8.123,1.659c0.304,0.063,0.602-0.133,0.665-0.438c0.063-0.304-0.133-0.60 2-0.438-0.665l-8.123-1.659c-0.304-0.063-0.602,0.133-0.664,0.437c-0.063,0.305,0.133,0.602,0 .437,0.665z"/>
                                                      <path d="M137.446,88.223l8.266,0.628c0.31,0.024,0.581-0.208,0.605-0.517c0.024-0.31-0.208-0.581- 0.518-0.604l-8.266-0.628c-0.31-0.024-0.581,0.208-0.604,0.517s0.208,0.581,0.517,0.604z"/>
                                                      <path d="M137.654,81.11l8.28-0.413c0.31-0.015,0.55-0.279,0.535-0.589c-0.015-0.311-0.279-0.55-0. 589-0.535l-8.28,0.413h0c-0.311,0.015-0.55,0.279-0.535,0.589c0.015,0.31,0.278,0.55,0.589,0. 535z"/>
                                                      <path d="M136.968,74.027l8.163-1.447c0.306-0.054,0.511-0.345,0.457-0.651s-0.345-0.511-0.651-0.4 57l-8.163,1.447v0c-0.306,0.054-0.511,0.345-0.457,0.651s0.345,0.511,0.651,0.457z"/>
                                                      <path d="M132.975,60.396l7.547-3.431c0.283-0.128,0.409-0.461,0.281-0.745c-0.128-0.283-0.461-0.4 09-0.745-0.281l-7.546,3.432c-0.283,0.128-0.409,0.461-0.281,0.744s0.461,0.409,0.744,0.281z" />
                                                      <path d="M129.73,54.063l7.057-4.35c0.265-0.162,0.348-0.509,0.186-0.773c-0.163-0.265-0.509-0.348 -0.774-0.186l-7.057,4.35c-0.265,0.163-0.348,0.509-0.185,0.773c0.163,0.265,0.509,0.348,0.77 3,0.186z"/>
                                                      <path d="M125.717,48.187l6.457-5.2c0.242-0.194,0.281-0.548,0.087-0.791c-0.195-0.242-0.549-0.281 -0.791-0.086l-6.456,5.2v0c-0.242,0.195-0.281,0.549-0.087,0.791s0.548,0.281,0.791,0.087z"/>
                                                      <path d="M121,42.859l5.753-5.968c0.216-0.223,0.21-0.58-0.013-0.795c-0.223-0.216-0.58-0.21-0.795 ,0.013l-5.754,5.968h0c-0.216,0.223-0.21,0.58,0.013,0.795s0.58,0.21,0.795-0.013z"/>
                                                      <path d="M109.758,34.178l4.088-7.211c0.154-0.27,0.06-0.613-0.21-0.767c-0.27-0.154-0.614-0.06-0. 767,0.21l-4.089,7.211c-0.154,0.27-0.06,0.613,0.21,0.767c0.27,0.153,0.613,0.06,0.767-0.21z" />
                                                      <path d="M103.411,30.961l3.153-7.667c0.119-0.287-0.018-0.616-0.305-0.735c-0.287-0.119-0.616,0.0 18-0.734,0.305l-3.153,7.667v0c-0.119,0.288,0.018,0.616,0.305,0.735s0.616-0.018,0.735-0.305 z"/>
                                                      <path d="M96.711,28.565l2.167-8.001c0.082-0.299-0.095-0.609-0.395-0.691c-0.3-0.082-0.609,0.095- 0.69,0.395l-2.167,8.001h0c-0.082,0.3,0.095,0.609,0.394,0.691c0.3,0.082,0.609-0.095,0.691-0 .395z"/>
                                                      <path d="M89.764,27.028l1.147-8.209c0.043-0.308-0.17-0.593-0.478-0.636s-0.592,0.17-0.636,0.478l -1.147,8.21c-0.043,0.308,0.17,0.592,0.478,0.636c0.308,0.044,0.592-0.17,0.636-0.478z"/>
                                                      <path d="M75.566,26.612l-0.93-8.237c-0.034-0.309-0.313-0.532-0.621-0.498c-0.309,0.035-0.531,0.3 13-0.497,0.621l0.93,8.238v0c0.035,0.309,0.313,0.532,0.621,0.497c0.309-0.034,0.531-0.312,0. 497-0.621z"/>
                                                      <path d="M68.541,27.74l-1.956-8.055c-0.072-0.302-0.376-0.488-0.678-0.416c-0.302,0.072-0.488,0.3 76-0.416,0.678l1.956,8.056c0.073,0.302,0.376,0.488,0.678,0.415c0.302-0.072,0.488-0.376,0.4 16-0.678z"/>
                                                      <path d="M61.712,29.739l-2.949-7.747c-0.11-0.291-0.435-0.437-0.725-0.327S57.601,22.1,57.71,22.3 9l2.95,7.748v0c0.11,0.291,0.435,0.437,0.725,0.327s0.437-0.435,0.327-0.725z"/>
                                                      <path d="M55.188,32.579l-3.897-7.316c-0.146-0.274-0.486-0.379-0.761-0.233s-0.379,0.486-0.233,0. 76l3.897,7.316c0.146,0.274,0.486,0.379,0.76,0.233s0.379-0.486,0.234-0.76z"/>
                                            </g>
                                            <g>
                                                      <path d="M42.918,30.874l6.9,9.857c0.356,0.509,1.058,0.633,1.567,0.276c0.509-0.356,0.633-1.058,0 .277-1.567l-6.9-9.857c-0.356-0.509-1.058-0.633-1.567-0.276c-0.509,0.356-0.633,1.058-0.277, 1.567z"/>
                                                      <path d="M19.547,63.225l11.375,3.919c0.588,0.202,1.228-0.11,1.43-0.697c0.203-0.588-0.109-1.228- 0.697-1.431L20.28,61.097c-0.587-0.202-1.228,0.11-1.43,0.697c-0.203,0.588,0.11,1.228,0.697, 1.431z"/>
                                                      <path d="M19.653,103.133l11.507-3.515c0.594-0.182,0.929-0.811,0.747-1.405c-0.182-0.594-0.811-0. 929-1.405-0.747l-11.506,3.516c-0.594,0.182-0.929,0.811-0.748,1.405s0.811,0.929,1.405,0.747 z"/>
                                                      <path d="M43.197,135.358l7.243-9.607c0.374-0.496,0.275-1.202-0.221-1.576c-0.497-0.374-1.202-0.2 75-1.576,0.222l-7.243,9.607c-0.374,0.496-0.275,1.202,0.221,1.576c0.496,0.375,1.202,0.275,1 .576-0.221z"/>
                                                      <path d="M81.185,147.59l0.212-12.029c0.011-0.622-0.484-1.134-1.105-1.145c-0.622-0.011-1.134,0.4 84-1.145,1.105l-0.213,12.03c-0.011,0.621,0.484,1.134,1.105,1.145c0.621,0.011,1.134-0.483,1 .145-1.105z"/>
                                                      <path d="M119.107,135.158l-6.898-9.857c-0.356-0.509-1.058-0.633-1.567-0.276c-0.509,0.356-0.633, 1.058-0.277,1.567l6.898,9.857c0.356,0.509,1.058,0.633,1.567,0.277c0.509-0.356,0.633-1.058, 0.276-1.567z"/>
                                                      <path d="M142.48,102.811l-10.306-3.552l-0.879,2.077l10.453,3.602c0.587,0.203,1.228-0.11,1.43-0. 697c0.203-0.587-0.109-1.228-0.697-1.43z"/>
                                                      <path d="M142.377,62.903l-10.686,3.264l0.698,2.14l10.645-3.251c0.594-0.181,0.929-0.81,0.748-1.4 05c-0.182-0.594-0.811-0.929-1.405-0.747z"/>
                                                      <path d="M118.837,30.678l-7.243,9.606c-0.374,0.496-0.275,1.202,0.221,1.576c0.496,0.375,1.202,0. 275,1.576-0.221l7.243-9.606c0.374-0.497,0.275-1.202-0.221-1.576c-0.496-0.375-1.202-0.275-1 .576,0.221z"/>
                                                      <path d="M80.852,18.443l-0.214,12.029c-0.011,0.621,0.484,1.134,1.105,1.145c0.622,0.011,1.134-0. 484,1.145-1.105l0.214-12.029c0.011-0.621-0.484-1.134-1.105-1.145c-0.621-0.011-1.134,0.484- 1.145,1.105z"/>
                                            </g>
                                  </g>
                                  <g style="&st42;">
                                            <g>
                                                      <g>
                                                                <path d="M79.315,94.536h1.133v6.403h3.643v1.071h-4.776v-7.474z"/>
                                                      </g>
                                                      <g>
                                                                <path d="M85.26,95.543h-2.047v-1.008h5.227v1.008h-2.047v6.466H85.26v-6.466z"/>
                                                      </g>
                                                      <path d="M77.319,102.009h1.197l-2.719-7.474h-0.944l-2.719,7.474h1.197l0.577-1.669h1.388v-1.008h -1.063l1.082-3.264h0.021l1.081,3.264h-1.121v1.008h1.446l0.577,1.669z"/>
                                            </g>
                                            <g>
                                                      <g>
                                                                <path d="M78.954,110.71h1.098l0.909,1.476l0.909-1.476h1.098l-1.494,2.231l1.556,2.331h-1.097l-0. 972-1.521l-0.972,1.521h-1.098l1.556-2.331l-1.493-2.231z"/>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M63.375,111.412h-0.459v-0.702h0.459v-0.603c0-0.855,0.531-1.242,1.241-1.242h0.594v0.864 h-0.521c-0.297,0-0.396,0.099-0.396,0.378v0.603h0.917v0.702h-0.917v3.86h-0.917v-3.86z"/>
                                                                </g>
                                                                <g>
                                                                          <path d="M74.788,109.325h0.917v1.385h0.666v0.702h-0.666v2.654c0,0.252,0.099,0.342,0.324,0.342h0 .342v0.864h-0.477c-0.639,0-1.106-0.405-1.106-1.125v-2.735h-0.459v-0.702h0.459v-1.385z"/>
                                                                </g>
                                                                <path d="M67.387,110.657c-0.882,0-1.88,0.576-1.88,2.348c0,1.871,1.089,2.321,2.024,2.321c0.612,0 ,1.197-0.216,1.646-0.738l-0.666-0.566c-0.27,0.279-0.647,0.44-0.999,0.44c-0.63,0-1.088-0.37 7-1.088-1.125h2.843v-0.756c0-0.141-0.014-0.275-0.038-0.404
                                                                          h-0.956c0.04,0.121,0.07,0.251,0.076,0.404h-1.925c0.018 -0.692,0.423-1.062,0.962-1.062c0.421,0,0.748,0.23,0.887,0.658h0.956c-0.175-0.942-0.956-1.5 21-1.842-1.521z"/>
                                                                <path d="M70.106,112.178h0.892c0.137-0.427,0.469-0.658,0.89-0.658c0.54,0,0.936,0.369,0.962,1.06 2h-1.925c0.003-0.153,0.033-0.283,0.072-0.404h-0.892c-0.058,0.244-0.099,0.51-0.099,0.827c0, 1.871,1.089,2.321,2.024,2.321c0.612,0,1.196-0.216,1.646-0.738
                                                                          l-0.666-0.566c-0.27,0.279-0.648,0.44-0.999,0.44c-0.63, 0-1.088-0.377-1.088-1.125h2.843v-0.756c0-1.178-0.873-1.925-1.88-1.925c-0.724,0-1.518,0.4-1 .782,1.521z"/>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M87.027,109.838l-0.909,0.666v-0.972l0.909-0.666h0.917v6.406h-0.917v-5.434z"/>
                                                                </g>
                                                                <path d="M91.762,108.812c-0.944,0-1.817,0.666-1.817,1.845v2.825c0,1.179,0.873,1.844,1.817,1.844 c0.945,0,1.817-0.666,1.817-1.844v-1.116h-0.917v1.062c0,0.621-0.36,0.981-0.9,0.981c-0.54,0- 0.899-0.36-0.899-0.981v-2.717c0-0.621,0.36-0.98,0.899-0.98
                                                                          c0.54,0,0.9,0.36,0.9,0.98v1.655h0.917v-1.708c0-1.179-0 .873-1.845-1.817-1.845z"/>
                                                                <path d="M96.083,108.812c-0.944,0-1.817,0.666-1.817,1.845v1.708h0.918v-1.655c0-0.621,0.36-0.98, 0.899-0.98s0.9,0.36,0.9,0.98v2.717c0,0.621-0.36,0.981-0.9,0.981s-0.899-0.36-0.899-0.981v-1 .062h-0.918v1.116c0,1.179,0.873,1.844,1.817,1.844
                                                                          c0.945,0,1.817-0.666,1.817-1.844v-2.825c0-1.179-0.873- 1.845-1.817-1.845z"/>
                                                      </g>
                                            </g>
                                            <g>
                                                      <g>
                                                                <g>
                                                                          <path d="M82.364,33.592h4.546v1.224h-3.395v1.931c0.408-0.324,0.839-0.468,1.367-0.468c0.648,0,1. 212,0.288,1.523,0.624c0.468,0.503,0.672,0.923,0.672,2.339c0,1.14-0.156,1.583-0.528,2.051c- 0.348,0.444-0.996,0.912-1.847,0.912
                                                                                    c-1.104,0-2.315-0.624-2.495-2.219h1.224c0.132,0.6 12,0.54,0.996,1.223,0.996c1.2,0,1.2-1.031,1.2-1.835c0-0.948-0.228-1.644-1.235-1.644c-0.468 ,0-0.816,0.192-1.104,0.708h-1.152v-4.619z"/>
                                                                </g>
                                                                <g>
                                                                          <path d="M76.442,40.849l3.335-4.175c0.264-0.336,0.312-0.6,0.312-0.852c0-0.6-0.444-1.211-1.175-1 .211c-0.66,0-1.188,0.468-1.248,1.235h-1.224c0.012-1.392,1.092-2.459,2.375-2.459c1.428,0,2. 495,1.091,2.495,2.447c0,0.564-0.156,1.056-0.516,1.5
                                                                                    l-2.747,3.442h3.263V42h-4.87v-1.151z"/>
                                                                </g>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M101.039,121.1l2.855-6.118h1.367l-2.891,6.118h2.231v-2.459h1.224v2.459h0.684v1.152h-0. 684v1.271h-1.224v-1.271h-3.563V121.1z"/>
                                                                </g>
                                                                <g>
                                                                          <path d="M107.195,114.982h4.546v1.224h-3.395v1.931c0.408-0.324,0.84-0.468,1.368-0.468c0.647,0,1 .211,0.288,1.523,0.624c0.468,0.504,0.672,0.924,0.672,2.339c0,1.14-0.156,1.583-0.528,2.051c -0.348,0.444-0.996,0.912-1.848,0.912
                                                                                    c-1.104,0-2.315-0.624-2.495-2.219h1.224c0.132,0.6 12,0.54,0.996,1.224,0.996c1.2,0,1.2-1.032,1.2-1.835c0-0.948-0.228-1.644-1.236-1.644c-0.468 ,0-0.815,0.192-1.104,0.708h-1.151v-4.618z"/>
                                                                </g>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M104.375,46.589h0.42c0.815,0,1.319-0.516,1.319-1.211s-0.564-1.236-1.248-1.236c-0.516,0 -1.043,0.336-1.176,1.032h-1.224c0.096-1.211,1.14-2.255,2.352-2.255c1.523,0,2.519,1.188,2.5 19,2.436c0,0.647-0.204,1.308-0.912,1.763
                                                                                    c0.72,0.456,1.007,1.176,1.007,1.872c0,1.583-1.139 ,2.615-2.591,2.615c-1.152,0-2.195-0.768-2.423-2.195h1.224c0.228,0.588,0.576,0.972,1.271,0. 972c0.684,0,1.296-0.516,1.296-1.355c0-0.852-0.6-1.355-1.32-1.355h-0.516v-1.08z"/>
                                                                </g>
                                                                <path d="M113.326,49.144v-3.767c0-1.571-1.164-2.459-2.423-2.459c-1.259,0-2.423,0.888-2.423,2.45 9v3.767c0,1.469,1.019,2.33,2.18,2.438l-0.052-1.235c-0.551-0.117-0.904-0.567-0.904-1.274v-3 .623c0-0.828,0.479-1.308,1.199-1.308s1.2,0.48,1.2,1.308v3.623
                                                                          c0,0.828-0.48,1.307-1.2,1.307c-0.104,0-0.202-0.013-0.2 95-0.033l0.052,1.235c0.081,0.007,0.161,0.021,0.243,0.021c1.26,0,2.423-0.888,2.423-2.459z"/ >
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M49.894,49.233l3.334-4.175c0.264-0.335,0.312-0.6,0.312-0.852c0-0.6-0.444-1.211-1.175-1 .211c-0.66,0-1.188,0.468-1.248,1.235h-1.223c0.012-1.392,1.091-2.459,2.375-2.459c1.427,0,2. 495,1.092,2.495,2.447c0,0.563-0.156,1.055-0.516,1.499
                                                                                    l-2.747,3.443h3.263v1.224h-4.87v-1.151z"/>
                                                                </g>
                                                                <path d="M58.149,41.771c-0.058,0-0.113,0.011-0.17,0.015l0.051,1.219c0.04-0.003,0.078-0.01,0.119 -0.01c0.72,0,1.2,0.479,1.2,1.308v3.623c0,0.828-0.48,1.308-1.2,1.308s-1.2-0.48-1.2-1.308v-3 .623c0-0.78,0.429-1.246,1.081-1.297l-0.051-1.219
                                                                          c-1.191,0.077-2.253,0.944-2.253,2.444v3.767c0,1.572,1. 164,2.459,2.423,2.459s2.423-0.888,2.423-2.459V44.23c0-1.571-1.163-2.459-2.423-2.459z"/>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <path d="M36.083,93.398l-1.211,0.888v-1.295l1.211-0.888h1.224v8.541h-1.224v-7.246z"/>
                                                                </g>
                                                                <path d="M42.396,92.031c-1.26,0-2.423,0.888-2.423,2.459v3.767c0,1.571,1.164,2.459,2.423,2.459c1 .259,0,2.423-0.888,2.423-2.459v-0.355l-1.224-0.506v0.79c0,0.828-0.479,1.307-1.199,1.307s-1 .2-0.479-1.2-1.307v-3.623c0-0.828,0.48-1.307,1.2-1.307
                                                                          s1.199,0.479,1.199,1.307v2.833l1.224,0.506V94.49c0-1.5 71-1.164-2.459-2.423-2.459z"/>
                                                      </g>
                                                      <g>
                                                                <path d="M52.161,115.387h4.546v1.224h-3.395v1.931c0.408-0.324,0.84-0.468,1.368-0.468c0.647,0,1. 211,0.288,1.523,0.624c0.468,0.504,0.671,0.924,0.671,2.339c0,1.14-0.156,1.583-0.527,2.051C5 6,123.532,55.352,124,54.5,124c-1.104,0-2.315-0.624-2.495-2.219
                                                                          h1.224c0.132,0.612,0.54,0.996,1.224,0.996c1.199,0,1.19 9-1.032,1.199-1.835c0-0.947-0.228-1.643-1.235-1.643c-0.468,0-0.815,0.192-1.104,0.708h-1.15 1v-4.618z"/>
                                                      </g>
                                                      <g>
                                                                <g>
                                                                          <g>
                                                                                    <path d="M35.09,65.247l-1.211,0.888v-1.295l1.211-0.888h1.224v8.541H35.09v-7.246z"/>
                                                                          </g>
                                                                </g>
                                                                <g>
                                                                          <path d="M38.224,64.075h4.546v1.224h-3.395v1.931c0.408-0.324,0.84-0.468,1.368-0.468c0.647,0,1.2 11,0.288,1.523,0.624c0.468,0.504,0.671,0.924,0.671,2.339c0,1.14-0.156,1.583-0.527,2.051c-0 .348,0.444-0.996,0.912-1.848,0.912
                                                                                    c-1.104,0-2.315-0.624-2.495-2.219h1.224c0.132,0.6 12,0.54,0.996,1.224,0.996c1.199,0,1.199-1.032,1.199-1.835c0-0.947-0.228-1.643-1.235-1.643c -0.468,0-0.815,0.192-1.104,0.708h-1.151v-4.618z"/>
                                                                </g>
                                                      </g>
                                            </g>
                                  </g>
                        </g>
              </g>
              <g id="Inner_x0020_Dial" style="&st44;">
                        <g style="&st45;">
                                  <g>
                                            <path d="M131.76,67.067l-24.167,7.025c0.781,2.692,1.174,5.545,1.112,8.496c-0.062,2.95-0.575,5.7 85-1.47,8.441l24.427,8.234c1.534-4.782,2.421-9.859,2.533-15.136c0.125-5.948-0.745-11.682-2 .434-17.06z"/>
                                  </g>
                                  <g>
                                            <path d="M131.76,67.067c0,0-21.543,7.424-22.179,7.911c-0.635,0.487,0.023,4.802-0.039,7.752c-0.0 63,2.95-1.294,7.976-0.307,8.622c0.987,0.646,22.426,7.91,22.426,7.91c1.534-4.782,2.421-9.85 9,2.533-15.136c0.125-5.948-0.745-11.682-2.434-17.06z"/>
                                  </g>
                                  <g>
                                            <g>
                                                      <path style="&st4;" d="M131.3,70.935c-1.617-0.409-17.727,4.503-18.363,4.99s-1.208,3.9-1.27,6.851c-0.063,2.95- 1.536,7.596-0.549,8.242c0.987,0.646,17.995,6.507,19.25,6.284c1.255-0.224,2.413-7.675,2.524 -12.952c0.126-5.947,0.025-13.004-1.592-13.414z"/>
                                            </g>
                                            <g>
                                                      <path style="&st7;" d="M130.752,72.37c-1.617-0.409-15.996,3.735-16.632,4.222c-0.635,0.487-1.59,3.41-1.653,6.3 6c-0.062,2.95-0.901,7.163,0.085,7.809s16.013,5.626,17.268,5.403c1.255-0.224,2.452-6.999,2. 553-11.755c0.113-5.33-0.004-11.63-1.622-12.039z"/>
                                                      <path style="&st8;" d="M130.204,73.806c-1.617-0.409-14.265,2.968-14.9,3.455c-0.636,0.487-1.973,2.92-2.036,5.8 7s-0.267,6.729,0.72,7.375s14.03,4.745,15.286,4.521s2.492-6.323,2.581-10.557c0.1-4.712-0.03 3-10.255-1.65-10.664z"/>
                                                      <path style="&st13;" d="M129.655,75.241c-1.617-0.41-12.534,2.2-13.169,2.687c-0.635,0.487-2.356,2.43-2.418,5.38 c-0.063,2.95,0.367,6.296,1.354,6.942c0.987,0.646,12.048,3.863,13.303,3.64c1.255-0.224,2.53 1-5.647,2.61-9.359
                                                                c0.086-4.095-0.063-8.88-1.68-9.289z"/>
                                                      <path style="&st14;" d="M129.107,76.677c-1.617-0.41-10.803,1.433-11.438,1.92c-0.636,0.487-2.739,1.939-2.801,4. 889c-0.063,2.95,1.001,5.863,1.988,6.509c0.986,0.646,10.066,2.982,11.321,2.758s2.57-4.972,2 .638-8.162c0.073-3.478-0.092-7.505-1.708-7.914z"/>
                                                      <path style="&st17;" d="M128.559,78.112c-1.617-0.409-9.071,0.666-9.707,1.153c-0.635,0.487-3.121,1.449-3.184,4. 399c-0.062,2.95,1.636,5.429,2.623,6.076c0.987,0.646,8.084,2.1,9.339,1.876c1.255-0.224,2.61 -4.296,2.666-6.964
                                                                c0.061-2.86-0.121-6.13-1.737-6.54z"/>
                                                      <path style="&st19;" d="M128.01,79.547c-1.617-0.409-7.34-0.102-7.976,0.385c-0.635,0.487-3.503,0.958-3.566,3.90 9s2.271,4.996,3.257,5.643c0.987,0.646,6.102,1.218,7.357,0.995c1.255-0.224,2.649-3.62,2.694 -5.767c0.047-2.243-0.15-4.755-1.767-5.165z"/>
                                            </g>
                                            <g>
                                                      <path style="&st20;" d="M127.461,80.983c-1.617-0.409-5.609-0.869-6.244-0.382c-0.636,0.487-3.887,0.468-3.949,3. 418c-0.063,2.95,2.905,4.563,3.892,5.209c0.986,0.646,4.119,0.337,5.375,0.114s2.688-2.944,2. 723-4.569s-0.179-3.38-1.796-3.79z"/>
                                            </g>
                                  </g>
                        </g>
              </g>
              <g id="Inner_x0020_Dial_x0020_Numbers" style="&st15;">
                        <g style="&st45;">
                                  <g>
                                            <g>
                                                      <path d="M131.335,75.126l-7.305,1.061l0.162,1.114l7.305-1.061l-0.162-1.114z"/>
                                                      <path d="M131.523,89.609l-7.287-1.032l-0.158,1.114l7.287,1.032l0.158-1.114z"/>
                                            </g>
                                            <g style="&st9;">
                                                      <path d="M129.95,68.883l-4.506,1.247l0.3,1.084l4.506-1.247l-0.3-1.084z"/>
                                                      <path d="M125.102,97

  • [svn] 4394: Adding last changes and comments on behalf of Kaushal for his radial and linear gradient transform calculations .

    Revision: 4394
    Author: [email protected]
    Date: 2009-01-05 13:13:51 -0800 (Mon, 05 Jan 2009)
    Log Message:
    Adding last changes and comments on behalf of Kaushal for his radial and linear gradient transform calculations.
    QE: Not yet.
    Doc: No
    Checkintests: Pass
    Modified Paths:
    flex/sdk/trunk/modules/fxgutils/src/java/flash/fxg/swf/AbstractFXGGraphics.java
    flex/sdk/trunk/modules/fxgutils/src/java/flash/fxg/swf/TypeHelper.java

    After posting I and lots of research I realized that I need to dive into
    PaperVision 3D as way to get where I need to go.
    However, if anyone has a solution to adding text to this code which rotates with the cube - let me know.
    Thanks

  • Help on css files for multiple platforms from media queries.

    I am trying to make a new site friendly to bith the tablet and smart phone users.  My media queries program requires me to attach new css files for each new platform.  When I design these new css files do I simply go to the box and limit the width?  Is there something else I need to do?

    If you're using the Media Queries panel in Dreamweaver, then yes. You just specify the .css file, and enter in the min and/or max width for each range of screen sizes.
    It will insert code that looks something like:
    <link href="tablet.css" rel="stylesheet" type="text/css" media="only screen and (min-width:481px)">

  • Trouble with Linear Gradients

    I am trying to use a horizontal linear gradient and when I
    preview my image in a browser, there are vertical bars or "slices"
    shown instead of a smooth gradient. Has anyone seen this or does
    anyone know how to remedy it?
    rory

    neillbaker wrote:
    > Thanks for the link nice looking site way,but to be fair
    i had nose and didn't
    > see anything helpful reguards getting rid of those lines
    on a aimating gif with
    > a gradient back ground ,looks fine in fireworks but as
    soon as i browse it bang
    > them bloody lines,
    > i have tryed blur more blur dittering all sorts, please
    there must be a way
    > many thanks
    The problem is with the GIF format. It isn't capable of
    displaying
    smooth gradients. Have you tried exporting the animation in
    SWF format?
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • -webkit-linear-gradient not working with Adobe Air 3.0

    Hi -
    I recently downloaded Adobe Air 3.0 after reading that gradients are now supported (http://www.adobe.com/devnet/air/ajax/articles/air_and_webkit.html), but I have not been able to successfully implement them. For example, I have the following CSS class defined:
    .gradient_test {
         background-image: -webkit-linear-gradient(#68AB34, #3D721B);
         padding: 5px;
         color: #FFF;
    This should (and does in Chrome, Safari, etc) create a linear gradient going from light to dark green. But in Air it just appears as if no background has been applied to the selector. Am I missing some unique way to be able to apply gradients in Adobe Air 3.0?
    Thanks,
    Zach

    I don't know why this hasn't been addressed. I'm seeing the exact same problem. I've tried every permutation, but haven't been able to generate a gradient using any existing standard for webkit or otherwise (even though it's allegedly supported).
    -Matthew
    EDIT: I discovered that when the app is compiled, the gradients work fine. This one is driving my crazy, because I want to be able to test them. I get a mix of CSS support, depending on how the app is run.
    From Dreamweaver CS3 "Preview" - My CSS doesn't show gradients and shows embedded web fonts.
    From ADL - My CSS fails almost entirely, but some if it gets loaded.
    From the compiled AIR file: fortunately, everything seems to display correctly, but it's really a bad scenario for development / testing. Not sure what to do.

  • Userchrome.css help

    Hi, I have written this code:
    #titlebar-content
    margin-top: -3px !important;
    .tabbrowser-tab
    .tab-close-button
    visibility: collapse !important;
    .tabbrowser-tab:not([pinned]):hover
    .tab-close-button
    visibility: visible !important;
    margin-right: 3px !important;
    display: -moz-box !important;
    .tabbrowser-tab:not([pinned])
    .tab-text
    -moz-box-ordinal-group: 4 !important;
    .tabbrowser-tab:not([pinned])
    .tab-throbber,
    .tabbrowser-tab:not([pinned])
    .tab-icon-image,
    .tabbrowser-tab:not([pinned])
    .tab-close-button
    margin-left: 2px !important;
    .tabbrowser-tab:not([pinned]):hover
    .tab-icon-image,
    .tabbrowser-tab:not([pinned]):hover
    .tab-throbber
    display: none !important;
    #urlbar-container
    min-width: 300px !important;
    max-width: 300px !important;
    #urlbar
    border-style: none !important;
    #star-button
    display: none !important;
    #identity-box
    display: none;
    #navigator-toolbox::after
    height: 0px !important;
    #appmenu-button
    background-color: transparent !important;
    background-image:
    -moz-linear-gradient(hsla(0, 0%, 80%, .4), hsla(0, 0%, 20%, .2)),
    /*URL data has been broken into separate lines. Put back together before using !! */
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAASCAYAAAC5DOVpAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAA
    AAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41Ljg3O4BdAAAElElEQVQ4T32UeVAVVBSHX8N7gCzvP
    R4QCohoLBrjVrhQYiJqyObCJpugKCCiEomMiaMopo1EuSEIuYAYWigUKLhkxiYDIvDYHqAIKabIIiIikl9P/3DGybozZ87MvXO/Ob/fvecIBO9Y0hm
    bzcevTNoTeLL0xu7fm/uPlLeT2dzV872iq8j+u6tbjDxSRr3r3pu958ftNEQWKzQlH69LnBKSMRwr7ya/72/kgy+pV0atMsqfveTgrS7WHD474BJzP
    CYx0EfjX9CB+I9cb26y3qFm7nfT1GEvLvE32H/iFH/kpVH05AWl/cOvc37vEEl3+/HMlJORl0zaoS97c90sfd8CPvDR/bnFTUKC5zRORniQEeDCNX
    dTkutaye4eoqBvmJyeIXYpugkv6cAxuZrYlEzaKkPI3etJTdz0iDfA+qXaRX+G6tLko0Ojrw4Vi2UUBExkn7yJlHs9nOh5wZFHQ8S19RN8/SFelx8w
    a+NJelpDeVzuSUnq/IHnDUv0BL27jEw7wnSeNbqoU+ukRY2rGLmXjDJnCU1LtbgT9gFhv5YR1fCEtdWP8S/tYV5aM5O2/UZqYhD9VYsYqHNlsO
    pzd0HvduOvW9w0qXPQoGqBJpULxdR46dESNYXanH2s3pPBoqw23PM7mX+skRnfVmC1o5gx3odZHxnM06I5vGhx4fH5qZsF3dtNChteVeSgRZ
    WTEuShlLt2HPfjbfDb+QM2RxTYHrvF9PhyPozMwWRZEkYeiejbbaXqQih9+Z8xJF/A9UirVsH9dYZlciWoWgl6JS9rqiapJqpYL96KVUQWltuKmR
    BbgkXMNUYvT8Ng4Tfo2+9EOmMjXRXODBZPY7B8GgdWWD8T3FqiU1tpr6zKVcoNdxlnzIVc/VQNr9VbMArJYXRYLlbhp5m8/jRGQT8hs41BOj
    MayaRg+krteXpxAr2/jOXaQUuFoMpmxKGimUqvXHSo8dalzFYFhYsQxVpDzqyzIzPcjpbosdw5YMuyDXFoT49mhNUaokLm0p9jRv85EzqTdJW
    2aCUKCs1VnPLM1SicrU31Mj2a/CS0+Yzg0mwNCuylFC6SsX+eJWafRKA+ay/C8eGoGHtTkTCW3rSRdB6U0rZZjduR2jMFV0xVRGcNRW2njFU
    pmi+lxk+fppD3uRVmwNY5Exlj4YXAMgqBSQACfWeMzZ1Y5TybrqMmPNonpv0rNbJdTVBs8jZ7/XGzDYV+KVIhaaPVuO4oo9pXn8bgkTSHj6JklQ
    lfzLXGf7IR2+31kYdr8tcOCXdjpbTHiMnz0+Pi7rnVwx3J773pggyZMD1BQ4V0U3WK50moVD6G3F+fhpV6NAbJUASJqV8upiFQm9ZwDe7tMaBjlx
    a9x3U6np/Tm/BWf6ZLVESpElHKAbEKR0cKuWKjReViKbXeUhr8JSgCtGkK1KI1VIv2CLHSI02lRHF+Z4L2f4+jHw1EHukGwnsnDIRkW6hSbKtOla
    MaDW6q1Hspc6Aquf6G5LiaXSp3nCT537n26jB3nFDzvIVofYGV6MLlyaLKEhvRw5sOqlfrfDWymjeI425HS2a9C/IPcDqo7+BRMssAAAAASUVORK
    5CYII="),
    -moz-linear-gradient(rgb(247, 182, 82), rgb(215, 98, 10)),
    -moz-linear-gradient(rgb(153, 38, 211), rgb(105, 19, 163)) !important;
    background-position: -100px 0px, 2px center, 0px 0px, -100px 0px !important;
    background-repeat: no-repeat !important;
    margin-top: 3px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    border: none !important;
    #main-window[privatebrowsingmode=temporary] #appmenu-button:not(:-moz-window-inactive)
    background-position: -100px 0px, 2px center, -100px 0px, 0px 0px !important;
    #appmenu-button:-moz-window-inactive
    background-position: 0px 0px, 2px center, -100px 0px, -100px 0px !important;
    #appmenu-button
    .button-text
    display: none !important;
    .tabbrowser-tab,
    .tabs-newtab-button
    padding: 0px 0px 4px 0px !important;
    .tabbrowser-tab[pinned],
    .tabs-newtab-button
    max-width: 22px !important;
    min-width: 22px !important;
    #TabsToolbar
    margin-bottom: -2px !important;
    and when there aren't that many tabs, it looks fine.
    http://i.imgur.com/vXjLcDo.png
    However, when tab overflow occurs, app tabs don't look quite right.
    http://i.imgur.com/8XLuWka.png
    Is there a way to fix this?
    Also, when are the svg versions of the firefox logo coming out? The status has been "will be released soon" for over a year now.

    That is caused by this rule and it is better to leave pinned tabs as they are and remove this rule.
    <pre><nowiki>.tabbrowser-tab[pinned],
    .tabs-newtab-button {
    max-width: 22px !important;
    min-width: 22px !important;
    }</nowiki></pre>

  • Where can I find detailed, systematic HELP for advanced topics relating to Thunderbird?

    In moving from XP to Windows 7, I opted for Thunderbird as email client in order to bypass Microsoft's hyper-intrusive Windows Live Mail (I used Outlook Express for years).
    I have a very complicated email structure, and it's taken me weeks (seriously) to learn how to replicate it in TBird. Now I'm trying to customize TBird further, but none of the TBird articles/forum Q&A's/Google searches address my questions.
    There is no live tech support for TBird, and I'm just about ready to leave it for good. However -- one last effort: where can I find detailed, systematic HELP for advanced topics relating to Thunderbird?
    Thanks.

    I am no expert, but I don't know of any authoritative reference as to what elements of HTML and CSS are supported in Thunderbird. However, as I believe you appreciate, it's more than just what Thunderbird supports, but one must also think about what is likely to work in other email clients. Keep it simple. Avoid ancient deprecated tags that other email clients may not support, and for similar reasons, avoid cutting edge technology. Remember that recipients using tablets or smartphones won't appreciate large fancy email documents.
    The only thing ''guaranteed'' to work in email is plain text. ;-)
    If you haven't already discovered it, the Stationery add-on is designed specifically to support OE stationery in Thunderbird. Your existing stationery may "just work" in this add-on. It makes switching between various stationery templates much easier, but I'm not confident that it will affect interpretation of your CSS or HTML coding.
    Your code is at least clean and minimal. Most times my involvement with troublesome templates and signatures centres on the horrible bloat and mso custom code generated by Word or Outlook.
    Having said that, you and I are mortal enemies, as I don't have much patience with what you aspire to achieve. I specifically don't like background images, nor being obliged to suffer other folks' bizarre choice of typefaces and colours (but your simple 12pt black Tahoma is quite inoffensive. ;-) ) I'm of an age where my tolerance and eyesight are easily offended.
    Nonetheless, I'm intrigued by how to parse the tag for the background image, as it doesn't look like a legitimate pathname to a graphics file. Does the background image actually appear as required?

  • Separate CSS files for Differenct Applications in the Same Workspace

    I am working in APEX 4.0, using Theme 4 (Topaz), primarily with the region template "Top Bar." The application I am working on has gotten so large that I decided to break it into two applications. So I copied the original application and then deleted the pages that I did not want in the second application. I then modified the authentication for a single login. One of the nice things about the Top Bar template is that you can color the background. I had a blue background in the first application and wanted to use a differenct color in the other. So I created a second CSS file and uploaded it to the Cascading Style Sheets area of the Shared Components file for the second application. Turns out that both it and the style sheet for the first application now show up in the CSS file area. The CSS file for the second application has no effect. Here is the CSS code:
    .rc-content-main
          background-color: #E5E5AA;
         }I also tried giving the region on each page in the second application a static id and then identifying them in the CSS file by the id. That didn't work either, at least not yet. Sometimes it takes the server a while to refresh.
    Question: For two applications in the same workspace, can there be separate CSS files? If so, how do I set them up so that each responds only to one of the applications?
    Edited by: Doug on Nov 14, 2012 4:54 AM
    Edited by: Doug on Nov 14, 2012 7:16 AM

    Hello,
    If you upload your file to Shared Components >> Cascading Style Sheetst then:
    edit your page template in the header section and just before +*</head>*+ tag  add :
    <link rel="stylesheet" src="#WORKSPACE_IMAGES#MY_FILE.css" type="text/css" />And that will be applied for all pages that have the same Page Template.
    You can edit a page and put this in the header section to be applied only for a that page:
    <style>
    <link rel="stylesheet" src="#WORKSPACE_IMAGES#MY_FILE.css" type="text/css" />
    <style>If the file is on your web server then replace #WORKSPACE_IMAGES# with #IMAGE_PREFIX#
    This should be helpful to you:
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/concept_sub.htm
    Best Regards,
    Fateh
    If you believe that my answer is correct or helpful to you, then please mark it as helpful or correct...

  • How do I apply a linear gradient to an S shape?

    Hi
    I recently created an S shape with the pen tool that is quite large in my photoshop cs4.  I would like to know if there is a way for me to apply a linear gradient so that it follows the path of the S shape perfectly.
    The effect should cause one of the sides of the letter S to actually fade into black (the gradient is a transparent to black gradient colors).
    Is this even possible with my Photoshop cs4?
    Ricky

    Hi,
    Thanks for the response. I have found a way to accomplish exactly what I want.
    I use a stroke, set it to 'inner' style to the bottom most option, play with side and choose gradient
    I played aorund with these settings on here and got it working perfectly.
    Ricky

  • Creating from scratch, a css layout for my website

    I am building a website from scratch and I would like to use CSS.  I am conceptualizing the design, however, I am struggling with designing it and working with the div tags.  I would like to have two sidebars, one on each side, and for them to be tri-colored, which means I have to create three small boxes and align them closely together, each a different color (the colors are part of the theme to my website). Of course the links on the sidebars would be white, and then change colors when hovered over or clicked on.  I would like to have a header and a footer, with the header containing my logo and if and only if I can get real fancy; a scrolling message.  My footer would contain additional links such as 'additional links', and 'contact us' and all the necessary copywrite info.  Please let me know, if first, my conception of this layout makes sense, and if so, what tutorial you could recommend for me to view that would assist in my web site development.
    Thank you, all you great tech minds out there!

    I'm with Murray.  I don't think you should concern yourself with HTML5 and CSS3 yet. 
    Stick with XHTML and CSS2.  When I was learning to work with CSS positioning, it was immensely helpful to use a pre-built layout.   And I learned a great deal from looking at source code.
    Look at the DW Starter pages described below:
         Dreamweaver CSS Templates for beginners
         http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html
         New DW Starter Pages --
         http://www.adobe.com/devnet/dreamweaver/articles/introducing_new_css_layouts.html
    If you have some money to spend, Project Seven has some excellent CSS Templates.  If you plan to do more projects, CSS Layout Magic is a nice extension for prototyping inside DW.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

Maybe you are looking for

  • ITunes and Apple IDs: Multiple family users

    Hello everyone, As many people do we started off our use of iTunes in a modest way: one couple, one computer, one ipod. Then the iTunes store came along and we continued with that setup. Then things gradually became more complicated to the point wher

  • How to setup mail template in CPS ?

    Dear Expert, Now we're using with Redwood CPS version M33.19-48733 with alert function license. We can setup mail alert in our CPS. When any job schedule was failed or cancel. It will send automatic mail alert to us. But it send with normal informati

  • I cannot get my serial number. help!

    I have typed in my redemption code and did not receive a serial number. how can i look it up? i would like to start using my Adobe Photoshop immediately. thank you

  • Piccture Package where are you PSE12

    I've been trying to use Picture Package as I have done on earlier PSE's.  It doesn't function AT ALL.  what's going on Adobe? Give Me Patience

  • FLOW n Activity

    Hi, guys i have come across a problem of which i am not able to find solution since last two days, since i a new to xslt and BPEL as well, i am not able to come up with a solution for it. Hope the eldies here could lend a helping hand. So here's the