
    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_a5b810dc1b33489b9b785056.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_264eecea42de18b5f95eed17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117000;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_01892b271d9eeb29edca882d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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_864be3cb551a54bdded7d984.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117000;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_a9046f13fe7f46633ca4762f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050000;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_9842cf329e7fc34ccc1a1369.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117000;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_59526ad6bca5daeef10d3b23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_25673d8ed5f19df328eea951.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.117000;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_21db040d446590f2e639b6e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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_6998636ac7fecce338f06747.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977539;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_2d72c68a5da599172ab7d473.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050000;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_e849ed6c7e7d11ef90a6c61b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.117000;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_78c0edad05c8ec1e2bd820e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.050000;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_049c83202d261e20bd57b3e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.117000;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_f39f6c73b21f8032937e8756.woff2')format("woff");}.fff{font-family:fff;line-height:1.050000;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_d6be9fd355770f94edcfd0f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.117000;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_73672784bb1f0aa9e9cc6cb4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.050000;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_07ba45ca18ec206577f5877b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.117000;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;}
.m11{transform:matrix(0.247511,-0.035194,0.035203,0.247509,0,0);-ms-transform:matrix(0.247511,-0.035194,0.035203,0.247509,0,0);-webkit-transform:matrix(0.247511,-0.035194,0.035203,0.247509,0,0);}
.m12{transform:matrix(0.247733,-0.033695,0.033609,0.247731,0,0);-ms-transform:matrix(0.247733,-0.033695,0.033609,0.247731,0,0);-webkit-transform:matrix(0.247733,-0.033695,0.033609,0.247731,0,0);}
.me{transform:matrix(0.248637,-0.025636,0.025459,0.248700,0,0);-ms-transform:matrix(0.248637,-0.025636,0.025459,0.248700,0,0);-webkit-transform:matrix(0.248637,-0.025636,0.025459,0.248700,0,0);}
.mc{transform:matrix(0.249108,-0.022185,0.022203,0.249012,0,0);-ms-transform:matrix(0.249108,-0.022185,0.022203,0.249012,0,0);-webkit-transform:matrix(0.249108,-0.022185,0.022203,0.249012,0,0);}
.m5{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249589,-0.011855,0.011912,0.249716,0,0);-ms-transform:matrix(0.249589,-0.011855,0.011912,0.249716,0,0);-webkit-transform:matrix(0.249589,-0.011855,0.011912,0.249716,0,0);}
.m6{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249946,0.012638,-0.012470,0.249689,0,0);-ms-transform:matrix(0.249946,0.012638,-0.012470,0.249689,0,0);-webkit-transform:matrix(0.249946,0.012638,-0.012470,0.249689,0,0);}
.m13{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250462,-0.022257,0.021733,0.249054,0,0);-ms-transform:matrix(0.250462,-0.022257,0.021733,0.249054,0,0);-webkit-transform:matrix(0.250462,-0.022257,0.021733,0.249054,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:1.974533px;}
.lsf{letter-spacing:1.979190px;}
.ls6{letter-spacing:2.161044px;}
.ls10{letter-spacing:2.348639px;}
.ls3{letter-spacing:2.518686px;}
.lse{letter-spacing:2.553155px;}
.ls5{letter-spacing:3.333061px;}
.ls4{letter-spacing:3.442204px;}
.ls0{letter-spacing:3.576474px;}
.ls9{letter-spacing:4.197810px;}
.lsb{letter-spacing:4.281766px;}
.lsc{letter-spacing:4.298557px;}
.ls8{letter-spacing:4.642778px;}
.lsa{letter-spacing:4.919833px;}
.ls7{letter-spacing:10.659726px;}
.ls1{letter-spacing:24.023016px;}
.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;}
}
.ws1{word-spacing:-824.790216px;}
.wsa{word-spacing:-365.983926px;}
.ws3{word-spacing:-180.036000px;}
.ws12{word-spacing:-143.968200px;}
.ws16{word-spacing:-125.985000px;}
.ws0{word-spacing:-122.792274px;}
.wsd{word-spacing:-88.876033px;}
.wsb{word-spacing:-88.598978px;}
.wse{word-spacing:-88.254757px;}
.wsc{word-spacing:-88.154010px;}
.ws6{word-spacing:-87.398404px;}
.ws7{word-spacing:-87.289261px;}
.ws5{word-spacing:-86.474886px;}
.ws4{word-spacing:-83.956200px;}
.ws9{word-spacing:-74.195844px;}
.ws13{word-spacing:-68.526155px;}
.ws15{word-spacing:-68.321639px;}
.ws14{word-spacing:-67.952190px;}
.ws10{word-spacing:-67.792297px;}
.ws8{word-spacing:-65.973000px;}
.ws11{word-spacing:-65.953699px;}
.wsf{word-spacing:-65.817764px;}
.ws2{word-spacing:0.000000px;}
._34{margin-left:-245.978125px;}
._32{margin-left:-236.671689px;}
._2f{margin-left:-194.705640px;}
._36{margin-left:-161.573230px;}
._35{margin-left:-155.147944px;}
._2d{margin-left:-149.661764px;}
._25{margin-left:-143.480795px;}
._31{margin-left:-140.188061px;}
._28{margin-left:-138.401107px;}
._51{margin-left:-136.419579px;}
._3f{margin-left:-131.606316px;}
._30{margin-left:-116.174365px;}
._2c{margin-left:-113.251794px;}
._4b{margin-left:-109.455074px;}
._4a{margin-left:-108.135969px;}
._2e{margin-left:-105.684144px;}
._49{margin-left:-104.565429px;}
._33{margin-left:-101.246933px;}
._2b{margin-left:-99.195540px;}
._26{margin-left:-95.558122px;}
._23{margin-left:-93.857850px;}
._5{margin-left:-90.961655px;}
._b{margin-left:-89.769497px;}
._7{margin-left:-87.385181px;}
._3e{margin-left:-85.877172px;}
._1a{margin-left:-83.627796px;}
._12{margin-left:-82.409159px;}
._1d{margin-left:-80.900283px;}
._15{margin-left:-79.799658px;}
._13{margin-left:-78.500942px;}
._2a{margin-left:-76.976009px;}
._50{margin-left:-74.174832px;}
._18{margin-left:-72.285892px;}
._11{margin-left:-70.507917px;}
._19{margin-left:-69.478674px;}
._29{margin-left:-67.879646px;}
._1b{margin-left:-66.775044px;}
._1f{margin-left:-65.016350px;}
._21{margin-left:-63.780453px;}
._10{margin-left:-62.746580px;}
._42{margin-left:-61.742029px;}
._27{margin-left:-60.718767px;}
._d{margin-left:-59.488684px;}
._4{margin-left:-57.473937px;}
._0{margin-left:-56.389073px;}
._17{margin-left:-54.768742px;}
._f{margin-left:-53.345525px;}
._3{margin-left:-51.501226px;}
._14{margin-left:-50.304104px;}
._a{margin-left:-49.259969px;}
._43{margin-left:-47.509584px;}
._c{margin-left:-45.910005px;}
._16{margin-left:-44.432478px;}
._6{margin-left:-42.560041px;}
._40{margin-left:-41.176407px;}
._1e{margin-left:-40.106537px;}
._1{margin-left:-38.506703px;}
._9{margin-left:-37.314545px;}
._8{margin-left:-36.217760px;}
._3a{margin-left:-34.538392px;}
._2{margin-left:-33.499640px;}
._38{margin-left:-31.960855px;}
._20{margin-left:-30.717403px;}
._44{margin-left:-29.310494px;}
._3d{margin-left:-27.574799px;}
._39{margin-left:-25.759903px;}
._37{margin-left:-24.023016px;}
._3c{margin-left:-22.881917px;}
._3b{margin-left:-21.527279px;}
._22{margin-left:-19.789823px;}
._e{margin-left:-17.490336px;}
._1c{margin-left:-15.217636px;}
._45{margin-left:-13.936729px;}
._46{margin-left:-11.980151px;}
._41{margin-left:-10.807554px;}
._47{margin-left:-9.432287px;}
._4f{margin-left:-8.303013px;}
._4c{margin-left:-4.625987px;}
._24{margin-left:-3.098634px;}
._48{margin-left:-1.297110px;}
._4e{width:1.984233px;}
._4d{width:4.919833px;}
.fc0{color:transparent;}
.fsd{font-size:65.817764px;}
.fs10{font-size:65.953699px;}
.fs12{font-size:65.965200px;}
.fs9{font-size:65.973000px;}
.fse{font-size:66.013177px;}
.fs11{font-size:66.024241px;}
.fsc{font-size:66.031730px;}
.fsf{font-size:66.048015px;}
.fs6{font-size:72.034800px;}
.fs8{font-size:83.956200px;}
.fs1{font-size:109.314600px;}
.fs0{font-size:119.215800px;}
.fs13{font-size:120.024000px;}
.fs14{font-size:125.985000px;}
.fsa{font-size:143.968200px;}
.fs7{font-size:180.036000px;}
.fs2{font-size:189.331200px;}
.fs3{font-size:324.509400px;}
.fsb{font-size:355.324200px;}
.fs5{font-size:433.218600px;}
.fs4{font-size:800.767200px;}
.y0{bottom:0.000000px;}
.y2e{bottom:54.121890px;}
.yc{bottom:55.768800px;}
.y2d{bottom:79.308750px;}
.yb{bottom:80.344500px;}
.ybe{bottom:81.430500px;}
.y71{bottom:83.905740px;}
.ybd{bottom:85.663650px;}
.y30{bottom:87.416550px;}
.yc2{bottom:93.958200px;}
.yd{bottom:94.311900px;}
.y31{bottom:96.837600px;}
.y6f{bottom:97.721700px;}
.y1{bottom:98.984550px;}
.y2c{bottom:111.057600px;}
.ybc{bottom:123.459150px;}
.y70{bottom:127.096200px;}
.y2b{bottom:136.122750px;}
.y5{bottom:144.599700px;}
.y2a{bottom:160.253850px;}
.y2f{bottom:167.287800px;}
.y29{bottom:180.045750px;}
.y4{bottom:186.143250px;}
.y3{bottom:226.090770px;}
.y2{bottom:258.885150px;}
.y28{bottom:261.668700px;}
.ybb{bottom:302.646000px;}
.y9f{bottom:305.179800px;}
.y8b{bottom:305.282850px;}
.yc3{bottom:318.473100px;}
.yba{bottom:322.437900px;}
.y9e{bottom:324.971700px;}
.y8a{bottom:325.074750px;}
.yb9{bottom:342.229800px;}
.yc0{bottom:342.619350px;}
.y9d{bottom:344.763600px;}
.y89{bottom:344.866650px;}
.yb8{bottom:362.021700px;}
.y9c{bottom:364.555500px;}
.y87{bottom:364.658400px;}
.y88{bottom:364.658550px;}
.yb7{bottom:381.813150px;}
.y9a{bottom:384.347100px;}
.y9b{bottom:384.347400px;}
.y86{bottom:384.450300px;}
.yb6{bottom:421.396950px;}
.y99{bottom:423.930900px;}
.y85{bottom:424.034100px;}
.yb5{bottom:441.188850px;}
.y98{bottom:443.722800px;}
.y84{bottom:443.826000px;}
.yb4{bottom:460.980750px;}
.y97{bottom:463.514700px;}
.yb3{bottom:480.772650px;}
.y96{bottom:483.306600px;}
.y83{bottom:483.409350px;}
.yb2{bottom:500.564550px;}
.y95{bottom:503.098500px;}
.y82{bottom:503.201250px;}
.yb1{bottom:520.356450px;}
.y81{bottom:522.993150px;}
.yb0{bottom:540.148200px;}
.y94{bottom:542.682300px;}
.y80{bottom:542.785050px;}
.y92{bottom:562.473750px;}
.y93{bottom:562.474200px;}
.y7f{bottom:562.576950px;}
.yaf{bottom:579.732000px;}
.y91{bottom:582.265650px;}
.y7e{bottom:582.368850px;}
.yae{bottom:599.523900px;}
.y7d{bottom:602.160750px;}
.yad{bottom:619.315800px;}
.y90{bottom:621.849450px;}
.y7c{bottom:621.952500px;}
.yac{bottom:639.107400px;}
.y8f{bottom:641.641350px;}
.yab{bottom:658.899300px;}
.y8e{bottom:661.433250px;}
.y7a{bottom:661.536000px;}
.y7b{bottom:661.536300px;}
.yaa{bottom:678.691200px;}
.y8d{bottom:681.225150px;}
.y79{bottom:681.327900px;}
.ya9{bottom:698.483100px;}
.y78{bottom:701.119800px;}
.ya8{bottom:718.275000px;}
.y8c{bottom:720.808950px;}
.y77{bottom:720.911700px;}
.ya7{bottom:738.066900px;}
.y76{bottom:740.703600px;}
.ya6{bottom:757.858800px;}
.y75{bottom:760.495500px;}
.ya5{bottom:777.650400px;}
.y74{bottom:780.287400px;}
.y60{bottom:796.614720px;}
.y73{bottom:800.079300px;}
.y5f{bottom:816.376200px;}
.ya4{bottom:817.234200px;}
.y72{bottom:819.871200px;}
.ya3{bottom:837.026100px;}
.ya2{bottom:856.818000px;}
.ya1{bottom:876.609900px;}
.y58{bottom:882.192360px;}
.y32{bottom:890.229300px;}
.ya0{bottom:896.401800px;}
.y57{bottom:901.923600px;}
.y56{bottom:914.724150px;}
.y55{bottom:914.724330px;}
.y54{bottom:939.911190px;}
.y53{bottom:965.098050px;}
.y52{bottom:990.284910px;}
.y51{bottom:1015.471770px;}
.y8{bottom:1040.281530px;}
.y50{bottom:1040.658630px;}
.y6c{bottom:1058.151900px;}
.y4f{bottom:1065.845490px;}
.y6b{bottom:1077.943800px;}
.y4e{bottom:1091.032350px;}
.y4d{bottom:1091.032440px;}
.y7{bottom:1097.080890px;}
.y4c{bottom:1141.406160px;}
.y6{bottom:1153.880250px;}
.y4b{bottom:1166.593020px;}
.y4a{bottom:1191.779880px;}
.ya{bottom:1193.093250px;}
.y49{bottom:1216.966740px;}
.y5a{bottom:1222.523520px;}
.y48{bottom:1242.153600px;}
.y59{bottom:1242.194100px;}
.y66{bottom:1253.292150px;}
.y65{bottom:1273.084050px;}
.y47{bottom:1292.527440px;}
.y46{bottom:1317.714300px;}
.y45{bottom:1342.901160px;}
.y44{bottom:1368.088020px;}
.y9{bottom:1380.593400px;}
.y43{bottom:1393.274880px;}
.y42{bottom:1418.461740px;}
.y5c{bottom:1436.349150px;}
.y41{bottom:1443.648600px;}
.y5b{bottom:1456.050150px;}
.y40{bottom:1468.835640px;}
.y68{bottom:1490.511600px;}
.y3f{bottom:1494.022500px;}
.y67{bottom:1510.303500px;}
.y6a{bottom:1517.511900px;}
.y3e{bottom:1519.209360px;}
.y5e{bottom:1534.485000px;}
.y69{bottom:1537.303800px;}
.y3d{bottom:1544.396220px;}
.y5d{bottom:1554.276900px;}
.y3c{bottom:1569.583080px;}
.y3b{bottom:1594.769940px;}
.y3a{bottom:1619.956800px;}
.y64{bottom:1634.707200px;}
.y63{bottom:1654.499100px;}
.y39{bottom:1670.330640px;}
.y38{bottom:1695.517500px;}
.y37{bottom:1720.704360px;}
.ybf{bottom:1737.318750px;}
.yc1{bottom:1737.419850px;}
.y36{bottom:1745.891220px;}
.y35{bottom:1771.078080px;}
.y62{bottom:1781.782200px;}
.y27{bottom:1791.188250px;}
.y34{bottom:1796.264940px;}
.y61{bottom:1801.574100px;}
.y26{bottom:1816.375110px;}
.y33{bottom:1821.451800px;}
.y25{bottom:1841.561970px;}
.y24{bottom:1866.748830px;}
.y6d{bottom:1885.782900px;}
.y23{bottom:1891.935690px;}
.y22{bottom:1917.122550px;}
.y21{bottom:1942.309530px;}
.y6e{bottom:1958.752200px;}
.y20{bottom:1967.496390px;}
.y1f{bottom:1992.683250px;}
.y1e{bottom:2017.870110px;}
.y1d{bottom:2043.056970px;}
.y1c{bottom:2093.430690px;}
.y1b{bottom:2118.617550px;}
.y1a{bottom:2118.617730px;}
.y19{bottom:2143.804590px;}
.y18{bottom:2168.991450px;}
.y17{bottom:2194.178310px;}
.y16{bottom:2219.365170px;}
.y15{bottom:2244.552030px;}
.y14{bottom:2269.738890px;}
.y13{bottom:2294.925750px;}
.y12{bottom:2345.299560px;}
.y11{bottom:2370.486420px;}
.y10{bottom:2395.673280px;}
.yf{bottom:2420.860140px;}
.ye{bottom:2446.047000px;}
.h18{height:48.084761px;}
.h1b{height:52.604448px;}
.h14{height:54.562926px;}
.he{height:54.691617px;}
.h16{height:54.724924px;}
.h12{height:54.740304px;}
.h15{height:57.919632px;}
.h1a{height:58.039256px;}
.h1d{height:58.049376px;}
.hd{height:58.056240px;}
.h17{height:58.091596px;}
.h1c{height:58.101332px;}
.h13{height:58.107922px;}
.h19{height:58.122254px;}
.h9{height:59.716849px;}
.hf{height:63.390624px;}
.hb{height:69.599690px;}
.hc{height:73.881456px;}
.h3{height:90.621803px;}
.h2{height:98.829898px;}
.h1e{height:99.499896px;}
.h1f{height:104.441565px;}
.h4{height:104.909904px;}
.h10{height:119.349638px;}
.ha{height:149.249844px;}
.h5{height:156.955565px;}
.h20{height:158.431680px;}
.h6{height:269.018293px;}
.h11{height:312.685296px;}
.h8{height:359.138219px;}
.h7{height:704.675136px;}
.h0{height:2525.760000px;}
.h1{height:2526.000000px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x26{left:38.404950px;}
.xa{left:40.014150px;}
.x9{left:48.381600px;}
.x22{left:98.014800px;}
.x1{left:104.523000px;}
.xb{left:191.559900px;}
.xc{left:284.389650px;}
.x15{left:368.315550px;}
.x13{left:457.998750px;}
.x14{left:460.015470px;}
.xf{left:528.693900px;}
.x10{left:530.453220px;}
.x6{left:578.291250px;}
.x20{left:619.092150px;}
.x1c{left:755.655000px;}
.x11{left:850.380000px;}
.x12{left:852.096480px;}
.x21{left:1139.346900px;}
.x17{left:1574.638650px;}
.x16{left:1709.485050px;}
.x2{left:2214.792750px;}
.x1d{left:2470.646850px;}
.x8{left:2627.628000px;}
.x3{left:2657.343600px;}
.x4{left:2878.332900px;}
.xe{left:2881.801500px;}
.x1a{left:2929.575300px;}
.x19{left:3074.863350px;}
.x1b{left:3197.408700px;}
.xd{left:3199.518450px;}
.x1e{left:3203.487750px;}
.x1f{left:3213.428700px;}
.x7{left:3220.759200px;}
.x27{left:3242.357550px;}
.x24{left:3249.938400px;}
.x25{left:3269.069400px;}
.x18{left:3322.600350px;}
.x23{left:3452.762250px;}
.x5{left:3458.877000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:1.755140pt;}
.lsf{letter-spacing:1.759280pt;}
.ls6{letter-spacing:1.920928pt;}
.ls10{letter-spacing:2.087679pt;}
.ls3{letter-spacing:2.238832pt;}
.lse{letter-spacing:2.269471pt;}
.ls5{letter-spacing:2.962721pt;}
.ls4{letter-spacing:3.059737pt;}
.ls0{letter-spacing:3.179088pt;}
.ls9{letter-spacing:3.731387pt;}
.lsb{letter-spacing:3.806014pt;}
.lsc{letter-spacing:3.820940pt;}
.ls8{letter-spacing:4.126914pt;}
.lsa{letter-spacing:4.373185pt;}
.ls7{letter-spacing:9.475312pt;}
.ls1{letter-spacing:21.353792pt;}
.ws1{word-spacing:-733.146859pt;}
.wsa{word-spacing:-325.319045pt;}
.ws3{word-spacing:-160.032000pt;}
.ws12{word-spacing:-127.971733pt;}
.ws16{word-spacing:-111.986667pt;}
.ws0{word-spacing:-109.148688pt;}
.wsd{word-spacing:-79.000919pt;}
.wsb{word-spacing:-78.754647pt;}
.wse{word-spacing:-78.448673pt;}
.wsc{word-spacing:-78.359120pt;}
.ws6{word-spacing:-77.687470pt;}
.ws7{word-spacing:-77.590454pt;}
.ws5{word-spacing:-76.866565pt;}
.ws4{word-spacing:-74.627733pt;}
.ws9{word-spacing:-65.951861pt;}
.ws13{word-spacing:-60.912138pt;}
.ws15{word-spacing:-60.730346pt;}
.ws14{word-spacing:-60.401947pt;}
.ws10{word-spacing:-60.259819pt;}
.ws8{word-spacing:-58.642667pt;}
.ws11{word-spacing:-58.625511pt;}
.wsf{word-spacing:-58.504679pt;}
.ws2{word-spacing:0.000000pt;}
._34{margin-left:-218.647222pt;}
._32{margin-left:-210.374835pt;}
._2f{margin-left:-173.071680pt;}
._36{margin-left:-143.620649pt;}
._35{margin-left:-137.909284pt;}
._2d{margin-left:-133.032679pt;}
._25{margin-left:-127.538485pt;}
._31{margin-left:-124.611610pt;}
._28{margin-left:-123.023206pt;}
._51{margin-left:-121.261848pt;}
._3f{margin-left:-116.983392pt;}
._30{margin-left:-103.266102pt;}
._2c{margin-left:-100.668262pt;}
._4b{margin-left:-97.293399pt;}
._4a{margin-left:-96.120862pt;}
._2e{margin-left:-93.941461pt;}
._49{margin-left:-92.947048pt;}
._33{margin-left:-89.997274pt;}
._2b{margin-left:-88.173813pt;}
._26{margin-left:-84.940553pt;}
._23{margin-left:-83.429200pt;}
._5{margin-left:-80.854805pt;}
._b{margin-left:-79.795109pt;}
._7{margin-left:-77.675717pt;}
._3e{margin-left:-76.335264pt;}
._1a{margin-left:-74.335819pt;}
._12{margin-left:-73.252586pt;}
._1d{margin-left:-71.911363pt;}
._15{margin-left:-70.933029pt;}
._13{margin-left:-69.778615pt;}
._2a{margin-left:-68.423119pt;}
._50{margin-left:-65.933184pt;}
._18{margin-left:-64.254126pt;}
._11{margin-left:-62.673704pt;}
._19{margin-left:-61.758821pt;}
._29{margin-left:-60.337463pt;}
._1b{margin-left:-59.355595pt;}
._1f{margin-left:-57.792311pt;}
._21{margin-left:-56.693736pt;}
._10{margin-left:-55.774738pt;}
._42{margin-left:-54.881804pt;}
._27{margin-left:-53.972238pt;}
._d{margin-left:-52.878830pt;}
._4{margin-left:-51.087944pt;}
._0{margin-left:-50.123621pt;}
._17{margin-left:-48.683326pt;}
._f{margin-left:-47.418244pt;}
._3{margin-left:-45.778867pt;}
._14{margin-left:-44.714759pt;}
._a{margin-left:-43.786639pt;}
._43{margin-left:-42.230742pt;}
._c{margin-left:-40.808893pt;}
._16{margin-left:-39.495536pt;}
._6{margin-left:-37.831147pt;}
._40{margin-left:-36.601251pt;}
._1e{margin-left:-35.650255pt;}
._1{margin-left:-34.228181pt;}
._9{margin-left:-33.168485pt;}
._8{margin-left:-32.193564pt;}
._3a{margin-left:-30.700793pt;}
._2{margin-left:-29.777458pt;}
._38{margin-left:-28.409649pt;}
._20{margin-left:-27.304358pt;}
._44{margin-left:-26.053772pt;}
._3d{margin-left:-24.510932pt;}
._39{margin-left:-22.897691pt;}
._37{margin-left:-21.353792pt;}
._3c{margin-left:-20.339482pt;}
._3b{margin-left:-19.135359pt;}
._22{margin-left:-17.590954pt;}
._e{margin-left:-15.546965pt;}
._1c{margin-left:-13.526788pt;}
._45{margin-left:-12.388204pt;}
._46{margin-left:-10.649023pt;}
._41{margin-left:-9.606714pt;}
._47{margin-left:-8.384255pt;}
._4f{margin-left:-7.380456pt;}
._4c{margin-left:-4.111988pt;}
._24{margin-left:-2.754341pt;}
._48{margin-left:-1.152987pt;}
._4e{width:1.763762pt;}
._4d{width:4.373185pt;}
.fsd{font-size:58.504679pt;}
.fs10{font-size:58.625511pt;}
.fs12{font-size:58.635734pt;}
.fs9{font-size:58.642667pt;}
.fse{font-size:58.678380pt;}
.fs11{font-size:58.688215pt;}
.fsc{font-size:58.694871pt;}
.fsf{font-size:58.709347pt;}
.fs6{font-size:64.030933pt;}
.fs8{font-size:74.627733pt;}
.fs1{font-size:97.168533pt;}
.fs0{font-size:105.969600pt;}
.fs13{font-size:106.688000pt;}
.fs14{font-size:111.986667pt;}
.fsa{font-size:127.971733pt;}
.fs7{font-size:160.032000pt;}
.fs2{font-size:168.294400pt;}
.fs3{font-size:288.452800pt;}
.fsb{font-size:315.843733pt;}
.fs5{font-size:385.083200pt;}
.fs4{font-size:711.793067pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:48.108347pt;}
.yc{bottom:49.572267pt;}
.y2d{bottom:70.496667pt;}
.yb{bottom:71.417333pt;}
.ybe{bottom:72.382667pt;}
.y71{bottom:74.582880pt;}
.ybd{bottom:76.145467pt;}
.y30{bottom:77.703600pt;}
.yc2{bottom:83.518400pt;}
.yd{bottom:83.832800pt;}
.y31{bottom:86.077867pt;}
.y6f{bottom:86.863733pt;}
.y1{bottom:87.986267pt;}
.y2c{bottom:98.717867pt;}
.ybc{bottom:109.741467pt;}
.y70{bottom:112.974400pt;}
.y2b{bottom:120.998000pt;}
.y5{bottom:128.533067pt;}
.y2a{bottom:142.447867pt;}
.y2f{bottom:148.700267pt;}
.y29{bottom:160.040667pt;}
.y4{bottom:165.460667pt;}
.y3{bottom:200.969573pt;}
.y2{bottom:230.120133pt;}
.y28{bottom:232.594400pt;}
.ybb{bottom:269.018667pt;}
.y9f{bottom:271.270933pt;}
.y8b{bottom:271.362533pt;}
.yc3{bottom:283.087200pt;}
.yba{bottom:286.611467pt;}
.y9e{bottom:288.863733pt;}
.y8a{bottom:288.955333pt;}
.yb9{bottom:304.204267pt;}
.yc0{bottom:304.550533pt;}
.y9d{bottom:306.456533pt;}
.y89{bottom:306.548133pt;}
.yb8{bottom:321.797067pt;}
.y9c{bottom:324.049333pt;}
.y87{bottom:324.140800pt;}
.y88{bottom:324.140933pt;}
.yb7{bottom:339.389467pt;}
.y9a{bottom:341.641867pt;}
.y9b{bottom:341.642133pt;}
.y86{bottom:341.733600pt;}
.yb6{bottom:374.575067pt;}
.y99{bottom:376.827467pt;}
.y85{bottom:376.919200pt;}
.yb5{bottom:392.167867pt;}
.y98{bottom:394.420267pt;}
.y84{bottom:394.512000pt;}
.yb4{bottom:409.760667pt;}
.y97{bottom:412.013067pt;}
.yb3{bottom:427.353467pt;}
.y96{bottom:429.605867pt;}
.y83{bottom:429.697200pt;}
.yb2{bottom:444.946267pt;}
.y95{bottom:447.198667pt;}
.y82{bottom:447.290000pt;}
.yb1{bottom:462.539067pt;}
.y81{bottom:464.882800pt;}
.yb0{bottom:480.131733pt;}
.y94{bottom:482.384267pt;}
.y80{bottom:482.475600pt;}
.y92{bottom:499.976667pt;}
.y93{bottom:499.977067pt;}
.y7f{bottom:500.068400pt;}
.yaf{bottom:515.317333pt;}
.y91{bottom:517.569467pt;}
.y7e{bottom:517.661200pt;}
.yae{bottom:532.910133pt;}
.y7d{bottom:535.254000pt;}
.yad{bottom:550.502933pt;}
.y90{bottom:552.755067pt;}
.y7c{bottom:552.846667pt;}
.yac{bottom:568.095467pt;}
.y8f{bottom:570.347867pt;}
.yab{bottom:585.688267pt;}
.y8e{bottom:587.940667pt;}
.y7a{bottom:588.032000pt;}
.y7b{bottom:588.032267pt;}
.yaa{bottom:603.281067pt;}
.y8d{bottom:605.533467pt;}
.y79{bottom:605.624800pt;}
.ya9{bottom:620.873867pt;}
.y78{bottom:623.217600pt;}
.ya8{bottom:638.466667pt;}
.y8c{bottom:640.719067pt;}
.y77{bottom:640.810400pt;}
.ya7{bottom:656.059467pt;}
.y76{bottom:658.403200pt;}
.ya6{bottom:673.652267pt;}
.y75{bottom:675.996000pt;}
.ya5{bottom:691.244800pt;}
.y74{bottom:693.588800pt;}
.y60{bottom:708.101973pt;}
.y73{bottom:711.181600pt;}
.y5f{bottom:725.667733pt;}
.ya4{bottom:726.430400pt;}
.y72{bottom:728.774400pt;}
.ya3{bottom:744.023200pt;}
.ya2{bottom:761.616000pt;}
.ya1{bottom:779.208800pt;}
.y58{bottom:784.170987pt;}
.y32{bottom:791.314933pt;}
.ya0{bottom:796.801600pt;}
.y57{bottom:801.709867pt;}
.y56{bottom:813.088133pt;}
.y55{bottom:813.088293pt;}
.y54{bottom:835.476613pt;}
.y53{bottom:857.864933pt;}
.y52{bottom:880.253253pt;}
.y51{bottom:902.641573pt;}
.y8{bottom:924.694693pt;}
.y50{bottom:925.029893pt;}
.y6c{bottom:940.579467pt;}
.y4f{bottom:947.418213pt;}
.y6b{bottom:958.172267pt;}
.y4e{bottom:969.806533pt;}
.y4d{bottom:969.806613pt;}
.y7{bottom:975.183013pt;}
.y4c{bottom:1014.583253pt;}
.y6{bottom:1025.671333pt;}
.y4b{bottom:1036.971573pt;}
.y4a{bottom:1059.359893pt;}
.ya{bottom:1060.527333pt;}
.y49{bottom:1081.748213pt;}
.y5a{bottom:1086.687573pt;}
.y48{bottom:1104.136533pt;}
.y59{bottom:1104.172533pt;}
.y66{bottom:1114.037467pt;}
.y65{bottom:1131.630267pt;}
.y47{bottom:1148.913280pt;}
.y46{bottom:1171.301600pt;}
.y45{bottom:1193.689920pt;}
.y44{bottom:1216.078240pt;}
.y9{bottom:1227.194133pt;}
.y43{bottom:1238.466560pt;}
.y42{bottom:1260.854880pt;}
.y5c{bottom:1276.754800pt;}
.y41{bottom:1283.243200pt;}
.y5b{bottom:1294.266800pt;}
.y40{bottom:1305.631680pt;}
.y68{bottom:1324.899200pt;}
.y3f{bottom:1328.020000pt;}
.y67{bottom:1342.492000pt;}
.y6a{bottom:1348.899467pt;}
.y3e{bottom:1350.408320pt;}
.y5e{bottom:1363.986667pt;}
.y69{bottom:1366.492267pt;}
.y3d{bottom:1372.796640pt;}
.y5d{bottom:1381.579467pt;}
.y3c{bottom:1395.184960pt;}
.y3b{bottom:1417.573280pt;}
.y3a{bottom:1439.961600pt;}
.y64{bottom:1453.073067pt;}
.y63{bottom:1470.665867pt;}
.y39{bottom:1484.738347pt;}
.y38{bottom:1507.126667pt;}
.y37{bottom:1529.514987pt;}
.ybf{bottom:1544.283333pt;}
.yc1{bottom:1544.373200pt;}
.y36{bottom:1551.903307pt;}
.y35{bottom:1574.291627pt;}
.y62{bottom:1583.806400pt;}
.y27{bottom:1592.167333pt;}
.y34{bottom:1596.679947pt;}
.y61{bottom:1601.399200pt;}
.y26{bottom:1614.555653pt;}
.y33{bottom:1619.068267pt;}
.y25{bottom:1636.943973pt;}
.y24{bottom:1659.332293pt;}
.y6d{bottom:1676.251467pt;}
.y23{bottom:1681.720613pt;}
.y22{bottom:1704.108933pt;}
.y21{bottom:1726.497360pt;}
.y6e{bottom:1741.113067pt;}
.y20{bottom:1748.885680pt;}
.y1f{bottom:1771.274000pt;}
.y1e{bottom:1793.662320pt;}
.y1d{bottom:1816.050640pt;}
.y1c{bottom:1860.827280pt;}
.y1b{bottom:1883.215600pt;}
.y1a{bottom:1883.215760pt;}
.y19{bottom:1905.604080pt;}
.y18{bottom:1927.992400pt;}
.y17{bottom:1950.380720pt;}
.y16{bottom:1972.769040pt;}
.y15{bottom:1995.157360pt;}
.y14{bottom:2017.545680pt;}
.y13{bottom:2039.934000pt;}
.y12{bottom:2084.710720pt;}
.y11{bottom:2107.099040pt;}
.y10{bottom:2129.487360pt;}
.yf{bottom:2151.875680pt;}
.ye{bottom:2174.264000pt;}
.h18{height:42.742010pt;}
.h1b{height:46.759509pt;}
.h14{height:48.500379pt;}
.he{height:48.614771pt;}
.h16{height:48.644377pt;}
.h12{height:48.658048pt;}
.h15{height:51.484117pt;}
.h1a{height:51.590449pt;}
.h1d{height:51.599446pt;}
.hd{height:51.605547pt;}
.h17{height:51.636974pt;}
.h1c{height:51.645629pt;}
.h13{height:51.651486pt;}
.h19{height:51.664225pt;}
.h9{height:53.081644pt;}
.hf{height:56.347221pt;}
.hb{height:61.866391pt;}
.hc{height:65.672405pt;}
.h3{height:80.552714pt;}
.h2{height:87.848798pt;}
.h1e{height:88.444352pt;}
.h1f{height:92.836947pt;}
.h4{height:93.253248pt;}
.h10{height:106.088567pt;}
.ha{height:132.666528pt;}
.h5{height:139.516058pt;}
.h20{height:140.828160pt;}
.h6{height:239.127371pt;}
.h11{height:277.942485pt;}
.h8{height:319.233973pt;}
.h7{height:626.377899pt;}
.h0{height:2245.120000pt;}
.h1{height:2245.333333pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x26{left:34.137733pt;}
.xa{left:35.568133pt;}
.x9{left:43.005867pt;}
.x22{left:87.124267pt;}
.x1{left:92.909333pt;}
.xb{left:170.275467pt;}
.xc{left:252.790800pt;}
.x15{left:327.391600pt;}
.x13{left:407.110000pt;}
.x14{left:408.902640pt;}
.xf{left:469.950133pt;}
.x10{left:471.513973pt;}
.x6{left:514.036667pt;}
.x20{left:550.304133pt;}
.x1c{left:671.693333pt;}
.x11{left:755.893333pt;}
.x12{left:757.419093pt;}
.x21{left:1012.752800pt;}
.x17{left:1399.678800pt;}
.x16{left:1519.542267pt;}
.x2{left:1968.704667pt;}
.x1d{left:2196.130533pt;}
.x8{left:2335.669333pt;}
.x3{left:2362.083200pt;}
.x4{left:2558.518133pt;}
.xe{left:2561.601333pt;}
.x1a{left:2604.066933pt;}
.x19{left:2733.211867pt;}
.x1b{left:2842.141067pt;}
.xd{left:2844.016400pt;}
.x1e{left:2847.544667pt;}
.x1f{left:2856.381067pt;}
.x7{left:2862.897067pt;}
.x27{left:2882.095600pt;}
.x24{left:2888.834133pt;}
.x25{left:2905.839467pt;}
.x18{left:2953.422533pt;}
.x23{left:3069.122000pt;}
.x5{left:3074.557333pt;}
}




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