
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d36bdd93c255cdca82a281c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c82c9f2d7f175c3335a532ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d0a75df86e35e8d71b0791fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a3d4f8ac4d270f5ccd46bb34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2846daf55a51c892a72339e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43604c24b29be237f8c28ad7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ca13ccaf0e7b90efd01106e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ecdd64e9a07139a49d89f5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d7d12ce45dc980ce8ef48f11.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9e0a2952117783d1d564d11.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c3c0aef952d73ade97f68a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3ec60cc7c7d3d9cf5cda7f35.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f679c8b00b5dd156a0c71afc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a1e22a4772c3bb81cbf47d4f.woff2')format("woff");}.fff{font-family:fff;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ef45bc3bf55f79b99610202e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_291f6cfcc75a7fcc7fe839f7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_24f26cc3db12efb9825884ea.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6353ae8b4c7794255450351b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6062800da685209b2644aab4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5362010eab33c0b57e5ecf05.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1415ef192415be9e92172700.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_afa8074af1e23d23f2fa7d38.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_94c97af6f2387adba862038c.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_6a449e6c962452c300990d54.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_902a5a4f3151586a570ee7ab.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_4ffbf011f90b8664f305de23.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a0dcb402f92618bf1893b78b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_cf840e2b6765f8ec9d67de66.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_9a80283730b5e05e2f3c03de.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_53bd1c06751d940f551f3e9a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d0a190b65a9f9d47d026adb2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0b221b57f4f1cec07abdb78c.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_fc984a0e72a3e6036b2c8a17.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_184ecd948aec296e27a308d9.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_6a8788c8597a8170c9fba449.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_5362010eab33c0b57e5ecf05.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_b9abba3d1a99700912c1a06a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_ca2382cc0128f0f59fc6215f.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.082520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1c{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m57{transform:matrix(0.046297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046297,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.095001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095001,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.108705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108705,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.113197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113197,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.114141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114141,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.118182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118182,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.123304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123304,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.125179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125179,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131233,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.132843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132843,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.135221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135221,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.135333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135333,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.137026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137026,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.142193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142193,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.142729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142729,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143045,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.146598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146598,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.147612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147612,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.148284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148284,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.148753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148753,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.148768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148768,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.151988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151988,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152423,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152777,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155410,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.164209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164209,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.169253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169253,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.171259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171259,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.173129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173129,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.174593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174593,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.176127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176127,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.176386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176386,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.176937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176937,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181155,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.181561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181561,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.183113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183113,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.184871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184871,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.185109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185109,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.185116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185116,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.186903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186903,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.187017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187017,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.187701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187701,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.189044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189044,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.191614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191614,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192485,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.193553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193553,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.194979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194979,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.195029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195029,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195896,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.195986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195986,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.196102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196102,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.198891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198891,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.199673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199673,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.199703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199703,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.200556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200556,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.200664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200664,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.201133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201133,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.201461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201461,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.202539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202539,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202740,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202805,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.203581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203581,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203610,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.204243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204243,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.204292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204292,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.204414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204414,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.204778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204778,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.205574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205574,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.206124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206124,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.206751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206751,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.207061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207061,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207176,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.207512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207512,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.207526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.207856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207856,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.208546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208546,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208929,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209105,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.209159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209159,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.209458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209458,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.210169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210169,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.210199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210199,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.210387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210387,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.211359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211359,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.211367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211367,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.211481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211481,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.211541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211541,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.213803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213803,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.214902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214902,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.215833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215833,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.217177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217177,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.217411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217411,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.217617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217617,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.217827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217827,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.217863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217863,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.220072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220072,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.221449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221449,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.222002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222002,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.222181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222181,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222202,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.222459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222459,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.222586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222586,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223686,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224136,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.225152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225152,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225955,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.225986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225986,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.226007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226007,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.226276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226276,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.226613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226613,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.226697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226697,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.230241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230241,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.234357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234357,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234440,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.234567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234567,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.235527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235527,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.237173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237173,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.237298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237298,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.238012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238012,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.238694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238694,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.239456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239456,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241596,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243983,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.244063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244063,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.244152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244152,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252597,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.254364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254364,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254397,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254471,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254739,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254966,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.255168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255168,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.255487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255487,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256329,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.257423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257423,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258739,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259196,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260449,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261380,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.263789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263789,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.264154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264154,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.264327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264327,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.264370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264370,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265006,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265920,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.271694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271694,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.272159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272159,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281307,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285844,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288146,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288877,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290429,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.293093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293093,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293517,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298009,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.301090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301090,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.301243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301243,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.302435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302435,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308091,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.314065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314065,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.320523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320523,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.322804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322804,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.326869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326869,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.340732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340732,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.349318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349318,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.351875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351875,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.355994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355994,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356096,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.365598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365598,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.423382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423382,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.434838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434838,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.999967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.999967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.999967,0.000000,0.000000,0.250000,0,0);}
.v17{vertical-align:-102.180000px;}
.v10{vertical-align:-87.240000px;}
.v1b{vertical-align:-80.880000px;}
.v12{vertical-align:-70.233600px;}
.v16{vertical-align:-65.940000px;}
.v14{vertical-align:-59.580000px;}
.v2{vertical-align:-55.860000px;}
.v19{vertical-align:-48.988994px;}
.v1d{vertical-align:-44.668800px;}
.vb{vertical-align:-40.440000px;}
.v5{vertical-align:-36.000000px;}
.vc{vertical-align:-31.920000px;}
.v1{vertical-align:-29.820000px;}
.v1f{vertical-align:-27.640800px;}
.vd{vertical-align:-25.500000px;}
.ve{vertical-align:-23.400000px;}
.v11{vertical-align:-19.200000px;}
.v8{vertical-align:-13.620600px;}
.vf{vertical-align:-6.420000px;}
.va{vertical-align:-2.100000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:2.100000px;}
.v4{vertical-align:8.403745px;}
.v1a{vertical-align:10.620000px;}
.v13{vertical-align:14.889600px;}
.v15{vertical-align:16.980000px;}
.v1e{vertical-align:21.304800px;}
.v1c{vertical-align:23.460000px;}
.v3{vertical-align:28.012484px;}
.v7{vertical-align:34.019400px;}
.v6{vertical-align:40.860000px;}
.v9{vertical-align:57.840000px;}
.ls2a{letter-spacing:-5.838000px;}
.ls40{letter-spacing:-5.418000px;}
.ls4f{letter-spacing:-5.292021px;}
.ls4e{letter-spacing:-5.082021px;}
.ls54{letter-spacing:-5.040000px;}
.ls1e{letter-spacing:-4.494000px;}
.lse{letter-spacing:-4.389000px;}
.ls7{letter-spacing:-3.969000px;}
.ls8{letter-spacing:-3.885000px;}
.ls6{letter-spacing:-3.864000px;}
.ls23{letter-spacing:-3.423000px;}
.ls24{letter-spacing:-3.402021px;}
.ls33{letter-spacing:-3.255000px;}
.ls42{letter-spacing:-3.171000px;}
.ls43{letter-spacing:-3.108000px;}
.ls44{letter-spacing:-3.024000px;}
.ls88{letter-spacing:-2.940000px;}
.ls37{letter-spacing:-2.919000px;}
.ls50{letter-spacing:-2.814000px;}
.lsd{letter-spacing:-2.780160px;}
.ls25{letter-spacing:-2.646000px;}
.ls4d{letter-spacing:-2.520000px;}
.ls31{letter-spacing:-2.457000px;}
.ls9{letter-spacing:-2.436000px;}
.ls1d{letter-spacing:-2.415000px;}
.ls9c{letter-spacing:-2.373000px;}
.ls7c{letter-spacing:-2.352000px;}
.ls27{letter-spacing:-2.330460px;}
.ls8e{letter-spacing:-2.268000px;}
.ls26{letter-spacing:-2.247000px;}
.ls9d{letter-spacing:-2.205000px;}
.ls79{letter-spacing:-2.142000px;}
.ls39{letter-spacing:-2.121000px;}
.ls2e{letter-spacing:-2.079000px;}
.ls92{letter-spacing:-2.016000px;}
.ls53{letter-spacing:-1.995000px;}
.ls7a{letter-spacing:-1.974000px;}
.ls3e{letter-spacing:-1.953000px;}
.ls59{letter-spacing:-1.890000px;}
.ls96{letter-spacing:-1.869000px;}
.ls51{letter-spacing:-1.848000px;}
.ls38{letter-spacing:-1.791180px;}
.ls3d{letter-spacing:-1.764000px;}
.ls36{letter-spacing:-1.759080px;}
.ls77{letter-spacing:-1.638021px;}
.ls57{letter-spacing:-1.624260px;}
.ls29{letter-spacing:-1.585740px;}
.ls3a{letter-spacing:-1.575021px;}
.ls52{letter-spacing:-1.539720px;}
.ls58{letter-spacing:-1.407000px;}
.ls30{letter-spacing:-1.393140px;}
.ls78{letter-spacing:-1.344021px;}
.ls7e{letter-spacing:-1.323021px;}
.ls45{letter-spacing:-1.281000px;}
.ls32{letter-spacing:-1.245480px;}
.ls2d{letter-spacing:-1.234440px;}
.ls99{letter-spacing:-1.218021px;}
.ls21{letter-spacing:-1.193700px;}
.ls46{letter-spacing:-1.092000px;}
.ls56{letter-spacing:-1.046460px;}
.ls9a{letter-spacing:-0.797040px;}
.ls8c{letter-spacing:-0.756000px;}
.ls80{letter-spacing:-0.583689px;}
.ls22{letter-spacing:-0.393300px;}
.ls60{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.193503px;}
.ls5d{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.108000px;}
.ls5c{letter-spacing:-0.082200px;}
.ls4{letter-spacing:-0.076200px;}
.ls14{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.021900px;}
.ls1{letter-spacing:0.026208px;}
.ls0{letter-spacing:0.026220px;}
.lsa1{letter-spacing:0.063600px;}
.ls5e{letter-spacing:0.108000px;}
.ls6b{letter-spacing:0.142500px;}
.ls3f{letter-spacing:0.147840px;}
.ls20{letter-spacing:0.317400px;}
.ls4c{letter-spacing:0.337505px;}
.ls15{letter-spacing:0.358800px;}
.lsf{letter-spacing:0.360000px;}
.ls71{letter-spacing:0.420000px;}
.ls74{letter-spacing:0.444600px;}
.ls62{letter-spacing:0.476280px;}
.ls1f{letter-spacing:0.496800px;}
.ls48{letter-spacing:0.504007px;}
.ls70{letter-spacing:0.570240px;}
.ls1b{letter-spacing:0.598508px;}
.ls72{letter-spacing:0.644100px;}
.ls93{letter-spacing:0.684000px;}
.ls13{letter-spacing:0.864000px;}
.ls85{letter-spacing:0.974400px;}
.ls94{letter-spacing:0.992340px;}
.ls49{letter-spacing:1.017014px;}
.ls86{letter-spacing:1.083600px;}
.ls19{letter-spacing:1.102920px;}
.ls7f{letter-spacing:1.127520px;}
.ls7d{letter-spacing:1.197000px;}
.ls63{letter-spacing:1.210140px;}
.ls82{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.309380px;}
.ls64{letter-spacing:1.346220px;}
.ls6a{letter-spacing:1.461600px;}
.ls16{letter-spacing:1.469700px;}
.ls67{letter-spacing:1.596000px;}
.ls98{letter-spacing:1.650030px;}
.ls7b{letter-spacing:1.680000px;}
.ls81{letter-spacing:1.734629px;}
.ls2b{letter-spacing:1.736640px;}
.lsa0{letter-spacing:1.749900px;}
.ls5a{letter-spacing:1.800000px;}
.ls61{letter-spacing:1.863900px;}
.ls95{letter-spacing:1.915200px;}
.ls76{letter-spacing:1.950030px;}
.ls73{letter-spacing:2.057940px;}
.ls8a{letter-spacing:2.058000px;}
.ls47{letter-spacing:2.070030px;}
.ls3b{letter-spacing:2.209529px;}
.ls1a{letter-spacing:2.223030px;}
.ls4a{letter-spacing:2.250030px;}
.ls9e{letter-spacing:2.308500px;}
.ls55{letter-spacing:2.310000px;}
.ls6f{letter-spacing:2.319840px;}
.ls83{letter-spacing:2.430000px;}
.ls8f{letter-spacing:2.449440px;}
.ls2f{letter-spacing:2.520000px;}
.ls5b{letter-spacing:2.559600px;}
.ls8b{letter-spacing:2.580000px;}
.ls89{letter-spacing:2.637600px;}
.ls2c{letter-spacing:2.640000px;}
.ls68{letter-spacing:2.688000px;}
.ls4b{letter-spacing:2.700000px;}
.ls34{letter-spacing:2.738340px;}
.ls41{letter-spacing:2.760000px;}
.ls75{letter-spacing:2.770560px;}
.ls90{letter-spacing:2.850000px;}
.ls9f{letter-spacing:2.880000px;}
.ls6d{letter-spacing:2.906400px;}
.ls8d{letter-spacing:2.956800px;}
.ls35{letter-spacing:2.970000px;}
.ls91{letter-spacing:3.060000px;}
.ls28{letter-spacing:3.210000px;}
.ls9b{letter-spacing:3.270000px;}
.ls97{letter-spacing:3.390000px;}
.lsa{letter-spacing:3.480000px;}
.ls87{letter-spacing:3.540000px;}
.ls6e{letter-spacing:3.704400px;}
.ls69{letter-spacing:3.712800px;}
.lsc{letter-spacing:3.810000px;}
.ls65{letter-spacing:3.897600px;}
.ls17{letter-spacing:4.002000px;}
.ls66{letter-spacing:4.057200px;}
.ls18{letter-spacing:4.071000px;}
.ls6c{letter-spacing:4.099200px;}
.ls84{letter-spacing:4.200000px;}
.lsb{letter-spacing:7.350000px;}
.ls1c{letter-spacing:59.052000px;}
.ls11{letter-spacing:889.733280px;}
.ls12{letter-spacing:889.793280px;}
.ls10{letter-spacing:950.273280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-192.384000px;}
.ws1{word-spacing:-108.000000px;}
.ws3{word-spacing:-81.997920px;}
.ws22{word-spacing:-61.396080px;}
.ws24{word-spacing:-59.639328px;}
.ws23{word-spacing:-59.590080px;}
.ws0{word-spacing:-54.724332px;}
.ws18{word-spacing:-41.039880px;}
.ws19{word-spacing:-39.888000px;}
.ws1a{word-spacing:-37.044000px;}
.ws1b{word-spacing:-36.720000px;}
.wsd{word-spacing:-27.000000px;}
.wse{word-spacing:-26.964000px;}
.ws9{word-spacing:-26.336217px;}
.ws4{word-spacing:-26.272908px;}
.ws12{word-spacing:-24.450000px;}
.ws20{word-spacing:-22.461600px;}
.ws11{word-spacing:-21.321000px;}
.ws8{word-spacing:-21.271560px;}
.ws7{word-spacing:-21.208251px;}
.ws5{word-spacing:-20.005395px;}
.ws6{word-spacing:-19.942087px;}
.wsf{word-spacing:-18.719700px;}
.wsb{word-spacing:-18.359382px;}
.ws10{word-spacing:-16.056300px;}
.ws17{word-spacing:-16.050000px;}
.ws21{word-spacing:-15.846000px;}
.wsa{word-spacing:-15.827053px;}
.ws13{word-spacing:-15.150000px;}
.ws14{word-spacing:-14.733196px;}
.ws1e{word-spacing:-13.496220px;}
.ws1d{word-spacing:-13.360140px;}
.ws16{word-spacing:-13.108675px;}
.ws1c{word-spacing:-12.626280px;}
.ws15{word-spacing:-12.510167px;}
.ws1f{word-spacing:-1.701000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-44.342361px;}
._1d{margin-left:-38.311200px;}
._11{margin-left:-35.829645px;}
._c{margin-left:-33.320849px;}
._12{margin-left:-32.295592px;}
._13{margin-left:-27.169308px;}
._14{margin-left:-26.144051px;}
._23{margin-left:-24.939000px;}
._d{margin-left:-23.580909px;}
._f{margin-left:-22.031417px;}
._7{margin-left:-19.289520px;}
._e{margin-left:-18.143964px;}
._22{margin-left:-16.820400px;}
._5{margin-left:-15.433200px;}
._3{margin-left:-13.833216px;}
._37{margin-left:-12.820704px;}
._6{margin-left:-11.626824px;}
._24{margin-left:-10.366800px;}
._17{margin-left:-9.322882px;}
._48{margin-left:-8.253977px;}
._15{margin-left:-7.073152px;}
._16{margin-left:-5.182309px;}
._4{margin-left:-4.103904px;}
._2{margin-left:-2.393328px;}
._0{margin-left:-1.198800px;}
._1{width:1.438560px;}
._35{width:2.605152px;}
._1f{width:3.753600px;}
._3d{width:4.922400px;}
._20{width:6.334200px;}
._2d{width:9.321600px;}
._21{width:10.343100px;}
._31{width:11.668800px;}
._2c{width:13.590000px;}
._3c{width:19.257600px;}
._2b{width:21.300000px;}
._2e{width:23.370000px;}
._3e{width:25.680000px;}
._26{width:26.946949px;}
._27{width:31.920240px;}
._28{width:35.426400px;}
._34{width:36.852960px;}
._2f{width:37.962000px;}
._30{width:43.980000px;}
._36{width:45.429360px;}
._32{width:47.242128px;}
._29{width:50.525400px;}
._49{width:66.192000px;}
._3b{width:70.897200px;}
._46{width:73.483200px;}
._33{width:83.969280px;}
._1a{width:117.544800px;}
._b{width:133.146000px;}
._3f{width:149.133600px;}
._43{width:179.370000px;}
._38{width:211.175100px;}
._40{width:222.822000px;}
._1e{width:228.840000px;}
._45{width:230.700000px;}
._44{width:243.432966px;}
._41{width:246.660000px;}
._42{width:248.700000px;}
._3a{width:266.820000px;}
._39{width:273.517200px;}
._1c{width:292.284000px;}
._1b{width:293.760000px;}
._8{width:301.596000px;}
._a{width:371.030400px;}
._9{width:474.969600px;}
._47{width:498.926023px;}
._2a{width:612.353904px;}
._19{width:773.994250px;}
._18{width:839.450845px;}
._25{width:1794.717600px;}
.fcc{color:rgb(99,200,200);}
.fcb{color:rgb(0,128,0);}
.fca{color:rgb(0,0,153);}
.fc8{color:rgb(251,52,19);}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,102,102);}
.fc2{color:rgb(52,147,147);}
.fc9{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(0,77,77);}
.fc0{color:rgb(25,102,102);}
.fs4f{font-size:13.606800px;}
.fs84{font-size:25.200000px;}
.fs6d{font-size:27.600000px;}
.fs59{font-size:31.200000px;}
.fs8e{font-size:33.000600px;}
.fs7c{font-size:33.600000px;}
.fs4c{font-size:34.015800px;}
.fs90{font-size:34.800600px;}
.fs83{font-size:35.400600px;}
.fs70{font-size:36.000000px;}
.fs54{font-size:36.600000px;}
.fs7f{font-size:37.800600px;}
.fs79{font-size:38.400600px;}
.fs77{font-size:39.000600px;}
.fs6e{font-size:40.200000px;}
.fs5d{font-size:41.400600px;}
.fs81{font-size:43.200000px;}
.fs55{font-size:44.220600px;}
.fs4d{font-size:45.000600px;}
.fs6b{font-size:46.200000px;}
.fs78{font-size:46.800600px;}
.fs86{font-size:48.600000px;}
.fs45{font-size:50.400000px;}
.fs60{font-size:51.024000px;}
.fs43{font-size:52.800000px;}
.fs8c{font-size:53.400000px;}
.fs57{font-size:54.000000px;}
.fs6c{font-size:54.425400px;}
.fs51{font-size:55.200000px;}
.fs4e{font-size:55.800000px;}
.fs7b{font-size:56.400000px;}
.fs68{font-size:57.000000px;}
.fs5e{font-size:57.600000px;}
.fs5c{font-size:58.800000px;}
.fs44{font-size:59.400000px;}
.fs46{font-size:60.600000px;}
.fs7a{font-size:61.200000px;}
.fs3e{font-size:61.228800px;}
.fs16{font-size:61.627464px;}
.fs22{font-size:63.000000px;}
.fs3f{font-size:64.200000px;}
.fs65{font-size:64.630200px;}
.fs42{font-size:64.800000px;}
.fs94{font-size:65.400000px;}
.fsa0{font-size:66.240000px;}
.fs8a{font-size:66.600000px;}
.fs7e{font-size:67.200000px;}
.fs8d{font-size:67.800000px;}
.fs8f{font-size:68.400000px;}
.fs35{font-size:69.000000px;}
.fs24{font-size:69.600000px;}
.fs19{font-size:70.031209px;}
.fs47{font-size:70.200000px;}
.fs88{font-size:70.800000px;}
.fs5f{font-size:72.000000px;}
.fs40{font-size:72.600000px;}
.fs21{font-size:73.200000px;}
.fs96{font-size:74.400000px;}
.fs37{font-size:74.835000px;}
.fs89{font-size:75.000000px;}
.fs3b{font-size:75.600000px;}
.fs29{font-size:76.200000px;}
.fs2f{font-size:77.760600px;}
.fs56{font-size:79.200000px;}
.fs63{font-size:80.400000px;}
.fs1a{font-size:81.236203px;}
.fs6a{font-size:81.600000px;}
.fs2e{font-size:82.080000px;}
.fs4b{font-size:83.400000px;}
.fs87{font-size:84.000000px;}
.fs9e{font-size:84.240000px;}
.fs66{font-size:84.600000px;}
.fs64{font-size:85.039800px;}
.fs48{font-size:86.400000px;}
.fs91{font-size:87.000000px;}
.fs14{font-size:88.239324px;}
.fs13{font-size:88.519448px;}
.fs53{font-size:88.800000px;}
.fs5b{font-size:89.400000px;}
.fs6f{font-size:90.000000px;}
.fs52{font-size:90.600000px;}
.fs85{font-size:91.200000px;}
.fs69{font-size:91.800000px;}
.fs67{font-size:92.400000px;}
.fs49{font-size:93.000000px;}
.fs8b{font-size:93.600000px;}
.fs15{font-size:93.841820px;}
.fs17{font-size:94.121945px;}
.fsa{font-size:94.200000px;}
.fs2a{font-size:95.400000px;}
.fs75{font-size:95.760000px;}
.fs73{font-size:95.904000px;}
.fs3a{font-size:97.200600px;}
.fs38{font-size:97.800000px;}
.fs3c{font-size:98.400000px;}
.fs99{font-size:101.400000px;}
.fs1c{font-size:105.046814px;}
.fs1b{font-size:105.326939px;}
.fs4a{font-size:105.600000px;}
.fs9a{font-size:106.800000px;}
.fs3{font-size:108.000000px;}
.fs32{font-size:108.144000px;}
.fs2c{font-size:108.600000px;}
.fs1e{font-size:110.400000px;}
.fs23{font-size:111.000000px;}
.fs28{font-size:111.600000px;}
.fs20{font-size:113.400000px;}
.fs39{font-size:114.000000px;}
.fs95{font-size:115.800000px;}
.fs12{font-size:116.251807px;}
.fs18{font-size:116.531932px;}
.fs2b{font-size:116.640600px;}
.fs26{font-size:118.800600px;}
.fs31{font-size:120.000000px;}
.fs6{font-size:120.240000px;}
.fs74{font-size:120.384000px;}
.fs2d{font-size:125.400000px;}
.fs33{font-size:126.000000px;}
.fs36{font-size:128.400000px;}
.fs34{font-size:131.904000px;}
.fs80{font-size:141.600000px;}
.fs58{font-size:143.400000px;}
.fse{font-size:144.000000px;}
.fs76{font-size:144.144000px;}
.fs9b{font-size:144.600000px;}
.fs61{font-size:145.200600px;}
.fs27{font-size:147.000000px;}
.fs7d{font-size:147.600000px;}
.fs25{font-size:148.800000px;}
.fs98{font-size:150.600000px;}
.fs62{font-size:151.200600px;}
.fs97{font-size:153.000000px;}
.fs50{font-size:154.800000px;}
.fs7{font-size:156.000000px;}
.fs41{font-size:166.800000px;}
.fs10{font-size:167.760000px;}
.fsa2{font-size:167.904000px;}
.fs30{font-size:170.400000px;}
.fs3d{font-size:172.800000px;}
.fs93{font-size:173.400000px;}
.fs9f{font-size:174.240000px;}
.fsa1{font-size:174.384000px;}
.fs1f{font-size:175.800000px;}
.fs9{font-size:180.000000px;}
.fs82{font-size:184.800000px;}
.fs8{font-size:186.000000px;}
.fsf{font-size:192.240000px;}
.fs1d{font-size:192.384000px;}
.fs92{font-size:204.000000px;}
.fs5a{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs11{font-size:256.314226px;}
.fs4{font-size:264.240000px;}
.fs5{font-size:264.384000px;}
.fsc{font-size:324.000000px;}
.fsd{font-size:324.144000px;}
.fs72{font-size:360.000000px;}
.fs71{font-size:360.144000px;}
.fs9c{font-size:396.000000px;}
.fs9d{font-size:396.144000px;}
.fsb{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:3.888000px;}
.y22{bottom:16.875000px;}
.y149{bottom:17.244000px;}
.yd1{bottom:26.172000px;}
.y57{bottom:29.016000px;}
.yce{bottom:37.476000px;}
.yd2{bottom:39.888000px;}
.y135{bottom:45.036000px;}
.y148{bottom:53.244000px;}
.y4c{bottom:54.000000px;}
.yd0{bottom:58.572000px;}
.y17{bottom:59.595000px;}
.ycd{bottom:80.676000px;}
.y6{bottom:81.324000px;}
.y77{bottom:85.677300px;}
.y51{bottom:86.400000px;}
.y15{bottom:86.595000px;}
.yb1{bottom:87.387300px;}
.y4b{bottom:87.495000px;}
.y83{bottom:89.082300px;}
.y147{bottom:89.244000px;}
.ycf{bottom:90.972000px;}
.y19{bottom:97.215000px;}
.y76{bottom:100.137300px;}
.yb0{bottom:101.847300px;}
.y82{bottom:105.237300px;}
.y50{bottom:105.840000px;}
.y75{bottom:109.497300px;}
.y108{bottom:109.996950px;}
.yaf{bottom:110.352450px;}
.y4a{bottom:112.320000px;}
.y5{bottom:113.724000px;}
.ybd{bottom:115.452300px;}
.yad{bottom:119.697300px;}
.y144{bottom:120.024000px;}
.ycc{bottom:123.876000px;}
.y146{bottom:127.944000px;}
.yae{bottom:128.202300px;}
.y74{bottom:129.057300px;}
.yab{bottom:135.852450px;}
.ya9{bottom:137.562450px;}
.yac{bottom:138.402300px;}
.y101{bottom:138.736950px;}
.y12c{bottom:139.792950px;}
.y12d{bottom:139.801950px;}
.y73{bottom:140.112300px;}
.yaa{bottom:141.807300px;}
.ybc{bottom:142.662300px;}
.y4d{bottom:143.604000px;}
.y53{bottom:144.972000px;}
.ya7{bottom:146.907300px;}
.y4{bottom:152.250000px;}
.y3c{bottom:152.280000px;}
.ya8{bottom:153.717300px;}
.y72{bottom:154.572300px;}
.y16{bottom:159.210000px;}
.y12{bottom:159.870000px;}
.yf7{bottom:160.546950px;}
.ya6{bottom:164.772450px;}
.y71{bottom:165.627300px;}
.ycb{bottom:167.070000px;}
.ya5{bottom:168.177300px;}
.ya4{bottom:169.872300px;}
.ybb{bottom:170.727450px;}
.y107{bottom:171.721950px;}
.ya3{bottom:172.422300px;}
.yf6{bottom:173.311950px;}
.y49{bottom:176.040000px;}
.ya1{bottom:176.682300px;}
.y54{bottom:179.670000px;}
.y143{bottom:182.700000px;}
.yf5{bottom:184.486950px;}
.ya2{bottom:186.027300px;}
.y123{bottom:186.076950px;}
.y10c{bottom:186.080550px;}
.y36{bottom:187.125000px;}
.y52{bottom:188.280000px;}
.yf4{bottom:190.336950px;}
.y70{bottom:191.127300px;}
.y100{bottom:193.531950px;}
.y12b{bottom:194.056950px;}
.ya0{bottom:194.532300px;}
.y9f{bottom:197.937450px;}
.y10b{bottom:198.316950px;}
.y122{bottom:198.856950px;}
.yba{bottom:203.037300px;}
.y31{bottom:203.332698px;}
.yf3{bottom:205.771950px;}
.y9e{bottom:209.847300px;}
.y48{bottom:210.600000px;}
.y9d{bottom:210.687450px;}
.y6f{bottom:213.237300px;}
.yf2{bottom:213.751950px;}
.y81{bottom:215.787300px;}
.y121{bottom:215.866950px;}
.yff{bottom:223.321950px;}
.yf0{bottom:224.386950px;}
.yf1{bottom:224.911950px;}
.y9c{bottom:225.147450px;}
.yb9{bottom:226.002300px;}
.y9b{bottom:229.407300px;}
.y6e{bottom:230.247300px;}
.y13{bottom:231.015000px;}
.yef{bottom:231.841950px;}
.y10a{bottom:232.375350px;}
.y9a{bottom:233.652300px;}
.y24{bottom:237.157772px;}
.y6d{bottom:237.912300px;}
.yee{bottom:239.281950px;}
.yb8{bottom:239.607450px;}
.y28{bottom:239.888989px;}
.y142{bottom:240.120000px;}
.y80{bottom:241.316700px;}
.y47{bottom:241.935000px;}
.y2d{bottom:242.690237px;}
.y99{bottom:244.707300px;}
.y11f{bottom:245.131950px;}
.y120{bottom:245.671950px;}
.yed{bottom:248.326950px;}
.y3b{bottom:248.415000px;}
.y109{bottom:251.521950px;}
.y98{bottom:253.212300px;}
.yb7{bottom:254.067450px;}
.y6c{bottom:254.907300px;}
.y11{bottom:254.910000px;}
.yec{bottom:255.241950px;}
.y11e{bottom:260.026950px;}
.y97{bottom:262.572300px;}
.y11d{bottom:264.286950px;}
.yeb{bottom:265.351950px;}
.y7f{bottom:265.969500px;}
.yc1{bottom:266.865000px;}
.y12a{bottom:267.481950px;}
.yb6{bottom:267.672300px;}
.yea{bottom:269.071950px;}
.y6b{bottom:269.367300px;}
.y6a{bottom:269.373900px;}
.y1e{bottom:270.330000px;}
.y141{bottom:271.260000px;}
.y46{bottom:272.715000px;}
.y96{bottom:272.772450px;}
.y106{bottom:278.131230px;}
.y11c{bottom:279.181950px;}
.y69{bottom:280.422300px;}
.y95{bottom:282.972300px;}
.y35{bottom:284.370000px;}
.ye9{bottom:285.031950px;}
.yb5{bottom:286.377300px;}
.y93{bottom:288.072300px;}
.y129{bottom:288.766950px;}
.y55{bottom:289.365000px;}
.y11b{bottom:289.831950px;}
.y7e{bottom:290.622300px;}
.y68{bottom:292.332300px;}
.y45{bottom:293.775000px;}
.ye8{bottom:294.616950px;}
.y94{bottom:295.737300px;}
.y7a{bottom:296.577300px;}
.yb4{bottom:301.677300px;}
.y91{bottom:303.387300px;}
.yc{bottom:303.480000px;}
.y11a{bottom:304.186950px;}
.y67{bottom:305.082300px;}
.y4e{bottom:306.570000px;}
.yb3{bottom:307.630200px;}
.y105{bottom:308.446950px;}
.y92{bottom:308.487300px;}
.ye7{bottom:308.971950px;}
.y131{bottom:308.985150px;}
.y79{bottom:312.732050px;}
.y90{bottom:313.587300px;}
.y44{bottom:314.295000px;}
.y7d{bottom:316.135650px;}
.y66{bottom:317.847300px;}
.y128{bottom:318.556950px;}
.y8f{bottom:318.687450px;}
.y134{bottom:318.780000px;}
.y119{bottom:322.816950px;}
.y140{bottom:323.490000px;}
.y8e{bottom:325.497300px;}
.y8c{bottom:327.192450px;}
.ye6{bottom:327.601950px;}
.y8d{bottom:329.742300px;}
.y78{bottom:331.452300px;}
.y10{bottom:334.155000px;}
.yb{bottom:335.880000px;}
.y118{bottom:336.106950px;}
.yb2{bottom:336.552300px;}
.y65{bottom:339.102450px;}
.ye5{bottom:339.841950px;}
.y7c{bottom:341.655150px;}
.y130{bottom:344.090550px;}
.y8a{bottom:346.752300px;}
.y145{bottom:347.010000px;}
.y117{bottom:347.281950px;}
.y43{bottom:347.775000px;}
.ye4{bottom:351.001950px;}
.y12f{bottom:352.066950px;}
.ye3{bottom:353.131950px;}
.y8b{bottom:353.562450px;}
.y116{bottom:353.671950px;}
.y64{bottom:355.257300px;}
.ye2{bottom:357.391950px;}
.ye1{bottom:361.111950px;}
.y127{bottom:362.716950px;}
.y89{bottom:363.762300px;}
.y126{bottom:363.781950px;}
.y63{bottom:365.457300px;}
.y88{bottom:366.312450px;}
.y1d{bottom:367.560000px;}
.ya{bottom:368.280000px;}
.yc0{bottom:374.910000px;}
.y42{bottom:375.315000px;}
.y87{bottom:378.222300px;}
.y115{bottom:378.676950px;}
.y13f{bottom:380.910000px;}
.y34{bottom:381.600000px;}
.y62{bottom:381.627300px;}
.ye0{bottom:382.396950px;}
.y136{bottom:382.830000px;}
.y86{bottom:386.727450px;}
.y25{bottom:388.293875px;}
.y85{bottom:388.422300px;}
.y7b{bottom:391.827300px;}
.y114{bottom:393.571950px;}
.y61{bottom:394.377300px;}
.y2e{bottom:394.800942px;}
.y3a{bottom:395.835000px;}
.ydf{bottom:396.766950px;}
.y41{bottom:399.600000px;}
.y9{bottom:400.680000px;}
.y84{bottom:402.027300px;}
.y60{bottom:402.882300px;}
.y29{bottom:404.546952px;}
.y125{bottom:406.336950px;}
.y12e{bottom:406.876950px;}
.y13e{bottom:412.050000px;}
.y113{bottom:415.906950px;}
.yde{bottom:419.101950px;}
.y5f{bottom:425.847300px;}
.y112{bottom:431.341950px;}
.y8{bottom:433.110000px;}
.ydd{bottom:434.536950px;}
.ydc{bottom:437.191950px;}
.y133{bottom:437.610000px;}
.y104{bottom:437.731950px;}
.y2c{bottom:440.321228px;}
.y40{bottom:441.735000px;}
.y3e{bottom:442.275000px;}
.y111{bottom:444.646950px;}
.y124{bottom:445.171950px;}
.ydb{bottom:447.301950px;}
.y110{bottom:454.756950px;}
.y102{bottom:456.871950px;}
.yda{bottom:457.411950px;}
.y10f{bottom:460.066950px;}
.y3f{bottom:460.095000px;}
.y103{bottom:461.671950px;}
.yd9{bottom:462.736950px;}
.y26{bottom:463.723323px;}
.y13d{bottom:464.295000px;}
.y1c{bottom:464.790000px;}
.y7{bottom:465.510000px;}
.y2b{bottom:465.882619px;}
.y5e{bottom:466.662300px;}
.y4f{bottom:469.590000px;}
.y2f{bottom:469.734336px;}
.y10e{bottom:470.716950px;}
.yd8{bottom:472.846950px;}
.y33{bottom:478.800000px;}
.y10d{bottom:479.761950px;}
.yd7{bottom:481.351950px;}
.ybf{bottom:482.940000px;}
.yd6{bottom:482.941950px;}
.y27{bottom:488.000809px;}
.yd5{bottom:489.871950px;}
.y2a{bottom:491.852526px;}
.y30{bottom:494.099360px;}
.yd4{bottom:506.881950px;}
.y3d{bottom:509.775000px;}
.y5d{bottom:511.737300px;}
.y138{bottom:515.805000px;}
.y39{bottom:517.335000px;}
.y13c{bottom:521.355000px;}
.y38{bottom:528.675000px;}
.y18{bottom:539.475000px;}
.y137{bottom:548.205000px;}
.y5c{bottom:549.147450px;}
.y13b{bottom:550.695000px;}
.y132{bottom:556.455000px;}
.yfe{bottom:560.086950px;}
.y1b{bottom:561.990000px;}
.yf{bottom:567.330000px;}
.y56{bottom:585.570000px;}
.y3{bottom:590.610000px;}
.ybe{bottom:590.940000px;}
.yfd{bottom:593.071950px;}
.y13a{bottom:602.925000px;}
.y32{bottom:606.600000px;}
.yfc{bottom:618.076950px;}
.yca{bottom:634.860000px;}
.ye{bottom:639.330000px;}
.yc6{bottom:642.705000px;}
.y23{bottom:651.873839px;}
.y5a{bottom:652.047300px;}
.y5b{bottom:658.002300px;}
.y1a{bottom:659.235000px;}
.yc9{bottom:661.500000px;}
.y2{bottom:662.610000px;}
.yc5{bottom:669.390000px;}
.y37{bottom:680.550000px;}
.yc8{bottom:681.120000px;}
.yc4{bottom:689.010000px;}
.yfa{bottom:690.436950px;}
.y139{bottom:691.410000px;}
.yfb{bottom:694.696950px;}
.yd{bottom:711.360000px;}
.y59{bottom:714.972300px;}
.y20{bottom:717.120000px;}
.y14{bottom:722.700000px;}
.yc3{bottom:725.010000px;}
.yf9{bottom:734.596950px;}
.y1{bottom:734.655000px;}
.y1f{bottom:744.510000px;}
.yc7{bottom:753.120000px;}
.y21{bottom:754.635000px;}
.yc2{bottom:761.010000px;}
.y58{bottom:773.652300px;}
.yf8{bottom:776.086950px;}
.h5a{height:9.062129px;}
.h53{height:22.654523px;}
.h97{height:26.282813px;}
.h61{height:29.450920px;}
.h64{height:32.540625px;}
.h8c{height:32.976562px;}
.h6b{height:33.981984px;}
.ha2{height:34.418595px;}
.h96{height:34.743753px;}
.h7f{height:35.332031px;}
.h79{height:36.247316px;}
.ha4{height:36.295938px;}
.h90{height:37.099222px;}
.h89{height:37.688089px;}
.h60{height:38.172656px;}
.h87{height:38.276956px;}
.h7c{height:39.454102px;}
.h67{height:40.632425px;}
.h44{height:40.778381px;}
.h71{height:43.043713px;}
.h82{height:44.191406px;}
.h93{height:45.056250px;}
.h78{height:45.342773px;}
.h55{height:46.934220px;}
.h1d{height:46.983829px;}
.h98{height:47.698242px;}
.h88{height:48.811563px;}
.h56{height:49.440234px;}
.h99{height:49.464844px;}
.h3d{height:49.840110px;}
.ha7{height:50.688281px;}
.h34{height:51.788560px;}
.h58{height:51.794531px;}
.h70{height:51.820313px;}
.ha0{height:52.409180px;}
.h4c{height:52.565625px;}
.h69{height:52.998047px;}
.hb9{height:54.208125px;}
.h1e{height:54.501241px;}
.h33{height:54.665280px;}
.h57{height:54.737402px;}
.h95{height:54.764648px;}
.h49{height:55.068750px;}
.h5c{height:55.631250px;}
.h75{height:55.942383px;}
.h7d{height:56.320312px;}
.h6f{height:56.636507px;}
.h66{height:57.708984px;}
.h4b{height:58.297852px;}
.h8b{height:58.823438px;}
.hbb{height:58.921875px;}
.h18{height:59.199624px;}
.h17{height:59.387560px;}
.h7a{height:59.449219px;}
.h73{height:59.475586px;}
.h8a{height:60.064453px;}
.h68{height:60.075000px;}
.hac{height:61.326563px;}
.h1b{height:62.958331px;}
.h45{height:63.008789px;}
.h1a{height:63.146266px;}
.h52{height:63.203906px;}
.h48{height:63.597656px;}
.h9c{height:63.829687px;}
.h26{height:65.707031px;}
.ha1{height:66.541992px;}
.h3b{height:67.719727px;}
.ha9{height:68.210156px;}
.hb5{height:68.938594px;}
.h19{height:69.358253px;}
.h9d{height:69.461719px;}
.h9b{height:69.486328px;}
.h8e{height:70.087500px;}
.h6a{height:70.664062px;}
.ha3{height:71.339063px;}
.h25{height:71.841797px;}
.h28{height:71.928000px;}
.h54{height:71.964844px;}
.h29{height:72.590625px;}
.h4d{height:73.216406px;}
.h41{height:74.197266px;}
.h2e{height:74.786133px;}
.h46{height:75.719531px;}
.hab{height:77.596875px;}
.h30{height:77.682640px;}
.h62{height:77.730469px;}
.h16{height:77.993156px;}
.h1c{height:78.181091px;}
.h85{height:78.366094px;}
.h83{height:78.483937px;}
.hb6{height:78.626953px;}
.h1f{height:78.879488px;}
.h6e{height:78.908203px;}
.h2b{height:79.121200px;}
.h4a{height:79.474219px;}
.h51{height:81.852539px;}
.h9a{height:82.441406px;}
.h4e{height:84.796875px;}
.ha5{height:85.385742px;}
.h7b{height:86.625938px;}
.h5e{height:87.152344px;}
.hbe{height:87.538008px;}
.h72{height:88.235156px;}
.h7e{height:88.330078px;}
.h5{height:88.382812px;}
.h5d{height:88.918945px;}
.hb2{height:89.507812px;}
.h5f{height:90.112500px;}
.h9f{height:91.274414px;}
.h9e{height:92.620069px;}
.h40{height:95.397073px;}
.h77{height:95.744531px;}
.h3e{height:95.985352px;}
.h4f{height:96.996094px;}
.hf{height:98.247656px;}
.hb{height:98.399531px;}
.h84{height:98.517375px;}
.h42{height:99.168750px;}
.h2f{height:99.499219px;}
.haf{height:102.261328px;}
.h8d{height:104.421328px;}
.h31{height:106.584961px;}
.h39{height:107.944875px;}
.h74{height:109.092539px;}
.h2d{height:109.529297px;}
.h50{height:110.137500px;}
.h3f{height:111.884766px;}
.h4{height:112.640625px;}
.h36{height:112.790813px;}
.h91{height:112.941328px;}
.h92{height:113.472656px;}
.h22{height:115.143750px;}
.h27{height:115.769531px;}
.h24{height:118.272656px;}
.haa{height:120.775781px;}
.hbd{height:122.238703px;}
.h37{height:125.406562px;}
.h59{height:125.656875px;}
.h3c{height:126.017578px;}
.h32{height:130.788281px;}
.h38{height:131.414062px;}
.h20{height:137.287969px;}
.h63{height:140.739258px;}
.hb8{height:142.590937px;}
.hba{height:142.708781px;}
.h2c{height:144.272461px;}
.h8f{height:144.861328px;}
.had{height:150.161133px;}
.h76{height:150.187500px;}
.h86{height:150.337688px;}
.h6c{height:151.439688px;}
.h2a{height:155.193750px;}
.hae{height:157.071094px;}
.h21{height:157.439250px;}
.h6d{height:157.697501px;}
.hb0{height:159.797501px;}
.h5b{height:161.451563px;}
.hd{height:162.703125px;}
.h47{height:163.705078px;}
.h35{height:167.238281px;}
.hb1{height:167.691094px;}
.h43{height:169.593750px;}
.h23{height:172.538086px;}
.h1{height:174.551836px;}
.h2{height:174.656672px;}
.h3a{height:174.968437px;}
.he{height:176.660156px;}
.ha8{height:180.850781px;}
.h94{height:192.740625px;}
.h6{height:196.209844px;}
.h7{height:196.327687px;}
.ha6{height:200.214844px;}
.h13{height:200.500313px;}
.h8{height:200.760469px;}
.h65{height:211.992188px;}
.ha{height:216.243281px;}
.h9{height:216.361125px;}
.h3{height:225.431438px;}
.hbc{height:259.136719px;}
.h11{height:265.148438px;}
.h12{height:265.266281px;}
.h15{height:267.327727px;}
.hc{height:275.594063px;}
.h81{height:294.609375px;}
.h80{height:294.727219px;}
.hb3{height:324.070312px;}
.hb4{height:324.188156px;}
.hb7{height:338.072063px;}
.h10{height:450.562500px;}
.h14{height:787.880283px;}
.h0{height:810.000000px;}
.w2{width:1400.681180px;}
.w0{width:1440.000000px;}
.w1{width:1440.179999px;}
.w3{width:1440.180000px;}
.x0{left:0.000000px;}
.x20{left:31.125000px;}
.xc0{left:45.432000px;}
.xbe{left:62.064000px;}
.x21{left:106.799715px;}
.x11{left:111.528000px;}
.x52{left:117.684000px;}
.xfa{left:161.460000px;}
.xba{left:169.230000px;}
.xbc{left:172.830000px;}
.xbb{left:180.030000px;}
.x5{left:232.920000px;}
.x1b{left:246.240000px;}
.xbd{left:250.950000px;}
.xc4{left:254.581350px;}
.xc5{left:256.126350px;}
.xc3{left:258.256350px;}
.x4d{left:259.305000px;}
.x1a{left:262.290000px;}
.xc2{left:264.811350px;}
.x12{left:267.594750px;}
.x1{left:277.200000px;}
.xf9{left:280.080000px;}
.x1f{left:290.805000px;}
.x24{left:298.893301px;}
.x1e{left:299.985000px;}
.xf8{left:300.990000px;}
.x4e{left:304.350000px;}
.xa{left:305.460000px;}
.x6{left:316.080000px;}
.x22{left:318.006365px;}
.x2f{left:322.149960px;}
.x4a{left:325.365000px;}
.x94{left:336.421500px;}
.x49{left:338.655000px;}
.x95{left:340.201500px;}
.x96{left:343.276500px;}
.x98{left:346.316100px;}
.x35{left:348.150000px;}
.x19{left:350.670000px;}
.x18{left:351.930000px;}
.xd{left:356.940000px;}
.xf5{left:358.920000px;}
.x36{left:363.885000px;}
.x4b{left:369.030000px;}
.x97{left:370.321500px;}
.x34{left:376.590000px;}
.xbf{left:377.640000px;}
.xb7{left:378.975000px;}
.x23{left:382.728159px;}
.x44{left:391.620000px;}
.x25{left:396.034353px;}
.x64{left:399.406500px;}
.x99{left:405.961500px;}
.x32{left:407.955000px;}
.x6a{left:410.191500px;}
.x37{left:416.250000px;}
.x9a{left:423.811500px;}
.x33{left:427.215000px;}
.x6b{left:431.746500px;}
.x1d{left:436.320000px;}
.x9b{left:437.566500px;}
.x85{left:441.886500px;}
.xce{left:445.066350px;}
.x3{left:447.690000px;}
.x7e{left:449.296500px;}
.xb9{left:453.135000px;}
.xcf{left:456.256350px;}
.xdf{left:460.036350px;}
.x9c{left:462.061500px;}
.xf6{left:465.510000px;}
.x86{left:473.176500px;}
.x4{left:474.555000px;}
.x1c{left:477.570000px;}
.x7f{left:479.986500px;}
.xd0{left:487.156350px;}
.xe{left:489.090000px;}
.x87{left:492.706500px;}
.xe3{left:503.086350px;}
.x80{left:506.491500px;}
.x6c{left:515.941500px;}
.xf{left:518.970000px;}
.x2{left:520.410000px;}
.xb8{left:522.615000px;}
.x9{left:530.310000px;}
.xa0{left:534.526500px;}
.x6d{left:537.661500px;}
.xe2{left:543.571350px;}
.x5d{left:546.331500px;}
.x6e{left:548.821500px;}
.x81{left:550.306500px;}
.x8{left:551.910000px;}
.x88{left:553.111500px;}
.xa1{left:559.141500px;}
.x82{left:560.161500px;}
.xc9{left:563.821350px;}
.xe1{left:572.251350px;}
.x89{left:574.621500px;}
.x9f{left:577.426500px;}
.x6f{left:585.286500px;}
.xa2{left:588.811500px;}
.xdc{left:592.366350px;}
.xde{left:605.761350px;}
.x29{left:610.188208px;}
.x83{left:611.536500px;}
.x70{left:615.961500px;}
.x31{left:618.555000px;}
.xc1{left:619.710000px;}
.xc{left:621.570000px;}
.x5e{left:627.031500px;}
.x65{left:629.416500px;}
.x2a{left:633.649129px;}
.x8a{left:635.671500px;}
.x28{left:638.551411px;}
.xca{left:639.721350px;}
.x47{left:641.370000px;}
.xd1{left:643.996350px;}
.x5f{left:655.216500px;}
.x26{left:658.452341px;}
.xe0{left:661.141350px;}
.xcb{left:664.276350px;}
.x53{left:670.531500px;}
.x4c{left:675.075000px;}
.xe6{left:678.967350px;}
.xd2{left:685.576350px;}
.xd3{left:693.106350px;}
.x54{left:694.441500px;}
.x55{left:698.581500px;}
.xe5{left:699.856350px;}
.x48{left:702.645000px;}
.xc6{left:704.716350px;}
.x56{left:713.146500px;}
.x27{left:719.293163px;}
.xe4{left:721.141350px;}
.x57{left:727.561500px;}
.x84{left:730.231500px;}
.x58{left:734.221500px;}
.x71{left:736.966500px;}
.xe7{left:738.721350px;}
.x59{left:745.261500px;}
.x9d{left:749.671500px;}
.x5a{left:755.566500px;}
.x8b{left:757.321500px;}
.xc7{left:759.526350px;}
.x9e{left:763.996500px;}
.x66{left:767.596500px;}
.xd4{left:769.726350px;}
.x39{left:770.910000px;}
.x3b{left:777.120000px;}
.xae{left:781.846500px;}
.xa3{left:782.941500px;}
.xa8{left:785.191500px;}
.x72{left:786.226500px;}
.x38{left:787.920000px;}
.xad{left:789.286500px;}
.xb{left:796.935000px;}
.x60{left:798.961500px;}
.xd5{left:803.011350px;}
.x67{left:805.531500px;}
.x5b{left:809.116500px;}
.xa4{left:814.171500px;}
.xaf{left:815.236500px;}
.xa7{left:817.546500px;}
.x73{left:819.151500px;}
.x3a{left:820.860000px;}
.x8c{left:822.691500px;}
.x4f{left:824.475000px;}
.x7{left:826.275000px;}
.x74{left:831.331500px;}
.xd6{left:833.566350px;}
.xa5{left:834.706500px;}
.xe8{left:837.571350px;}
.xac{left:841.546500px;}
.x8d{left:843.091500px;}
.xc8{left:846.136350px;}
.x8e{left:847.321500px;}
.xa6{left:849.121500px;}
.xdd{left:853.756350px;}
.xd7{left:858.346350px;}
.x75{left:862.756500px;}
.x8f{left:866.926500px;}
.x61{left:878.911500px;}
.x5c{left:880.441500px;}
.xa9{left:884.731500px;}
.xaa{left:887.401500px;}
.xd8{left:889.981350px;}
.xd9{left:896.236350px;}
.x90{left:900.076500px;}
.x45{left:902.145000px;}
.x68{left:904.531500px;}
.x76{left:906.736500px;}
.x69{left:914.566500px;}
.x77{left:930.631500px;}
.x2d{left:932.192267px;}
.x30{left:935.100000px;}
.xda{left:936.271350px;}
.x14{left:938.814750px;}
.x50{left:943.530000px;}
.xcc{left:944.551350px;}
.xdb{left:945.691350px;}
.x16{left:952.469998px;}
.x15{left:954.624750px;}
.x62{left:960.376500px;}
.x91{left:965.671500px;}
.xab{left:969.106500px;}
.x13{left:972.396750px;}
.x78{left:974.191500px;}
.x2c{left:976.196084px;}
.xfb{left:978.945000px;}
.x2b{left:981.652790px;}
.xcd{left:986.161350px;}
.x51{left:994.530000px;}
.x92{left:997.876500px;}
.x17{left:1000.529998px;}
.xee{left:1002.121350px;}
.x46{left:1005.195000px;}
.x63{left:1006.441500px;}
.x93{left:1020.841500px;}
.xfc{left:1022.190000px;}
.xf7{left:1023.990000px;}
.x3c{left:1026.780000px;}
.x2e{left:1041.326402px;}
.x79{left:1044.781500px;}
.x3f{left:1077.255000px;}
.x41{left:1078.965000px;}
.x40{left:1084.155000px;}
.xef{left:1107.526350px;}
.x7a{left:1116.076500px;}
.xed{left:1120.081350px;}
.xe9{left:1123.456350px;}
.x3e{left:1129.170000px;}
.x3d{left:1131.645000px;}
.x42{left:1136.175000px;}
.x43{left:1137.870000px;}
.x7b{left:1142.296500px;}
.x10{left:1147.755000px;}
.xea{left:1148.911350px;}
.x7c{left:1153.441500px;}
.xeb{left:1161.676350px;}
.x7d{left:1192.576500px;}
.xec{left:1198.846350px;}
.xf0{left:1213.291350px;}
.xb0{left:1227.616500px;}
.xb4{left:1228.861500px;}
.xb1{left:1236.031500px;}
.xb5{left:1242.826500px;}
.xf2{left:1258.081350px;}
.xb2{left:1263.226500px;}
.xb6{left:1264.876500px;}
.xb3{left:1266.706500px;}
.xf1{left:1279.756350px;}
.xf4{left:1319.161350px;}
.xf3{left:1332.424350px;}
@media print{
.v17{vertical-align:-90.826667pt;}
.v10{vertical-align:-77.546667pt;}
.v1b{vertical-align:-71.893333pt;}
.v12{vertical-align:-62.429867pt;}
.v16{vertical-align:-58.613333pt;}
.v14{vertical-align:-52.960000pt;}
.v2{vertical-align:-49.653333pt;}
.v19{vertical-align:-43.545773pt;}
.v1d{vertical-align:-39.705600pt;}
.vb{vertical-align:-35.946667pt;}
.v5{vertical-align:-32.000000pt;}
.vc{vertical-align:-28.373333pt;}
.v1{vertical-align:-26.506667pt;}
.v1f{vertical-align:-24.569600pt;}
.vd{vertical-align:-22.666667pt;}
.ve{vertical-align:-20.800000pt;}
.v11{vertical-align:-17.066667pt;}
.v8{vertical-align:-12.107200pt;}
.vf{vertical-align:-5.706667pt;}
.va{vertical-align:-1.866667pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:1.866667pt;}
.v4{vertical-align:7.469996pt;}
.v1a{vertical-align:9.440000pt;}
.v13{vertical-align:13.235200pt;}
.v15{vertical-align:15.093333pt;}
.v1e{vertical-align:18.937600pt;}
.v1c{vertical-align:20.853333pt;}
.v3{vertical-align:24.899985pt;}
.v7{vertical-align:30.239467pt;}
.v6{vertical-align:36.320000pt;}
.v9{vertical-align:51.413333pt;}
.ls2a{letter-spacing:-5.189333pt;}
.ls40{letter-spacing:-4.816000pt;}
.ls4f{letter-spacing:-4.704019pt;}
.ls4e{letter-spacing:-4.517352pt;}
.ls54{letter-spacing:-4.480000pt;}
.ls1e{letter-spacing:-3.994667pt;}
.lse{letter-spacing:-3.901333pt;}
.ls7{letter-spacing:-3.528000pt;}
.ls8{letter-spacing:-3.453333pt;}
.ls6{letter-spacing:-3.434667pt;}
.ls23{letter-spacing:-3.042667pt;}
.ls24{letter-spacing:-3.024019pt;}
.ls33{letter-spacing:-2.893333pt;}
.ls42{letter-spacing:-2.818667pt;}
.ls43{letter-spacing:-2.762667pt;}
.ls44{letter-spacing:-2.688000pt;}
.ls88{letter-spacing:-2.613333pt;}
.ls37{letter-spacing:-2.594667pt;}
.ls50{letter-spacing:-2.501333pt;}
.lsd{letter-spacing:-2.471253pt;}
.ls25{letter-spacing:-2.352000pt;}
.ls4d{letter-spacing:-2.240000pt;}
.ls31{letter-spacing:-2.184000pt;}
.ls9{letter-spacing:-2.165333pt;}
.ls1d{letter-spacing:-2.146667pt;}
.ls9c{letter-spacing:-2.109333pt;}
.ls7c{letter-spacing:-2.090667pt;}
.ls27{letter-spacing:-2.071520pt;}
.ls8e{letter-spacing:-2.016000pt;}
.ls26{letter-spacing:-1.997333pt;}
.ls9d{letter-spacing:-1.960000pt;}
.ls79{letter-spacing:-1.904000pt;}
.ls39{letter-spacing:-1.885333pt;}
.ls2e{letter-spacing:-1.848000pt;}
.ls92{letter-spacing:-1.792000pt;}
.ls53{letter-spacing:-1.773333pt;}
.ls7a{letter-spacing:-1.754667pt;}
.ls3e{letter-spacing:-1.736000pt;}
.ls59{letter-spacing:-1.680000pt;}
.ls96{letter-spacing:-1.661333pt;}
.ls51{letter-spacing:-1.642667pt;}
.ls38{letter-spacing:-1.592160pt;}
.ls3d{letter-spacing:-1.568000pt;}
.ls36{letter-spacing:-1.563627pt;}
.ls77{letter-spacing:-1.456019pt;}
.ls57{letter-spacing:-1.443787pt;}
.ls29{letter-spacing:-1.409547pt;}
.ls3a{letter-spacing:-1.400019pt;}
.ls52{letter-spacing:-1.368640pt;}
.ls58{letter-spacing:-1.250667pt;}
.ls30{letter-spacing:-1.238347pt;}
.ls78{letter-spacing:-1.194685pt;}
.ls7e{letter-spacing:-1.176019pt;}
.ls45{letter-spacing:-1.138667pt;}
.ls32{letter-spacing:-1.107093pt;}
.ls2d{letter-spacing:-1.097280pt;}
.ls99{letter-spacing:-1.082685pt;}
.ls21{letter-spacing:-1.061067pt;}
.ls46{letter-spacing:-0.970667pt;}
.ls56{letter-spacing:-0.930187pt;}
.ls9a{letter-spacing:-0.708480pt;}
.ls8c{letter-spacing:-0.672000pt;}
.ls80{letter-spacing:-0.518835pt;}
.ls22{letter-spacing:-0.349600pt;}
.ls60{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.172002pt;}
.ls5d{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.096000pt;}
.ls5c{letter-spacing:-0.073067pt;}
.ls4{letter-spacing:-0.067733pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019467pt;}
.ls1{letter-spacing:0.023296pt;}
.ls0{letter-spacing:0.023307pt;}
.lsa1{letter-spacing:0.056533pt;}
.ls5e{letter-spacing:0.096000pt;}
.ls6b{letter-spacing:0.126667pt;}
.ls3f{letter-spacing:0.131413pt;}
.ls20{letter-spacing:0.282133pt;}
.ls4c{letter-spacing:0.300004pt;}
.ls15{letter-spacing:0.318933pt;}
.lsf{letter-spacing:0.320000pt;}
.ls71{letter-spacing:0.373333pt;}
.ls74{letter-spacing:0.395200pt;}
.ls62{letter-spacing:0.423360pt;}
.ls1f{letter-spacing:0.441600pt;}
.ls48{letter-spacing:0.448006pt;}
.ls70{letter-spacing:0.506880pt;}
.ls1b{letter-spacing:0.532007pt;}
.ls72{letter-spacing:0.572533pt;}
.ls93{letter-spacing:0.608000pt;}
.ls13{letter-spacing:0.768000pt;}
.ls85{letter-spacing:0.866133pt;}
.ls94{letter-spacing:0.882080pt;}
.ls49{letter-spacing:0.904012pt;}
.ls86{letter-spacing:0.963200pt;}
.ls19{letter-spacing:0.980373pt;}
.ls7f{letter-spacing:1.002240pt;}
.ls7d{letter-spacing:1.064000pt;}
.ls63{letter-spacing:1.075680pt;}
.ls82{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.163893pt;}
.ls64{letter-spacing:1.196640pt;}
.ls6a{letter-spacing:1.299200pt;}
.ls16{letter-spacing:1.306400pt;}
.ls67{letter-spacing:1.418667pt;}
.ls98{letter-spacing:1.466693pt;}
.ls7b{letter-spacing:1.493333pt;}
.ls81{letter-spacing:1.541893pt;}
.ls2b{letter-spacing:1.543680pt;}
.lsa0{letter-spacing:1.555467pt;}
.ls5a{letter-spacing:1.600000pt;}
.ls61{letter-spacing:1.656800pt;}
.ls95{letter-spacing:1.702400pt;}
.ls76{letter-spacing:1.733360pt;}
.ls73{letter-spacing:1.829280pt;}
.ls8a{letter-spacing:1.829333pt;}
.ls47{letter-spacing:1.840027pt;}
.ls3b{letter-spacing:1.964026pt;}
.ls1a{letter-spacing:1.976026pt;}
.ls4a{letter-spacing:2.000027pt;}
.ls9e{letter-spacing:2.052000pt;}
.ls55{letter-spacing:2.053333pt;}
.ls6f{letter-spacing:2.062080pt;}
.ls83{letter-spacing:2.160000pt;}
.ls8f{letter-spacing:2.177280pt;}
.ls2f{letter-spacing:2.240000pt;}
.ls5b{letter-spacing:2.275200pt;}
.ls8b{letter-spacing:2.293333pt;}
.ls89{letter-spacing:2.344533pt;}
.ls2c{letter-spacing:2.346667pt;}
.ls68{letter-spacing:2.389333pt;}
.ls4b{letter-spacing:2.400000pt;}
.ls34{letter-spacing:2.434080pt;}
.ls41{letter-spacing:2.453333pt;}
.ls75{letter-spacing:2.462720pt;}
.ls90{letter-spacing:2.533333pt;}
.ls9f{letter-spacing:2.560000pt;}
.ls6d{letter-spacing:2.583467pt;}
.ls8d{letter-spacing:2.628267pt;}
.ls35{letter-spacing:2.640000pt;}
.ls91{letter-spacing:2.720000pt;}
.ls28{letter-spacing:2.853333pt;}
.ls9b{letter-spacing:2.906667pt;}
.ls97{letter-spacing:3.013333pt;}
.lsa{letter-spacing:3.093333pt;}
.ls87{letter-spacing:3.146667pt;}
.ls6e{letter-spacing:3.292800pt;}
.ls69{letter-spacing:3.300267pt;}
.lsc{letter-spacing:3.386667pt;}
.ls65{letter-spacing:3.464533pt;}
.ls17{letter-spacing:3.557333pt;}
.ls66{letter-spacing:3.606400pt;}
.ls18{letter-spacing:3.618667pt;}
.ls6c{letter-spacing:3.643733pt;}
.ls84{letter-spacing:3.733333pt;}
.lsb{letter-spacing:6.533333pt;}
.ls1c{letter-spacing:52.490667pt;}
.ls11{letter-spacing:790.874027pt;}
.ls12{letter-spacing:790.927360pt;}
.ls10{letter-spacing:844.687360pt;}
.wsc{word-spacing:-171.008000pt;}
.ws1{word-spacing:-96.000000pt;}
.ws3{word-spacing:-72.887040pt;}
.ws22{word-spacing:-54.574293pt;}
.ws24{word-spacing:-53.012736pt;}
.ws23{word-spacing:-52.968960pt;}
.ws0{word-spacing:-48.643851pt;}
.ws18{word-spacing:-36.479893pt;}
.ws19{word-spacing:-35.456000pt;}
.ws1a{word-spacing:-32.928000pt;}
.ws1b{word-spacing:-32.640000pt;}
.wsd{word-spacing:-24.000000pt;}
.wse{word-spacing:-23.968000pt;}
.ws9{word-spacing:-23.409970pt;}
.ws4{word-spacing:-23.353696pt;}
.ws12{word-spacing:-21.733333pt;}
.ws20{word-spacing:-19.965867pt;}
.ws11{word-spacing:-18.952000pt;}
.ws8{word-spacing:-18.908053pt;}
.ws7{word-spacing:-18.851779pt;}
.ws5{word-spacing:-17.782574pt;}
.ws6{word-spacing:-17.726300pt;}
.wsf{word-spacing:-16.639733pt;}
.wsb{word-spacing:-16.319450pt;}
.ws10{word-spacing:-14.272267pt;}
.ws17{word-spacing:-14.266667pt;}
.ws21{word-spacing:-14.085333pt;}
.wsa{word-spacing:-14.068492pt;}
.ws13{word-spacing:-13.466667pt;}
.ws14{word-spacing:-13.096175pt;}
.ws1e{word-spacing:-11.996640pt;}
.ws1d{word-spacing:-11.875680pt;}
.ws16{word-spacing:-11.652155pt;}
.ws1c{word-spacing:-11.223360pt;}
.ws15{word-spacing:-11.120148pt;}
.ws1f{word-spacing:-1.512000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-39.415432pt;}
._1d{margin-left:-34.054400pt;}
._11{margin-left:-31.848573pt;}
._c{margin-left:-29.618533pt;}
._12{margin-left:-28.707193pt;}
._13{margin-left:-24.150496pt;}
._14{margin-left:-23.239156pt;}
._23{margin-left:-22.168000pt;}
._d{margin-left:-20.960808pt;}
._f{margin-left:-19.583482pt;}
._7{margin-left:-17.146240pt;}
._e{margin-left:-16.127968pt;}
._22{margin-left:-14.951467pt;}
._5{margin-left:-13.718400pt;}
._3{margin-left:-12.296192pt;}
._37{margin-left:-11.396181pt;}
._6{margin-left:-10.334955pt;}
._24{margin-left:-9.214933pt;}
._17{margin-left:-8.287006pt;}
._48{margin-left:-7.336868pt;}
._15{margin-left:-6.287246pt;}
._16{margin-left:-4.606497pt;}
._4{margin-left:-3.647915pt;}
._2{margin-left:-2.127403pt;}
._0{margin-left:-1.065600pt;}
._1{width:1.278720pt;}
._35{width:2.315691pt;}
._1f{width:3.336533pt;}
._3d{width:4.375467pt;}
._20{width:5.630400pt;}
._2d{width:8.285867pt;}
._21{width:9.193867pt;}
._31{width:10.372267pt;}
._2c{width:12.080000pt;}
._3c{width:17.117867pt;}
._2b{width:18.933333pt;}
._2e{width:20.773333pt;}
._3e{width:22.826667pt;}
._26{width:23.952844pt;}
._27{width:28.373547pt;}
._28{width:31.490133pt;}
._34{width:32.758187pt;}
._2f{width:33.744000pt;}
._30{width:39.093333pt;}
._36{width:40.381653pt;}
._32{width:41.993003pt;}
._29{width:44.911467pt;}
._49{width:58.837333pt;}
._3b{width:63.019733pt;}
._46{width:65.318400pt;}
._33{width:74.639360pt;}
._1a{width:104.484267pt;}
._b{width:118.352000pt;}
._3f{width:132.563200pt;}
._43{width:159.440000pt;}
._38{width:187.711200pt;}
._40{width:198.064000pt;}
._1e{width:203.413333pt;}
._45{width:205.066667pt;}
._44{width:216.384859pt;}
._41{width:219.253333pt;}
._42{width:221.066667pt;}
._3a{width:237.173333pt;}
._39{width:243.126400pt;}
._1c{width:259.808000pt;}
._1b{width:261.120000pt;}
._8{width:268.085333pt;}
._a{width:329.804800pt;}
._9{width:422.195200pt;}
._47{width:443.489798pt;}
._2a{width:544.314581pt;}
._19{width:687.994889pt;}
._18{width:746.178529pt;}
._25{width:1595.304533pt;}
.fs4f{font-size:12.094933pt;}
.fs84{font-size:22.400000pt;}
.fs6d{font-size:24.533333pt;}
.fs59{font-size:27.733333pt;}
.fs8e{font-size:29.333867pt;}
.fs7c{font-size:29.866667pt;}
.fs4c{font-size:30.236267pt;}
.fs90{font-size:30.933867pt;}
.fs83{font-size:31.467200pt;}
.fs70{font-size:32.000000pt;}
.fs54{font-size:32.533333pt;}
.fs7f{font-size:33.600533pt;}
.fs79{font-size:34.133867pt;}
.fs77{font-size:34.667200pt;}
.fs6e{font-size:35.733333pt;}
.fs5d{font-size:36.800533pt;}
.fs81{font-size:38.400000pt;}
.fs55{font-size:39.307200pt;}
.fs4d{font-size:40.000533pt;}
.fs6b{font-size:41.066667pt;}
.fs78{font-size:41.600533pt;}
.fs86{font-size:43.200000pt;}
.fs45{font-size:44.800000pt;}
.fs60{font-size:45.354667pt;}
.fs43{font-size:46.933333pt;}
.fs8c{font-size:47.466667pt;}
.fs57{font-size:48.000000pt;}
.fs6c{font-size:48.378133pt;}
.fs51{font-size:49.066667pt;}
.fs4e{font-size:49.600000pt;}
.fs7b{font-size:50.133333pt;}
.fs68{font-size:50.666667pt;}
.fs5e{font-size:51.200000pt;}
.fs5c{font-size:52.266667pt;}
.fs44{font-size:52.800000pt;}
.fs46{font-size:53.866667pt;}
.fs7a{font-size:54.400000pt;}
.fs3e{font-size:54.425600pt;}
.fs16{font-size:54.779968pt;}
.fs22{font-size:56.000000pt;}
.fs3f{font-size:57.066667pt;}
.fs65{font-size:57.449067pt;}
.fs42{font-size:57.600000pt;}
.fs94{font-size:58.133333pt;}
.fsa0{font-size:58.880000pt;}
.fs8a{font-size:59.200000pt;}
.fs7e{font-size:59.733333pt;}
.fs8d{font-size:60.266667pt;}
.fs8f{font-size:60.800000pt;}
.fs35{font-size:61.333333pt;}
.fs24{font-size:61.866667pt;}
.fs19{font-size:62.249964pt;}
.fs47{font-size:62.400000pt;}
.fs88{font-size:62.933333pt;}
.fs5f{font-size:64.000000pt;}
.fs40{font-size:64.533333pt;}
.fs21{font-size:65.066667pt;}
.fs96{font-size:66.133333pt;}
.fs37{font-size:66.520000pt;}
.fs89{font-size:66.666667pt;}
.fs3b{font-size:67.200000pt;}
.fs29{font-size:67.733333pt;}
.fs2f{font-size:69.120533pt;}
.fs56{font-size:70.400000pt;}
.fs63{font-size:71.466667pt;}
.fs1a{font-size:72.209958pt;}
.fs6a{font-size:72.533333pt;}
.fs2e{font-size:72.960000pt;}
.fs4b{font-size:74.133333pt;}
.fs87{font-size:74.666667pt;}
.fs9e{font-size:74.880000pt;}
.fs66{font-size:75.200000pt;}
.fs64{font-size:75.590933pt;}
.fs48{font-size:76.800000pt;}
.fs91{font-size:77.333333pt;}
.fs14{font-size:78.434954pt;}
.fs13{font-size:78.683954pt;}
.fs53{font-size:78.933333pt;}
.fs5b{font-size:79.466667pt;}
.fs6f{font-size:80.000000pt;}
.fs52{font-size:80.533333pt;}
.fs85{font-size:81.066667pt;}
.fs69{font-size:81.600000pt;}
.fs67{font-size:82.133333pt;}
.fs49{font-size:82.666667pt;}
.fs8b{font-size:83.200000pt;}
.fs15{font-size:83.414951pt;}
.fs17{font-size:83.663951pt;}
.fsa{font-size:83.733333pt;}
.fs2a{font-size:84.800000pt;}
.fs75{font-size:85.120000pt;}
.fs73{font-size:85.248000pt;}
.fs3a{font-size:86.400533pt;}
.fs38{font-size:86.933333pt;}
.fs3c{font-size:87.466667pt;}
.fs99{font-size:90.133333pt;}
.fs1c{font-size:93.374946pt;}
.fs1b{font-size:93.623945pt;}
.fs4a{font-size:93.866667pt;}
.fs9a{font-size:94.933333pt;}
.fs3{font-size:96.000000pt;}
.fs32{font-size:96.128000pt;}
.fs2c{font-size:96.533333pt;}
.fs1e{font-size:98.133333pt;}
.fs23{font-size:98.666667pt;}
.fs28{font-size:99.200000pt;}
.fs20{font-size:100.800000pt;}
.fs39{font-size:101.333333pt;}
.fs95{font-size:102.933333pt;}
.fs12{font-size:103.334940pt;}
.fs18{font-size:103.583940pt;}
.fs2b{font-size:103.680533pt;}
.fs26{font-size:105.600533pt;}
.fs31{font-size:106.666667pt;}
.fs6{font-size:106.880000pt;}
.fs74{font-size:107.008000pt;}
.fs2d{font-size:111.466667pt;}
.fs33{font-size:112.000000pt;}
.fs36{font-size:114.133333pt;}
.fs34{font-size:117.248000pt;}
.fs80{font-size:125.866667pt;}
.fs58{font-size:127.466667pt;}
.fse{font-size:128.000000pt;}
.fs76{font-size:128.128000pt;}
.fs9b{font-size:128.533333pt;}
.fs61{font-size:129.067200pt;}
.fs27{font-size:130.666667pt;}
.fs7d{font-size:131.200000pt;}
.fs25{font-size:132.266667pt;}
.fs98{font-size:133.866667pt;}
.fs62{font-size:134.400533pt;}
.fs97{font-size:136.000000pt;}
.fs50{font-size:137.600000pt;}
.fs7{font-size:138.666667pt;}
.fs41{font-size:148.266667pt;}
.fs10{font-size:149.120000pt;}
.fsa2{font-size:149.248000pt;}
.fs30{font-size:151.466667pt;}
.fs3d{font-size:153.600000pt;}
.fs93{font-size:154.133333pt;}
.fs9f{font-size:154.880000pt;}
.fsa1{font-size:155.008000pt;}
.fs1f{font-size:156.266667pt;}
.fs9{font-size:160.000000pt;}
.fs82{font-size:164.266667pt;}
.fs8{font-size:165.333333pt;}
.fsf{font-size:170.880000pt;}
.fs1d{font-size:171.008000pt;}
.fs92{font-size:181.333333pt;}
.fs5a{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs11{font-size:227.834867pt;}
.fs4{font-size:234.880000pt;}
.fs5{font-size:235.008000pt;}
.fsc{font-size:288.000000pt;}
.fsd{font-size:288.128000pt;}
.fs72{font-size:320.000000pt;}
.fs71{font-size:320.128000pt;}
.fs9c{font-size:352.000000pt;}
.fs9d{font-size:352.128000pt;}
.fsb{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:3.456000pt;}
.y22{bottom:15.000000pt;}
.y149{bottom:15.328000pt;}
.yd1{bottom:23.264000pt;}
.y57{bottom:25.792000pt;}
.yce{bottom:33.312000pt;}
.yd2{bottom:35.456000pt;}
.y135{bottom:40.032000pt;}
.y148{bottom:47.328000pt;}
.y4c{bottom:48.000000pt;}
.yd0{bottom:52.064000pt;}
.y17{bottom:52.973333pt;}
.ycd{bottom:71.712000pt;}
.y6{bottom:72.288000pt;}
.y77{bottom:76.157600pt;}
.y51{bottom:76.800000pt;}
.y15{bottom:76.973333pt;}
.yb1{bottom:77.677600pt;}
.y4b{bottom:77.773333pt;}
.y83{bottom:79.184267pt;}
.y147{bottom:79.328000pt;}
.ycf{bottom:80.864000pt;}
.y19{bottom:86.413333pt;}
.y76{bottom:89.010933pt;}
.yb0{bottom:90.530933pt;}
.y82{bottom:93.544267pt;}
.y50{bottom:94.080000pt;}
.y75{bottom:97.330933pt;}
.y108{bottom:97.775067pt;}
.yaf{bottom:98.091067pt;}
.y4a{bottom:99.840000pt;}
.y5{bottom:101.088000pt;}
.ybd{bottom:102.624267pt;}
.yad{bottom:106.397600pt;}
.y144{bottom:106.688000pt;}
.ycc{bottom:110.112000pt;}
.y146{bottom:113.728000pt;}
.yae{bottom:113.957600pt;}
.y74{bottom:114.717600pt;}
.yab{bottom:120.757733pt;}
.ya9{bottom:122.277733pt;}
.yac{bottom:123.024267pt;}
.y101{bottom:123.321733pt;}
.y12c{bottom:124.260400pt;}
.y12d{bottom:124.268400pt;}
.y73{bottom:124.544267pt;}
.yaa{bottom:126.050933pt;}
.ybc{bottom:126.810933pt;}
.y4d{bottom:127.648000pt;}
.y53{bottom:128.864000pt;}
.ya7{bottom:130.584267pt;}
.y4{bottom:135.333333pt;}
.y3c{bottom:135.360000pt;}
.ya8{bottom:136.637600pt;}
.y72{bottom:137.397600pt;}
.y16{bottom:141.520000pt;}
.y12{bottom:142.106667pt;}
.yf7{bottom:142.708400pt;}
.ya6{bottom:146.464400pt;}
.y71{bottom:147.224267pt;}
.ycb{bottom:148.506667pt;}
.ya5{bottom:149.490933pt;}
.ya4{bottom:150.997600pt;}
.ybb{bottom:151.757733pt;}
.y107{bottom:152.641733pt;}
.ya3{bottom:153.264267pt;}
.yf6{bottom:154.055067pt;}
.y49{bottom:156.480000pt;}
.ya1{bottom:157.050933pt;}
.y54{bottom:159.706667pt;}
.y143{bottom:162.400000pt;}
.yf5{bottom:163.988400pt;}
.ya2{bottom:165.357600pt;}
.y123{bottom:165.401733pt;}
.y10c{bottom:165.404933pt;}
.y36{bottom:166.333333pt;}
.y52{bottom:167.360000pt;}
.yf4{bottom:169.188400pt;}
.y70{bottom:169.890933pt;}
.y100{bottom:172.028400pt;}
.y12b{bottom:172.495067pt;}
.ya0{bottom:172.917600pt;}
.y9f{bottom:175.944400pt;}
.y10b{bottom:176.281733pt;}
.y122{bottom:176.761733pt;}
.yba{bottom:180.477600pt;}
.y31{bottom:180.740176pt;}
.yf3{bottom:182.908400pt;}
.y9e{bottom:186.530933pt;}
.y48{bottom:187.200000pt;}
.y9d{bottom:187.277733pt;}
.y6f{bottom:189.544267pt;}
.yf2{bottom:190.001733pt;}
.y81{bottom:191.810933pt;}
.y121{bottom:191.881733pt;}
.yff{bottom:198.508400pt;}
.yf0{bottom:199.455067pt;}
.yf1{bottom:199.921733pt;}
.y9c{bottom:200.131067pt;}
.yb9{bottom:200.890933pt;}
.y9b{bottom:203.917600pt;}
.y6e{bottom:204.664267pt;}
.y13{bottom:205.346667pt;}
.yef{bottom:206.081733pt;}
.y10a{bottom:206.555867pt;}
.y9a{bottom:207.690933pt;}
.y24{bottom:210.806908pt;}
.y6d{bottom:211.477600pt;}
.yee{bottom:212.695067pt;}
.yb8{bottom:212.984400pt;}
.y28{bottom:213.234657pt;}
.y142{bottom:213.440000pt;}
.y80{bottom:214.503733pt;}
.y47{bottom:215.053333pt;}
.y2d{bottom:215.724655pt;}
.y99{bottom:217.517600pt;}
.y11f{bottom:217.895067pt;}
.y120{bottom:218.375067pt;}
.yed{bottom:220.735067pt;}
.y3b{bottom:220.813333pt;}
.y109{bottom:223.575067pt;}
.y98{bottom:225.077600pt;}
.yb7{bottom:225.837733pt;}
.y6c{bottom:226.584267pt;}
.y11{bottom:226.586667pt;}
.yec{bottom:226.881733pt;}
.y11e{bottom:231.135067pt;}
.y97{bottom:233.397600pt;}
.y11d{bottom:234.921733pt;}
.yeb{bottom:235.868400pt;}
.y7f{bottom:236.417333pt;}
.yc1{bottom:237.213333pt;}
.y12a{bottom:237.761733pt;}
.yb6{bottom:237.930933pt;}
.yea{bottom:239.175067pt;}
.y6b{bottom:239.437600pt;}
.y6a{bottom:239.443467pt;}
.y1e{bottom:240.293333pt;}
.y141{bottom:241.120000pt;}
.y46{bottom:242.413333pt;}
.y96{bottom:242.464400pt;}
.y106{bottom:247.227760pt;}
.y11c{bottom:248.161733pt;}
.y69{bottom:249.264267pt;}
.y95{bottom:251.530933pt;}
.y35{bottom:252.773333pt;}
.ye9{bottom:253.361733pt;}
.yb5{bottom:254.557600pt;}
.y93{bottom:256.064267pt;}
.y129{bottom:256.681733pt;}
.y55{bottom:257.213333pt;}
.y11b{bottom:257.628400pt;}
.y7e{bottom:258.330933pt;}
.y68{bottom:259.850933pt;}
.y45{bottom:261.133333pt;}
.ye8{bottom:261.881733pt;}
.y94{bottom:262.877600pt;}
.y7a{bottom:263.624267pt;}
.yb4{bottom:268.157600pt;}
.y91{bottom:269.677600pt;}
.yc{bottom:269.760000pt;}
.y11a{bottom:270.388400pt;}
.y67{bottom:271.184267pt;}
.y4e{bottom:272.506667pt;}
.yb3{bottom:273.449067pt;}
.y105{bottom:274.175067pt;}
.y92{bottom:274.210933pt;}
.ye7{bottom:274.641733pt;}
.y131{bottom:274.653467pt;}
.y79{bottom:277.984045pt;}
.y90{bottom:278.744267pt;}
.y44{bottom:279.373333pt;}
.y7d{bottom:281.009467pt;}
.y66{bottom:282.530933pt;}
.y128{bottom:283.161733pt;}
.y8f{bottom:283.277733pt;}
.y134{bottom:283.360000pt;}
.y119{bottom:286.948400pt;}
.y140{bottom:287.546667pt;}
.y8e{bottom:289.330933pt;}
.y8c{bottom:290.837733pt;}
.ye6{bottom:291.201733pt;}
.y8d{bottom:293.104267pt;}
.y78{bottom:294.624267pt;}
.y10{bottom:297.026667pt;}
.yb{bottom:298.560000pt;}
.y118{bottom:298.761733pt;}
.yb2{bottom:299.157600pt;}
.y65{bottom:301.424400pt;}
.ye5{bottom:302.081733pt;}
.y7c{bottom:303.693467pt;}
.y130{bottom:305.858267pt;}
.y8a{bottom:308.224267pt;}
.y145{bottom:308.453333pt;}
.y117{bottom:308.695067pt;}
.y43{bottom:309.133333pt;}
.ye4{bottom:312.001733pt;}
.y12f{bottom:312.948400pt;}
.ye3{bottom:313.895067pt;}
.y8b{bottom:314.277733pt;}
.y116{bottom:314.375067pt;}
.y64{bottom:315.784267pt;}
.ye2{bottom:317.681733pt;}
.ye1{bottom:320.988400pt;}
.y127{bottom:322.415067pt;}
.y89{bottom:323.344267pt;}
.y126{bottom:323.361733pt;}
.y63{bottom:324.850933pt;}
.y88{bottom:325.611067pt;}
.y1d{bottom:326.720000pt;}
.ya{bottom:327.360000pt;}
.yc0{bottom:333.253333pt;}
.y42{bottom:333.613333pt;}
.y87{bottom:336.197600pt;}
.y115{bottom:336.601733pt;}
.y13f{bottom:338.586667pt;}
.y34{bottom:339.200000pt;}
.y62{bottom:339.224267pt;}
.ye0{bottom:339.908400pt;}
.y136{bottom:340.293333pt;}
.y86{bottom:343.757733pt;}
.y25{bottom:345.150111pt;}
.y85{bottom:345.264267pt;}
.y7b{bottom:348.290933pt;}
.y114{bottom:349.841733pt;}
.y61{bottom:350.557600pt;}
.y2e{bottom:350.934170pt;}
.y3a{bottom:351.853333pt;}
.ydf{bottom:352.681733pt;}
.y41{bottom:355.200000pt;}
.y9{bottom:356.160000pt;}
.y84{bottom:357.357600pt;}
.y60{bottom:358.117600pt;}
.y29{bottom:359.597290pt;}
.y125{bottom:361.188400pt;}
.y12e{bottom:361.668400pt;}
.y13e{bottom:366.266667pt;}
.y113{bottom:369.695067pt;}
.yde{bottom:372.535067pt;}
.y5f{bottom:378.530933pt;}
.y112{bottom:383.415067pt;}
.y8{bottom:384.986667pt;}
.ydd{bottom:386.255067pt;}
.ydc{bottom:388.615067pt;}
.y133{bottom:388.986667pt;}
.y104{bottom:389.095067pt;}
.y2c{bottom:391.396647pt;}
.y40{bottom:392.653333pt;}
.y3e{bottom:393.133333pt;}
.y111{bottom:395.241733pt;}
.y124{bottom:395.708400pt;}
.ydb{bottom:397.601733pt;}
.y110{bottom:404.228400pt;}
.y102{bottom:406.108400pt;}
.yda{bottom:406.588400pt;}
.y10f{bottom:408.948400pt;}
.y3f{bottom:408.973333pt;}
.y103{bottom:410.375067pt;}
.yd9{bottom:411.321733pt;}
.y26{bottom:412.198510pt;}
.y13d{bottom:412.706667pt;}
.y1c{bottom:413.146667pt;}
.y7{bottom:413.786667pt;}
.y2b{bottom:414.117884pt;}
.y5e{bottom:414.810933pt;}
.y4f{bottom:417.413333pt;}
.y2f{bottom:417.541632pt;}
.y10e{bottom:418.415067pt;}
.yd8{bottom:420.308400pt;}
.y33{bottom:425.600000pt;}
.y10d{bottom:426.455067pt;}
.yd7{bottom:427.868400pt;}
.ybf{bottom:429.280000pt;}
.yd6{bottom:429.281733pt;}
.y27{bottom:433.778497pt;}
.yd5{bottom:435.441733pt;}
.y2a{bottom:437.202245pt;}
.y30{bottom:439.199431pt;}
.yd4{bottom:450.561733pt;}
.y3d{bottom:453.133333pt;}
.y5d{bottom:454.877600pt;}
.y138{bottom:458.493333pt;}
.y39{bottom:459.853333pt;}
.y13c{bottom:463.426667pt;}
.y38{bottom:469.933333pt;}
.y18{bottom:479.533333pt;}
.y137{bottom:487.293333pt;}
.y5c{bottom:488.131067pt;}
.y13b{bottom:489.506667pt;}
.y132{bottom:494.626667pt;}
.yfe{bottom:497.855067pt;}
.y1b{bottom:499.546667pt;}
.yf{bottom:504.293333pt;}
.y56{bottom:520.506667pt;}
.y3{bottom:524.986667pt;}
.ybe{bottom:525.280000pt;}
.yfd{bottom:527.175067pt;}
.y13a{bottom:535.933333pt;}
.y32{bottom:539.200000pt;}
.yfc{bottom:549.401733pt;}
.yca{bottom:564.320000pt;}
.ye{bottom:568.293333pt;}
.yc6{bottom:571.293333pt;}
.y23{bottom:579.443412pt;}
.y5a{bottom:579.597600pt;}
.y5b{bottom:584.890933pt;}
.y1a{bottom:585.986667pt;}
.yc9{bottom:588.000000pt;}
.y2{bottom:588.986667pt;}
.yc5{bottom:595.013333pt;}
.y37{bottom:604.933333pt;}
.yc8{bottom:605.440000pt;}
.yc4{bottom:612.453333pt;}
.yfa{bottom:613.721733pt;}
.y139{bottom:614.586667pt;}
.yfb{bottom:617.508400pt;}
.yd{bottom:632.320000pt;}
.y59{bottom:635.530933pt;}
.y20{bottom:637.440000pt;}
.y14{bottom:642.400000pt;}
.yc3{bottom:644.453333pt;}
.yf9{bottom:652.975067pt;}
.y1{bottom:653.026667pt;}
.y1f{bottom:661.786667pt;}
.yc7{bottom:669.440000pt;}
.y21{bottom:670.786667pt;}
.yc2{bottom:676.453333pt;}
.y58{bottom:687.690933pt;}
.yf8{bottom:689.855067pt;}
.h5a{height:8.055226pt;}
.h53{height:20.137354pt;}
.h97{height:23.362500pt;}
.h61{height:26.178595pt;}
.h64{height:28.925000pt;}
.h8c{height:29.312500pt;}
.h6b{height:30.206208pt;}
.ha2{height:30.594306pt;}
.h96{height:30.883336pt;}
.h7f{height:31.406250pt;}
.h79{height:32.219837pt;}
.ha4{height:32.263056pt;}
.h90{height:32.977086pt;}
.h89{height:33.500523pt;}
.h60{height:33.931250pt;}
.h87{height:34.023961pt;}
.h7c{height:35.070312pt;}
.h67{height:36.117711pt;}
.h44{height:36.247450pt;}
.h71{height:38.261078pt;}
.h82{height:39.281250pt;}
.h93{height:40.050000pt;}
.h78{height:40.304688pt;}
.h55{height:41.719306pt;}
.h1d{height:41.763403pt;}
.h98{height:42.398437pt;}
.h88{height:43.388056pt;}
.h56{height:43.946875pt;}
.h99{height:43.968750pt;}
.h3d{height:44.302320pt;}
.ha7{height:45.056250pt;}
.h34{height:46.034275pt;}
.h58{height:46.039583pt;}
.h70{height:46.062500pt;}
.ha0{height:46.585938pt;}
.h4c{height:46.725000pt;}
.h69{height:47.109375pt;}
.hb9{height:48.185000pt;}
.h1e{height:48.445548pt;}
.h33{height:48.591360pt;}
.h57{height:48.655469pt;}
.h95{height:48.679688pt;}
.h49{height:48.950000pt;}
.h5c{height:49.450000pt;}
.h75{height:49.726562pt;}
.h7d{height:50.062500pt;}
.h6f{height:50.343562pt;}
.h66{height:51.296875pt;}
.h4b{height:51.820312pt;}
.h8b{height:52.287500pt;}
.hbb{height:52.375000pt;}
.h18{height:52.621888pt;}
.h17{height:52.788942pt;}
.h7a{height:52.843750pt;}
.h73{height:52.867187pt;}
.h8a{height:53.390625pt;}
.h68{height:53.400000pt;}
.hac{height:54.512500pt;}
.h1b{height:55.962961pt;}
.h45{height:56.007812pt;}
.h1a{height:56.130014pt;}
.h52{height:56.181250pt;}
.h48{height:56.531250pt;}
.h9c{height:56.737500pt;}
.h26{height:58.406250pt;}
.ha1{height:59.148438pt;}
.h3b{height:60.195312pt;}
.ha9{height:60.631250pt;}
.hb5{height:61.278750pt;}
.h19{height:61.651780pt;}
.h9d{height:61.743750pt;}
.h9b{height:61.765625pt;}
.h8e{height:62.300000pt;}
.h6a{height:62.812500pt;}
.ha3{height:63.412500pt;}
.h25{height:63.859375pt;}
.h28{height:63.936000pt;}
.h54{height:63.968750pt;}
.h29{height:64.525000pt;}
.h4d{height:65.081250pt;}
.h41{height:65.953125pt;}
.h2e{height:66.476562pt;}
.h46{height:67.306250pt;}
.hab{height:68.975000pt;}
.h30{height:69.051235pt;}
.h62{height:69.093750pt;}
.h16{height:69.327250pt;}
.h1c{height:69.494303pt;}
.h85{height:69.658750pt;}
.h83{height:69.763500pt;}
.hb6{height:69.890625pt;}
.h1f{height:70.115101pt;}
.h6e{height:70.140625pt;}
.h2b{height:70.329955pt;}
.h4a{height:70.643750pt;}
.h51{height:72.757812pt;}
.h9a{height:73.281250pt;}
.h4e{height:75.375000pt;}
.ha5{height:75.898438pt;}
.h7b{height:77.000833pt;}
.h5e{height:77.468750pt;}
.hbe{height:77.811562pt;}
.h72{height:78.431250pt;}
.h7e{height:78.515625pt;}
.h5{height:78.562500pt;}
.h5d{height:79.039062pt;}
.hb2{height:79.562500pt;}
.h5f{height:80.100000pt;}
.h9f{height:81.132812pt;}
.h9e{height:82.328950pt;}
.h40{height:84.797398pt;}
.h77{height:85.106250pt;}
.h3e{height:85.320313pt;}
.h4f{height:86.218750pt;}
.hf{height:87.331250pt;}
.hb{height:87.466250pt;}
.h84{height:87.571000pt;}
.h42{height:88.150000pt;}
.h2f{height:88.443750pt;}
.haf{height:90.898958pt;}
.h8d{height:92.818958pt;}
.h31{height:94.742188pt;}
.h39{height:95.951000pt;}
.h74{height:96.971146pt;}
.h2d{height:97.359375pt;}
.h50{height:97.900000pt;}
.h3f{height:99.453125pt;}
.h4{height:100.125000pt;}
.h36{height:100.258500pt;}
.h91{height:100.392292pt;}
.h92{height:100.864583pt;}
.h22{height:102.350000pt;}
.h27{height:102.906250pt;}
.h24{height:105.131250pt;}
.haa{height:107.356250pt;}
.hbd{height:108.656625pt;}
.h37{height:111.472500pt;}
.h59{height:111.695000pt;}
.h3c{height:112.015625pt;}
.h32{height:116.256250pt;}
.h38{height:116.812500pt;}
.h20{height:122.033750pt;}
.h63{height:125.101562pt;}
.hb8{height:126.747500pt;}
.hba{height:126.852250pt;}
.h2c{height:128.242188pt;}
.h8f{height:128.765625pt;}
.had{height:133.476562pt;}
.h76{height:133.500000pt;}
.h86{height:133.633500pt;}
.h6c{height:134.613056pt;}
.h2a{height:137.950000pt;}
.hae{height:139.618750pt;}
.h21{height:139.946000pt;}
.h6d{height:140.175556pt;}
.hb0{height:142.042223pt;}
.h5b{height:143.512500pt;}
.hd{height:144.625000pt;}
.h47{height:145.515625pt;}
.h35{height:148.656250pt;}
.hb1{height:149.058750pt;}
.h43{height:150.750000pt;}
.h23{height:153.367188pt;}
.h1{height:155.157187pt;}
.h2{height:155.250375pt;}
.h3a{height:155.527500pt;}
.he{height:157.031250pt;}
.ha8{height:160.756250pt;}
.h94{height:171.325000pt;}
.h6{height:174.408750pt;}
.h7{height:174.513500pt;}
.ha6{height:177.968750pt;}
.h13{height:178.222500pt;}
.h8{height:178.453750pt;}
.h65{height:188.437500pt;}
.ha{height:192.216250pt;}
.h9{height:192.321000pt;}
.h3{height:200.383500pt;}
.hbc{height:230.343750pt;}
.h11{height:235.687500pt;}
.h12{height:235.792250pt;}
.h15{height:237.624647pt;}
.hc{height:244.972500pt;}
.h81{height:261.875000pt;}
.h80{height:261.979750pt;}
.hb3{height:288.062500pt;}
.hb4{height:288.167250pt;}
.hb7{height:300.508500pt;}
.h10{height:400.500000pt;}
.h14{height:700.338029pt;}
.h0{height:720.000000pt;}
.w2{width:1245.049938pt;}
.w0{width:1280.000000pt;}
.w1{width:1280.159999pt;}
.w3{width:1280.160000pt;}
.x0{left:0.000000pt;}
.x20{left:27.666667pt;}
.xc0{left:40.384000pt;}
.xbe{left:55.168000pt;}
.x21{left:94.933080pt;}
.x11{left:99.136000pt;}
.x52{left:104.608000pt;}
.xfa{left:143.520000pt;}
.xba{left:150.426667pt;}
.xbc{left:153.626667pt;}
.xbb{left:160.026667pt;}
.x5{left:207.040000pt;}
.x1b{left:218.880000pt;}
.xbd{left:223.066667pt;}
.xc4{left:226.294533pt;}
.xc5{left:227.667867pt;}
.xc3{left:229.561200pt;}
.x4d{left:230.493333pt;}
.x1a{left:233.146667pt;}
.xc2{left:235.387867pt;}
.x12{left:237.862000pt;}
.x1{left:246.400000pt;}
.xf9{left:248.960000pt;}
.x1f{left:258.493333pt;}
.x24{left:265.682934pt;}
.x1e{left:266.653333pt;}
.xf8{left:267.546667pt;}
.x4e{left:270.533333pt;}
.xa{left:271.520000pt;}
.x6{left:280.960000pt;}
.x22{left:282.672324pt;}
.x2f{left:286.355520pt;}
.x4a{left:289.213333pt;}
.x94{left:299.041333pt;}
.x49{left:301.026667pt;}
.x95{left:302.401333pt;}
.x96{left:305.134667pt;}
.x98{left:307.836533pt;}
.x35{left:309.466667pt;}
.x19{left:311.706667pt;}
.x18{left:312.826667pt;}
.xd{left:317.280000pt;}
.xf5{left:319.040000pt;}
.x36{left:323.453333pt;}
.x4b{left:328.026667pt;}
.x97{left:329.174667pt;}
.x34{left:334.746667pt;}
.xbf{left:335.680000pt;}
.xb7{left:336.866667pt;}
.x23{left:340.202808pt;}
.x44{left:348.106667pt;}
.x25{left:352.030536pt;}
.x64{left:355.028000pt;}
.x99{left:360.854667pt;}
.x32{left:362.626667pt;}
.x6a{left:364.614667pt;}
.x37{left:370.000000pt;}
.x9a{left:376.721333pt;}
.x33{left:379.746667pt;}
.x6b{left:383.774667pt;}
.x1d{left:387.840000pt;}
.x9b{left:388.948000pt;}
.x85{left:392.788000pt;}
.xce{left:395.614533pt;}
.x3{left:397.946667pt;}
.x7e{left:399.374667pt;}
.xb9{left:402.786667pt;}
.xcf{left:405.561200pt;}
.xdf{left:408.921200pt;}
.x9c{left:410.721333pt;}
.xf6{left:413.786667pt;}
.x86{left:420.601333pt;}
.x4{left:421.826667pt;}
.x1c{left:424.506667pt;}
.x7f{left:426.654667pt;}
.xd0{left:433.027867pt;}
.xe{left:434.746667pt;}
.x87{left:437.961333pt;}
.xe3{left:447.187867pt;}
.x80{left:450.214667pt;}
.x6c{left:458.614667pt;}
.xf{left:461.306667pt;}
.x2{left:462.586667pt;}
.xb8{left:464.546667pt;}
.x9{left:471.386667pt;}
.xa0{left:475.134667pt;}
.x6d{left:477.921333pt;}
.xe2{left:483.174533pt;}
.x5d{left:485.628000pt;}
.x6e{left:487.841333pt;}
.x81{left:489.161333pt;}
.x8{left:490.586667pt;}
.x88{left:491.654667pt;}
.xa1{left:497.014667pt;}
.x82{left:497.921333pt;}
.xc9{left:501.174533pt;}
.xe1{left:508.667867pt;}
.x89{left:510.774667pt;}
.x9f{left:513.268000pt;}
.x6f{left:520.254667pt;}
.xa2{left:523.388000pt;}
.xdc{left:526.547867pt;}
.xde{left:538.454533pt;}
.x29{left:542.389518pt;}
.x83{left:543.588000pt;}
.x70{left:547.521333pt;}
.x31{left:549.826667pt;}
.xc1{left:550.853333pt;}
.xc{left:552.506667pt;}
.x5e{left:557.361333pt;}
.x65{left:559.481333pt;}
.x2a{left:563.243670pt;}
.x8a{left:565.041333pt;}
.x28{left:567.601254pt;}
.xca{left:568.641200pt;}
.x47{left:570.106667pt;}
.xd1{left:572.441200pt;}
.x5f{left:582.414667pt;}
.x26{left:585.290970pt;}
.xe0{left:587.681200pt;}
.xcb{left:590.467867pt;}
.x53{left:596.028000pt;}
.x4c{left:600.066667pt;}
.xe6{left:603.526533pt;}
.xd2{left:609.401200pt;}
.xd3{left:616.094533pt;}
.x54{left:617.281333pt;}
.x55{left:620.961333pt;}
.xe5{left:622.094533pt;}
.x48{left:624.573333pt;}
.xc6{left:626.414533pt;}
.x56{left:633.908000pt;}
.x27{left:639.371700pt;}
.xe4{left:641.014533pt;}
.x57{left:646.721333pt;}
.x84{left:649.094667pt;}
.x58{left:652.641333pt;}
.x71{left:655.081333pt;}
.xe7{left:656.641200pt;}
.x59{left:662.454667pt;}
.x9d{left:666.374667pt;}
.x5a{left:671.614667pt;}
.x8b{left:673.174667pt;}
.xc7{left:675.134533pt;}
.x9e{left:679.108000pt;}
.x66{left:682.308000pt;}
.xd4{left:684.201200pt;}
.x39{left:685.253333pt;}
.x3b{left:690.773333pt;}
.xae{left:694.974667pt;}
.xa3{left:695.948000pt;}
.xa8{left:697.948000pt;}
.x72{left:698.868000pt;}
.x38{left:700.373333pt;}
.xad{left:701.588000pt;}
.xb{left:708.386667pt;}
.x60{left:710.188000pt;}
.xd5{left:713.787867pt;}
.x67{left:716.028000pt;}
.x5b{left:719.214667pt;}
.xa4{left:723.708000pt;}
.xaf{left:724.654667pt;}
.xa7{left:726.708000pt;}
.x73{left:728.134667pt;}
.x3a{left:729.653333pt;}
.x8c{left:731.281333pt;}
.x4f{left:732.866667pt;}
.x7{left:734.466667pt;}
.x74{left:738.961333pt;}
.xd6{left:740.947867pt;}
.xa5{left:741.961333pt;}
.xe8{left:744.507867pt;}
.xac{left:748.041333pt;}
.x8d{left:749.414667pt;}
.xc8{left:752.121200pt;}
.x8e{left:753.174667pt;}
.xa6{left:754.774667pt;}
.xdd{left:758.894533pt;}
.xd7{left:762.974533pt;}
.x75{left:766.894667pt;}
.x8f{left:770.601333pt;}
.x61{left:781.254667pt;}
.x5c{left:782.614667pt;}
.xa9{left:786.428000pt;}
.xaa{left:788.801333pt;}
.xd8{left:791.094533pt;}
.xd9{left:796.654533pt;}
.x90{left:800.068000pt;}
.x45{left:801.906667pt;}
.x68{left:804.028000pt;}
.x76{left:805.988000pt;}
.x69{left:812.948000pt;}
.x77{left:827.228000pt;}
.x2d{left:828.615348pt;}
.x30{left:831.200000pt;}
.xda{left:832.241200pt;}
.x14{left:834.502000pt;}
.x50{left:838.693333pt;}
.xcc{left:839.601200pt;}
.xdb{left:840.614533pt;}
.x16{left:846.639999pt;}
.x15{left:848.555333pt;}
.x62{left:853.668000pt;}
.x91{left:858.374667pt;}
.xab{left:861.428000pt;}
.x13{left:864.352667pt;}
.x78{left:865.948000pt;}
.x2c{left:867.729852pt;}
.xfb{left:870.173333pt;}
.x2b{left:872.580258pt;}
.xcd{left:876.587867pt;}
.x51{left:884.026667pt;}
.x92{left:887.001333pt;}
.x17{left:889.359999pt;}
.xee{left:890.774533pt;}
.x46{left:893.506667pt;}
.x63{left:894.614667pt;}
.x93{left:907.414667pt;}
.xfc{left:908.613333pt;}
.xf7{left:910.213333pt;}
.x3c{left:912.693333pt;}
.x2e{left:925.623468pt;}
.x79{left:928.694667pt;}
.x3f{left:957.560000pt;}
.x41{left:959.080000pt;}
.x40{left:963.693333pt;}
.xef{left:984.467867pt;}
.x7a{left:992.068000pt;}
.xed{left:995.627867pt;}
.xe9{left:998.627867pt;}
.x3e{left:1003.706667pt;}
.x3d{left:1005.906667pt;}
.x42{left:1009.933333pt;}
.x43{left:1011.440000pt;}
.x7b{left:1015.374667pt;}
.x10{left:1020.226667pt;}
.xea{left:1021.254533pt;}
.x7c{left:1025.281333pt;}
.xeb{left:1032.601200pt;}
.x7d{left:1060.068000pt;}
.xec{left:1065.641200pt;}
.xf0{left:1078.481200pt;}
.xb0{left:1091.214667pt;}
.xb4{left:1092.321333pt;}
.xb1{left:1098.694667pt;}
.xb5{left:1104.734667pt;}
.xf2{left:1118.294533pt;}
.xb2{left:1122.868000pt;}
.xb6{left:1124.334667pt;}
.xb3{left:1125.961333pt;}
.xf1{left:1137.561200pt;}
.xf4{left:1172.587867pt;}
.xf3{left:1184.377200pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  