CSS and SSI

I am developing a web site using only CSS. It has looked fine
until I tried to add a Server Side Include for the navigation bar.
After inserting the SSI, it seems to work in the Dreamweaver Design
Window. However, when I preview in the browser, the Include is not
included. Any ideas about how this works, or if it works?

Did you name the parent file with an *.shtm(l) extension, or
some
server-script extension (*.asp, *.php, etc.) that is
supported by the host?
Example -
Parent file - index.shtml -
<html>
<head>
<title>The parent file</title>
</head>
<body>
<!--#include file="whatever.monkeybutt" -->
</body>
</html>
Include file - whatever.monkeybutt
<p>Yoo hoo</p>
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"waynerasku" <[email protected]> wrote in
message
news:f058pe$ndb$[email protected]..
>I am developing a web site using only CSS. It has looked
fine until I tried
>to
> add a Server Side Include for the navigation bar. After
inserting the SSI,
> it
> seems to work in the Dreamweaver Design Window. However,
when I preview in
> the
> browser, the Include is not included. Any ideas about
how this works, or
> if it
> works?
>

Similar Messages

  • I need help with CSS and floating

    Okay, I know I need to get up on CSS and get rid of tables in
    my sites.
    However, I'm running up against a problem, and after banging
    my head
    against it for a while, I realize I need help. I've stripped
    this down
    so as to only show the area where I'm having difficulty.
    What I want is a page that has everything down the center,
    taking up no
    more than 750 pixels and no more than 550 pixels of width. No
    problem there.
    After the header and the top content, I'd like to have two
    "columns",
    each in it's own separately-colored box. I would like the
    right-side
    column/box to be a static size, while the left-side
    column/box sizes
    dynamically.
    Where I'm having problems is that when one column is boxed,
    it's fine,
    but whenever I wrap each column in its own box, the
    fixed-size box
    either jumps below or above the other box (depending on which
    one has
    been floated and which order the div's appear in the code).
    Here are the links:
    CSS:
    http://www.afice.org/stylesheet/floatmestyles.css
    ex 1:
    http://www.afice.org/floatme1.html
    ex 2:
    http://www.afice.org/floatme2.html
    Before sending, I took a look again, just to see if I was
    missing
    anything. I did notice that it doesn't seem to be that the
    box is
    jumping down so much as it is that it's getting written over.
    Anyway, sorry for the long-winded explanation. I hope I've
    managed to
    explain what I'm trying to do well enough that someone can
    tell me where
    I'm going wrong.
    Thanks,
    --Kevin

    Do you want something like this:
    http://www.pmob.co.uk/temp/spointfooter.htm
    You will need to look at the code to see how it was done.
    Otherwise, there are different examples here on Pauls' site:
    http://www.pmob.co.uk/temp/3colfixedtest_4.htm
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "Kevin D-R" <[email protected]> wrote in
    message
    news:[email protected]...
    > Okay, I know I need to get up on CSS and get rid of
    tables in my sites.
    > However, I'm running up against a problem, and after
    banging my head
    > against it for a while, I realize I need help. I've
    stripped this down so
    > as to only show the area where I'm having difficulty.
    >
    > What I want is a page that has everything down the
    center, taking up no
    > more than 750 pixels and no more than 550 pixels of
    width. No problem
    > there.
    >
    > After the header and the top content, I'd like to have
    two "columns", each
    > in it's own separately-colored box. I would like the
    right-side column/box
    > to be a static size, while the left-side column/box
    sizes dynamically.
    >
    > Where I'm having problems is that when one column is
    boxed, it's fine, but
    > whenever I wrap each column in its own box, the
    fixed-size box either
    > jumps below or above the other box (depending on which
    one has been
    > floated and which order the div's appear in the code).
    >
    > Here are the links:
    >
    > CSS:
    http://www.afice.org/stylesheet/floatmestyles.css
    >
    > ex 1:
    http://www.afice.org/floatme1.html
    >
    > ex 2:
    http://www.afice.org/floatme2.html
    >
    > Before sending, I took a look again, just to see if I
    was missing
    > anything. I did notice that it doesn't seem to be that
    the box is jumping
    > down so much as it is that it's getting written over.
    >
    > Anyway, sorry for the long-winded explanation. I hope
    I've managed to
    > explain what I'm trying to do well enough that someone
    can tell me where
    > I'm going wrong.
    >
    > Thanks,
    >
    > --Kevin

  • How to use CSS and images in a plsql-dbms_output reports?

    Hi.
    Windows 2000 SP4
    SQL Developer 1.2.1.32.13
    Java 1.5.0_07
    Oracle 9.2.0.6
    I'm trying to create a plsql-dbms_output report with HTML that uses a stylesheet (CSS) and an image. These seem to be ignored by the report viewer.
    The following example works fine in Internet Explorer 6 but the stylesheet is ignored by the viewer and the viewer does not show the images (shows broken images instead). I've tried with various image types (PNG, GIF and JPEG).
    <!--
    begin
    dbms_output.put_line('<head><link rel="stylesheet" type="text/css" href="file://c:/temp/core.css"/></head><body>');
    dbms_output.put_line('<H1>This is Level-1 Heading</H1>');
    dbms_output.put_line('<H2>This is a Level-2 Heading</H2>');
    dbms_output.put_line('<p>This is regular paragraph text.</p>');
    dbms_output.put_line('<img src="file://c:/temp/fig01.png"><br>');
    dbms_output.put_line('<img src="file://c:/temp/fig01.gif"><br>');
    dbms_output.put_line('<img src="file://c:/temp/fig01.jpg"><br>');
    dbms_output.put_line('</body>');
    end;
    -->
    Is the HTML viewer limited to not support stylesheets and images?
    Thanks in advance.
    Cheers
    Finn Ellebaek Nielsen

    It also seems that links don't work. The mouse cursor changes to a hand when hovering over links and the links are shown in blue and underlined but nothing happens when clicking on them.
    Example:
    <!--
    <html>
    <head><link rel="stylesheet" type="text/css" href="file://c:/temp/core.css"/></head><body>
    <p>First heading</p>
    <p>Second heading</p>
    <H1 id="x1">This is Level-1 Heading</H1>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    a<br>
    <H2 id="x2">This is a Level-2 Heading</H2>
    <p>This is regular paragraph text.</p>
    <img src="file://c:/temp/fig01.png"><br>
    <img src="file://c:/temp/fig01.gif"><br>
    <img src="file://c:/temp/fig01.jpg"><br>
    <p>First heading</p>
    <p>Second heading</p>
    <p>Other document</p>
    </body>
    </html>
    -->

  • CSS and Spry not displaying

    Hi, I have recently created a website using Dreamweaver. I don't know much coding at all so I did it using the design view. It is a very basic site. Just one page, styled with CSS and with Spry Tabbed Panels to reveal 4 different 'pages'
    I have uploaded my website folder to the server via ftp but none of the CSS, images or spry are displaying.
    I uploaded one folder which contained 2 subfolders and one html file
    -SubFolder 1: Spry Assets
    -SubFolder 2: Images
    -index.html (with internal .css)
    I can see that the folders have been uploaded but for some reason they are not being read. I would really appreciate some help as my web host says they can't help me. I can send you the html file or whatever you need if you would like to take a look. It really is a very simple website so i'm sure it wouldn't take one of you geniuses very long to figure it out!
    Cheers

    Thanks for your quick responses guys! Hopefully I can reach a solution with this.
    In answer to your questions:
    - Yes, I defined a local site folder in Dreamweaver. That is the folder I uploaded via ftp.
    -Am I working with valid code? I don't know. I have not touched any of the code. I used 'design view' in Dreamweaver. Previewed in Firefox, Safari and IE and it works with no problems.
    Below is the code for index.html and below that is the css code for spry tabbed panels.
    index.html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>DMH Window Cleaning</title>
    <style type="text/css">
    .main {
        background-color: #0e414f;
        height: 480px;
        width: 960px;
        margin-right: auto;
        margin-left: auto;
        margin-top: 50px;
    .right {
        background-color: #FFF;
        float: left;
        height: 440px;
        width: 460px;
        border-right-width: 20px;
        border-right-style: solid;
        border-right-color: #0e414f;
        margin-top: 20px;
    .logo {
        float: left;
        border-right-width: 20px;
        border-left-width: 20px;
        border-right-style: solid;
        border-left-style: solid;
        border-right-color: #0e414f;
        border-left-color: #0e414f;
        margin-top: 20px;
    </style>
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="main"><img src="images/DMHLogo.png" width="440" height="440" class="logo" />
      <div class="right">
        <div id="TabbedPanels1" class="TabbedPanels">
          <ul class="TabbedPanelsTabGroup">
            <li class="TabbedPanelsTab" tabindex="0">HOME</li>
            <li class="TabbedPanelsTab" tabindex="0">SERVICES</li>
            <li class="TabbedPanelsTab" tabindex="0">ABOUT</li>
            <li class="TabbedPanelsTab" tabindex="0">CONTACT</li>
          </ul>
          <div class="TabbedPanelsContentGroup">
            <div class="TabbedPanelsContent">
              <h1>DMH Window Cleaning is your local window cleaning service for Ipswich, Martlesham and Kesgrave. </h1>
              <p> </p>
              <p>DMH offers an interior and exterior window cleaning service for domestic and commercial properties. </p>
              <p>We have been providing a professional, reliable and regular window cleaning service to hundreds of happy customers for the past 16 years. </p>
              <p>            Just use the links above find out more, alternatively <br />
              send us an email or request a free quote</p>
              <h2> </h2>
    </div>
            <div class="TabbedPanelsContent">
              <h1>We offer a range of services to domestic and commercial properties</h1>
              <p>Services: </p>
              <ul>
                <li>  Window Cleaning Interior and Exterior</li>
                <li>  Guttering</li>
                <li> UPVC Cleaning</li>
                <li> Conservatories          </li>
                <li>Domestic Properties </li>
                <li> All sills included free</li>
              </ul>
    <p> </p>
    <p><span class="servicesHeading"><strong>Domestic Properties<br />
      </strong></span> 
      - Services offered on a once a month basis          </p>
    <p><span class="servicesHeading"><strong>Commercial Properties<br />
    </strong>          </span>         
              - Services offered on a weekly, two weekly or monthly basis.</p>
            </div>
            <div class="TabbedPanelsContent">
              <h1>We have been providing a professional and reliable window cleaning service for the past 16 years</h1>
              <p class="quoteboxes">&quot;DMH has been our window cleaner for many years and<br />
    I would have no hesitation in recommending him. David<br />
    is quick, reliable and does a great job!&quot;<br />
    <strong class="QuoteName">Ruth Carley, General Manager, Punch and Judy, Ipswich</strong></p>
              <p class="quoteboxes">&quot;David works to a high standard and is professional, he<br />
    cleans the inside and outside of Jamie Cann House. David <br />
    is punctual and reliable&quot;<br />
              <strong class="QuoteName">Teresa Page, Jamie Cann House, Ipswich</strong></p>
    </div>
            <div class="TabbedPanelsContent">
              <h1>Request a free, no obligation quote<br />
              </h1>
    <p>If you would like to request a no obligation quote then please do so by email or phone. </p>
              <p>email: [email protected]<br />
                phone: xxx</p>
              <p><strong>Payment</strong></p>
              <p>Please make cheques made payable to:<br />
                'DMH Window Cleaning'</p>
              <p>and post to:<br />
                6 Bramley Hill<br />
                Ipswich<br />
                IPX XXX</p>
              <p>We also accept cash in person. Details will be posted through your door once the job has been completed.</p>
            </div>
          </div>
        </div>
      </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    </body>
    </html>
    Then I also have a separate 'Spry Assets' folder which has 2 files in it.
    1. SpryTabbedPanels.js
    2. SpryTabbedPanels.css
    the css code for tabbed panels is:
    @charset "UTF-8";
    /* SpryTabbedPanels.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* Horizontal Tabbed Panels
    * The default style for a TabbedPanels widget places all tab buttons
    * (left aligned) above the content panel.
    /* This is the selector for the main TabbedPanels container. For our
    * default style, this container does not contribute anything visually,
    * but it is floated left to make sure that any floating or clearing done
    * with any of its child elements are contained completely within the
    * TabbedPanels container, to minimize any impact or undesireable
    * interaction with other floated elements on the page that may be used
    * for layout.
    * If you want to constrain the width of the TabbedPanels widget, set a
    * width on the TabbedPanels container. By default, the TabbedPanels widget
    * expands horizontally to fill up available space.
    * The name of the class ("TabbedPanels") used in this selector is not
    * necessary to make the widget function. You can use any class name you
    * want to style the TabbedPanels container.
    .TabbedPanels {
        overflow: hidden;
        margin: 0px;
        padding: 0px;
        clear: none;
        width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
        background-color: #0e414f;
    /* This is the selector for the TabGroup. The TabGroup container houses
    * all of the tab buttons for each tabbed panel in the widget. This container
    * does not contribute anything visually to the look of the widget for our
    * default style.
    * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
    * necessary to make the widget function. You can use any class name you
    * want to style the TabGroup container.
    .TabbedPanelsTabGroup {
        margin: 0px;
        padding: 0px;
    /* This is the selector for the TabbedPanelsTab. This container houses
    * the title for the panel. This is also the tab "button" that the user clicks
    * on to activate the corresponding content panel so that it appears on top
    * of the other tabbed panels contained in the widget.
    * For our default style, each tab is positioned relatively 1 pixel down from
    * where it wold normally render. This allows each tab to overlap the content
    * panel that renders below it. Each tab is rendered with a 1 pixel bottom
    * border that has a color that matches the top border of the current content
    * panel. This gives the appearance that the tab is being drawn behind the
    * content panel.
    * The name of the class ("TabbedPanelsTab") used in this selector is not
    * necessary to make the widget function. You can use any class name you want
    * to style this tab container.
    .TabbedPanelsTab {
        position: relative;
        top: 1px;
        float: left;
        background-color: #d7df25;
        list-style: none;
        -moz-user-select: none;
        -khtml-user-select: none;
        cursor: pointer;
        text-align: center;
        width: 115px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-family: sans-serif;
        font-size: 12px;
        font-weight: bold;
        color: #0e414f;
    /* This selector is an example of how to change the appearnce of a tab button
    * container as the mouse enters it. The class "TabbedPanelsTabHover" is
    * programatically added and removed from the tab element as the mouse enters
    * and exits the container.
    .TabbedPanelsTabHover {
        background-color: #d7df25;
        font-size: 12px;
    /* This selector is an example of how to change the appearance of a tab button
    * container after the user has clicked on it to activate a content panel.
    * The class "TabbedPanelsTabSelected" is programatically added and removed
    * from the tab element as the user clicks on the tab button containers in
    * the widget.
    * As mentioned above, for our default style, tab buttons are positioned
    * 1 pixel down from where it would normally render. When the tab button is
    * selected, we change its bottom border to match the background color of the
    * content panel so that it looks like the tab is part of the content panel.
    .TabbedPanelsTabSelected {
        background-color: #0e414f;
        color: #d7df25;
        font-size: 12px;
    /* This selector is an example of how to make a link inside of a tab button
    * look like normal text. Users may want to use links inside of a tab button
    * so that when it gets focus, the text *inside* the tab button gets a focus
    * ring around it, instead of the focus ring around the entire tab.
    .TabbedPanelsTab a {
        color: black;
        text-decoration: none;
    /* This is the selector for the ContentGroup. The ContentGroup container houses
    * all of the content panels for each tabbed panel in the widget. For our
    * default style, this container provides the background color and borders that
    * surround the content.
    * The name of the class ("TabbedPanelsContentGroup") used in this selector is
    * not necessary to make the widget function. You can use any class name you
    * want to style the ContentGroup container.
    .TabbedPanelsContentGroup {
        clear: both;
        background-color: #EEE;
    /* This is the selector for the Content panel. The Content panel holds the
    * content for a single tabbed panel. For our default style, this container
    * provides some padding, so that the content is not pushed up against the
    * widget borders.
    * The name of the class ("TabbedPanelsContent") used in this selector is
    * not necessary to make the widget function. You can use any class name you
    * want to style the Content container.
    .TabbedPanelsContent {
        overflow: hidden;
        background-color: #FFF;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-left: 20px;
    .main .right #TabbedPanels1 .TabbedPanelsContentGroup .TabbedPanelsContent.TabbedPanelsContentVisible .quoteboxes strong {
        padding-top: 5px;
    .QuoteName {
        padding-top: 20px;
        line-height: 20px;
    /* This selector is an example of how to change the appearnce of the currently
    * active container panel. The class "TabbedPanelsContentVisible" is
    * programatically added and removed from the content element as the panel
    * is activated/deactivated.
    .TabbedPanelsContentVisible {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif;
    .main .right #TabbedPanels1 .TabbedPanelsContentGroup .TabbedPanelsContent.TabbedPanelsContentVisible h1 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: bold;
    .TabbedPanelsContent h1 {
        color: #0e414f;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 20px;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-bottom-color: #d7df25;
        padding-bottom: 10px;
        border-top-width: 2px;
        border-top-style: solid;
        border-top-color: #d7df25;
        padding-top: 10px;
    li {
        color: #0e414f;
    .servicesHeading {
    .TabbedPanelsContent h2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #0e414f;
    .quoteboxes {
        background-image: url(../images/quotebox2.png);
        height: 105px;
        background-repeat: no-repeat;
        padding-top: 15px;
        padding-right: 10px;
        padding-bottom: 15px;
        padding-left: 10px;
        width: 400px;
    .quoteRight {
        background-image: url(../images/quoteboxright.png);
        background-repeat: no-repeat;
        height: 100px;
    .TabbedPanelsContent P {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #0e414f;
    /* Vertical Tabbed Panels
    * The following rules override some of the default rules above so that the
    * TabbedPanels widget renders with its tab buttons along the left side of
    * the currently active content panel.
    * With the rules defined below, the only change that will have to be made
    * to switch a horizontal tabbed panels widget to a vertical tabbed panels
    * widget, is to use the "VTabbedPanels" class on the top-level widget
    * container element, instead of "TabbedPanels".
    .VTabbedPanels {
        overflow: hidden;
        zoom: 1;
    /* This selector floats the TabGroup so that the tab buttons it contains
    * render to the left of the active content panel. A border is drawn around
    * the group container to make it look like a list container.
    .VTabbedPanels .TabbedPanelsTabGroup {
        float: left;
        width: 10em;
        height: 20em;
        background-color: #EEE;
        position: relative;
        border-top: solid 1px #999;
        border-right: solid 1px #999;
        border-left: solid 1px #CCC;
        border-bottom: solid 1px #CCC;
    /* This selector disables the float property that is placed on each tab button
    * by the default TabbedPanelsTab selector rule above. It also draws a bottom
    * border for the tab. The tab button will get its left and right border from
    * the TabGroup, and its top border from the TabGroup or tab button above it.
    .VTabbedPanels .TabbedPanelsTab {
        float: none;
        margin: 0px;
        border-top: none;
        border-left: none;
        border-right: none;
    /* This selector disables the float property that is placed on each tab button
    * by the default TabbedPanelsTab selector rule above. It also draws a bottom
    * border for the tab. The tab button will get its left and right border from
    * the TabGroup, and its top border from the TabGroup or tab button above it.
    .VTabbedPanels .TabbedPanelsTabSelected {
        background-color: #EEE;
        border-bottom: solid 1px #999;
    /* This selector floats the content panels for the widget so that they
    * render to the right of the tabbed buttons.
    .VTabbedPanels .TabbedPanelsContentGroup {
        clear: none;
        float: left;
        padding: 0px;
        width: 30em;
        height: 20em;
    /* Styles for Printing */
    @media print {
    .TabbedPanels {
        overflow: visible !important;
    .TabbedPanelsContentGroup {
        display: block !important;
        overflow: visible !important;
        height: auto !important;
    .TabbedPanelsContent {
        overflow: visible !important;
        display: block !important;
        clear:both !important;
    .TabbedPanelsTab {
         overflow: visible !important;
         display: block !important;
         clear:both !important;
    h1 {
        font-weight: bold;
    .bottomBox {
        background-color: #0e414f;
        width: 1020px;
        margin-right: auto;
        margin-left: auto;
    .box {
        background-color: #0e414f;
        width: 900px;

  • Using CSS and Javascript to display a div with flash in it, mozilla reloads the flash file!

    I am using CSS and Javascript to display a div with an
    embedded flash object in it. Mozilla Firefox reloads the flash file
    when the div is displayed! (I dont want this to happen, as it's
    unexpected functionality, my expectation would be that the flash
    file would not change it's state at all, and would remain in
    whatever state it was left in.)
    I was wondering if anyone has come across this issue and is
    there something I can do to prevent this from occurring?
    To be more specific, I have a single HTML page with 8 flash
    files embedded in it (yeah I know, it's a bit much). I am then
    using CSS and Javascript to display (via a numbered link (with an
    id)) an equivalent numbered div tag containing the flash file.
    Mozilla Firefox reloads the flash object that is in the div.
    Internet Explorer will not do this and will instead, load the flash
    object only upon initial view of the flash object. All subsequent
    links (in IE) will NOT reload the flash object on the page. I'm
    guessing this is some kind of difference in the flash player as an
    Active X object and the plugin, or is it just IE being clever? Or
    am I way off?
    Anyway, here is the code...

    I am using CSS and Javascript to display a div with an
    embedded flash object in it. Mozilla Firefox reloads the flash file
    when the div is displayed! (I dont want this to happen, as it's
    unexpected functionality, my expectation would be that the flash
    file would not change it's state at all, and would remain in
    whatever state it was left in.)
    I was wondering if anyone has come across this issue and is
    there something I can do to prevent this from occurring?
    To be more specific, I have a single HTML page with 8 flash
    files embedded in it (yeah I know, it's a bit much). I am then
    using CSS and Javascript to display (via a numbered link (with an
    id)) an equivalent numbered div tag containing the flash file.
    Mozilla Firefox reloads the flash object that is in the div.
    Internet Explorer will not do this and will instead, load the flash
    object only upon initial view of the flash object. All subsequent
    links (in IE) will NOT reload the flash object on the page. I'm
    guessing this is some kind of difference in the flash player as an
    Active X object and the plugin, or is it just IE being clever? Or
    am I way off?
    Anyway, here is the code...

  • On differences between JavaFX CSS and the w3c standard css

    This is a discussion topic which came to mind after reading comments in this thread Re: FXML, css and -fx-font-family
    Feel free to comment or share your thoughts on the topic.
    Note that these comments relate to the naming and semantic meanings of css tags, and not the syntax and parsing of css (as both w3c css and javaFX css seem to be equivalent in the later regard).
    You know, sometimes I find JavaFX's lack of certain css features refreshing. It is nice to have all, well, almost all, of the JavaFX CSS documented on one page. I think if you were to do the same thing for w3c css then it would end up with a much larger, more difficult to understand document and even what the contents of that document should be would probably be pretty controversial, in the same kind of way that the HTML5 specification ended up being. Microsoft contributed over 7000 tests to w3c just to cover only a subset of the css rules available in browsers today. The webkit project lists almost a thousand open CSS bugs: https://bugs.webkit.org/buglist.cgi?product=WebKit&component=CSS&resolution=---. So implementing even partial w3c CSS support is a complex project.
    When I first started using JavaFX CSS I found the differences to w3c CSS quite jarring, and it was hard to account for them. Now that I am used to JavaFX CSS, I don't have as much of an issue. The difference in names and semantics is going to be an impediment to designers working on JavaFX who are familar with w3c CSS - but the designers will quickly also discover that FXML is not HTML and Java is not JavaScript and JavaFX deployment is not HTML deployment. So, perhaps, in the larger picture, it is not as big a deal as it would seem. Still, one can't help think that any impediment to people easily picking up and adopting JavaFX is doing the technology a disservice.
    There are other advantages in having the JavaFX CSS in it's own namespace to w3c css, in that it can evolve seperately, it is not expected to be exactly the same because it has a different name, it is not expected to fully implement w3c css as browsers do because it's clearly a different thing by name, etc. There is even precedent for it in the use by mozilla of moz- CSS prefixes and webkit css properties http://css-infos.net/properties/webkit - the web as not as standard as a lot of people propose. JavaFX CSS is backing a JavaFX rendering engine and not an HTML rendering engine. It is quite remarkable that Oracle was able to build and make available a CSS model for JavaFX that feels as familar as it does to w3c css, as w3c css is targeted very strongly toward styling a completely different technology set (HTML markup and document object model).
    It would be useful to have a tool which translates w3c css to approximations of JavaFX css and vice versa, or the ability for JavaFX to have a mode (perhaps a boolean value when a stylesheet is loaded) to perform an automatic alias or mapping of w3c css to javafx (at least for the subset of w3c css which would make sense to automatically translate to JavaFX css). I haven't checked the JavaFX jira in detail, so perhaps a request for such support already exists - perhaps it is under the private http://javafx-jira.kenai.com/browse/RT-9272 jira.
    The JavaFX css model is really powerful and I have found really useful some of the additions that it adds above the baseline 2.1 css that is found consistently in browsers. With the upcoming Java CSS object model http://javafx-jira.kenai.com/browse/RT-17293, you will also get better programmatic access from Java.
    So, nice work on building and implementing this complex feature . . .

    Thanks for the feedback. Closing the gap between JavaFX CSS and W3C CSS will be an evolutionary process. It would be nice to use a standard's based stylesheet but there is not always a 1-1 mapping to JavaFX. But for those properties that can be mapped, it is something that should be supported. For example, we should be able to handle "font" or "-fx-font".
    I have made http://javafx-jira.kenai.com/browse/RT-9272 public.

  • In fire fox and google chrome CSS and images are not loading

    I am facing problem with jrun, In IE-8 application is working fine, but in FireFox and Google chrome CSS and Images are not loading.
    in fire fox and google chrome requests are Aborted.
    thanks
    Ashok Gadiparthi.

    Check if Style Resource Readers SharePoint group has permissions on the site, permissions to the style library and make sure that this library provides Style Resource Readers with restricted read.
    If you don't see Style resource readers on the site, go to that library and set that permission.  you could also just load your installation media to a folder, and execute on setup.exe, select repair option.  This second option of the installation
    media is the cannon vs. flyswatter approach though, but it will work
    Stacy Anothersharepointblog.blogspot.com

  • After deleteing Custom CSS and Custom Functions, cannot get FireFox to recognize audio player. Works in IE and Safari. Site is https and using bluehost.

    Using the Genesis Framework on my WordPress site. I can use Safari and IE. However, when I try to use Fire Fox, it will not appear. I deleted all of my Custom CSS and Functions. Still, nothing is working. Contacted bluehost, the representative there was not able to help me out and also emailed CD Baby to see what might work. I am not sure if it is something with my site using HTTPS instead of HTTP of why this is not working? I am told the plugin works on Fire Fox but I cannot for the life of me figure out what's going on. Also changed themes and used Twenty Thirteen among others. Still the same thing. Fire Fox will not work. Tried in Text widget, and pasting on a page, and still not working. IE and Safari it is fine. Do I need to add something else within my site? Thanks ahead of time for any way to solve this situation.

    There is mixed active content loaded in an iframe that Firefox is blocking as you can see by the shield icon at the left end of the location/address bar.
    *https://developer.mozilla.org/Security/MixedContent
    *https://developer.mozilla.org/Tools/Web_Console

  • Dw, css, and a template, what is the best way to create a 20 page website with a different header in each page?

    dw, css, and a template, what is the best way to create a 20
    page website with different header content on each page? i am
    trying to insert a specific image and background color for each
    header on every page. what is the easiest or best way to do this?
    thanks, bryan

    "mediastream13" <[email protected]> wrote in
    message
    news:f47bes$9om$[email protected]..
    > ok, murray, here is the site.
    http://www.helphotline.org
    > in I.E. 6 i can't see the background color behind the
    header images,
    I'm seeing a hot pink background (which is my browser default
    - so that I do
    remember to declare a background color). You need to add:
    body { background-color: white;} to your stylesheet, or into
    the imbedded
    styles on your page.
    In Firefox, the very top black section, #headertop is hidden
    behind the
    header image.
    > background of the date/time isn't stretching the full
    length of the
    > screen, and
    > the margins aren't working in the main content area. how
    can i put a
    > background
    > color behind the header images?
    I can see the header image stretching right across the page..
    so not sure
    what color is missing there.
    > is there anyway to download i.e. six on my computer if i
    already have
    > i.e.7? i
    > just want to be able to preview the site before i upload
    the changes. it
    > seems
    > everything works in i.e. 7.
    Yes, I used this and it works really well.
    http://tredosoft.com/Multiple_IE
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au

  • Exporting "CSS and images (.htm.)" from Fireworks CS4?

    Is this an effective process for developing CSS based layouts? Are there any proven tricks to improve the quality of the resulting structure?

    It's a starting point, but it does not exempt you from understanding 
    XHTML and CSS. Currently there are some limitations to what the script 
    will export: it ignores additional states, javascript behaviors and 
    won't export more than 1 page at a time. Keep in mind this is just the 
    "first kick" and we'll no doubt see this feature embellished.
    I recommend that you download and read about the updated CSS and 
    Images export script, modified by Matt Stow. You can find the new 
    script and his article here:
    http://www.adobe.com/devnet/fireworks/articles/standards_compliant_design.html
    The article also provides some tips on how to best plan your designs 
    if you plan to use the script.
    HTH
    Jim Babbage
    NewMedia Services
    http://www.newmediaservices.ca
    Community MX Partner -
    http://www.communitymx.com/author.cfm?cid=1036
    Adobe Community Expert
    http://www.adobe.com/communities/experts/members/206.html
    Author - Lynda.com
    http://movielibrary.lynda.com/authors/author/?aid=188
    Author: Peachpit Press
    http://www.peachpit.com/store/product.aspx?isbn=0321562879

  • Firefox OS is not displaying correctly. it appears that the CSS and JS are not rendering! Any help would be most appreciated!

    I would have preferred to show anyone a screenshot of the web pages, but there is not an attach file on this forum. Anyway, with only Firefox OS , not my other browsers, the web pages are not rendering correctly. For example on Facebook there is no header or footer. JS is active in the browser and as I said Chrome and Safari are NOT having any problems. I am surmising that the CSS and JS files are somehow not being displayed. I may be very wrong, but I would gratefully accept any help someone has to offer. Thank you and have a great day!
    Theresa

    Hi Lufte,
    I'm sorry to hear you are having issues with the rendering of some pages on your Firefox OS device.
    Please create a new question in the thread so that we can track your issue separately:
    * [https://support.mozilla.org/en-US/questions/new Ask a new question]
    Please also provide the device model and version that you're currently using, and whether this issue started recently. Please let us know if you also notice any issue with the time and date displayed in your device.
    Thanks,
    - Ralph

  • How can I verify the SSL service enabled in CSS and SCA ?

    I'm working for the OpenSSL vulnerability for CSS and SCA. How can I check if the device enabled the SSL service ?
    - https://x.x.x.x --> cannot access.
    - telnet x.x.x.x 443 --> I got a blank screen. I think this should be connection rejected if no SSL enabled.
    Please guide me what command should I issue on the device(CSS and SCA) to verify the SSL service enabled ?
    Thanks,

    To see what ports are being listened to.
    On the SCA, you can do "show netstat"
    On the CSS, you would go into debug mode and do
    symbol-table load
    shell inetstatShow
    Michael

  • Lotus notes and SSIS ODBC connection not working

    I have created an ODBC source.  I tried using this in SSIS workflow ODBC, when I test the connection, it crashes my Visual Studio 2010

    Hi Kathy,
    Thank you for posting in MSDN forum.
    Based on your issue, could you please tell me if you connect the
    Lotus notes and SSIS ODBC with ADO.NET like this following link.
    https://social.msdn.microsoft.com/Forums/en-US/a6c32c6b-876a-4fd5-8faa-d6498a6755c7/updatedwhere-to-post-nonadonet-datagridview-tableadapter-odbcoledb-etc-questions?forum=adodotnetdataproviders
    If possible, please share me more detailed steps about how to connect the
    Lotus notes and SSIS ODBC in the VS2010.
    In addition, could you please share me some crash error message in this VS2010 when test this connection?
    To check if this issue is related to this VS IDE, I suggest you could try to connect
    Lotus notes and SSIS ODBC on other machine and then check if you still get this issue.
    (1) If you still get this crash issue, I assume that this issue is related to this connection
    Lotus notes and SSIS ODBC.
    (2) If you did not get same error message, I suggest you could try to restart your machine and then open this VS2010 as Admin on your local machine and then connect it check this issue again.
    Please try to close the firewall software on some other progress from this Task Manager and then check this issue.
    In addition, I suggest you could try to use this process monitor tool to check which process running when you test this connect.
    https://technet.microsoft.com/en-us/library/bb896645.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SSIS 2012 - Use OPENROWSET in SSMS and SSIS

    HI Experts , 
    I am getting very much confused with 64 bit ,31 bit environment in SQL server, SSIS and MS office , Accessdatabase engine
    which I want to use for ETL as what should be the combination
    My scenario - I have written an SP with  OPENrowset to be used  in EXECUTE SQL TASK and load data into SQL Table
    example 
    SELECT * into myTable 
         FROM OPENROWSET (
        'Microsoft.ACE.OLEDB.12.0',
        'Excel 12.0;Database=E:\SourceFolder\Department.xlsx;HDR=YES;IMEX=1',
        'SELECT * FROM [Sheet1$]');
    My SQL SERVER version is :: 
    Microsoft SQL Server 2012 - 11.0.2316.0 (X64) 
    Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    MS OFFICE 2010, 64 Bit 
    After executing 
    sp_configure 'show advanced options', 1;
    RECONFIGURE;
    sp_configure 'Ad Hoc Distributed Queries', 1;
    RECONFIGURE;
    My OPENROWset query Store Procedure is working fine in SSMS but when I executed Same SP in EXECUTE SQL TASK ,it failed .
    Also I was not able to used Excel as a Source , I forgot the error but it did not even allowed me to select a sheet Name in Excel Source..
    After doing bit of google I found that we need to have MS office 2010 in 32 bit because our BIDS is 32 Bit .
    I asked my admin team to uninstall MS office 2010 64 bit and Install 32 bit version.
    Now my versions are 
    SQL server 2012 , 64 bit 
    MS office 32 bit 
    Now
    1) I am able to Take excel sheets as Source in SSIS Excel Source transformation but package fail 
    2) SP with OPENROWSET Query in which was running fine earlier in SSMS  is also throwing error
    3) and Execute SQL TASK with same SP in SSIS are  throwing error ..
    NOW I Installed AccessDatabaseEngine i.e. 32-bit but same issue 
    "The 32-bit OLE DB provider "Microsoft.ACE.OLEDB.12.0" cannot be loaded in-process on a 64-bit SQL Server"
    PLEASE TELL ME THE COMBINATION .. I cannot reinstall SQL SERVER but definately MS OFFICE VERSION AND ACCESSdatabase engine version
    I WANT 
    1) MY OPENROW SET QUERY CAN RUN BOTH IN SSMS and Execute SQL Task (SSIS).
    2) I can use Excel as a Source in SSIS Package (with out making RUN64bitRUNTIME to FALSE )
    PLEASE ASSIST

    Hi Visakh , 
    I might sound stupid asking almost same things again even after reading the Link but thing are not very clear with me and I am  still getting an error while running 
    SELECT * --INTo productlist
    FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
        'Excel 12.0 Xml;HDR=YES;Database=D:\Mushtaq\ExcelS\Dept.xlsx',
        'SELECT * FROM [S$]'
    both IN SSMS and Execute SQL Task(Even after making Runas64bit to FALSE) ..
    [Execute SQL Task] Error: Executing the query "SELECT * 
    INTO productlist
     FROM OPENROWSET
    ('Micro..." failed with the following error: 
    "OLE DB provider 'Microsoft.ACE.OLEDB.12.0' 
    cannot be used for distributed queries because the provider is configured 
    to run in single-threaded apartment mode.". 
    Possible failure reasons: Problems with the query, 
    "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
    I have also executed below Query in SSMS but no luck:
    USE [master]
    GO
    sp_configure 'show advanced options', 1
    GO
    RECONFIGURE WITH OverRide
    GO
    sp_configure 'Ad Hoc Distributed Queries', 1
    GO
    RECONFIGURE WITH OverRide
    GO
    EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0' ,  N'AllowInProcess' ,  1
    GO
    EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0' ,  N'DynamicParameters' ,  1
    GO
    But NOO Luck :(
    I need to know what is wrong or missing in my Current environment to execute them in SSMS and SSIS
    My Environment.
    1)SQL SERVER 2012 64 Bit
    2)MS office 32 Bit
    3)MicrosoftAccessDataBase Engine 2010 -32 Bit .. 
    Please assist..

  • 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

Maybe you are looking for