
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_be73d440fb68184e8da6c7dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_774d08911bffbced1cda158e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_a679d02d5be7abaf7e912ec6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_af6c8971fd1b9bd47314a974.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_b43eb36b655de64466fe8be1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_4da2d6caf03dffdc6f6e623c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_ff96cc432dfa5726a22378fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_9d824a854c1b02e2db12d4af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_828a8c8024e0e8b444a9dece.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_c276d8597ddcff735ff4cc60.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_bff67d13c6e72370fca43d6b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;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_ab3635bdf96753fb1a333695.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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);}
.v1{vertical-align:-77.760000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.908000px;}
.lse{letter-spacing:-1.458000px;}
.lsf{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.466800px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.089400px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls1{letter-spacing:2.160000px;}
.ls13{letter-spacing:16.306560px;}
.ls12{letter-spacing:46.546560px;}
.lsc{letter-spacing:63.826560px;}
.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;}
}
.wsd{word-spacing:-60.480000px;}
.wsb{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.653200px;}
.ws5{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.662000px;}
.ws7{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._9{margin-left:-3.473280px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.898880px;}
._5{width:5.929920px;}
._6{width:7.283520px;}
._7{width:8.593920px;}
._c{width:9.630240px;}
._b{width:10.664640px;}
._17{width:11.733600px;}
._12{width:13.487040px;}
._13{width:16.853760px;}
._14{width:18.541440px;}
._18{width:20.451840px;}
._d{width:21.484800px;}
._e{width:23.163840px;}
._16{width:24.520320px;}
._15{width:26.012160px;}
._11{width:27.509760px;}
._10{width:28.607040px;}
._f{width:29.816640px;}
._19{width:31.302720px;}
._1c{width:57.093120px;}
._1a{width:91.695360px;}
._1b{width:210.228480px;}
._8{width:1190.087520px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.235500px;}
.y42{bottom:3.600000px;}
.y5{bottom:3.960000px;}
.yd6{bottom:5.025000px;}
.ydc{bottom:5.029500px;}
.ye8{bottom:5.040000px;}
.y59{bottom:5.370000px;}
.y9d{bottom:5.385000px;}
.ye7{bottom:5.400000px;}
.y2{bottom:7.920000px;}
.y56{bottom:8.635500px;}
.y41{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y9c{bottom:23.745000px;}
.y9f{bottom:24.105000px;}
.y55{bottom:24.115500px;}
.ya2{bottom:24.150000px;}
.y49{bottom:32.791500px;}
.y40{bottom:38.160000px;}
.y54{bottom:41.794500px;}
.y3{bottom:44.280000px;}
.y48{bottom:53.674500px;}
.y3f{bottom:55.440000px;}
.y53{bottom:57.634500px;}
.y7{bottom:57.636000px;}
.y47{bottom:66.994500px;}
.y3e{bottom:72.720000px;}
.y52{bottom:73.114500px;}
.y51{bottom:86.074500px;}
.y46{bottom:86.434500px;}
.y3d{bottom:90.000000px;}
.yf1{bottom:91.476000px;}
.y50{bottom:92.194500px;}
.y57{bottom:102.276000px;}
.yf0{bottom:106.596000px;}
.y3c{bottom:107.325000px;}
.y4f{bottom:108.034500px;}
.y131{bottom:109.116000px;}
.y43{bottom:116.320500px;}
.y91{bottom:119.556000px;}
.y4e{bottom:123.514500px;}
.y3b{bottom:124.605000px;}
.y130{bottom:127.836000px;}
.ydd{bottom:131.796000px;}
.y90{bottom:136.836000px;}
.y4d{bottom:139.354500px;}
.y3a{bottom:141.885000px;}
.yc4{bottom:144.792000px;}
.y12f{bottom:145.152000px;}
.ydb{bottom:146.605500px;}
.y45{bottom:148.714500px;}
.y8f{bottom:154.155000px;}
.y4c{bottom:154.834500px;}
.y39{bottom:159.165000px;}
.y44{bottom:159.544500px;}
.yc3{bottom:162.075000px;}
.yda{bottom:165.690000px;}
.y4b{bottom:169.984500px;}
.y8e{bottom:171.435000px;}
.y38{bottom:176.445000px;}
.yc2{bottom:179.355000px;}
.yd9{bottom:185.130000px;}
.y8d{bottom:188.715000px;}
.y37{bottom:193.725000px;}
.y12e{bottom:196.635000px;}
.yc1{bottom:197.715000px;}
.yd8{bottom:204.570000px;}
.y8c{bottom:205.995000px;}
.y36{bottom:210.645000px;}
.y12d{bottom:213.915000px;}
.yc0{bottom:216.075000px;}
.y8b{bottom:223.275000px;}
.yd7{bottom:224.010000px;}
.y160{bottom:224.715000px;}
.y35{bottom:227.925000px;}
.y10d{bottom:229.395000px;}
.y12c{bottom:231.195000px;}
.ybf{bottom:234.435000px;}
.y8a{bottom:240.555000px;}
.y15f{bottom:243.435000px;}
.yd5{bottom:243.450000px;}
.y34{bottom:245.235000px;}
.y10c{bottom:248.115000px;}
.y12b{bottom:249.915000px;}
.ybe{bottom:252.795000px;}
.y89{bottom:257.835000px;}
.y15e{bottom:260.715000px;}
.y33{bottom:262.515000px;}
.yd4{bottom:262.530000px;}
.y10b{bottom:266.475000px;}
.ybd{bottom:270.795000px;}
.y88{bottom:275.145000px;}
.y12a{bottom:277.665000px;}
.y15d{bottom:278.025000px;}
.y32{bottom:279.795000px;}
.y10a{bottom:285.225000px;}
.yd3{bottom:287.025000px;}
.y87{bottom:292.425000px;}
.y15c{bottom:295.305000px;}
.y129{bottom:296.025000px;}
.y31{bottom:297.075000px;}
.ybc{bottom:297.465000px;}
.y109{bottom:303.945000px;}
.yd{bottom:305.385000px;}
.y86{bottom:309.345000px;}
.y15b{bottom:312.585000px;}
.y30{bottom:314.355000px;}
.ybb{bottom:314.745000px;}
.yd2{bottom:315.105000px;}
.y108{bottom:322.305000px;}
.y85{bottom:326.625000px;}
.y15a{bottom:329.505000px;}
.y2f{bottom:331.635000px;}
.yba{bottom:332.025000px;}
.yd1{bottom:333.465000px;}
.y84{bottom:343.905000px;}
.y159{bottom:346.785000px;}
.y1b{bottom:347.475000px;}
.y2e{bottom:348.915000px;}
.yb9{bottom:349.305000px;}
.y107{bottom:350.025000px;}
.y128{bottom:351.825000px;}
.yd0{bottom:352.185000px;}
.y83{bottom:361.185000px;}
.y158{bottom:364.065000px;}
.y2d{bottom:366.225000px;}
.yb8{bottom:366.585000px;}
.y106{bottom:368.745000px;}
.ycf{bottom:370.905000px;}
.y1a{bottom:371.985000px;}
.y82{bottom:378.465000px;}
.y127{bottom:379.545000px;}
.y157{bottom:381.345000px;}
.y2c{bottom:384.225000px;}
.yb7{bottom:384.945000px;}
.y105{bottom:387.465000px;}
.yce{bottom:389.265000px;}
.y81{bottom:395.745000px;}
.y19{bottom:396.105000px;}
.y126{bottom:398.265000px;}
.y156{bottom:398.625000px;}
.y104{bottom:405.870000px;}
.ycd{bottom:407.670000px;}
.y2b{bottom:410.145000px;}
.yb6{bottom:411.630000px;}
.y80{bottom:413.070000px;}
.y155{bottom:415.950000px;}
.y125{bottom:416.670000px;}
.yef{bottom:419.190000px;}
.y18{bottom:420.225000px;}
.y103{bottom:420.990000px;}
.y2a{bottom:425.985000px;}
.yb5{bottom:428.550000px;}
.y7f{bottom:430.350000px;}
.y154{bottom:433.230000px;}
.y124{bottom:435.390000px;}
.ycc{bottom:435.750000px;}
.yee{bottom:437.910000px;}
.y29{bottom:441.465000px;}
.y17{bottom:444.345000px;}
.yb4{bottom:445.830000px;}
.y7e{bottom:447.630000px;}
.y153{bottom:450.510000px;}
.y123{bottom:454.110000px;}
.ycb{bottom:454.470000px;}
.yed{bottom:456.270000px;}
.y28{bottom:456.945000px;}
.yb3{bottom:463.470000px;}
.y7d{bottom:464.910000px;}
.y152{bottom:467.790000px;}
.y16{bottom:468.465000px;}
.y27{bottom:472.425000px;}
.yca{bottom:472.830000px;}
.yec{bottom:474.630000px;}
.y122{bottom:481.830000px;}
.y7c{bottom:482.190000px;}
.y151{bottom:485.070000px;}
.y26{bottom:487.905000px;}
.yeb{bottom:489.030000px;}
.yb2{bottom:491.550000px;}
.y15{bottom:492.585000px;}
.y7b{bottom:499.110000px;}
.y121{bottom:500.190000px;}
.y150{bottom:502.350000px;}
.y25{bottom:503.430000px;}
.yea{bottom:508.470000px;}
.yb1{bottom:510.270000px;}
.y7a{bottom:516.390000px;}
.y14{bottom:516.750000px;}
.y24{bottom:518.910000px;}
.y14f{bottom:519.270000px;}
.ye9{bottom:527.910000px;}
.yb0{bottom:528.630000px;}
.y79{bottom:533.670000px;}
.y23{bottom:534.390000px;}
.y14e{bottom:536.550000px;}
.y120{bottom:537.660000px;}
.y13{bottom:540.870000px;}
.yaf{bottom:547.380000px;}
.y22{bottom:550.230000px;}
.y78{bottom:550.980000px;}
.y14d{bottom:553.860000px;}
.y11f{bottom:556.020000px;}
.y12{bottom:564.990000px;}
.y21{bottom:565.710000px;}
.yae{bottom:566.100000px;}
.ye6{bottom:566.460000px;}
.y77{bottom:568.260000px;}
.y14c{bottom:571.140000px;}
.y11e{bottom:574.740000px;}
.y20{bottom:581.190000px;}
.yad{bottom:584.460000px;}
.y76{bottom:585.540000px;}
.y14b{bottom:588.420000px;}
.y11{bottom:589.110000px;}
.ye5{bottom:590.940000px;}
.y1f{bottom:596.670000px;}
.y11d{bottom:602.460000px;}
.y75{bottom:602.820000px;}
.yac{bottom:603.180000px;}
.y14a{bottom:605.700000px;}
.y1e{bottom:612.150000px;}
.y10{bottom:613.230000px;}
.yc9{bottom:618.300000px;}
.ye4{bottom:619.020000px;}
.y74{bottom:620.100000px;}
.y11c{bottom:621.180000px;}
.yab{bottom:621.900000px;}
.y149{bottom:623.340000px;}
.y1d{bottom:627.660000px;}
.yf{bottom:637.380000px;}
.y11b{bottom:639.540000px;}
.yaa{bottom:640.260000px;}
.y148{bottom:651.060000px;}
.y73{bottom:654.660000px;}
.ye3{bottom:656.100000px;}
.y1c{bottom:658.260000px;}
.ya9{bottom:658.980000px;}
.ye{bottom:661.500000px;}
.y147{bottom:669.810000px;}
.y72{bottom:671.970000px;}
.y102{bottom:673.410000px;}
.ye2{bottom:674.850000px;}
.y11a{bottom:677.010000px;}
.ya8{bottom:677.730000px;}
.y146{bottom:688.530000px;}
.y71{bottom:688.890000px;}
.y101{bottom:692.130000px;}
.ye1{bottom:693.210000px;}
.y119{bottom:695.370000px;}
.ya7{bottom:696.450000px;}
.y70{bottom:706.170000px;}
.y145{bottom:707.250000px;}
.y100{bottom:710.850000px;}
.ye0{bottom:711.930000px;}
.y118{bottom:714.090000px;}
.ya6{bottom:714.810000px;}
.y6f{bottom:723.450000px;}
.y144{bottom:725.610000px;}
.yff{bottom:729.210000px;}
.ydf{bottom:730.650000px;}
.y117{bottom:732.810000px;}
.ya5{bottom:733.530000px;}
.y6e{bottom:740.730000px;}
.y143{bottom:744.330000px;}
.yde{bottom:745.410000px;}
.yfe{bottom:747.570000px;}
.y116{bottom:750.810000px;}
.ya4{bottom:752.250000px;}
.y6d{bottom:758.010000px;}
.yfd{bottom:761.985000px;}
.y142{bottom:763.050000px;}
.ya3{bottom:770.610000px;}
.y6c{bottom:775.290000px;}
.y115{bottom:777.450000px;}
.y141{bottom:781.410000px;}
.yfc{bottom:781.425000px;}
.ya1{bottom:784.665000px;}
.y6b{bottom:792.570000px;}
.y114{bottom:794.730000px;}
.y140{bottom:800.130000px;}
.yfb{bottom:800.910000px;}
.y6a{bottom:809.895000px;}
.y113{bottom:812.055000px;}
.y13f{bottom:818.895000px;}
.yfa{bottom:820.350000px;}
.ya0{bottom:822.870000px;}
.y69{bottom:827.175000px;}
.y112{bottom:829.335000px;}
.y13e{bottom:837.255000px;}
.yf9{bottom:839.430000px;}
.y68{bottom:845.895000px;}
.y111{bottom:846.615000px;}
.y13d{bottom:855.975000px;}
.yf8{bottom:858.870000px;}
.y9e{bottom:860.670000px;}
.y110{bottom:863.895000px;}
.y67{bottom:864.255000px;}
.y13c{bottom:874.695000px;}
.y10f{bottom:882.615000px;}
.y66{bottom:882.975000px;}
.yf7{bottom:883.335000px;}
.y13b{bottom:893.415000px;}
.y10e{bottom:897.375000px;}
.y9b{bottom:898.830000px;}
.y65{bottom:901.695000px;}
.yf6{bottom:911.055000px;}
.y13a{bottom:911.775000px;}
.y64{bottom:920.055000px;}
.yf5{bottom:929.775000px;}
.y139{bottom:930.495000px;}
.y63{bottom:938.805000px;}
.y9a{bottom:941.685000px;}
.yf4{bottom:948.525000px;}
.y138{bottom:949.245000px;}
.y62{bottom:957.525000px;}
.yf3{bottom:966.885000px;}
.y137{bottom:967.605000px;}
.y99{bottom:968.325000px;}
.y61{bottom:975.885000px;}
.yf2{bottom:985.245000px;}
.y98{bottom:985.605000px;}
.y136{bottom:986.325000px;}
.yc{bottom:991.365000px;}
.y60{bottom:994.605000px;}
.y97{bottom:1002.885000px;}
.y135{bottom:1005.045000px;}
.yb{bottom:1009.005000px;}
.y5f{bottom:1013.325000px;}
.y96{bottom:1020.165000px;}
.y134{bottom:1023.765000px;}
.y5e{bottom:1032.045000px;}
.yc8{bottom:1036.005000px;}
.y95{bottom:1037.445000px;}
.y133{bottom:1042.125000px;}
.ya{bottom:1045.005000px;}
.y5d{bottom:1050.405000px;}
.yc7{bottom:1053.285000px;}
.y94{bottom:1054.725000px;}
.y132{bottom:1059.765000px;}
.y5c{bottom:1069.170000px;}
.y9{bottom:1069.530000px;}
.yc6{bottom:1070.610000px;}
.y93{bottom:1072.050000px;}
.y5b{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.y92{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.yc5{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h13{height:5.650313px;}
.h1c{height:18.345000px;}
.h1e{height:18.346500px;}
.h1f{height:18.360000px;}
.h1d{height:18.705000px;}
.h1b{height:18.720000px;}
.h20{height:18.750000px;}
.h6{height:24.348516px;}
.h14{height:27.720000px;}
.h11{height:29.678906px;}
.h18{height:37.065000px;}
.h16{height:37.080000px;}
.h17{height:37.425000px;}
.h19{height:37.461000px;}
.hb{height:40.985156px;}
.ha{height:42.086250px;}
.he{height:42.229688px;}
.hd{height:45.101250px;}
.hc{height:53.677969px;}
.h12{height:55.147500px;}
.h5{height:59.357813px;}
.hf{height:60.155156px;}
.h8{height:60.952500px;}
.h1a{height:62.163910px;}
.h21{height:62.960625px;}
.h15{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h10{height:188.325000px;}
.h9{height:670.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:45.360000px;}
.w10{width:45.390000px;}
.w11{width:45.396000px;}
.w13{width:92.520000px;}
.w2{width:103.702500px;}
.w12{width:115.581000px;}
.we{width:117.000000px;}
.w8{width:120.630000px;}
.w16{width:123.840000px;}
.w7{width:127.845000px;}
.w4{width:132.502500px;}
.wf{width:147.990000px;}
.wd{width:150.555000px;}
.w6{width:163.080000px;}
.w14{width:172.875000px;}
.w15{width:180.795000px;}
.wc{width:183.675000px;}
.w9{width:204.555000px;}
.wa{width:222.930000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.876000px;}
.x15{left:8.266500px;}
.x31{left:9.390000px;}
.x4{left:13.305000px;}
.x13{left:17.266500px;}
.x18{left:18.346500px;}
.x5{left:19.425000px;}
.x35{left:21.225000px;}
.x3a{left:27.705000px;}
.x14{left:28.786500px;}
.x37{left:30.585000px;}
.x30{left:39.600000px;}
.xd{left:43.906500px;}
.x19{left:47.542500px;}
.x6{left:48.615000px;}
.xe{left:50.782500px;}
.x12{left:54.022500px;}
.xc{left:55.102500px;}
.x1a{left:57.262500px;}
.x28{left:61.950000px;}
.x38{left:73.125000px;}
.x11{left:75.985500px;}
.x1{left:78.529500px;}
.x39{left:80.670000px;}
.x7{left:86.436000px;}
.x10{left:90.025500px;}
.x2{left:95.425500px;}
.x1b{left:102.985500px;}
.x17{left:106.945500px;}
.x3d{left:113.436000px;}
.xf{left:124.585500px;}
.x1d{left:140.472000px;}
.x2a{left:147.672000px;}
.x34{left:160.650000px;}
.x1e{left:175.395000px;}
.x3{left:182.250000px;}
.x33{left:193.035000px;}
.x24{left:197.370000px;}
.x16{left:218.970000px;}
.x1f{left:236.265000px;}
.x25{left:243.465000px;}
.x2b{left:244.905000px;}
.x23{left:254.625000px;}
.xa{left:257.145000px;}
.x20{left:357.630000px;}
.x2c{left:393.990000px;}
.x26{left:427.860000px;}
.x2d{left:440.100000px;}
.x2e{left:486.180000px;}
.xb{left:515.010000px;}
.x2f{left:532.665000px;}
.x21{left:562.905000px;}
.x27{left:579.150000px;}
.x22{left:581.655000px;}
.x36{left:609.030000px;}
.x3c{left:677.445000px;}
.x29{left:682.485000px;}
.x3b{left:694.365000px;}
.x32{left:737.925000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.696000pt;}
.lse{letter-spacing:-1.296000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.414933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls1{letter-spacing:1.920000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls12{letter-spacing:41.374720pt;}
.lsc{letter-spacing:56.734720pt;}
.wsd{word-spacing:-53.760000pt;}
.wsb{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.025067pt;}
.ws5{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.144000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._9{margin-left:-3.087360pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:4.354560pt;}
._5{width:5.271040pt;}
._6{width:6.474240pt;}
._7{width:7.639040pt;}
._c{width:8.560213pt;}
._b{width:9.479680pt;}
._17{width:10.429867pt;}
._12{width:11.988480pt;}
._13{width:14.981120pt;}
._14{width:16.481280pt;}
._18{width:18.179413pt;}
._d{width:19.097600pt;}
._e{width:20.590080pt;}
._16{width:21.795840pt;}
._15{width:23.121920pt;}
._11{width:24.453120pt;}
._10{width:25.428480pt;}
._f{width:26.503680pt;}
._19{width:27.824640pt;}
._1c{width:50.749440pt;}
._1a{width:81.506987pt;}
._1b{width:186.869760pt;}
._8{width:1057.855573pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.876000pt;}
.y42{bottom:3.200000pt;}
.y5{bottom:3.520000pt;}
.yd6{bottom:4.466667pt;}
.ydc{bottom:4.470667pt;}
.ye8{bottom:4.480000pt;}
.y59{bottom:4.773333pt;}
.y9d{bottom:4.786667pt;}
.ye7{bottom:4.800000pt;}
.y2{bottom:7.040000pt;}
.y56{bottom:7.676000pt;}
.y41{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y9c{bottom:21.106667pt;}
.y9f{bottom:21.426667pt;}
.y55{bottom:21.436000pt;}
.ya2{bottom:21.466667pt;}
.y49{bottom:29.148000pt;}
.y40{bottom:33.920000pt;}
.y54{bottom:37.150667pt;}
.y3{bottom:39.360000pt;}
.y48{bottom:47.710667pt;}
.y3f{bottom:49.280000pt;}
.y53{bottom:51.230667pt;}
.y7{bottom:51.232000pt;}
.y47{bottom:59.550667pt;}
.y3e{bottom:64.640000pt;}
.y52{bottom:64.990667pt;}
.y51{bottom:76.510667pt;}
.y46{bottom:76.830667pt;}
.y3d{bottom:80.000000pt;}
.yf1{bottom:81.312000pt;}
.y50{bottom:81.950667pt;}
.y57{bottom:90.912000pt;}
.yf0{bottom:94.752000pt;}
.y3c{bottom:95.400000pt;}
.y4f{bottom:96.030667pt;}
.y131{bottom:96.992000pt;}
.y43{bottom:103.396000pt;}
.y91{bottom:106.272000pt;}
.y4e{bottom:109.790667pt;}
.y3b{bottom:110.760000pt;}
.y130{bottom:113.632000pt;}
.ydd{bottom:117.152000pt;}
.y90{bottom:121.632000pt;}
.y4d{bottom:123.870667pt;}
.y3a{bottom:126.120000pt;}
.yc4{bottom:128.704000pt;}
.y12f{bottom:129.024000pt;}
.ydb{bottom:130.316000pt;}
.y45{bottom:132.190667pt;}
.y8f{bottom:137.026667pt;}
.y4c{bottom:137.630667pt;}
.y39{bottom:141.480000pt;}
.y44{bottom:141.817333pt;}
.yc3{bottom:144.066667pt;}
.yda{bottom:147.280000pt;}
.y4b{bottom:151.097333pt;}
.y8e{bottom:152.386667pt;}
.y38{bottom:156.840000pt;}
.yc2{bottom:159.426667pt;}
.yd9{bottom:164.560000pt;}
.y8d{bottom:167.746667pt;}
.y37{bottom:172.200000pt;}
.y12e{bottom:174.786667pt;}
.yc1{bottom:175.746667pt;}
.yd8{bottom:181.840000pt;}
.y8c{bottom:183.106667pt;}
.y36{bottom:187.240000pt;}
.y12d{bottom:190.146667pt;}
.yc0{bottom:192.066667pt;}
.y8b{bottom:198.466667pt;}
.yd7{bottom:199.120000pt;}
.y160{bottom:199.746667pt;}
.y35{bottom:202.600000pt;}
.y10d{bottom:203.906667pt;}
.y12c{bottom:205.506667pt;}
.ybf{bottom:208.386667pt;}
.y8a{bottom:213.826667pt;}
.y15f{bottom:216.386667pt;}
.yd5{bottom:216.400000pt;}
.y34{bottom:217.986667pt;}
.y10c{bottom:220.546667pt;}
.y12b{bottom:222.146667pt;}
.ybe{bottom:224.706667pt;}
.y89{bottom:229.186667pt;}
.y15e{bottom:231.746667pt;}
.y33{bottom:233.346667pt;}
.yd4{bottom:233.360000pt;}
.y10b{bottom:236.866667pt;}
.ybd{bottom:240.706667pt;}
.y88{bottom:244.573333pt;}
.y12a{bottom:246.813333pt;}
.y15d{bottom:247.133333pt;}
.y32{bottom:248.706667pt;}
.y10a{bottom:253.533333pt;}
.yd3{bottom:255.133333pt;}
.y87{bottom:259.933333pt;}
.y15c{bottom:262.493333pt;}
.y129{bottom:263.133333pt;}
.y31{bottom:264.066667pt;}
.ybc{bottom:264.413333pt;}
.y109{bottom:270.173333pt;}
.yd{bottom:271.453333pt;}
.y86{bottom:274.973333pt;}
.y15b{bottom:277.853333pt;}
.y30{bottom:279.426667pt;}
.ybb{bottom:279.773333pt;}
.yd2{bottom:280.093333pt;}
.y108{bottom:286.493333pt;}
.y85{bottom:290.333333pt;}
.y15a{bottom:292.893333pt;}
.y2f{bottom:294.786667pt;}
.yba{bottom:295.133333pt;}
.yd1{bottom:296.413333pt;}
.y84{bottom:305.693333pt;}
.y159{bottom:308.253333pt;}
.y1b{bottom:308.866667pt;}
.y2e{bottom:310.146667pt;}
.yb9{bottom:310.493333pt;}
.y107{bottom:311.133333pt;}
.y128{bottom:312.733333pt;}
.yd0{bottom:313.053333pt;}
.y83{bottom:321.053333pt;}
.y158{bottom:323.613333pt;}
.y2d{bottom:325.533333pt;}
.yb8{bottom:325.853333pt;}
.y106{bottom:327.773333pt;}
.ycf{bottom:329.693333pt;}
.y1a{bottom:330.653333pt;}
.y82{bottom:336.413333pt;}
.y127{bottom:337.373333pt;}
.y157{bottom:338.973333pt;}
.y2c{bottom:341.533333pt;}
.yb7{bottom:342.173333pt;}
.y105{bottom:344.413333pt;}
.yce{bottom:346.013333pt;}
.y81{bottom:351.773333pt;}
.y19{bottom:352.093333pt;}
.y126{bottom:354.013333pt;}
.y156{bottom:354.333333pt;}
.y104{bottom:360.773333pt;}
.ycd{bottom:362.373333pt;}
.y2b{bottom:364.573333pt;}
.yb6{bottom:365.893333pt;}
.y80{bottom:367.173333pt;}
.y155{bottom:369.733333pt;}
.y125{bottom:370.373333pt;}
.yef{bottom:372.613333pt;}
.y18{bottom:373.533333pt;}
.y103{bottom:374.213333pt;}
.y2a{bottom:378.653333pt;}
.yb5{bottom:380.933333pt;}
.y7f{bottom:382.533333pt;}
.y154{bottom:385.093333pt;}
.y124{bottom:387.013333pt;}
.ycc{bottom:387.333333pt;}
.yee{bottom:389.253333pt;}
.y29{bottom:392.413333pt;}
.y17{bottom:394.973333pt;}
.yb4{bottom:396.293333pt;}
.y7e{bottom:397.893333pt;}
.y153{bottom:400.453333pt;}
.y123{bottom:403.653333pt;}
.ycb{bottom:403.973333pt;}
.yed{bottom:405.573333pt;}
.y28{bottom:406.173333pt;}
.yb3{bottom:411.973333pt;}
.y7d{bottom:413.253333pt;}
.y152{bottom:415.813333pt;}
.y16{bottom:416.413333pt;}
.y27{bottom:419.933333pt;}
.yca{bottom:420.293333pt;}
.yec{bottom:421.893333pt;}
.y122{bottom:428.293333pt;}
.y7c{bottom:428.613333pt;}
.y151{bottom:431.173333pt;}
.y26{bottom:433.693333pt;}
.yeb{bottom:434.693333pt;}
.yb2{bottom:436.933333pt;}
.y15{bottom:437.853333pt;}
.y7b{bottom:443.653333pt;}
.y121{bottom:444.613333pt;}
.y150{bottom:446.533333pt;}
.y25{bottom:447.493333pt;}
.yea{bottom:451.973333pt;}
.yb1{bottom:453.573333pt;}
.y7a{bottom:459.013333pt;}
.y14{bottom:459.333333pt;}
.y24{bottom:461.253333pt;}
.y14f{bottom:461.573333pt;}
.ye9{bottom:469.253333pt;}
.yb0{bottom:469.893333pt;}
.y79{bottom:474.373333pt;}
.y23{bottom:475.013333pt;}
.y14e{bottom:476.933333pt;}
.y120{bottom:477.920000pt;}
.y13{bottom:480.773333pt;}
.yaf{bottom:486.560000pt;}
.y22{bottom:489.093333pt;}
.y78{bottom:489.760000pt;}
.y14d{bottom:492.320000pt;}
.y11f{bottom:494.240000pt;}
.y12{bottom:502.213333pt;}
.y21{bottom:502.853333pt;}
.yae{bottom:503.200000pt;}
.ye6{bottom:503.520000pt;}
.y77{bottom:505.120000pt;}
.y14c{bottom:507.680000pt;}
.y11e{bottom:510.880000pt;}
.y20{bottom:516.613333pt;}
.yad{bottom:519.520000pt;}
.y76{bottom:520.480000pt;}
.y14b{bottom:523.040000pt;}
.y11{bottom:523.653333pt;}
.ye5{bottom:525.280000pt;}
.y1f{bottom:530.373333pt;}
.y11d{bottom:535.520000pt;}
.y75{bottom:535.840000pt;}
.yac{bottom:536.160000pt;}
.y14a{bottom:538.400000pt;}
.y1e{bottom:544.133333pt;}
.y10{bottom:545.093333pt;}
.yc9{bottom:549.600000pt;}
.ye4{bottom:550.240000pt;}
.y74{bottom:551.200000pt;}
.y11c{bottom:552.160000pt;}
.yab{bottom:552.800000pt;}
.y149{bottom:554.080000pt;}
.y1d{bottom:557.920000pt;}
.yf{bottom:566.560000pt;}
.y11b{bottom:568.480000pt;}
.yaa{bottom:569.120000pt;}
.y148{bottom:578.720000pt;}
.y73{bottom:581.920000pt;}
.ye3{bottom:583.200000pt;}
.y1c{bottom:585.120000pt;}
.ya9{bottom:585.760000pt;}
.ye{bottom:588.000000pt;}
.y147{bottom:595.386667pt;}
.y72{bottom:597.306667pt;}
.y102{bottom:598.586667pt;}
.ye2{bottom:599.866667pt;}
.y11a{bottom:601.786667pt;}
.ya8{bottom:602.426667pt;}
.y146{bottom:612.026667pt;}
.y71{bottom:612.346667pt;}
.y101{bottom:615.226667pt;}
.ye1{bottom:616.186667pt;}
.y119{bottom:618.106667pt;}
.ya7{bottom:619.066667pt;}
.y70{bottom:627.706667pt;}
.y145{bottom:628.666667pt;}
.y100{bottom:631.866667pt;}
.ye0{bottom:632.826667pt;}
.y118{bottom:634.746667pt;}
.ya6{bottom:635.386667pt;}
.y6f{bottom:643.066667pt;}
.y144{bottom:644.986667pt;}
.yff{bottom:648.186667pt;}
.ydf{bottom:649.466667pt;}
.y117{bottom:651.386667pt;}
.ya5{bottom:652.026667pt;}
.y6e{bottom:658.426667pt;}
.y143{bottom:661.626667pt;}
.yde{bottom:662.586667pt;}
.yfe{bottom:664.506667pt;}
.y116{bottom:667.386667pt;}
.ya4{bottom:668.666667pt;}
.y6d{bottom:673.786667pt;}
.yfd{bottom:677.320000pt;}
.y142{bottom:678.266667pt;}
.ya3{bottom:684.986667pt;}
.y6c{bottom:689.146667pt;}
.y115{bottom:691.066667pt;}
.y141{bottom:694.586667pt;}
.yfc{bottom:694.600000pt;}
.ya1{bottom:697.480000pt;}
.y6b{bottom:704.506667pt;}
.y114{bottom:706.426667pt;}
.y140{bottom:711.226667pt;}
.yfb{bottom:711.920000pt;}
.y6a{bottom:719.906667pt;}
.y113{bottom:721.826667pt;}
.y13f{bottom:727.906667pt;}
.yfa{bottom:729.200000pt;}
.ya0{bottom:731.440000pt;}
.y69{bottom:735.266667pt;}
.y112{bottom:737.186667pt;}
.y13e{bottom:744.226667pt;}
.yf9{bottom:746.160000pt;}
.y68{bottom:751.906667pt;}
.y111{bottom:752.546667pt;}
.y13d{bottom:760.866667pt;}
.yf8{bottom:763.440000pt;}
.y9e{bottom:765.040000pt;}
.y110{bottom:767.906667pt;}
.y67{bottom:768.226667pt;}
.y13c{bottom:777.506667pt;}
.y10f{bottom:784.546667pt;}
.y66{bottom:784.866667pt;}
.yf7{bottom:785.186667pt;}
.y13b{bottom:794.146667pt;}
.y10e{bottom:797.666667pt;}
.y9b{bottom:798.960000pt;}
.y65{bottom:801.506667pt;}
.yf6{bottom:809.826667pt;}
.y13a{bottom:810.466667pt;}
.y64{bottom:817.826667pt;}
.yf5{bottom:826.466667pt;}
.y139{bottom:827.106667pt;}
.y63{bottom:834.493333pt;}
.y9a{bottom:837.053333pt;}
.yf4{bottom:843.133333pt;}
.y138{bottom:843.773333pt;}
.y62{bottom:851.133333pt;}
.yf3{bottom:859.453333pt;}
.y137{bottom:860.093333pt;}
.y99{bottom:860.733333pt;}
.y61{bottom:867.453333pt;}
.yf2{bottom:875.773333pt;}
.y98{bottom:876.093333pt;}
.y136{bottom:876.733333pt;}
.yc{bottom:881.213333pt;}
.y60{bottom:884.093333pt;}
.y97{bottom:891.453333pt;}
.y135{bottom:893.373333pt;}
.yb{bottom:896.893333pt;}
.y5f{bottom:900.733333pt;}
.y96{bottom:906.813333pt;}
.y134{bottom:910.013333pt;}
.y5e{bottom:917.373333pt;}
.yc8{bottom:920.893333pt;}
.y95{bottom:922.173333pt;}
.y133{bottom:926.333333pt;}
.ya{bottom:928.893333pt;}
.y5d{bottom:933.693333pt;}
.yc7{bottom:936.253333pt;}
.y94{bottom:937.533333pt;}
.y132{bottom:942.013333pt;}
.y5c{bottom:950.373333pt;}
.y9{bottom:950.693333pt;}
.yc6{bottom:951.653333pt;}
.y93{bottom:952.933333pt;}
.y5b{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.y92{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.yc5{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h13{height:5.022500pt;}
.h1c{height:16.306667pt;}
.h1e{height:16.308000pt;}
.h1f{height:16.320000pt;}
.h1d{height:16.626667pt;}
.h1b{height:16.640000pt;}
.h20{height:16.666667pt;}
.h6{height:21.643125pt;}
.h14{height:24.640000pt;}
.h11{height:26.381250pt;}
.h18{height:32.946667pt;}
.h16{height:32.960000pt;}
.h17{height:33.266667pt;}
.h19{height:33.298667pt;}
.hb{height:36.431250pt;}
.ha{height:37.410000pt;}
.he{height:37.537500pt;}
.hd{height:40.090000pt;}
.hc{height:47.713750pt;}
.h12{height:49.020000pt;}
.h5{height:52.762500pt;}
.hf{height:53.471250pt;}
.h8{height:54.180000pt;}
.h1a{height:55.256809pt;}
.h21{height:55.965000pt;}
.h15{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h10{height:167.400000pt;}
.h9{height:596.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:40.320000pt;}
.w10{width:40.346667pt;}
.w11{width:40.352000pt;}
.w13{width:82.240000pt;}
.w2{width:92.180000pt;}
.w12{width:102.738667pt;}
.we{width:104.000000pt;}
.w8{width:107.226667pt;}
.w16{width:110.080000pt;}
.w7{width:113.640000pt;}
.w4{width:117.780000pt;}
.wf{width:131.546667pt;}
.wd{width:133.826667pt;}
.w6{width:144.960000pt;}
.w14{width:153.666667pt;}
.w15{width:160.706667pt;}
.wc{width:163.266667pt;}
.w9{width:181.826667pt;}
.wa{width:198.160000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.112000pt;}
.x15{left:7.348000pt;}
.x31{left:8.346667pt;}
.x4{left:11.826667pt;}
.x13{left:15.348000pt;}
.x18{left:16.308000pt;}
.x5{left:17.266667pt;}
.x35{left:18.866667pt;}
.x3a{left:24.626667pt;}
.x14{left:25.588000pt;}
.x37{left:27.186667pt;}
.x30{left:35.200000pt;}
.xd{left:39.028000pt;}
.x19{left:42.260000pt;}
.x6{left:43.213333pt;}
.xe{left:45.140000pt;}
.x12{left:48.020000pt;}
.xc{left:48.980000pt;}
.x1a{left:50.900000pt;}
.x28{left:55.066667pt;}
.x38{left:65.000000pt;}
.x11{left:67.542667pt;}
.x1{left:69.804000pt;}
.x39{left:71.706667pt;}
.x7{left:76.832000pt;}
.x10{left:80.022667pt;}
.x2{left:84.822667pt;}
.x1b{left:91.542667pt;}
.x17{left:95.062667pt;}
.x3d{left:100.832000pt;}
.xf{left:110.742667pt;}
.x1d{left:124.864000pt;}
.x2a{left:131.264000pt;}
.x34{left:142.800000pt;}
.x1e{left:155.906667pt;}
.x3{left:162.000000pt;}
.x33{left:171.586667pt;}
.x24{left:175.440000pt;}
.x16{left:194.640000pt;}
.x1f{left:210.013333pt;}
.x25{left:216.413333pt;}
.x2b{left:217.693333pt;}
.x23{left:226.333333pt;}
.xa{left:228.573333pt;}
.x20{left:317.893333pt;}
.x2c{left:350.213333pt;}
.x26{left:380.320000pt;}
.x2d{left:391.200000pt;}
.x2e{left:432.160000pt;}
.xb{left:457.786667pt;}
.x2f{left:473.480000pt;}
.x21{left:500.360000pt;}
.x27{left:514.800000pt;}
.x22{left:517.026667pt;}
.x36{left:541.360000pt;}
.x3c{left:602.173333pt;}
.x29{left:606.653333pt;}
.x3b{left:617.213333pt;}
.x32{left:655.933333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
}




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