
    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_e88c5513a532e4fae0d238f6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_a6ed31cd2326784bfdeaa7ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_cf6ad83790515208b04ab24e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_f2e2f074f0124b9aadd176ab.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7eba7d0b6e5eb5cf193deeb3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e372b24d7771f0d7b9ddeeaa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_00ed3d2b441a029495a17c7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_3eef74b4875ba5319ed8eb3f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_7951e7975066b79d2d999459.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a8a38739f2dd9c3046cdb844.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_38c41f20c02331a6b7147749.woff')format("woff");}.ffb{font-family:ffb;line-height:1.053711;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_777e07a03ab4b61529ff886a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.053711;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_14d7e3c034cd25c274bb03c3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.119629;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_7804e1dfc2db7d7cc430f72c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4c49a57adf3d22bed96ae3b9.woff')format("woff");}.fff{font-family:fff;line-height:0.948242;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v2{vertical-align:-213.264000px;}
.vb{vertical-align:-129.000000px;}
.va{vertical-align:-98.940000px;}
.v1{vertical-align:-30.540000px;}
.v7{vertical-align:-7.920000px;}
.v6{vertical-align:-3.300000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:21.900000px;}
.v9{vertical-align:36.000000px;}
.v4{vertical-align:43.920000px;}
.v3{vertical-align:70.560000px;}
.v5{vertical-align:120.960000px;}
.ls2{letter-spacing:-4.770000px;}
.ls37{letter-spacing:-0.373200px;}
.ls3e{letter-spacing:-0.346800px;}
.ls29{letter-spacing:-0.306600px;}
.ls3a{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.152400px;}
.ls2a{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:-0.037440px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.117600px;}
.ls20{letter-spacing:0.136200px;}
.ls24{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.170400px;}
.ls1e{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.247680px;}
.ls26{letter-spacing:0.250800px;}
.lse{letter-spacing:0.280200px;}
.ls25{letter-spacing:0.413280px;}
.ls17{letter-spacing:0.450600px;}
.ls1a{letter-spacing:0.728640px;}
.ls18{letter-spacing:1.003680px;}
.ls19{letter-spacing:2.076480px;}
.ls27{letter-spacing:2.213280px;}
.ls32{letter-spacing:6.020640px;}
.ls16{letter-spacing:6.408000px;}
.ls35{letter-spacing:9.773280px;}
.ls2e{letter-spacing:43.509600px;}
.ls2d{letter-spacing:43.560000px;}
.ls21{letter-spacing:60.247968px;}
.ls1f{letter-spacing:60.288000px;}
.ls11{letter-spacing:69.384000px;}
.ls31{letter-spacing:73.100640px;}
.ls6{letter-spacing:80.200128px;}
.ls5{letter-spacing:80.266080px;}
.ls15{letter-spacing:83.520000px;}
.ls23{letter-spacing:84.585600px;}
.ls22{letter-spacing:84.636000px;}
.ls14{letter-spacing:93.201600px;}
.ls13{letter-spacing:93.252000px;}
.ls12{letter-spacing:103.377600px;}
.ls10{letter-spacing:103.428000px;}
.ls9{letter-spacing:110.109600px;}
.ls8{letter-spacing:110.160000px;}
.lsa{letter-spacing:110.280000px;}
.ls4{letter-spacing:111.693600px;}
.ls3{letter-spacing:111.744000px;}
.lsc{letter-spacing:112.125600px;}
.ls7{letter-spacing:112.176000px;}
.lsb{letter-spacing:112.296000px;}
.ls1d{letter-spacing:119.865600px;}
.ls1c{letter-spacing:119.916000px;}
.ls3c{letter-spacing:120.009600px;}
.ls2c{letter-spacing:120.060000px;}
.ls2f{letter-spacing:125.601600px;}
.ls30{letter-spacing:125.652000px;}
.ls33{letter-spacing:127.761600px;}
.ls34{letter-spacing:127.812000px;}
.ls3b{letter-spacing:132.084000px;}
.ls36{letter-spacing:192.876000px;}
.ls28{letter-spacing:304.802688px;}
.lsf{letter-spacing:304.842720px;}
.ls39{letter-spacing:1550.258688px;}
.ls38{letter-spacing:1686.338688px;}
.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;}
}
.ws1f{word-spacing:-120.240000px;}
.ws23{word-spacing:-119.866800px;}
.ws22{word-spacing:-93.419280px;}
.ws18{word-spacing:-87.135120px;}
.ws20{word-spacing:-84.020400px;}
.ws21{word-spacing:-73.710000px;}
.ws16{word-spacing:-48.764880px;}
.ws1{word-spacing:-35.342784px;}
.ws0{word-spacing:-35.310240px;}
.ws15{word-spacing:-33.706920px;}
.ws26{word-spacing:-33.677520px;}
.ws28{word-spacing:-33.637152px;}
.ws1e{word-spacing:-33.544320px;}
.ws13{word-spacing:-33.466752px;}
.ws14{word-spacing:-33.426720px;}
.ws1d{word-spacing:-33.373440px;}
.ws2{word-spacing:-23.418720px;}
.ws19{word-spacing:-23.381280px;}
.ws12{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.262320px;}
.ws1a{word-spacing:-15.228000px;}
.ws1b{word-spacing:-15.188232px;}
.wsb{word-spacing:-2.778000px;}
.wsd{word-spacing:-2.610000px;}
.wsa{word-spacing:-2.022000px;}
.wsf{word-spacing:-1.938000px;}
.wsc{word-spacing:-1.854000px;}
.ws9{word-spacing:-1.182000px;}
.ws8{word-spacing:-1.080000px;}
.wse{word-spacing:-0.804000px;}
.ws10{word-spacing:-0.420000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.108000px;}
.ws4{word-spacing:0.312000px;}
.ws6{word-spacing:0.468000px;}
.ws5{word-spacing:0.624000px;}
.ws17{word-spacing:12.991680px;}
.ws27{word-spacing:81.684720px;}
.ws1c{word-spacing:108.156720px;}
.ws25{word-spacing:133.260000px;}
.ws24{word-spacing:162.372000px;}
._11{margin-left:-6.530767px;}
._f{margin-left:-5.330339px;}
._0{margin-left:-3.916849px;}
._3{margin-left:-2.519187px;}
._2{margin-left:-1.399129px;}
._1{width:1.239052px;}
._6{width:2.283908px;}
._4{width:3.412036px;}
._a{width:5.965200px;}
._d{width:9.733248px;}
._e{width:29.888908px;}
._9{width:46.530000px;}
._b{width:76.500720px;}
._c{width:94.525200px;}
._8{width:122.580720px;}
._5{width:159.708000px;}
._10{width:162.180000px;}
._7{width:188.040240px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(0,114,122);}
.fca{color:transparent;}
.fc4{color:rgb(0,124,186);}
.fcb{color:rgb(89,89,89);}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(64,64,64);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(137,137,137);}
.fc5{color:rgb(0,69,99);}
.fc0{color:rgb(246,142,56);}
.fs11{font-size:36.000000px;}
.fs15{font-size:54.000000px;}
.fs16{font-size:54.144000px;}
.fs17{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs10{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.fs13{font-size:87.840000px;}
.fs14{font-size:88.795869px;}
.fsf{font-size:90.000000px;}
.fsb{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs18{font-size:108.000000px;}
.fs19{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs7{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs1{font-size:156.240000px;}
.fs2{font-size:156.384000px;}
.fsa{font-size:167.760000px;}
.fs12{font-size:167.904000px;}
.fs6{font-size:216.000000px;}
.fs0{font-size:264.384000px;}
.y8b{bottom:-157.035000px;}
.y1a{bottom:-96.516000px;}
.y8a{bottom:-37.476000px;}
.y19{bottom:-36.036000px;}
.y99{bottom:-8.676000px;}
.y0{bottom:0.000000px;}
.yed{bottom:12.240000px;}
.y89{bottom:13.104000px;}
.y129{bottom:13.536000px;}
.y9{bottom:16.884000px;}
.y8{bottom:20.043000px;}
.y18{bottom:24.480000px;}
.ye6{bottom:28.335000px;}
.y75{bottom:33.120000px;}
.y98{bottom:34.560000px;}
.y7{bottom:45.243000px;}
.y128{bottom:55.296000px;}
.y88{bottom:56.340000px;}
.yd2{bottom:60.876000px;}
.y138{bottom:73.620000px;}
.ye7{bottom:74.085000px;}
.y97{bottom:75.600000px;}
.y51{bottom:79.776000px;}
.y17{bottom:82.260000px;}
.y127{bottom:84.096000px;}
.y74{bottom:92.160000px;}
.y87{bottom:92.340000px;}
.yd1{bottom:93.276000px;}
.y50{bottom:103.176000px;}
.yf9{bottom:104.400000px;}
.y10a{bottom:104.475000px;}
.y96{bottom:105.840000px;}
.yab{bottom:109.545000px;}
.y137{bottom:109.620000px;}
.ya7{bottom:113.505000px;}
.ya5{bottom:114.480000px;}
.y57{bottom:118.368000px;}
.ye8{bottom:119.850000px;}
.y126{bottom:120.096000px;}
.y4f{bottom:120.996000px;}
.y16{bottom:125.460000px;}
.yd0{bottom:125.712000px;}
.y10b{bottom:130.830000px;}
.ye5{bottom:133.020000px;}
.y86{bottom:135.540000px;}
.y95{bottom:136.080000px;}
.ya4{bottom:140.610000px;}
.y73{bottom:142.740000px;}
.y4e{bottom:142.812000px;}
.y136{bottom:145.620000px;}
.y54{bottom:149.076000px;}
.yfa{bottom:149.610000px;}
.y10c{bottom:157.140000px;}
.ycf{bottom:158.115000px;}
.y4d{bottom:164.595000px;}
.ye9{bottom:165.630000px;}
.y94{bottom:166.350000px;}
.y109{bottom:167.580000px;}
.ya3{bottom:168.120000px;}
.yf8{bottom:168.300000px;}
.y15{bottom:168.690000px;}
.y6{bottom:169.761000px;}
.y85{bottom:171.570000px;}
.y56{bottom:173.490000px;}
.ya6{bottom:174.960000px;}
.y135{bottom:181.650000px;}
.y4c{bottom:182.415000px;}
.y10d{bottom:183.495000px;}
.y72{bottom:185.970000px;}
.yce{bottom:190.515000px;}
.y53{bottom:190.545000px;}
.ya8{bottom:190.620000px;}
.yda{bottom:192.630000px;}
.ybb{bottom:192.990000px;}
.yfb{bottom:194.835000px;}
.y93{bottom:196.590000px;}
.y3e{bottom:203.400000px;}
.y4b{bottom:204.195000px;}
.y5{bottom:205.761000px;}
.y10e{bottom:209.850000px;}
.y108{bottom:210.060000px;}
.yea{bottom:211.395000px;}
.y14{bottom:211.890000px;}
.y125{bottom:213.735000px;}
.y84{bottom:214.770000px;}
.y134{bottom:217.650000px;}
.y52{bottom:220.830000px;}
.yc3{bottom:221.790000px;}
.ycd{bottom:222.915000px;}
.y55{bottom:223.095000px;}
.y32{bottom:223.815000px;}
.y92{bottom:225.930000px;}
.y4a{bottom:226.335000px;}
.y69{bottom:230.040000px;}
.y71{bottom:230.430000px;}
.y3d{bottom:234.540000px;}
.y10f{bottom:236.190000px;}
.yfc{bottom:240.045000px;}
.yb3{bottom:240.735000px;}
.y107{bottom:241.740000px;}
.y4{bottom:241.761000px;}
.yf7{bottom:244.365000px;}
.y91{bottom:249.690000px;}
.y49{bottom:249.735000px;}
.y83{bottom:250.770000px;}
.ydf{bottom:252.030000px;}
.yd9{bottom:253.110000px;}
.ycc{bottom:255.315000px;}
.y90{bottom:256.170000px;}
.y13{bottom:256.350000px;}
.y31{bottom:256.575000px;}
.yeb{bottom:257.145000px;}
.y3c{bottom:258.300000px;}
.y133{bottom:260.850000px;}
.y68{bottom:261.180000px;}
.y110{bottom:262.545000px;}
.y11b{bottom:266.475000px;}
.y48{bottom:271.515000px;}
.yb2{bottom:276.765000px;}
.yf6{bottom:276.810000px;}
.y3b{bottom:278.100000px;}
.y3{bottom:279.921000px;}
.ya2{bottom:280.545000px;}
.y67{bottom:280.980000px;}
.y70{bottom:282.270000px;}
.yfd{bottom:285.270000px;}
.y82{bottom:286.770000px;}
.ycb{bottom:287.745000px;}
.y111{bottom:288.870000px;}
.y30{bottom:291.135000px;}
.y124{bottom:291.525000px;}
.y106{bottom:291.960000px;}
.y47{bottom:293.325000px;}
.y132{bottom:296.850000px;}
.yba{bottom:298.110000px;}
.y3a{bottom:301.860000px;}
.yec{bottom:302.940000px;}
.y66{bottom:304.740000px;}
.yaa{bottom:305.205000px;}
.y12{bottom:306.930000px;}
.yf5{bottom:309.210000px;}
.y11a{bottom:309.705000px;}
.yd8{bottom:310.890000px;}
.yde{bottom:311.115000px;}
.y46{bottom:315.105000px;}
.y112{bottom:315.210000px;}
.y2{bottom:317.415000px;}
.y8f{bottom:318.315000px;}
.yca{bottom:320.145000px;}
.y123{bottom:320.325000px;}
.y105{bottom:321.120000px;}
.ya1{bottom:323.745000px;}
.y2f{bottom:324.435000px;}
.y65{bottom:324.540000px;}
.y39{bottom:326.010000px;}
.y81{bottom:330.015000px;}
.yfe{bottom:330.480000px;}
.y6f{bottom:335.595000px;}
.y45{bottom:337.245000px;}
.y131{bottom:340.095000px;}
.y113{bottom:341.565000px;}
.yc2{bottom:342.795000px;}
.y2e{bottom:346.035000px;}
.yd7{bottom:346.935000px;}
.y64{bottom:348.300000px;}
.y11{bottom:350.175000px;}
.y104{bottom:350.310000px;}
.y38{bottom:351.570000px;}
.yc9{bottom:352.545000px;}
.y119{bottom:352.905000px;}
.y13d{bottom:354.315000px;}
.yb9{bottom:355.935000px;}
.y122{bottom:356.325000px;}
.ya0{bottom:359.745000px;}
.y44{bottom:361.005000px;}
.ydd{bottom:361.695000px;}
.yf4{bottom:362.490000px;}
.y80{bottom:366.015000px;}
.y63{bottom:368.130000px;}
.y8e{bottom:368.715000px;}
.y37{bottom:371.370000px;}
.y2d{bottom:371.985000px;}
.y130{bottom:376.095000px;}
.yff{bottom:376.560000px;}
.y43{bottom:380.445000px;}
.yef{bottom:381.240000px;}
.yd6{bottom:382.935000px;}
.yc8{bottom:384.945000px;}
.y114{bottom:385.095000px;}
.ye4{bottom:386.925000px;}
.y62{bottom:392.250000px;}
.y10{bottom:393.375000px;}
.y2c{bottom:393.585000px;}
.yf3{bottom:394.890000px;}
.y36{bottom:395.130000px;}
.y9f{bottom:395.745000px;}
.y6e{bottom:396.075000px;}
.ydc{bottom:397.695000px;}
.yb8{bottom:399.135000px;}
.y121{bottom:399.525000px;}
.y103{bottom:400.350000px;}
.y7f{bottom:402.015000px;}
.yc1{bottom:403.275000px;}
.y42{bottom:403.845000px;}
.y118{bottom:404.745000px;}
.y13c{bottom:404.895000px;}
.y12f{bottom:412.095000px;}
.ya9{bottom:413.460000px;}
.yee{bottom:413.640000px;}
.y2b{bottom:415.185000px;}
.y7b{bottom:416.235000px;}
.yc7{bottom:417.390000px;}
.ybc{bottom:417.600000px;}
.y61{bottom:417.810000px;}
.y35{bottom:418.890000px;}
.y41{bottom:421.665000px;}
.yd5{bottom:426.135000px;}
.y8d{bottom:426.495000px;}
.yf2{bottom:427.320000px;}
.y102{bottom:429.510000px;}
.y60{bottom:437.610000px;}
.yf{bottom:437.835000px;}
.y34{bottom:438.690000px;}
.y9e{bottom:438.990000px;}
.y40{bottom:439.530000px;}
.ye3{bottom:440.385000px;}
.yb7{bottom:440.895000px;}
.y2a{bottom:441.105000px;}
.y120{bottom:444.030000px;}
.y7e{bottom:447.915000px;}
.y117{bottom:447.990000px;}
.y13b{bottom:448.095000px;}
.y1{bottom:449.355000px;}
.yc6{bottom:449.790000px;}
.y6d{bottom:453.855000px;}
.y12e{bottom:455.295000px;}
.yb0{bottom:455.940000px;}
.y101{bottom:458.670000px;}
.yf1{bottom:459.720000px;}
.y76{bottom:461.550000px;}
.y3f{bottom:461.670000px;}
.y5f{bottom:461.730000px;}
.yd4{bottom:462.165000px;}
.y8c{bottom:462.525000px;}
.y29{bottom:462.705000px;}
.y33{bottom:462.855000px;}
.yc0{bottom:463.785000px;}
.y9d{bottom:474.990000px;}
.y7a{bottom:475.305000px;}
.yb6{bottom:476.925000px;}
.yaf{bottom:477.360000px;}
.y13a{bottom:484.125000px;}
.ye{bottom:488.445000px;}
.y12d{bottom:491.325000px;}
.ye2{bottom:493.710000px;}
.y11f{bottom:494.610000px;}
.yc5{bottom:497.085000px;}
.y6c{bottom:498.345000px;}
.y116{bottom:499.830000px;}
.y7d{bottom:505.725000px;}
.yd3{bottom:505.905000px;}
.y5e{bottom:505.980000px;}
.y100{bottom:508.935000px;}
.y9c{bottom:510.990000px;}
.yb5{bottom:512.925000px;}
.yf0{bottom:513.180000px;}
.yae{bottom:513.390000px;}
.y20{bottom:524.130000px;}
.ybf{bottom:524.265000px;}
.y5d{bottom:525.780000px;}
.ye1{bottom:526.110000px;}
.y79{bottom:527.145000px;}
.y139{bottom:527.325000px;}
.y11e{bottom:530.610000px;}
.yd{bottom:532.905000px;}
.ybd{bottom:534.345000px;}
.y12c{bottom:534.525000px;}
.yc4{bottom:541.545000px;}
.y115{bottom:543.030000px;}
.y1f{bottom:543.930000px;}
.y9b{bottom:546.990000px;}
.y6b{bottom:548.925000px;}
.yad{bottom:549.390000px;}
.y5c{bottom:549.540000px;}
.y28{bottom:553.065000px;}
.ydb{bottom:556.125000px;}
.y24{bottom:560.010000px;}
.y11d{bottom:566.640000px;}
.y1e{bottom:567.690000px;}
.yb1{bottom:570.345000px;}
.y12b{bottom:570.525000px;}
.y5b{bottom:573.300000px;}
.ye0{bottom:579.570000px;}
.y78{bottom:580.425000px;}
.y9a{bottom:583.020000px;}
.yc{bottom:584.745000px;}
.y7c{bottom:584.925000px;}
.yac{bottom:585.390000px;}
.y1d{bottom:587.490000px;}
.y27{bottom:587.670000px;}
.y23{bottom:588.810000px;}
.y6a{bottom:592.125000px;}
.y5a{bottom:593.100000px;}
.yb4{bottom:593.385000px;}
.y12a{bottom:606.525000px;}
.y11c{bottom:611.100000px;}
.y1c{bottom:612.870000px;}
.y26{bottom:616.470000px;}
.y22{bottom:617.610000px;}
.y59{bottom:618.510000px;}
.y77{bottom:630.870000px;}
.yb{bottom:636.630000px;}
.ybe{bottom:642.570000px;}
.y25{bottom:645.270000px;}
.y21{bottom:646.455000px;}
.y58{bottom:647.310000px;}
.y1b{bottom:647.460000px;}
.ya{bottom:708.630000px;}
.h16{height:37.546875px;}
.hf{height:48.774375px;}
.h1e{height:56.320312px;}
.h25{height:56.470500px;}
.he{height:59.383125px;}
.h19{height:60.679688px;}
.h20{height:62.327813px;}
.h14{height:69.086250px;}
.h15{height:69.236437px;}
.hd{height:70.510781px;}
.h10{height:70.616812px;}
.h1b{height:74.834800px;}
.h6{height:75.093750px;}
.h11{height:75.243937px;}
.h1f{height:78.220313px;}
.h5{height:87.859687px;}
.h13{height:93.867188px;}
.h12{height:99.874688px;}
.h21{height:100.024875px;}
.h1c{height:107.793281px;}
.h22{height:112.640625px;}
.h23{height:112.790813px;}
.h4{height:119.594180px;}
.ha{height:125.406562px;}
.hb{height:125.556750px;}
.h18{height:144.589219px;}
.h8{height:150.187500px;}
.h9{height:150.337688px;}
.h2{height:159.978164px;}
.h3{height:160.125609px;}
.hc{height:174.968437px;}
.h17{height:175.118625px;}
.h7{height:225.281250px;}
.h1a{height:246.366563px;}
.h1{height:262.963969px;}
.h24{height:324.000000px;}
.h26{height:407.520000px;}
.h27{height:416.160000px;}
.h1d{height:475.020000px;}
.h0{height:810.000000px;}
.w3{width:482.580000px;}
.w4{width:499.500000px;}
.w2{width:540.000000px;}
.w1{width:583.200000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4f{left:9.975000px;}
.x58{left:12.600000px;}
.x4e{left:17.490000px;}
.x50{left:32.865000px;}
.x54{left:38.160000px;}
.x56{left:41.508000px;}
.x5a{left:47.556000px;}
.x55{left:49.032000px;}
.x59{left:55.080000px;}
.x37{left:57.456000px;}
.x36{left:63.720000px;}
.x51{left:66.024000px;}
.x17{left:72.252000px;}
.x44{left:74.556000px;}
.x4b{left:89.244000px;}
.xe{left:90.468000px;}
.x8{left:91.800000px;}
.x4c{left:100.044000px;}
.x38{left:102.750000px;}
.x18{left:106.092000px;}
.xc{left:108.648000px;}
.xf{left:124.308000px;}
.x7{left:126.360000px;}
.xb{left:132.336000px;}
.x45{left:139.176000px;}
.x39{left:140.475000px;}
.x9{left:145.836000px;}
.x5b{left:162.795000px;}
.xa{left:179.670000px;}
.x4a{left:181.110000px;}
.x3a{left:185.760000px;}
.xd{left:188.565000px;}
.x6{left:196.125000px;}
.x2f{left:199.830000px;}
.x32{left:205.410000px;}
.x5d{left:241.230000px;}
.x2{left:276.225000px;}
.x4{left:280.312500px;}
.x2b{left:304.995000px;}
.x3b{left:306.510000px;}
.x46{left:315.870000px;}
.x29{left:319.350000px;}
.x28{left:327.810000px;}
.x42{left:332.250000px;}
.x2d{left:338.835000px;}
.x4d{left:340.020000px;}
.x2e{left:342.870000px;}
.x3c{left:344.235000px;}
.x30{left:345.855000px;}
.x31{left:347.295000px;}
.x2a{left:353.190000px;}
.x3{left:359.250000px;}
.x5{left:361.272000px;}
.x49{left:370.875000px;}
.x27{left:383.295000px;}
.x3d{left:385.740000px;}
.x2c{left:392.865000px;}
.x5c{left:416.310000px;}
.x1{left:421.890000px;}
.x3e{left:434.805000px;}
.x3f{left:514.050000px;}
.x57{left:531.570000px;}
.x19{left:540.795000px;}
.x25{left:547.560000px;}
.x22{left:549.075000px;}
.x40{left:550.905000px;}
.x26{left:554.220000px;}
.x53{left:565.590000px;}
.x23{left:567.540000px;}
.x10{left:572.040000px;}
.x1c{left:574.665000px;}
.x52{left:576.390000px;}
.x12{left:577.440000px;}
.x41{left:582.585000px;}
.x21{left:591.585000px;}
.x43{left:593.565000px;}
.x1a{left:594.825000px;}
.x11{left:596.700000px;}
.x24{left:613.725000px;}
.x1b{left:628.665000px;}
.x47{left:669.990000px;}
.x34{left:678.495000px;}
.x48{left:690.330000px;}
.x35{left:718.995000px;}
.x1d{left:743.835000px;}
.x13{left:763.350000px;}
.x20{left:777.675000px;}
.x1e{left:797.835000px;}
.x14{left:800.430000px;}
.x15{left:820.260000px;}
.x1f{left:831.675000px;}
.x33{left:838.950000px;}
.x16{left:882.720000px;}
@media print{
.v2{vertical-align:-189.568000pt;}
.vb{vertical-align:-114.666667pt;}
.va{vertical-align:-87.946667pt;}
.v1{vertical-align:-27.146667pt;}
.v7{vertical-align:-7.040000pt;}
.v6{vertical-align:-2.933333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:19.466667pt;}
.v9{vertical-align:32.000000pt;}
.v4{vertical-align:39.040000pt;}
.v3{vertical-align:62.720000pt;}
.v5{vertical-align:107.520000pt;}
.ls2{letter-spacing:-4.240000pt;}
.ls37{letter-spacing:-0.331733pt;}
.ls3e{letter-spacing:-0.308267pt;}
.ls29{letter-spacing:-0.272533pt;}
.ls3a{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls2a{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.104533pt;}
.ls20{letter-spacing:0.121067pt;}
.ls24{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.151467pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.220160pt;}
.ls26{letter-spacing:0.222933pt;}
.lse{letter-spacing:0.249067pt;}
.ls25{letter-spacing:0.367360pt;}
.ls17{letter-spacing:0.400533pt;}
.ls1a{letter-spacing:0.647680pt;}
.ls18{letter-spacing:0.892160pt;}
.ls19{letter-spacing:1.845760pt;}
.ls27{letter-spacing:1.967360pt;}
.ls32{letter-spacing:5.351680pt;}
.ls16{letter-spacing:5.696000pt;}
.ls35{letter-spacing:8.687360pt;}
.ls2e{letter-spacing:38.675200pt;}
.ls2d{letter-spacing:38.720000pt;}
.ls21{letter-spacing:53.553749pt;}
.ls1f{letter-spacing:53.589333pt;}
.ls11{letter-spacing:61.674667pt;}
.ls31{letter-spacing:64.978347pt;}
.ls6{letter-spacing:71.289003pt;}
.ls5{letter-spacing:71.347627pt;}
.ls15{letter-spacing:74.240000pt;}
.ls23{letter-spacing:75.187200pt;}
.ls22{letter-spacing:75.232000pt;}
.ls14{letter-spacing:82.845867pt;}
.ls13{letter-spacing:82.890667pt;}
.ls12{letter-spacing:91.891200pt;}
.ls10{letter-spacing:91.936000pt;}
.ls9{letter-spacing:97.875200pt;}
.ls8{letter-spacing:97.920000pt;}
.lsa{letter-spacing:98.026667pt;}
.ls4{letter-spacing:99.283200pt;}
.ls3{letter-spacing:99.328000pt;}
.lsc{letter-spacing:99.667200pt;}
.ls7{letter-spacing:99.712000pt;}
.lsb{letter-spacing:99.818667pt;}
.ls1d{letter-spacing:106.547200pt;}
.ls1c{letter-spacing:106.592000pt;}
.ls3c{letter-spacing:106.675200pt;}
.ls2c{letter-spacing:106.720000pt;}
.ls2f{letter-spacing:111.645867pt;}
.ls30{letter-spacing:111.690667pt;}
.ls33{letter-spacing:113.565867pt;}
.ls34{letter-spacing:113.610667pt;}
.ls3b{letter-spacing:117.408000pt;}
.ls36{letter-spacing:171.445333pt;}
.ls28{letter-spacing:270.935723pt;}
.lsf{letter-spacing:270.971307pt;}
.ls39{letter-spacing:1378.007723pt;}
.ls38{letter-spacing:1498.967723pt;}
.ws1f{word-spacing:-106.880000pt;}
.ws23{word-spacing:-106.548267pt;}
.ws22{word-spacing:-83.039360pt;}
.ws18{word-spacing:-77.453440pt;}
.ws20{word-spacing:-74.684800pt;}
.ws21{word-spacing:-65.520000pt;}
.ws16{word-spacing:-43.346560pt;}
.ws1{word-spacing:-31.415808pt;}
.ws0{word-spacing:-31.386880pt;}
.ws15{word-spacing:-29.961707pt;}
.ws26{word-spacing:-29.935573pt;}
.ws28{word-spacing:-29.899691pt;}
.ws1e{word-spacing:-29.817173pt;}
.ws13{word-spacing:-29.748224pt;}
.ws14{word-spacing:-29.712640pt;}
.ws1d{word-spacing:-29.665280pt;}
.ws2{word-spacing:-20.816640pt;}
.ws19{word-spacing:-20.783360pt;}
.ws12{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.233173pt;}
.ws1a{word-spacing:-13.536000pt;}
.ws1b{word-spacing:-13.500651pt;}
.wsb{word-spacing:-2.469333pt;}
.wsd{word-spacing:-2.320000pt;}
.wsa{word-spacing:-1.797333pt;}
.wsf{word-spacing:-1.722667pt;}
.wsc{word-spacing:-1.648000pt;}
.ws9{word-spacing:-1.050667pt;}
.ws8{word-spacing:-0.960000pt;}
.wse{word-spacing:-0.714667pt;}
.ws10{word-spacing:-0.373333pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.096000pt;}
.ws4{word-spacing:0.277333pt;}
.ws6{word-spacing:0.416000pt;}
.ws5{word-spacing:0.554667pt;}
.ws17{word-spacing:11.548160pt;}
.ws27{word-spacing:72.608640pt;}
.ws1c{word-spacing:96.139307pt;}
.ws25{word-spacing:118.453333pt;}
.ws24{word-spacing:144.330667pt;}
._11{margin-left:-5.805126pt;}
._f{margin-left:-4.738079pt;}
._0{margin-left:-3.481644pt;}
._3{margin-left:-2.239277pt;}
._2{margin-left:-1.243670pt;}
._1{width:1.101379pt;}
._6{width:2.030141pt;}
._4{width:3.032921pt;}
._a{width:5.302400pt;}
._d{width:8.651776pt;}
._e{width:26.567918pt;}
._9{width:41.360000pt;}
._b{width:68.000640pt;}
._c{width:84.022400pt;}
._8{width:108.960640pt;}
._5{width:141.962667pt;}
._10{width:144.160000pt;}
._7{width:167.146880pt;}
.fs11{font-size:32.000000pt;}
.fs15{font-size:48.000000pt;}
.fs16{font-size:48.128000pt;}
.fs17{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs10{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.fs13{font-size:78.080000pt;}
.fs14{font-size:78.929661pt;}
.fsf{font-size:80.000000pt;}
.fsb{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs18{font-size:96.000000pt;}
.fs19{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs7{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs1{font-size:138.880000pt;}
.fs2{font-size:139.008000pt;}
.fsa{font-size:149.120000pt;}
.fs12{font-size:149.248000pt;}
.fs6{font-size:192.000000pt;}
.fs0{font-size:235.008000pt;}
.y8b{bottom:-139.586667pt;}
.y1a{bottom:-85.792000pt;}
.y8a{bottom:-33.312000pt;}
.y19{bottom:-32.032000pt;}
.y99{bottom:-7.712000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:10.880000pt;}
.y89{bottom:11.648000pt;}
.y129{bottom:12.032000pt;}
.y9{bottom:15.008000pt;}
.y8{bottom:17.816000pt;}
.y18{bottom:21.760000pt;}
.ye6{bottom:25.186667pt;}
.y75{bottom:29.440000pt;}
.y98{bottom:30.720000pt;}
.y7{bottom:40.216000pt;}
.y128{bottom:49.152000pt;}
.y88{bottom:50.080000pt;}
.yd2{bottom:54.112000pt;}
.y138{bottom:65.440000pt;}
.ye7{bottom:65.853333pt;}
.y97{bottom:67.200000pt;}
.y51{bottom:70.912000pt;}
.y17{bottom:73.120000pt;}
.y127{bottom:74.752000pt;}
.y74{bottom:81.920000pt;}
.y87{bottom:82.080000pt;}
.yd1{bottom:82.912000pt;}
.y50{bottom:91.712000pt;}
.yf9{bottom:92.800000pt;}
.y10a{bottom:92.866667pt;}
.y96{bottom:94.080000pt;}
.yab{bottom:97.373333pt;}
.y137{bottom:97.440000pt;}
.ya7{bottom:100.893333pt;}
.ya5{bottom:101.760000pt;}
.y57{bottom:105.216000pt;}
.ye8{bottom:106.533333pt;}
.y126{bottom:106.752000pt;}
.y4f{bottom:107.552000pt;}
.y16{bottom:111.520000pt;}
.yd0{bottom:111.744000pt;}
.y10b{bottom:116.293333pt;}
.ye5{bottom:118.240000pt;}
.y86{bottom:120.480000pt;}
.y95{bottom:120.960000pt;}
.ya4{bottom:124.986667pt;}
.y73{bottom:126.880000pt;}
.y4e{bottom:126.944000pt;}
.y136{bottom:129.440000pt;}
.y54{bottom:132.512000pt;}
.yfa{bottom:132.986667pt;}
.y10c{bottom:139.680000pt;}
.ycf{bottom:140.546667pt;}
.y4d{bottom:146.306667pt;}
.ye9{bottom:147.226667pt;}
.y94{bottom:147.866667pt;}
.y109{bottom:148.960000pt;}
.ya3{bottom:149.440000pt;}
.yf8{bottom:149.600000pt;}
.y15{bottom:149.946667pt;}
.y6{bottom:150.898667pt;}
.y85{bottom:152.506667pt;}
.y56{bottom:154.213333pt;}
.ya6{bottom:155.520000pt;}
.y135{bottom:161.466667pt;}
.y4c{bottom:162.146667pt;}
.y10d{bottom:163.106667pt;}
.y72{bottom:165.306667pt;}
.yce{bottom:169.346667pt;}
.y53{bottom:169.373333pt;}
.ya8{bottom:169.440000pt;}
.yda{bottom:171.226667pt;}
.ybb{bottom:171.546667pt;}
.yfb{bottom:173.186667pt;}
.y93{bottom:174.746667pt;}
.y3e{bottom:180.800000pt;}
.y4b{bottom:181.506667pt;}
.y5{bottom:182.898667pt;}
.y10e{bottom:186.533333pt;}
.y108{bottom:186.720000pt;}
.yea{bottom:187.906667pt;}
.y14{bottom:188.346667pt;}
.y125{bottom:189.986667pt;}
.y84{bottom:190.906667pt;}
.y134{bottom:193.466667pt;}
.y52{bottom:196.293333pt;}
.yc3{bottom:197.146667pt;}
.ycd{bottom:198.146667pt;}
.y55{bottom:198.306667pt;}
.y32{bottom:198.946667pt;}
.y92{bottom:200.826667pt;}
.y4a{bottom:201.186667pt;}
.y69{bottom:204.480000pt;}
.y71{bottom:204.826667pt;}
.y3d{bottom:208.480000pt;}
.y10f{bottom:209.946667pt;}
.yfc{bottom:213.373333pt;}
.yb3{bottom:213.986667pt;}
.y107{bottom:214.880000pt;}
.y4{bottom:214.898667pt;}
.yf7{bottom:217.213333pt;}
.y91{bottom:221.946667pt;}
.y49{bottom:221.986667pt;}
.y83{bottom:222.906667pt;}
.ydf{bottom:224.026667pt;}
.yd9{bottom:224.986667pt;}
.ycc{bottom:226.946667pt;}
.y90{bottom:227.706667pt;}
.y13{bottom:227.866667pt;}
.y31{bottom:228.066667pt;}
.yeb{bottom:228.573333pt;}
.y3c{bottom:229.600000pt;}
.y133{bottom:231.866667pt;}
.y68{bottom:232.160000pt;}
.y110{bottom:233.373333pt;}
.y11b{bottom:236.866667pt;}
.y48{bottom:241.346667pt;}
.yb2{bottom:246.013333pt;}
.yf6{bottom:246.053333pt;}
.y3b{bottom:247.200000pt;}
.y3{bottom:248.818667pt;}
.ya2{bottom:249.373333pt;}
.y67{bottom:249.760000pt;}
.y70{bottom:250.906667pt;}
.yfd{bottom:253.573333pt;}
.y82{bottom:254.906667pt;}
.ycb{bottom:255.773333pt;}
.y111{bottom:256.773333pt;}
.y30{bottom:258.786667pt;}
.y124{bottom:259.133333pt;}
.y106{bottom:259.520000pt;}
.y47{bottom:260.733333pt;}
.y132{bottom:263.866667pt;}
.yba{bottom:264.986667pt;}
.y3a{bottom:268.320000pt;}
.yec{bottom:269.280000pt;}
.y66{bottom:270.880000pt;}
.yaa{bottom:271.293333pt;}
.y12{bottom:272.826667pt;}
.yf5{bottom:274.853333pt;}
.y11a{bottom:275.293333pt;}
.yd8{bottom:276.346667pt;}
.yde{bottom:276.546667pt;}
.y46{bottom:280.093333pt;}
.y112{bottom:280.186667pt;}
.y2{bottom:282.146667pt;}
.y8f{bottom:282.946667pt;}
.yca{bottom:284.573333pt;}
.y123{bottom:284.733333pt;}
.y105{bottom:285.440000pt;}
.ya1{bottom:287.773333pt;}
.y2f{bottom:288.386667pt;}
.y65{bottom:288.480000pt;}
.y39{bottom:289.786667pt;}
.y81{bottom:293.346667pt;}
.yfe{bottom:293.760000pt;}
.y6f{bottom:298.306667pt;}
.y45{bottom:299.773333pt;}
.y131{bottom:302.306667pt;}
.y113{bottom:303.613333pt;}
.yc2{bottom:304.706667pt;}
.y2e{bottom:307.586667pt;}
.yd7{bottom:308.386667pt;}
.y64{bottom:309.600000pt;}
.y11{bottom:311.266667pt;}
.y104{bottom:311.386667pt;}
.y38{bottom:312.506667pt;}
.yc9{bottom:313.373333pt;}
.y119{bottom:313.693333pt;}
.y13d{bottom:314.946667pt;}
.yb9{bottom:316.386667pt;}
.y122{bottom:316.733333pt;}
.ya0{bottom:319.773333pt;}
.y44{bottom:320.893333pt;}
.ydd{bottom:321.506667pt;}
.yf4{bottom:322.213333pt;}
.y80{bottom:325.346667pt;}
.y63{bottom:327.226667pt;}
.y8e{bottom:327.746667pt;}
.y37{bottom:330.106667pt;}
.y2d{bottom:330.653333pt;}
.y130{bottom:334.306667pt;}
.yff{bottom:334.720000pt;}
.y43{bottom:338.173333pt;}
.yef{bottom:338.880000pt;}
.yd6{bottom:340.386667pt;}
.yc8{bottom:342.173333pt;}
.y114{bottom:342.306667pt;}
.ye4{bottom:343.933333pt;}
.y62{bottom:348.666667pt;}
.y10{bottom:349.666667pt;}
.y2c{bottom:349.853333pt;}
.yf3{bottom:351.013333pt;}
.y36{bottom:351.226667pt;}
.y9f{bottom:351.773333pt;}
.y6e{bottom:352.066667pt;}
.ydc{bottom:353.506667pt;}
.yb8{bottom:354.786667pt;}
.y121{bottom:355.133333pt;}
.y103{bottom:355.866667pt;}
.y7f{bottom:357.346667pt;}
.yc1{bottom:358.466667pt;}
.y42{bottom:358.973333pt;}
.y118{bottom:359.773333pt;}
.y13c{bottom:359.906667pt;}
.y12f{bottom:366.306667pt;}
.ya9{bottom:367.520000pt;}
.yee{bottom:367.680000pt;}
.y2b{bottom:369.053333pt;}
.y7b{bottom:369.986667pt;}
.yc7{bottom:371.013333pt;}
.ybc{bottom:371.200000pt;}
.y61{bottom:371.386667pt;}
.y35{bottom:372.346667pt;}
.y41{bottom:374.813333pt;}
.yd5{bottom:378.786667pt;}
.y8d{bottom:379.106667pt;}
.yf2{bottom:379.840000pt;}
.y102{bottom:381.786667pt;}
.y60{bottom:388.986667pt;}
.yf{bottom:389.186667pt;}
.y34{bottom:389.946667pt;}
.y9e{bottom:390.213333pt;}
.y40{bottom:390.693333pt;}
.ye3{bottom:391.453333pt;}
.yb7{bottom:391.906667pt;}
.y2a{bottom:392.093333pt;}
.y120{bottom:394.693333pt;}
.y7e{bottom:398.146667pt;}
.y117{bottom:398.213333pt;}
.y13b{bottom:398.306667pt;}
.y1{bottom:399.426667pt;}
.yc6{bottom:399.813333pt;}
.y6d{bottom:403.426667pt;}
.y12e{bottom:404.706667pt;}
.yb0{bottom:405.280000pt;}
.y101{bottom:407.706667pt;}
.yf1{bottom:408.640000pt;}
.y76{bottom:410.266667pt;}
.y3f{bottom:410.373333pt;}
.y5f{bottom:410.426667pt;}
.yd4{bottom:410.813333pt;}
.y8c{bottom:411.133333pt;}
.y29{bottom:411.293333pt;}
.y33{bottom:411.426667pt;}
.yc0{bottom:412.253333pt;}
.y9d{bottom:422.213333pt;}
.y7a{bottom:422.493333pt;}
.yb6{bottom:423.933333pt;}
.yaf{bottom:424.320000pt;}
.y13a{bottom:430.333333pt;}
.ye{bottom:434.173333pt;}
.y12d{bottom:436.733333pt;}
.ye2{bottom:438.853333pt;}
.y11f{bottom:439.653333pt;}
.yc5{bottom:441.853333pt;}
.y6c{bottom:442.973333pt;}
.y116{bottom:444.293333pt;}
.y7d{bottom:449.533333pt;}
.yd3{bottom:449.693333pt;}
.y5e{bottom:449.760000pt;}
.y100{bottom:452.386667pt;}
.y9c{bottom:454.213333pt;}
.yb5{bottom:455.933333pt;}
.yf0{bottom:456.160000pt;}
.yae{bottom:456.346667pt;}
.y20{bottom:465.893333pt;}
.ybf{bottom:466.013333pt;}
.y5d{bottom:467.360000pt;}
.ye1{bottom:467.653333pt;}
.y79{bottom:468.573333pt;}
.y139{bottom:468.733333pt;}
.y11e{bottom:471.653333pt;}
.yd{bottom:473.693333pt;}
.ybd{bottom:474.973333pt;}
.y12c{bottom:475.133333pt;}
.yc4{bottom:481.373333pt;}
.y115{bottom:482.693333pt;}
.y1f{bottom:483.493333pt;}
.y9b{bottom:486.213333pt;}
.y6b{bottom:487.933333pt;}
.yad{bottom:488.346667pt;}
.y5c{bottom:488.480000pt;}
.y28{bottom:491.613333pt;}
.ydb{bottom:494.333333pt;}
.y24{bottom:497.786667pt;}
.y11d{bottom:503.680000pt;}
.y1e{bottom:504.613333pt;}
.yb1{bottom:506.973333pt;}
.y12b{bottom:507.133333pt;}
.y5b{bottom:509.600000pt;}
.ye0{bottom:515.173333pt;}
.y78{bottom:515.933333pt;}
.y9a{bottom:518.240000pt;}
.yc{bottom:519.773333pt;}
.y7c{bottom:519.933333pt;}
.yac{bottom:520.346667pt;}
.y1d{bottom:522.213333pt;}
.y27{bottom:522.373333pt;}
.y23{bottom:523.386667pt;}
.y6a{bottom:526.333333pt;}
.y5a{bottom:527.200000pt;}
.yb4{bottom:527.453333pt;}
.y12a{bottom:539.133333pt;}
.y11c{bottom:543.200000pt;}
.y1c{bottom:544.773333pt;}
.y26{bottom:547.973333pt;}
.y22{bottom:548.986667pt;}
.y59{bottom:549.786667pt;}
.y77{bottom:560.773333pt;}
.yb{bottom:565.893333pt;}
.ybe{bottom:571.173333pt;}
.y25{bottom:573.573333pt;}
.y21{bottom:574.626667pt;}
.y58{bottom:575.386667pt;}
.y1b{bottom:575.520000pt;}
.ya{bottom:629.893333pt;}
.h16{height:33.375000pt;}
.hf{height:43.355000pt;}
.h1e{height:50.062500pt;}
.h25{height:50.196000pt;}
.he{height:52.785000pt;}
.h19{height:53.937500pt;}
.h20{height:55.402500pt;}
.h14{height:61.410000pt;}
.h15{height:61.543500pt;}
.hd{height:62.676250pt;}
.h10{height:62.770500pt;}
.h1b{height:66.519822pt;}
.h6{height:66.750000pt;}
.h11{height:66.883500pt;}
.h1f{height:69.529167pt;}
.h5{height:78.097500pt;}
.h13{height:83.437500pt;}
.h12{height:88.777500pt;}
.h21{height:88.911000pt;}
.h1c{height:95.816250pt;}
.h22{height:100.125000pt;}
.h23{height:100.258500pt;}
.h4{height:106.305937pt;}
.ha{height:111.472500pt;}
.hb{height:111.606000pt;}
.h18{height:128.523750pt;}
.h8{height:133.500000pt;}
.h9{height:133.633500pt;}
.h2{height:142.202812pt;}
.h3{height:142.333875pt;}
.hc{height:155.527500pt;}
.h17{height:155.661000pt;}
.h7{height:200.250000pt;}
.h1a{height:218.992500pt;}
.h1{height:233.745750pt;}
.h24{height:288.000000pt;}
.h26{height:362.240000pt;}
.h27{height:369.920000pt;}
.h1d{height:422.240000pt;}
.h0{height:720.000000pt;}
.w3{width:428.960000pt;}
.w4{width:444.000000pt;}
.w2{width:480.000000pt;}
.w1{width:518.400000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:8.866667pt;}
.x58{left:11.200000pt;}
.x4e{left:15.546667pt;}
.x50{left:29.213333pt;}
.x54{left:33.920000pt;}
.x56{left:36.896000pt;}
.x5a{left:42.272000pt;}
.x55{left:43.584000pt;}
.x59{left:48.960000pt;}
.x37{left:51.072000pt;}
.x36{left:56.640000pt;}
.x51{left:58.688000pt;}
.x17{left:64.224000pt;}
.x44{left:66.272000pt;}
.x4b{left:79.328000pt;}
.xe{left:80.416000pt;}
.x8{left:81.600000pt;}
.x4c{left:88.928000pt;}
.x38{left:91.333333pt;}
.x18{left:94.304000pt;}
.xc{left:96.576000pt;}
.xf{left:110.496000pt;}
.x7{left:112.320000pt;}
.xb{left:117.632000pt;}
.x45{left:123.712000pt;}
.x39{left:124.866667pt;}
.x9{left:129.632000pt;}
.x5b{left:144.706667pt;}
.xa{left:159.706667pt;}
.x4a{left:160.986667pt;}
.x3a{left:165.120000pt;}
.xd{left:167.613333pt;}
.x6{left:174.333333pt;}
.x2f{left:177.626667pt;}
.x32{left:182.586667pt;}
.x5d{left:214.426667pt;}
.x2{left:245.533333pt;}
.x4{left:249.166667pt;}
.x2b{left:271.106667pt;}
.x3b{left:272.453333pt;}
.x46{left:280.773333pt;}
.x29{left:283.866667pt;}
.x28{left:291.386667pt;}
.x42{left:295.333333pt;}
.x2d{left:301.186667pt;}
.x4d{left:302.240000pt;}
.x2e{left:304.773333pt;}
.x3c{left:305.986667pt;}
.x30{left:307.426667pt;}
.x31{left:308.706667pt;}
.x2a{left:313.946667pt;}
.x3{left:319.333333pt;}
.x5{left:321.130667pt;}
.x49{left:329.666667pt;}
.x27{left:340.706667pt;}
.x3d{left:342.880000pt;}
.x2c{left:349.213333pt;}
.x5c{left:370.053333pt;}
.x1{left:375.013333pt;}
.x3e{left:386.493333pt;}
.x3f{left:456.933333pt;}
.x57{left:472.506667pt;}
.x19{left:480.706667pt;}
.x25{left:486.720000pt;}
.x22{left:488.066667pt;}
.x40{left:489.693333pt;}
.x26{left:492.640000pt;}
.x53{left:502.746667pt;}
.x23{left:504.480000pt;}
.x10{left:508.480000pt;}
.x1c{left:510.813333pt;}
.x52{left:512.346667pt;}
.x12{left:513.280000pt;}
.x41{left:517.853333pt;}
.x21{left:525.853333pt;}
.x43{left:527.613333pt;}
.x1a{left:528.733333pt;}
.x11{left:530.400000pt;}
.x24{left:545.533333pt;}
.x1b{left:558.813333pt;}
.x47{left:595.546667pt;}
.x34{left:603.106667pt;}
.x48{left:613.626667pt;}
.x35{left:639.106667pt;}
.x1d{left:661.186667pt;}
.x13{left:678.533333pt;}
.x20{left:691.266667pt;}
.x1e{left:709.186667pt;}
.x14{left:711.493333pt;}
.x15{left:729.120000pt;}
.x1f{left:739.266667pt;}
.x33{left:745.733333pt;}
.x16{left:784.640000pt;}
}




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