
    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_ec11f12b26811eb57228b462.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6ead04b31a908809f7d51ecf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9c16a588b157dcb458d26639.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e0b1c568308a89cbdd83f5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bd344c4f755781cdfc0811a5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_beda53514745764128ae534c.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_49c54035294375d99b3b6a7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_3a7617cb1c3c2561e6948c80.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b2a131bbfeab04baa8af4703.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2fb7e9f21c94fb69dda2f33e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;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_45f81512ac9e010530d8e863.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c14b454d6733a21d2ca71e04.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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_d6e5c2131ca8250f3f07b25a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8f113fcb0710af5e6bcbc537.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e696e1eedc11110c1ddeb0b5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_23d6f7ccf6bac7a696c70ede.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.112305;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_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.104004;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_b46c21fcc7c15da00dd24fbd.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_e77bcb3df839ce9121bfbe2e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_40e9a64ee9a49a641704e090.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5be6b97b9fe299df35fba496.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_39770532a44997f179cf1c23.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_c91a8fc466baf9e02e0b37a5.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_9298e42f877b9f800a37fe52.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_b9d3cac751dba4e8980cd447.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.112305;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_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.104004;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_3a1bfc6770fa3575fe860ee0.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_e58481af34ad6ad903cd1294.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e1e4957d7e586ad09fc7355a.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_41c120d1171a068e15cad287.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_433d854f408a9153c3826bce.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.978027;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_7715edbf3a3607456bf7e7d3.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_81d1a46fca2c24be8e5c2b2b.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.112305;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_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.104004;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_2b16f9fcf1b3b05e04925088.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_5893345f8b2493b99c3e4828.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_0cfda78b762f2f5e2460316e.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_f5bb45d064f038ca94769bdc.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_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_bd759576a1b86305c5011fce.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_23e65c9203f83e9ea94976db.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.104004;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_b4fffc453aa6ff7bed429473.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_2e1d8469a5e9a00c49ccadb5.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_a5e823005680f8830f486967.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_07d50512dc1613cfe2fc527a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.978027;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_496fa920bc1d5ba807e2ff03.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.104004;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_134db1b3ebca6fc5e4ef068e.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_1e98e8c94eb963cc47f6fd50.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_6ce1406e778c962568137b27.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.104004;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:ff3e;src:url('chunks/assets/font_556884c2e63be0c644f8106e.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_4a0901c914014dcff9ff39d9.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_4187c55f26d8912121244696.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_37215e007851332b9c85c449.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_69d64f5bf77f92a8f0eef8a4.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_faff4924c1a577586fe51f7b.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.104004;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:ff45;src:url('chunks/assets/font_cc5a1797d2e87b4198470f31.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_246e5c34cdecda0726b5f913.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_53b4bec4f4b5b68cd2bd7303.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_3fbbbc4c7abd79b444ca4179.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_e2592d31fe6aa0745d5216b9.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_c40da8c8b1af2d7ef400c910.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.112305;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:ff4b;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.104004;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:ff4c;src:url('chunks/assets/font_90c9ddd7f05e5ada4a6eef58.woff2')format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url('chunks/assets/font_324a5e5a25ef4eee9d443a5b.woff2')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_542cb2434db75e1ed2b63b24.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.112305;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:ff4f;src:url('chunks/assets/font_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_72c6e9ef46b5aa8f1a56f130.woff2')format("woff");}.ff50{font-family:ff50;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:ff51;src:url('chunks/assets/font_c258ac0491b4b29560d267a1.woff2')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_565d553d3d50f857d0fe6282.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.112305;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:ff53;src:url('chunks/assets/font_a2af717f3749320c05fdd8bb.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.104004;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:ff54;src:url('chunks/assets/font_df1f7f76d58418cba62a12e1.woff2')format("woff");}.ff54{font-family:ff54;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:ff55;src:url('chunks/assets/font_94b1567d04538e939d7461a6.woff2')format("woff");}.ff55{font-family:ff55;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:ff56;src:url('chunks/assets/font_b1a530bc327290b01b7f8c78.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.112305;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:ff57;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_5abf0aa5917200989bc2cef5.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_59e13daf20cce1645f2f2d37.woff2')format("woff");}.ff59{font-family:ff59;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:ff5a;src:url('chunks/assets/font_1e21a90f6a453cabea83f81d.woff2')format("woff");}.ff5a{font-family:ff5a;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:ff5b;src:url('chunks/assets/font_dae28a35246e5b210e2b831f.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.112305;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-80.640000px;}
.v4{vertical-align:-78.480000px;}
.v3{vertical-align:-72.720000px;}
.v1{vertical-align:-71.280000px;}
.v7{vertical-align:-69.120000px;}
.v8{vertical-align:-63.360000px;}
.v5{vertical-align:-61.200000px;}
.v9{vertical-align:-54.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.lsf{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.126000px;}
.ls21{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.316000px;}
.lsc{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.060000px;}
.ls1c{letter-spacing:3.600000px;}
.ls1d{letter-spacing:5.760000px;}
.ls12{letter-spacing:6.480000px;}
.ls15{letter-spacing:13.140000px;}
.ls18{letter-spacing:15.120000px;}
.ls0{letter-spacing:18.900000px;}
.ls22{letter-spacing:22.320000px;}
.ls8{letter-spacing:27.540000px;}
.ls28{letter-spacing:29.520000px;}
.ls20{letter-spacing:31.500000px;}
.ls11{letter-spacing:35.280000px;}
.ls19{letter-spacing:70.740000px;}
.ls1e{letter-spacing:76.680000px;}
.ls9{letter-spacing:196.536000px;}
.lsa{letter-spacing:240.636000px;}
.ls7{letter-spacing:243.336000px;}
.ls14{letter-spacing:245.880000px;}
.ls1a{letter-spacing:415.776000px;}
.ls1{letter-spacing:564.300000px;}
.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;}
}
.ws8{word-spacing:-30.456000px;}
.ws3{word-spacing:-30.060000px;}
.wsf{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.208000px;}
.ws5{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.wsb{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.284000px;}
.wse{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-2.693760px;}
._2{margin-left:-1.667040px;}
._0{width:1.192320px;}
._1{width:3.143040px;}
._17{width:4.912800px;}
._18{width:5.917440px;}
._20{width:7.606560px;}
._b{width:9.183840px;}
._23{width:10.367040px;}
._8{width:11.382240px;}
._7{width:12.740160px;}
._e{width:14.429280px;}
._f{width:15.456000px;}
._24{width:16.483200px;}
._a{width:17.895840px;}
._9{width:19.231680px;}
._1f{width:20.313600px;}
._5{width:22.201440px;}
._6{width:23.813280px;}
._16{width:25.093920px;}
._1d{width:26.440800px;}
._1e{width:28.096800px;}
._21{width:29.962560px;}
._22{width:31.320000px;}
._13{width:32.899200px;}
._27{width:33.912000px;}
._3{width:34.941600px;}
._2c{width:36.008160px;}
._14{width:37.050240px;}
._15{width:38.054880px;}
._2f{width:39.167040px;}
._c{width:40.218720px;}
._d{width:41.576640px;}
._1c{width:43.420320px;}
._1b{width:44.535360px;}
._12{width:46.644000px;}
._11{width:47.770080px;}
._25{width:51.984000px;}
._26{width:53.167680px;}
._28{width:54.472320px;}
._29{width:55.517760px;}
._2a{width:57.672000px;}
._2b{width:58.968000px;}
._19{width:71.472960px;}
._1a{width:72.488640px;}
._10{width:78.781440px;}
._2d{width:305.928000px;}
._2e{width:516.456000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fsb{font-size:23.760000px;}
.fs6{font-size:33.120000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:102.240000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y14d{bottom:2.925000px;}
.y173{bottom:3.225000px;}
.y157{bottom:3.240000px;}
.y4{bottom:5.040000px;}
.y6e{bottom:5.212500px;}
.y2{bottom:5.220000px;}
.y9{bottom:13.500000px;}
.y172{bottom:18.705000px;}
.y156{bottom:18.720000px;}
.y15d{bottom:18.900000px;}
.y14b{bottom:21.420000px;}
.y8{bottom:33.660000px;}
.y15f{bottom:34.020000px;}
.y169{bottom:34.200000px;}
.y171{bottom:34.365000px;}
.y152{bottom:34.380000px;}
.y14a{bottom:38.700000px;}
.y16d{bottom:49.485000px;}
.y151{bottom:49.500000px;}
.y168{bottom:49.680000px;}
.y170{bottom:49.845000px;}
.y155{bottom:49.860000px;}
.y70{bottom:55.836000px;}
.ya1{bottom:56.736000px;}
.y150{bottom:64.980000px;}
.y16c{bottom:65.010000px;}
.y154{bottom:65.340000px;}
.y16f{bottom:65.370000px;}
.y9f{bottom:67.003500px;}
.y1{bottom:67.176000px;}
.y6d{bottom:69.703500px;}
.y14f{bottom:80.460000px;}
.y16b{bottom:80.490000px;}
.y15a{bottom:80.640000px;}
.y153{bottom:80.820000px;}
.y16e{bottom:80.850000px;}
.y15c{bottom:81.000000px;}
.y6{bottom:91.476000px;}
.y159{bottom:96.120000px;}
.y15b{bottom:96.480000px;}
.y166{bottom:111.960000px;}
.y163{bottom:127.440000px;}
.y9d{bottom:141.336000px;}
.y162{bottom:142.740000px;}
.y165{bottom:143.100000px;}
.y2ab{bottom:144.396000px;}
.y144{bottom:146.736000px;}
.y121{bottom:147.276000px;}
.y1f9{bottom:148.176000px;}
.y2c1{bottom:155.910000px;}
.y9c{bottom:156.990000px;}
.y120{bottom:157.350000px;}
.y22a{bottom:158.070000px;}
.y161{bottom:158.250000px;}
.y164{bottom:158.610000px;}
.y176{bottom:159.870000px;}
.y1d1{bottom:160.050000px;}
.y1b4{bottom:162.930000px;}
.y273{bottom:164.730000px;}
.y2aa{bottom:168.150000px;}
.y50{bottom:169.590000px;}
.y143{bottom:170.490000px;}
.y1f8{bottom:171.930000px;}
.y9b{bottom:172.470000px;}
.y213{bottom:172.830000px;}
.y175{bottom:175.710000px;}
.y23e{bottom:178.050000px;}
.ycc{bottom:178.410000px;}
.y2c0{bottom:179.670000px;}
.y11f{bottom:181.470000px;}
.y229{bottom:182.010000px;}
.y209{bottom:182.730000px;}
.y1d0{bottom:183.990000px;}
.y272{bottom:185.970000px;}
.y9a{bottom:187.950000px;}
.ycb{bottom:188.490000px;}
.y1a1{bottom:188.670000px;}
.y4f{bottom:191.370000px;}
.y1f7{bottom:194.610000px;}
.y28d{bottom:199.650000px;}
.y23d{bottom:201.810000px;}
.y11d{bottom:202.530000px;}
.y99{bottom:203.430000px;}
.y208{bottom:203.790000px;}
.y24a{bottom:204.510000px;}
.y174{bottom:205.230000px;}
.y228{bottom:205.770000px;}
.y1cf{bottom:207.750000px;}
.y98{bottom:209.370000px;}
.y271{bottom:209.730000px;}
.y2a9{bottom:209.910000px;}
.y11e{bottom:210.810000px;}
.y16a{bottom:211.365000px;}
.y1a0{bottom:212.610000px;}
.y4e{bottom:213.150000px;}
.y142{bottom:213.690000px;}
.y1f6{bottom:215.670000px;}
.y97{bottom:219.090000px;}
.y2bf{bottom:221.430000px;}
.y23c{bottom:225.570000px;}
.y11c{bottom:226.290000px;}
.y207{bottom:227.550000px;}
.y227{bottom:229.530000px;}
.y1ce{bottom:231.510000px;}
.y141{bottom:233.490000px;}
.y2a8{bottom:233.670000px;}
.yca{bottom:234.030000px;}
.y96{bottom:234.570000px;}
.y4d{bottom:235.110000px;}
.y19f{bottom:235.830000px;}
.y1f5{bottom:239.430000px;}
.yf6{bottom:240.510000px;}
.y28c{bottom:241.590000px;}
.y2be{bottom:245.370000px;}
.y23b{bottom:249.330000px;}
.y95{bottom:250.050000px;}
.y11b{bottom:250.230000px;}
.y206{bottom:251.310000px;}
.y226{bottom:252.030000px;}
.y140{bottom:253.290000px;}
.y1cd{bottom:255.270000px;}
.y1b3{bottom:255.990000px;}
.y4c{bottom:256.890000px;}
.y270{bottom:257.250000px;}
.y19e{bottom:257.790000px;}
.yc9{bottom:257.970000px;}
.y1f4{bottom:263.190000px;}
.y94{bottom:265.530000px;}
.y2c9{bottom:269.130000px;}
.y225{bottom:273.135000px;}
.y13f{bottom:273.315000px;}
.y11a{bottom:274.035000px;}
.y205{bottom:275.115000px;}
.y2a7{bottom:275.475000px;}
.y1cc{bottom:277.815000px;}
.y4b{bottom:278.670000px;}
.y232{bottom:279.255000px;}
.y19d{bottom:280.335000px;}
.yc8{bottom:280.515000px;}
.y93{bottom:281.235000px;}
.y28b{bottom:283.395000px;}
.y92{bottom:287.175000px;}
.yf5{bottom:296.715000px;}
.y91{bottom:297.075000px;}
.y119{bottom:297.795000px;}
.y1cb{bottom:299.055000px;}
.y2a6{bottom:299.415000px;}
.y6b{bottom:300.090000px;}
.y4a{bottom:300.450000px;}
.yc7{bottom:301.575000px;}
.y19c{bottom:301.935000px;}
.y231{bottom:303.015000px;}
.y26f{bottom:304.995000px;}
.y167{bottom:305.355000px;}
.y13e{bottom:308.955000px;}
.y1f3{bottom:310.935000px;}
.yf4{bottom:312.195000px;}
.y1b2{bottom:318.135000px;}
.y23a{bottom:319.575000px;}
.y224{bottom:320.835000px;}
.y118{bottom:321.555000px;}
.y6a{bottom:321.870000px;}
.y49{bottom:322.410000px;}
.y1ca{bottom:322.815000px;}
.y28a{bottom:325.155000px;}
.yc6{bottom:325.335000px;}
.y230{bottom:325.515000px;}
.y19b{bottom:325.695000px;}
.yf3{bottom:327.675000px;}
.y1b1{bottom:328.215000px;}
.y26e{bottom:328.755000px;}
.yf2{bottom:333.615000px;}
.y1f2{bottom:334.695000px;}
.y239{bottom:340.635000px;}
.y2a5{bottom:341.175000px;}
.y13d{bottom:341.535000px;}
.y212{bottom:342.615000px;}
.yf1{bottom:343.155000px;}
.y69{bottom:343.695000px;}
.y48{bottom:344.235000px;}
.y223{bottom:344.595000px;}
.y117{bottom:345.495000px;}
.y1c9{bottom:346.575000px;}
.y289{bottom:348.915000px;}
.yc5{bottom:349.275000px;}
.y19a{bottom:349.455000px;}
.y26d{bottom:352.515000px;}
.y2bd{bottom:352.695000px;}
.y90{bottom:356.835000px;}
.y1f1{bottom:358.455000px;}
.yf0{bottom:358.815000px;}
.y13c{bottom:362.415000px;}
.y1b0{bottom:364.395000px;}
.yef{bottom:364.755000px;}
.y2a4{bottom:364.935000px;}
.y68{bottom:365.475000px;}
.y47{bottom:366.015000px;}
.y211{bottom:366.375000px;}
.y222{bottom:368.355000px;}
.y116{bottom:369.255000px;}
.y1c8{bottom:370.335000px;}
.yc4{bottom:373.035000px;}
.y199{bottom:373.215000px;}
.yee{bottom:374.835000px;}
.y26c{bottom:375.015000px;}
.y2bc{bottom:376.635000px;}
.y8f{bottom:377.715000px;}
.y1f0{bottom:381.135000px;}
.y13b{bottom:386.355000px;}
.y67{bottom:387.435000px;}
.y46{bottom:387.795000px;}
.y1ae{bottom:388.335000px;}
.y210{bottom:390.315000px;}
.y288{bottom:390.675000px;}
.y221{bottom:392.295000px;}
.y115{bottom:393.015000px;}
.y1c7{bottom:394.275000px;}
.y2d1{bottom:394.635000px;}
.y26b{bottom:396.255000px;}
.y1af{bottom:396.615000px;}
.yc3{bottom:396.795000px;}
.y197{bottom:396.975000px;}
.y160{bottom:399.135000px;}
.y2bb{bottom:400.395000px;}
.y8e{bottom:401.655000px;}
.y1ef{bottom:402.195000px;}
.yed{bottom:404.535000px;}
.y198{bottom:405.255000px;}
.y2a3{bottom:406.695000px;}
.y66{bottom:409.215000px;}
.y45{bottom:409.575000px;}
.y13a{bottom:410.115000px;}
.y1ad{bottom:412.095000px;}
.y20f{bottom:414.075000px;}
.y287{bottom:414.615000px;}
.y114{bottom:415.515000px;}
.y220{bottom:416.055000px;}
.y1c6{bottom:418.035000px;}
.y2d0{bottom:418.395000px;}
.y26a{bottom:420.015000px;}
.yc2{bottom:420.555000px;}
.y196{bottom:420.915000px;}
.y8d{bottom:425.415000px;}
.y1ee{bottom:425.955000px;}
.yec{bottom:428.295000px;}
.y2a2{bottom:430.635000px;}
.y65{bottom:430.995000px;}
.y44{bottom:431.535000px;}
.y139{bottom:433.875000px;}
.y113{bottom:435.315000px;}
.y238{bottom:435.855000px;}
.y20e{bottom:437.835000px;}
.y249{bottom:439.275000px;}
.y21f{bottom:439.815000px;}
.y204{bottom:440.535000px;}
.y1c5{bottom:441.795000px;}
.y2ba{bottom:442.155000px;}
.y269{bottom:443.775000px;}
.yc1{bottom:444.495000px;}
.y195{bottom:444.675000px;}
.y8c{bottom:449.175000px;}
.y1ed{bottom:449.715000px;}
.yea{bottom:452.235000px;}
.y64{bottom:452.775000px;}
.y43{bottom:453.315000px;}
.y2a1{bottom:454.395000px;}
.y112{bottom:455.295000px;}
.y286{bottom:456.375000px;}
.y1ac{bottom:457.275000px;}
.y138{bottom:457.635000px;}
.y237{bottom:459.075000px;}
.y2cf{bottom:460.155000px;}
.y20d{bottom:460.335000px;}
.yeb{bottom:460.515000px;}
.y248{bottom:461.235000px;}
.y203{bottom:461.595000px;}
.y21e{bottom:462.315000px;}
.y25b{bottom:463.575000px;}
.y1c4{bottom:465.555000px;}
.y2b9{bottom:465.915000px;}
.yc0{bottom:466.995000px;}
.y268{bottom:467.535000px;}
.y194{bottom:468.435000px;}
.y8b{bottom:472.935000px;}
.y1ec{bottom:473.475000px;}
.y63{bottom:474.735000px;}
.y42{bottom:475.095000px;}
.ye8{bottom:475.995000px;}
.y285{bottom:480.135000px;}
.y1ab{bottom:481.215000px;}
.y137{bottom:481.575000px;}
.y21d{bottom:483.555000px;}
.y2c8{bottom:483.915000px;}
.ye9{bottom:484.275000px;}
.y247{bottom:485.175000px;}
.y202{bottom:485.535000px;}
.y25a{bottom:487.515000px;}
.ybf{bottom:488.055000px;}
.y22f{bottom:488.235000px;}
.y1c3{bottom:489.495000px;}
.y267{bottom:490.215000px;}
.y193{bottom:492.195000px;}
.y111{bottom:494.895000px;}
.y2a0{bottom:496.155000px;}
.y62{bottom:496.515000px;}
.y41{bottom:496.875000px;}
.y1eb{bottom:497.415000px;}
.ye7{bottom:498.495000px;}
.y236{bottom:504.075000px;}
.y136{bottom:505.335000px;}
.y21c{bottom:507.315000px;}
.y246{bottom:507.675000px;}
.y2b8{bottom:507.855000px;}
.y201{bottom:509.295000px;}
.y259{bottom:511.275000px;}
.ybe{bottom:511.815000px;}
.y1c2{bottom:511.995000px;}
.y110{bottom:514.695000px;}
.y192{bottom:514.875000px;}
.y61{bottom:518.295000px;}
.y40{bottom:518.835000px;}
.ye6{bottom:519.555000px;}
.y29f{bottom:519.915000px;}
.y1ea{bottom:521.175000px;}
.y284{bottom:521.895000px;}
.y235{bottom:525.135000px;}
.y2f{bottom:529.095000px;}
.y21b{bottom:531.075000px;}
.y2b7{bottom:531.615000px;}
.y1c1{bottom:533.055000px;}
.y258{bottom:533.775000px;}
.y10f{bottom:534.495000px;}
.y266{bottom:535.035000px;}
.ybd{bottom:535.575000px;}
.y191{bottom:535.935000px;}
.y60{bottom:540.075000px;}
.y3f{bottom:540.615000px;}
.y8a{bottom:540.795000px;}
.ye5{bottom:543.495000px;}
.y29e{bottom:543.855000px;}
.y1e9{bottom:544.935000px;}
.y283{bottom:545.835000px;}
.y234{bottom:548.895000px;}
.y2ce{bottom:549.615000px;}
.y2e{bottom:550.875000px;}
.y135{bottom:551.595000px;}
.y1aa{bottom:552.855000px;}
.y10e{bottom:554.475000px;}
.y21a{bottom:554.835000px;}
.y2c7{bottom:555.375000px;}
.y1c0{bottom:556.845000px;}
.y265{bottom:558.825000px;}
.ybc{bottom:559.545000px;}
.y190{bottom:559.725000px;}
.y89{bottom:561.705000px;}
.y5f{bottom:561.855000px;}
.y3e{bottom:562.395000px;}
.ye4{bottom:567.285000px;}
.y29d{bottom:567.645000px;}
.y1e8{bottom:568.185000px;}
.y15e{bottom:570.705000px;}
.y134{bottom:572.685000px;}
.y2b6{bottom:573.405000px;}
.y1a9{bottom:576.825000px;}
.y219{bottom:578.805000px;}
.y1bf{bottom:580.785000px;}
.y264{bottom:582.765000px;}
.ybb{bottom:583.305000px;}
.y18f{bottom:583.485000px;}
.y5e{bottom:583.815000px;}
.y3d{bottom:584.175000px;}
.y88{bottom:585.465000px;}
.y282{bottom:587.625000px;}
.y10d{bottom:590.145000px;}
.y1e7{bottom:590.325000px;}
.y2d{bottom:590.655000px;}
.ye3{bottom:591.045000px;}
.y2cd{bottom:591.405000px;}
.y133{bottom:596.625000px;}
.y2b5{bottom:597.165000px;}
.y1a7{bottom:600.585000px;}
.y218{bottom:602.565000px;}
.y2c{bottom:604.545000px;}
.y5d{bottom:605.625000px;}
.y10c{bottom:605.805000px;}
.y3c{bottom:605.985000px;}
.y263{bottom:606.525000px;}
.yb9{bottom:607.065000px;}
.y18e{bottom:607.425000px;}
.y1a8{bottom:608.865000px;}
.y87{bottom:609.225000px;}
.y29c{bottom:609.405000px;}
.y281{bottom:611.385000px;}
.y1e6{bottom:613.545000px;}
.ye2{bottom:614.805000px;}
.y2cc{bottom:615.165000px;}
.yba{bottom:615.345000px;}
.y132{bottom:620.385000px;}
.y2c6{bottom:621.105000px;}
.y1a6{bottom:624.345000px;}
.y217{bottom:625.425000px;}
.y257{bottom:626.325000px;}
.y5c{bottom:627.405000px;}
.y3b{bottom:627.945000px;}
.y1be{bottom:628.305000px;}
.y262{bottom:629.025000px;}
.yb8{bottom:629.565000px;}
.y18d{bottom:631.185000px;}
.y86{bottom:633.165000px;}
.y158{bottom:633.525000px;}
.y2b{bottom:634.245000px;}
.y1e5{bottom:635.865000px;}
.ye1{bottom:638.745000px;}
.y2b4{bottom:639.105000px;}
.y131{bottom:644.145000px;}
.y1a5{bottom:646.845000px;}
.y216{bottom:647.745000px;}
.y20c{bottom:648.105000px;}
.y2a{bottom:649.005000px;}
.y5b{bottom:649.185000px;}
.y3a{bottom:649.725000px;}
.y256{bottom:650.085000px;}
.yb7{bottom:650.805000px;}
.y29b{bottom:651.165000px;}
.y200{bottom:652.065000px;}
.y280{bottom:653.145000px;}
.y10b{bottom:653.325000px;}
.y18c{bottom:654.945000px;}
.y1e4{bottom:659.625000px;}
.ye0{bottom:661.245000px;}
.y2b3{bottom:662.865000px;}
.y29{bottom:667.005000px;}
.y130{bottom:667.905000px;}
.y5a{bottom:671.145000px;}
.y39{bottom:671.505000px;}
.y1bd{bottom:671.865000px;}
.y255{bottom:673.845000px;}
.yb6{bottom:674.565000px;}
.y29a{bottom:675.105000px;}
.y1ff{bottom:676.005000px;}
.y85{bottom:677.085000px;}
.y18b{bottom:678.705000px;}
.y2cb{bottom:680.865000px;}
.ydf{bottom:682.305000px;}
.y1e3{bottom:683.025000px;}
.y2c5{bottom:686.625000px;}
.y28{bottom:688.785000px;}
.y12f{bottom:691.845000px;}
.y59{bottom:692.925000px;}
.y38{bottom:693.285000px;}
.y215{bottom:694.185000px;}
.y1bc{bottom:695.805000px;}
.y254{bottom:697.785000px;}
.y84{bottom:697.965000px;}
.yb5{bottom:698.325000px;}
.y1fe{bottom:698.505000px;}
.y299{bottom:698.865000px;}
.y10a{bottom:700.845000px;}
.y18a{bottom:702.105000px;}
.y2b2{bottom:704.625000px;}
.y1e2{bottom:705.345000px;}
.yde{bottom:706.065000px;}
.y58{bottom:714.705000px;}
.y37{bottom:715.245000px;}
.y12e{bottom:715.605000px;}
.y1bb{bottom:719.565000px;}
.y253{bottom:721.545000px;}
.y83{bottom:721.725000px;}
.yb4{bottom:722.085000px;}
.y298{bottom:722.625000px;}
.y189{bottom:724.065000px;}
.y109{bottom:724.785000px;}
.y1e1{bottom:728.205000px;}
.y2c4{bottom:728.385000px;}
.y27{bottom:728.565000px;}
.ydd{bottom:729.825000px;}
.y57{bottom:736.485000px;}
.y36{bottom:737.025000px;}
.y12d{bottom:739.365000px;}
.y20b{bottom:742.065000px;}
.y26{bottom:742.425000px;}
.y27f{bottom:742.605000px;}
.y14e{bottom:742.965000px;}
.y1ba{bottom:743.325000px;}
.y252{bottom:745.305000px;}
.y82{bottom:745.485000px;}
.yb3{bottom:746.025000px;}
.y2b1{bottom:746.385000px;}
.y188{bottom:746.925000px;}
.y1a4{bottom:747.645000px;}
.y108{bottom:748.545000px;}
.y1e0{bottom:749.265000px;}
.y2c3{bottom:752.325000px;}
.ydb{bottom:753.765000px;}
.y56{bottom:758.265000px;}
.y35{bottom:758.805000px;}
.ydc{bottom:762.045000px;}
.y12c{bottom:763.125000px;}
.y297{bottom:764.385000px;}
.y27e{bottom:766.365000px;}
.y1b9{bottom:767.085000px;}
.y251{bottom:767.445000px;}
.y187{bottom:767.625000px;}
.y261{bottom:767.805000px;}
.y107{bottom:768.705000px;}
.yb2{bottom:769.785000px;}
.y2b0{bottom:770.325000px;}
.y25{bottom:772.125000px;}
.y1df{bottom:773.025000px;}
.yd9{bottom:777.525000px;}
.y55{bottom:780.225000px;}
.y34{bottom:780.585000px;}
.yda{bottom:785.805000px;}
.y24{bottom:787.065000px;}
.y106{bottom:788.325000px;}
.y81{bottom:789.045000px;}
.y1b8{bottom:789.765000px;}
.y27d{bottom:790.305000px;}
.y1fd{bottom:791.025000px;}
.y186{bottom:791.745000px;}
.yb1{bottom:792.285000px;}
.y2c2{bottom:794.085000px;}
.y1de{bottom:796.965000px;}
.y23{bottom:801.285000px;}
.y54{bottom:802.005000px;}
.y33{bottom:802.365000px;}
.y12b{bottom:806.865000px;}
.y105{bottom:808.125000px;}
.y1a3{bottom:810.825000px;}
.y296{bottom:812.085000px;}
.y250{bottom:812.805000px;}
.yb0{bottom:813.345000px;}
.y1fc{bottom:814.785000px;}
.y185{bottom:815.685000px;}
.y1dd{bottom:820.725000px;}
.y80{bottom:821.805000px;}
.y53{bottom:823.785000px;}
.y32{bottom:824.325000px;}
.yd8{bottom:825.045000px;}
.y104{bottom:827.925000px;}
.y12a{bottom:830.625000px;}
.y22{bottom:832.065000px;}
.y1a2{bottom:833.325000px;}
.y1b7{bottom:834.585000px;}
.y2af{bottom:835.845000px;}
.y24f{bottom:836.565000px;}
.y14c{bottom:836.925000px;}
.yaf{bottom:837.105000px;}
.y1fb{bottom:838.590000px;}
.y184{bottom:839.490000px;}
.y7f{bottom:840.750000px;}
.y1dc{bottom:843.270000px;}
.y31{bottom:846.285000px;}
.y21{bottom:847.185000px;}
.y52{bottom:847.365000px;}
.y103{bottom:847.950000px;}
.yd7{bottom:849.030000px;}
.y149{bottom:853.170000px;}
.y295{bottom:853.890000px;}
.y129{bottom:854.430000px;}
.y27c{bottom:855.870000px;}
.y214{bottom:857.130000px;}
.y1b6{bottom:858.390000px;}
.y24e{bottom:860.370000px;}
.yae{bottom:861.090000px;}
.y20{bottom:861.405000px;}
.y22e{bottom:862.350000px;}
.y183{bottom:863.250000px;}
.y1db{bottom:864.330000px;}
.y7e{bottom:864.690000px;}
.y20a{bottom:866.670000px;}
.y30{bottom:871.170000px;}
.y51{bottom:871.890000px;}
.yd6{bottom:872.790000px;}
.y1f{bottom:873.870000px;}
.y294{bottom:877.650000px;}
.y128{bottom:878.370000px;}
.y1b5{bottom:882.330000px;}
.y24d{bottom:884.310000px;}
.yad{bottom:884.850000px;}
.y102{bottom:885.210000px;}
.y22d{bottom:886.290000px;}
.y182{bottom:887.010000px;}
.y1da{bottom:888.270000px;}
.y7d{bottom:888.450000px;}
.y16{bottom:895.650000px;}
.yd5{bottom:896.550000px;}
.y27b{bottom:897.630000px;}
.y2ae{bottom:901.410000px;}
.y127{bottom:902.130000px;}
.y233{bottom:904.830000px;}
.y101{bottom:906.090000px;}
.y24c{bottom:908.070000px;}
.yac{bottom:908.610000px;}
.y22c{bottom:908.790000px;}
.y245{bottom:910.050000px;}
.y181{bottom:910.950000px;}
.y1d9{bottom:912.030000px;}
.y7c{bottom:912.210000px;}
.y293{bottom:919.410000px;}
.yd4{bottom:920.310000px;}
.y27a{bottom:921.570000px;}
.y126{bottom:925.890000px;}
.y100{bottom:929.850000px;}
.y1e{bottom:930.570000px;}
.y148{bottom:931.290000px;}
.yab{bottom:932.370000px;}
.y244{bottom:933.270000px;}
.y180{bottom:933.450000px;}
.y1d8{bottom:935.250000px;}
.y15{bottom:935.430000px;}
.y7a{bottom:935.970000px;}
.y1d{bottom:941.190000px;}
.y292{bottom:943.350000px;}
.y7b{bottom:944.250000px;}
.y125{bottom:949.650000px;}
.y260{bottom:951.630000px;}
.y147{bottom:953.250000px;}
.yff{bottom:953.610000px;}
.y17f{bottom:954.510000px;}
.y243{bottom:955.230000px;}
.yaa{bottom:956.310000px;}
.y1d7{bottom:957.210000px;}
.y14{bottom:957.390000px;}
.y78{bottom:959.910000px;}
.y1c{bottom:961.170000px;}
.y279{bottom:963.330000px;}
.y2ad{bottom:967.110000px;}
.yd3{bottom:968.010000px;}
.y79{bottom:968.190000px;}
.y124{bottom:973.410000px;}
.y25f{bottom:975.570000px;}
.y146{bottom:977.190000px;}
.yfe{bottom:977.550000px;}
.y17e{bottom:978.270000px;}
.y242{bottom:978.630000px;}
.y1d6{bottom:979.890000px;}
.ya9{bottom:980.070000px;}
.y77{bottom:983.670000px;}
.y291{bottom:985.110000px;}
.y1b{bottom:986.730000px;}
.y278{bottom:987.090000px;}
.yd2{bottom:991.770000px;}
.y123{bottom:997.350000px;}
.y25e{bottom:999.330000px;}
.y24b{bottom:999.690000px;}
.y145{bottom:1000.050000px;}
.y7{bottom:1000.230000px;}
.y241{bottom:1000.950000px;}
.yfd{bottom:1001.310000px;}
.y17d{bottom:1002.210000px;}
.y13{bottom:1002.390000px;}
.ya8{bottom:1003.830000px;}
.y76{bottom:1007.430000px;}
.y290{bottom:1008.870000px;}
.yd1{bottom:1014.270000px;}
.y122{bottom:1021.110000px;}
.y25d{bottom:1022.550000px;}
.yfc{bottom:1023.810000px;}
.ya7{bottom:1023.990000px;}
.y12{bottom:1024.530000px;}
.y240{bottom:1024.710000px;}
.y1d5{bottom:1025.070000px;}
.y17c{bottom:1025.970000px;}
.y1a{bottom:1026.510000px;}
.y2ca{bottom:1026.870000px;}
.y277{bottom:1028.850000px;}
.y75{bottom:1031.190000px;}
.yd0{bottom:1031.730000px;}
.y2ac{bottom:1032.630000px;}
.yfb{bottom:1043.610000px;}
.y25c{bottom:1044.510000px;}
.ya6{bottom:1044.870000px;}
.y11{bottom:1046.850000px;}
.y23f{bottom:1047.210000px;}
.y1fa{bottom:1047.570000px;}
.y1d4{bottom:1048.830000px;}
.ycf{bottom:1049.010000px;}
.y17b{bottom:1049.730000px;}
.y28f{bottom:1050.630000px;}
.y74{bottom:1055.130000px;}
.yfa{bottom:1063.410000px;}
.y19{bottom:1066.110000px;}
.yce{bottom:1066.290000px;}
.y10{bottom:1067.730000px;}
.ya5{bottom:1068.630000px;}
.y276{bottom:1070.610000px;}
.y22b{bottom:1071.330000px;}
.y1d3{bottom:1072.590000px;}
.y17a{bottom:1073.490000px;}
.y28e{bottom:1074.570000px;}
.yf{bottom:1082.850000px;}
.yf9{bottom:1083.390000px;}
.ya4{bottom:1092.570000px;}
.y275{bottom:1094.550000px;}
.y1d2{bottom:1095.270000px;}
.y179{bottom:1097.430000px;}
.ye{bottom:1097.790000px;}
.y73{bottom:1098.510000px;}
.ycd{bottom:1100.850000px;}
.yf8{bottom:1103.190000px;}
.y18{bottom:1105.710000px;}
.yd{bottom:1112.730000px;}
.ya3{bottom:1116.330000px;}
.y72{bottom:1117.050000px;}
.y274{bottom:1117.410000px;}
.y178{bottom:1117.770000px;}
.yf7{bottom:1123.020000px;}
.yc{bottom:1127.850000px;}
.y71{bottom:1137.600000px;}
.y177{bottom:1139.760000px;}
.ya2{bottom:1140.120000px;}
.y17{bottom:1140.660000px;}
.yb{bottom:1142.820000px;}
.ya{bottom:1157.760000px;}
.y6c{bottom:1189.620000px;}
.y9e{bottom:1190.340000px;}
.y3{bottom:1193.220000px;}
.ya0{bottom:1238.760000px;}
.y5{bottom:1238.940000px;}
.y6f{bottom:1240.200000px;}
.h1b{height:15.502500px;}
.h4{height:19.440000px;}
.h13{height:20.872500px;}
.h2{height:20.880000px;}
.h24{height:23.319141px;}
.hd{height:32.505469px;}
.hf{height:35.332031px;}
.he{height:40.985156px;}
.h15{height:47.344922px;}
.h7{height:47.685000px;}
.h1e{height:52.971680px;}
.h10{height:52.998047px;}
.h16{height:53.573906px;}
.h1c{height:54.421875px;}
.h1a{height:58.621992px;}
.h6{height:58.651172px;}
.h8{height:60.226875px;}
.h20{height:62.100000px;}
.h17{height:64.546875px;}
.h5{height:65.010937px;}
.h12{height:66.757500px;}
.ha{height:67.890938px;}
.h19{height:70.545000px;}
.h18{height:70.628906px;}
.h3{height:70.664062px;}
.hc{height:72.562500px;}
.h9{height:82.676953px;}
.h22{height:93.045000px;}
.h1d{height:93.060000px;}
.h23{height:93.081000px;}
.h1f{height:108.720000px;}
.hb{height:121.179375px;}
.h21{height:170.850000px;}
.h14{height:1262.877945px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:23.925000px;}
.w9{width:103.129500px;}
.wa{width:158.235000px;}
.w4{width:163.288500px;}
.wb{width:414.435000px;}
.w3{width:623.070000px;}
.w8{width:677.250000px;}
.w7{width:892.978125px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:1.429500px;}
.x2{left:3.060000px;}
.x32{left:7.729500px;}
.x5{left:25.560000px;}
.x30{left:30.949500px;}
.x7{left:34.020000px;}
.x6{left:41.041500px;}
.x11{left:104.986500px;}
.x2f{left:107.866500px;}
.x13{left:127.656000px;}
.x3{left:129.286500px;}
.x1d{left:132.156000px;}
.x3a{left:136.656000px;}
.x1a{left:138.276000px;}
.x14{left:139.536000px;}
.x15{left:148.896000px;}
.x34{left:159.510000px;}
.x35{left:167.070000px;}
.x37{left:170.310000px;}
.x36{left:180.750000px;}
.x1b{left:191.550000px;}
.x20{left:202.170000px;}
.x25{left:211.168125px;}
.x26{left:217.290000px;}
.x40{left:222.510000px;}
.xf{left:224.130000px;}
.x9{left:230.070000px;}
.x2c{left:233.850000px;}
.xa{left:240.150000px;}
.x31{left:242.488500px;}
.x3d{left:249.328125px;}
.x2b{left:255.270000px;}
.xe{left:260.850000px;}
.x18{left:311.473125px;}
.x19{left:317.595000px;}
.x2d{left:342.253125px;}
.x1c{left:343.695000px;}
.x2e{left:348.375000px;}
.x27{left:349.813125px;}
.x38{left:351.613125px;}
.x28{left:355.935000px;}
.x39{left:363.855000px;}
.x33{left:370.695000px;}
.x29{left:417.853125px;}
.x2a{left:423.975000px;}
.x3e{left:426.313125px;}
.xd{left:429.375000px;}
.x21{left:435.133125px;}
.x3f{left:438.555000px;}
.x22{left:441.255000px;}
.xb{left:448.455000px;}
.x10{left:514.005000px;}
.x8{left:515.985000px;}
.xc{left:519.585000px;}
.x16{left:578.623125px;}
.x17{left:584.745000px;}
.x23{left:637.843125px;}
.x1e{left:640.003125px;}
.x24{left:643.965000px;}
.x1f{left:646.125000px;}
.x3b{left:667.183125px;}
.x3c{left:679.425000px;}
.x1{left:755.790000px;}
.x12{left:765.870000px;}
@media print{
.v6{vertical-align:-71.680000pt;}
.v4{vertical-align:-69.760000pt;}
.v3{vertical-align:-64.640000pt;}
.v1{vertical-align:-63.360000pt;}
.v7{vertical-align:-61.440000pt;}
.v8{vertical-align:-56.320000pt;}
.v5{vertical-align:-54.400000pt;}
.v9{vertical-align:-48.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.112000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.058667pt;}
.lsc{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:5.120000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls15{letter-spacing:11.680000pt;}
.ls18{letter-spacing:13.440000pt;}
.ls0{letter-spacing:16.800000pt;}
.ls22{letter-spacing:19.840000pt;}
.ls8{letter-spacing:24.480000pt;}
.ls28{letter-spacing:26.240000pt;}
.ls20{letter-spacing:28.000000pt;}
.ls11{letter-spacing:31.360000pt;}
.ls19{letter-spacing:62.880000pt;}
.ls1e{letter-spacing:68.160000pt;}
.ls9{letter-spacing:174.698667pt;}
.lsa{letter-spacing:213.898667pt;}
.ls7{letter-spacing:216.298667pt;}
.ls14{letter-spacing:218.560000pt;}
.ls1a{letter-spacing:369.578667pt;}
.ls1{letter-spacing:501.600000pt;}
.ws8{word-spacing:-27.072000pt;}
.ws3{word-spacing:-26.720000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.wsb{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.808000pt;}
.wse{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-2.394453pt;}
._2{margin-left:-1.481813pt;}
._0{width:1.059840pt;}
._1{width:2.793813pt;}
._17{width:4.366933pt;}
._18{width:5.259947pt;}
._20{width:6.761387pt;}
._b{width:8.163413pt;}
._23{width:9.215147pt;}
._8{width:10.117547pt;}
._7{width:11.324587pt;}
._e{width:12.826027pt;}
._f{width:13.738667pt;}
._24{width:14.651733pt;}
._a{width:15.907413pt;}
._9{width:17.094827pt;}
._1f{width:18.056533pt;}
._5{width:19.734613pt;}
._6{width:21.167360pt;}
._16{width:22.305707pt;}
._1d{width:23.502933pt;}
._1e{width:24.974933pt;}
._21{width:26.633387pt;}
._22{width:27.840000pt;}
._13{width:29.243733pt;}
._27{width:30.144000pt;}
._3{width:31.059200pt;}
._2c{width:32.007253pt;}
._14{width:32.933547pt;}
._15{width:33.826560pt;}
._2f{width:34.815147pt;}
._c{width:35.749973pt;}
._d{width:36.957013pt;}
._1c{width:38.595840pt;}
._1b{width:39.586987pt;}
._12{width:41.461333pt;}
._11{width:42.462293pt;}
._25{width:46.208000pt;}
._26{width:47.260160pt;}
._28{width:48.419840pt;}
._29{width:49.349120pt;}
._2a{width:51.264000pt;}
._2b{width:52.416000pt;}
._19{width:63.531520pt;}
._1a{width:64.434347pt;}
._10{width:70.027947pt;}
._2d{width:271.936000pt;}
._2e{width:459.072000pt;}
.fsb{font-size:21.120000pt;}
.fs6{font-size:29.440000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:90.880000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y14d{bottom:2.600000pt;}
.y173{bottom:2.866667pt;}
.y157{bottom:2.880000pt;}
.y4{bottom:4.480000pt;}
.y6e{bottom:4.633333pt;}
.y2{bottom:4.640000pt;}
.y9{bottom:12.000000pt;}
.y172{bottom:16.626667pt;}
.y156{bottom:16.640000pt;}
.y15d{bottom:16.800000pt;}
.y14b{bottom:19.040000pt;}
.y8{bottom:29.920000pt;}
.y15f{bottom:30.240000pt;}
.y169{bottom:30.400000pt;}
.y171{bottom:30.546667pt;}
.y152{bottom:30.560000pt;}
.y14a{bottom:34.400000pt;}
.y16d{bottom:43.986667pt;}
.y151{bottom:44.000000pt;}
.y168{bottom:44.160000pt;}
.y170{bottom:44.306667pt;}
.y155{bottom:44.320000pt;}
.y70{bottom:49.632000pt;}
.ya1{bottom:50.432000pt;}
.y150{bottom:57.760000pt;}
.y16c{bottom:57.786667pt;}
.y154{bottom:58.080000pt;}
.y16f{bottom:58.106667pt;}
.y9f{bottom:59.558667pt;}
.y1{bottom:59.712000pt;}
.y6d{bottom:61.958667pt;}
.y14f{bottom:71.520000pt;}
.y16b{bottom:71.546667pt;}
.y15a{bottom:71.680000pt;}
.y153{bottom:71.840000pt;}
.y16e{bottom:71.866667pt;}
.y15c{bottom:72.000000pt;}
.y6{bottom:81.312000pt;}
.y159{bottom:85.440000pt;}
.y15b{bottom:85.760000pt;}
.y166{bottom:99.520000pt;}
.y163{bottom:113.280000pt;}
.y9d{bottom:125.632000pt;}
.y162{bottom:126.880000pt;}
.y165{bottom:127.200000pt;}
.y2ab{bottom:128.352000pt;}
.y144{bottom:130.432000pt;}
.y121{bottom:130.912000pt;}
.y1f9{bottom:131.712000pt;}
.y2c1{bottom:138.586667pt;}
.y9c{bottom:139.546667pt;}
.y120{bottom:139.866667pt;}
.y22a{bottom:140.506667pt;}
.y161{bottom:140.666667pt;}
.y164{bottom:140.986667pt;}
.y176{bottom:142.106667pt;}
.y1d1{bottom:142.266667pt;}
.y1b4{bottom:144.826667pt;}
.y273{bottom:146.426667pt;}
.y2aa{bottom:149.466667pt;}
.y50{bottom:150.746667pt;}
.y143{bottom:151.546667pt;}
.y1f8{bottom:152.826667pt;}
.y9b{bottom:153.306667pt;}
.y213{bottom:153.626667pt;}
.y175{bottom:156.186667pt;}
.y23e{bottom:158.266667pt;}
.ycc{bottom:158.586667pt;}
.y2c0{bottom:159.706667pt;}
.y11f{bottom:161.306667pt;}
.y229{bottom:161.786667pt;}
.y209{bottom:162.426667pt;}
.y1d0{bottom:163.546667pt;}
.y272{bottom:165.306667pt;}
.y9a{bottom:167.066667pt;}
.ycb{bottom:167.546667pt;}
.y1a1{bottom:167.706667pt;}
.y4f{bottom:170.106667pt;}
.y1f7{bottom:172.986667pt;}
.y28d{bottom:177.466667pt;}
.y23d{bottom:179.386667pt;}
.y11d{bottom:180.026667pt;}
.y99{bottom:180.826667pt;}
.y208{bottom:181.146667pt;}
.y24a{bottom:181.786667pt;}
.y174{bottom:182.426667pt;}
.y228{bottom:182.906667pt;}
.y1cf{bottom:184.666667pt;}
.y98{bottom:186.106667pt;}
.y271{bottom:186.426667pt;}
.y2a9{bottom:186.586667pt;}
.y11e{bottom:187.386667pt;}
.y16a{bottom:187.880000pt;}
.y1a0{bottom:188.986667pt;}
.y4e{bottom:189.466667pt;}
.y142{bottom:189.946667pt;}
.y1f6{bottom:191.706667pt;}
.y97{bottom:194.746667pt;}
.y2bf{bottom:196.826667pt;}
.y23c{bottom:200.506667pt;}
.y11c{bottom:201.146667pt;}
.y207{bottom:202.266667pt;}
.y227{bottom:204.026667pt;}
.y1ce{bottom:205.786667pt;}
.y141{bottom:207.546667pt;}
.y2a8{bottom:207.706667pt;}
.yca{bottom:208.026667pt;}
.y96{bottom:208.506667pt;}
.y4d{bottom:208.986667pt;}
.y19f{bottom:209.626667pt;}
.y1f5{bottom:212.826667pt;}
.yf6{bottom:213.786667pt;}
.y28c{bottom:214.746667pt;}
.y2be{bottom:218.106667pt;}
.y23b{bottom:221.626667pt;}
.y95{bottom:222.266667pt;}
.y11b{bottom:222.426667pt;}
.y206{bottom:223.386667pt;}
.y226{bottom:224.026667pt;}
.y140{bottom:225.146667pt;}
.y1cd{bottom:226.906667pt;}
.y1b3{bottom:227.546667pt;}
.y4c{bottom:228.346667pt;}
.y270{bottom:228.666667pt;}
.y19e{bottom:229.146667pt;}
.yc9{bottom:229.306667pt;}
.y1f4{bottom:233.946667pt;}
.y94{bottom:236.026667pt;}
.y2c9{bottom:239.226667pt;}
.y225{bottom:242.786667pt;}
.y13f{bottom:242.946667pt;}
.y11a{bottom:243.586667pt;}
.y205{bottom:244.546667pt;}
.y2a7{bottom:244.866667pt;}
.y1cc{bottom:246.946667pt;}
.y4b{bottom:247.706667pt;}
.y232{bottom:248.226667pt;}
.y19d{bottom:249.186667pt;}
.yc8{bottom:249.346667pt;}
.y93{bottom:249.986667pt;}
.y28b{bottom:251.906667pt;}
.y92{bottom:255.266667pt;}
.yf5{bottom:263.746667pt;}
.y91{bottom:264.066667pt;}
.y119{bottom:264.706667pt;}
.y1cb{bottom:265.826667pt;}
.y2a6{bottom:266.146667pt;}
.y6b{bottom:266.746667pt;}
.y4a{bottom:267.066667pt;}
.yc7{bottom:268.066667pt;}
.y19c{bottom:268.386667pt;}
.y231{bottom:269.346667pt;}
.y26f{bottom:271.106667pt;}
.y167{bottom:271.426667pt;}
.y13e{bottom:274.626667pt;}
.y1f3{bottom:276.386667pt;}
.yf4{bottom:277.506667pt;}
.y1b2{bottom:282.786667pt;}
.y23a{bottom:284.066667pt;}
.y224{bottom:285.186667pt;}
.y118{bottom:285.826667pt;}
.y6a{bottom:286.106667pt;}
.y49{bottom:286.586667pt;}
.y1ca{bottom:286.946667pt;}
.y28a{bottom:289.026667pt;}
.yc6{bottom:289.186667pt;}
.y230{bottom:289.346667pt;}
.y19b{bottom:289.506667pt;}
.yf3{bottom:291.266667pt;}
.y1b1{bottom:291.746667pt;}
.y26e{bottom:292.226667pt;}
.yf2{bottom:296.546667pt;}
.y1f2{bottom:297.506667pt;}
.y239{bottom:302.786667pt;}
.y2a5{bottom:303.266667pt;}
.y13d{bottom:303.586667pt;}
.y212{bottom:304.546667pt;}
.yf1{bottom:305.026667pt;}
.y69{bottom:305.506667pt;}
.y48{bottom:305.986667pt;}
.y223{bottom:306.306667pt;}
.y117{bottom:307.106667pt;}
.y1c9{bottom:308.066667pt;}
.y289{bottom:310.146667pt;}
.yc5{bottom:310.466667pt;}
.y19a{bottom:310.626667pt;}
.y26d{bottom:313.346667pt;}
.y2bd{bottom:313.506667pt;}
.y90{bottom:317.186667pt;}
.y1f1{bottom:318.626667pt;}
.yf0{bottom:318.946667pt;}
.y13c{bottom:322.146667pt;}
.y1b0{bottom:323.906667pt;}
.yef{bottom:324.226667pt;}
.y2a4{bottom:324.386667pt;}
.y68{bottom:324.866667pt;}
.y47{bottom:325.346667pt;}
.y211{bottom:325.666667pt;}
.y222{bottom:327.426667pt;}
.y116{bottom:328.226667pt;}
.y1c8{bottom:329.186667pt;}
.yc4{bottom:331.586667pt;}
.y199{bottom:331.746667pt;}
.yee{bottom:333.186667pt;}
.y26c{bottom:333.346667pt;}
.y2bc{bottom:334.786667pt;}
.y8f{bottom:335.746667pt;}
.y1f0{bottom:338.786667pt;}
.y13b{bottom:343.426667pt;}
.y67{bottom:344.386667pt;}
.y46{bottom:344.706667pt;}
.y1ae{bottom:345.186667pt;}
.y210{bottom:346.946667pt;}
.y288{bottom:347.266667pt;}
.y221{bottom:348.706667pt;}
.y115{bottom:349.346667pt;}
.y1c7{bottom:350.466667pt;}
.y2d1{bottom:350.786667pt;}
.y26b{bottom:352.226667pt;}
.y1af{bottom:352.546667pt;}
.yc3{bottom:352.706667pt;}
.y197{bottom:352.866667pt;}
.y160{bottom:354.786667pt;}
.y2bb{bottom:355.906667pt;}
.y8e{bottom:357.026667pt;}
.y1ef{bottom:357.506667pt;}
.yed{bottom:359.586667pt;}
.y198{bottom:360.226667pt;}
.y2a3{bottom:361.506667pt;}
.y66{bottom:363.746667pt;}
.y45{bottom:364.066667pt;}
.y13a{bottom:364.546667pt;}
.y1ad{bottom:366.306667pt;}
.y20f{bottom:368.066667pt;}
.y287{bottom:368.546667pt;}
.y114{bottom:369.346667pt;}
.y220{bottom:369.826667pt;}
.y1c6{bottom:371.586667pt;}
.y2d0{bottom:371.906667pt;}
.y26a{bottom:373.346667pt;}
.yc2{bottom:373.826667pt;}
.y196{bottom:374.146667pt;}
.y8d{bottom:378.146667pt;}
.y1ee{bottom:378.626667pt;}
.yec{bottom:380.706667pt;}
.y2a2{bottom:382.786667pt;}
.y65{bottom:383.106667pt;}
.y44{bottom:383.586667pt;}
.y139{bottom:385.666667pt;}
.y113{bottom:386.946667pt;}
.y238{bottom:387.426667pt;}
.y20e{bottom:389.186667pt;}
.y249{bottom:390.466667pt;}
.y21f{bottom:390.946667pt;}
.y204{bottom:391.586667pt;}
.y1c5{bottom:392.706667pt;}
.y2ba{bottom:393.026667pt;}
.y269{bottom:394.466667pt;}
.yc1{bottom:395.106667pt;}
.y195{bottom:395.266667pt;}
.y8c{bottom:399.266667pt;}
.y1ed{bottom:399.746667pt;}
.yea{bottom:401.986667pt;}
.y64{bottom:402.466667pt;}
.y43{bottom:402.946667pt;}
.y2a1{bottom:403.906667pt;}
.y112{bottom:404.706667pt;}
.y286{bottom:405.666667pt;}
.y1ac{bottom:406.466667pt;}
.y138{bottom:406.786667pt;}
.y237{bottom:408.066667pt;}
.y2cf{bottom:409.026667pt;}
.y20d{bottom:409.186667pt;}
.yeb{bottom:409.346667pt;}
.y248{bottom:409.986667pt;}
.y203{bottom:410.306667pt;}
.y21e{bottom:410.946667pt;}
.y25b{bottom:412.066667pt;}
.y1c4{bottom:413.826667pt;}
.y2b9{bottom:414.146667pt;}
.yc0{bottom:415.106667pt;}
.y268{bottom:415.586667pt;}
.y194{bottom:416.386667pt;}
.y8b{bottom:420.386667pt;}
.y1ec{bottom:420.866667pt;}
.y63{bottom:421.986667pt;}
.y42{bottom:422.306667pt;}
.ye8{bottom:423.106667pt;}
.y285{bottom:426.786667pt;}
.y1ab{bottom:427.746667pt;}
.y137{bottom:428.066667pt;}
.y21d{bottom:429.826667pt;}
.y2c8{bottom:430.146667pt;}
.ye9{bottom:430.466667pt;}
.y247{bottom:431.266667pt;}
.y202{bottom:431.586667pt;}
.y25a{bottom:433.346667pt;}
.ybf{bottom:433.826667pt;}
.y22f{bottom:433.986667pt;}
.y1c3{bottom:435.106667pt;}
.y267{bottom:435.746667pt;}
.y193{bottom:437.506667pt;}
.y111{bottom:439.906667pt;}
.y2a0{bottom:441.026667pt;}
.y62{bottom:441.346667pt;}
.y41{bottom:441.666667pt;}
.y1eb{bottom:442.146667pt;}
.ye7{bottom:443.106667pt;}
.y236{bottom:448.066667pt;}
.y136{bottom:449.186667pt;}
.y21c{bottom:450.946667pt;}
.y246{bottom:451.266667pt;}
.y2b8{bottom:451.426667pt;}
.y201{bottom:452.706667pt;}
.y259{bottom:454.466667pt;}
.ybe{bottom:454.946667pt;}
.y1c2{bottom:455.106667pt;}
.y110{bottom:457.506667pt;}
.y192{bottom:457.666667pt;}
.y61{bottom:460.706667pt;}
.y40{bottom:461.186667pt;}
.ye6{bottom:461.826667pt;}
.y29f{bottom:462.146667pt;}
.y1ea{bottom:463.266667pt;}
.y284{bottom:463.906667pt;}
.y235{bottom:466.786667pt;}
.y2f{bottom:470.306667pt;}
.y21b{bottom:472.066667pt;}
.y2b7{bottom:472.546667pt;}
.y1c1{bottom:473.826667pt;}
.y258{bottom:474.466667pt;}
.y10f{bottom:475.106667pt;}
.y266{bottom:475.586667pt;}
.ybd{bottom:476.066667pt;}
.y191{bottom:476.386667pt;}
.y60{bottom:480.066667pt;}
.y3f{bottom:480.546667pt;}
.y8a{bottom:480.706667pt;}
.ye5{bottom:483.106667pt;}
.y29e{bottom:483.426667pt;}
.y1e9{bottom:484.386667pt;}
.y283{bottom:485.186667pt;}
.y234{bottom:487.906667pt;}
.y2ce{bottom:488.546667pt;}
.y2e{bottom:489.666667pt;}
.y135{bottom:490.306667pt;}
.y1aa{bottom:491.426667pt;}
.y10e{bottom:492.866667pt;}
.y21a{bottom:493.186667pt;}
.y2c7{bottom:493.666667pt;}
.y1c0{bottom:494.973333pt;}
.y265{bottom:496.733333pt;}
.ybc{bottom:497.373333pt;}
.y190{bottom:497.533333pt;}
.y89{bottom:499.293333pt;}
.y5f{bottom:499.426667pt;}
.y3e{bottom:499.906667pt;}
.ye4{bottom:504.253333pt;}
.y29d{bottom:504.573333pt;}
.y1e8{bottom:505.053333pt;}
.y15e{bottom:507.293333pt;}
.y134{bottom:509.053333pt;}
.y2b6{bottom:509.693333pt;}
.y1a9{bottom:512.733333pt;}
.y219{bottom:514.493333pt;}
.y1bf{bottom:516.253333pt;}
.y264{bottom:518.013333pt;}
.ybb{bottom:518.493333pt;}
.y18f{bottom:518.653333pt;}
.y5e{bottom:518.946667pt;}
.y3d{bottom:519.266667pt;}
.y88{bottom:520.413333pt;}
.y282{bottom:522.333333pt;}
.y10d{bottom:524.573333pt;}
.y1e7{bottom:524.733333pt;}
.y2d{bottom:525.026667pt;}
.ye3{bottom:525.373333pt;}
.y2cd{bottom:525.693333pt;}
.y133{bottom:530.333333pt;}
.y2b5{bottom:530.813333pt;}
.y1a7{bottom:533.853333pt;}
.y218{bottom:535.613333pt;}
.y2c{bottom:537.373333pt;}
.y5d{bottom:538.333333pt;}
.y10c{bottom:538.493333pt;}
.y3c{bottom:538.653333pt;}
.y263{bottom:539.133333pt;}
.yb9{bottom:539.613333pt;}
.y18e{bottom:539.933333pt;}
.y1a8{bottom:541.213333pt;}
.y87{bottom:541.533333pt;}
.y29c{bottom:541.693333pt;}
.y281{bottom:543.453333pt;}
.y1e6{bottom:545.373333pt;}
.ye2{bottom:546.493333pt;}
.y2cc{bottom:546.813333pt;}
.yba{bottom:546.973333pt;}
.y132{bottom:551.453333pt;}
.y2c6{bottom:552.093333pt;}
.y1a6{bottom:554.973333pt;}
.y217{bottom:555.933333pt;}
.y257{bottom:556.733333pt;}
.y5c{bottom:557.693333pt;}
.y3b{bottom:558.173333pt;}
.y1be{bottom:558.493333pt;}
.y262{bottom:559.133333pt;}
.yb8{bottom:559.613333pt;}
.y18d{bottom:561.053333pt;}
.y86{bottom:562.813333pt;}
.y158{bottom:563.133333pt;}
.y2b{bottom:563.773333pt;}
.y1e5{bottom:565.213333pt;}
.ye1{bottom:567.773333pt;}
.y2b4{bottom:568.093333pt;}
.y131{bottom:572.573333pt;}
.y1a5{bottom:574.973333pt;}
.y216{bottom:575.773333pt;}
.y20c{bottom:576.093333pt;}
.y2a{bottom:576.893333pt;}
.y5b{bottom:577.053333pt;}
.y3a{bottom:577.533333pt;}
.y256{bottom:577.853333pt;}
.yb7{bottom:578.493333pt;}
.y29b{bottom:578.813333pt;}
.y200{bottom:579.613333pt;}
.y280{bottom:580.573333pt;}
.y10b{bottom:580.733333pt;}
.y18c{bottom:582.173333pt;}
.y1e4{bottom:586.333333pt;}
.ye0{bottom:587.773333pt;}
.y2b3{bottom:589.213333pt;}
.y29{bottom:592.893333pt;}
.y130{bottom:593.693333pt;}
.y5a{bottom:596.573333pt;}
.y39{bottom:596.893333pt;}
.y1bd{bottom:597.213333pt;}
.y255{bottom:598.973333pt;}
.yb6{bottom:599.613333pt;}
.y29a{bottom:600.093333pt;}
.y1ff{bottom:600.893333pt;}
.y85{bottom:601.853333pt;}
.y18b{bottom:603.293333pt;}
.y2cb{bottom:605.213333pt;}
.ydf{bottom:606.493333pt;}
.y1e3{bottom:607.133333pt;}
.y2c5{bottom:610.333333pt;}
.y28{bottom:612.253333pt;}
.y12f{bottom:614.973333pt;}
.y59{bottom:615.933333pt;}
.y38{bottom:616.253333pt;}
.y215{bottom:617.053333pt;}
.y1bc{bottom:618.493333pt;}
.y254{bottom:620.253333pt;}
.y84{bottom:620.413333pt;}
.yb5{bottom:620.733333pt;}
.y1fe{bottom:620.893333pt;}
.y299{bottom:621.213333pt;}
.y10a{bottom:622.973333pt;}
.y18a{bottom:624.093333pt;}
.y2b2{bottom:626.333333pt;}
.y1e2{bottom:626.973333pt;}
.yde{bottom:627.613333pt;}
.y58{bottom:635.293333pt;}
.y37{bottom:635.773333pt;}
.y12e{bottom:636.093333pt;}
.y1bb{bottom:639.613333pt;}
.y253{bottom:641.373333pt;}
.y83{bottom:641.533333pt;}
.yb4{bottom:641.853333pt;}
.y298{bottom:642.333333pt;}
.y189{bottom:643.613333pt;}
.y109{bottom:644.253333pt;}
.y1e1{bottom:647.293333pt;}
.y2c4{bottom:647.453333pt;}
.y27{bottom:647.613333pt;}
.ydd{bottom:648.733333pt;}
.y57{bottom:654.653333pt;}
.y36{bottom:655.133333pt;}
.y12d{bottom:657.213333pt;}
.y20b{bottom:659.613333pt;}
.y26{bottom:659.933333pt;}
.y27f{bottom:660.093333pt;}
.y14e{bottom:660.413333pt;}
.y1ba{bottom:660.733333pt;}
.y252{bottom:662.493333pt;}
.y82{bottom:662.653333pt;}
.yb3{bottom:663.133333pt;}
.y2b1{bottom:663.453333pt;}
.y188{bottom:663.933333pt;}
.y1a4{bottom:664.573333pt;}
.y108{bottom:665.373333pt;}
.y1e0{bottom:666.013333pt;}
.y2c3{bottom:668.733333pt;}
.ydb{bottom:670.013333pt;}
.y56{bottom:674.013333pt;}
.y35{bottom:674.493333pt;}
.ydc{bottom:677.373333pt;}
.y12c{bottom:678.333333pt;}
.y297{bottom:679.453333pt;}
.y27e{bottom:681.213333pt;}
.y1b9{bottom:681.853333pt;}
.y251{bottom:682.173333pt;}
.y187{bottom:682.333333pt;}
.y261{bottom:682.493333pt;}
.y107{bottom:683.293333pt;}
.yb2{bottom:684.253333pt;}
.y2b0{bottom:684.733333pt;}
.y25{bottom:686.333333pt;}
.y1df{bottom:687.133333pt;}
.yd9{bottom:691.133333pt;}
.y55{bottom:693.533333pt;}
.y34{bottom:693.853333pt;}
.yda{bottom:698.493333pt;}
.y24{bottom:699.613333pt;}
.y106{bottom:700.733333pt;}
.y81{bottom:701.373333pt;}
.y1b8{bottom:702.013333pt;}
.y27d{bottom:702.493333pt;}
.y1fd{bottom:703.133333pt;}
.y186{bottom:703.773333pt;}
.yb1{bottom:704.253333pt;}
.y2c2{bottom:705.853333pt;}
.y1de{bottom:708.413333pt;}
.y23{bottom:712.253333pt;}
.y54{bottom:712.893333pt;}
.y33{bottom:713.213333pt;}
.y12b{bottom:717.213333pt;}
.y105{bottom:718.333333pt;}
.y1a3{bottom:720.733333pt;}
.y296{bottom:721.853333pt;}
.y250{bottom:722.493333pt;}
.yb0{bottom:722.973333pt;}
.y1fc{bottom:724.253333pt;}
.y185{bottom:725.053333pt;}
.y1dd{bottom:729.533333pt;}
.y80{bottom:730.493333pt;}
.y53{bottom:732.253333pt;}
.y32{bottom:732.733333pt;}
.yd8{bottom:733.373333pt;}
.y104{bottom:735.933333pt;}
.y12a{bottom:738.333333pt;}
.y22{bottom:739.613333pt;}
.y1a2{bottom:740.733333pt;}
.y1b7{bottom:741.853333pt;}
.y2af{bottom:742.973333pt;}
.y24f{bottom:743.613333pt;}
.y14c{bottom:743.933333pt;}
.yaf{bottom:744.093333pt;}
.y1fb{bottom:745.413333pt;}
.y184{bottom:746.213333pt;}
.y7f{bottom:747.333333pt;}
.y1dc{bottom:749.573333pt;}
.y31{bottom:752.253333pt;}
.y21{bottom:753.053333pt;}
.y52{bottom:753.213333pt;}
.y103{bottom:753.733333pt;}
.yd7{bottom:754.693333pt;}
.y149{bottom:758.373333pt;}
.y295{bottom:759.013333pt;}
.y129{bottom:759.493333pt;}
.y27c{bottom:760.773333pt;}
.y214{bottom:761.893333pt;}
.y1b6{bottom:763.013333pt;}
.y24e{bottom:764.773333pt;}
.yae{bottom:765.413333pt;}
.y20{bottom:765.693333pt;}
.y22e{bottom:766.533333pt;}
.y183{bottom:767.333333pt;}
.y1db{bottom:768.293333pt;}
.y7e{bottom:768.613333pt;}
.y20a{bottom:770.373333pt;}
.y30{bottom:774.373333pt;}
.y51{bottom:775.013333pt;}
.yd6{bottom:775.813333pt;}
.y1f{bottom:776.773333pt;}
.y294{bottom:780.133333pt;}
.y128{bottom:780.773333pt;}
.y1b5{bottom:784.293333pt;}
.y24d{bottom:786.053333pt;}
.yad{bottom:786.533333pt;}
.y102{bottom:786.853333pt;}
.y22d{bottom:787.813333pt;}
.y182{bottom:788.453333pt;}
.y1da{bottom:789.573333pt;}
.y7d{bottom:789.733333pt;}
.y16{bottom:796.133333pt;}
.yd5{bottom:796.933333pt;}
.y27b{bottom:797.893333pt;}
.y2ae{bottom:801.253333pt;}
.y127{bottom:801.893333pt;}
.y233{bottom:804.293333pt;}
.y101{bottom:805.413333pt;}
.y24c{bottom:807.173333pt;}
.yac{bottom:807.653333pt;}
.y22c{bottom:807.813333pt;}
.y245{bottom:808.933333pt;}
.y181{bottom:809.733333pt;}
.y1d9{bottom:810.693333pt;}
.y7c{bottom:810.853333pt;}
.y293{bottom:817.253333pt;}
.yd4{bottom:818.053333pt;}
.y27a{bottom:819.173333pt;}
.y126{bottom:823.013333pt;}
.y100{bottom:826.533333pt;}
.y1e{bottom:827.173333pt;}
.y148{bottom:827.813333pt;}
.yab{bottom:828.773333pt;}
.y244{bottom:829.573333pt;}
.y180{bottom:829.733333pt;}
.y1d8{bottom:831.333333pt;}
.y15{bottom:831.493333pt;}
.y7a{bottom:831.973333pt;}
.y1d{bottom:836.613333pt;}
.y292{bottom:838.533333pt;}
.y7b{bottom:839.333333pt;}
.y125{bottom:844.133333pt;}
.y260{bottom:845.893333pt;}
.y147{bottom:847.333333pt;}
.yff{bottom:847.653333pt;}
.y17f{bottom:848.453333pt;}
.y243{bottom:849.093333pt;}
.yaa{bottom:850.053333pt;}
.y1d7{bottom:850.853333pt;}
.y14{bottom:851.013333pt;}
.y78{bottom:853.253333pt;}
.y1c{bottom:854.373333pt;}
.y279{bottom:856.293333pt;}
.y2ad{bottom:859.653333pt;}
.yd3{bottom:860.453333pt;}
.y79{bottom:860.613333pt;}
.y124{bottom:865.253333pt;}
.y25f{bottom:867.173333pt;}
.y146{bottom:868.613333pt;}
.yfe{bottom:868.933333pt;}
.y17e{bottom:869.573333pt;}
.y242{bottom:869.893333pt;}
.y1d6{bottom:871.013333pt;}
.ya9{bottom:871.173333pt;}
.y77{bottom:874.373333pt;}
.y291{bottom:875.653333pt;}
.y1b{bottom:877.093333pt;}
.y278{bottom:877.413333pt;}
.yd2{bottom:881.573333pt;}
.y123{bottom:886.533333pt;}
.y25e{bottom:888.293333pt;}
.y24b{bottom:888.613333pt;}
.y145{bottom:888.933333pt;}
.y7{bottom:889.093333pt;}
.y241{bottom:889.733333pt;}
.yfd{bottom:890.053333pt;}
.y17d{bottom:890.853333pt;}
.y13{bottom:891.013333pt;}
.ya8{bottom:892.293333pt;}
.y76{bottom:895.493333pt;}
.y290{bottom:896.773333pt;}
.yd1{bottom:901.573333pt;}
.y122{bottom:907.653333pt;}
.y25d{bottom:908.933333pt;}
.yfc{bottom:910.053333pt;}
.ya7{bottom:910.213333pt;}
.y12{bottom:910.693333pt;}
.y240{bottom:910.853333pt;}
.y1d5{bottom:911.173333pt;}
.y17c{bottom:911.973333pt;}
.y1a{bottom:912.453333pt;}
.y2ca{bottom:912.773333pt;}
.y277{bottom:914.533333pt;}
.y75{bottom:916.613333pt;}
.yd0{bottom:917.093333pt;}
.y2ac{bottom:917.893333pt;}
.yfb{bottom:927.653333pt;}
.y25c{bottom:928.453333pt;}
.ya6{bottom:928.773333pt;}
.y11{bottom:930.533333pt;}
.y23f{bottom:930.853333pt;}
.y1fa{bottom:931.173333pt;}
.y1d4{bottom:932.293333pt;}
.ycf{bottom:932.453333pt;}
.y17b{bottom:933.093333pt;}
.y28f{bottom:933.893333pt;}
.y74{bottom:937.893333pt;}
.yfa{bottom:945.253333pt;}
.y19{bottom:947.653333pt;}
.yce{bottom:947.813333pt;}
.y10{bottom:949.093333pt;}
.ya5{bottom:949.893333pt;}
.y276{bottom:951.653333pt;}
.y22b{bottom:952.293333pt;}
.y1d3{bottom:953.413333pt;}
.y17a{bottom:954.213333pt;}
.y28e{bottom:955.173333pt;}
.yf{bottom:962.533333pt;}
.yf9{bottom:963.013333pt;}
.ya4{bottom:971.173333pt;}
.y275{bottom:972.933333pt;}
.y1d2{bottom:973.573333pt;}
.y179{bottom:975.493333pt;}
.ye{bottom:975.813333pt;}
.y73{bottom:976.453333pt;}
.ycd{bottom:978.533333pt;}
.yf8{bottom:980.613333pt;}
.y18{bottom:982.853333pt;}
.yd{bottom:989.093333pt;}
.ya3{bottom:992.293333pt;}
.y72{bottom:992.933333pt;}
.y274{bottom:993.253333pt;}
.y178{bottom:993.573333pt;}
.yf7{bottom:998.240000pt;}
.yc{bottom:1002.533333pt;}
.y71{bottom:1011.200000pt;}
.y177{bottom:1013.120000pt;}
.ya2{bottom:1013.440000pt;}
.y17{bottom:1013.920000pt;}
.yb{bottom:1015.840000pt;}
.ya{bottom:1029.120000pt;}
.y6c{bottom:1057.440000pt;}
.y9e{bottom:1058.080000pt;}
.y3{bottom:1060.640000pt;}
.ya0{bottom:1101.120000pt;}
.y5{bottom:1101.280000pt;}
.y6f{bottom:1102.400000pt;}
.h1b{height:13.780000pt;}
.h4{height:17.280000pt;}
.h13{height:18.553333pt;}
.h2{height:18.560000pt;}
.h24{height:20.728125pt;}
.hd{height:28.893750pt;}
.hf{height:31.406250pt;}
.he{height:36.431250pt;}
.h15{height:42.084375pt;}
.h7{height:42.386667pt;}
.h1e{height:47.085938pt;}
.h10{height:47.109375pt;}
.h16{height:47.621250pt;}
.h1c{height:48.375000pt;}
.h1a{height:52.108438pt;}
.h6{height:52.134375pt;}
.h8{height:53.535000pt;}
.h20{height:55.200000pt;}
.h17{height:57.375000pt;}
.h5{height:57.787500pt;}
.h12{height:59.340000pt;}
.ha{height:60.347500pt;}
.h19{height:62.706667pt;}
.h18{height:62.781250pt;}
.h3{height:62.812500pt;}
.hc{height:64.500000pt;}
.h9{height:73.490625pt;}
.h22{height:82.706667pt;}
.h1d{height:82.720000pt;}
.h23{height:82.738667pt;}
.h1f{height:96.640000pt;}
.hb{height:107.715000pt;}
.h21{height:151.866667pt;}
.h14{height:1122.558173pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:21.266667pt;}
.w9{width:91.670667pt;}
.wa{width:140.653333pt;}
.w4{width:145.145333pt;}
.wb{width:368.386667pt;}
.w3{width:553.840000pt;}
.w8{width:602.000000pt;}
.w7{width:793.758333pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:1.270667pt;}
.x2{left:2.720000pt;}
.x32{left:6.870667pt;}
.x5{left:22.720000pt;}
.x30{left:27.510667pt;}
.x7{left:30.240000pt;}
.x6{left:36.481333pt;}
.x11{left:93.321333pt;}
.x2f{left:95.881333pt;}
.x13{left:113.472000pt;}
.x3{left:114.921333pt;}
.x1d{left:117.472000pt;}
.x3a{left:121.472000pt;}
.x1a{left:122.912000pt;}
.x14{left:124.032000pt;}
.x15{left:132.352000pt;}
.x34{left:141.786667pt;}
.x35{left:148.506667pt;}
.x37{left:151.386667pt;}
.x36{left:160.666667pt;}
.x1b{left:170.266667pt;}
.x20{left:179.706667pt;}
.x25{left:187.705000pt;}
.x26{left:193.146667pt;}
.x40{left:197.786667pt;}
.xf{left:199.226667pt;}
.x9{left:204.506667pt;}
.x2c{left:207.866667pt;}
.xa{left:213.466667pt;}
.x31{left:215.545333pt;}
.x3d{left:221.625000pt;}
.x2b{left:226.906667pt;}
.xe{left:231.866667pt;}
.x18{left:276.865000pt;}
.x19{left:282.306667pt;}
.x2d{left:304.225000pt;}
.x1c{left:305.506667pt;}
.x2e{left:309.666667pt;}
.x27{left:310.945000pt;}
.x38{left:312.545000pt;}
.x28{left:316.386667pt;}
.x39{left:323.426667pt;}
.x33{left:329.506667pt;}
.x29{left:371.425000pt;}
.x2a{left:376.866667pt;}
.x3e{left:378.945000pt;}
.xd{left:381.666667pt;}
.x21{left:386.785000pt;}
.x3f{left:389.826667pt;}
.x22{left:392.226667pt;}
.xb{left:398.626667pt;}
.x10{left:456.893333pt;}
.x8{left:458.653333pt;}
.xc{left:461.853333pt;}
.x16{left:514.331667pt;}
.x17{left:519.773333pt;}
.x23{left:566.971667pt;}
.x1e{left:568.891667pt;}
.x24{left:572.413333pt;}
.x1f{left:574.333333pt;}
.x3b{left:593.051667pt;}
.x3c{left:603.933333pt;}
.x1{left:671.813333pt;}
.x12{left:680.773333pt;}
}




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