
    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_fab6cbf659943b723ad5d783.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f622aeafceaa865bf2cb0a01.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_5d708bbc2ce2c3ede6b2a80f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_8bb5a340d38c01c82df72ad6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.694336;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_23e599adaab5d0aee8cca77e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.720000;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_c99a838652f26b607b169d58.woff')format("woff");}.ff6{font-family:ff6;line-height:0.817871;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_05960b1fa3120764f5cba5b8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_e0a6ad41e235c4afa3f9dfb8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_65bf5526eb1f8f7c71723eff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_d320357fe0c5b2af20bf0357.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7914429db6a0635531b30025.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_7a33b78c9fc22225671709e8.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cd7db1c046d6a086b4297aea.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7f367aaec06558d875a0afc6.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cb76523a23c7cc079f74ed92.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0d9496a042a9e34403c8856f.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_08db0c2fa0c9fc13993d1a62.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_db2fe24cdc82df1b9828c447.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f8a6dbde7619462394daa751.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_23da7b514160bf7b1f370ef7.woff')format("woff");}.ff14{font-family:ff14;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;}
.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);}
.v3{vertical-align:-23.976600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.048600px;}
.v1{vertical-align:204.000000px;}
.ls3{letter-spacing:-7.704000px;}
.ls11{letter-spacing:-5.766000px;}
.ls28{letter-spacing:-5.346000px;}
.ls27{letter-spacing:-5.328000px;}
.ls16{letter-spacing:-5.028000px;}
.ls2{letter-spacing:-2.664000px;}
.lsd{letter-spacing:-1.776000px;}
.ls1c{letter-spacing:-1.553112px;}
.ls12{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.003102px;}
.ls17{letter-spacing:0.057864px;}
.lsc{letter-spacing:0.063468px;}
.lsf{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.581976px;}
.lse{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.ls18{letter-spacing:0.936000px;}
.ls1d{letter-spacing:1.152000px;}
.ls1f{letter-spacing:1.368000px;}
.ls13{letter-spacing:1.404000px;}
.ls14{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.464000px;}
.ls10{letter-spacing:1.500000px;}
.ls4{letter-spacing:1.680000px;}
.ls24{letter-spacing:2.352000px;}
.ls23{letter-spacing:2.399400px;}
.ls22{letter-spacing:2.400000px;}
.ls1{letter-spacing:3.360000px;}
.lsa{letter-spacing:4.239264px;}
.ls5{letter-spacing:12.000000px;}
.ls7{letter-spacing:14.310000px;}
.ls8{letter-spacing:14.316000px;}
.ls21{letter-spacing:17.718000px;}
.ls6{letter-spacing:18.234000px;}
.ls20{letter-spacing:27.924000px;}
.ls26{letter-spacing:31.284048px;}
.ls25{letter-spacing:39.864000px;}
.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:-95.026500px;}
.wsb{word-spacing:-48.000000px;}
.ws7{word-spacing:-27.360000px;}
.ws2c{word-spacing:-19.860000px;}
.ws17{word-spacing:-19.500000px;}
.ws2d{word-spacing:-18.900000px;}
.wsc{word-spacing:-18.000000px;}
.ws2e{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.750000px;}
.ws16{word-spacing:-15.000000px;}
.ws21{word-spacing:-12.000000px;}
.ws2f{word-spacing:-11.172000px;}
.ws10{word-spacing:-10.494000px;}
.ws51{word-spacing:-10.080000px;}
.ws26{word-spacing:-8.940888px;}
.ws43{word-spacing:-7.992000px;}
.ws22{word-spacing:-7.008000px;}
.ws61{word-spacing:-6.120000px;}
.ws4{word-spacing:-3.360000px;}
.ws5e{word-spacing:-2.376000px;}
.ws9{word-spacing:-1.680000px;}
.ws13{word-spacing:-1.632000px;}
.ws58{word-spacing:-1.584000px;}
.ws29{word-spacing:-1.368000px;}
.ws4f{word-spacing:-1.296000px;}
.ws27{word-spacing:-1.152000px;}
.ws3{word-spacing:-1.134000px;}
.ws23{word-spacing:-0.936000px;}
.ws11{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.576000px;}
.ws25{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.474000px;}
.ws48{word-spacing:0.720000px;}
.ws57{word-spacing:0.792000px;}
.wsf{word-spacing:1.296000px;}
.wse{word-spacing:1.302000px;}
.ws2b{word-spacing:1.614000px;}
.wsd{word-spacing:1.656000px;}
.ws12{word-spacing:1.776000px;}
.ws20{word-spacing:1.980000px;}
.ws1e{word-spacing:2.082000px;}
.ws1f{word-spacing:2.088000px;}
.ws5{word-spacing:2.664000px;}
.ws62{word-spacing:2.736000px;}
.ws2a{word-spacing:2.790000px;}
.ws4c{word-spacing:4.104000px;}
.ws30{word-spacing:4.536000px;}
.ws54{word-spacing:4.680000px;}
.ws45{word-spacing:4.824000px;}
.ws40{word-spacing:5.046000px;}
.ws3a{word-spacing:5.088000px;}
.ws3d{word-spacing:5.106000px;}
.ws3f{word-spacing:5.124000px;}
.ws3e{word-spacing:5.130000px;}
.ws3c{word-spacing:5.136000px;}
.ws3b{word-spacing:5.148000px;}
.ws46{word-spacing:5.328000px;}
.ws41{word-spacing:5.688000px;}
.ws5a{word-spacing:6.984000px;}
.ws6{word-spacing:7.704000px;}
.ws63{word-spacing:7.992000px;}
.ws44{word-spacing:8.064000px;}
.ws47{word-spacing:8.712000px;}
.ws4d{word-spacing:8.784000px;}
.ws50{word-spacing:9.144000px;}
.ws65{word-spacing:9.360000px;}
.ws5b{word-spacing:9.504000px;}
.ws5c{word-spacing:10.368000px;}
.ws55{word-spacing:11.088000px;}
.ws5d{word-spacing:11.232000px;}
.ws1c{word-spacing:11.958000px;}
.ws18{word-spacing:11.976000px;}
.ws1b{word-spacing:11.988000px;}
.ws19{word-spacing:11.994000px;}
.ws1a{word-spacing:12.000000px;}
.ws4e{word-spacing:12.096000px;}
.ws53{word-spacing:12.168000px;}
.ws60{word-spacing:12.744000px;}
.ws5f{word-spacing:13.320000px;}
.ws4a{word-spacing:16.344000px;}
.ws49{word-spacing:19.296000px;}
.ws64{word-spacing:21.744000px;}
.ws31{word-spacing:22.140000px;}
.ws34{word-spacing:22.176000px;}
.ws32{word-spacing:22.182000px;}
.ws33{word-spacing:22.206000px;}
.ws1d{word-spacing:24.336000px;}
.ws2{word-spacing:25.704000px;}
.ws52{word-spacing:26.424000px;}
.ws4b{word-spacing:30.456000px;}
.ws56{word-spacing:37.296000px;}
.ws59{word-spacing:41.688000px;}
.ws35{word-spacing:44.346000px;}
.ws39{word-spacing:44.364000px;}
.ws37{word-spacing:44.388000px;}
.ws36{word-spacing:44.394000px;}
.ws38{word-spacing:44.412000px;}
._8{margin-left:-17.827200px;}
._f{margin-left:-16.020000px;}
._9{margin-left:-13.996800px;}
._b{margin-left:-12.024000px;}
._26{margin-left:-10.972800px;}
._11{margin-left:-9.936000px;}
._24{margin-left:-8.928000px;}
._c{margin-left:-7.776000px;}
._10{margin-left:-6.056100px;}
._0{margin-left:-5.022000px;}
._12{margin-left:-4.010400px;}
._1{margin-left:-2.986200px;}
._2{margin-left:-1.115100px;}
._17{width:1.303200px;}
._7{width:2.507400px;}
._14{width:4.046400px;}
._1c{width:5.673600px;}
._6{width:6.703200px;}
._d{width:7.704000px;}
._18{width:8.884800px;}
._5{width:10.458000px;}
._4{width:11.491200px;}
._15{width:12.553200px;}
._3{width:13.721400px;}
._16{width:15.199200px;}
._1d{width:16.891200px;}
._23{width:18.495000px;}
._1e{width:19.778400px;}
._e{width:21.384000px;}
._13{width:22.518234px;}
._1a{width:24.148800px;}
._1f{width:25.600752px;}
._19{width:26.755200px;}
._25{width:27.784800px;}
._28{width:29.332800px;}
._37{width:30.340800px;}
._21{width:31.865976px;}
._33{width:33.112800px;}
._35{width:34.819200px;}
._20{width:36.408024px;}
._27{width:37.667952px;}
._22{width:38.851200px;}
._32{width:40.356000px;}
._a{width:41.976000px;}
._2b{width:43.950024px;}
._29{width:45.231300px;}
._36{width:48.369600px;}
._1b{width:49.989600px;}
._38{width:51.184800px;}
._2c{width:57.342024px;}
._2a{width:58.608000px;}
._39{width:60.239982px;}
._3b{width:61.258794px;}
._3a{width:64.962018px;}
._34{width:66.332700px;}
._2d{width:67.500000px;}
._2e{width:71.820000px;}
._31{width:131.880000px;}
._2f{width:149.040000px;}
._30{width:201.840000px;}
.fc1{color:rgb(90,87,88);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:41.976000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs0{font-size:174.000000px;}
.fs8{font-size:380.106000px;}
.y0{bottom:0.000000px;}
.y171{bottom:26.011500px;}
.y18d{bottom:33.193500px;}
.y18c{bottom:47.593500px;}
.y90{bottom:54.061950px;}
.y18b{bottom:61.993500px;}
.y7b{bottom:63.529500px;}
.ybf{bottom:70.158300px;}
.y1b{bottom:70.158450px;}
.y8f{bottom:70.261950px;}
.y18a{bottom:76.393500px;}
.y131{bottom:76.570950px;}
.y15b{bottom:80.964600px;}
.ybe{bottom:85.677150px;}
.y8e{bottom:86.461950px;}
.y140{bottom:86.474400px;}
.yec{bottom:89.167350px;}
.y7a{bottom:90.529500px;}
.y1a2{bottom:91.618950px;}
.yf0{bottom:91.720950px;}
.yf8{bottom:94.570500px;}
.y5e{bottom:94.570950px;}
.y15a{bottom:97.164600px;}
.y89{bottom:97.200000px;}
.y5{bottom:98.753100px;}
.ybd{bottom:101.877150px;}
.y130{bottom:102.076950px;}
.y8d{bottom:102.661950px;}
.y13f{bottom:102.674400px;}
.yeb{bottom:105.367350px;}
.y143{bottom:105.827400px;}
.y129{bottom:105.941400px;}
.y189{bottom:110.321400px;}
.y159{bottom:113.364600px;}
.y88{bottom:113.400000px;}
.y1a3{bottom:114.815400px;}
.y1c1{bottom:115.185900px;}
.y11f{bottom:116.817000px;}
.y1a1{bottom:117.124950px;}
.yef{bottom:117.226950px;}
.y79{bottom:117.529500px;}
.ybc{bottom:118.077150px;}
.y8c{bottom:118.861950px;}
.y13e{bottom:118.874400px;}
.y1dc{bottom:120.059400px;}
.yf7{bottom:120.076500px;}
.y5d{bottom:120.076950px;}
.yea{bottom:121.567350px;}
.y12f{bottom:127.582950px;}
.y158{bottom:129.564600px;}
.y87{bottom:129.600000px;}
.y142{bottom:131.333400px;}
.y128{bottom:131.447400px;}
.ybb{bottom:134.277150px;}
.y8b{bottom:135.061950px;}
.y13d{bottom:135.074400px;}
.y188{bottom:135.827400px;}
.ye9{bottom:137.767350px;}
.y1c0{bottom:138.566400px;}
.y41{bottom:140.321400px;}
.y11e{bottom:142.323000px;}
.y1a0{bottom:142.630950px;}
.yee{bottom:142.732950px;}
.y78{bottom:144.529500px;}
.y1db{bottom:145.565400px;}
.yf6{bottom:145.582500px;}
.y5c{bottom:145.582950px;}
.y157{bottom:145.764600px;}
.y86{bottom:145.800000px;}
.yba{bottom:150.477150px;}
.ya3{bottom:151.261950px;}
.y13c{bottom:151.274400px;}
.y12e{bottom:153.088950px;}
.ye8{bottom:153.967350px;}
.y141{bottom:156.839400px;}
.y127{bottom:156.953400px;}
.y187{bottom:161.333400px;}
.y1bf{bottom:161.946900px;}
.y156{bottom:161.964600px;}
.y85{bottom:162.000000px;}
.y40{bottom:165.827400px;}
.y1a{bottom:166.351500px;}
.yb9{bottom:166.677150px;}
.ya2{bottom:167.461950px;}
.y13b{bottom:167.474400px;}
.y11d{bottom:167.829000px;}
.y19f{bottom:168.136950px;}
.ye7{bottom:170.167350px;}
.y1da{bottom:171.071400px;}
.yf5{bottom:171.088500px;}
.y5b{bottom:171.088950px;}
.y170{bottom:171.106950px;}
.y77{bottom:171.529500px;}
.yed{bottom:175.732950px;}
.y155{bottom:178.164600px;}
.y84{bottom:178.200000px;}
.y12d{bottom:178.594950px;}
.y126{bottom:182.345400px;}
.yb8{bottom:182.877150px;}
.ya1{bottom:183.661950px;}
.y1be{bottom:185.327400px;}
.ye6{bottom:186.367350px;}
.y186{bottom:186.839400px;}
.y19{bottom:188.858250px;}
.y3f{bottom:191.333400px;}
.y11c{bottom:193.335000px;}
.y19e{bottom:193.642950px;}
.y154{bottom:194.364600px;}
.yd4{bottom:194.400000px;}
.y1d9{bottom:196.577400px;}
.yf4{bottom:196.594500px;}
.y5a{bottom:196.594950px;}
.y16f{bottom:196.612950px;}
.y13a{bottom:196.684950px;}
.y76{bottom:198.529500px;}
.yb7{bottom:199.077150px;}
.ya0{bottom:199.861950px;}
.ye5{bottom:202.567350px;}
.y12c{bottom:204.100950px;}
.y125{bottom:207.851400px;}
.y1bd{bottom:208.707900px;}
.y153{bottom:210.564600px;}
.yd3{bottom:210.600000px;}
.y18{bottom:211.365000px;}
.y185{bottom:212.345400px;}
.yb6{bottom:215.277150px;}
.y9f{bottom:216.061950px;}
.y3e{bottom:216.839400px;}
.ye4{bottom:218.767350px;}
.y11b{bottom:218.841000px;}
.y19d{bottom:219.148950px;}
.y1d8{bottom:222.083400px;}
.yf3{bottom:222.100500px;}
.y59{bottom:222.100950px;}
.y16e{bottom:222.118950px;}
.y139{bottom:222.190950px;}
.y75{bottom:225.529500px;}
.y152{bottom:226.764600px;}
.y12b{bottom:229.606950px;}
.yb5{bottom:231.477150px;}
.y1bc{bottom:232.088400px;}
.y9e{bottom:232.261950px;}
.y124{bottom:233.357400px;}
.y17{bottom:233.871750px;}
.y184{bottom:237.851400px;}
.y3d{bottom:242.345400px;}
.y83{bottom:242.363400px;}
.y151{bottom:242.964600px;}
.y11a{bottom:244.347000px;}
.y19c{bottom:244.654950px;}
.y1d7{bottom:247.589400px;}
.yf2{bottom:247.606500px;}
.y58{bottom:247.606950px;}
.y16d{bottom:247.624950px;}
.ye3{bottom:247.648950px;}
.yb4{bottom:247.677150px;}
.y138{bottom:247.696950px;}
.y9d{bottom:248.461950px;}
.y74{bottom:252.529500px;}
.y12a{bottom:255.112950px;}
.y1bb{bottom:255.468900px;}
.y123{bottom:258.863400px;}
.yd2{bottom:258.935400px;}
.y150{bottom:259.164600px;}
.y183{bottom:263.357400px;}
.yb3{bottom:263.877150px;}
.y9c{bottom:264.661950px;}
.y3c{bottom:267.851400px;}
.y82{bottom:267.869400px;}
.y19b{bottom:270.160950px;}
.y1d6{bottom:273.095400px;}
.yf1{bottom:273.112500px;}
.y57{bottom:273.112950px;}
.y16c{bottom:273.130950px;}
.ye2{bottom:273.154950px;}
.y137{bottom:273.202950px;}
.y14f{bottom:275.364600px;}
.y1ba{bottom:278.849400px;}
.y73{bottom:279.529500px;}
.yb2{bottom:280.077150px;}
.y9b{bottom:280.861950px;}
.y122{bottom:284.369400px;}
.yd1{bottom:284.441400px;}
.y182{bottom:288.863400px;}
.y14e{bottom:291.564600px;}
.y3b{bottom:293.357400px;}
.y81{bottom:293.375400px;}
.y119{bottom:295.341000px;}
.y19a{bottom:295.666950px;}
.yb1{bottom:296.277150px;}
.y9a{bottom:297.061950px;}
.y1d5{bottom:298.601400px;}
.y56{bottom:298.618950px;}
.y16b{bottom:298.636950px;}
.ye1{bottom:298.660950px;}
.y136{bottom:298.708950px;}
.y1b9{bottom:302.230050px;}
.y72{bottom:306.529500px;}
.y14d{bottom:307.764600px;}
.y106{bottom:309.604500px;}
.y121{bottom:309.875400px;}
.yd0{bottom:309.947400px;}
.y181{bottom:314.369400px;}
.y3a{bottom:318.863400px;}
.y80{bottom:318.881400px;}
.y118{bottom:320.847000px;}
.y199{bottom:321.172950px;}
.y14c{bottom:323.964600px;}
.y1d4{bottom:324.107400px;}
.y55{bottom:324.124950px;}
.y16a{bottom:324.142950px;}
.yb0{bottom:324.160950px;}
.ye0{bottom:324.166950px;}
.y99{bottom:324.184950px;}
.y135{bottom:324.214950px;}
.y1b8{bottom:325.610550px;}
.y105{bottom:331.204500px;}
.y71{bottom:333.529500px;}
.y16{bottom:334.974750px;}
.y120{bottom:335.381400px;}
.ycf{bottom:335.453400px;}
.y180{bottom:339.875400px;}
.y14b{bottom:340.164600px;}
.y39{bottom:344.369400px;}
.y7f{bottom:344.387400px;}
.y198{bottom:346.678950px;}
.y117{bottom:346.931700px;}
.y1b7{bottom:348.990900px;}
.y1d3{bottom:349.613400px;}
.y54{bottom:349.630950px;}
.y169{bottom:349.648950px;}
.yaf{bottom:349.666950px;}
.ydf{bottom:349.672950px;}
.y98{bottom:349.690950px;}
.y134{bottom:349.720950px;}
.y104{bottom:352.804500px;}
.y15{bottom:357.481500px;}
.yce{bottom:360.887400px;}
.y17f{bottom:365.381400px;}
.y116{bottom:367.931700px;}
.y38{bottom:369.875400px;}
.y7e{bottom:369.893400px;}
.y29{bottom:369.911400px;}
.y197{bottom:372.184950px;}
.y1b6{bottom:372.371400px;}
.y103{bottom:374.404500px;}
.y1d2{bottom:375.119400px;}
.y70{bottom:375.136500px;}
.y53{bottom:375.136950px;}
.y168{bottom:375.154950px;}
.yae{bottom:375.172950px;}
.yde{bottom:375.178950px;}
.y14a{bottom:375.190950px;}
.y97{bottom:375.196950px;}
.y133{bottom:375.226950px;}
.y14{bottom:379.988250px;}
.ycd{bottom:386.393400px;}
.y115{bottom:388.931700px;}
.y17e{bottom:390.887400px;}
.y37{bottom:395.381400px;}
.y7d{bottom:395.399400px;}
.y28{bottom:395.417400px;}
.y1b5{bottom:395.751900px;}
.y102{bottom:396.004500px;}
.y196{bottom:397.690950px;}
.y1d1{bottom:400.625400px;}
.y6f{bottom:400.642500px;}
.y52{bottom:400.642950px;}
.y167{bottom:400.660950px;}
.yad{bottom:400.678950px;}
.ydd{bottom:400.684950px;}
.y149{bottom:400.696950px;}
.y96{bottom:400.702950px;}
.y132{bottom:400.732950px;}
.y13{bottom:402.495000px;}
.y114{bottom:409.931700px;}
.ycc{bottom:411.899400px;}
.y17d{bottom:416.394000px;}
.y101{bottom:417.604500px;}
.y1b4{bottom:419.132400px;}
.y36{bottom:420.887400px;}
.y7c{bottom:420.905400px;}
.y195{bottom:423.196950px;}
.y12{bottom:425.001750px;}
.y1d0{bottom:426.131400px;}
.y6e{bottom:426.148500px;}
.y51{bottom:426.148950px;}
.y166{bottom:426.166950px;}
.yac{bottom:426.184950px;}
.ydc{bottom:426.190950px;}
.y148{bottom:426.202950px;}
.y95{bottom:426.208950px;}
.y113{bottom:432.326700px;}
.ycb{bottom:437.405400px;}
.y4{bottom:437.753100px;}
.y100{bottom:439.204500px;}
.y17c{bottom:441.900000px;}
.y1b3{bottom:442.512900px;}
.y35{bottom:446.393400px;}
.y27{bottom:446.411400px;}
.y11{bottom:447.508500px;}
.y194{bottom:448.702950px;}
.y1cf{bottom:451.637400px;}
.y6d{bottom:451.654500px;}
.y50{bottom:451.654950px;}
.y165{bottom:451.672950px;}
.yab{bottom:451.690950px;}
.ydb{bottom:451.696950px;}
.y147{bottom:451.708950px;}
.y94{bottom:451.714950px;}
.y112{bottom:453.326700px;}
.yff{bottom:460.804500px;}
.yca{bottom:462.911400px;}
.y1b2{bottom:465.893400px;}
.y17b{bottom:467.406000px;}
.y10{bottom:470.015250px;}
.y34{bottom:471.899400px;}
.y26{bottom:471.917400px;}
.y193{bottom:474.208950px;}
.y111{bottom:474.326700px;}
.y1ce{bottom:477.143400px;}
.y6c{bottom:477.160500px;}
.y4f{bottom:477.160950px;}
.y164{bottom:477.178950px;}
.yaa{bottom:477.196950px;}
.yda{bottom:477.202950px;}
.y146{bottom:477.214950px;}
.y93{bottom:477.220950px;}
.yfe{bottom:482.404500px;}
.yc9{bottom:488.417400px;}
.y1b1{bottom:489.897900px;}
.yf{bottom:492.522000px;}
.y17a{bottom:492.912000px;}
.y110{bottom:496.721700px;}
.y33{bottom:497.405400px;}
.y25{bottom:497.423400px;}
.y192{bottom:499.714950px;}
.y1cd{bottom:502.649400px;}
.y6b{bottom:502.666500px;}
.y4e{bottom:502.666950px;}
.y163{bottom:502.684950px;}
.ya9{bottom:502.702950px;}
.yd9{bottom:502.708950px;}
.y145{bottom:502.720950px;}
.y92{bottom:502.726950px;}
.yfd{bottom:504.004500px;}
.yc8{bottom:513.923400px;}
.y1b0{bottom:514.779900px;}
.ye{bottom:515.028750px;}
.y10f{bottom:517.721700px;}
.y179{bottom:518.418000px;}
.y32{bottom:522.911400px;}
.y24{bottom:522.929400px;}
.y191{bottom:525.220950px;}
.yfc{bottom:525.604500px;}
.y1cc{bottom:528.155400px;}
.y6a{bottom:528.172500px;}
.y4d{bottom:528.172950px;}
.y162{bottom:528.190950px;}
.ya8{bottom:528.208950px;}
.yd8{bottom:528.214950px;}
.y144{bottom:528.226950px;}
.y1af{bottom:538.160400px;}
.y10e{bottom:538.721700px;}
.yc7{bottom:539.429400px;}
.y178{bottom:543.924000px;}
.yfb{bottom:547.204500px;}
.y31{bottom:548.417400px;}
.y23{bottom:548.435400px;}
.y190{bottom:550.726950px;}
.y1cb{bottom:553.661400px;}
.y69{bottom:553.678500px;}
.y4c{bottom:553.678950px;}
.y161{bottom:553.696950px;}
.ya7{bottom:553.714950px;}
.yd7{bottom:553.720950px;}
.y10d{bottom:559.721700px;}
.yd{bottom:560.026500px;}
.y1ae{bottom:561.541050px;}
.yc6{bottom:564.935400px;}
.yfa{bottom:568.804500px;}
.y177{bottom:569.430000px;}
.y30{bottom:573.923400px;}
.y22{bottom:573.941400px;}
.y18f{bottom:576.232950px;}
.y1ca{bottom:579.167400px;}
.y68{bottom:579.184500px;}
.y4b{bottom:579.184950px;}
.y160{bottom:579.202950px;}
.ya6{bottom:579.220950px;}
.yd6{bottom:579.226950px;}
.y10c{bottom:582.116700px;}
.yc{bottom:582.533250px;}
.y1ad{bottom:584.921550px;}
.yf9{bottom:590.404500px;}
.yc5{bottom:590.441400px;}
.y176{bottom:594.936000px;}
.y2f{bottom:599.429400px;}
.y21{bottom:599.447400px;}
.y10b{bottom:603.116700px;}
.y1c9{bottom:604.673400px;}
.y67{bottom:604.690500px;}
.y4a{bottom:604.690950px;}
.y15f{bottom:604.708950px;}
.ya5{bottom:604.726950px;}
.yd5{bottom:604.732950px;}
.y1ac{bottom:608.301900px;}
.y18e{bottom:609.232950px;}
.yc4{bottom:615.947400px;}
.yc2{bottom:615.959400px;}
.y175{bottom:620.442000px;}
.y10a{bottom:624.116700px;}
.y2e{bottom:624.935400px;}
.y20{bottom:624.953400px;}
.yb{bottom:627.531000px;}
.y1c8{bottom:630.179400px;}
.y66{bottom:630.196500px;}
.y49{bottom:630.196950px;}
.y15e{bottom:630.214950px;}
.ya4{bottom:630.232950px;}
.y1ab{bottom:631.682400px;}
.yc3{bottom:641.453400px;}
.y174{bottom:645.947400px;}
.y172{bottom:645.959400px;}
.y109{bottom:646.511700px;}
.ya{bottom:650.037750px;}
.y2d{bottom:650.441400px;}
.y1f{bottom:650.459400px;}
.y1aa{bottom:655.062900px;}
.y1c7{bottom:655.685400px;}
.y65{bottom:655.702500px;}
.y48{bottom:655.702950px;}
.y15d{bottom:655.720950px;}
.y173{bottom:671.453400px;}
.y9{bottom:672.544500px;}
.y108{bottom:675.226950px;}
.y2c{bottom:675.947400px;}
.y2a{bottom:675.959400px;}
.y1e{bottom:675.965400px;}
.y1a9{bottom:678.443400px;}
.y1c6{bottom:681.191400px;}
.y64{bottom:681.208500px;}
.y47{bottom:681.208950px;}
.y15c{bottom:681.226950px;}
.y107{bottom:697.732950px;}
.y2b{bottom:701.453400px;}
.y1a8{bottom:701.823900px;}
.y1c5{bottom:706.697400px;}
.y63{bottom:706.714500px;}
.y46{bottom:706.714950px;}
.y3{bottom:715.259100px;}
.y8{bottom:717.542250px;}
.yc1{bottom:719.459400px;}
.y1a7{bottom:725.204400px;}
.y1d{bottom:726.959400px;}
.y1c4{bottom:732.203400px;}
.y62{bottom:732.220500px;}
.y45{bottom:732.220950px;}
.y2{bottom:740.753100px;}
.y1a6{bottom:748.584900px;}
.yc0{bottom:749.459400px;}
.y1c3{bottom:757.709400px;}
.y61{bottom:757.726500px;}
.y44{bottom:757.726950px;}
.y7{bottom:762.540000px;}
.y1{bottom:766.253100px;}
.y1a5{bottom:771.965400px;}
.y1c{bottom:779.459400px;}
.y1c2{bottom:783.215400px;}
.y60{bottom:783.232500px;}
.y43{bottom:783.232950px;}
.y6{bottom:785.046750px;}
.y1a4{bottom:819.846000px;}
.y42{bottom:821.363400px;}
.y8a{bottom:821.363550px;}
.y5f{bottom:825.563400px;}
.y91{bottom:825.563550px;}
.ha{height:33.328125px;}
.h1f{height:33.351562px;}
.he{height:36.984375px;}
.h7{height:37.520508px;}
.h1c{height:40.664062px;}
.h1d{height:41.689453px;}
.h8{height:42.697266px;}
.h9{height:43.773926px;}
.h18{height:44.730469px;}
.h24{height:45.826172px;}
.h1b{height:45.858398px;}
.h25{height:45.858998px;}
.h1a{height:49.992188px;}
.hc{height:50.027344px;}
.h19{height:50.029144px;}
.h1e{height:50.029744px;}
.h20{height:50.483344px;}
.h16{height:53.141341px;}
.h23{height:53.193445px;}
.h11{height:53.194045px;}
.h14{height:53.241445px;}
.h17{height:53.285941px;}
.h22{height:53.357941px;}
.h13{height:53.381941px;}
.h15{height:53.430541px;}
.h21{height:53.477941px;}
.h12{height:53.717941px;}
.h5{height:56.929688px;}
.hf{height:60.082031px;}
.h6{height:62.534180px;}
.hb{height:65.062500px;}
.h4{height:117.925781px;}
.hd{height:263.921256px;}
.h10{height:264.106854px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.h2{height:892.914000px;}
.h3{height:893.250000px;}
.w0{width:573.480000px;}
.w1{width:573.750000px;}
.w3{width:573.840000px;}
.w2{width:574.015500px;}
.x0{left:0.000000px;}
.x6{left:70.200000px;}
.xd{left:83.523300px;}
.x13{left:84.868800px;}
.x9{left:86.400000px;}
.x1{left:87.792600px;}
.x18{left:90.131700px;}
.x2{left:91.480650px;}
.x17{left:93.779700px;}
.x29{left:97.424250px;}
.x22{left:99.644550px;}
.xf{left:106.200000px;}
.x1c{left:107.212500px;}
.x26{left:115.678200px;}
.xb{left:117.882000px;}
.xa{left:119.376000px;}
.x16{left:122.400000px;}
.x21{left:126.164550px;}
.x23{left:137.671650px;}
.x14{left:138.763350px;}
.x24{left:139.876500px;}
.xe{left:141.569250px;}
.x1e{left:145.774050px;}
.x1a{left:154.282650px;}
.x27{left:161.871750px;}
.x1b{left:164.280000px;}
.x1d{left:172.586550px;}
.x1f{left:179.272500px;}
.x12{left:194.455500px;}
.x2a{left:209.965350px;}
.x19{left:221.051700px;}
.x25{left:222.388500px;}
.x8{left:226.137150px;}
.x4{left:236.677050px;}
.x3{left:247.279650px;}
.x5{left:266.044650px;}
.x28{left:284.377500px;}
.xc{left:288.691800px;}
.x11{left:292.107900px;}
.x7{left:293.109900px;}
.x20{left:341.947500px;}
.x15{left:365.433450px;}
.x2b{left:374.795550px;}
.x2c{left:376.787700px;}
.x10{left:406.624050px;}
@media print{
.v3{vertical-align:-21.312533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.376533pt;}
.v1{vertical-align:181.333333pt;}
.ls3{letter-spacing:-6.848000pt;}
.ls11{letter-spacing:-5.125333pt;}
.ls28{letter-spacing:-4.752000pt;}
.ls27{letter-spacing:-4.736000pt;}
.ls16{letter-spacing:-4.469333pt;}
.ls2{letter-spacing:-2.368000pt;}
.lsd{letter-spacing:-1.578667pt;}
.ls1c{letter-spacing:-1.380544pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.002757pt;}
.ls17{letter-spacing:0.051435pt;}
.lsc{letter-spacing:0.056416pt;}
.lsf{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.517312pt;}
.lse{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.ls18{letter-spacing:0.832000pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls1f{letter-spacing:1.216000pt;}
.ls13{letter-spacing:1.248000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.301333pt;}
.ls10{letter-spacing:1.333333pt;}
.ls4{letter-spacing:1.493333pt;}
.ls24{letter-spacing:2.090667pt;}
.ls23{letter-spacing:2.132800pt;}
.ls22{letter-spacing:2.133333pt;}
.ls1{letter-spacing:2.986667pt;}
.lsa{letter-spacing:3.768235pt;}
.ls5{letter-spacing:10.666667pt;}
.ls7{letter-spacing:12.720000pt;}
.ls8{letter-spacing:12.725333pt;}
.ls21{letter-spacing:15.749333pt;}
.ls6{letter-spacing:16.208000pt;}
.ls20{letter-spacing:24.821333pt;}
.ls26{letter-spacing:27.808043pt;}
.ls25{letter-spacing:35.434667pt;}
.ws8{word-spacing:-84.468000pt;}
.wsb{word-spacing:-42.666667pt;}
.ws7{word-spacing:-24.320000pt;}
.ws2c{word-spacing:-17.653333pt;}
.ws17{word-spacing:-17.333333pt;}
.ws2d{word-spacing:-16.800000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws2e{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.000000pt;}
.ws16{word-spacing:-13.333333pt;}
.ws21{word-spacing:-10.666667pt;}
.ws2f{word-spacing:-9.930667pt;}
.ws10{word-spacing:-9.328000pt;}
.ws51{word-spacing:-8.960000pt;}
.ws26{word-spacing:-7.947456pt;}
.ws43{word-spacing:-7.104000pt;}
.ws22{word-spacing:-6.229333pt;}
.ws61{word-spacing:-5.440000pt;}
.ws4{word-spacing:-2.986667pt;}
.ws5e{word-spacing:-2.112000pt;}
.ws9{word-spacing:-1.493333pt;}
.ws13{word-spacing:-1.450667pt;}
.ws58{word-spacing:-1.408000pt;}
.ws29{word-spacing:-1.216000pt;}
.ws4f{word-spacing:-1.152000pt;}
.ws27{word-spacing:-1.024000pt;}
.ws3{word-spacing:-1.008000pt;}
.ws23{word-spacing:-0.832000pt;}
.ws11{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.512000pt;}
.ws25{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.421333pt;}
.ws48{word-spacing:0.640000pt;}
.ws57{word-spacing:0.704000pt;}
.wsf{word-spacing:1.152000pt;}
.wse{word-spacing:1.157333pt;}
.ws2b{word-spacing:1.434667pt;}
.wsd{word-spacing:1.472000pt;}
.ws12{word-spacing:1.578667pt;}
.ws20{word-spacing:1.760000pt;}
.ws1e{word-spacing:1.850667pt;}
.ws1f{word-spacing:1.856000pt;}
.ws5{word-spacing:2.368000pt;}
.ws62{word-spacing:2.432000pt;}
.ws2a{word-spacing:2.480000pt;}
.ws4c{word-spacing:3.648000pt;}
.ws30{word-spacing:4.032000pt;}
.ws54{word-spacing:4.160000pt;}
.ws45{word-spacing:4.288000pt;}
.ws40{word-spacing:4.485333pt;}
.ws3a{word-spacing:4.522667pt;}
.ws3d{word-spacing:4.538667pt;}
.ws3f{word-spacing:4.554667pt;}
.ws3e{word-spacing:4.560000pt;}
.ws3c{word-spacing:4.565333pt;}
.ws3b{word-spacing:4.576000pt;}
.ws46{word-spacing:4.736000pt;}
.ws41{word-spacing:5.056000pt;}
.ws5a{word-spacing:6.208000pt;}
.ws6{word-spacing:6.848000pt;}
.ws63{word-spacing:7.104000pt;}
.ws44{word-spacing:7.168000pt;}
.ws47{word-spacing:7.744000pt;}
.ws4d{word-spacing:7.808000pt;}
.ws50{word-spacing:8.128000pt;}
.ws65{word-spacing:8.320000pt;}
.ws5b{word-spacing:8.448000pt;}
.ws5c{word-spacing:9.216000pt;}
.ws55{word-spacing:9.856000pt;}
.ws5d{word-spacing:9.984000pt;}
.ws1c{word-spacing:10.629333pt;}
.ws18{word-spacing:10.645333pt;}
.ws1b{word-spacing:10.656000pt;}
.ws19{word-spacing:10.661333pt;}
.ws1a{word-spacing:10.666667pt;}
.ws4e{word-spacing:10.752000pt;}
.ws53{word-spacing:10.816000pt;}
.ws60{word-spacing:11.328000pt;}
.ws5f{word-spacing:11.840000pt;}
.ws4a{word-spacing:14.528000pt;}
.ws49{word-spacing:17.152000pt;}
.ws64{word-spacing:19.328000pt;}
.ws31{word-spacing:19.680000pt;}
.ws34{word-spacing:19.712000pt;}
.ws32{word-spacing:19.717333pt;}
.ws33{word-spacing:19.738667pt;}
.ws1d{word-spacing:21.632000pt;}
.ws2{word-spacing:22.848000pt;}
.ws52{word-spacing:23.488000pt;}
.ws4b{word-spacing:27.072000pt;}
.ws56{word-spacing:33.152000pt;}
.ws59{word-spacing:37.056000pt;}
.ws35{word-spacing:39.418667pt;}
.ws39{word-spacing:39.434667pt;}
.ws37{word-spacing:39.456000pt;}
.ws36{word-spacing:39.461333pt;}
.ws38{word-spacing:39.477333pt;}
._8{margin-left:-15.846400pt;}
._f{margin-left:-14.240000pt;}
._9{margin-left:-12.441600pt;}
._b{margin-left:-10.688000pt;}
._26{margin-left:-9.753600pt;}
._11{margin-left:-8.832000pt;}
._24{margin-left:-7.936000pt;}
._c{margin-left:-6.912000pt;}
._10{margin-left:-5.383200pt;}
._0{margin-left:-4.464000pt;}
._12{margin-left:-3.564800pt;}
._1{margin-left:-2.654400pt;}
._2{margin-left:-0.991200pt;}
._17{width:1.158400pt;}
._7{width:2.228800pt;}
._14{width:3.596800pt;}
._1c{width:5.043200pt;}
._6{width:5.958400pt;}
._d{width:6.848000pt;}
._18{width:7.897600pt;}
._5{width:9.296000pt;}
._4{width:10.214400pt;}
._15{width:11.158400pt;}
._3{width:12.196800pt;}
._16{width:13.510400pt;}
._1d{width:15.014400pt;}
._23{width:16.440000pt;}
._1e{width:17.580800pt;}
._e{width:19.008000pt;}
._13{width:20.016208pt;}
._1a{width:21.465600pt;}
._1f{width:22.756224pt;}
._19{width:23.782400pt;}
._25{width:24.697600pt;}
._28{width:26.073600pt;}
._37{width:26.969600pt;}
._21{width:28.325312pt;}
._33{width:29.433600pt;}
._35{width:30.950400pt;}
._20{width:32.362688pt;}
._27{width:33.482624pt;}
._22{width:34.534400pt;}
._32{width:35.872000pt;}
._a{width:37.312000pt;}
._2b{width:39.066688pt;}
._29{width:40.205600pt;}
._36{width:42.995200pt;}
._1b{width:44.435200pt;}
._38{width:45.497600pt;}
._2c{width:50.970688pt;}
._2a{width:52.096000pt;}
._39{width:53.546651pt;}
._3b{width:54.452261pt;}
._3a{width:57.744016pt;}
._34{width:58.962400pt;}
._2d{width:60.000000pt;}
._2e{width:63.840000pt;}
._31{width:117.226667pt;}
._2f{width:132.480000pt;}
._30{width:179.413333pt;}
.fs9{font-size:37.312000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs0{font-size:154.666667pt;}
.fs8{font-size:337.872000pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:23.121333pt;}
.y18d{bottom:29.505333pt;}
.y18c{bottom:42.305333pt;}
.y90{bottom:48.055067pt;}
.y18b{bottom:55.105333pt;}
.y7b{bottom:56.470667pt;}
.ybf{bottom:62.362933pt;}
.y1b{bottom:62.363067pt;}
.y8f{bottom:62.455067pt;}
.y18a{bottom:67.905333pt;}
.y131{bottom:68.063067pt;}
.y15b{bottom:71.968533pt;}
.ybe{bottom:76.157467pt;}
.y8e{bottom:76.855067pt;}
.y140{bottom:76.866133pt;}
.yec{bottom:79.259867pt;}
.y7a{bottom:80.470667pt;}
.y1a2{bottom:81.439067pt;}
.yf0{bottom:81.529733pt;}
.yf8{bottom:84.062667pt;}
.y5e{bottom:84.063067pt;}
.y15a{bottom:86.368533pt;}
.y89{bottom:86.400000pt;}
.y5{bottom:87.780533pt;}
.ybd{bottom:90.557467pt;}
.y130{bottom:90.735067pt;}
.y8d{bottom:91.255067pt;}
.y13f{bottom:91.266133pt;}
.yeb{bottom:93.659867pt;}
.y143{bottom:94.068800pt;}
.y129{bottom:94.170133pt;}
.y189{bottom:98.063467pt;}
.y159{bottom:100.768533pt;}
.y88{bottom:100.800000pt;}
.y1a3{bottom:102.058133pt;}
.y1c1{bottom:102.387467pt;}
.y11f{bottom:103.837333pt;}
.y1a1{bottom:104.111067pt;}
.yef{bottom:104.201733pt;}
.y79{bottom:104.470667pt;}
.ybc{bottom:104.957467pt;}
.y8c{bottom:105.655067pt;}
.y13e{bottom:105.666133pt;}
.y1dc{bottom:106.719467pt;}
.yf7{bottom:106.734667pt;}
.y5d{bottom:106.735067pt;}
.yea{bottom:108.059867pt;}
.y12f{bottom:113.407067pt;}
.y158{bottom:115.168533pt;}
.y87{bottom:115.200000pt;}
.y142{bottom:116.740800pt;}
.y128{bottom:116.842133pt;}
.ybb{bottom:119.357467pt;}
.y8b{bottom:120.055067pt;}
.y13d{bottom:120.066133pt;}
.y188{bottom:120.735467pt;}
.ye9{bottom:122.459867pt;}
.y1c0{bottom:123.170133pt;}
.y41{bottom:124.730133pt;}
.y11e{bottom:126.509333pt;}
.y1a0{bottom:126.783067pt;}
.yee{bottom:126.873733pt;}
.y78{bottom:128.470667pt;}
.y1db{bottom:129.391467pt;}
.yf6{bottom:129.406667pt;}
.y5c{bottom:129.407067pt;}
.y157{bottom:129.568533pt;}
.y86{bottom:129.600000pt;}
.yba{bottom:133.757467pt;}
.ya3{bottom:134.455067pt;}
.y13c{bottom:134.466133pt;}
.y12e{bottom:136.079067pt;}
.ye8{bottom:136.859867pt;}
.y141{bottom:139.412800pt;}
.y127{bottom:139.514133pt;}
.y187{bottom:143.407467pt;}
.y1bf{bottom:143.952800pt;}
.y156{bottom:143.968533pt;}
.y85{bottom:144.000000pt;}
.y40{bottom:147.402133pt;}
.y1a{bottom:147.868000pt;}
.yb9{bottom:148.157467pt;}
.ya2{bottom:148.855067pt;}
.y13b{bottom:148.866133pt;}
.y11d{bottom:149.181333pt;}
.y19f{bottom:149.455067pt;}
.ye7{bottom:151.259867pt;}
.y1da{bottom:152.063467pt;}
.yf5{bottom:152.078667pt;}
.y5b{bottom:152.079067pt;}
.y170{bottom:152.095067pt;}
.y77{bottom:152.470667pt;}
.yed{bottom:156.207067pt;}
.y155{bottom:158.368533pt;}
.y84{bottom:158.400000pt;}
.y12d{bottom:158.751067pt;}
.y126{bottom:162.084800pt;}
.yb8{bottom:162.557467pt;}
.ya1{bottom:163.255067pt;}
.y1be{bottom:164.735467pt;}
.ye6{bottom:165.659867pt;}
.y186{bottom:166.079467pt;}
.y19{bottom:167.874000pt;}
.y3f{bottom:170.074133pt;}
.y11c{bottom:171.853333pt;}
.y19e{bottom:172.127067pt;}
.y154{bottom:172.768533pt;}
.yd4{bottom:172.800000pt;}
.y1d9{bottom:174.735467pt;}
.yf4{bottom:174.750667pt;}
.y5a{bottom:174.751067pt;}
.y16f{bottom:174.767067pt;}
.y13a{bottom:174.831067pt;}
.y76{bottom:176.470667pt;}
.yb7{bottom:176.957467pt;}
.ya0{bottom:177.655067pt;}
.ye5{bottom:180.059867pt;}
.y12c{bottom:181.423067pt;}
.y125{bottom:184.756800pt;}
.y1bd{bottom:185.518133pt;}
.y153{bottom:187.168533pt;}
.yd3{bottom:187.200000pt;}
.y18{bottom:187.880000pt;}
.y185{bottom:188.751467pt;}
.yb6{bottom:191.357467pt;}
.y9f{bottom:192.055067pt;}
.y3e{bottom:192.746133pt;}
.ye4{bottom:194.459867pt;}
.y11b{bottom:194.525333pt;}
.y19d{bottom:194.799067pt;}
.y1d8{bottom:197.407467pt;}
.yf3{bottom:197.422667pt;}
.y59{bottom:197.423067pt;}
.y16e{bottom:197.439067pt;}
.y139{bottom:197.503067pt;}
.y75{bottom:200.470667pt;}
.y152{bottom:201.568533pt;}
.y12b{bottom:204.095067pt;}
.yb5{bottom:205.757467pt;}
.y1bc{bottom:206.300800pt;}
.y9e{bottom:206.455067pt;}
.y124{bottom:207.428800pt;}
.y17{bottom:207.886000pt;}
.y184{bottom:211.423467pt;}
.y3d{bottom:215.418133pt;}
.y83{bottom:215.434133pt;}
.y151{bottom:215.968533pt;}
.y11a{bottom:217.197333pt;}
.y19c{bottom:217.471067pt;}
.y1d7{bottom:220.079467pt;}
.yf2{bottom:220.094667pt;}
.y58{bottom:220.095067pt;}
.y16d{bottom:220.111067pt;}
.ye3{bottom:220.132400pt;}
.yb4{bottom:220.157467pt;}
.y138{bottom:220.175067pt;}
.y9d{bottom:220.855067pt;}
.y74{bottom:224.470667pt;}
.y12a{bottom:226.767067pt;}
.y1bb{bottom:227.083467pt;}
.y123{bottom:230.100800pt;}
.yd2{bottom:230.164800pt;}
.y150{bottom:230.368533pt;}
.y183{bottom:234.095467pt;}
.yb3{bottom:234.557467pt;}
.y9c{bottom:235.255067pt;}
.y3c{bottom:238.090133pt;}
.y82{bottom:238.106133pt;}
.y19b{bottom:240.143067pt;}
.y1d6{bottom:242.751467pt;}
.yf1{bottom:242.766667pt;}
.y57{bottom:242.767067pt;}
.y16c{bottom:242.783067pt;}
.ye2{bottom:242.804400pt;}
.y137{bottom:242.847067pt;}
.y14f{bottom:244.768533pt;}
.y1ba{bottom:247.866133pt;}
.y73{bottom:248.470667pt;}
.yb2{bottom:248.957467pt;}
.y9b{bottom:249.655067pt;}
.y122{bottom:252.772800pt;}
.yd1{bottom:252.836800pt;}
.y182{bottom:256.767467pt;}
.y14e{bottom:259.168533pt;}
.y3b{bottom:260.762133pt;}
.y81{bottom:260.778133pt;}
.y119{bottom:262.525333pt;}
.y19a{bottom:262.815067pt;}
.yb1{bottom:263.357467pt;}
.y9a{bottom:264.055067pt;}
.y1d5{bottom:265.423467pt;}
.y56{bottom:265.439067pt;}
.y16b{bottom:265.455067pt;}
.ye1{bottom:265.476400pt;}
.y136{bottom:265.519067pt;}
.y1b9{bottom:268.648933pt;}
.y72{bottom:272.470667pt;}
.y14d{bottom:273.568533pt;}
.y106{bottom:275.204000pt;}
.y121{bottom:275.444800pt;}
.yd0{bottom:275.508800pt;}
.y181{bottom:279.439467pt;}
.y3a{bottom:283.434133pt;}
.y80{bottom:283.450133pt;}
.y118{bottom:285.197333pt;}
.y199{bottom:285.487067pt;}
.y14c{bottom:287.968533pt;}
.y1d4{bottom:288.095467pt;}
.y55{bottom:288.111067pt;}
.y16a{bottom:288.127067pt;}
.yb0{bottom:288.143067pt;}
.ye0{bottom:288.148400pt;}
.y99{bottom:288.164400pt;}
.y135{bottom:288.191067pt;}
.y1b8{bottom:289.431600pt;}
.y105{bottom:294.404000pt;}
.y71{bottom:296.470667pt;}
.y16{bottom:297.755333pt;}
.y120{bottom:298.116800pt;}
.ycf{bottom:298.180800pt;}
.y180{bottom:302.111467pt;}
.y14b{bottom:302.368533pt;}
.y39{bottom:306.106133pt;}
.y7f{bottom:306.122133pt;}
.y198{bottom:308.159067pt;}
.y117{bottom:308.383733pt;}
.y1b7{bottom:310.214133pt;}
.y1d3{bottom:310.767467pt;}
.y54{bottom:310.783067pt;}
.y169{bottom:310.799067pt;}
.yaf{bottom:310.815067pt;}
.ydf{bottom:310.820400pt;}
.y98{bottom:310.836400pt;}
.y134{bottom:310.863067pt;}
.y104{bottom:313.604000pt;}
.y15{bottom:317.761333pt;}
.yce{bottom:320.788800pt;}
.y17f{bottom:324.783467pt;}
.y116{bottom:327.050400pt;}
.y38{bottom:328.778133pt;}
.y7e{bottom:328.794133pt;}
.y29{bottom:328.810133pt;}
.y197{bottom:330.831067pt;}
.y1b6{bottom:330.996800pt;}
.y103{bottom:332.804000pt;}
.y1d2{bottom:333.439467pt;}
.y70{bottom:333.454667pt;}
.y53{bottom:333.455067pt;}
.y168{bottom:333.471067pt;}
.yae{bottom:333.487067pt;}
.yde{bottom:333.492400pt;}
.y14a{bottom:333.503067pt;}
.y97{bottom:333.508400pt;}
.y133{bottom:333.535067pt;}
.y14{bottom:337.767333pt;}
.ycd{bottom:343.460800pt;}
.y115{bottom:345.717067pt;}
.y17e{bottom:347.455467pt;}
.y37{bottom:351.450133pt;}
.y7d{bottom:351.466133pt;}
.y28{bottom:351.482133pt;}
.y1b5{bottom:351.779467pt;}
.y102{bottom:352.004000pt;}
.y196{bottom:353.503067pt;}
.y1d1{bottom:356.111467pt;}
.y6f{bottom:356.126667pt;}
.y52{bottom:356.127067pt;}
.y167{bottom:356.143067pt;}
.yad{bottom:356.159067pt;}
.ydd{bottom:356.164400pt;}
.y149{bottom:356.175067pt;}
.y96{bottom:356.180400pt;}
.y132{bottom:356.207067pt;}
.y13{bottom:357.773333pt;}
.y114{bottom:364.383733pt;}
.ycc{bottom:366.132800pt;}
.y17d{bottom:370.128000pt;}
.y101{bottom:371.204000pt;}
.y1b4{bottom:372.562133pt;}
.y36{bottom:374.122133pt;}
.y7c{bottom:374.138133pt;}
.y195{bottom:376.175067pt;}
.y12{bottom:377.779333pt;}
.y1d0{bottom:378.783467pt;}
.y6e{bottom:378.798667pt;}
.y51{bottom:378.799067pt;}
.y166{bottom:378.815067pt;}
.yac{bottom:378.831067pt;}
.ydc{bottom:378.836400pt;}
.y148{bottom:378.847067pt;}
.y95{bottom:378.852400pt;}
.y113{bottom:384.290400pt;}
.ycb{bottom:388.804800pt;}
.y4{bottom:389.113867pt;}
.y100{bottom:390.404000pt;}
.y17c{bottom:392.800000pt;}
.y1b3{bottom:393.344800pt;}
.y35{bottom:396.794133pt;}
.y27{bottom:396.810133pt;}
.y11{bottom:397.785333pt;}
.y194{bottom:398.847067pt;}
.y1cf{bottom:401.455467pt;}
.y6d{bottom:401.470667pt;}
.y50{bottom:401.471067pt;}
.y165{bottom:401.487067pt;}
.yab{bottom:401.503067pt;}
.ydb{bottom:401.508400pt;}
.y147{bottom:401.519067pt;}
.y94{bottom:401.524400pt;}
.y112{bottom:402.957067pt;}
.yff{bottom:409.604000pt;}
.yca{bottom:411.476800pt;}
.y1b2{bottom:414.127467pt;}
.y17b{bottom:415.472000pt;}
.y10{bottom:417.791333pt;}
.y34{bottom:419.466133pt;}
.y26{bottom:419.482133pt;}
.y193{bottom:421.519067pt;}
.y111{bottom:421.623733pt;}
.y1ce{bottom:424.127467pt;}
.y6c{bottom:424.142667pt;}
.y4f{bottom:424.143067pt;}
.y164{bottom:424.159067pt;}
.yaa{bottom:424.175067pt;}
.yda{bottom:424.180400pt;}
.y146{bottom:424.191067pt;}
.y93{bottom:424.196400pt;}
.yfe{bottom:428.804000pt;}
.yc9{bottom:434.148800pt;}
.y1b1{bottom:435.464800pt;}
.yf{bottom:437.797333pt;}
.y17a{bottom:438.144000pt;}
.y110{bottom:441.530400pt;}
.y33{bottom:442.138133pt;}
.y25{bottom:442.154133pt;}
.y192{bottom:444.191067pt;}
.y1cd{bottom:446.799467pt;}
.y6b{bottom:446.814667pt;}
.y4e{bottom:446.815067pt;}
.y163{bottom:446.831067pt;}
.ya9{bottom:446.847067pt;}
.yd9{bottom:446.852400pt;}
.y145{bottom:446.863067pt;}
.y92{bottom:446.868400pt;}
.yfd{bottom:448.004000pt;}
.yc8{bottom:456.820800pt;}
.y1b0{bottom:457.582133pt;}
.ye{bottom:457.803333pt;}
.y10f{bottom:460.197067pt;}
.y179{bottom:460.816000pt;}
.y32{bottom:464.810133pt;}
.y24{bottom:464.826133pt;}
.y191{bottom:466.863067pt;}
.yfc{bottom:467.204000pt;}
.y1cc{bottom:469.471467pt;}
.y6a{bottom:469.486667pt;}
.y4d{bottom:469.487067pt;}
.y162{bottom:469.503067pt;}
.ya8{bottom:469.519067pt;}
.yd8{bottom:469.524400pt;}
.y144{bottom:469.535067pt;}
.y1af{bottom:478.364800pt;}
.y10e{bottom:478.863733pt;}
.yc7{bottom:479.492800pt;}
.y178{bottom:483.488000pt;}
.yfb{bottom:486.404000pt;}
.y31{bottom:487.482133pt;}
.y23{bottom:487.498133pt;}
.y190{bottom:489.535067pt;}
.y1cb{bottom:492.143467pt;}
.y69{bottom:492.158667pt;}
.y4c{bottom:492.159067pt;}
.y161{bottom:492.175067pt;}
.ya7{bottom:492.191067pt;}
.yd7{bottom:492.196400pt;}
.y10d{bottom:497.530400pt;}
.yd{bottom:497.801333pt;}
.y1ae{bottom:499.147600pt;}
.yc6{bottom:502.164800pt;}
.yfa{bottom:505.604000pt;}
.y177{bottom:506.160000pt;}
.y30{bottom:510.154133pt;}
.y22{bottom:510.170133pt;}
.y18f{bottom:512.207067pt;}
.y1ca{bottom:514.815467pt;}
.y68{bottom:514.830667pt;}
.y4b{bottom:514.831067pt;}
.y160{bottom:514.847067pt;}
.ya6{bottom:514.863067pt;}
.yd6{bottom:514.868400pt;}
.y10c{bottom:517.437067pt;}
.yc{bottom:517.807333pt;}
.y1ad{bottom:519.930267pt;}
.yf9{bottom:524.804000pt;}
.yc5{bottom:524.836800pt;}
.y176{bottom:528.832000pt;}
.y2f{bottom:532.826133pt;}
.y21{bottom:532.842133pt;}
.y10b{bottom:536.103733pt;}
.y1c9{bottom:537.487467pt;}
.y67{bottom:537.502667pt;}
.y4a{bottom:537.503067pt;}
.y15f{bottom:537.519067pt;}
.ya5{bottom:537.535067pt;}
.yd5{bottom:537.540400pt;}
.y1ac{bottom:540.712800pt;}
.y18e{bottom:541.540400pt;}
.yc4{bottom:547.508800pt;}
.yc2{bottom:547.519467pt;}
.y175{bottom:551.504000pt;}
.y10a{bottom:554.770400pt;}
.y2e{bottom:555.498133pt;}
.y20{bottom:555.514133pt;}
.yb{bottom:557.805333pt;}
.y1c8{bottom:560.159467pt;}
.y66{bottom:560.174667pt;}
.y49{bottom:560.175067pt;}
.y15e{bottom:560.191067pt;}
.ya4{bottom:560.207067pt;}
.y1ab{bottom:561.495467pt;}
.yc3{bottom:570.180800pt;}
.y174{bottom:574.175467pt;}
.y172{bottom:574.186133pt;}
.y109{bottom:574.677067pt;}
.ya{bottom:577.811333pt;}
.y2d{bottom:578.170133pt;}
.y1f{bottom:578.186133pt;}
.y1aa{bottom:582.278133pt;}
.y1c7{bottom:582.831467pt;}
.y65{bottom:582.846667pt;}
.y48{bottom:582.847067pt;}
.y15d{bottom:582.863067pt;}
.y173{bottom:596.847467pt;}
.y9{bottom:597.817333pt;}
.y108{bottom:600.201733pt;}
.y2c{bottom:600.842133pt;}
.y2a{bottom:600.852800pt;}
.y1e{bottom:600.858133pt;}
.y1a9{bottom:603.060800pt;}
.y1c6{bottom:605.503467pt;}
.y64{bottom:605.518667pt;}
.y47{bottom:605.519067pt;}
.y15c{bottom:605.535067pt;}
.y107{bottom:620.207067pt;}
.y2b{bottom:623.514133pt;}
.y1a8{bottom:623.843467pt;}
.y1c5{bottom:628.175467pt;}
.y63{bottom:628.190667pt;}
.y46{bottom:628.191067pt;}
.y3{bottom:635.785867pt;}
.y8{bottom:637.815333pt;}
.yc1{bottom:639.519467pt;}
.y1a7{bottom:644.626133pt;}
.y1d{bottom:646.186133pt;}
.y1c4{bottom:650.847467pt;}
.y62{bottom:650.862667pt;}
.y45{bottom:650.863067pt;}
.y2{bottom:658.447200pt;}
.y1a6{bottom:665.408800pt;}
.yc0{bottom:666.186133pt;}
.y1c3{bottom:673.519467pt;}
.y61{bottom:673.534667pt;}
.y44{bottom:673.535067pt;}
.y7{bottom:677.813333pt;}
.y1{bottom:681.113867pt;}
.y1a5{bottom:686.191467pt;}
.y1c{bottom:692.852800pt;}
.y1c2{bottom:696.191467pt;}
.y60{bottom:696.206667pt;}
.y43{bottom:696.207067pt;}
.y6{bottom:697.819333pt;}
.y1a4{bottom:728.752000pt;}
.y42{bottom:730.100800pt;}
.y8a{bottom:730.100933pt;}
.y5f{bottom:733.834133pt;}
.y91{bottom:733.834267pt;}
.ha{height:29.625000pt;}
.h1f{height:29.645833pt;}
.he{height:32.875000pt;}
.h7{height:33.351562pt;}
.h1c{height:36.145833pt;}
.h1d{height:37.057292pt;}
.h8{height:37.953125pt;}
.h9{height:38.910156pt;}
.h18{height:39.760417pt;}
.h24{height:40.734375pt;}
.h1b{height:40.763021pt;}
.h25{height:40.763554pt;}
.h1a{height:44.437500pt;}
.hc{height:44.468750pt;}
.h19{height:44.470350pt;}
.h1e{height:44.470883pt;}
.h20{height:44.874083pt;}
.h16{height:47.236748pt;}
.h23{height:47.283062pt;}
.h11{height:47.283596pt;}
.h14{height:47.325729pt;}
.h17{height:47.365281pt;}
.h22{height:47.429281pt;}
.h13{height:47.450615pt;}
.h15{height:47.493815pt;}
.h21{height:47.535948pt;}
.h12{height:47.749281pt;}
.h5{height:50.604167pt;}
.hf{height:53.406250pt;}
.h6{height:55.585938pt;}
.hb{height:57.833333pt;}
.h4{height:104.822917pt;}
.hd{height:234.596672pt;}
.h10{height:234.761648pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.h2{height:793.701333pt;}
.h3{height:794.000000pt;}
.w0{width:509.760000pt;}
.w1{width:510.000000pt;}
.w3{width:510.080000pt;}
.w2{width:510.236000pt;}
.x0{left:0.000000pt;}
.x6{left:62.400000pt;}
.xd{left:74.242933pt;}
.x13{left:75.438933pt;}
.x9{left:76.800000pt;}
.x1{left:78.037867pt;}
.x18{left:80.117067pt;}
.x2{left:81.316133pt;}
.x17{left:83.359733pt;}
.x29{left:86.599333pt;}
.x22{left:88.572933pt;}
.xf{left:94.400000pt;}
.x1c{left:95.300000pt;}
.x26{left:102.825067pt;}
.xb{left:104.784000pt;}
.xa{left:106.112000pt;}
.x16{left:108.800000pt;}
.x21{left:112.146267pt;}
.x23{left:122.374800pt;}
.x14{left:123.345200pt;}
.x24{left:124.334667pt;}
.xe{left:125.839333pt;}
.x1e{left:129.576933pt;}
.x1a{left:137.140133pt;}
.x27{left:143.886000pt;}
.x1b{left:146.026667pt;}
.x1d{left:153.410267pt;}
.x1f{left:159.353333pt;}
.x12{left:172.849333pt;}
.x2a{left:186.635867pt;}
.x19{left:196.490400pt;}
.x25{left:197.678667pt;}
.x8{left:201.010800pt;}
.x4{left:210.379600pt;}
.x3{left:219.804133pt;}
.x5{left:236.484133pt;}
.x28{left:252.780000pt;}
.xc{left:256.614933pt;}
.x11{left:259.651467pt;}
.x7{left:260.542133pt;}
.x20{left:303.953333pt;}
.x15{left:324.829733pt;}
.x2b{left:333.151600pt;}
.x2c{left:334.922400pt;}
.x10{left:361.443600pt;}
}




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