
    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_399bbb6f12f71c3e5b4e2db5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_7149096636c84b3ab348c9a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.051000;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_f28bd45ff284712bbd8787b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_5559cd339d6e6c9ff14cfde1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010000;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_6d40815ee833d5837d451f72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_414416958718bec6b07f3b52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.014000;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_dfb29726c923d76cd7ed71f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_92e21c90c9e0ac73609ec6ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_bc85d80ae0d1ac2030526895.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201172;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_ebc76e104382994f2c0dab37.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_172f87913da1a34be48f6885.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ce63037bf0bb36e93e76977f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.051000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-34.260000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:32.400000px;}
.v1{vertical-align:36.000000px;}
.ls12{letter-spacing:-0.312600px;}
.ls23{letter-spacing:-0.103200px;}
.lsf{letter-spacing:-0.083400px;}
.ls20{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.043200px;}
.ls22{letter-spacing:-0.042480px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.063600px;}
.ls1a{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.108600px;}
.lsc{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.218400px;}
.ls10{letter-spacing:0.244800px;}
.lsa{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.331200px;}
.ls13{letter-spacing:0.360000px;}
.ls16{letter-spacing:3.996000px;}
.ls1f{letter-spacing:40.155264px;}
.ls1d{letter-spacing:40.281840px;}
.ls1e{letter-spacing:49.142160px;}
.ls3{letter-spacing:59.275824px;}
.ls4{letter-spacing:59.402400px;}
.ls19{letter-spacing:63.844560px;}
.ls6{letter-spacing:67.641840px;}
.ls8{letter-spacing:77.700384px;}
.ls2{letter-spacing:77.826960px;}
.ls1b{letter-spacing:81.497664px;}
.ls15{letter-spacing:81.624240px;}
.ls5{letter-spacing:94.281840px;}
.ls14{letter-spacing:94.425840px;}
.ls18{letter-spacing:103.015584px;}
.ls17{letter-spacing:103.142160px;}
.lse{letter-spacing:105.825600px;}
.lsd{letter-spacing:105.876000px;}
.ls11{letter-spacing:123.696000px;}
.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;}
}
.ws6{word-spacing:-216.000000px;}
.wsc{word-spacing:-76.898304px;}
.ws24{word-spacing:-65.694240px;}
.ws18{word-spacing:-59.223456px;}
.ws7{word-spacing:-41.508864px;}
.ws8{word-spacing:-41.472000px;}
.wsd{word-spacing:-33.730560px;}
.ws17{word-spacing:-32.945760px;}
.ws14{word-spacing:-31.209696px;}
.ws4{word-spacing:-30.999840px;}
.ws22{word-spacing:-30.845040px;}
.ws1c{word-spacing:-30.818304px;}
.ws5{word-spacing:-30.781440px;}
.ws1b{word-spacing:-29.159424px;}
.ws1a{word-spacing:-29.122560px;}
.ws20{word-spacing:-27.684864px;}
.wsa{word-spacing:-27.648000px;}
.ws21{word-spacing:-27.601464px;}
.ws1f{word-spacing:-27.576000px;}
.ws1d{word-spacing:-26.173440px;}
.ws23{word-spacing:-24.551424px;}
.ws2{word-spacing:-24.514560px;}
.wsf{word-spacing:-21.666240px;}
.ws11{word-spacing:-21.641760px;}
.ws10{word-spacing:-21.602304px;}
.wse{word-spacing:-21.565440px;}
.ws15{word-spacing:-18.468864px;}
.ws9{word-spacing:-18.432000px;}
.ws16{word-spacing:-18.385464px;}
.ws12{word-spacing:-17.332560px;}
.ws3{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:9.608040px;}
.wsb{word-spacing:79.542720px;}
.ws13{word-spacing:90.587712px;}
.ws19{word-spacing:117.253920px;}
.ws1e{word-spacing:127.788480px;}
._a{margin-left:-22.478976px;}
._b{margin-left:-15.120000px;}
._7{margin-left:-9.504000px;}
._d{margin-left:-6.842880px;}
._c{margin-left:-5.400000px;}
._5{margin-left:-3.745440px;}
._2{margin-left:-2.180880px;}
._0{margin-left:-1.006560px;}
._1{width:1.174320px;}
._3{width:2.180880px;}
._6{width:4.104240px;}
._8{width:8.998560px;}
._e{width:10.092960px;}
._9{width:109.702560px;}
._4{width:1366.811760px;}
.fca{color:transparent;}
.fc7{color:rgb(255,158,24);}
.fc5{color:rgb(61,124,201);}
.fc3{color:rgb(3,80,174);}
.fc9{color:rgb(0,0,0);}
.fc8{color:rgb(36,36,36);}
.fc6{color:rgb(1,30,65);}
.fc4{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(34,47,93);}
.fc0{color:rgb(0,33,105);}
.fs1a{font-size:66.960000px;}
.fs1b{font-size:67.104000px;}
.fsa{font-size:72.000000px;}
.fs18{font-size:72.144000px;}
.fs9{font-size:77.040000px;}
.fs20{font-size:77.184000px;}
.fs2{font-size:79.920000px;}
.fs1c{font-size:81.360000px;}
.fs14{font-size:84.240000px;}
.fs15{font-size:84.384000px;}
.fs8{font-size:86.400000px;}
.fs7{font-size:86.544000px;}
.fs19{font-size:91.440000px;}
.fs1f{font-size:91.584000px;}
.fs6{font-size:95.760000px;}
.fsf{font-size:95.904000px;}
.fs1d{font-size:102.240000px;}
.fs1e{font-size:102.384000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs17{font-size:113.760000px;}
.fs16{font-size:113.904000px;}
.fs1{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs13{font-size:131.760000px;}
.fsd{font-size:162.000000px;}
.fse{font-size:162.144000px;}
.fs0{font-size:167.760000px;}
.fsc{font-size:216.000000px;}
.fsb{font-size:216.144000px;}
.fs5{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs12{font-size:300.384000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:12.960000px;}
.y39{bottom:13.068000px;}
.y125{bottom:16.740000px;}
.y131{bottom:19.188000px;}
.y8f{bottom:21.312000px;}
.y4e{bottom:26.172000px;}
.y140{bottom:26.208000px;}
.y48{bottom:27.144000px;}
.y50{bottom:32.616000px;}
.yae{bottom:36.972000px;}
.y4a{bottom:38.700000px;}
.y9{bottom:46.296000px;}
.y4d{bottom:47.772000px;}
.y8e{bottom:49.032000px;}
.y124{bottom:49.140000px;}
.y4f{bottom:49.896000px;}
.y130{bottom:51.624000px;}
.y38{bottom:53.928000px;}
.y7c{bottom:54.324000px;}
.yad{bottom:58.572000px;}
.y13f{bottom:64.188000px;}
.ye0{bottom:65.916000px;}
.yb6{bottom:66.636000px;}
.y123{bottom:74.700000px;}
.y8d{bottom:77.832000px;}
.y8{bottom:78.696000px;}
.y37{bottom:79.848000px;}
.y105{bottom:80.784000px;}
.y4{bottom:83.232000px;}
.y12f{bottom:84.024000px;}
.y26{bottom:88.488000px;}
.y70{bottom:92.844000px;}
.ydf{bottom:93.276000px;}
.yc7{bottom:96.660000px;}
.y9f{bottom:98.892000px;}
.y47{bottom:99.108000px;}
.yb5{bottom:101.052000px;}
.y8c{bottom:106.632000px;}
.y13e{bottom:106.776000px;}
.y49{bottom:108.468000px;}
.y7b{bottom:110.844000px;}
.y7{bottom:111.096000px;}
.y104{bottom:113.184000px;}
.y122{bottom:117.360000px;}
.y6f{bottom:120.384000px;}
.yc6{bottom:124.056000px;}
.y9e{bottom:124.092000px;}
.y142{bottom:126.720000px;}
.yf6{bottom:128.988000px;}
.y3{bottom:134.712000px;}
.yb4{bottom:135.252000px;}
.yde{bottom:135.612000px;}
.y8b{bottom:136.692000px;}
.y7a{bottom:139.644000px;}
.y13d{bottom:142.776000px;}
.y6{bottom:143.496000px;}
.y121{bottom:144.900000px;}
.y103{bottom:145.584000px;}
.y6e{bottom:149.220000px;}
.y9d{bottom:149.292000px;}
.yc5{bottom:151.410000px;}
.y8a{bottom:154.230000px;}
.ydd{bottom:162.975000px;}
.y129{bottom:167.295000px;}
.y79{bottom:169.740000px;}
.y9c{bottom:174.495000px;}
.y5{bottom:175.890000px;}
.y102{bottom:178.020000px;}
.y6d{bottom:179.640000px;}
.yf5{bottom:179.925000px;}
.y43{bottom:180.795000px;}
.y89{bottom:181.950000px;}
.y95{bottom:186.450000px;}
.y120{bottom:188.130000px;}
.y110{bottom:190.290000px;}
.y2{bottom:192.135000px;}
.yc4{bottom:193.890000px;}
.ydc{bottom:205.275000px;}
.y46{bottom:207.180000px;}
.y141{bottom:210.210000px;}
.y101{bottom:210.420000px;}
.y128{bottom:210.495000px;}
.y88{bottom:210.750000px;}
.y36{bottom:212.610000px;}
.y94{bottom:214.170000px;}
.yf4{bottom:215.925000px;}
.y42{bottom:216.435000px;}
.yc3{bottom:221.250000px;}
.y10f{bottom:222.690000px;}
.ya4{bottom:225.000000px;}
.y25{bottom:226.620000px;}
.yac{bottom:230.685000px;}
.ydb{bottom:232.635000px;}
.y11f{bottom:233.130000px;}
.y78{bottom:236.595000px;}
.y6c{bottom:239.220000px;}
.y87{bottom:239.550000px;}
.y1{bottom:242.535000px;}
.y100{bottom:242.820000px;}
.y93{bottom:243.000000px;}
.y13c{bottom:244.875000px;}
.y35{bottom:245.010000px;}
.yc2{bottom:248.610000px;}
.ya3{bottom:250.230000px;}
.y127{bottom:250.635000px;}
.y10e{bottom:255.090000px;}
.yab{bottom:258.225000px;}
.y11e{bottom:260.670000px;}
.y77{bottom:264.315000px;}
.y6b{bottom:266.760000px;}
.yf3{bottom:267.045000px;}
.y86{bottom:268.380000px;}
.y24{bottom:270.390000px;}
.y92{bottom:273.060000px;}
.yda{bottom:275.145000px;}
.yff{bottom:275.220000px;}
.ya2{bottom:275.430000px;}
.yc1{bottom:276.015000px;}
.y34{bottom:277.410000px;}
.yea{bottom:281.370000px;}
.yaa{bottom:285.585000px;}
.y10d{bottom:287.490000px;}
.y113{bottom:290.265000px;}
.y126{bottom:291.495000px;}
.y76{bottom:293.115000px;}
.y6a{bottom:295.560000px;}
.y13b{bottom:295.815000px;}
.y85{bottom:298.440000px;}
.ya1{bottom:300.630000px;}
.yd9{bottom:302.505000px;}
.yf2{bottom:303.090000px;}
.y11d{bottom:303.330000px;}
.yc0{bottom:303.375000px;}
.yfe{bottom:307.620000px;}
.y33{bottom:309.855000px;}
.yb3{bottom:310.065000px;}
.ya9{bottom:312.945000px;}
.ye9{bottom:313.770000px;}
.y10c{bottom:319.890000px;}
.y41{bottom:322.635000px;}
.y75{bottom:323.175000px;}
.y69{bottom:324.360000px;}
.ya0{bottom:325.830000px;}
.y112{bottom:326.265000px;}
.y91{bottom:327.090000px;}
.yd8{bottom:329.865000px;}
.y10{bottom:335.985000px;}
.ya8{bottom:340.305000px;}
.y32{bottom:342.255000px;}
.y2a{bottom:343.905000px;}
.y3c{bottom:343.980000px;}
.y17{bottom:344.010000px;}
.ybf{bottom:345.675000px;}
.y11c{bottom:345.855000px;}
.yb2{bottom:346.245000px;}
.y13a{bottom:346.935000px;}
.y84{bottom:350.070000px;}
.y68{bottom:353.190000px;}
.yf1{bottom:354.030000px;}
.y90{bottom:354.675000px;}
.yfd{bottom:354.990000px;}
.yd7{bottom:357.225000px;}
.y40{bottom:358.275000px;}
.ye8{bottom:361.335000px;}
.y111{bottom:362.265000px;}
.y23{bottom:364.785000px;}
.y45{bottom:366.660000px;}
.y5f{bottom:366.690000px;}
.y10b{bottom:367.275000px;}
.ya7{bottom:367.665000px;}
.ybe{bottom:373.035000px;}
.y11b{bottom:373.395000px;}
.y31{bottom:374.655000px;}
.y83{bottom:377.790000px;}
.y29{bottom:379.950000px;}
.y67{bottom:381.990000px;}
.yb1{bottom:382.245000px;}
.yf{bottom:383.505000px;}
.y74{bottom:384.735000px;}
.yfc{bottom:387.390000px;}
.yf0{bottom:390.030000px;}
.y5e{bottom:391.890000px;}
.y3f{bottom:393.915000px;}
.ya6{bottom:395.070000px;}
.y139{bottom:397.905000px;}
.y9b{bottom:399.570000px;}
.y16{bottom:400.890000px;}
.y19{bottom:405.645000px;}
.y82{bottom:406.590000px;}
.y30{bottom:407.055000px;}
.y22{bottom:408.570000px;}
.ye7{bottom:408.675000px;}
.y73{bottom:412.275000px;}
.y66{bottom:412.410000px;}
.y10a{bottom:414.615000px;}
.y11a{bottom:415.875000px;}
.y5d{bottom:417.090000px;}
.yb0{bottom:418.290000px;}
.yd6{bottom:419.475000px;}
.yfb{bottom:419.790000px;}
.y9a{bottom:424.770000px;}
.ye{bottom:430.845000px;}
.y81{bottom:435.390000px;}
.yef{bottom:441.000000px;}
.y72{bottom:441.075000px;}
.y5c{bottom:442.290000px;}
.y119{bottom:443.415000px;}
.y15{bottom:445.530000px;}
.yd5{bottom:446.835000px;}
.y109{bottom:447.015000px;}
.y138{bottom:448.845000px;}
.y21{bottom:452.310000px;}
.yaf{bottom:454.290000px;}
.y2f{bottom:454.575000px;}
.ybd{bottom:457.845000px;}
.y12c{bottom:458.640000px;}
.y80{bottom:464.190000px;}
.y99{bottom:466.995000px;}
.yfa{bottom:467.130000px;}
.y5b{bottom:467.490000px;}
.y71{bottom:469.875000px;}
.y64{bottom:471.135000px;}
.y118{bottom:471.315000px;}
.y14{bottom:474.330000px;}
.yee{bottom:477.000000px;}
.yd{bottom:478.230000px;}
.y108{bottom:479.415000px;}
.yce{bottom:483.990000px;}
.y137{bottom:484.845000px;}
.ybc{bottom:485.205000px;}
.y2e{bottom:487.005000px;}
.ye6{bottom:488.415000px;}
.yd4{bottom:489.315000px;}
.y98{bottom:492.195000px;}
.y5a{bottom:492.690000px;}
.y7f{bottom:493.020000px;}
.y3e{bottom:496.770000px;}
.y63{bottom:498.705000px;}
.yf9{bottom:499.575000px;}
.y12b{bottom:509.580000px;}
.y107{bottom:511.845000px;}
.ybb{bottom:512.565000px;}
.y117{bottom:514.185000px;}
.yd3{bottom:516.705000px;}
.y59{bottom:517.935000px;}
.ycd{bottom:519.990000px;}
.ye5{bottom:520.845000px;}
.y136{bottom:520.890000px;}
.y7e{bottom:521.820000px;}
.y20{bottom:524.850000px;}
.yc{bottom:526.290000px;}
.y44{bottom:527.190000px;}
.y62{bottom:527.505000px;}
.y13{bottom:530.355000px;}
.yf8{bottom:531.975000px;}
.y3d{bottom:532.410000px;}
.y2d{bottom:534.885000px;}
.yba{bottom:539.925000px;}
.yed{bottom:540.210000px;}
.y58{bottom:543.135000px;}
.y7d{bottom:551.880000px;}
.ycc{bottom:555.990000px;}
.y135{bottom:556.890000px;}
.y61{bottom:557.925000px;}
.y28{bottom:559.050000px;}
.y116{bottom:560.085000px;}
.y12a{bottom:560.550000px;}
.ye4{bottom:561.930000px;}
.yf7{bottom:564.375000px;}
.y106{bottom:566.565000px;}
.yb9{bottom:567.285000px;}
.y57{bottom:568.335000px;}
.y1f{bottom:568.590000px;}
.y2c{bottom:570.885000px;}
.yec{bottom:575.310000px;}
.yd2{bottom:576.975000px;}
.yb{bottom:577.230000px;}
.y12{bottom:587.235000px;}
.ye3{bottom:589.290000px;}
.y134{bottom:592.890000px;}
.y1a{bottom:593.070000px;}
.y56{bottom:593.535000px;}
.yd0{bottom:594.825000px;}
.y27{bottom:595.050000px;}
.y65{bottom:596.550000px;}
.y2b{bottom:606.885000px;}
.ycb{bottom:606.960000px;}
.y1b{bottom:608.070000px;}
.yeb{bottom:610.590000px;}
.y1e{bottom:612.330000px;}
.yd1{bottom:614.955000px;}
.y115{bottom:615.210000px;}
.ye2{bottom:616.680000px;}
.ycf{bottom:617.685000px;}
.y55{bottom:618.735000px;}
.y11{bottom:619.995000px;}
.y3b{bottom:620.070000px;}
.y133{bottom:628.890000px;}
.y18{bottom:631.590000px;}
.y12e{bottom:642.210000px;}
.yca{bottom:642.960000px;}
.y54{bottom:643.935000px;}
.ye1{bottom:644.040000px;}
.y97{bottom:645.270000px;}
.yb8{bottom:661.500000px;}
.y1d{bottom:666.465000px;}
.y4c{bottom:668.340000px;}
.y53{bottom:669.135000px;}
.ya{bottom:674.070000px;}
.yc9{bottom:678.960000px;}
.y114{bottom:680.010000px;}
.y3a{bottom:692.070000px;}
.y52{bottom:694.365000px;}
.y60{bottom:704.160000px;}
.y12d{bottom:707.010000px;}
.y96{bottom:710.100000px;}
.y51{bottom:719.565000px;}
.yb7{bottom:726.300000px;}
.yc8{bottom:730.110000px;}
.y1c{bottom:731.310000px;}
.y4b{bottom:733.170000px;}
.y132{bottom:737.355000px;}
.h9{height:60.660000px;}
.h15{height:62.352000px;}
.h21{height:62.476704px;}
.h1b{height:71.200898px;}
.h16{height:72.951840px;}
.h17{height:73.076544px;}
.h18{height:80.937773px;}
.h8{height:82.928160px;}
.h19{height:83.052864px;}
.h1e{height:83.787539px;}
.h1d{height:83.930766px;}
.h1c{height:86.255508px;}
.h25{height:88.539840px;}
.h26{height:88.664544px;}
.h10{height:89.856000px;}
.h11{height:89.975808px;}
.h4{height:93.528000px;}
.h5{height:93.652704px;}
.hf{height:94.752000px;}
.h1a{height:98.051133px;}
.h20{height:98.373516px;}
.h1f{height:98.498039px;}
.h22{height:98.516160px;}
.h23{height:98.640864px;}
.h2{height:103.977070px;}
.h24{height:104.101594px;}
.h7{height:104.127840px;}
.he{height:104.252544px;}
.h3{height:105.210720px;}
.h14{height:114.104160px;}
.hc{height:140.292000px;}
.hd{height:140.416704px;}
.h1{height:145.069805px;}
.hb{height:186.785156px;}
.ha{height:186.909680px;}
.h6{height:207.331523px;}
.h12{height:207.456047px;}
.h13{height:260.132544px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x20{left:25.739979px;}
.x4f{left:34.847979px;}
.x48{left:45.755979px;}
.x39{left:47.771979px;}
.x44{left:59.399979px;}
.x1e{left:63.035979px;}
.x21{left:66.239979px;}
.x34{left:69.875979px;}
.x59{left:75.383979px;}
.x27{left:81.179979px;}
.x6e{left:82.799979px;}
.xb{left:90.827979px;}
.x60{left:92.159979px;}
.x1{left:97.523979px;}
.x1f{left:103.535979px;}
.x25{left:105.947979px;}
.x23{left:119.447979px;}
.x6b{left:131.327979px;}
.x63{left:139.499979px;}
.xc{left:144.827979px;}
.x61{left:146.159979px;}
.x4c{left:151.274979px;}
.x24{left:153.284979px;}
.x62{left:179.999979px;}
.x64{left:193.499979px;}
.x67{left:198.824979px;}
.x68{left:252.824979px;}
.x69{left:257.909979px;}
.x66{left:270.509979px;}
.x5e{left:283.289979px;}
.x6f{left:286.709979px;}
.x6d{left:293.834979px;}
.x46{left:297.899979px;}
.x65{left:307.229979px;}
.x5f{left:313.349979px;}
.x3b{left:322.454979px;}
.x42{left:324.074979px;}
.x71{left:345.629979px;}
.x26{left:363.599979px;}
.x49{left:368.789979px;}
.x22{left:371.009979px;}
.x6c{left:377.534979px;}
.x47{left:379.079979px;}
.x4{left:383.369979px;}
.x6a{left:384.809979px;}
.x70{left:386.534979px;}
.x3{left:389.309979px;}
.x2e{left:394.229979px;}
.x51{left:398.669979px;}
.x43{left:410.939979px;}
.x17{left:420.509979px;}
.x28{left:434.879979px;}
.x2{left:448.919979px;}
.x2d{left:458.744979px;}
.x4a{left:472.064979px;}
.x15{left:480.239979px;}
.x29{left:488.804979px;}
.x1c{left:492.269979px;}
.xd{left:494.279979px;}
.x16{left:501.509979px;}
.x11{left:507.884979px;}
.x32{left:519.149979px;}
.x12{left:524.909979px;}
.x1b{left:526.529979px;}
.x1d{left:531.719979px;}
.x1a{left:536.249979px;}
.x5d{left:540.074979px;}
.x37{left:541.184979px;}
.x31{left:543.089979px;}
.x72{left:553.319979px;}
.xa{left:579.599979px;}
.x73{left:587.489979px;}
.x18{left:592.769979px;}
.x14{left:594.254979px;}
.x13{left:595.544979px;}
.x19{left:627.014979px;}
.x74{left:629.789979px;}
.x3a{left:642.674979px;}
.xe{left:667.649979px;}
.x4b{left:677.669979px;}
.x2b{left:694.439979px;}
.x2a{left:699.089979px;}
.xf{left:708.149979px;}
.x10{left:721.649979px;}
.x38{left:753.329979px;}
.x45{left:756.209979px;}
.x3e{left:762.914979px;}
.x3f{left:765.179979px;}
.x3c{left:768.134979px;}
.x50{left:771.629979px;}
.x2c{left:789.119979px;}
.x41{left:796.754979px;}
.x40{left:799.049979px;}
.x33{left:851.144979px;}
.x4d{left:855.824979px;}
.x3d{left:878.324979px;}
.x2f{left:885.884979px;}
.x4e{left:896.324979px;}
.x30{left:904.889979px;}
.x57{left:923.654979px;}
.x54{left:946.289979px;}
.x55{left:952.409979px;}
.x58{left:964.154979px;}
.x5b{left:967.499979px;}
.x52{left:983.264979px;}
.x56{left:992.909979px;}
.x5c{left:1007.999979px;}
.x7{left:1018.694979px;}
.x53{left:1023.764979px;}
.x8{left:1025.534979px;}
.x6{left:1033.994979px;}
.x5{left:1044.254979px;}
.x9{left:1071.074979px;}
.x5a{left:1084.679979px;}
.x35{left:1171.259979px;}
.x36{left:1205.099979px;}
@media print{
.v2{vertical-align:-30.453333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:28.800000pt;}
.v1{vertical-align:32.000000pt;}
.ls12{letter-spacing:-0.277867pt;}
.ls23{letter-spacing:-0.091733pt;}
.lsf{letter-spacing:-0.074133pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.038400pt;}
.ls22{letter-spacing:-0.037760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.056533pt;}
.ls1a{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.096533pt;}
.lsc{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.194133pt;}
.ls10{letter-spacing:0.217600pt;}
.lsa{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.294400pt;}
.ls13{letter-spacing:0.320000pt;}
.ls16{letter-spacing:3.552000pt;}
.ls1f{letter-spacing:35.693568pt;}
.ls1d{letter-spacing:35.806080pt;}
.ls1e{letter-spacing:43.681920pt;}
.ls3{letter-spacing:52.689621pt;}
.ls4{letter-spacing:52.802133pt;}
.ls19{letter-spacing:56.750720pt;}
.ls6{letter-spacing:60.126080pt;}
.ls8{letter-spacing:69.067008pt;}
.ls2{letter-spacing:69.179520pt;}
.ls1b{letter-spacing:72.442368pt;}
.ls15{letter-spacing:72.554880pt;}
.ls5{letter-spacing:83.806080pt;}
.ls14{letter-spacing:83.934080pt;}
.ls18{letter-spacing:91.569408pt;}
.ls17{letter-spacing:91.681920pt;}
.lse{letter-spacing:94.067200pt;}
.lsd{letter-spacing:94.112000pt;}
.ls11{letter-spacing:109.952000pt;}
.ws6{word-spacing:-192.000000pt;}
.wsc{word-spacing:-68.354048pt;}
.ws24{word-spacing:-58.394880pt;}
.ws18{word-spacing:-52.643072pt;}
.ws7{word-spacing:-36.896768pt;}
.ws8{word-spacing:-36.864000pt;}
.wsd{word-spacing:-29.982720pt;}
.ws17{word-spacing:-29.285120pt;}
.ws14{word-spacing:-27.741952pt;}
.ws4{word-spacing:-27.555413pt;}
.ws22{word-spacing:-27.417813pt;}
.ws1c{word-spacing:-27.394048pt;}
.ws5{word-spacing:-27.361280pt;}
.ws1b{word-spacing:-25.919488pt;}
.ws1a{word-spacing:-25.886720pt;}
.ws20{word-spacing:-24.608768pt;}
.wsa{word-spacing:-24.576000pt;}
.ws21{word-spacing:-24.534635pt;}
.ws1f{word-spacing:-24.512000pt;}
.ws1d{word-spacing:-23.265280pt;}
.ws23{word-spacing:-21.823488pt;}
.ws2{word-spacing:-21.790720pt;}
.wsf{word-spacing:-19.258880pt;}
.ws11{word-spacing:-19.237120pt;}
.ws10{word-spacing:-19.202048pt;}
.wse{word-spacing:-19.169280pt;}
.ws15{word-spacing:-16.416768pt;}
.ws9{word-spacing:-16.384000pt;}
.ws16{word-spacing:-16.342635pt;}
.ws12{word-spacing:-15.406720pt;}
.ws3{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:8.540480pt;}
.wsb{word-spacing:70.704640pt;}
.ws13{word-spacing:80.522411pt;}
.ws19{word-spacing:104.225707pt;}
.ws1e{word-spacing:113.589760pt;}
._a{margin-left:-19.981312pt;}
._b{margin-left:-13.440000pt;}
._7{margin-left:-8.448000pt;}
._d{margin-left:-6.082560pt;}
._c{margin-left:-4.800000pt;}
._5{margin-left:-3.329280pt;}
._2{margin-left:-1.938560pt;}
._0{margin-left:-0.894720pt;}
._1{width:1.043840pt;}
._3{width:1.938560pt;}
._6{width:3.648213pt;}
._8{width:7.998720pt;}
._e{width:8.971520pt;}
._9{width:97.513387pt;}
._4{width:1214.943787pt;}
.fs1a{font-size:59.520000pt;}
.fs1b{font-size:59.648000pt;}
.fsa{font-size:64.000000pt;}
.fs18{font-size:64.128000pt;}
.fs9{font-size:68.480000pt;}
.fs20{font-size:68.608000pt;}
.fs2{font-size:71.040000pt;}
.fs1c{font-size:72.320000pt;}
.fs14{font-size:74.880000pt;}
.fs15{font-size:75.008000pt;}
.fs8{font-size:76.800000pt;}
.fs7{font-size:76.928000pt;}
.fs19{font-size:81.280000pt;}
.fs1f{font-size:81.408000pt;}
.fs6{font-size:85.120000pt;}
.fsf{font-size:85.248000pt;}
.fs1d{font-size:90.880000pt;}
.fs1e{font-size:91.008000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs17{font-size:101.120000pt;}
.fs16{font-size:101.248000pt;}
.fs1{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs13{font-size:117.120000pt;}
.fsd{font-size:144.000000pt;}
.fse{font-size:144.128000pt;}
.fs0{font-size:149.120000pt;}
.fsc{font-size:192.000000pt;}
.fsb{font-size:192.128000pt;}
.fs5{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs12{font-size:267.008000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:11.520000pt;}
.y39{bottom:11.616000pt;}
.y125{bottom:14.880000pt;}
.y131{bottom:17.056000pt;}
.y8f{bottom:18.944000pt;}
.y4e{bottom:23.264000pt;}
.y140{bottom:23.296000pt;}
.y48{bottom:24.128000pt;}
.y50{bottom:28.992000pt;}
.yae{bottom:32.864000pt;}
.y4a{bottom:34.400000pt;}
.y9{bottom:41.152000pt;}
.y4d{bottom:42.464000pt;}
.y8e{bottom:43.584000pt;}
.y124{bottom:43.680000pt;}
.y4f{bottom:44.352000pt;}
.y130{bottom:45.888000pt;}
.y38{bottom:47.936000pt;}
.y7c{bottom:48.288000pt;}
.yad{bottom:52.064000pt;}
.y13f{bottom:57.056000pt;}
.ye0{bottom:58.592000pt;}
.yb6{bottom:59.232000pt;}
.y123{bottom:66.400000pt;}
.y8d{bottom:69.184000pt;}
.y8{bottom:69.952000pt;}
.y37{bottom:70.976000pt;}
.y105{bottom:71.808000pt;}
.y4{bottom:73.984000pt;}
.y12f{bottom:74.688000pt;}
.y26{bottom:78.656000pt;}
.y70{bottom:82.528000pt;}
.ydf{bottom:82.912000pt;}
.yc7{bottom:85.920000pt;}
.y9f{bottom:87.904000pt;}
.y47{bottom:88.096000pt;}
.yb5{bottom:89.824000pt;}
.y8c{bottom:94.784000pt;}
.y13e{bottom:94.912000pt;}
.y49{bottom:96.416000pt;}
.y7b{bottom:98.528000pt;}
.y7{bottom:98.752000pt;}
.y104{bottom:100.608000pt;}
.y122{bottom:104.320000pt;}
.y6f{bottom:107.008000pt;}
.yc6{bottom:110.272000pt;}
.y9e{bottom:110.304000pt;}
.y142{bottom:112.640000pt;}
.yf6{bottom:114.656000pt;}
.y3{bottom:119.744000pt;}
.yb4{bottom:120.224000pt;}
.yde{bottom:120.544000pt;}
.y8b{bottom:121.504000pt;}
.y7a{bottom:124.128000pt;}
.y13d{bottom:126.912000pt;}
.y6{bottom:127.552000pt;}
.y121{bottom:128.800000pt;}
.y103{bottom:129.408000pt;}
.y6e{bottom:132.640000pt;}
.y9d{bottom:132.704000pt;}
.yc5{bottom:134.586667pt;}
.y8a{bottom:137.093333pt;}
.ydd{bottom:144.866667pt;}
.y129{bottom:148.706667pt;}
.y79{bottom:150.880000pt;}
.y9c{bottom:155.106667pt;}
.y5{bottom:156.346667pt;}
.y102{bottom:158.240000pt;}
.y6d{bottom:159.680000pt;}
.yf5{bottom:159.933333pt;}
.y43{bottom:160.706667pt;}
.y89{bottom:161.733333pt;}
.y95{bottom:165.733333pt;}
.y120{bottom:167.226667pt;}
.y110{bottom:169.146667pt;}
.y2{bottom:170.786667pt;}
.yc4{bottom:172.346667pt;}
.ydc{bottom:182.466667pt;}
.y46{bottom:184.160000pt;}
.y141{bottom:186.853333pt;}
.y101{bottom:187.040000pt;}
.y128{bottom:187.106667pt;}
.y88{bottom:187.333333pt;}
.y36{bottom:188.986667pt;}
.y94{bottom:190.373333pt;}
.yf4{bottom:191.933333pt;}
.y42{bottom:192.386667pt;}
.yc3{bottom:196.666667pt;}
.y10f{bottom:197.946667pt;}
.ya4{bottom:200.000000pt;}
.y25{bottom:201.440000pt;}
.yac{bottom:205.053333pt;}
.ydb{bottom:206.786667pt;}
.y11f{bottom:207.226667pt;}
.y78{bottom:210.306667pt;}
.y6c{bottom:212.640000pt;}
.y87{bottom:212.933333pt;}
.y1{bottom:215.586667pt;}
.y100{bottom:215.840000pt;}
.y93{bottom:216.000000pt;}
.y13c{bottom:217.666667pt;}
.y35{bottom:217.786667pt;}
.yc2{bottom:220.986667pt;}
.ya3{bottom:222.426667pt;}
.y127{bottom:222.786667pt;}
.y10e{bottom:226.746667pt;}
.yab{bottom:229.533333pt;}
.y11e{bottom:231.706667pt;}
.y77{bottom:234.946667pt;}
.y6b{bottom:237.120000pt;}
.yf3{bottom:237.373333pt;}
.y86{bottom:238.560000pt;}
.y24{bottom:240.346667pt;}
.y92{bottom:242.720000pt;}
.yda{bottom:244.573333pt;}
.yff{bottom:244.640000pt;}
.ya2{bottom:244.826667pt;}
.yc1{bottom:245.346667pt;}
.y34{bottom:246.586667pt;}
.yea{bottom:250.106667pt;}
.yaa{bottom:253.853333pt;}
.y10d{bottom:255.546667pt;}
.y113{bottom:258.013333pt;}
.y126{bottom:259.106667pt;}
.y76{bottom:260.546667pt;}
.y6a{bottom:262.720000pt;}
.y13b{bottom:262.946667pt;}
.y85{bottom:265.280000pt;}
.ya1{bottom:267.226667pt;}
.yd9{bottom:268.893333pt;}
.yf2{bottom:269.413333pt;}
.y11d{bottom:269.626667pt;}
.yc0{bottom:269.666667pt;}
.yfe{bottom:273.440000pt;}
.y33{bottom:275.426667pt;}
.yb3{bottom:275.613333pt;}
.ya9{bottom:278.173333pt;}
.ye9{bottom:278.906667pt;}
.y10c{bottom:284.346667pt;}
.y41{bottom:286.786667pt;}
.y75{bottom:287.266667pt;}
.y69{bottom:288.320000pt;}
.ya0{bottom:289.626667pt;}
.y112{bottom:290.013333pt;}
.y91{bottom:290.746667pt;}
.yd8{bottom:293.213333pt;}
.y10{bottom:298.653333pt;}
.ya8{bottom:302.493333pt;}
.y32{bottom:304.226667pt;}
.y2a{bottom:305.693333pt;}
.y3c{bottom:305.760000pt;}
.y17{bottom:305.786667pt;}
.ybf{bottom:307.266667pt;}
.y11c{bottom:307.426667pt;}
.yb2{bottom:307.773333pt;}
.y13a{bottom:308.386667pt;}
.y84{bottom:311.173333pt;}
.y68{bottom:313.946667pt;}
.yf1{bottom:314.693333pt;}
.y90{bottom:315.266667pt;}
.yfd{bottom:315.546667pt;}
.yd7{bottom:317.533333pt;}
.y40{bottom:318.466667pt;}
.ye8{bottom:321.186667pt;}
.y111{bottom:322.013333pt;}
.y23{bottom:324.253333pt;}
.y45{bottom:325.920000pt;}
.y5f{bottom:325.946667pt;}
.y10b{bottom:326.466667pt;}
.ya7{bottom:326.813333pt;}
.ybe{bottom:331.586667pt;}
.y11b{bottom:331.906667pt;}
.y31{bottom:333.026667pt;}
.y83{bottom:335.813333pt;}
.y29{bottom:337.733333pt;}
.y67{bottom:339.546667pt;}
.yb1{bottom:339.773333pt;}
.yf{bottom:340.893333pt;}
.y74{bottom:341.986667pt;}
.yfc{bottom:344.346667pt;}
.yf0{bottom:346.693333pt;}
.y5e{bottom:348.346667pt;}
.y3f{bottom:350.146667pt;}
.ya6{bottom:351.173333pt;}
.y139{bottom:353.693333pt;}
.y9b{bottom:355.173333pt;}
.y16{bottom:356.346667pt;}
.y19{bottom:360.573333pt;}
.y82{bottom:361.413333pt;}
.y30{bottom:361.826667pt;}
.y22{bottom:363.173333pt;}
.ye7{bottom:363.266667pt;}
.y73{bottom:366.466667pt;}
.y66{bottom:366.586667pt;}
.y10a{bottom:368.546667pt;}
.y11a{bottom:369.666667pt;}
.y5d{bottom:370.746667pt;}
.yb0{bottom:371.813333pt;}
.yd6{bottom:372.866667pt;}
.yfb{bottom:373.146667pt;}
.y9a{bottom:377.573333pt;}
.ye{bottom:382.973333pt;}
.y81{bottom:387.013333pt;}
.yef{bottom:392.000000pt;}
.y72{bottom:392.066667pt;}
.y5c{bottom:393.146667pt;}
.y119{bottom:394.146667pt;}
.y15{bottom:396.026667pt;}
.yd5{bottom:397.186667pt;}
.y109{bottom:397.346667pt;}
.y138{bottom:398.973333pt;}
.y21{bottom:402.053333pt;}
.yaf{bottom:403.813333pt;}
.y2f{bottom:404.066667pt;}
.ybd{bottom:406.973333pt;}
.y12c{bottom:407.680000pt;}
.y80{bottom:412.613333pt;}
.y99{bottom:415.106667pt;}
.yfa{bottom:415.226667pt;}
.y5b{bottom:415.546667pt;}
.y71{bottom:417.666667pt;}
.y64{bottom:418.786667pt;}
.y118{bottom:418.946667pt;}
.y14{bottom:421.626667pt;}
.yee{bottom:424.000000pt;}
.yd{bottom:425.093333pt;}
.y108{bottom:426.146667pt;}
.yce{bottom:430.213333pt;}
.y137{bottom:430.973333pt;}
.ybc{bottom:431.293333pt;}
.y2e{bottom:432.893333pt;}
.ye6{bottom:434.146667pt;}
.yd4{bottom:434.946667pt;}
.y98{bottom:437.506667pt;}
.y5a{bottom:437.946667pt;}
.y7f{bottom:438.240000pt;}
.y3e{bottom:441.573333pt;}
.y63{bottom:443.293333pt;}
.yf9{bottom:444.066667pt;}
.y12b{bottom:452.960000pt;}
.y107{bottom:454.973333pt;}
.ybb{bottom:455.613333pt;}
.y117{bottom:457.053333pt;}
.yd3{bottom:459.293333pt;}
.y59{bottom:460.386667pt;}
.ycd{bottom:462.213333pt;}
.ye5{bottom:462.973333pt;}
.y136{bottom:463.013333pt;}
.y7e{bottom:463.840000pt;}
.y20{bottom:466.533333pt;}
.yc{bottom:467.813333pt;}
.y44{bottom:468.613333pt;}
.y62{bottom:468.893333pt;}
.y13{bottom:471.426667pt;}
.yf8{bottom:472.866667pt;}
.y3d{bottom:473.253333pt;}
.y2d{bottom:475.453333pt;}
.yba{bottom:479.933333pt;}
.yed{bottom:480.186667pt;}
.y58{bottom:482.786667pt;}
.y7d{bottom:490.560000pt;}
.ycc{bottom:494.213333pt;}
.y135{bottom:495.013333pt;}
.y61{bottom:495.933333pt;}
.y28{bottom:496.933333pt;}
.y116{bottom:497.853333pt;}
.y12a{bottom:498.266667pt;}
.ye4{bottom:499.493333pt;}
.yf7{bottom:501.666667pt;}
.y106{bottom:503.613333pt;}
.yb9{bottom:504.253333pt;}
.y57{bottom:505.186667pt;}
.y1f{bottom:505.413333pt;}
.y2c{bottom:507.453333pt;}
.yec{bottom:511.386667pt;}
.yd2{bottom:512.866667pt;}
.yb{bottom:513.093333pt;}
.y12{bottom:521.986667pt;}
.ye3{bottom:523.813333pt;}
.y134{bottom:527.013333pt;}
.y1a{bottom:527.173333pt;}
.y56{bottom:527.586667pt;}
.yd0{bottom:528.733333pt;}
.y27{bottom:528.933333pt;}
.y65{bottom:530.266667pt;}
.y2b{bottom:539.453333pt;}
.ycb{bottom:539.520000pt;}
.y1b{bottom:540.506667pt;}
.yeb{bottom:542.746667pt;}
.y1e{bottom:544.293333pt;}
.yd1{bottom:546.626667pt;}
.y115{bottom:546.853333pt;}
.ye2{bottom:548.160000pt;}
.ycf{bottom:549.053333pt;}
.y55{bottom:549.986667pt;}
.y11{bottom:551.106667pt;}
.y3b{bottom:551.173333pt;}
.y133{bottom:559.013333pt;}
.y18{bottom:561.413333pt;}
.y12e{bottom:570.853333pt;}
.yca{bottom:571.520000pt;}
.y54{bottom:572.386667pt;}
.ye1{bottom:572.480000pt;}
.y97{bottom:573.573333pt;}
.yb8{bottom:588.000000pt;}
.y1d{bottom:592.413333pt;}
.y4c{bottom:594.080000pt;}
.y53{bottom:594.786667pt;}
.ya{bottom:599.173333pt;}
.yc9{bottom:603.520000pt;}
.y114{bottom:604.453333pt;}
.y3a{bottom:615.173333pt;}
.y52{bottom:617.213333pt;}
.y60{bottom:625.920000pt;}
.y12d{bottom:628.453333pt;}
.y96{bottom:631.200000pt;}
.y51{bottom:639.613333pt;}
.yb7{bottom:645.600000pt;}
.yc8{bottom:648.986667pt;}
.y1c{bottom:650.053333pt;}
.y4b{bottom:651.706667pt;}
.y132{bottom:655.426667pt;}
.h9{height:53.920000pt;}
.h15{height:55.424000pt;}
.h21{height:55.534848pt;}
.h1b{height:63.289687pt;}
.h16{height:64.846080pt;}
.h17{height:64.956928pt;}
.h18{height:71.944688pt;}
.h8{height:73.713920pt;}
.h19{height:73.824768pt;}
.h1e{height:74.477812pt;}
.h1d{height:74.605125pt;}
.h1c{height:76.671562pt;}
.h25{height:78.702080pt;}
.h26{height:78.812928pt;}
.h10{height:79.872000pt;}
.h11{height:79.978496pt;}
.h4{height:83.136000pt;}
.h5{height:83.246848pt;}
.hf{height:84.224000pt;}
.h1a{height:87.156562pt;}
.h20{height:87.443125pt;}
.h1f{height:87.553812pt;}
.h22{height:87.569920pt;}
.h23{height:87.680768pt;}
.h2{height:92.424062pt;}
.h24{height:92.534750pt;}
.h7{height:92.558080pt;}
.he{height:92.668928pt;}
.h3{height:93.520640pt;}
.h14{height:101.425920pt;}
.hc{height:124.704000pt;}
.hd{height:124.814848pt;}
.h1{height:128.950937pt;}
.hb{height:166.031250pt;}
.ha{height:166.141938pt;}
.h6{height:184.294687pt;}
.h12{height:184.405375pt;}
.h13{height:231.228928pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x20{left:22.879981pt;}
.x4f{left:30.975981pt;}
.x48{left:40.671981pt;}
.x39{left:42.463981pt;}
.x44{left:52.799981pt;}
.x1e{left:56.031981pt;}
.x21{left:58.879981pt;}
.x34{left:62.111981pt;}
.x59{left:67.007981pt;}
.x27{left:72.159981pt;}
.x6e{left:73.599981pt;}
.xb{left:80.735981pt;}
.x60{left:81.919981pt;}
.x1{left:86.687981pt;}
.x1f{left:92.031981pt;}
.x25{left:94.175981pt;}
.x23{left:106.175981pt;}
.x6b{left:116.735981pt;}
.x63{left:123.999981pt;}
.xc{left:128.735981pt;}
.x61{left:129.919981pt;}
.x4c{left:134.466648pt;}
.x24{left:136.253314pt;}
.x62{left:159.999981pt;}
.x64{left:171.999981pt;}
.x67{left:176.733314pt;}
.x68{left:224.733314pt;}
.x69{left:229.253314pt;}
.x66{left:240.453314pt;}
.x5e{left:251.813314pt;}
.x6f{left:254.853314pt;}
.x6d{left:261.186648pt;}
.x46{left:264.799981pt;}
.x65{left:273.093314pt;}
.x5f{left:278.533314pt;}
.x3b{left:286.626648pt;}
.x42{left:288.066648pt;}
.x71{left:307.226648pt;}
.x26{left:323.199981pt;}
.x49{left:327.813314pt;}
.x22{left:329.786648pt;}
.x6c{left:335.586648pt;}
.x47{left:336.959981pt;}
.x4{left:340.773314pt;}
.x6a{left:342.053314pt;}
.x70{left:343.586648pt;}
.x3{left:346.053314pt;}
.x2e{left:350.426648pt;}
.x51{left:354.373314pt;}
.x43{left:365.279981pt;}
.x17{left:373.786648pt;}
.x28{left:386.559981pt;}
.x2{left:399.039981pt;}
.x2d{left:407.773314pt;}
.x4a{left:419.613314pt;}
.x15{left:426.879981pt;}
.x29{left:434.493314pt;}
.x1c{left:437.573314pt;}
.xd{left:439.359981pt;}
.x16{left:445.786648pt;}
.x11{left:451.453314pt;}
.x32{left:461.466648pt;}
.x12{left:466.586648pt;}
.x1b{left:468.026648pt;}
.x1d{left:472.639981pt;}
.x1a{left:476.666648pt;}
.x5d{left:480.066648pt;}
.x37{left:481.053314pt;}
.x31{left:482.746648pt;}
.x72{left:491.839981pt;}
.xa{left:515.199981pt;}
.x73{left:522.213314pt;}
.x18{left:526.906648pt;}
.x14{left:528.226648pt;}
.x13{left:529.373314pt;}
.x19{left:557.346648pt;}
.x74{left:559.813314pt;}
.x3a{left:571.266648pt;}
.xe{left:593.466648pt;}
.x4b{left:602.373314pt;}
.x2b{left:617.279981pt;}
.x2a{left:621.413314pt;}
.xf{left:629.466648pt;}
.x10{left:641.466648pt;}
.x38{left:669.626648pt;}
.x45{left:672.186648pt;}
.x3e{left:678.146648pt;}
.x3f{left:680.159981pt;}
.x3c{left:682.786648pt;}
.x50{left:685.893314pt;}
.x2c{left:701.439981pt;}
.x41{left:708.226648pt;}
.x40{left:710.266648pt;}
.x33{left:756.573314pt;}
.x4d{left:760.733314pt;}
.x3d{left:780.733314pt;}
.x2f{left:787.453314pt;}
.x4e{left:796.733314pt;}
.x30{left:804.346648pt;}
.x57{left:821.026648pt;}
.x54{left:841.146648pt;}
.x55{left:846.586648pt;}
.x58{left:857.026648pt;}
.x5b{left:859.999981pt;}
.x52{left:874.013314pt;}
.x56{left:882.586648pt;}
.x5c{left:895.999981pt;}
.x7{left:905.506648pt;}
.x53{left:910.013314pt;}
.x8{left:911.586648pt;}
.x6{left:919.106648pt;}
.x5{left:928.226648pt;}
.x9{left:952.066648pt;}
.x5a{left:964.159981pt;}
.x35{left:1041.119981pt;}
.x36{left:1071.199981pt;}
}




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