
    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_02877680bc1c6a01f184ebab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99144e6fdf0aa702c9cfdf6b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ed028dc61ee32fc2800e0b68.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cfbd792e73b9c9ff7bd20134.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_7c55915ebcbae1eed613b4be.woff')format("woff");}.ff5{font-family:ff5;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.745600px;}
.ls18{letter-spacing:-0.927360px;}
.ls28{letter-spacing:-0.794880px;}
.ls19{letter-spacing:-0.728640px;}
.ls1f{letter-spacing:-0.662400px;}
.ls27{letter-spacing:-0.529920px;}
.lsf{letter-spacing:-0.505440px;}
.lsd{letter-spacing:-0.463680px;}
.lse{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.358560px;}
.lsb{letter-spacing:-0.331200px;}
.lsa{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.239040px;}
.ls6{letter-spacing:-0.198720px;}
.lsc{letter-spacing:-0.132480px;}
.ls7{letter-spacing:-0.066240px;}
.ls5{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.066240px;}
.ls8{letter-spacing:0.084240px;}
.ls14{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.168480px;}
.ls0{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.256320px;}
.ls1{letter-spacing:0.264960px;}
.ls21{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.331200px;}
.ls26{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.418320px;}
.ls1c{letter-spacing:1.589760px;}
.ls1b{letter-spacing:2.318400px;}
.ls24{letter-spacing:4.438080px;}
.ls1d{letter-spacing:5.166720px;}
.ls23{letter-spacing:5.895360px;}
.ls13{letter-spacing:6.544512px;}
.ls16{letter-spacing:6.624000px;}
.ls1a{letter-spacing:37.756800px;}
.ls12{letter-spacing:39.214080px;}
.ls15{letter-spacing:55.411200px;}
.ls25{letter-spacing:64.016640px;}
.ls11{letter-spacing:197.461440px;}
.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;}
}
.ws45{word-spacing:-59.760000px;}
.ws7{word-spacing:-19.206720px;}
.ws19{word-spacing:-19.122480px;}
.ws8{word-spacing:-18.532800px;}
.ws46{word-spacing:-15.301440px;}
.wsa{word-spacing:-15.235200px;}
.wsc{word-spacing:-15.102720px;}
.ws2{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.904000px;}
.ws3{word-spacing:-14.837760px;}
.ws4{word-spacing:-14.705280px;}
.ws9{word-spacing:-14.639040px;}
.ws6{word-spacing:-14.572800px;}
.ws5{word-spacing:-14.506560px;}
.ws21{word-spacing:-14.241600px;}
.ws20{word-spacing:-14.042880px;}
.ws39{word-spacing:-13.804560px;}
.ws1{word-spacing:-13.685040px;}
.ws3b{word-spacing:-13.625280px;}
.ws37{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.446000px;}
.ws3a{word-spacing:-13.266720px;}
.ws38{word-spacing:-13.147200px;}
.ws35{word-spacing:-9.437760px;}
.ws36{word-spacing:-8.786880px;}
.ws25{word-spacing:-3.576960px;}
.ws5d{word-spacing:-3.378240px;}
.ws24{word-spacing:-3.179520px;}
.ws23{word-spacing:-3.113280px;}
.ws1d{word-spacing:-2.848320px;}
.ws31{word-spacing:-1.920960px;}
.ws3e{word-spacing:-1.391040px;}
.ws1e{word-spacing:-1.192320px;}
.ws58{word-spacing:-0.728640px;}
.ws4b{word-spacing:-0.673920px;}
.ws29{word-spacing:-0.662400px;}
.ws3d{word-spacing:-0.529920px;}
.ws1a{word-spacing:-0.505440px;}
.ws11{word-spacing:-0.421200px;}
.ws16{word-spacing:-0.331200px;}
.ws4a{word-spacing:-0.198720px;}
.ws5a{word-spacing:-0.168480px;}
.ws12{word-spacing:-0.132480px;}
.ws18{word-spacing:-0.084240px;}
.wse{word-spacing:0.000000px;}
.ws10{word-spacing:0.066240px;}
.ws44{word-spacing:0.132480px;}
.wsd{word-spacing:0.179280px;}
.wsf{word-spacing:0.198720px;}
.ws15{word-spacing:0.264960px;}
.ws13{word-spacing:0.397440px;}
.ws14{word-spacing:0.463680px;}
.ws17{word-spacing:0.529920px;}
.ws3f{word-spacing:0.662400px;}
.ws2f{word-spacing:0.728640px;}
.ws5e{word-spacing:0.794880px;}
.ws5c{word-spacing:0.861120px;}
.ws33{word-spacing:0.927360px;}
.ws30{word-spacing:1.126080px;}
.ws2d{word-spacing:2.384640px;}
.ws2e{word-spacing:2.583360px;}
.ws2c{word-spacing:2.715840px;}
.ws32{word-spacing:3.113280px;}
.ws59{word-spacing:3.312000px;}
.ws1f{word-spacing:3.841920px;}
.ws48{word-spacing:4.040640px;}
.ws40{word-spacing:4.504320px;}
.ws47{word-spacing:4.703040px;}
.ws49{word-spacing:4.769280px;}
.ws42{word-spacing:5.431680px;}
.ws2a{word-spacing:5.762880px;}
.ws41{word-spacing:5.961600px;}
.ws1b{word-spacing:6.160320px;}
.ws43{word-spacing:6.491520px;}
.ws1c{word-spacing:6.690240px;}
.ws34{word-spacing:6.888960px;}
.ws28{word-spacing:7.948800px;}
.ws22{word-spacing:8.147520px;}
.ws5f{word-spacing:8.346240px;}
.ws3c{word-spacing:8.677440px;}
.ws54{word-spacing:8.876160px;}
.ws55{word-spacing:9.074880px;}
.ws4c{word-spacing:9.604800px;}
.ws51{word-spacing:9.803520px;}
.ws53{word-spacing:10.995840px;}
.ws52{word-spacing:11.194560px;}
.ws57{word-spacing:13.181760px;}
.ws56{word-spacing:13.380480px;}
.ws2b{word-spacing:15.367680px;}
.ws4f{word-spacing:16.758720px;}
.ws4e{word-spacing:16.957440px;}
.ws26{word-spacing:19.540800px;}
.ws27{word-spacing:19.673280px;}
.ws5b{word-spacing:20.865600px;}
.ws50{word-spacing:22.521600px;}
.ws4d{word-spacing:25.436160px;}
._7{margin-left:-197.925120px;}
._b{margin-left:-196.864848px;}
._8{margin-left:-138.982608px;}
._5{margin-left:-130.059360px;}
._c{margin-left:-88.496640px;}
._f{margin-left:-11.989440px;}
._6{margin-left:-7.220160px;}
._d{margin-left:-3.046608px;}
._1{margin-left:-1.446192px;}
._4{width:1.553760px;}
._e{width:3.276432px;}
._9{width:120.578400px;}
._a{width:197.461440px;}
._0{width:378.699120px;}
._2{width:710.068320px;}
._3{width:852.655680px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(22,65,148);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.500000px;}
.y14{bottom:24.479850px;}
.ya{bottom:24.660000px;}
.y7{bottom:57.600720px;}
.y6{bottom:77.754240px;}
.y5{bottom:93.420000px;}
.y75{bottom:162.898740px;}
.y91{bottom:168.120000px;}
.y9b{bottom:177.675840px;}
.y90{bottom:181.258740px;}
.y74{bottom:186.480000px;}
.y5c{bottom:189.735120px;}
.y2a{bottom:198.720000px;}
.y73{bottom:199.618020px;}
.y8f{bottom:204.840000px;}
.y8e{bottom:218.340000px;}
.y72{bottom:223.020000px;}
.y42{bottom:223.740000px;}
.y29{bottom:232.920000px;}
.y71{bottom:236.700000px;}
.y5b{bottom:240.855840px;}
.y41{bottom:253.989360px;}
.y8d{bottom:256.873680px;}
.y40{bottom:284.227920px;}
.y8c{bottom:287.112240px;}
.y5a{bottom:292.158720px;}
.y28{bottom:303.480000px;}
.y3f{bottom:314.466480px;}
.y8b{bottom:317.168640px;}
.y27{bottom:319.860000px;}
.y59{bottom:322.215120px;}
.y26{bottom:340.740000px;}
.y3e{bottom:344.705040px;}
.y8a{bottom:347.407200px;}
.y58{bottom:352.453680px;}
.y25{bottom:361.620000px;}
.y3d{bottom:374.943600px;}
.y89{bottom:377.645760px;}
.y24{bottom:382.500000px;}
.y57{bottom:382.692240px;}
.y23{bottom:403.380000px;}
.y3c{bottom:405.000000px;}
.y88{bottom:407.884320px;}
.y56{bottom:412.930800px;}
.y22{bottom:424.260000px;}
.y87{bottom:438.122880px;}
.y21{bottom:445.140000px;}
.y70{bottom:448.930800px;}
.y3b{bottom:460.080000px;}
.y55{bottom:464.051520px;}
.y20{bottom:466.020000px;}
.y86{bottom:468.361440px;}
.y6f{bottom:479.169360px;}
.y1f{bottom:486.900000px;}
.y54{bottom:494.290080px;}
.y85{bottom:498.600000px;}
.y1e{bottom:507.780000px;}
.y6e{bottom:509.407920px;}
.y3a{bottom:517.320000px;}
.y53{bottom:524.528640px;}
.y1d{bottom:534.420000px;}
.y6d{bottom:539.646480px;}
.y39{bottom:548.468640px;}
.y84{bottom:553.680000px;}
.y52{bottom:554.767200px;}
.y6c{bottom:569.702880px;}
.y38{bottom:578.707200px;}
.y51{bottom:585.005760px;}
.y1c{bottom:591.120000px;}
.y6b{bottom:599.941440px;}
.y83{bottom:609.121440px;}
.y1b{bottom:612.000000px;}
.y37{bottom:623.882880px;}
.y6a{bottom:630.189360px;}
.y1a{bottom:632.880000px;}
.y50{bottom:636.126480px;}
.y82{bottom:639.360000px;}
.y19{bottom:653.760000px;}
.y36{bottom:654.121440px;}
.y69{bottom:660.427920px;}
.y4f{bottom:666.365040px;}
.y81{bottom:669.601440px;}
.y18{bottom:674.640000px;}
.y35{bottom:684.360000px;}
.y68{bottom:690.666480px;}
.y17{bottom:695.520000px;}
.y4e{bottom:696.603600px;}
.y80{bottom:699.840000px;}
.y16{bottom:716.400000px;}
.y34{bottom:718.380000px;}
.y67{bottom:720.905040px;}
.y9a{bottom:720.910080px;}
.y7f{bottom:730.081440px;}
.y4d{bottom:747.906480px;}
.y66{bottom:750.961440px;}
.y99{bottom:750.966480px;}
.y15{bottom:757.440000px;}
.y7e{bottom:760.320000px;}
.y4c{bottom:777.962880px;}
.y13{bottom:778.500000px;}
.y65{bottom:781.203600px;}
.y98{bottom:781.205040px;}
.y33{bottom:790.380000px;}
.y4b{bottom:808.201440px;}
.y7d{bottom:811.441440px;}
.y12{bottom:819.360000px;}
.y64{bottom:832.506480px;}
.y97{bottom:832.507920px;}
.y32{bottom:832.852080px;}
.y4a{bottom:838.440000px;}
.y7c{bottom:841.680000px;}
.y11{bottom:846.000000px;}
.y63{bottom:862.745040px;}
.y96{bottom:862.746480px;}
.y31{bottom:867.959280px;}
.y49{bottom:872.460000px;}
.y62{bottom:892.801440px;}
.y95{bottom:892.802880px;}
.y7b{bottom:896.760000px;}
.y10{bottom:902.700000px;}
.y30{bottom:903.232080px;}
.y94{bottom:923.041440px;}
.yf{bottom:923.580000px;}
.y48{bottom:943.209360px;}
.y61{bottom:944.104320px;}
.y2f{bottom:944.449920px;}
.ye{bottom:944.460000px;}
.y7a{bottom:952.380720px;}
.y93{bottom:953.280000px;}
.yd{bottom:965.340000px;}
.y47{bottom:973.265760px;}
.y60{bottom:974.342880px;}
.y79{bottom:982.619280px;}
.y2e{bottom:985.485600px;}
.yc{bottom:986.220000px;}
.y46{bottom:1003.504320px;}
.y5f{bottom:1004.581440px;}
.y9{bottom:1007.100000px;}
.y92{bottom:1008.360000px;}
.y2d{bottom:1020.592800px;}
.y78{bottom:1033.741440px;}
.y45{bottom:1033.742880px;}
.y5e{bottom:1034.820000px;}
.y8{bottom:1053.900000px;}
.y2c{bottom:1055.700000px;}
.y44{bottom:1063.981440px;}
.y77{bottom:1063.983600px;}
.y2b{bottom:1089.720000px;}
.y5d{bottom:1089.900000px;}
.y76{bottom:1094.040000px;}
.y43{bottom:1094.220000px;}
.y4{bottom:1113.834600px;}
.y3{bottom:1132.195860px;}
.y2{bottom:1150.377840px;}
.y1{bottom:1164.780000px;}
.hc{height:4.134375px;}
.h8{height:20.160000px;}
.h7{height:20.161500px;}
.hf{height:27.907031px;}
.h9{height:40.140000px;}
.ha{height:40.318500px;}
.h6{height:40.320000px;}
.h2{height:42.894141px;}
.h3{height:47.545312px;}
.h4{height:48.095156px;}
.hb{height:52.277344px;}
.he{height:54.043419px;}
.hd{height:54.066459px;}
.h10{height:54.075099px;}
.h5{height:61.164492px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:94.681500px;}
.w5{width:105.120000px;}
.w2{width:200.521500px;}
.w6{width:231.660000px;}
.w7{width:236.878500px;}
.w3{width:469.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x1{left:106.200000px;}
.x6{left:115.200000px;}
.xb{left:133.200000px;}
.xc{left:160.209360px;}
.xd{left:187.200000px;}
.x9{left:210.600000px;}
.xe{left:214.200000px;}
.x2{left:265.490280px;}
.x8{left:316.440000px;}
.xf{left:487.262160px;}
.xa{left:549.000000px;}
.x3{left:685.800000px;}
.x4{left:701.465760px;}
.x5{left:786.600720px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.107200pt;}
.ls18{letter-spacing:-0.824320pt;}
.ls28{letter-spacing:-0.706560pt;}
.ls19{letter-spacing:-0.647680pt;}
.ls1f{letter-spacing:-0.588800pt;}
.ls27{letter-spacing:-0.471040pt;}
.lsf{letter-spacing:-0.449280pt;}
.lsd{letter-spacing:-0.412160pt;}
.lse{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.318720pt;}
.lsb{letter-spacing:-0.294400pt;}
.lsa{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.212480pt;}
.ls6{letter-spacing:-0.176640pt;}
.lsc{letter-spacing:-0.117760pt;}
.ls7{letter-spacing:-0.058880pt;}
.ls5{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.058880pt;}
.ls8{letter-spacing:0.074880pt;}
.ls14{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.149760pt;}
.ls0{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.227840pt;}
.ls1{letter-spacing:0.235520pt;}
.ls21{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.294400pt;}
.ls26{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.371840pt;}
.ls1c{letter-spacing:1.413120pt;}
.ls1b{letter-spacing:2.060800pt;}
.ls24{letter-spacing:3.944960pt;}
.ls1d{letter-spacing:4.592640pt;}
.ls23{letter-spacing:5.240320pt;}
.ls13{letter-spacing:5.817344pt;}
.ls16{letter-spacing:5.888000pt;}
.ls1a{letter-spacing:33.561600pt;}
.ls12{letter-spacing:34.856960pt;}
.ls15{letter-spacing:49.254400pt;}
.ls25{letter-spacing:56.903680pt;}
.ls11{letter-spacing:175.521280pt;}
.ws45{word-spacing:-53.120000pt;}
.ws7{word-spacing:-17.072640pt;}
.ws19{word-spacing:-16.997760pt;}
.ws8{word-spacing:-16.473600pt;}
.ws46{word-spacing:-13.601280pt;}
.wsa{word-spacing:-13.542400pt;}
.wsc{word-spacing:-13.424640pt;}
.ws2{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.248000pt;}
.ws3{word-spacing:-13.189120pt;}
.ws4{word-spacing:-13.071360pt;}
.ws9{word-spacing:-13.012480pt;}
.ws6{word-spacing:-12.953600pt;}
.ws5{word-spacing:-12.894720pt;}
.ws21{word-spacing:-12.659200pt;}
.ws20{word-spacing:-12.482560pt;}
.ws39{word-spacing:-12.270720pt;}
.ws1{word-spacing:-12.164480pt;}
.ws3b{word-spacing:-12.111360pt;}
.ws37{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.952000pt;}
.ws3a{word-spacing:-11.792640pt;}
.ws38{word-spacing:-11.686400pt;}
.ws35{word-spacing:-8.389120pt;}
.ws36{word-spacing:-7.810560pt;}
.ws25{word-spacing:-3.179520pt;}
.ws5d{word-spacing:-3.002880pt;}
.ws24{word-spacing:-2.826240pt;}
.ws23{word-spacing:-2.767360pt;}
.ws1d{word-spacing:-2.531840pt;}
.ws31{word-spacing:-1.707520pt;}
.ws3e{word-spacing:-1.236480pt;}
.ws1e{word-spacing:-1.059840pt;}
.ws58{word-spacing:-0.647680pt;}
.ws4b{word-spacing:-0.599040pt;}
.ws29{word-spacing:-0.588800pt;}
.ws3d{word-spacing:-0.471040pt;}
.ws1a{word-spacing:-0.449280pt;}
.ws11{word-spacing:-0.374400pt;}
.ws16{word-spacing:-0.294400pt;}
.ws4a{word-spacing:-0.176640pt;}
.ws5a{word-spacing:-0.149760pt;}
.ws12{word-spacing:-0.117760pt;}
.ws18{word-spacing:-0.074880pt;}
.wse{word-spacing:0.000000pt;}
.ws10{word-spacing:0.058880pt;}
.ws44{word-spacing:0.117760pt;}
.wsd{word-spacing:0.159360pt;}
.wsf{word-spacing:0.176640pt;}
.ws15{word-spacing:0.235520pt;}
.ws13{word-spacing:0.353280pt;}
.ws14{word-spacing:0.412160pt;}
.ws17{word-spacing:0.471040pt;}
.ws3f{word-spacing:0.588800pt;}
.ws2f{word-spacing:0.647680pt;}
.ws5e{word-spacing:0.706560pt;}
.ws5c{word-spacing:0.765440pt;}
.ws33{word-spacing:0.824320pt;}
.ws30{word-spacing:1.000960pt;}
.ws2d{word-spacing:2.119680pt;}
.ws2e{word-spacing:2.296320pt;}
.ws2c{word-spacing:2.414080pt;}
.ws32{word-spacing:2.767360pt;}
.ws59{word-spacing:2.944000pt;}
.ws1f{word-spacing:3.415040pt;}
.ws48{word-spacing:3.591680pt;}
.ws40{word-spacing:4.003840pt;}
.ws47{word-spacing:4.180480pt;}
.ws49{word-spacing:4.239360pt;}
.ws42{word-spacing:4.828160pt;}
.ws2a{word-spacing:5.122560pt;}
.ws41{word-spacing:5.299200pt;}
.ws1b{word-spacing:5.475840pt;}
.ws43{word-spacing:5.770240pt;}
.ws1c{word-spacing:5.946880pt;}
.ws34{word-spacing:6.123520pt;}
.ws28{word-spacing:7.065600pt;}
.ws22{word-spacing:7.242240pt;}
.ws5f{word-spacing:7.418880pt;}
.ws3c{word-spacing:7.713280pt;}
.ws54{word-spacing:7.889920pt;}
.ws55{word-spacing:8.066560pt;}
.ws4c{word-spacing:8.537600pt;}
.ws51{word-spacing:8.714240pt;}
.ws53{word-spacing:9.774080pt;}
.ws52{word-spacing:9.950720pt;}
.ws57{word-spacing:11.717120pt;}
.ws56{word-spacing:11.893760pt;}
.ws2b{word-spacing:13.660160pt;}
.ws4f{word-spacing:14.896640pt;}
.ws4e{word-spacing:15.073280pt;}
.ws26{word-spacing:17.369600pt;}
.ws27{word-spacing:17.487360pt;}
.ws5b{word-spacing:18.547200pt;}
.ws50{word-spacing:20.019200pt;}
.ws4d{word-spacing:22.609920pt;}
._7{margin-left:-175.933440pt;}
._b{margin-left:-174.990976pt;}
._8{margin-left:-123.540096pt;}
._5{margin-left:-115.608320pt;}
._c{margin-left:-78.663680pt;}
._f{margin-left:-10.657280pt;}
._6{margin-left:-6.417920pt;}
._d{margin-left:-2.708096pt;}
._1{margin-left:-1.285504pt;}
._4{width:1.381120pt;}
._e{width:2.912384pt;}
._9{width:107.180800pt;}
._a{width:175.521280pt;}
._0{width:336.621440pt;}
._2{width:631.171840pt;}
._3{width:757.916160pt;}
.fs4{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.000000pt;}
.y14{bottom:21.759867pt;}
.ya{bottom:21.920000pt;}
.y7{bottom:51.200640pt;}
.y6{bottom:69.114880pt;}
.y5{bottom:83.040000pt;}
.y75{bottom:144.798880pt;}
.y91{bottom:149.440000pt;}
.y9b{bottom:157.934080pt;}
.y90{bottom:161.118880pt;}
.y74{bottom:165.760000pt;}
.y5c{bottom:168.653440pt;}
.y2a{bottom:176.640000pt;}
.y73{bottom:177.438240pt;}
.y8f{bottom:182.080000pt;}
.y8e{bottom:194.080000pt;}
.y72{bottom:198.240000pt;}
.y42{bottom:198.880000pt;}
.y29{bottom:207.040000pt;}
.y71{bottom:210.400000pt;}
.y5b{bottom:214.094080pt;}
.y41{bottom:225.768320pt;}
.y8d{bottom:228.332160pt;}
.y40{bottom:252.647040pt;}
.y8c{bottom:255.210880pt;}
.y5a{bottom:259.696640pt;}
.y28{bottom:269.760000pt;}
.y3f{bottom:279.525760pt;}
.y8b{bottom:281.927680pt;}
.y27{bottom:284.320000pt;}
.y59{bottom:286.413440pt;}
.y26{bottom:302.880000pt;}
.y3e{bottom:306.404480pt;}
.y8a{bottom:308.806400pt;}
.y58{bottom:313.292160pt;}
.y25{bottom:321.440000pt;}
.y3d{bottom:333.283200pt;}
.y89{bottom:335.685120pt;}
.y24{bottom:340.000000pt;}
.y57{bottom:340.170880pt;}
.y23{bottom:358.560000pt;}
.y3c{bottom:360.000000pt;}
.y88{bottom:362.563840pt;}
.y56{bottom:367.049600pt;}
.y22{bottom:377.120000pt;}
.y87{bottom:389.442560pt;}
.y21{bottom:395.680000pt;}
.y70{bottom:399.049600pt;}
.y3b{bottom:408.960000pt;}
.y55{bottom:412.490240pt;}
.y20{bottom:414.240000pt;}
.y86{bottom:416.321280pt;}
.y6f{bottom:425.928320pt;}
.y1f{bottom:432.800000pt;}
.y54{bottom:439.368960pt;}
.y85{bottom:443.200000pt;}
.y1e{bottom:451.360000pt;}
.y6e{bottom:452.807040pt;}
.y3a{bottom:459.840000pt;}
.y53{bottom:466.247680pt;}
.y1d{bottom:475.040000pt;}
.y6d{bottom:479.685760pt;}
.y39{bottom:487.527680pt;}
.y84{bottom:492.160000pt;}
.y52{bottom:493.126400pt;}
.y6c{bottom:506.402560pt;}
.y38{bottom:514.406400pt;}
.y51{bottom:520.005120pt;}
.y1c{bottom:525.440000pt;}
.y6b{bottom:533.281280pt;}
.y83{bottom:541.441280pt;}
.y1b{bottom:544.000000pt;}
.y37{bottom:554.562560pt;}
.y6a{bottom:560.168320pt;}
.y1a{bottom:562.560000pt;}
.y50{bottom:565.445760pt;}
.y82{bottom:568.320000pt;}
.y19{bottom:581.120000pt;}
.y36{bottom:581.441280pt;}
.y69{bottom:587.047040pt;}
.y4f{bottom:592.324480pt;}
.y81{bottom:595.201280pt;}
.y18{bottom:599.680000pt;}
.y35{bottom:608.320000pt;}
.y68{bottom:613.925760pt;}
.y17{bottom:618.240000pt;}
.y4e{bottom:619.203200pt;}
.y80{bottom:622.080000pt;}
.y16{bottom:636.800000pt;}
.y34{bottom:638.560000pt;}
.y67{bottom:640.804480pt;}
.y9a{bottom:640.808960pt;}
.y7f{bottom:648.961280pt;}
.y4d{bottom:664.805760pt;}
.y66{bottom:667.521280pt;}
.y99{bottom:667.525760pt;}
.y15{bottom:673.280000pt;}
.y7e{bottom:675.840000pt;}
.y4c{bottom:691.522560pt;}
.y13{bottom:692.000000pt;}
.y65{bottom:694.403200pt;}
.y98{bottom:694.404480pt;}
.y33{bottom:702.560000pt;}
.y4b{bottom:718.401280pt;}
.y7d{bottom:721.281280pt;}
.y12{bottom:728.320000pt;}
.y64{bottom:740.005760pt;}
.y97{bottom:740.007040pt;}
.y32{bottom:740.312960pt;}
.y4a{bottom:745.280000pt;}
.y7c{bottom:748.160000pt;}
.y11{bottom:752.000000pt;}
.y63{bottom:766.884480pt;}
.y96{bottom:766.885760pt;}
.y31{bottom:771.519360pt;}
.y49{bottom:775.520000pt;}
.y62{bottom:793.601280pt;}
.y95{bottom:793.602560pt;}
.y7b{bottom:797.120000pt;}
.y10{bottom:802.400000pt;}
.y30{bottom:802.872960pt;}
.y94{bottom:820.481280pt;}
.yf{bottom:820.960000pt;}
.y48{bottom:838.408320pt;}
.y61{bottom:839.203840pt;}
.y2f{bottom:839.511040pt;}
.ye{bottom:839.520000pt;}
.y7a{bottom:846.560640pt;}
.y93{bottom:847.360000pt;}
.yd{bottom:858.080000pt;}
.y47{bottom:865.125120pt;}
.y60{bottom:866.082560pt;}
.y79{bottom:873.439360pt;}
.y2e{bottom:875.987200pt;}
.yc{bottom:876.640000pt;}
.y46{bottom:892.003840pt;}
.y5f{bottom:892.961280pt;}
.y9{bottom:895.200000pt;}
.y92{bottom:896.320000pt;}
.y2d{bottom:907.193600pt;}
.y78{bottom:918.881280pt;}
.y45{bottom:918.882560pt;}
.y5e{bottom:919.840000pt;}
.y8{bottom:936.800000pt;}
.y2c{bottom:938.400000pt;}
.y44{bottom:945.761280pt;}
.y77{bottom:945.763200pt;}
.y2b{bottom:968.640000pt;}
.y5d{bottom:968.800000pt;}
.y76{bottom:972.480000pt;}
.y43{bottom:972.640000pt;}
.y4{bottom:990.075200pt;}
.y3{bottom:1006.396320pt;}
.y2{bottom:1022.558080pt;}
.y1{bottom:1035.360000pt;}
.hc{height:3.675000pt;}
.h8{height:17.920000pt;}
.h7{height:17.921333pt;}
.hf{height:24.806250pt;}
.h9{height:35.680000pt;}
.ha{height:35.838667pt;}
.h6{height:35.840000pt;}
.h2{height:38.128125pt;}
.h3{height:42.262500pt;}
.h4{height:42.751250pt;}
.hb{height:46.468750pt;}
.he{height:48.038595pt;}
.hd{height:48.059075pt;}
.h10{height:48.066755pt;}
.h5{height:54.368437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:84.161333pt;}
.w5{width:93.440000pt;}
.w2{width:178.241333pt;}
.w6{width:205.920000pt;}
.w7{width:210.558667pt;}
.w3{width:417.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x1{left:94.400000pt;}
.x6{left:102.400000pt;}
.xb{left:118.400000pt;}
.xc{left:142.408320pt;}
.xd{left:166.400000pt;}
.x9{left:187.200000pt;}
.xe{left:190.400000pt;}
.x2{left:235.991360pt;}
.x8{left:281.280000pt;}
.xf{left:433.121920pt;}
.xa{left:488.000000pt;}
.x3{left:609.600000pt;}
.x4{left:623.525120pt;}
.x5{left:699.200640pt;}
}




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