
    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_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d0f14e171ac1db83bc5456dc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ef438d8b95f82396d561808c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a33deea1ee2f6ad2b99e131.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_966f29cde75bc6de13fb5135.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f4fb3d6d51079d67bdc84de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9b5751bf2446e97ed6c4d44b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b638c0a2d868260dafad151f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bc7a40e88c6b5863f159d345.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_6284f2cd7b614394c644c9e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_35bbbbdab1f6171cff8efb3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.009766;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_a54aafaf9a13c848308de06f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bffca410f46198310b4d0f89.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_22804f2216dceeeb9e303a81.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_16da144d27b4f389c98c0f03.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b3e948e89f1601230641d815.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_14eda1f77bea47967ab2e6ee.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.120117;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_325c24f38b84d7bd3f457656.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.730957;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_75a1c82be186223862c602af.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9a70888a5cb7243dac7b820b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.106934;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_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_22ca78618af85a6571b12fe8.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a12f4fed58bbd0ee3f435131.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_182679e1a91d97a950a101a8.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.740723;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_7eb4d0e43529d695a566589f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_ad33c00c4a106b801ac93881.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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_af028c9d8443d0aaca20721c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.740723;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_afb1efc39c171fd4a08ac6d0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.106934;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_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_d26c25b6a823974d93d04d09.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_7798450b0fa63d58a5531e50.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_185a22b131f7b994eaaa0339.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_21d456f54c6ad7595e7ba8ba.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_3f2a480412dc0787db18c51c.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_91076b4163acd61b484ba972.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_8e2e7902359a47a456cd0fb7.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_66cc8aac780ff81c1e688e5b.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.106934;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:ff29;src:url('chunks/assets/font_888c92c13b5bb354159a3d1b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.740723;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:ff2a;src:url('chunks/assets/font_f2354f19a42d842d1e03036a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;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:ff2b;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.740723;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:ff2c;src:url('chunks/assets/font_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_5cfde3305dc64a14349dd10f.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_68675b207398f1732cd57434.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.740723;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:ff30;src:url('chunks/assets/font_b110b5d20ccb77b7bb9be9d3.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_cf9ee9e82f63c57c686b4acc.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_6005ad4f2cfd6154201e3270.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;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:ff33;src:url('chunks/assets/font_735c46c68287ae860cc6996c.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.106934;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:ff34;src:url('chunks/assets/font_a54aafaf9a13c848308de06f.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_176dc8f47a97fc49a01916be.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_aec7e9c35079e47a63d5080b.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.740723;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:ff38;src:url('chunks/assets/font_cbd469dc658ed901983c4f3e.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_4c5342d7d6680ac92f7edb14.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938965;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:ff3a;src:url('chunks/assets/font_631f1ad67a4db90c37c87ba5.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.922363;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:ff3b;src:url('chunks/assets/font_0e922a793c448899a77a1537.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938965;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:ff3c;src:url('chunks/assets/font_f42d692894d5b38e646cc740.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.106934;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;}
.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);}
.v1{vertical-align:-80.640000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsd{letter-spacing:-2.178000px;}
.ls7{letter-spacing:-1.296000px;}
.ls25{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.189600px;}
.lse{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.109200px;}
.ls19{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.034560px;}
.lsb{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.106560px;}
.ls1c{letter-spacing:0.109200px;}
.ls1f{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.119520px;}
.ls26{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.223920px;}
.ls1d{letter-spacing:0.245520px;}
.ls18{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.305280px;}
.ls22{letter-spacing:0.306720px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.439920px;}
.ls9{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.593360px;}
.lsc{letter-spacing:23.904000px;}
.ls8{letter-spacing:28.200000px;}
.ls16{letter-spacing:28.224000px;}
.ls15{letter-spacing:100.812000px;}
.lsf{letter-spacing:102.972000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws1{word-spacing:-33.426720px;}
.ws2{word-spacing:-26.621280px;}
.ws6{word-spacing:-20.880000px;}
.ws3{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232000px;}
.ws19{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.872000px;}
.ws13{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.584000px;}
.ws18{word-spacing:-19.296000px;}
.wsf{word-spacing:-18.676920px;}
.ws12{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.305520px;}
.wsc{word-spacing:-16.704000px;}
.ws10{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.137280px;}
.ws0{word-spacing:-14.940000px;}
.ws17{word-spacing:-13.925280px;}
.ws14{word-spacing:-13.734480px;}
.ws16{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.625280px;}
.wse{word-spacing:-13.410720px;}
.wsb{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._2b{margin-left:-12.984000px;}
._25{margin-left:-2.664480px;}
._0{margin-left:-1.380480px;}
._2{width:1.285680px;}
._3{width:2.959440px;}
._1{width:4.878480px;}
._a{width:6.056400px;}
._21{width:7.135200px;}
._b{width:8.208000px;}
._2c{width:9.208800px;}
._10{width:10.224000px;}
._12{width:11.592000px;}
._9{width:12.612480px;}
._8{width:13.680000px;}
._f{width:15.050640px;}
._1f{width:16.392000px;}
._20{width:17.429040px;}
._7{width:18.600960px;}
._26{width:21.456000px;}
._d{width:23.400000px;}
._11{width:24.408000px;}
._23{width:25.560000px;}
._5{width:27.336000px;}
._29{width:28.368000px;}
._24{width:30.384000px;}
._2a{width:31.392000px;}
._6{width:32.904000px;}
._22{width:33.922320px;}
._e{width:35.136000px;}
._27{width:36.216000px;}
._28{width:37.584000px;}
._32{width:39.096000px;}
._c{width:40.968000px;}
._2e{width:42.264000px;}
._13{width:43.644480px;}
._30{width:44.784000px;}
._2f{width:46.884480px;}
._2d{width:48.384000px;}
._33{width:50.328000px;}
._31{width:54.864000px;}
._34{width:57.362400px;}
._1d{width:67.522320px;}
._16{width:74.133600px;}
._15{width:75.135840px;}
._14{width:76.663680px;}
._4{width:86.884080px;}
._1c{width:105.034320px;}
._35{width:122.506800px;}
._1a{width:128.313360px;}
._19{width:132.600000px;}
._1e{width:137.016000px;}
._17{width:177.156000px;}
._18{width:194.400000px;}
._1b{width:195.996000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1d6{bottom:3.420000px;}
.y24a{bottom:3.465000px;}
.y4{bottom:3.600000px;}
.y1b9{bottom:3.960000px;}
.yc3{bottom:4.140000px;}
.y18f{bottom:7.740000px;}
.y303{bottom:8.280000px;}
.y167{bottom:8.505000px;}
.y1ae{bottom:8.640000px;}
.y193{bottom:11.700000px;}
.y191{bottom:11.880000px;}
.y18d{bottom:12.060000px;}
.y2da{bottom:12.240000px;}
.y2c0{bottom:12.960000px;}
.yf1{bottom:13.140000px;}
.yfc{bottom:13.170000px;}
.yf3{bottom:13.185000px;}
.y16a{bottom:13.320000px;}
.y164{bottom:13.365000px;}
.y169{bottom:13.500000px;}
.y6b{bottom:14.400000px;}
.y79{bottom:14.430000px;}
.y70{bottom:14.445000px;}
.y73{bottom:14.580000px;}
.y17c{bottom:17.460000px;}
.y301{bottom:17.820000px;}
.y2ff{bottom:18.000000px;}
.y1b7{bottom:18.180000px;}
.yc0{bottom:19.440000px;}
.y18b{bottom:20.520000px;}
.yef{bottom:22.500000px;}
.y17a{bottom:22.860000px;}
.y161{bottom:22.905000px;}
.yc2{bottom:24.660000px;}
.y18e{bottom:25.020000px;}
.y1ad{bottom:27.540000px;}
.y166{bottom:27.585000px;}
.y18c{bottom:29.340000px;}
.y6d{bottom:30.420000px;}
.y300{bottom:31.860000px;}
.yf0{bottom:32.040000px;}
.y15f{bottom:32.085000px;}
.y163{bottom:32.265000px;}
.y17b{bottom:32.400000px;}
.y1b6{bottom:37.080000px;}
.yee{bottom:41.400000px;}
.y1b8{bottom:41.760000px;}
.y160{bottom:41.805000px;}
.y165{bottom:46.485000px;}
.y162{bottom:51.345000px;}
.y3{bottom:52.920000px;}
.y2{bottom:56.520000px;}
.y20c{bottom:111.240000px;}
.y9f{bottom:117.360000px;}
.y7f{bottom:119.160000px;}
.y2bc{bottom:120.240000px;}
.y26f{bottom:121.320000px;}
.y23e{bottom:124.560000px;}
.y1ef{bottom:124.740000px;}
.y26e{bottom:129.060000px;}
.y20b{bottom:129.240000px;}
.y11e{bottom:131.040000px;}
.y30e{bottom:133.740000px;}
.y188{bottom:134.280000px;}
.ydc{bottom:134.640000px;}
.y26d{bottom:136.800000px;}
.y100{bottom:137.340000px;}
.y23d{bottom:139.500000px;}
.y26c{bottom:144.540000px;}
.y1ee{bottom:144.900000px;}
.y23c{bottom:146.160000px;}
.y20a{bottom:147.240000px;}
.y29{bottom:147.960000px;}
.y9e{bottom:148.320000px;}
.y7e{bottom:150.120000px;}
.y2bb{bottom:151.380000px;}
.y1ed{bottom:152.640000px;}
.y1ec{bottom:157.860000px;}
.yff{bottom:158.040000px;}
.y2a5{bottom:160.380000px;}
.yfe{bottom:163.080000px;}
.y11d{bottom:163.260000px;}
.y5c{bottom:163.620000px;}
.y23b{bottom:163.980000px;}
.y30d{bottom:164.880000px;}
.y187{bottom:165.240000px;}
.ydb{bottom:165.600000px;}
.y1b3{bottom:165.960000px;}
.y2ef{bottom:166.860000px;}
.y7d{bottom:170.280000px;}
.y1eb{bottom:175.680000px;}
.y7c{bottom:178.020000px;}
.y28{bottom:178.920000px;}
.y9d{bottom:179.460000px;}
.y23a{bottom:181.980000px;}
.y5b{bottom:182.340000px;}
.y209{bottom:183.240000px;}
.y186{bottom:185.400000px;}
.y7b{bottom:185.940000px;}
.y13c{bottom:186.300000px;}
.y1b2{bottom:187.560000px;}
.y148{bottom:189.720000px;}
.y7a{bottom:190.980000px;}
.yfd{bottom:192.240000px;}
.y1ea{bottom:193.680000px;}
.y26b{bottom:194.220000px;}
.y2d7{bottom:194.580000px;}
.y11c{bottom:195.480000px;}
.y30c{bottom:195.840000px;}
.yda{bottom:196.740000px;}
.y1b1{bottom:197.820000px;}
.y239{bottom:199.980000px;}
.y208{bottom:201.060000px;}
.y185{bottom:204.120000px;}
.y1b0{bottom:204.300000px;}
.yb3{bottom:208.260000px;}
.y27{bottom:210.060000px;}
.y9c{bottom:210.420000px;}
.y1e9{bottom:211.680000px;}
.y5a{bottom:213.300000px;}
.y2ba{bottom:213.480000px;}
.y13b{bottom:217.440000px;}
.y238{bottom:217.980000px;}
.yfb{bottom:221.400000px;}
.y207{bottom:222.480000px;}
.y78{bottom:222.660000px;}
.y26a{bottom:225.390000px;}
.y2d6{bottom:225.750000px;}
.y30b{bottom:227.010000px;}
.y11b{bottom:227.910000px;}
.y2ee{bottom:228.810000px;}
.yd9{bottom:228.990000px;}
.y1e8{bottom:229.710000px;}
.y26{bottom:230.250000px;}
.y1af{bottom:233.490000px;}
.y184{bottom:235.110000px;}
.yb2{bottom:239.430000px;}
.y2a4{bottom:241.050000px;}
.y9b{bottom:241.590000px;}
.y59{bottom:244.470000px;}
.y237{bottom:247.170000px;}
.y1e7{bottom:247.710000px;}
.y13a{bottom:248.430000px;}
.y11a{bottom:248.610000px;}
.y25{bottom:248.790000px;}
.y206{bottom:248.970000px;}
.y2ed{bottom:249.150000px;}
.yfa{bottom:250.590000px;}
.y76{bottom:254.370000px;}
.y269{bottom:256.350000px;}
.y2d5{bottom:256.710000px;}
.y30a{bottom:257.970000px;}
.yd8{bottom:259.950000px;}
.y1ac{bottom:262.650000px;}
.y2b9{bottom:264.630000px;}
.y1e6{bottom:265.530000px;}
.y236{bottom:265.710000px;}
.y183{bottom:266.250000px;}
.y119{bottom:267.330000px;}
.y2ec{bottom:267.690000px;}
.yb1{bottom:270.390000px;}
.y2a3{bottom:272.190000px;}
.y9a{bottom:272.550000px;}
.y58{bottom:277.410000px;}
.y139{bottom:279.570000px;}
.yf9{bottom:279.750000px;}
.y24{bottom:279.930000px;}
.y2b8{bottom:283.350000px;}
.y1e5{bottom:283.530000px;}
.y77{bottom:286.230000px;}
.y268{bottom:287.490000px;}
.y2d4{bottom:287.850000px;}
.y309{bottom:289.110000px;}
.yd7{bottom:292.350000px;}
.y15c{bottom:293.610000px;}
.y235{bottom:296.850000px;}
.y182{bottom:297.210000px;}
.y118{bottom:298.290000px;}
.y2eb{bottom:298.830000px;}
.y2a2{bottom:300.090000px;}
.y205{bottom:300.450000px;}
.yb0{bottom:301.350000px;}
.y1e4{bottom:301.530000px;}
.y99{bottom:303.690000px;}
.y267{bottom:307.650000px;}
.y204{bottom:308.190000px;}
.yf8{bottom:308.910000px;}
.y138{bottom:310.530000px;}
.y23{bottom:310.890000px;}
.y57{bottom:311.070000px;}
.y203{bottom:313.050000px;}
.y2b7{bottom:314.310000px;}
.y234{bottom:314.850000px;}
.y266{bottom:315.390000px;}
.y1ab{bottom:315.570000px;}
.y75{bottom:317.910000px;}
.y2a1{bottom:318.630000px;}
.y2d3{bottom:318.810000px;}
.y1e3{bottom:319.530000px;}
.y308{bottom:320.070000px;}
.y233{bottom:320.430000px;}
.yaf{bottom:321.690000px;}
.yd6{bottom:323.310000px;}
.y15b{bottom:324.750000px;}
.y232{bottom:326.010000px;}
.y181{bottom:328.350000px;}
.y117{bottom:329.250000px;}
.y2ea{bottom:329.790000px;}
.y202{bottom:331.050000px;}
.y147{bottom:332.490000px;}
.y98{bottom:334.650000px;}
.y1aa{bottom:335.550000px;}
.yf7{bottom:338.070000px;}
.y2d2{bottom:338.970000px;}
.yae{bottom:340.230000px;}
.y1e2{bottom:340.950000px;}
.y137{bottom:341.670000px;}
.y22{bottom:342.030000px;}
.y265{bottom:343.110000px;}
.yd5{bottom:344.190000px;}
.y56{bottom:344.550000px;}
.y2b6{bottom:345.450000px;}
.y307{bottom:346.530000px;}
.y1e1{bottom:348.690000px;}
.y201{bottom:348.870000px;}
.y74{bottom:349.590000px;}
.y2a0{bottom:349.770000px;}
.y15a{bottom:355.710000px;}
.y2d1{bottom:357.690000px;}
.y136{bottom:359.310000px;}
.y2e9{bottom:360.930000px;}
.y116{bottom:361.650000px;}
.yd4{bottom:362.730000px;}
.y146{bottom:363.450000px;}
.y2b5{bottom:365.610000px;}
.y97{bottom:365.790000px;}
.y1a9{bottom:366.510000px;}
.y200{bottom:366.870000px;}
.yf6{bottom:367.230000px;}
.yad{bottom:371.370000px;}
.y306{bottom:371.910000px;}
.y21{bottom:372.990000px;}
.y264{bottom:374.070000px;}
.y231{bottom:375.690000px;}
.y135{bottom:377.850000px;}
.y55{bottom:378.030000px;}
.y29f{bottom:380.730000px;}
.y180{bottom:380.910000px;}
.y72{bottom:381.270000px;}
.y2b4{bottom:384.150000px;}
.y1ff{bottom:384.870000px;}
.y159{bottom:386.850000px;}
.y2d0{bottom:388.650000px;}
.y17f{bottom:391.170000px;}
.y2e8{bottom:391.890000px;}
.yd3{bottom:393.870000px;}
.y20{bottom:394.590000px;}
.yf5{bottom:396.390000px;}
.y96{bottom:396.750000px;}
.y230{bottom:397.110000px;}
.y17e{bottom:397.470000px;}
.y1a8{bottom:397.650000px;}
.y1e0{bottom:398.370000px;}
.y1f{bottom:400.890000px;}
.y263{bottom:401.430000px;}
.y29e{bottom:401.610000px;}
.yac{bottom:402.330000px;}
.y1fe{bottom:402.870000px;}
.y22f{bottom:407.550000px;}
.y262{bottom:408.090000px;}
.y134{bottom:408.810000px;}
.y29d{bottom:410.070000px;}
.y54{bottom:411.690000px;}
.y2e7{bottom:412.230000px;}
.y71{bottom:413.130000px;}
.y22e{bottom:413.850000px;}
.y29c{bottom:414.390000px;}
.y2b3{bottom:415.290000px;}
.y2e6{bottom:416.370000px;}
.y158{bottom:417.810000px;}
.y1df{bottom:418.530000px;}
.y2cf{bottom:419.790000px;}
.y1e{bottom:420.510000px;}
.y1fd{bottom:420.870000px;}
.yd2{bottom:424.830000px;}
.yf4{bottom:425.550000px;}
.y261{bottom:425.910000px;}
.y115{bottom:426.090000px;}
.y1de{bottom:426.270000px;}
.y17d{bottom:426.810000px;}
.y95{bottom:427.890000px;}
.y29b{bottom:431.490000px;}
.y22d{bottom:431.850000px;}
.yab{bottom:433.470000px;}
.y305{bottom:434.010000px;}
.y1a7{bottom:436.350000px;}
.y133{bottom:439.950000px;}
.y1d{bottom:440.310000px;}
.y1fc{bottom:442.110000px;}
.y260{bottom:443.910000px;}
.y6f{bottom:444.810000px;}
.y53{bottom:445.170000px;}
.y2b2{bottom:446.250000px;}
.y29a{bottom:448.770000px;}
.y157{bottom:448.950000px;}
.y22c{bottom:449.850000px;}
.y1fb{bottom:450.030000px;}
.y2ce{bottom:450.750000px;}
.y304{bottom:454.350000px;}
.yf2{bottom:454.710000px;}
.yd1{bottom:456.015000px;}
.y145{bottom:456.735000px;}
.y114{bottom:458.355000px;}
.y302{bottom:458.535000px;}
.y94{bottom:458.895000px;}
.y1c{bottom:459.975000px;}
.y25f{bottom:461.955000px;}
.yaa{bottom:464.475000px;}
.y299{bottom:466.095000px;}
.y1dd{bottom:466.455000px;}
.y1a6{bottom:467.535000px;}
.y22b{bottom:467.715000px;}
.y2e5{bottom:468.075000px;}
.y1fa{bottom:468.615000px;}
.y132{bottom:470.955000px;}
.y6c{bottom:476.535000px;}
.y1dc{bottom:476.715000px;}
.y2b1{bottom:477.435000px;}
.y52{bottom:478.875000px;}
.y93{bottom:479.055000px;}
.y1b{bottom:479.595000px;}
.y156{bottom:479.955000px;}
.y2cd{bottom:481.935000px;}
.y1db{bottom:483.195000px;}
.yed{bottom:483.915000px;}
.y179{bottom:485.175000px;}
.y22a{bottom:485.715000px;}
.y92{bottom:486.795000px;}
.yd0{bottom:486.975000px;}
.y144{bottom:487.695000px;}
.y113{bottom:489.495000px;}
.y2e4{bottom:493.815000px;}
.y91{bottom:494.715000px;}
.ya9{bottom:495.615000px;}
.y25e{bottom:497.955000px;}
.y1a5{bottom:498.495000px;}
.y90{bottom:499.755000px;}
.y298{bottom:500.475000px;}
.y1da{bottom:501.015000px;}
.y131{bottom:502.095000px;}
.y229{bottom:503.715000px;}
.y1a{bottom:504.075000px;}
.y6e{bottom:508.395000px;}
.y2cc{bottom:510.555000px;}
.y155{bottom:511.095000px;}
.y51{bottom:512.355000px;}
.y25d{bottom:515.775000px;}
.y297{bottom:517.575000px;}
.ycf{bottom:518.115000px;}
.y1c6{bottom:518.475000px;}
.y143{bottom:518.835000px;}
.y1d9{bottom:519.015000px;}
.y2e3{bottom:519.735000px;}
.y112{bottom:520.455000px;}
.y228{bottom:521.715000px;}
.y19{bottom:524.055000px;}
.ya8{bottom:526.575000px;}
.y1a4{bottom:529.635000px;}
.y1f9{bottom:530.715000px;}
.y154{bottom:531.255000px;}
.y8f{bottom:531.435000px;}
.y130{bottom:533.055000px;}
.y25c{bottom:533.775000px;}
.y2fe{bottom:534.135000px;}
.y296{bottom:534.855000px;}
.y1d8{bottom:537.015000px;}
.y178{bottom:538.095000px;}
.yce{bottom:538.275000px;}
.y142{bottom:538.995000px;}
.y2b0{bottom:539.535000px;}
.y227{bottom:539.715000px;}
.y6a{bottom:540.075000px;}
.y2e2{bottom:545.475000px;}
.y50{bottom:545.835000px;}
.y1c5{bottom:549.435000px;}
.y153{bottom:549.795000px;}
.y111{bottom:551.595000px;}
.y25b{bottom:551.775000px;}
.y295{bottom:552.135000px;}
.y18{bottom:555.015000px;}
.yec{bottom:555.735000px;}
.ycd{bottom:556.815000px;}
.ya7{bottom:557.535000px;}
.y177{bottom:558.075000px;}
.y2af{bottom:559.695000px;}
.y1f8{bottom:559.875000px;}
.y1a3{bottom:560.595000px;}
.y226{bottom:560.955000px;}
.y8e{bottom:563.115000px;}
.y12f{bottom:564.195000px;}
.y225{bottom:568.875000px;}
.y294{bottom:569.235000px;}
.y25a{bottom:569.775000px;}
.y2e1{bottom:571.395000px;}
.y110{bottom:571.755000px;}
.y1d7{bottom:573.015000px;}
.y3d{bottom:573.195000px;}
.y17{bottom:575.175000px;}
.y2ae{bottom:578.235000px;}
.y4f{bottom:579.495000px;}
.y1c4{bottom:580.575000px;}
.y152{bottom:580.935000px;}
.y1f7{bottom:581.475000px;}
.y10f{bottom:583.995000px;}
.y2fd{bottom:585.255000px;}
.yeb{bottom:586.875000px;}
.y224{bottom:587.415000px;}
.y259{bottom:587.595000px;}
.ycc{bottom:587.955000px;}
.ya6{bottom:588.675000px;}
.y176{bottom:589.035000px;}
.y1d5{bottom:590.835000px;}
.y1a2{bottom:591.735000px;}
.y2e0{bottom:592.095000px;}
.y16{bottom:593.895000px;}
.y8d{bottom:594.975000px;}
.y12e{bottom:595.155000px;}
.y2df{bottom:596.235000px;}
.y63{bottom:596.415000px;}
.y2cb{bottom:598.035000px;}
.y1f6{bottom:598.575000px;}
.y293{bottom:600.735000px;}
.y2fc{bottom:603.615000px;}
.y3c{bottom:604.155000px;}
.y10e{bottom:605.415000px;}
.y258{bottom:605.595000px;}
.yea{bottom:607.575000px;}
.ya5{bottom:608.835000px;}
.y2ad{bottom:609.375000px;}
.y1c3{bottom:611.535000px;}
.y151{bottom:611.895000px;}
.y1d4{bottom:612.255000px;}
.y4e{bottom:612.975000px;}
.y1f5{bottom:615.855000px;}
.y223{bottom:618.555000px;}
.ycb{bottom:618.915000px;}
.y141{bottom:619.635000px;}
.y1d3{bottom:619.995000px;}
.y175{bottom:620.175000px;}
.y2de{bottom:622.155000px;}
.y1a1{bottom:622.695000px;}
.y257{bottom:623.595000px;}
.y15{bottom:624.855000px;}
.ye9{bottom:626.295000px;}
.y8c{bottom:626.655000px;}
.y2ca{bottom:627.195000px;}
.ya4{bottom:627.555000px;}
.y292{bottom:631.875000px;}
.y1f4{bottom:633.135000px;}
.y2fb{bottom:634.755000px;}
.y3b{bottom:635.295000px;}
.y10d{bottom:637.095000px;}
.y1d2{bottom:638.715000px;}
.y174{bottom:640.335000px;}
.y1c2{bottom:642.675000px;}
.y150{bottom:643.035000px;}
.y256{bottom:645.015000px;}
.y4d{bottom:646.635000px;}
.y62{bottom:647.715000px;}
.y2dd{bottom:647.895000px;}
.y222{bottom:649.515000px;}
.yca{bottom:650.055000px;}
.y1f3{bottom:650.235000px;}
.y140{bottom:650.775000px;}
.y291{bottom:652.035000px;}
.y255{bottom:652.755000px;}
.y1a0{bottom:653.835000px;}
.y14{bottom:655.995000px;}
.y2fa{bottom:656.355000px;}
.ye8{bottom:657.255000px;}
.y8b{bottom:658.335000px;}
.ya3{bottom:658.515000px;}
.y173{bottom:659.055000px;}
.y2c9{bottom:661.755000px;}
.y3a{bottom:666.255000px;}
.y10c{bottom:668.775000px;}
.y1d1{bottom:669.675000px;}
.y290{bottom:670.575000px;}
.y1f2{bottom:670.935000px;}
.y254{bottom:671.475000px;}
.y1c1{bottom:673.635000px;}
.y2dc{bottom:673.815000px;}
.y14f{bottom:673.995000px;}
.y1f1{bottom:678.675000px;}
.y2f9{bottom:679.035000px;}
.y4c{bottom:680.115000px;}
.y221{bottom:680.475000px;}
.yc9{bottom:681.015000px;}
.y13f{bottom:681.735000px;}
.y2c8{bottom:681.915000px;}
.y19f{bottom:684.795000px;}
.y13{bottom:686.985000px;}
.y69{bottom:687.165000px;}
.ye7{bottom:688.425000px;}
.ya2{bottom:689.685000px;}
.y1d0{bottom:689.865000px;}
.y172{bottom:690.045000px;}
.y8a{bottom:690.225000px;}
.y2ac{bottom:692.925000px;}
.y2f8{bottom:696.165000px;}
.y39{bottom:697.425000px;}
.y2db{bottom:699.585000px;}
.y10b{bottom:700.665000px;}
.y28f{bottom:701.745000px;}
.y253{bottom:702.465000px;}
.y1c0{bottom:704.625000px;}
.y19e{bottom:704.985000px;}
.y14e{bottom:705.165000px;}
.y68{bottom:707.145000px;}
.y1cf{bottom:708.765000px;}
.y220{bottom:711.645000px;}
.yc8{bottom:712.185000px;}
.y13e{bottom:712.905000px;}
.y4b{bottom:713.625000px;}
.y12{bottom:718.125000px;}
.y2f7{bottom:718.305000px;}
.ye6{bottom:719.385000px;}
.y171{bottom:721.185000px;}
.y28e{bottom:721.905000px;}
.y252{bottom:722.625000px;}
.y19d{bottom:723.705000px;}
.y89{bottom:725.325000px;}
.y67{bottom:725.865000px;}
.y38{bottom:728.385000px;}
.y2f6{bottom:728.745000px;}
.y251{bottom:730.365000px;}
.y10a{bottom:732.345000px;}
.y88{bottom:733.065000px;}
.y2c7{bottom:733.785000px;}
.y2f5{bottom:734.145000px;}
.y1bf{bottom:735.765000px;}
.y14d{bottom:736.125000px;}
.y12d{bottom:739.545000px;}
.y28d{bottom:740.625000px;}
.ya1{bottom:740.805000px;}
.y21f{bottom:742.605000px;}
.yc7{bottom:743.145000px;}
.y2ab{bottom:743.865000px;}
.y4a{bottom:747.285000px;}
.y11{bottom:749.085000px;}
.ye5{bottom:750.525000px;}
.y2d9{bottom:751.245000px;}
.y2f4{bottom:751.425000px;}
.y87{bottom:751.785000px;}
.y170{bottom:752.145000px;}
.y2c6{bottom:752.325000px;}
.y19c{bottom:754.665000px;}
.y66{bottom:756.825000px;}
.y12c{bottom:758.265000px;}
.y37{bottom:759.525000px;}
.y21e{bottom:762.945000px;}
.y109{bottom:764.025000px;}
.y13d{bottom:764.205000px;}
.y1be{bottom:766.725000px;}
.y14c{bottom:767.265000px;}
.y2f3{bottom:768.525000px;}
.y1ce{bottom:770.685000px;}
.ye4{bottom:771.225000px;}
.y28c{bottom:771.585000px;}
.yc6{bottom:774.285000px;}
.y2aa{bottom:775.005000px;}
.y1f0{bottom:779.685000px;}
.y250{bottom:780.045000px;}
.y10{bottom:780.225000px;}
.y49{bottom:780.765000px;}
.y86{bottom:782.745000px;}
.y16f{bottom:783.105000px;}
.y2c5{bottom:783.465000px;}
.y19b{bottom:785.805000px;}
.y65{bottom:787.965000px;}
.y1bd{bottom:788.325000px;}
.y12b{bottom:789.225000px;}
.ye3{bottom:789.945000px;}
.y36{bottom:790.485000px;}
.y2a9{bottom:795.165000px;}
.y14b{bottom:798.225000px;}
.y1bc{bottom:798.585000px;}
.y1cd{bottom:801.825000px;}
.y28b{bottom:802.725000px;}
.y2d8{bottom:802.905000px;}
.y1bb{bottom:805.065000px;}
.yc5{bottom:805.245000px;}
.y108{bottom:810.105000px;}
.yf{bottom:811.185000px;}
.y85{bottom:813.705000px;}
.y16e{bottom:814.245000px;}
.y48{bottom:814.425000px;}
.y19a{bottom:816.765000px;}
.y64{bottom:818.925000px;}
.y12a{bottom:820.365000px;}
.ye2{bottom:820.905000px;}
.y35{bottom:821.625000px;}
.y28a{bottom:822.885000px;}
.y2f2{bottom:825.045000px;}
.yc4{bottom:827.385000px;}
.y14a{bottom:829.365000px;}
.ye{bottom:831.345000px;}
.y1cc{bottom:832.785000px;}
.yc1{bottom:834.045000px;}
.y1ba{bottom:834.225000px;}
.y2c4{bottom:835.305000px;}
.y16d{bottom:835.665000px;}
.y24f{bottom:839.085000px;}
.y2c3{bottom:840.345000px;}
.y107{bottom:841.245000px;}
.y289{bottom:841.425000px;}
.y21d{bottom:841.785000px;}
.y24e{bottom:844.125000px;}
.y84{bottom:844.845000px;}
.y16c{bottom:846.105000px;}
.y47{bottom:847.905000px;}
.yd{bottom:850.065000px;}
.y129{bottom:851.325000px;}
.ye1{bottom:852.045000px;}
.y21c{bottom:852.225000px;}
.y16b{bottom:852.405000px;}
.y34{bottom:852.585000px;}
.y280{bottom:856.545000px;}
.y21b{bottom:858.525000px;}
.y149{bottom:860.325000px;}
.y24d{bottom:862.125000px;}
.ybd{bottom:863.205000px;}
.y1b5{bottom:863.385000px;}
.y1cb{bottom:863.745000px;}
.y27f{bottom:864.285000px;}
.y83{bottom:865.005000px;}
.y199{bottom:868.065000px;}
.y27e{bottom:869.145000px;}
.y2c2{bottom:869.505000px;}
.y106{bottom:872.205000px;}
.y288{bottom:872.565000px;}
.y61{bottom:872.745000px;}
.y2a8{bottom:875.805000px;}
.ybf{bottom:875.985000px;}
.y21a{bottom:876.525000px;}
.y24c{bottom:880.125000px;}
.yc{bottom:881.025000px;}
.y46{bottom:881.385000px;}
.y168{bottom:881.565000px;}
.y128{bottom:882.465000px;}
.ye0{bottom:883.005000px;}
.y33{bottom:883.725000px;}
.y198{bottom:886.605000px;}
.y27d{bottom:887.145000px;}
.y60{bottom:891.465000px;}
.y105{bottom:893.085000px;}
.ybc{bottom:894.345000px;}
.y1ca{bottom:894.885000px;}
.y2f1{bottom:896.325000px;}
.y24b{bottom:898.125000px;}
.y2c1{bottom:898.665000px;}
.y287{bottom:903.525000px;}
.ya0{bottom:903.885000px;}
.y27c{bottom:905.145000px;}
.y2a7{bottom:906.945000px;}
.y15e{bottom:910.905000px;}
.y104{bottom:911.625000px;}
.yb{bottom:912.165000px;}
.y219{bottom:912.345000px;}
.y127{bottom:913.425000px;}
.ydf{bottom:914.145000px;}
.y32{bottom:914.685000px;}
.y45{bottom:915.045000px;}
.y249{bottom:915.945000px;}
.y197{bottom:917.790000px;}
.y5f{bottom:922.470000px;}
.y27b{bottom:923.010000px;}
.ybe{bottom:923.190000px;}
.y1b4{bottom:925.890000px;}
.y2a6{bottom:927.150000px;}
.y2bf{bottom:927.870000px;}
.y218{bottom:930.390000px;}
.y248{bottom:933.990000px;}
.y286{bottom:934.710000px;}
.y27a{bottom:941.010000px;}
.ya{bottom:943.170000px;}
.y103{bottom:943.890000px;}
.y126{bottom:944.610000px;}
.yde{bottom:945.150000px;}
.ybb{bottom:945.510000px;}
.y31{bottom:945.870000px;}
.y44{bottom:946.590000px;}
.y217{bottom:948.390000px;}
.y196{bottom:948.750000px;}
.y247{bottom:951.990000px;}
.y5e{bottom:953.610000px;}
.y1c9{bottom:957.030000px;}
.yba{bottom:958.470000px;}
.y279{bottom:959.010000px;}
.y125{bottom:964.770000px;}
.y285{bottom:965.670000px;}
.y216{bottom:966.390000px;}
.y246{bottom:969.990000px;}
.y195{bottom:970.350000px;}
.y2be{bottom:971.250000px;}
.y9{bottom:974.310000px;}
.ydd{bottom:976.290000px;}
.y30{bottom:976.830000px;}
.y278{bottom:977.010000px;}
.y43{bottom:977.730000px;}
.y194{bottom:980.610000px;}
.y124{bottom:983.310000px;}
.y15d{bottom:984.030000px;}
.y215{bottom:984.210000px;}
.y5d{bottom:984.570000px;}
.y192{bottom:987.090000px;}
.y245{bottom:987.810000px;}
.y1c8{bottom:987.990000px;}
.yb9{bottom:990.150000px;}
.y277{bottom:994.830000px;}
.y284{bottom:996.810000px;}
.y2f{bottom:996.990000px;}
.y214{bottom:1002.210000px;}
.y2bd{bottom:1002.390000px;}
.y8{bottom:1005.270000px;}
.y244{bottom:1005.810000px;}
.y102{bottom:1007.250000px;}
.y82{bottom:1007.970000px;}
.y42{bottom:1008.690000px;}
.y276{bottom:1012.830000px;}
.y190{bottom:1013.550000px;}
.y123{bottom:1014.450000px;}
.y283{bottom:1014.810000px;}
.y2e{bottom:1015.710000px;}
.y1c7{bottom:1019.130000px;}
.y213{bottom:1020.210000px;}
.y282{bottom:1020.390000px;}
.yb8{bottom:1021.830000px;}
.y243{bottom:1023.810000px;}
.y281{bottom:1025.970000px;}
.y41{bottom:1026.330000px;}
.y101{bottom:1028.130000px;}
.y275{bottom:1030.830000px;}
.y40{bottom:1031.550000px;}
.y7{bottom:1036.410000px;}
.y212{bottom:1038.210000px;}
.y81{bottom:1038.930000px;}
.y18a{bottom:1040.190000px;}
.y242{bottom:1041.810000px;}
.y3f{bottom:1042.350000px;}
.y122{bottom:1045.410000px;}
.y2d{bottom:1046.670000px;}
.y274{bottom:1048.830000px;}
.yb7{bottom:1053.690000px;}
.y211{bottom:1056.030000px;}
.y80{bottom:1059.090000px;}
.y241{bottom:1059.810000px;}
.y273{bottom:1066.830000px;}
.y2f0{bottom:1069.890000px;}
.y210{bottom:1074.030000px;}
.y121{bottom:1076.550000px;}
.y3e{bottom:1076.730000px;}
.y6{bottom:1076.910000px;}
.y2c{bottom:1077.810000px;}
.y240{bottom:1081.770000px;}
.y272{bottom:1084.650000px;}
.yb6{bottom:1085.370000px;}
.y189{bottom:1088.970000px;}
.y23f{bottom:1090.230000px;}
.y20f{bottom:1092.030000px;}
.y271{bottom:1102.650000px;}
.y120{bottom:1107.510000px;}
.y2b{bottom:1108.770000px;}
.y20e{bottom:1113.450000px;}
.yb5{bottom:1117.050000px;}
.y270{bottom:1120.650000px;}
.y20d{bottom:1121.190000px;}
.y5{bottom:1128.750000px;}
.y11f{bottom:1138.650000px;}
.y2a{bottom:1139.910000px;}
.yb4{bottom:1152.360000px;}
.y1{bottom:1196.100000px;}
.h18{height:13.095703px;}
.h33{height:13.113281px;}
.h2b{height:17.100000px;}
.h2e{height:17.136000px;}
.h4{height:17.280000px;}
.h15{height:17.286328px;}
.h2c{height:17.316000px;}
.h2d{height:17.666016px;}
.h7{height:18.773438px;}
.h9{height:18.900000px;}
.hb{height:18.936000px;}
.h1d{height:20.700000px;}
.h35{height:23.319141px;}
.h8{height:24.780937px;}
.h27{height:25.740000px;}
.h32{height:25.776000px;}
.h26{height:25.920000px;}
.h34{height:25.956000px;}
.h2f{height:28.260000px;}
.h1b{height:28.440000px;}
.h1a{height:28.476000px;}
.h22{height:28.620000px;}
.he{height:30.960000px;}
.h12{height:30.996000px;}
.h14{height:31.140000px;}
.h1c{height:31.176000px;}
.h1f{height:31.539375px;}
.h1e{height:35.096484px;}
.h16{height:40.896000px;}
.h17{height:41.220000px;}
.h24{height:43.200000px;}
.h29{height:43.506914px;}
.h2a{height:43.536094px;}
.h38{height:47.160000px;}
.h36{height:47.340000px;}
.h39{height:47.344922px;}
.h23{height:47.520000px;}
.ha{height:48.224531px;}
.h30{height:48.256875px;}
.h11{height:51.750000px;}
.hd{height:52.382812px;}
.h13{height:52.417969px;}
.h31{height:54.361758px;}
.h19{height:56.700000px;}
.h28{height:56.916000px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h25{height:62.327813px;}
.h10{height:62.820000px;}
.hc{height:64.546875px;}
.hf{height:65.496094px;}
.h20{height:66.456000px;}
.h21{height:69.086250px;}
.h37{height:70.664062px;}
.h6{height:75.093750px;}
.h5{height:125.406562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:25.020000px;}
.w3a{width:29.196000px;}
.w56{width:30.420000px;}
.w20{width:32.580000px;}
.w3b{width:54.540000px;}
.w39{width:54.720000px;}
.w47{width:67.500000px;}
.w1c{width:69.300000px;}
.w1e{width:69.336000px;}
.w1f{width:69.480000px;}
.w1d{width:69.516000px;}
.w30{width:69.660000px;}
.w31{width:69.696000px;}
.w1a{width:74.736000px;}
.w50{width:76.356000px;}
.w45{width:80.280000px;}
.w62{width:81.000000px;}
.w2f{width:82.116000px;}
.w4f{width:84.420000px;}
.w58{width:84.816000px;}
.w37{width:90.360000px;}
.w36{width:90.396000px;}
.wa{width:91.260000px;}
.w55{width:91.440000px;}
.wf{width:91.980000px;}
.w13{width:93.780000px;}
.w14{width:93.816000px;}
.wc{width:94.500000px;}
.wb{width:94.536000px;}
.w15{width:94.716000px;}
.w2d{width:94.860000px;}
.wd{width:94.896000px;}
.w11{width:95.220000px;}
.w10{width:95.256000px;}
.w12{width:95.616000px;}
.w44{width:98.280000px;}
.w3d{width:98.316000px;}
.w3f{width:98.640000px;}
.w41{width:99.036000px;}
.w49{width:99.216000px;}
.w29{width:99.360000px;}
.w28{width:99.396000px;}
.w2a{width:99.576000px;}
.w5e{width:99.756000px;}
.w26{width:105.336000px;}
.w7{width:107.316000px;}
.w2b{width:108.000000px;}
.we{width:108.036000px;}
.w27{width:113.760000px;}
.w2c{width:113.796000px;}
.w34{width:114.516000px;}
.w33{width:118.080000px;}
.w32{width:118.116000px;}
.w2e{width:122.220000px;}
.w21{width:123.480000px;}
.w22{width:123.516000px;}
.w35{width:126.900000px;}
.w17{width:127.116000px;}
.w18{width:130.320000px;}
.w54{width:131.796000px;}
.w5{width:134.316000px;}
.w4c{width:135.000000px;}
.w4d{width:135.216000px;}
.w52{width:147.816000px;}
.w19{width:153.360000px;}
.w5f{width:162.000000px;}
.w4e{width:169.410000px;}
.w5d{width:170.310000px;}
.w51{width:174.810000px;}
.w16{width:178.050000px;}
.w24{width:180.390000px;}
.w5a{width:181.470000px;}
.w63{width:184.350000px;}
.w1b{width:186.150000px;}
.w8{width:186.510000px;}
.w4{width:188.310000px;}
.w9{width:190.110000px;}
.w3c{width:203.790000px;}
.w3e{width:203.970000px;}
.w40{width:204.510000px;}
.w42{width:204.690000px;}
.w48{width:205.410000px;}
.w4a{width:205.590000px;}
.w38{width:205.770000px;}
.w25{width:215.310000px;}
.w57{width:219.990000px;}
.w61{width:220.710000px;}
.w23{width:229.710000px;}
.w46{width:242.355000px;}
.w43{width:244.335000px;}
.w5c{width:256.530000px;}
.w4b{width:263.235000px;}
.w5b{width:270.075000px;}
.w59{width:275.970000px;}
.w60{width:297.030000px;}
.w6{width:485.385000px;}
.w53{width:558.465000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:4.860000px;}
.x5{left:7.740000px;}
.x39{left:9.405000px;}
.x28{left:11.880000px;}
.x7{left:13.680000px;}
.x19{left:15.660000px;}
.x1f{left:17.100000px;}
.x25{left:18.360000px;}
.x55{left:19.845000px;}
.x8{left:21.240000px;}
.x13{left:22.860000px;}
.x91{left:23.940000px;}
.x2f{left:25.050000px;}
.x29{left:27.360000px;}
.x9{left:28.800000px;}
.x31{left:30.420000px;}
.x4c{left:31.500000px;}
.x3c{left:32.760000px;}
.x3b{left:33.840000px;}
.x1b{left:34.920000px;}
.x2a{left:36.720000px;}
.x2b{left:38.520000px;}
.x2c{left:40.500000px;}
.x15{left:41.940000px;}
.x41{left:44.865000px;}
.x1c{left:45.900000px;}
.x1d{left:47.550000px;}
.x53{left:48.600000px;}
.x3f{left:50.400000px;}
.x5f{left:53.100000px;}
.x40{left:54.180000px;}
.x21{left:55.620000px;}
.x84{left:56.910000px;}
.x17{left:58.860000px;}
.x6c{left:59.940000px;}
.x54{left:61.020000px;}
.x90{left:62.505000px;}
.x77{left:66.240000px;}
.x36{left:69.660000px;}
.x6d{left:70.740000px;}
.x42{left:72.900000px;}
.x6b{left:77.040000px;}
.x64{left:79.560000px;}
.x46{left:81.000000px;}
.x6e{left:82.980000px;}
.x6f{left:84.060000px;}
.xa{left:85.170000px;}
.x8d{left:86.445000px;}
.x44{left:90.210000px;}
.x80{left:91.260000px;}
.x7d{left:92.520000px;}
.x7b{left:99.360000px;}
.x7e{left:109.620000px;}
.x8a{left:112.185000px;}
.x7f{left:115.785000px;}
.x1{left:127.655987px;}
.x7c{left:130.185000px;}
.x10{left:141.155987px;}
.x3{left:154.649987px;}
.x12{left:158.985000px;}
.x85{left:163.290000px;}
.x11{left:168.149987px;}
.x4d{left:180.569987px;}
.xb{left:181.649987px;}
.x81{left:190.110000px;}
.x47{left:195.510000px;}
.x1e{left:202.005000px;}
.x78{left:209.010000px;}
.x4{left:222.510000px;}
.xf{left:233.849987px;}
.x86{left:249.165000px;}
.x63{left:255.269987px;}
.xc{left:262.649987px;}
.x4e{left:277.230000px;}
.x38{left:279.210000px;}
.x60{left:283.935000px;}
.x5b{left:287.355000px;}
.x2d{left:290.055000px;}
.x87{left:295.095000px;}
.x48{left:301.575000px;}
.x8e{left:308.595000px;}
.x14{left:330.555000px;}
.xd{left:336.674987px;}
.x30{left:341.895000px;}
.x24{left:360.795000px;}
.x72{left:370.695000px;}
.x68{left:373.035000px;}
.x74{left:374.655000px;}
.x43{left:385.455000px;}
.x88{left:386.535000px;}
.x4f{left:391.755000px;}
.x65{left:402.015000px;}
.x3a{left:403.455000px;}
.x5c{left:406.155000px;}
.x6{left:411.555000px;}
.x49{left:416.055000px;}
.x18{left:422.535000px;}
.x22{left:425.055000px;}
.x56{left:431.355000px;}
.x2e{left:444.135000px;}
.x82{left:445.395000px;}
.xe{left:446.474987px;}
.x73{left:451.695000px;}
.x92{left:456.375000px;}
.x66{left:457.455000px;}
.x69{left:472.065000px;}
.x79{left:473.145000px;}
.x75{left:474.585000px;}
.x32{left:482.145000px;}
.x50{left:487.365000px;}
.x26{left:488.625000px;}
.x8b{left:492.225000px;}
.x57{left:501.765000px;}
.x70{left:508.065000px;}
.x4a{left:516.345000px;}
.x16{left:517.785000px;}
.x20{left:519.585000px;}
.x5d{left:524.985000px;}
.x3d{left:527.685000px;}
.x33{left:552.345000px;}
.x45{left:566.565000px;}
.x58{left:572.145000px;}
.x51{left:582.945000px;}
.x61{left:593.745000px;}
.x8f{left:605.625000px;}
.x7a{left:608.865000px;}
.x1a{left:613.005000px;}
.x23{left:614.085000px;}
.x4b{left:616.425000px;}
.x34{left:622.365000px;}
.x83{left:626.505000px;}
.x89{left:636.945000px;}
.x93{left:640.725000px;}
.x59{left:642.705000px;}
.x5e{left:643.785000px;}
.x3e{left:651.885000px;}
.x8c{left:654.225000px;}
.x27{left:667.410000px;}
.x6a{left:676.770000px;}
.x52{left:678.390000px;}
.x76{left:680.910000px;}
.x62{left:685.050000px;}
.x35{left:692.430000px;}
.x67{left:693.870000px;}
.x5a{left:713.130000px;}
.x37{left:732.930000px;}
.x2{left:740.490000px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.936000pt;}
.ls7{letter-spacing:-1.152000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.168533pt;}
.lse{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.030720pt;}
.lsb{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.094720pt;}
.ls1c{letter-spacing:0.097067pt;}
.ls1f{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.106240pt;}
.ls26{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.199040pt;}
.ls1d{letter-spacing:0.218240pt;}
.ls18{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.271360pt;}
.ls22{letter-spacing:0.272640pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.391040pt;}
.ls9{letter-spacing:0.768000pt;}
.ls10{letter-spacing:1.416320pt;}
.lsc{letter-spacing:21.248000pt;}
.ls8{letter-spacing:25.066667pt;}
.ls16{letter-spacing:25.088000pt;}
.ls15{letter-spacing:89.610667pt;}
.lsf{letter-spacing:91.530667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1{word-spacing:-29.712640pt;}
.ws2{word-spacing:-23.663360pt;}
.ws6{word-spacing:-18.560000pt;}
.ws3{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.664000pt;}
.ws13{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws18{word-spacing:-17.152000pt;}
.wsf{word-spacing:-16.601707pt;}
.ws12{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.271573pt;}
.wsc{word-spacing:-14.848000pt;}
.ws10{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.455360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.378027pt;}
.ws14{word-spacing:-12.208427pt;}
.ws16{word-spacing:-12.160000pt;}
.ws15{word-spacing:-12.111360pt;}
.wse{word-spacing:-11.920640pt;}
.wsb{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._2b{margin-left:-11.541333pt;}
._25{margin-left:-2.368427pt;}
._0{margin-left:-1.227093pt;}
._2{width:1.142827pt;}
._3{width:2.630613pt;}
._1{width:4.336427pt;}
._a{width:5.383467pt;}
._21{width:6.342400pt;}
._b{width:7.296000pt;}
._2c{width:8.185600pt;}
._10{width:9.088000pt;}
._12{width:10.304000pt;}
._9{width:11.211093pt;}
._8{width:12.160000pt;}
._f{width:13.378347pt;}
._1f{width:14.570667pt;}
._20{width:15.492480pt;}
._7{width:16.534187pt;}
._26{width:19.072000pt;}
._d{width:20.800000pt;}
._11{width:21.696000pt;}
._23{width:22.720000pt;}
._5{width:24.298667pt;}
._29{width:25.216000pt;}
._24{width:27.008000pt;}
._2a{width:27.904000pt;}
._6{width:29.248000pt;}
._22{width:30.153173pt;}
._e{width:31.232000pt;}
._27{width:32.192000pt;}
._28{width:33.408000pt;}
._32{width:34.752000pt;}
._c{width:36.416000pt;}
._2e{width:37.568000pt;}
._13{width:38.795093pt;}
._30{width:39.808000pt;}
._2f{width:41.675093pt;}
._2d{width:43.008000pt;}
._33{width:44.736000pt;}
._31{width:48.768000pt;}
._34{width:50.988800pt;}
._1d{width:60.019840pt;}
._16{width:65.896533pt;}
._15{width:66.787413pt;}
._14{width:68.145493pt;}
._4{width:77.230293pt;}
._1c{width:93.363840pt;}
._35{width:108.894933pt;}
._1a{width:114.056320pt;}
._19{width:117.866667pt;}
._1e{width:121.792000pt;}
._17{width:157.472000pt;}
._18{width:172.800000pt;}
._1b{width:174.218667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1d6{bottom:3.040000pt;}
.y24a{bottom:3.080000pt;}
.y4{bottom:3.200000pt;}
.y1b9{bottom:3.520000pt;}
.yc3{bottom:3.680000pt;}
.y18f{bottom:6.880000pt;}
.y303{bottom:7.360000pt;}
.y167{bottom:7.560000pt;}
.y1ae{bottom:7.680000pt;}
.y193{bottom:10.400000pt;}
.y191{bottom:10.560000pt;}
.y18d{bottom:10.720000pt;}
.y2da{bottom:10.880000pt;}
.y2c0{bottom:11.520000pt;}
.yf1{bottom:11.680000pt;}
.yfc{bottom:11.706667pt;}
.yf3{bottom:11.720000pt;}
.y16a{bottom:11.840000pt;}
.y164{bottom:11.880000pt;}
.y169{bottom:12.000000pt;}
.y6b{bottom:12.800000pt;}
.y79{bottom:12.826667pt;}
.y70{bottom:12.840000pt;}
.y73{bottom:12.960000pt;}
.y17c{bottom:15.520000pt;}
.y301{bottom:15.840000pt;}
.y2ff{bottom:16.000000pt;}
.y1b7{bottom:16.160000pt;}
.yc0{bottom:17.280000pt;}
.y18b{bottom:18.240000pt;}
.yef{bottom:20.000000pt;}
.y17a{bottom:20.320000pt;}
.y161{bottom:20.360000pt;}
.yc2{bottom:21.920000pt;}
.y18e{bottom:22.240000pt;}
.y1ad{bottom:24.480000pt;}
.y166{bottom:24.520000pt;}
.y18c{bottom:26.080000pt;}
.y6d{bottom:27.040000pt;}
.y300{bottom:28.320000pt;}
.yf0{bottom:28.480000pt;}
.y15f{bottom:28.520000pt;}
.y163{bottom:28.680000pt;}
.y17b{bottom:28.800000pt;}
.y1b6{bottom:32.960000pt;}
.yee{bottom:36.800000pt;}
.y1b8{bottom:37.120000pt;}
.y160{bottom:37.160000pt;}
.y165{bottom:41.320000pt;}
.y162{bottom:45.640000pt;}
.y3{bottom:47.040000pt;}
.y2{bottom:50.240000pt;}
.y20c{bottom:98.880000pt;}
.y9f{bottom:104.320000pt;}
.y7f{bottom:105.920000pt;}
.y2bc{bottom:106.880000pt;}
.y26f{bottom:107.840000pt;}
.y23e{bottom:110.720000pt;}
.y1ef{bottom:110.880000pt;}
.y26e{bottom:114.720000pt;}
.y20b{bottom:114.880000pt;}
.y11e{bottom:116.480000pt;}
.y30e{bottom:118.880000pt;}
.y188{bottom:119.360000pt;}
.ydc{bottom:119.680000pt;}
.y26d{bottom:121.600000pt;}
.y100{bottom:122.080000pt;}
.y23d{bottom:124.000000pt;}
.y26c{bottom:128.480000pt;}
.y1ee{bottom:128.800000pt;}
.y23c{bottom:129.920000pt;}
.y20a{bottom:130.880000pt;}
.y29{bottom:131.520000pt;}
.y9e{bottom:131.840000pt;}
.y7e{bottom:133.440000pt;}
.y2bb{bottom:134.560000pt;}
.y1ed{bottom:135.680000pt;}
.y1ec{bottom:140.320000pt;}
.yff{bottom:140.480000pt;}
.y2a5{bottom:142.560000pt;}
.yfe{bottom:144.960000pt;}
.y11d{bottom:145.120000pt;}
.y5c{bottom:145.440000pt;}
.y23b{bottom:145.760000pt;}
.y30d{bottom:146.560000pt;}
.y187{bottom:146.880000pt;}
.ydb{bottom:147.200000pt;}
.y1b3{bottom:147.520000pt;}
.y2ef{bottom:148.320000pt;}
.y7d{bottom:151.360000pt;}
.y1eb{bottom:156.160000pt;}
.y7c{bottom:158.240000pt;}
.y28{bottom:159.040000pt;}
.y9d{bottom:159.520000pt;}
.y23a{bottom:161.760000pt;}
.y5b{bottom:162.080000pt;}
.y209{bottom:162.880000pt;}
.y186{bottom:164.800000pt;}
.y7b{bottom:165.280000pt;}
.y13c{bottom:165.600000pt;}
.y1b2{bottom:166.720000pt;}
.y148{bottom:168.640000pt;}
.y7a{bottom:169.760000pt;}
.yfd{bottom:170.880000pt;}
.y1ea{bottom:172.160000pt;}
.y26b{bottom:172.640000pt;}
.y2d7{bottom:172.960000pt;}
.y11c{bottom:173.760000pt;}
.y30c{bottom:174.080000pt;}
.yda{bottom:174.880000pt;}
.y1b1{bottom:175.840000pt;}
.y239{bottom:177.760000pt;}
.y208{bottom:178.720000pt;}
.y185{bottom:181.440000pt;}
.y1b0{bottom:181.600000pt;}
.yb3{bottom:185.120000pt;}
.y27{bottom:186.720000pt;}
.y9c{bottom:187.040000pt;}
.y1e9{bottom:188.160000pt;}
.y5a{bottom:189.600000pt;}
.y2ba{bottom:189.760000pt;}
.y13b{bottom:193.280000pt;}
.y238{bottom:193.760000pt;}
.yfb{bottom:196.800000pt;}
.y207{bottom:197.760000pt;}
.y78{bottom:197.920000pt;}
.y26a{bottom:200.346667pt;}
.y2d6{bottom:200.666667pt;}
.y30b{bottom:201.786667pt;}
.y11b{bottom:202.586667pt;}
.y2ee{bottom:203.386667pt;}
.yd9{bottom:203.546667pt;}
.y1e8{bottom:204.186667pt;}
.y26{bottom:204.666667pt;}
.y1af{bottom:207.546667pt;}
.y184{bottom:208.986667pt;}
.yb2{bottom:212.826667pt;}
.y2a4{bottom:214.266667pt;}
.y9b{bottom:214.746667pt;}
.y59{bottom:217.306667pt;}
.y237{bottom:219.706667pt;}
.y1e7{bottom:220.186667pt;}
.y13a{bottom:220.826667pt;}
.y11a{bottom:220.986667pt;}
.y25{bottom:221.146667pt;}
.y206{bottom:221.306667pt;}
.y2ed{bottom:221.466667pt;}
.yfa{bottom:222.746667pt;}
.y76{bottom:226.106667pt;}
.y269{bottom:227.866667pt;}
.y2d5{bottom:228.186667pt;}
.y30a{bottom:229.306667pt;}
.yd8{bottom:231.066667pt;}
.y1ac{bottom:233.466667pt;}
.y2b9{bottom:235.226667pt;}
.y1e6{bottom:236.026667pt;}
.y236{bottom:236.186667pt;}
.y183{bottom:236.666667pt;}
.y119{bottom:237.626667pt;}
.y2ec{bottom:237.946667pt;}
.yb1{bottom:240.346667pt;}
.y2a3{bottom:241.946667pt;}
.y9a{bottom:242.266667pt;}
.y58{bottom:246.586667pt;}
.y139{bottom:248.506667pt;}
.yf9{bottom:248.666667pt;}
.y24{bottom:248.826667pt;}
.y2b8{bottom:251.866667pt;}
.y1e5{bottom:252.026667pt;}
.y77{bottom:254.426667pt;}
.y268{bottom:255.546667pt;}
.y2d4{bottom:255.866667pt;}
.y309{bottom:256.986667pt;}
.yd7{bottom:259.866667pt;}
.y15c{bottom:260.986667pt;}
.y235{bottom:263.866667pt;}
.y182{bottom:264.186667pt;}
.y118{bottom:265.146667pt;}
.y2eb{bottom:265.626667pt;}
.y2a2{bottom:266.746667pt;}
.y205{bottom:267.066667pt;}
.yb0{bottom:267.866667pt;}
.y1e4{bottom:268.026667pt;}
.y99{bottom:269.946667pt;}
.y267{bottom:273.466667pt;}
.y204{bottom:273.946667pt;}
.yf8{bottom:274.586667pt;}
.y138{bottom:276.026667pt;}
.y23{bottom:276.346667pt;}
.y57{bottom:276.506667pt;}
.y203{bottom:278.266667pt;}
.y2b7{bottom:279.386667pt;}
.y234{bottom:279.866667pt;}
.y266{bottom:280.346667pt;}
.y1ab{bottom:280.506667pt;}
.y75{bottom:282.586667pt;}
.y2a1{bottom:283.226667pt;}
.y2d3{bottom:283.386667pt;}
.y1e3{bottom:284.026667pt;}
.y308{bottom:284.506667pt;}
.y233{bottom:284.826667pt;}
.yaf{bottom:285.946667pt;}
.yd6{bottom:287.386667pt;}
.y15b{bottom:288.666667pt;}
.y232{bottom:289.786667pt;}
.y181{bottom:291.866667pt;}
.y117{bottom:292.666667pt;}
.y2ea{bottom:293.146667pt;}
.y202{bottom:294.266667pt;}
.y147{bottom:295.546667pt;}
.y98{bottom:297.466667pt;}
.y1aa{bottom:298.266667pt;}
.yf7{bottom:300.506667pt;}
.y2d2{bottom:301.306667pt;}
.yae{bottom:302.426667pt;}
.y1e2{bottom:303.066667pt;}
.y137{bottom:303.706667pt;}
.y22{bottom:304.026667pt;}
.y265{bottom:304.986667pt;}
.yd5{bottom:305.946667pt;}
.y56{bottom:306.266667pt;}
.y2b6{bottom:307.066667pt;}
.y307{bottom:308.026667pt;}
.y1e1{bottom:309.946667pt;}
.y201{bottom:310.106667pt;}
.y74{bottom:310.746667pt;}
.y2a0{bottom:310.906667pt;}
.y15a{bottom:316.186667pt;}
.y2d1{bottom:317.946667pt;}
.y136{bottom:319.386667pt;}
.y2e9{bottom:320.826667pt;}
.y116{bottom:321.466667pt;}
.yd4{bottom:322.426667pt;}
.y146{bottom:323.066667pt;}
.y2b5{bottom:324.986667pt;}
.y97{bottom:325.146667pt;}
.y1a9{bottom:325.786667pt;}
.y200{bottom:326.106667pt;}
.yf6{bottom:326.426667pt;}
.yad{bottom:330.106667pt;}
.y306{bottom:330.586667pt;}
.y21{bottom:331.546667pt;}
.y264{bottom:332.506667pt;}
.y231{bottom:333.946667pt;}
.y135{bottom:335.866667pt;}
.y55{bottom:336.026667pt;}
.y29f{bottom:338.426667pt;}
.y180{bottom:338.586667pt;}
.y72{bottom:338.906667pt;}
.y2b4{bottom:341.466667pt;}
.y1ff{bottom:342.106667pt;}
.y159{bottom:343.866667pt;}
.y2d0{bottom:345.466667pt;}
.y17f{bottom:347.706667pt;}
.y2e8{bottom:348.346667pt;}
.yd3{bottom:350.106667pt;}
.y20{bottom:350.746667pt;}
.yf5{bottom:352.346667pt;}
.y96{bottom:352.666667pt;}
.y230{bottom:352.986667pt;}
.y17e{bottom:353.306667pt;}
.y1a8{bottom:353.466667pt;}
.y1e0{bottom:354.106667pt;}
.y1f{bottom:356.346667pt;}
.y263{bottom:356.826667pt;}
.y29e{bottom:356.986667pt;}
.yac{bottom:357.626667pt;}
.y1fe{bottom:358.106667pt;}
.y22f{bottom:362.266667pt;}
.y262{bottom:362.746667pt;}
.y134{bottom:363.386667pt;}
.y29d{bottom:364.506667pt;}
.y54{bottom:365.946667pt;}
.y2e7{bottom:366.426667pt;}
.y71{bottom:367.226667pt;}
.y22e{bottom:367.866667pt;}
.y29c{bottom:368.346667pt;}
.y2b3{bottom:369.146667pt;}
.y2e6{bottom:370.106667pt;}
.y158{bottom:371.386667pt;}
.y1df{bottom:372.026667pt;}
.y2cf{bottom:373.146667pt;}
.y1e{bottom:373.786667pt;}
.y1fd{bottom:374.106667pt;}
.yd2{bottom:377.626667pt;}
.yf4{bottom:378.266667pt;}
.y261{bottom:378.586667pt;}
.y115{bottom:378.746667pt;}
.y1de{bottom:378.906667pt;}
.y17d{bottom:379.386667pt;}
.y95{bottom:380.346667pt;}
.y29b{bottom:383.546667pt;}
.y22d{bottom:383.866667pt;}
.yab{bottom:385.306667pt;}
.y305{bottom:385.786667pt;}
.y1a7{bottom:387.866667pt;}
.y133{bottom:391.066667pt;}
.y1d{bottom:391.386667pt;}
.y1fc{bottom:392.986667pt;}
.y260{bottom:394.586667pt;}
.y6f{bottom:395.386667pt;}
.y53{bottom:395.706667pt;}
.y2b2{bottom:396.666667pt;}
.y29a{bottom:398.906667pt;}
.y157{bottom:399.066667pt;}
.y22c{bottom:399.866667pt;}
.y1fb{bottom:400.026667pt;}
.y2ce{bottom:400.666667pt;}
.y304{bottom:403.866667pt;}
.yf2{bottom:404.186667pt;}
.yd1{bottom:405.346667pt;}
.y145{bottom:405.986667pt;}
.y114{bottom:407.426667pt;}
.y302{bottom:407.586667pt;}
.y94{bottom:407.906667pt;}
.y1c{bottom:408.866667pt;}
.y25f{bottom:410.626667pt;}
.yaa{bottom:412.866667pt;}
.y299{bottom:414.306667pt;}
.y1dd{bottom:414.626667pt;}
.y1a6{bottom:415.586667pt;}
.y22b{bottom:415.746667pt;}
.y2e5{bottom:416.066667pt;}
.y1fa{bottom:416.546667pt;}
.y132{bottom:418.626667pt;}
.y6c{bottom:423.586667pt;}
.y1dc{bottom:423.746667pt;}
.y2b1{bottom:424.386667pt;}
.y52{bottom:425.666667pt;}
.y93{bottom:425.826667pt;}
.y1b{bottom:426.306667pt;}
.y156{bottom:426.626667pt;}
.y2cd{bottom:428.386667pt;}
.y1db{bottom:429.506667pt;}
.yed{bottom:430.146667pt;}
.y179{bottom:431.266667pt;}
.y22a{bottom:431.746667pt;}
.y92{bottom:432.706667pt;}
.yd0{bottom:432.866667pt;}
.y144{bottom:433.506667pt;}
.y113{bottom:435.106667pt;}
.y2e4{bottom:438.946667pt;}
.y91{bottom:439.746667pt;}
.ya9{bottom:440.546667pt;}
.y25e{bottom:442.626667pt;}
.y1a5{bottom:443.106667pt;}
.y90{bottom:444.226667pt;}
.y298{bottom:444.866667pt;}
.y1da{bottom:445.346667pt;}
.y131{bottom:446.306667pt;}
.y229{bottom:447.746667pt;}
.y1a{bottom:448.066667pt;}
.y6e{bottom:451.906667pt;}
.y2cc{bottom:453.826667pt;}
.y155{bottom:454.306667pt;}
.y51{bottom:455.426667pt;}
.y25d{bottom:458.466667pt;}
.y297{bottom:460.066667pt;}
.ycf{bottom:460.546667pt;}
.y1c6{bottom:460.866667pt;}
.y143{bottom:461.186667pt;}
.y1d9{bottom:461.346667pt;}
.y2e3{bottom:461.986667pt;}
.y112{bottom:462.626667pt;}
.y228{bottom:463.746667pt;}
.y19{bottom:465.826667pt;}
.ya8{bottom:468.066667pt;}
.y1a4{bottom:470.786667pt;}
.y1f9{bottom:471.746667pt;}
.y154{bottom:472.226667pt;}
.y8f{bottom:472.386667pt;}
.y130{bottom:473.826667pt;}
.y25c{bottom:474.466667pt;}
.y2fe{bottom:474.786667pt;}
.y296{bottom:475.426667pt;}
.y1d8{bottom:477.346667pt;}
.y178{bottom:478.306667pt;}
.yce{bottom:478.466667pt;}
.y142{bottom:479.106667pt;}
.y2b0{bottom:479.586667pt;}
.y227{bottom:479.746667pt;}
.y6a{bottom:480.066667pt;}
.y2e2{bottom:484.866667pt;}
.y50{bottom:485.186667pt;}
.y1c5{bottom:488.386667pt;}
.y153{bottom:488.706667pt;}
.y111{bottom:490.306667pt;}
.y25b{bottom:490.466667pt;}
.y295{bottom:490.786667pt;}
.y18{bottom:493.346667pt;}
.yec{bottom:493.986667pt;}
.ycd{bottom:494.946667pt;}
.ya7{bottom:495.586667pt;}
.y177{bottom:496.066667pt;}
.y2af{bottom:497.506667pt;}
.y1f8{bottom:497.666667pt;}
.y1a3{bottom:498.306667pt;}
.y226{bottom:498.626667pt;}
.y8e{bottom:500.546667pt;}
.y12f{bottom:501.506667pt;}
.y225{bottom:505.666667pt;}
.y294{bottom:505.986667pt;}
.y25a{bottom:506.466667pt;}
.y2e1{bottom:507.906667pt;}
.y110{bottom:508.226667pt;}
.y1d7{bottom:509.346667pt;}
.y3d{bottom:509.506667pt;}
.y17{bottom:511.266667pt;}
.y2ae{bottom:513.986667pt;}
.y4f{bottom:515.106667pt;}
.y1c4{bottom:516.066667pt;}
.y152{bottom:516.386667pt;}
.y1f7{bottom:516.866667pt;}
.y10f{bottom:519.106667pt;}
.y2fd{bottom:520.226667pt;}
.yeb{bottom:521.666667pt;}
.y224{bottom:522.146667pt;}
.y259{bottom:522.306667pt;}
.ycc{bottom:522.626667pt;}
.ya6{bottom:523.266667pt;}
.y176{bottom:523.586667pt;}
.y1d5{bottom:525.186667pt;}
.y1a2{bottom:525.986667pt;}
.y2e0{bottom:526.306667pt;}
.y16{bottom:527.906667pt;}
.y8d{bottom:528.866667pt;}
.y12e{bottom:529.026667pt;}
.y2df{bottom:529.986667pt;}
.y63{bottom:530.146667pt;}
.y2cb{bottom:531.586667pt;}
.y1f6{bottom:532.066667pt;}
.y293{bottom:533.986667pt;}
.y2fc{bottom:536.546667pt;}
.y3c{bottom:537.026667pt;}
.y10e{bottom:538.146667pt;}
.y258{bottom:538.306667pt;}
.yea{bottom:540.066667pt;}
.ya5{bottom:541.186667pt;}
.y2ad{bottom:541.666667pt;}
.y1c3{bottom:543.586667pt;}
.y151{bottom:543.906667pt;}
.y1d4{bottom:544.226667pt;}
.y4e{bottom:544.866667pt;}
.y1f5{bottom:547.426667pt;}
.y223{bottom:549.826667pt;}
.ycb{bottom:550.146667pt;}
.y141{bottom:550.786667pt;}
.y1d3{bottom:551.106667pt;}
.y175{bottom:551.266667pt;}
.y2de{bottom:553.026667pt;}
.y1a1{bottom:553.506667pt;}
.y257{bottom:554.306667pt;}
.y15{bottom:555.426667pt;}
.ye9{bottom:556.706667pt;}
.y8c{bottom:557.026667pt;}
.y2ca{bottom:557.506667pt;}
.ya4{bottom:557.826667pt;}
.y292{bottom:561.666667pt;}
.y1f4{bottom:562.786667pt;}
.y2fb{bottom:564.226667pt;}
.y3b{bottom:564.706667pt;}
.y10d{bottom:566.306667pt;}
.y1d2{bottom:567.746667pt;}
.y174{bottom:569.186667pt;}
.y1c2{bottom:571.266667pt;}
.y150{bottom:571.586667pt;}
.y256{bottom:573.346667pt;}
.y4d{bottom:574.786667pt;}
.y62{bottom:575.746667pt;}
.y2dd{bottom:575.906667pt;}
.y222{bottom:577.346667pt;}
.yca{bottom:577.826667pt;}
.y1f3{bottom:577.986667pt;}
.y140{bottom:578.466667pt;}
.y291{bottom:579.586667pt;}
.y255{bottom:580.226667pt;}
.y1a0{bottom:581.186667pt;}
.y14{bottom:583.106667pt;}
.y2fa{bottom:583.426667pt;}
.ye8{bottom:584.226667pt;}
.y8b{bottom:585.186667pt;}
.ya3{bottom:585.346667pt;}
.y173{bottom:585.826667pt;}
.y2c9{bottom:588.226667pt;}
.y3a{bottom:592.226667pt;}
.y10c{bottom:594.466667pt;}
.y1d1{bottom:595.266667pt;}
.y290{bottom:596.066667pt;}
.y1f2{bottom:596.386667pt;}
.y254{bottom:596.866667pt;}
.y1c1{bottom:598.786667pt;}
.y2dc{bottom:598.946667pt;}
.y14f{bottom:599.106667pt;}
.y1f1{bottom:603.266667pt;}
.y2f9{bottom:603.586667pt;}
.y4c{bottom:604.546667pt;}
.y221{bottom:604.866667pt;}
.yc9{bottom:605.346667pt;}
.y13f{bottom:605.986667pt;}
.y2c8{bottom:606.146667pt;}
.y19f{bottom:608.706667pt;}
.y13{bottom:610.653333pt;}
.y69{bottom:610.813333pt;}
.ye7{bottom:611.933333pt;}
.ya2{bottom:613.053333pt;}
.y1d0{bottom:613.213333pt;}
.y172{bottom:613.373333pt;}
.y8a{bottom:613.533333pt;}
.y2ac{bottom:615.933333pt;}
.y2f8{bottom:618.813333pt;}
.y39{bottom:619.933333pt;}
.y2db{bottom:621.853333pt;}
.y10b{bottom:622.813333pt;}
.y28f{bottom:623.773333pt;}
.y253{bottom:624.413333pt;}
.y1c0{bottom:626.333333pt;}
.y19e{bottom:626.653333pt;}
.y14e{bottom:626.813333pt;}
.y68{bottom:628.573333pt;}
.y1cf{bottom:630.013333pt;}
.y220{bottom:632.573333pt;}
.yc8{bottom:633.053333pt;}
.y13e{bottom:633.693333pt;}
.y4b{bottom:634.333333pt;}
.y12{bottom:638.333333pt;}
.y2f7{bottom:638.493333pt;}
.ye6{bottom:639.453333pt;}
.y171{bottom:641.053333pt;}
.y28e{bottom:641.693333pt;}
.y252{bottom:642.333333pt;}
.y19d{bottom:643.293333pt;}
.y89{bottom:644.733333pt;}
.y67{bottom:645.213333pt;}
.y38{bottom:647.453333pt;}
.y2f6{bottom:647.773333pt;}
.y251{bottom:649.213333pt;}
.y10a{bottom:650.973333pt;}
.y88{bottom:651.613333pt;}
.y2c7{bottom:652.253333pt;}
.y2f5{bottom:652.573333pt;}
.y1bf{bottom:654.013333pt;}
.y14d{bottom:654.333333pt;}
.y12d{bottom:657.373333pt;}
.y28d{bottom:658.333333pt;}
.ya1{bottom:658.493333pt;}
.y21f{bottom:660.093333pt;}
.yc7{bottom:660.573333pt;}
.y2ab{bottom:661.213333pt;}
.y4a{bottom:664.253333pt;}
.y11{bottom:665.853333pt;}
.ye5{bottom:667.133333pt;}
.y2d9{bottom:667.773333pt;}
.y2f4{bottom:667.933333pt;}
.y87{bottom:668.253333pt;}
.y170{bottom:668.573333pt;}
.y2c6{bottom:668.733333pt;}
.y19c{bottom:670.813333pt;}
.y66{bottom:672.733333pt;}
.y12c{bottom:674.013333pt;}
.y37{bottom:675.133333pt;}
.y21e{bottom:678.173333pt;}
.y109{bottom:679.133333pt;}
.y13d{bottom:679.293333pt;}
.y1be{bottom:681.533333pt;}
.y14c{bottom:682.013333pt;}
.y2f3{bottom:683.133333pt;}
.y1ce{bottom:685.053333pt;}
.ye4{bottom:685.533333pt;}
.y28c{bottom:685.853333pt;}
.yc6{bottom:688.253333pt;}
.y2aa{bottom:688.893333pt;}
.y1f0{bottom:693.053333pt;}
.y250{bottom:693.373333pt;}
.y10{bottom:693.533333pt;}
.y49{bottom:694.013333pt;}
.y86{bottom:695.773333pt;}
.y16f{bottom:696.093333pt;}
.y2c5{bottom:696.413333pt;}
.y19b{bottom:698.493333pt;}
.y65{bottom:700.413333pt;}
.y1bd{bottom:700.733333pt;}
.y12b{bottom:701.533333pt;}
.ye3{bottom:702.173333pt;}
.y36{bottom:702.653333pt;}
.y2a9{bottom:706.813333pt;}
.y14b{bottom:709.533333pt;}
.y1bc{bottom:709.853333pt;}
.y1cd{bottom:712.733333pt;}
.y28b{bottom:713.533333pt;}
.y2d8{bottom:713.693333pt;}
.y1bb{bottom:715.613333pt;}
.yc5{bottom:715.773333pt;}
.y108{bottom:720.093333pt;}
.yf{bottom:721.053333pt;}
.y85{bottom:723.293333pt;}
.y16e{bottom:723.773333pt;}
.y48{bottom:723.933333pt;}
.y19a{bottom:726.013333pt;}
.y64{bottom:727.933333pt;}
.y12a{bottom:729.213333pt;}
.ye2{bottom:729.693333pt;}
.y35{bottom:730.333333pt;}
.y28a{bottom:731.453333pt;}
.y2f2{bottom:733.373333pt;}
.yc4{bottom:735.453333pt;}
.y14a{bottom:737.213333pt;}
.ye{bottom:738.973333pt;}
.y1cc{bottom:740.253333pt;}
.yc1{bottom:741.373333pt;}
.y1ba{bottom:741.533333pt;}
.y2c4{bottom:742.493333pt;}
.y16d{bottom:742.813333pt;}
.y24f{bottom:745.853333pt;}
.y2c3{bottom:746.973333pt;}
.y107{bottom:747.773333pt;}
.y289{bottom:747.933333pt;}
.y21d{bottom:748.253333pt;}
.y24e{bottom:750.333333pt;}
.y84{bottom:750.973333pt;}
.y16c{bottom:752.093333pt;}
.y47{bottom:753.693333pt;}
.yd{bottom:755.613333pt;}
.y129{bottom:756.733333pt;}
.ye1{bottom:757.373333pt;}
.y21c{bottom:757.533333pt;}
.y16b{bottom:757.693333pt;}
.y34{bottom:757.853333pt;}
.y280{bottom:761.373333pt;}
.y21b{bottom:763.133333pt;}
.y149{bottom:764.733333pt;}
.y24d{bottom:766.333333pt;}
.ybd{bottom:767.293333pt;}
.y1b5{bottom:767.453333pt;}
.y1cb{bottom:767.773333pt;}
.y27f{bottom:768.253333pt;}
.y83{bottom:768.893333pt;}
.y199{bottom:771.613333pt;}
.y27e{bottom:772.573333pt;}
.y2c2{bottom:772.893333pt;}
.y106{bottom:775.293333pt;}
.y288{bottom:775.613333pt;}
.y61{bottom:775.773333pt;}
.y2a8{bottom:778.493333pt;}
.ybf{bottom:778.653333pt;}
.y21a{bottom:779.133333pt;}
.y24c{bottom:782.333333pt;}
.yc{bottom:783.133333pt;}
.y46{bottom:783.453333pt;}
.y168{bottom:783.613333pt;}
.y128{bottom:784.413333pt;}
.ye0{bottom:784.893333pt;}
.y33{bottom:785.533333pt;}
.y198{bottom:788.093333pt;}
.y27d{bottom:788.573333pt;}
.y60{bottom:792.413333pt;}
.y105{bottom:793.853333pt;}
.ybc{bottom:794.973333pt;}
.y1ca{bottom:795.453333pt;}
.y2f1{bottom:796.733333pt;}
.y24b{bottom:798.333333pt;}
.y2c1{bottom:798.813333pt;}
.y287{bottom:803.133333pt;}
.ya0{bottom:803.453333pt;}
.y27c{bottom:804.573333pt;}
.y2a7{bottom:806.173333pt;}
.y15e{bottom:809.693333pt;}
.y104{bottom:810.333333pt;}
.yb{bottom:810.813333pt;}
.y219{bottom:810.973333pt;}
.y127{bottom:811.933333pt;}
.ydf{bottom:812.573333pt;}
.y32{bottom:813.053333pt;}
.y45{bottom:813.373333pt;}
.y249{bottom:814.173333pt;}
.y197{bottom:815.813333pt;}
.y5f{bottom:819.973333pt;}
.y27b{bottom:820.453333pt;}
.ybe{bottom:820.613333pt;}
.y1b4{bottom:823.013333pt;}
.y2a6{bottom:824.133333pt;}
.y2bf{bottom:824.773333pt;}
.y218{bottom:827.013333pt;}
.y248{bottom:830.213333pt;}
.y286{bottom:830.853333pt;}
.y27a{bottom:836.453333pt;}
.ya{bottom:838.373333pt;}
.y103{bottom:839.013333pt;}
.y126{bottom:839.653333pt;}
.yde{bottom:840.133333pt;}
.ybb{bottom:840.453333pt;}
.y31{bottom:840.773333pt;}
.y44{bottom:841.413333pt;}
.y217{bottom:843.013333pt;}
.y196{bottom:843.333333pt;}
.y247{bottom:846.213333pt;}
.y5e{bottom:847.653333pt;}
.y1c9{bottom:850.693333pt;}
.yba{bottom:851.973333pt;}
.y279{bottom:852.453333pt;}
.y125{bottom:857.573333pt;}
.y285{bottom:858.373333pt;}
.y216{bottom:859.013333pt;}
.y246{bottom:862.213333pt;}
.y195{bottom:862.533333pt;}
.y2be{bottom:863.333333pt;}
.y9{bottom:866.053333pt;}
.ydd{bottom:867.813333pt;}
.y30{bottom:868.293333pt;}
.y278{bottom:868.453333pt;}
.y43{bottom:869.093333pt;}
.y194{bottom:871.653333pt;}
.y124{bottom:874.053333pt;}
.y15d{bottom:874.693333pt;}
.y215{bottom:874.853333pt;}
.y5d{bottom:875.173333pt;}
.y192{bottom:877.413333pt;}
.y245{bottom:878.053333pt;}
.y1c8{bottom:878.213333pt;}
.yb9{bottom:880.133333pt;}
.y277{bottom:884.293333pt;}
.y284{bottom:886.053333pt;}
.y2f{bottom:886.213333pt;}
.y214{bottom:890.853333pt;}
.y2bd{bottom:891.013333pt;}
.y8{bottom:893.573333pt;}
.y244{bottom:894.053333pt;}
.y102{bottom:895.333333pt;}
.y82{bottom:895.973333pt;}
.y42{bottom:896.613333pt;}
.y276{bottom:900.293333pt;}
.y190{bottom:900.933333pt;}
.y123{bottom:901.733333pt;}
.y283{bottom:902.053333pt;}
.y2e{bottom:902.853333pt;}
.y1c7{bottom:905.893333pt;}
.y213{bottom:906.853333pt;}
.y282{bottom:907.013333pt;}
.yb8{bottom:908.293333pt;}
.y243{bottom:910.053333pt;}
.y281{bottom:911.973333pt;}
.y41{bottom:912.293333pt;}
.y101{bottom:913.893333pt;}
.y275{bottom:916.293333pt;}
.y40{bottom:916.933333pt;}
.y7{bottom:921.253333pt;}
.y212{bottom:922.853333pt;}
.y81{bottom:923.493333pt;}
.y18a{bottom:924.613333pt;}
.y242{bottom:926.053333pt;}
.y3f{bottom:926.533333pt;}
.y122{bottom:929.253333pt;}
.y2d{bottom:930.373333pt;}
.y274{bottom:932.293333pt;}
.yb7{bottom:936.613333pt;}
.y211{bottom:938.693333pt;}
.y80{bottom:941.413333pt;}
.y241{bottom:942.053333pt;}
.y273{bottom:948.293333pt;}
.y2f0{bottom:951.013333pt;}
.y210{bottom:954.693333pt;}
.y121{bottom:956.933333pt;}
.y3e{bottom:957.093333pt;}
.y6{bottom:957.253333pt;}
.y2c{bottom:958.053333pt;}
.y240{bottom:961.573333pt;}
.y272{bottom:964.133333pt;}
.yb6{bottom:964.773333pt;}
.y189{bottom:967.973333pt;}
.y23f{bottom:969.093333pt;}
.y20f{bottom:970.693333pt;}
.y271{bottom:980.133333pt;}
.y120{bottom:984.453333pt;}
.y2b{bottom:985.573333pt;}
.y20e{bottom:989.733333pt;}
.yb5{bottom:992.933333pt;}
.y270{bottom:996.133333pt;}
.y20d{bottom:996.613333pt;}
.y5{bottom:1003.333333pt;}
.y11f{bottom:1012.133333pt;}
.y2a{bottom:1013.253333pt;}
.yb4{bottom:1024.320000pt;}
.y1{bottom:1063.200000pt;}
.h18{height:11.640625pt;}
.h33{height:11.656250pt;}
.h2b{height:15.200000pt;}
.h2e{height:15.232000pt;}
.h4{height:15.360000pt;}
.h15{height:15.365625pt;}
.h2c{height:15.392000pt;}
.h2d{height:15.703125pt;}
.h7{height:16.687500pt;}
.h9{height:16.800000pt;}
.hb{height:16.832000pt;}
.h1d{height:18.400000pt;}
.h35{height:20.728125pt;}
.h8{height:22.027500pt;}
.h27{height:22.880000pt;}
.h32{height:22.912000pt;}
.h26{height:23.040000pt;}
.h34{height:23.072000pt;}
.h2f{height:25.120000pt;}
.h1b{height:25.280000pt;}
.h1a{height:25.312000pt;}
.h22{height:25.440000pt;}
.he{height:27.520000pt;}
.h12{height:27.552000pt;}
.h14{height:27.680000pt;}
.h1c{height:27.712000pt;}
.h1f{height:28.035000pt;}
.h1e{height:31.196875pt;}
.h16{height:36.352000pt;}
.h17{height:36.640000pt;}
.h24{height:38.400000pt;}
.h29{height:38.672812pt;}
.h2a{height:38.698750pt;}
.h38{height:41.920000pt;}
.h36{height:42.080000pt;}
.h39{height:42.084375pt;}
.h23{height:42.240000pt;}
.ha{height:42.866250pt;}
.h30{height:42.895000pt;}
.h11{height:46.000000pt;}
.hd{height:46.562500pt;}
.h13{height:46.593750pt;}
.h31{height:48.321562pt;}
.h19{height:50.400000pt;}
.h28{height:50.592000pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h25{height:55.402500pt;}
.h10{height:55.840000pt;}
.hc{height:57.375000pt;}
.hf{height:58.218750pt;}
.h20{height:59.072000pt;}
.h21{height:61.410000pt;}
.h37{height:62.812500pt;}
.h6{height:66.750000pt;}
.h5{height:111.472500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:22.240000pt;}
.w3a{width:25.952000pt;}
.w56{width:27.040000pt;}
.w20{width:28.960000pt;}
.w3b{width:48.480000pt;}
.w39{width:48.640000pt;}
.w47{width:60.000000pt;}
.w1c{width:61.600000pt;}
.w1e{width:61.632000pt;}
.w1f{width:61.760000pt;}
.w1d{width:61.792000pt;}
.w30{width:61.920000pt;}
.w31{width:61.952000pt;}
.w1a{width:66.432000pt;}
.w50{width:67.872000pt;}
.w45{width:71.360000pt;}
.w62{width:72.000000pt;}
.w2f{width:72.992000pt;}
.w4f{width:75.040000pt;}
.w58{width:75.392000pt;}
.w37{width:80.320000pt;}
.w36{width:80.352000pt;}
.wa{width:81.120000pt;}
.w55{width:81.280000pt;}
.wf{width:81.760000pt;}
.w13{width:83.360000pt;}
.w14{width:83.392000pt;}
.wc{width:84.000000pt;}
.wb{width:84.032000pt;}
.w15{width:84.192000pt;}
.w2d{width:84.320000pt;}
.wd{width:84.352000pt;}
.w11{width:84.640000pt;}
.w10{width:84.672000pt;}
.w12{width:84.992000pt;}
.w44{width:87.360000pt;}
.w3d{width:87.392000pt;}
.w3f{width:87.680000pt;}
.w41{width:88.032000pt;}
.w49{width:88.192000pt;}
.w29{width:88.320000pt;}
.w28{width:88.352000pt;}
.w2a{width:88.512000pt;}
.w5e{width:88.672000pt;}
.w26{width:93.632000pt;}
.w7{width:95.392000pt;}
.w2b{width:96.000000pt;}
.we{width:96.032000pt;}
.w27{width:101.120000pt;}
.w2c{width:101.152000pt;}
.w34{width:101.792000pt;}
.w33{width:104.960000pt;}
.w32{width:104.992000pt;}
.w2e{width:108.640000pt;}
.w21{width:109.760000pt;}
.w22{width:109.792000pt;}
.w35{width:112.800000pt;}
.w17{width:112.992000pt;}
.w18{width:115.840000pt;}
.w54{width:117.152000pt;}
.w5{width:119.392000pt;}
.w4c{width:120.000000pt;}
.w4d{width:120.192000pt;}
.w52{width:131.392000pt;}
.w19{width:136.320000pt;}
.w5f{width:144.000000pt;}
.w4e{width:150.586667pt;}
.w5d{width:151.386667pt;}
.w51{width:155.386667pt;}
.w16{width:158.266667pt;}
.w24{width:160.346667pt;}
.w5a{width:161.306667pt;}
.w63{width:163.866667pt;}
.w1b{width:165.466667pt;}
.w8{width:165.786667pt;}
.w4{width:167.386667pt;}
.w9{width:168.986667pt;}
.w3c{width:181.146667pt;}
.w3e{width:181.306667pt;}
.w40{width:181.786667pt;}
.w42{width:181.946667pt;}
.w48{width:182.586667pt;}
.w4a{width:182.746667pt;}
.w38{width:182.906667pt;}
.w25{width:191.386667pt;}
.w57{width:195.546667pt;}
.w61{width:196.186667pt;}
.w23{width:204.186667pt;}
.w46{width:215.426667pt;}
.w43{width:217.186667pt;}
.w5c{width:228.026667pt;}
.w4b{width:233.986667pt;}
.w5b{width:240.066667pt;}
.w59{width:245.306667pt;}
.w60{width:264.026667pt;}
.w6{width:431.453333pt;}
.w53{width:496.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:4.320000pt;}
.x5{left:6.880000pt;}
.x39{left:8.360000pt;}
.x28{left:10.560000pt;}
.x7{left:12.160000pt;}
.x19{left:13.920000pt;}
.x1f{left:15.200000pt;}
.x25{left:16.320000pt;}
.x55{left:17.640000pt;}
.x8{left:18.880000pt;}
.x13{left:20.320000pt;}
.x91{left:21.280000pt;}
.x2f{left:22.266667pt;}
.x29{left:24.320000pt;}
.x9{left:25.600000pt;}
.x31{left:27.040000pt;}
.x4c{left:28.000000pt;}
.x3c{left:29.120000pt;}
.x3b{left:30.080000pt;}
.x1b{left:31.040000pt;}
.x2a{left:32.640000pt;}
.x2b{left:34.240000pt;}
.x2c{left:36.000000pt;}
.x15{left:37.280000pt;}
.x41{left:39.880000pt;}
.x1c{left:40.800000pt;}
.x1d{left:42.266667pt;}
.x53{left:43.200000pt;}
.x3f{left:44.800000pt;}
.x5f{left:47.200000pt;}
.x40{left:48.160000pt;}
.x21{left:49.440000pt;}
.x84{left:50.586667pt;}
.x17{left:52.320000pt;}
.x6c{left:53.280000pt;}
.x54{left:54.240000pt;}
.x90{left:55.560000pt;}
.x77{left:58.880000pt;}
.x36{left:61.920000pt;}
.x6d{left:62.880000pt;}
.x42{left:64.800000pt;}
.x6b{left:68.480000pt;}
.x64{left:70.720000pt;}
.x46{left:72.000000pt;}
.x6e{left:73.760000pt;}
.x6f{left:74.720000pt;}
.xa{left:75.706667pt;}
.x8d{left:76.840000pt;}
.x44{left:80.186667pt;}
.x80{left:81.120000pt;}
.x7d{left:82.240000pt;}
.x7b{left:88.320000pt;}
.x7e{left:97.440000pt;}
.x8a{left:99.720000pt;}
.x7f{left:102.920000pt;}
.x1{left:113.471988pt;}
.x7c{left:115.720000pt;}
.x10{left:125.471988pt;}
.x3{left:137.466655pt;}
.x12{left:141.320000pt;}
.x85{left:145.146667pt;}
.x11{left:149.466655pt;}
.x4d{left:160.506655pt;}
.xb{left:161.466655pt;}
.x81{left:168.986667pt;}
.x47{left:173.786667pt;}
.x1e{left:179.560000pt;}
.x78{left:185.786667pt;}
.x4{left:197.786667pt;}
.xf{left:207.866655pt;}
.x86{left:221.480000pt;}
.x63{left:226.906655pt;}
.xc{left:233.466655pt;}
.x4e{left:246.426667pt;}
.x38{left:248.186667pt;}
.x60{left:252.386667pt;}
.x5b{left:255.426667pt;}
.x2d{left:257.826667pt;}
.x87{left:262.306667pt;}
.x48{left:268.066667pt;}
.x8e{left:274.306667pt;}
.x14{left:293.826667pt;}
.xd{left:299.266655pt;}
.x30{left:303.906667pt;}
.x24{left:320.706667pt;}
.x72{left:329.506667pt;}
.x68{left:331.586667pt;}
.x74{left:333.026667pt;}
.x43{left:342.626667pt;}
.x88{left:343.586667pt;}
.x4f{left:348.226667pt;}
.x65{left:357.346667pt;}
.x3a{left:358.626667pt;}
.x5c{left:361.026667pt;}
.x6{left:365.826667pt;}
.x49{left:369.826667pt;}
.x18{left:375.586667pt;}
.x22{left:377.826667pt;}
.x56{left:383.426667pt;}
.x2e{left:394.786667pt;}
.x82{left:395.906667pt;}
.xe{left:396.866655pt;}
.x73{left:401.506667pt;}
.x92{left:405.666667pt;}
.x66{left:406.626667pt;}
.x69{left:419.613333pt;}
.x79{left:420.573333pt;}
.x75{left:421.853333pt;}
.x32{left:428.573333pt;}
.x50{left:433.213333pt;}
.x26{left:434.333333pt;}
.x8b{left:437.533333pt;}
.x57{left:446.013333pt;}
.x70{left:451.613333pt;}
.x4a{left:458.973333pt;}
.x16{left:460.253333pt;}
.x20{left:461.853333pt;}
.x5d{left:466.653333pt;}
.x3d{left:469.053333pt;}
.x33{left:490.973333pt;}
.x45{left:503.613333pt;}
.x58{left:508.573333pt;}
.x51{left:518.173333pt;}
.x61{left:527.773333pt;}
.x8f{left:538.333333pt;}
.x7a{left:541.213333pt;}
.x1a{left:544.893333pt;}
.x23{left:545.853333pt;}
.x4b{left:547.933333pt;}
.x34{left:553.213333pt;}
.x83{left:556.893333pt;}
.x89{left:566.173333pt;}
.x93{left:569.533333pt;}
.x59{left:571.293333pt;}
.x5e{left:572.253333pt;}
.x3e{left:579.453333pt;}
.x8c{left:581.533333pt;}
.x27{left:593.253333pt;}
.x6a{left:601.573333pt;}
.x52{left:603.013333pt;}
.x76{left:605.253333pt;}
.x62{left:608.933333pt;}
.x35{left:615.493333pt;}
.x67{left:616.773333pt;}
.x5a{left:633.893333pt;}
.x37{left:651.493333pt;}
.x2{left:658.213333pt;}
}




    .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; }
  