
    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_8d3ddeafabda44bc450a8533.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.878418;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_2c0c5a311cbe998ff3ab5662.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_323b2edfe525a26ba9ba06cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.672852;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_07ad11371b48043a81fbb42f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0c471151642f4406ee2a6d9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_176c1af3aedba5eb02cc0972.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_feb4170f980d09027453802f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4ccd4ed74bc335492a44136f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9487e89a8537f454687fe61a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.858398;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:-107.280000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.656000px;}
.lse{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.264960px;}
.ls25{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.198720px;}
.ls24{letter-spacing:-0.191520px;}
.lsf{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.132480px;}
.ls28{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.066240px;}
.ls2d{letter-spacing:0.084240px;}
.lsd{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.264960px;}
.ls11{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.336960px;}
.lsb{letter-spacing:0.383040px;}
.ls1e{letter-spacing:0.720000px;}
.ls1d{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.454400px;}
.ls1f{letter-spacing:2.880000px;}
.ls0{letter-spacing:3.600000px;}
.ls23{letter-spacing:4.320000px;}
.ls2b{letter-spacing:5.040000px;}
.ls19{letter-spacing:5.760000px;}
.ls22{letter-spacing:5.767200px;}
.ls1a{letter-spacing:6.480000px;}
.ls21{letter-spacing:7.200000px;}
.ls17{letter-spacing:9.360000px;}
.ls7{letter-spacing:9.384480px;}
.lsa{letter-spacing:11.520000px;}
.ls1{letter-spacing:18.072000px;}
.ls20{letter-spacing:25.920000px;}
.ls13{letter-spacing:30.384000px;}
.ls9{letter-spacing:31.104000px;}
.ls8{letter-spacing:54.864000px;}
.ls1c{letter-spacing:66.960000px;}
.ls2c{letter-spacing:77.515200px;}
.ls1b{letter-spacing:159.264000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws0{word-spacing:-34.344000px;}
.wsb{word-spacing:-24.323040px;}
.ws4a{word-spacing:-21.396960px;}
.ws5f{word-spacing:-21.144240px;}
.wsd{word-spacing:-21.060000px;}
.ws54{word-spacing:-20.723040px;}
.ws35{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.000000px;}
.ws25{word-spacing:-17.856000px;}
.ws4f{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.424000px;}
.ws1{word-spacing:-16.488000px;}
.wse{word-spacing:-16.344000px;}
.ws4c{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.904000px;}
.ws4d{word-spacing:-14.771520px;}
.ws4e{word-spacing:-14.705280px;}
.ws1a{word-spacing:-4.320000px;}
.ws1b{word-spacing:-4.032000px;}
.ws5c{word-spacing:-3.600000px;}
.ws46{word-spacing:-3.312000px;}
.ws2c{word-spacing:-3.245760px;}
.ws26{word-spacing:-2.160000px;}
.ws16{word-spacing:-2.016000px;}
.ws8{word-spacing:-1.872000px;}
.ws24{word-spacing:-1.584000px;}
.ws14{word-spacing:-1.440000px;}
.ws15{word-spacing:-1.152000px;}
.ws50{word-spacing:-0.993600px;}
.ws1c{word-spacing:-0.720000px;}
.ws4b{word-spacing:-0.505440px;}
.ws1d{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.288000px;}
.ws58{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.191520px;}
.ws12{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.084240px;}
.ws5{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.ws59{word-spacing:0.084240px;}
.ws53{word-spacing:0.132480px;}
.ws20{word-spacing:0.144000px;}
.ws5e{word-spacing:0.168480px;}
.ws3a{word-spacing:0.191520px;}
.ws7{word-spacing:0.288000px;}
.ws5a{word-spacing:0.432000px;}
.ws2d{word-spacing:0.720000px;}
.ws3c{word-spacing:1.008000px;}
.ws13{word-spacing:1.440000px;}
.ws29{word-spacing:1.728000px;}
.ws51{word-spacing:2.736000px;}
.ws37{word-spacing:2.880000px;}
.ws3d{word-spacing:3.168000px;}
.ws39{word-spacing:3.600000px;}
.wsa{word-spacing:3.888000px;}
.ws38{word-spacing:4.320000px;}
.ws45{word-spacing:4.608000px;}
.ws49{word-spacing:5.040000px;}
.ws48{word-spacing:5.256000px;}
.ws47{word-spacing:5.328000px;}
.ws44{word-spacing:5.616000px;}
.ws31{word-spacing:5.760000px;}
.ws32{word-spacing:6.048000px;}
.ws21{word-spacing:7.200000px;}
.ws43{word-spacing:7.488000px;}
.ws2a{word-spacing:7.920000px;}
.ws2b{word-spacing:8.208000px;}
.ws36{word-spacing:9.072000px;}
.ws2e{word-spacing:9.360000px;}
.ws2f{word-spacing:9.648000px;}
.ws28{word-spacing:10.080000px;}
.ws27{word-spacing:10.368000px;}
.ws30{word-spacing:10.800000px;}
.ws3b{word-spacing:11.088000px;}
.ws23{word-spacing:11.520000px;}
.ws22{word-spacing:11.808000px;}
.ws5d{word-spacing:12.240000px;}
.ws33{word-spacing:12.528000px;}
.ws34{word-spacing:14.400000px;}
.ws52{word-spacing:14.688000px;}
.ws56{word-spacing:18.720000px;}
.ws57{word-spacing:19.008000px;}
.ws17{word-spacing:19.296000px;}
.ws18{word-spacing:19.440000px;}
.ws19{word-spacing:19.728000px;}
.ws9{word-spacing:21.168000px;}
.ws60{word-spacing:22.744800px;}
.ws3e{word-spacing:23.760000px;}
.ws42{word-spacing:25.200000px;}
.ws41{word-spacing:25.488000px;}
.ws40{word-spacing:26.640000px;}
.ws3f{word-spacing:26.928000px;}
.ws5b{word-spacing:28.800000px;}
.ws2{word-spacing:55.869120px;}
._4{margin-left:-5.263200px;}
._5{margin-left:-4.032000px;}
._1{margin-left:-2.795400px;}
._2{margin-left:-1.355400px;}
._0{width:1.675800px;}
._a{width:3.148200px;}
._b{width:5.904000px;}
._6{width:7.056000px;}
._9{width:10.152000px;}
._7{width:12.436200px;}
._3{width:19.042200px;}
._c{width:2251.440000px;}
._8{width:2276.640000px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(34,42,53);}
.fc1{color:rgb(50,62,79);}
.fc5{color:rgb(255,0,0);}
.fc0{color:rgb(132,150,176);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd{bottom:57.780000px;}
.y1{bottom:91.980000px;}
.y26{bottom:116.820000px;}
.yb4{bottom:117.360000px;}
.ya8{bottom:119.342880px;}
.yde{bottom:121.860000px;}
.y3a{bottom:129.960000px;}
.yd2{bottom:132.480000px;}
.y55{bottom:135.720000px;}
.y62{bottom:137.160000px;}
.y25{bottom:137.520000px;}
.y98{bottom:138.240000px;}
.y89{bottom:149.580000px;}
.y39{bottom:152.280000px;}
.yd1{bottom:154.800000px;}
.y54{bottom:156.420000px;}
.y24{bottom:158.220000px;}
.y97{bottom:160.560000px;}
.y88{bottom:171.900000px;}
.y53{bottom:172.620000px;}
.yd0{bottom:177.120000px;}
.y23{bottom:178.920000px;}
.y96{bottom:183.780000px;}
.y38{bottom:187.200000px;}
.y87{bottom:194.220000px;}
.ycf{bottom:199.440000px;}
.y22{bottom:199.620000px;}
.y37{bottom:209.340000px;}
.y86{bottom:216.540000px;}
.y21{bottom:220.320000px;}
.y95{bottom:221.220000px;}
.yce{bottom:221.760000px;}
.y36{bottom:231.660000px;}
.y52{bottom:235.620000px;}
.y85{bottom:238.860000px;}
.y20{bottom:241.020000px;}
.ycd{bottom:244.080000px;}
.y94{bottom:255.420000px;}
.y51{bottom:256.320000px;}
.y84{bottom:261.180000px;}
.y1f{bottom:261.720000px;}
.y35{bottom:266.220000px;}
.ycc{bottom:266.400000px;}
.y50{bottom:277.020000px;}
.y93{bottom:277.560000px;}
.y1e{bottom:282.420000px;}
.ya7{bottom:283.320000px;}
.y83{bottom:283.500000px;}
.y34{bottom:288.360000px;}
.yeb{bottom:288.540000px;}
.ycb{bottom:288.720000px;}
.y4f{bottom:297.720000px;}
.y92{bottom:300.060000px;}
.ya6{bottom:304.920000px;}
.y82{bottom:305.820000px;}
.y33{bottom:310.680000px;}
.yca{bottom:311.040000px;}
.y1d{bottom:316.800000px;}
.y4e{bottom:318.240000px;}
.y61{bottom:322.380000px;}
.ya5{bottom:327.240000px;}
.y81{bottom:328.140000px;}
.yea{bottom:333.000000px;}
.yc9{bottom:333.360000px;}
.y91{bottom:334.620000px;}
.y60{bottom:338.580000px;}
.y1c{bottom:338.940000px;}
.y4d{bottom:340.380000px;}
.y32{bottom:345.240000px;}
.ya4{bottom:349.560000px;}
.yc8{bottom:355.680000px;}
.y90{bottom:357.480000px;}
.y80{bottom:362.873520px;}
.y31{bottom:367.380000px;}
.ye9{bottom:367.560000px;}
.y1b{bottom:369.000000px;}
.ya3{bottom:371.880000px;}
.y4c{bottom:374.760000px;}
.yc7{bottom:378.180000px;}
.y30{bottom:389.700000px;}
.ya2{bottom:394.200000px;}
.y7f{bottom:396.540000px;}
.y4b{bottom:396.900000px;}
.y8f{bottom:397.980000px;}
.yc6{bottom:400.500000px;}
.y2f{bottom:412.020000px;}
.ya1{bottom:416.898000px;}
.yb3{bottom:418.860000px;}
.y7e{bottom:419.040000px;}
.y4a{bottom:419.220000px;}
.yc5{bottom:422.820000px;}
.y8e{bottom:432.360000px;}
.ya0{bottom:434.004480px;}
.ye8{bottom:434.340000px;}
.yb2{bottom:441.180000px;}
.y49{bottom:441.540000px;}
.yc4{bottom:445.140000px;}
.y2e{bottom:446.580000px;}
.y7d{bottom:453.600000px;}
.ye7{bottom:456.840000px;}
.yb1{bottom:463.500000px;}
.y48{bottom:463.860000px;}
.y8d{bottom:466.740000px;}
.yc3{bottom:467.460000px;}
.y2d{bottom:468.720000px;}
.y7c{bottom:475.740000px;}
.ydd{bottom:484.020000px;}
.yb0{bottom:485.820000px;}
.y47{bottom:486.180000px;}
.y8c{bottom:488.880000px;}
.yc2{bottom:489.780000px;}
.ye6{bottom:491.940000px;}
.y7b{bottom:498.060000px;}
.y2c{bottom:498.780000px;}
.ydc{bottom:506.340000px;}
.y46{bottom:507.060000px;}
.yc1{bottom:507.780000px;}
.yaf{bottom:508.140000px;}
.y8b{bottom:523.440000px;}
.y45{bottom:527.760000px;}
.ydb{bottom:528.660000px;}
.yae{bottom:530.460000px;}
.y7a{bottom:532.620000px;}
.yc{bottom:536.580000px;}
.y44{bottom:548.460000px;}
.yda{bottom:550.980000px;}
.yad{bottom:552.780000px;}
.y8a{bottom:553.320000px;}
.y79{bottom:554.760000px;}
.yb{bottom:558.720000px;}
.y5f{bottom:563.580000px;}
.y43{bottom:569.160000px;}
.yd9{bottom:573.300000px;}
.yac{bottom:576.000000px;}
.y78{bottom:577.080000px;}
.ya{bottom:581.040000px;}
.yd8{bottom:596.520000px;}
.yab{bottom:601.544160px;}
.y42{bottom:603.540000px;}
.y77{bottom:611.640000px;}
.y9{bottom:615.600000px;}
.yaa{bottom:618.650640px;}
.yd7{bottom:621.720000px;}
.y76{bottom:633.780000px;}
.y8{bottom:637.740000px;}
.y41{bottom:637.920000px;}
.yd6{bottom:639.720000px;}
.y7{bottom:660.060000px;}
.y75{bottom:668.340000px;}
.y40{bottom:672.300000px;}
.y6{bottom:682.380000px;}
.y74{bottom:690.480000px;}
.y3f{bottom:706.500000px;}
.y73{bottom:725.040000px;}
.y3e{bottom:740.880000px;}
.y72{bottom:747.180000px;}
.y2b{bottom:748.980000px;}
.y2a{bottom:765.360000px;}
.y3d{bottom:775.260000px;}
.y71{bottom:781.740000px;}
.y70{bottom:797.940000px;}
.y3c{bottom:809.640000px;}
.y1a{bottom:810.000000px;}
.y9f{bottom:829.457280px;}
.y19{bottom:832.140000px;}
.y3b{bottom:839.520000px;}
.y9e{bottom:846.563760px;}
.y18{bottom:854.460000px;}
.y6f{bottom:863.100000px;}
.y6e{bottom:883.800000px;}
.yc0{bottom:887.760000px;}
.y17{bottom:889.020000px;}
.y5e{bottom:892.080000px;}
.y6d{bottom:904.500000px;}
.ybf{bottom:910.080000px;}
.y16{bottom:911.160000px;}
.y5d{bottom:912.780000px;}
.y6c{bottom:925.200000px;}
.ya9{bottom:929.514960px;}
.ybe{bottom:932.400000px;}
.y15{bottom:933.480000px;}
.y6b{bottom:945.900000px;}
.y5c{bottom:954.180000px;}
.y14{bottom:954.360000px;}
.ybd{bottom:954.720000px;}
.yd5{bottom:958.320000px;}
.y5b{bottom:974.880000px;}
.y13{bottom:975.060000px;}
.ybc{bottom:977.040000px;}
.yd4{bottom:980.820000px;}
.y5{bottom:984.960000px;}
.y6a{bottom:994.140000px;}
.y5a{bottom:995.580000px;}
.y12{bottom:995.760000px;}
.ybb{bottom:1000.260000px;}
.ye5{bottom:1002.420000px;}
.yd3{bottom:1003.140000px;}
.y69{bottom:1014.840000px;}
.y59{bottom:1016.280000px;}
.y11{bottom:1016.640000px;}
.y4{bottom:1020.960000px;}
.ye4{bottom:1024.740000px;}
.yba{bottom:1025.460000px;}
.y68{bottom:1035.540000px;}
.y58{bottom:1036.980000px;}
.y10{bottom:1040.580000px;}
.ye3{bottom:1047.240000px;}
.yb9{bottom:1047.780000px;}
.y9d{bottom:1053.017280px;}
.y67{bottom:1056.240000px;}
.y57{bottom:1057.680000px;}
.ye2{bottom:1069.560000px;}
.yb8{bottom:1070.100000px;}
.y9c{bottom:1074.793680px;}
.yf{bottom:1076.220000px;}
.y66{bottom:1076.940000px;}
.y56{bottom:1078.380000px;}
.ye1{bottom:1091.880000px;}
.yb7{bottom:1092.420000px;}
.y9b{bottom:1096.387920px;}
.y65{bottom:1097.640000px;}
.ye{bottom:1098.360000px;}
.y29{bottom:1099.080000px;}
.y3{bottom:1104.480000px;}
.ye0{bottom:1114.200000px;}
.yb6{bottom:1115.640000px;}
.y9a{bottom:1117.800000px;}
.y64{bottom:1118.340000px;}
.y28{bottom:1119.780000px;}
.y2{bottom:1134.360000px;}
.ydf{bottom:1137.425700px;}
.y63{bottom:1139.040000px;}
.y99{bottom:1140.300000px;}
.y27{bottom:1140.480000px;}
.yb5{bottom:1141.201440px;}
.h6{height:46.380937px;}
.h2{height:50.414062px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:75.093750px;}
.ha{height:84.875325px;}
.h9{height:84.898125px;}
.h3{height:96.508125px;}
.h7{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:121.860000px;}
.x6{left:127.620000px;}
.x1b{left:132.660000px;}
.x4{left:148.860000px;}
.x5{left:154.620000px;}
.xa{left:159.660000px;}
.x19{left:165.960000px;}
.x10{left:181.620000px;}
.x2{left:203.940000px;}
.x3{left:385.740000px;}
.xd{left:388.620000px;}
.x11{left:401.222160px;}
.x17{left:613.260000px;}
.x1{left:622.440000px;}
.x9{left:750.780000px;}
.xc{left:765.360000px;}
.x1a{left:778.320000px;}
.x18{left:784.980000px;}
.xb{left:808.020000px;}
.x8{left:816.120000px;}
.x12{left:831.782160px;}
.xe{left:836.280000px;}
.x13{left:838.623600px;}
.x16{left:844.020000px;}
.x14{left:845.827200px;}
.x7{left:855.360000px;}
.xf{left:863.280000px;}
@media print{
.v1{vertical-align:-95.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.472000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.235520pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls24{letter-spacing:-0.170240pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.117760pt;}
.ls28{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.058880pt;}
.ls2d{letter-spacing:0.074880pt;}
.lsd{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.235520pt;}
.ls11{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.299520pt;}
.lsb{letter-spacing:0.340480pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.292800pt;}
.ls1f{letter-spacing:2.560000pt;}
.ls0{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.840000pt;}
.ls2b{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls22{letter-spacing:5.126400pt;}
.ls1a{letter-spacing:5.760000pt;}
.ls21{letter-spacing:6.400000pt;}
.ls17{letter-spacing:8.320000pt;}
.ls7{letter-spacing:8.341760pt;}
.lsa{letter-spacing:10.240000pt;}
.ls1{letter-spacing:16.064000pt;}
.ls20{letter-spacing:23.040000pt;}
.ls13{letter-spacing:27.008000pt;}
.ls9{letter-spacing:27.648000pt;}
.ls8{letter-spacing:48.768000pt;}
.ls1c{letter-spacing:59.520000pt;}
.ls2c{letter-spacing:68.902400pt;}
.ls1b{letter-spacing:141.568000pt;}
.ws11{word-spacing:-64.000000pt;}
.ws0{word-spacing:-30.528000pt;}
.wsb{word-spacing:-21.620480pt;}
.ws4a{word-spacing:-19.019520pt;}
.ws5f{word-spacing:-18.794880pt;}
.wsd{word-spacing:-18.720000pt;}
.ws54{word-spacing:-18.420480pt;}
.ws35{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws25{word-spacing:-15.872000pt;}
.ws4f{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.488000pt;}
.ws1{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.528000pt;}
.ws4c{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.248000pt;}
.ws4d{word-spacing:-13.130240pt;}
.ws4e{word-spacing:-13.071360pt;}
.ws1a{word-spacing:-3.840000pt;}
.ws1b{word-spacing:-3.584000pt;}
.ws5c{word-spacing:-3.200000pt;}
.ws46{word-spacing:-2.944000pt;}
.ws2c{word-spacing:-2.885120pt;}
.ws26{word-spacing:-1.920000pt;}
.ws16{word-spacing:-1.792000pt;}
.ws8{word-spacing:-1.664000pt;}
.ws24{word-spacing:-1.408000pt;}
.ws14{word-spacing:-1.280000pt;}
.ws15{word-spacing:-1.024000pt;}
.ws50{word-spacing:-0.883200pt;}
.ws1c{word-spacing:-0.640000pt;}
.ws4b{word-spacing:-0.449280pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.256000pt;}
.ws58{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.170240pt;}
.ws12{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.074880pt;}
.ws5{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.ws59{word-spacing:0.074880pt;}
.ws53{word-spacing:0.117760pt;}
.ws20{word-spacing:0.128000pt;}
.ws5e{word-spacing:0.149760pt;}
.ws3a{word-spacing:0.170240pt;}
.ws7{word-spacing:0.256000pt;}
.ws5a{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.896000pt;}
.ws13{word-spacing:1.280000pt;}
.ws29{word-spacing:1.536000pt;}
.ws51{word-spacing:2.432000pt;}
.ws37{word-spacing:2.560000pt;}
.ws3d{word-spacing:2.816000pt;}
.ws39{word-spacing:3.200000pt;}
.wsa{word-spacing:3.456000pt;}
.ws38{word-spacing:3.840000pt;}
.ws45{word-spacing:4.096000pt;}
.ws49{word-spacing:4.480000pt;}
.ws48{word-spacing:4.672000pt;}
.ws47{word-spacing:4.736000pt;}
.ws44{word-spacing:4.992000pt;}
.ws31{word-spacing:5.120000pt;}
.ws32{word-spacing:5.376000pt;}
.ws21{word-spacing:6.400000pt;}
.ws43{word-spacing:6.656000pt;}
.ws2a{word-spacing:7.040000pt;}
.ws2b{word-spacing:7.296000pt;}
.ws36{word-spacing:8.064000pt;}
.ws2e{word-spacing:8.320000pt;}
.ws2f{word-spacing:8.576000pt;}
.ws28{word-spacing:8.960000pt;}
.ws27{word-spacing:9.216000pt;}
.ws30{word-spacing:9.600000pt;}
.ws3b{word-spacing:9.856000pt;}
.ws23{word-spacing:10.240000pt;}
.ws22{word-spacing:10.496000pt;}
.ws5d{word-spacing:10.880000pt;}
.ws33{word-spacing:11.136000pt;}
.ws34{word-spacing:12.800000pt;}
.ws52{word-spacing:13.056000pt;}
.ws56{word-spacing:16.640000pt;}
.ws57{word-spacing:16.896000pt;}
.ws17{word-spacing:17.152000pt;}
.ws18{word-spacing:17.280000pt;}
.ws19{word-spacing:17.536000pt;}
.ws9{word-spacing:18.816000pt;}
.ws60{word-spacing:20.217600pt;}
.ws3e{word-spacing:21.120000pt;}
.ws42{word-spacing:22.400000pt;}
.ws41{word-spacing:22.656000pt;}
.ws40{word-spacing:23.680000pt;}
.ws3f{word-spacing:23.936000pt;}
.ws5b{word-spacing:25.600000pt;}
.ws2{word-spacing:49.661440pt;}
._4{margin-left:-4.678400pt;}
._5{margin-left:-3.584000pt;}
._1{margin-left:-2.484800pt;}
._2{margin-left:-1.204800pt;}
._0{width:1.489600pt;}
._a{width:2.798400pt;}
._b{width:5.248000pt;}
._6{width:6.272000pt;}
._9{width:9.024000pt;}
._7{width:11.054400pt;}
._3{width:16.926400pt;}
._c{width:2001.280000pt;}
._8{width:2023.680000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:51.360000pt;}
.y1{bottom:81.760000pt;}
.y26{bottom:103.840000pt;}
.yb4{bottom:104.320000pt;}
.ya8{bottom:106.082560pt;}
.yde{bottom:108.320000pt;}
.y3a{bottom:115.520000pt;}
.yd2{bottom:117.760000pt;}
.y55{bottom:120.640000pt;}
.y62{bottom:121.920000pt;}
.y25{bottom:122.240000pt;}
.y98{bottom:122.880000pt;}
.y89{bottom:132.960000pt;}
.y39{bottom:135.360000pt;}
.yd1{bottom:137.600000pt;}
.y54{bottom:139.040000pt;}
.y24{bottom:140.640000pt;}
.y97{bottom:142.720000pt;}
.y88{bottom:152.800000pt;}
.y53{bottom:153.440000pt;}
.yd0{bottom:157.440000pt;}
.y23{bottom:159.040000pt;}
.y96{bottom:163.360000pt;}
.y38{bottom:166.400000pt;}
.y87{bottom:172.640000pt;}
.ycf{bottom:177.280000pt;}
.y22{bottom:177.440000pt;}
.y37{bottom:186.080000pt;}
.y86{bottom:192.480000pt;}
.y21{bottom:195.840000pt;}
.y95{bottom:196.640000pt;}
.yce{bottom:197.120000pt;}
.y36{bottom:205.920000pt;}
.y52{bottom:209.440000pt;}
.y85{bottom:212.320000pt;}
.y20{bottom:214.240000pt;}
.ycd{bottom:216.960000pt;}
.y94{bottom:227.040000pt;}
.y51{bottom:227.840000pt;}
.y84{bottom:232.160000pt;}
.y1f{bottom:232.640000pt;}
.y35{bottom:236.640000pt;}
.ycc{bottom:236.800000pt;}
.y50{bottom:246.240000pt;}
.y93{bottom:246.720000pt;}
.y1e{bottom:251.040000pt;}
.ya7{bottom:251.840000pt;}
.y83{bottom:252.000000pt;}
.y34{bottom:256.320000pt;}
.yeb{bottom:256.480000pt;}
.ycb{bottom:256.640000pt;}
.y4f{bottom:264.640000pt;}
.y92{bottom:266.720000pt;}
.ya6{bottom:271.040000pt;}
.y82{bottom:271.840000pt;}
.y33{bottom:276.160000pt;}
.yca{bottom:276.480000pt;}
.y1d{bottom:281.600000pt;}
.y4e{bottom:282.880000pt;}
.y61{bottom:286.560000pt;}
.ya5{bottom:290.880000pt;}
.y81{bottom:291.680000pt;}
.yea{bottom:296.000000pt;}
.yc9{bottom:296.320000pt;}
.y91{bottom:297.440000pt;}
.y60{bottom:300.960000pt;}
.y1c{bottom:301.280000pt;}
.y4d{bottom:302.560000pt;}
.y32{bottom:306.880000pt;}
.ya4{bottom:310.720000pt;}
.yc8{bottom:316.160000pt;}
.y90{bottom:317.760000pt;}
.y80{bottom:322.554240pt;}
.y31{bottom:326.560000pt;}
.ye9{bottom:326.720000pt;}
.y1b{bottom:328.000000pt;}
.ya3{bottom:330.560000pt;}
.y4c{bottom:333.120000pt;}
.yc7{bottom:336.160000pt;}
.y30{bottom:346.400000pt;}
.ya2{bottom:350.400000pt;}
.y7f{bottom:352.480000pt;}
.y4b{bottom:352.800000pt;}
.y8f{bottom:353.760000pt;}
.yc6{bottom:356.000000pt;}
.y2f{bottom:366.240000pt;}
.ya1{bottom:370.576000pt;}
.yb3{bottom:372.320000pt;}
.y7e{bottom:372.480000pt;}
.y4a{bottom:372.640000pt;}
.yc5{bottom:375.840000pt;}
.y8e{bottom:384.320000pt;}
.ya0{bottom:385.781760pt;}
.ye8{bottom:386.080000pt;}
.yb2{bottom:392.160000pt;}
.y49{bottom:392.480000pt;}
.yc4{bottom:395.680000pt;}
.y2e{bottom:396.960000pt;}
.y7d{bottom:403.200000pt;}
.ye7{bottom:406.080000pt;}
.yb1{bottom:412.000000pt;}
.y48{bottom:412.320000pt;}
.y8d{bottom:414.880000pt;}
.yc3{bottom:415.520000pt;}
.y2d{bottom:416.640000pt;}
.y7c{bottom:422.880000pt;}
.ydd{bottom:430.240000pt;}
.yb0{bottom:431.840000pt;}
.y47{bottom:432.160000pt;}
.y8c{bottom:434.560000pt;}
.yc2{bottom:435.360000pt;}
.ye6{bottom:437.280000pt;}
.y7b{bottom:442.720000pt;}
.y2c{bottom:443.360000pt;}
.ydc{bottom:450.080000pt;}
.y46{bottom:450.720000pt;}
.yc1{bottom:451.360000pt;}
.yaf{bottom:451.680000pt;}
.y8b{bottom:465.280000pt;}
.y45{bottom:469.120000pt;}
.ydb{bottom:469.920000pt;}
.yae{bottom:471.520000pt;}
.y7a{bottom:473.440000pt;}
.yc{bottom:476.960000pt;}
.y44{bottom:487.520000pt;}
.yda{bottom:489.760000pt;}
.yad{bottom:491.360000pt;}
.y8a{bottom:491.840000pt;}
.y79{bottom:493.120000pt;}
.yb{bottom:496.640000pt;}
.y5f{bottom:500.960000pt;}
.y43{bottom:505.920000pt;}
.yd9{bottom:509.600000pt;}
.yac{bottom:512.000000pt;}
.y78{bottom:512.960000pt;}
.ya{bottom:516.480000pt;}
.yd8{bottom:530.240000pt;}
.yab{bottom:534.705920pt;}
.y42{bottom:536.480000pt;}
.y77{bottom:543.680000pt;}
.y9{bottom:547.200000pt;}
.yaa{bottom:549.911680pt;}
.yd7{bottom:552.640000pt;}
.y76{bottom:563.360000pt;}
.y8{bottom:566.880000pt;}
.y41{bottom:567.040000pt;}
.yd6{bottom:568.640000pt;}
.y7{bottom:586.720000pt;}
.y75{bottom:594.080000pt;}
.y40{bottom:597.600000pt;}
.y6{bottom:606.560000pt;}
.y74{bottom:613.760000pt;}
.y3f{bottom:628.000000pt;}
.y73{bottom:644.480000pt;}
.y3e{bottom:658.560000pt;}
.y72{bottom:664.160000pt;}
.y2b{bottom:665.760000pt;}
.y2a{bottom:680.320000pt;}
.y3d{bottom:689.120000pt;}
.y71{bottom:694.880000pt;}
.y70{bottom:709.280000pt;}
.y3c{bottom:719.680000pt;}
.y1a{bottom:720.000000pt;}
.y9f{bottom:737.295360pt;}
.y19{bottom:739.680000pt;}
.y3b{bottom:746.240000pt;}
.y9e{bottom:752.501120pt;}
.y18{bottom:759.520000pt;}
.y6f{bottom:767.200000pt;}
.y6e{bottom:785.600000pt;}
.yc0{bottom:789.120000pt;}
.y17{bottom:790.240000pt;}
.y5e{bottom:792.960000pt;}
.y6d{bottom:804.000000pt;}
.ybf{bottom:808.960000pt;}
.y16{bottom:809.920000pt;}
.y5d{bottom:811.360000pt;}
.y6c{bottom:822.400000pt;}
.ya9{bottom:826.235520pt;}
.ybe{bottom:828.800000pt;}
.y15{bottom:829.760000pt;}
.y6b{bottom:840.800000pt;}
.y5c{bottom:848.160000pt;}
.y14{bottom:848.320000pt;}
.ybd{bottom:848.640000pt;}
.yd5{bottom:851.840000pt;}
.y5b{bottom:866.560000pt;}
.y13{bottom:866.720000pt;}
.ybc{bottom:868.480000pt;}
.yd4{bottom:871.840000pt;}
.y5{bottom:875.520000pt;}
.y6a{bottom:883.680000pt;}
.y5a{bottom:884.960000pt;}
.y12{bottom:885.120000pt;}
.ybb{bottom:889.120000pt;}
.ye5{bottom:891.040000pt;}
.yd3{bottom:891.680000pt;}
.y69{bottom:902.080000pt;}
.y59{bottom:903.360000pt;}
.y11{bottom:903.680000pt;}
.y4{bottom:907.520000pt;}
.ye4{bottom:910.880000pt;}
.yba{bottom:911.520000pt;}
.y68{bottom:920.480000pt;}
.y58{bottom:921.760000pt;}
.y10{bottom:924.960000pt;}
.ye3{bottom:930.880000pt;}
.yb9{bottom:931.360000pt;}
.y9d{bottom:936.015360pt;}
.y67{bottom:938.880000pt;}
.y57{bottom:940.160000pt;}
.ye2{bottom:950.720000pt;}
.yb8{bottom:951.200000pt;}
.y9c{bottom:955.372160pt;}
.yf{bottom:956.640000pt;}
.y66{bottom:957.280000pt;}
.y56{bottom:958.560000pt;}
.ye1{bottom:970.560000pt;}
.yb7{bottom:971.040000pt;}
.y9b{bottom:974.567040pt;}
.y65{bottom:975.680000pt;}
.ye{bottom:976.320000pt;}
.y29{bottom:976.960000pt;}
.y3{bottom:981.760000pt;}
.ye0{bottom:990.400000pt;}
.yb6{bottom:991.680000pt;}
.y9a{bottom:993.600000pt;}
.y64{bottom:994.080000pt;}
.y28{bottom:995.360000pt;}
.y2{bottom:1008.320000pt;}
.ydf{bottom:1011.045067pt;}
.y63{bottom:1012.480000pt;}
.y99{bottom:1013.600000pt;}
.y27{bottom:1013.760000pt;}
.yb5{bottom:1014.401280pt;}
.h6{height:41.227500pt;}
.h2{height:44.812500pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:66.750000pt;}
.ha{height:75.444733pt;}
.h9{height:75.465000pt;}
.h3{height:85.785000pt;}
.h7{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:108.320000pt;}
.x6{left:113.440000pt;}
.x1b{left:117.920000pt;}
.x4{left:132.320000pt;}
.x5{left:137.440000pt;}
.xa{left:141.920000pt;}
.x19{left:147.520000pt;}
.x10{left:161.440000pt;}
.x2{left:181.280000pt;}
.x3{left:342.880000pt;}
.xd{left:345.440000pt;}
.x11{left:356.641920pt;}
.x17{left:545.120000pt;}
.x1{left:553.280000pt;}
.x9{left:667.360000pt;}
.xc{left:680.320000pt;}
.x1a{left:691.840000pt;}
.x18{left:697.760000pt;}
.xb{left:718.240000pt;}
.x8{left:725.440000pt;}
.x12{left:739.361920pt;}
.xe{left:743.360000pt;}
.x13{left:745.443200pt;}
.x16{left:750.240000pt;}
.x14{left:751.846400pt;}
.x7{left:760.320000pt;}
.xf{left:767.360000pt;}
}




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