
    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_da4666285566a086462de221.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_49b4684cfd22ff817cfb9980.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd0521df34757ad9bcf1766c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_bc678edacba477ecf51c3d49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_074a7a651392e0a68602804c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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_938418fd6c608f2bcfe5580b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_074a7a651392e0a68602804c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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_571e2f613cb1ea8acfdc17a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_ec011d01985d5f99c38da5c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_074a7a651392e0a68602804c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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_72623ef46520e3b4a93e2767.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_7e9acc31117359e490ea8599.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_074a7a651392e0a68602804c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.717285;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_330e1c8050af611fbdf94aa1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.888000;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_18cd8612c81b0b7ec0dd00c9.woff2')format("woff");}.fff{font-family:fff;line-height:0.871094;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_074a7a651392e0a68602804c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.717285;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_f9fac6f8e70c6a3a1d0423b9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.888000;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_b8245f6474a7eac63b5f12c1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;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_074a7a651392e0a68602804c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.717285;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_7a0835abc9c62dcf62f6dd2c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d08fbeba0decb962a2332ae4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2a4aabe4a98705278f23158e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_074a7a651392e0a68602804c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_da7eab7667d6edeb30a10e15.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f2113f05bb9d19969524f134.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.888000;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-6.717600px;}
.lsd{letter-spacing:-2.894400px;}
.ls9{letter-spacing:-2.678400px;}
.ls11{letter-spacing:-2.316000px;}
.ls10{letter-spacing:-0.048000px;}
.lsc{letter-spacing:-0.024000px;}
.lse{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.019200px;}
.ls12{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000480px;}
.ls6{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.057600px;}
.ls13{letter-spacing:0.060000px;}
.ls4{letter-spacing:74.935380px;}
.ls3{letter-spacing:162.969000px;}
.ls2{letter-spacing:404.330400px;}
.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;}
}
.ws2{word-spacing:-48.816000px;}
.ws0{word-spacing:-27.156000px;}
.ws1{word-spacing:-27.120000px;}
.ws4{word-spacing:-0.168000px;}
.ws3{word-spacing:-0.120000px;}
.ws5{word-spacing:-0.108000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-18.866400px;}
._6{margin-left:-14.649600px;}
._3{margin-left:-13.624800px;}
._4{margin-left:-11.071200px;}
._51{margin-left:-9.115200px;}
._50{margin-left:-7.840800px;}
._a3{margin-left:-6.507000px;}
._8{margin-left:-5.184000px;}
._4f{margin-left:-4.147200px;}
._2{margin-left:-3.007200px;}
._0{margin-left:-1.932000px;}
._7{width:1.041600px;}
._9{width:2.808000px;}
._53{width:3.888000px;}
._52{width:6.696000px;}
._5{width:30.217800px;}
._3b{width:64.176000px;}
._6e{width:69.444000px;}
._2d{width:74.484000px;}
._3e{width:90.600000px;}
._a{width:99.912000px;}
._12{width:102.312000px;}
._23{width:104.424000px;}
._6c{width:112.572000px;}
._1b{width:114.684000px;}
._1d{width:116.784000px;}
._1e{width:120.540000px;}
._78{width:122.772000px;}
._7d{width:126.336000px;}
._91{width:139.234800px;}
._83{width:151.428000px;}
._39{width:157.452000px;}
._35{width:158.616000px;}
._f{width:162.972000px;}
._58{width:171.348000px;}
._2a{width:172.452000px;}
._63{width:177.324000px;}
._94{width:178.728000px;}
._e{width:183.588000px;}
._96{width:184.692000px;}
._16{width:196.008000px;}
._41{width:199.536000px;}
._24{width:207.504000px;}
._9d{width:210.132000px;}
._33{width:211.536000px;}
._98{width:213.996000px;}
._5b{width:216.516000px;}
._57{width:220.032000px;}
._8e{width:221.924400px;}
._22{width:223.788000px;}
._44{width:225.780000px;}
._4d{width:226.956000px;}
._c{width:229.584000px;}
._5c{width:231.288000px;}
._97{width:235.668000px;}
._69{width:240.060000px;}
._a0{width:243.300000px;}
._67{width:246.564000px;}
._1f{width:248.256000px;}
._87{width:249.972000px;}
._d{width:256.416000px;}
._2e{width:261.576000px;}
._92{width:266.484000px;}
._66{width:268.776000px;}
._30{width:271.596000px;}
._3d{width:273.000000px;}
._82{width:274.404000px;}
._3a{width:276.636000px;}
._9e{width:280.200000px;}
._5f{width:286.704000px;}
._11{width:290.304000px;}
._38{width:292.140000px;}
._74{width:296.088000px;}
._43{width:297.432000px;}
._31{width:298.896000px;}
._20{width:301.896000px;}
._45{width:303.900000px;}
._72{width:307.608000px;}
._8a{width:309.564000px;}
._13{width:312.564000px;}
._90{width:315.516000px;}
._26{width:318.012000px;}
._42{width:320.520000px;}
._21{width:321.756000px;}
._9a{width:324.216000px;}
._36{width:325.392000px;}
._8f{width:328.476000px;}
._4a{width:329.952000px;}
._6f{width:335.808000px;}
._40{width:337.164000px;}
._7c{width:343.020000px;}
._54{width:349.116000px;}
._37{width:352.944000px;}
._9c{width:354.696000px;}
._77{width:356.400000px;}
._73{width:357.732000px;}
._47{width:361.596000px;}
._8c{width:365.856000px;}
._9b{width:369.156000px;}
._88{width:370.560000px;}
._89{width:376.644000px;}
._1a{width:377.940000px;}
._8d{width:379.788000px;}
._95{width:380.868000px;}
._a1{width:383.388000px;}
._4c{width:385.920000px;}
._32{width:388.788000px;}
._2b{width:400.500000px;}
._76{width:401.736000px;}
._27{width:404.964000px;}
._15{width:406.008000px;}
._65{width:409.440000px;}
._59{width:413.592000px;}
._3f{width:421.248000px;}
._56{width:424.104000px;}
._6b{width:425.892000px;}
._75{width:431.916000px;}
._84{width:434.592000px;}
._4b{width:440.304000px;}
._18{width:441.756000px;}
._14{width:444.396000px;}
._9f{width:445.680000px;}
._79{width:449.196000px;}
._17{width:459.516000px;}
._5d{width:464.892000px;}
._25{width:473.796000px;}
._55{width:478.512000px;}
._71{width:481.428000px;}
._99{width:483.048000px;}
._93{width:489.972000px;}
._19{width:493.440000px;}
._5e{width:496.380000px;}
._68{width:498.228000px;}
._85{width:501.756000px;}
._34{width:509.364000px;}
._49{width:514.836000px;}
._7b{width:522.792000px;}
._3c{width:525.780000px;}
._b{width:542.064000px;}
._2f{width:544.872000px;}
._7e{width:547.224000px;}
._2c{width:558.012000px;}
._10{width:569.436000px;}
._6a{width:571.728000px;}
._28{width:575.388000px;}
._62{width:578.616000px;}
._46{width:580.284000px;}
._29{width:591.480000px;}
._4e{width:602.664000px;}
._7f{width:604.572000px;}
._64{width:614.844000px;}
._61{width:621.684000px;}
._a2{width:627.900000px;}
._8b{width:648.756000px;}
._80{width:656.688000px;}
._48{width:679.068000px;}
._1c{width:681.456000px;}
._86{width:683.220000px;}
._6d{width:688.488000px;}
._70{width:718.140000px;}
._7a{width:757.464000px;}
._5a{width:924.636000px;}
._60{width:1228.740000px;}
._81{width:1236.216000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fs6{font-size:132.000000px;}
.fs4{font-size:144.000000px;}
.fs0{font-size:168.000000px;}
.fs2{font-size:216.000000px;}
.fs1{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:6.192000px;}
.y4f{bottom:6.243000px;}
.y47{bottom:6.316350px;}
.y53{bottom:6.906000px;}
.y51{bottom:7.185000px;}
.y4b{bottom:7.236000px;}
.y49{bottom:7.409400px;}
.y28{bottom:16.800000px;}
.y1e{bottom:18.300000px;}
.y59{bottom:21.621150px;}
.y5c{bottom:23.782500px;}
.y2a{bottom:38.917500px;}
.y45{bottom:39.228840px;}
.y58{bottom:57.621150px;}
.y27{bottom:63.300000px;}
.y1d{bottom:64.800000px;}
.y26{bottom:109.800000px;}
.y1c{bottom:111.300000px;}
.ya8{bottom:121.520700px;}
.y6d{bottom:123.322590px;}
.y8f{bottom:142.836480px;}
.yf{bottom:155.019750px;}
.y25{bottom:156.300000px;}
.y1b{bottom:157.800000px;}
.y1f{bottom:159.506100px;}
.ya7{bottom:168.621300px;}
.y6c{bottom:169.822650px;}
.y9c{bottom:175.704900px;}
.y8e{bottom:184.712250px;}
.y24{bottom:202.800000px;}
.y1a{bottom:204.300000px;}
.ya6{bottom:215.721915px;}
.y6b{bottom:216.322650px;}
.y9b{bottom:222.805500px;}
.ya{bottom:223.398600px;}
.y8d{bottom:226.588050px;}
.y23{bottom:249.300000px;}
.y19{bottom:250.800000px;}
.ye{bottom:257.019750px;}
.y42{bottom:261.521400px;}
.ya5{bottom:262.822500px;}
.y6a{bottom:262.822650px;}
.y8c{bottom:268.463850px;}
.y9a{bottom:269.305500px;}
.y22{bottom:295.800000px;}
.y56{bottom:303.409950px;}
.yd{bottom:308.019750px;}
.y41{bottom:308.021400px;}
.ya4{bottom:309.322500px;}
.y69{bottom:309.322650px;}
.y8b{bottom:310.339650px;}
.y99{bottom:315.805500px;}
.y9{bottom:325.398600px;}
.y55{bottom:328.112700px;}
.y21{bottom:342.300000px;}
.y8a{bottom:352.215450px;}
.y40{bottom:354.521400px;}
.y98{bottom:362.305500px;}
.y8{bottom:376.398600px;}
.y20{bottom:388.800000px;}
.y3f{bottom:401.021400px;}
.y68{bottom:408.395250px;}
.y97{bottom:408.805500px;}
.y89{bottom:435.966900px;}
.y3e{bottom:447.521400px;}
.y67{bottom:450.271050px;}
.y96{bottom:455.305500px;}
.y88{bottom:477.842700px;}
.y66{bottom:492.146850px;}
.y3d{bottom:494.021400px;}
.y95{bottom:501.805500px;}
.y87{bottom:519.718500px;}
.y44{bottom:547.888500px;}
.y94{bottom:548.305500px;}
.y86{bottom:561.594300px;}
.y3c{bottom:587.021400px;}
.y85{bottom:603.470100px;}
.y3b{bottom:633.521400px;}
.y84{bottom:645.345900px;}
.y43{bottom:666.538350px;}
.y65{bottom:667.857900px;}
.y3a{bottom:680.021400px;}
.y64{bottom:709.733700px;}
.y39{bottom:726.521400px;}
.y83{bottom:729.097500px;}
.y63{bottom:751.609350px;}
.y82{bottom:770.973150px;}
.y38{bottom:773.021400px;}
.y62{bottom:793.485150px;}
.y81{bottom:812.848950px;}
.y37{bottom:819.521400px;}
.y61{bottom:835.360950px;}
.y80{bottom:854.724750px;}
.y36{bottom:866.021400px;}
.y7f{bottom:896.600550px;}
.y35{bottom:912.521400px;}
.y93{bottom:919.112100px;}
.y60{bottom:919.112550px;}
.y7e{bottom:938.476350px;}
.y34{bottom:959.021400px;}
.y92{bottom:960.987900px;}
.y5f{bottom:960.988350px;}
.y91{bottom:1002.863700px;}
.y5e{bottom:1002.864150px;}
.y33{bottom:1005.521400px;}
.ya3{bottom:1021.626750px;}
.yac{bottom:1021.627500px;}
.y90{bottom:1044.739500px;}
.y5d{bottom:1044.739950px;}
.y32{bottom:1052.021400px;}
.ya2{bottom:1063.502550px;}
.y7d{bottom:1064.103750px;}
.y7{bottom:1076.246400px;}
.y57{bottom:1097.786550px;}
.y31{bottom:1098.521400px;}
.y5a{bottom:1102.473750px;}
.ya1{bottom:1105.378350px;}
.y7c{bottom:1105.979550px;}
.yb{bottom:1119.746400px;}
.y18{bottom:1123.450650px;}
.y30{bottom:1145.021400px;}
.ya0{bottom:1147.254015px;}
.y7b{bottom:1147.855200px;}
.y54{bottom:1176.064800px;}
.yc{bottom:1188.125250px;}
.y9f{bottom:1189.129815px;}
.y7a{bottom:1189.731000px;}
.y9e{bottom:1231.005615px;}
.y79{bottom:1231.606800px;}
.y2f{bottom:1238.021400px;}
.yb1{bottom:1238.022000px;}
.y48{bottom:1264.500000px;}
.y9d{bottom:1272.881415px;}
.y78{bottom:1273.482600px;}
.y2e{bottom:1284.521400px;}
.yb0{bottom:1284.522000px;}
.y46{bottom:1285.500000px;}
.y2d{bottom:1331.021400px;}
.yaf{bottom:1331.022000px;}
.y77{bottom:1357.234200px;}
.y2c{bottom:1377.521400px;}
.yae{bottom:1377.522000px;}
.y76{bottom:1399.110000px;}
.y2b{bottom:1424.021400px;}
.yad{bottom:1424.022000px;}
.y75{bottom:1440.985800px;}
.y74{bottom:1482.861450px;}
.y17{bottom:1517.022000px;}
.y73{bottom:1524.738000px;}
.y4e{bottom:1551.000000px;}
.y16{bottom:1563.522000px;}
.y72{bottom:1566.613500px;}
.y4c{bottom:1597.500000px;}
.y15{bottom:1610.022000px;}
.y4a{bottom:1623.000000px;}
.yb2{bottom:1649.164500px;}
.yab{bottom:1649.164830px;}
.y71{bottom:1650.364500px;}
.y14{bottom:1656.522000px;}
.y50{bottom:1669.500000px;}
.yaa{bottom:1691.040330px;}
.y70{bottom:1692.240000px;}
.y13{bottom:1703.022000px;}
.y52{bottom:1729.500000px;}
.ya9{bottom:1733.516415px;}
.y6f{bottom:1734.115500px;}
.y12{bottom:1749.522000px;}
.y6e{bottom:1775.992500px;}
.y5b{bottom:1777.311000px;}
.y11{bottom:1796.022000px;}
.y29{bottom:1837.330500px;}
.y10{bottom:1876.248000px;}
.y4{bottom:2018.712000px;}
.y3{bottom:2094.912000px;}
.y2{bottom:2145.912000px;}
.y1{bottom:2196.912000px;}
.y6{bottom:2316.876000px;}
.y5{bottom:2399.376000px;}
.hf{height:25.500000px;}
.h11{height:27.000000px;}
.h15{height:58.500000px;}
.h13{height:68.906250px;}
.h10{height:69.703125px;}
.h19{height:79.056000px;}
.h18{height:83.144531px;}
.h17{height:86.074219px;}
.h9{height:86.132812px;}
.h14{height:87.000000px;}
.h8{height:87.128906px;}
.hd{height:93.000000px;}
.h16{height:95.841797px;}
.hb{height:103.359375px;}
.h4{height:120.585938px;}
.h1{height:121.980469px;}
.h7{height:156.832031px;}
.h2{height:209.671875px;}
.ha{height:295.500000px;}
.he{height:387.000000px;}
.hc{height:433.500000px;}
.h12{height:620.616000px;}
.h6{height:738.769800px;}
.h5{height:807.148800px;}
.h3{height:850.648800px;}
.h0{height:2592.000000px;}
.wa{width:43.500000px;}
.w9{width:45.000000px;}
.wf{width:212.690400px;}
.wc{width:221.075850px;}
.wd{width:284.582100px;}
.we{width:308.199900px;}
.w7{width:662.182050px;}
.w8{width:670.387050px;}
.w6{width:671.915250px;}
.w5{width:674.915250px;}
.w3{width:728.426550px;}
.w1{width:732.370050px;}
.w2{width:732.747000px;}
.w10{width:1118.082600px;}
.wb{width:1365.145650px;}
.w4{width:1467.373350px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x28{left:1.672500px;}
.x24{left:7.500000px;}
.xa{left:9.000000px;}
.x16{left:13.500000px;}
.x12{left:33.075000px;}
.x3{left:42.519615px;}
.x14{left:53.394000px;}
.x13{left:60.381000px;}
.xe{left:93.120000px;}
.x2{left:110.345835px;}
.x11{left:113.514000px;}
.x15{left:118.354725px;}
.x26{left:120.583335px;}
.xd{left:131.562000px;}
.x10{left:135.729000px;}
.x1{left:137.231445px;}
.xc{left:157.362000px;}
.xf{left:162.555000px;}
.x1f{left:181.826250px;}
.x17{left:183.029250px;}
.x1b{left:201.734250px;}
.x21{left:230.930250px;}
.x19{left:236.591250px;}
.x20{left:241.079250px;}
.x1c{left:252.740250px;}
.x1e{left:256.814250px;}
.x18{left:281.000250px;}
.x1d{left:283.799250px;}
.x1a{left:532.184250px;}
.x4{left:844.595100px;}
.x9{left:858.384900px;}
.xb{left:859.884900px;}
.x23{left:861.413100px;}
.x7{left:863.097900px;}
.x8{left:867.384750px;}
.x31{left:1282.039500px;}
.x5{left:1581.222000px;}
.x22{left:1606.101000px;}
.x44{left:1610.160000px;}
.x46{left:1638.300000px;}
.x41{left:1691.022000px;}
.x45{left:1702.446000px;}
.x47{left:1709.466000px;}
.x48{left:1722.615000px;}
.x43{left:1731.042000px;}
.x42{left:1754.004000px;}
.x40{left:1850.295405px;}
.x49{left:2086.465500px;}
.x6{left:2313.847500px;}
.x25{left:2342.833500px;}
.x30{left:2351.859000px;}
.x3f{left:2383.573500px;}
.x39{left:2388.727500px;}
.x3a{left:2394.877500px;}
.x37{left:2400.724500px;}
.x3d{left:2409.499500px;}
.x3e{left:2411.431500px;}
.x32{left:2412.768000px;}
.x36{left:2430.768000px;}
.x2f{left:2455.500000px;}
.x38{left:2473.969500px;}
.x3b{left:2479.999500px;}
.x3c{left:2487.901500px;}
.x2b{left:2544.000000px;}
.x33{left:2704.020000px;}
.x2e{left:2764.500000px;}
.x2a{left:2853.000000px;}
.x34{left:3007.027500px;}
.x2d{left:3073.500000px;}
.x29{left:3162.000000px;}
.x35{left:3368.775000px;}
.x2c{left:3382.500000px;}
.x27{left:3471.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-5.971200pt;}
.lsd{letter-spacing:-2.572800pt;}
.ls9{letter-spacing:-2.380800pt;}
.ls11{letter-spacing:-2.058667pt;}
.ls10{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:-0.021333pt;}
.lse{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.017067pt;}
.ls12{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000427pt;}
.ls6{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.051200pt;}
.ls13{letter-spacing:0.053333pt;}
.ls4{letter-spacing:66.609227pt;}
.ls3{letter-spacing:144.861333pt;}
.ls2{letter-spacing:359.404800pt;}
.ws2{word-spacing:-43.392000pt;}
.ws0{word-spacing:-24.138667pt;}
.ws1{word-spacing:-24.106667pt;}
.ws4{word-spacing:-0.149333pt;}
.ws3{word-spacing:-0.106667pt;}
.ws5{word-spacing:-0.096000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-16.770133pt;}
._6{margin-left:-13.021867pt;}
._3{margin-left:-12.110933pt;}
._4{margin-left:-9.841067pt;}
._51{margin-left:-8.102400pt;}
._50{margin-left:-6.969600pt;}
._a3{margin-left:-5.784000pt;}
._8{margin-left:-4.608000pt;}
._4f{margin-left:-3.686400pt;}
._2{margin-left:-2.673067pt;}
._0{margin-left:-1.717333pt;}
._7{width:0.925867pt;}
._9{width:2.496000pt;}
._53{width:3.456000pt;}
._52{width:5.952000pt;}
._5{width:26.860267pt;}
._3b{width:57.045333pt;}
._6e{width:61.728000pt;}
._2d{width:66.208000pt;}
._3e{width:80.533333pt;}
._a{width:88.810667pt;}
._12{width:90.944000pt;}
._23{width:92.821333pt;}
._6c{width:100.064000pt;}
._1b{width:101.941333pt;}
._1d{width:103.808000pt;}
._1e{width:107.146667pt;}
._78{width:109.130667pt;}
._7d{width:112.298667pt;}
._91{width:123.764267pt;}
._83{width:134.602667pt;}
._39{width:139.957333pt;}
._35{width:140.992000pt;}
._f{width:144.864000pt;}
._58{width:152.309333pt;}
._2a{width:153.290667pt;}
._63{width:157.621333pt;}
._94{width:158.869333pt;}
._e{width:163.189333pt;}
._96{width:164.170667pt;}
._16{width:174.229333pt;}
._41{width:177.365333pt;}
._24{width:184.448000pt;}
._9d{width:186.784000pt;}
._33{width:188.032000pt;}
._98{width:190.218667pt;}
._5b{width:192.458667pt;}
._57{width:195.584000pt;}
._8e{width:197.266133pt;}
._22{width:198.922667pt;}
._44{width:200.693333pt;}
._4d{width:201.738667pt;}
._c{width:204.074667pt;}
._5c{width:205.589333pt;}
._97{width:209.482667pt;}
._69{width:213.386667pt;}
._a0{width:216.266667pt;}
._67{width:219.168000pt;}
._1f{width:220.672000pt;}
._87{width:222.197333pt;}
._d{width:227.925333pt;}
._2e{width:232.512000pt;}
._92{width:236.874667pt;}
._66{width:238.912000pt;}
._30{width:241.418667pt;}
._3d{width:242.666667pt;}
._82{width:243.914667pt;}
._3a{width:245.898667pt;}
._9e{width:249.066667pt;}
._5f{width:254.848000pt;}
._11{width:258.048000pt;}
._38{width:259.680000pt;}
._74{width:263.189333pt;}
._43{width:264.384000pt;}
._31{width:265.685333pt;}
._20{width:268.352000pt;}
._45{width:270.133333pt;}
._72{width:273.429333pt;}
._8a{width:275.168000pt;}
._13{width:277.834667pt;}
._90{width:280.458667pt;}
._26{width:282.677333pt;}
._42{width:284.906667pt;}
._21{width:286.005333pt;}
._9a{width:288.192000pt;}
._36{width:289.237333pt;}
._8f{width:291.978667pt;}
._4a{width:293.290667pt;}
._6f{width:298.496000pt;}
._40{width:299.701333pt;}
._7c{width:304.906667pt;}
._54{width:310.325333pt;}
._37{width:313.728000pt;}
._9c{width:315.285333pt;}
._77{width:316.800000pt;}
._73{width:317.984000pt;}
._47{width:321.418667pt;}
._8c{width:325.205333pt;}
._9b{width:328.138667pt;}
._88{width:329.386667pt;}
._89{width:334.794667pt;}
._1a{width:335.946667pt;}
._8d{width:337.589333pt;}
._95{width:338.549333pt;}
._a1{width:340.789333pt;}
._4c{width:343.040000pt;}
._32{width:345.589333pt;}
._2b{width:356.000000pt;}
._76{width:357.098667pt;}
._27{width:359.968000pt;}
._15{width:360.896000pt;}
._65{width:363.946667pt;}
._59{width:367.637333pt;}
._3f{width:374.442667pt;}
._56{width:376.981333pt;}
._6b{width:378.570667pt;}
._75{width:383.925333pt;}
._84{width:386.304000pt;}
._4b{width:391.381333pt;}
._18{width:392.672000pt;}
._14{width:395.018667pt;}
._9f{width:396.160000pt;}
._79{width:399.285333pt;}
._17{width:408.458667pt;}
._5d{width:413.237333pt;}
._25{width:421.152000pt;}
._55{width:425.344000pt;}
._71{width:427.936000pt;}
._99{width:429.376000pt;}
._93{width:435.530667pt;}
._19{width:438.613333pt;}
._5e{width:441.226667pt;}
._68{width:442.869333pt;}
._85{width:446.005333pt;}
._34{width:452.768000pt;}
._49{width:457.632000pt;}
._7b{width:464.704000pt;}
._3c{width:467.360000pt;}
._b{width:481.834667pt;}
._2f{width:484.330667pt;}
._7e{width:486.421333pt;}
._2c{width:496.010667pt;}
._10{width:506.165333pt;}
._6a{width:508.202667pt;}
._28{width:511.456000pt;}
._62{width:514.325333pt;}
._46{width:515.808000pt;}
._29{width:525.760000pt;}
._4e{width:535.701333pt;}
._7f{width:537.397333pt;}
._64{width:546.528000pt;}
._61{width:552.608000pt;}
._a2{width:558.133333pt;}
._8b{width:576.672000pt;}
._80{width:583.722667pt;}
._48{width:603.616000pt;}
._1c{width:605.738667pt;}
._86{width:607.306667pt;}
._6d{width:611.989333pt;}
._70{width:638.346667pt;}
._7a{width:673.301333pt;}
._5a{width:821.898667pt;}
._60{width:1092.213333pt;}
._81{width:1098.858667pt;}
.fs5{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fs6{font-size:117.333333pt;}
.fs4{font-size:128.000000pt;}
.fs0{font-size:149.333333pt;}
.fs2{font-size:192.000000pt;}
.fs1{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:5.504000pt;}
.y4f{bottom:5.549333pt;}
.y47{bottom:5.614533pt;}
.y53{bottom:6.138667pt;}
.y51{bottom:6.386667pt;}
.y4b{bottom:6.432000pt;}
.y49{bottom:6.586133pt;}
.y28{bottom:14.933333pt;}
.y1e{bottom:16.266667pt;}
.y59{bottom:19.218800pt;}
.y5c{bottom:21.140000pt;}
.y2a{bottom:34.593333pt;}
.y45{bottom:34.870080pt;}
.y58{bottom:51.218800pt;}
.y27{bottom:56.266667pt;}
.y1d{bottom:57.600000pt;}
.y26{bottom:97.600000pt;}
.y1c{bottom:98.933333pt;}
.ya8{bottom:108.018400pt;}
.y6d{bottom:109.620080pt;}
.y8f{bottom:126.965760pt;}
.yf{bottom:137.795333pt;}
.y25{bottom:138.933333pt;}
.y1b{bottom:140.266667pt;}
.y1f{bottom:141.783200pt;}
.ya7{bottom:149.885600pt;}
.y6c{bottom:150.953467pt;}
.y9c{bottom:156.182133pt;}
.y8e{bottom:164.188667pt;}
.y24{bottom:180.266667pt;}
.y1a{bottom:181.600000pt;}
.ya6{bottom:191.752813pt;}
.y6b{bottom:192.286800pt;}
.y9b{bottom:198.049333pt;}
.ya{bottom:198.576533pt;}
.y8d{bottom:201.411600pt;}
.y23{bottom:221.600000pt;}
.y19{bottom:222.933333pt;}
.ye{bottom:228.462000pt;}
.y42{bottom:232.463467pt;}
.ya5{bottom:233.620000pt;}
.y6a{bottom:233.620133pt;}
.y8c{bottom:238.634533pt;}
.y9a{bottom:239.382667pt;}
.y22{bottom:262.933333pt;}
.y56{bottom:269.697733pt;}
.yd{bottom:273.795333pt;}
.y41{bottom:273.796800pt;}
.ya4{bottom:274.953333pt;}
.y69{bottom:274.953467pt;}
.y8b{bottom:275.857467pt;}
.y99{bottom:280.716000pt;}
.y9{bottom:289.243200pt;}
.y55{bottom:291.655733pt;}
.y21{bottom:304.266667pt;}
.y8a{bottom:313.080400pt;}
.y40{bottom:315.130133pt;}
.y98{bottom:322.049333pt;}
.y8{bottom:334.576533pt;}
.y20{bottom:345.600000pt;}
.y3f{bottom:356.463467pt;}
.y68{bottom:363.018000pt;}
.y97{bottom:363.382667pt;}
.y89{bottom:387.526133pt;}
.y3e{bottom:397.796800pt;}
.y67{bottom:400.240933pt;}
.y96{bottom:404.716000pt;}
.y88{bottom:424.749067pt;}
.y66{bottom:437.463867pt;}
.y3d{bottom:439.130133pt;}
.y95{bottom:446.049333pt;}
.y87{bottom:461.972000pt;}
.y44{bottom:487.012000pt;}
.y94{bottom:487.382667pt;}
.y86{bottom:499.194933pt;}
.y3c{bottom:521.796800pt;}
.y85{bottom:536.417867pt;}
.y3b{bottom:563.130133pt;}
.y84{bottom:573.640800pt;}
.y43{bottom:592.478533pt;}
.y65{bottom:593.651467pt;}
.y3a{bottom:604.463467pt;}
.y64{bottom:630.874400pt;}
.y39{bottom:645.796800pt;}
.y83{bottom:648.086667pt;}
.y63{bottom:668.097200pt;}
.y82{bottom:685.309467pt;}
.y38{bottom:687.130133pt;}
.y62{bottom:705.320133pt;}
.y81{bottom:722.532400pt;}
.y37{bottom:728.463467pt;}
.y61{bottom:742.543067pt;}
.y80{bottom:759.755333pt;}
.y36{bottom:769.796800pt;}
.y7f{bottom:796.978267pt;}
.y35{bottom:811.130133pt;}
.y93{bottom:816.988533pt;}
.y60{bottom:816.988933pt;}
.y7e{bottom:834.201200pt;}
.y34{bottom:852.463467pt;}
.y92{bottom:854.211467pt;}
.y5f{bottom:854.211867pt;}
.y91{bottom:891.434400pt;}
.y5e{bottom:891.434800pt;}
.y33{bottom:893.796800pt;}
.ya3{bottom:908.112667pt;}
.yac{bottom:908.113333pt;}
.y90{bottom:928.657333pt;}
.y5d{bottom:928.657733pt;}
.y32{bottom:935.130133pt;}
.ya2{bottom:945.335600pt;}
.y7d{bottom:945.870000pt;}
.y7{bottom:956.663467pt;}
.y57{bottom:975.810267pt;}
.y31{bottom:976.463467pt;}
.y5a{bottom:979.976667pt;}
.ya1{bottom:982.558533pt;}
.y7c{bottom:983.092933pt;}
.yb{bottom:995.330133pt;}
.y18{bottom:998.622800pt;}
.y30{bottom:1017.796800pt;}
.ya0{bottom:1019.781347pt;}
.y7b{bottom:1020.315733pt;}
.y54{bottom:1045.390933pt;}
.yc{bottom:1056.111333pt;}
.y9f{bottom:1057.004280pt;}
.y7a{bottom:1057.538667pt;}
.y9e{bottom:1094.227213pt;}
.y79{bottom:1094.761600pt;}
.y2f{bottom:1100.463467pt;}
.yb1{bottom:1100.464000pt;}
.y48{bottom:1124.000000pt;}
.y9d{bottom:1131.450147pt;}
.y78{bottom:1131.984533pt;}
.y2e{bottom:1141.796800pt;}
.yb0{bottom:1141.797333pt;}
.y46{bottom:1142.666667pt;}
.y2d{bottom:1183.130133pt;}
.yaf{bottom:1183.130667pt;}
.y77{bottom:1206.430400pt;}
.y2c{bottom:1224.463467pt;}
.yae{bottom:1224.464000pt;}
.y76{bottom:1243.653333pt;}
.y2b{bottom:1265.796800pt;}
.yad{bottom:1265.797333pt;}
.y75{bottom:1280.876267pt;}
.y74{bottom:1318.099067pt;}
.y17{bottom:1348.464000pt;}
.y73{bottom:1355.322667pt;}
.y4e{bottom:1378.666667pt;}
.y16{bottom:1389.797333pt;}
.y72{bottom:1392.545333pt;}
.y4c{bottom:1420.000000pt;}
.y15{bottom:1431.130667pt;}
.y4a{bottom:1442.666667pt;}
.yb2{bottom:1465.924000pt;}
.yab{bottom:1465.924293pt;}
.y71{bottom:1466.990667pt;}
.y14{bottom:1472.464000pt;}
.y50{bottom:1484.000000pt;}
.yaa{bottom:1503.146960pt;}
.y70{bottom:1504.213333pt;}
.y13{bottom:1513.797333pt;}
.y52{bottom:1537.333333pt;}
.ya9{bottom:1540.903480pt;}
.y6f{bottom:1541.436000pt;}
.y12{bottom:1555.130667pt;}
.y6e{bottom:1578.660000pt;}
.y5b{bottom:1579.832000pt;}
.y11{bottom:1596.464000pt;}
.y29{bottom:1633.182667pt;}
.y10{bottom:1667.776000pt;}
.y4{bottom:1794.410667pt;}
.y3{bottom:1862.144000pt;}
.y2{bottom:1907.477333pt;}
.y1{bottom:1952.810667pt;}
.y6{bottom:2059.445333pt;}
.y5{bottom:2132.778667pt;}
.hf{height:22.666667pt;}
.h11{height:24.000000pt;}
.h15{height:52.000000pt;}
.h13{height:61.250000pt;}
.h10{height:61.958333pt;}
.h19{height:70.272000pt;}
.h18{height:73.906250pt;}
.h17{height:76.510417pt;}
.h9{height:76.562500pt;}
.h14{height:77.333333pt;}
.h8{height:77.447917pt;}
.hd{height:82.666667pt;}
.h16{height:85.192708pt;}
.hb{height:91.875000pt;}
.h4{height:107.187500pt;}
.h1{height:108.427083pt;}
.h7{height:139.406250pt;}
.h2{height:186.375000pt;}
.ha{height:262.666667pt;}
.he{height:344.000000pt;}
.hc{height:385.333333pt;}
.h12{height:551.658667pt;}
.h6{height:656.684267pt;}
.h5{height:717.465600pt;}
.h3{height:756.132267pt;}
.h0{height:2304.000000pt;}
.wa{width:38.666667pt;}
.w9{width:40.000000pt;}
.wf{width:189.058133pt;}
.wc{width:196.511867pt;}
.wd{width:252.961867pt;}
.we{width:273.955467pt;}
.w7{width:588.606267pt;}
.w8{width:595.899600pt;}
.w6{width:597.258000pt;}
.w5{width:599.924667pt;}
.w3{width:647.490267pt;}
.w1{width:650.995600pt;}
.w2{width:651.330667pt;}
.w10{width:993.851200pt;}
.wb{width:1213.462800pt;}
.w4{width:1304.331867pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.486667pt;}
.x24{left:6.666667pt;}
.xa{left:8.000000pt;}
.x16{left:12.000000pt;}
.x12{left:29.400000pt;}
.x3{left:37.795213pt;}
.x14{left:47.461333pt;}
.x13{left:53.672000pt;}
.xe{left:82.773333pt;}
.x2{left:98.085187pt;}
.x11{left:100.901333pt;}
.x15{left:105.204200pt;}
.x26{left:107.185187pt;}
.xd{left:116.944000pt;}
.x10{left:120.648000pt;}
.x1{left:121.983507pt;}
.xc{left:139.877333pt;}
.xf{left:144.493333pt;}
.x1f{left:161.623333pt;}
.x17{left:162.692667pt;}
.x1b{left:179.319333pt;}
.x21{left:205.271333pt;}
.x19{left:210.303333pt;}
.x20{left:214.292667pt;}
.x1c{left:224.658000pt;}
.x1e{left:228.279333pt;}
.x18{left:249.778000pt;}
.x1d{left:252.266000pt;}
.x1a{left:473.052667pt;}
.x4{left:750.751200pt;}
.x9{left:763.008800pt;}
.xb{left:764.342133pt;}
.x23{left:765.700533pt;}
.x7{left:767.198133pt;}
.x8{left:771.008667pt;}
.x31{left:1139.590667pt;}
.x5{left:1405.530667pt;}
.x22{left:1427.645333pt;}
.x44{left:1431.253333pt;}
.x46{left:1456.266667pt;}
.x41{left:1503.130667pt;}
.x45{left:1513.285333pt;}
.x47{left:1519.525333pt;}
.x48{left:1531.213333pt;}
.x43{left:1538.704000pt;}
.x42{left:1559.114667pt;}
.x40{left:1644.707027pt;}
.x49{left:1854.636000pt;}
.x6{left:2056.753333pt;}
.x25{left:2082.518667pt;}
.x30{left:2090.541333pt;}
.x3f{left:2118.732000pt;}
.x39{left:2123.313333pt;}
.x3a{left:2128.780000pt;}
.x37{left:2133.977333pt;}
.x3d{left:2141.777333pt;}
.x3e{left:2143.494667pt;}
.x32{left:2144.682667pt;}
.x36{left:2160.682667pt;}
.x2f{left:2182.666667pt;}
.x38{left:2199.084000pt;}
.x3b{left:2204.444000pt;}
.x3c{left:2211.468000pt;}
.x2b{left:2261.333333pt;}
.x33{left:2403.573333pt;}
.x2e{left:2457.333333pt;}
.x2a{left:2536.000000pt;}
.x34{left:2672.913333pt;}
.x2d{left:2732.000000pt;}
.x29{left:2810.666667pt;}
.x35{left:2994.466667pt;}
.x2c{left:3006.666667pt;}
.x27{left:3085.333333pt;}
}




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