
    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_c5c2e8864be6d24276e86bf2.woff2')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_e2370a0fedc20dbf0fe283a2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f582975e7b34522023b66f6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_01d4e03af50a7dd72ff041e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_2eb8247ff7ee6028d30ee28b.woff2')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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_02cd79889d58085cd8b90250.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_cbe4da0346a7a1eb85eda767.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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:-90.000003px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:90.000003px;}
.v1{vertical-align:125.999991px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015638px;}
.ls6{letter-spacing:0.113798px;}
.ls5{letter-spacing:0.113951px;}
.ls4{letter-spacing:0.159048px;}
.ls2{letter-spacing:0.159318px;}
.ls0{letter-spacing:0.159453px;}
.ls3{letter-spacing:0.159498px;}
.ls1{letter-spacing:0.159633px;}
.ls9{letter-spacing:108.000633px;}
.ls7{letter-spacing:108.000638px;}
.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;}
}
.ws3{word-spacing:-81.360003px;}
.ws1{word-spacing:-65.088002px;}
.ws0{word-spacing:-36.612001px;}
.ws2{word-spacing:-23.449446px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-24.076799px;}
._d{margin-left:-12.905930px;}
._e{margin-left:-11.491129px;}
._4{margin-left:-10.200001px;}
._6{margin-left:-9.007201px;}
._5{margin-left:-7.477201px;}
._2{margin-left:-6.292800px;}
._7{margin-left:-5.100000px;}
._3{margin-left:-4.080000px;}
._1{margin-left:-2.462400px;}
._9{margin-left:-1.306871px;}
._8{width:1.380971px;}
._a{width:2.967063px;}
._b{width:5.605633px;}
._c{width:108.206933px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(18,146,160);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fsb{font-size:72.000002px;}
.fsf{font-size:89.923804px;}
.fse{font-size:93.382797px;}
.fsd{font-size:103.758609px;}
.fsc{font-size:114.134404px;}
.fs9{font-size:156.000011px;}
.fs4{font-size:160.000009px;}
.fs6{font-size:162.000005px;}
.fs3{font-size:224.000010px;}
.fs5{font-size:240.000002px;}
.fs0{font-size:273.599986px;}
.fs7{font-size:288.000009px;}
.fs2{font-size:335.999999px;}
.fs8{font-size:360.000012px;}
.fs1{font-size:510.000028px;}
.fsa{font-size:660.000036px;}
.y1{bottom:-288.532945px;}
.y0{bottom:0.000000px;}
.y15{bottom:286.183797px;}
.y50{bottom:304.111967px;}
.y38{bottom:340.540312px;}
.y37{bottom:389.140201px;}
.y14{bottom:407.053801px;}
.y4f{bottom:415.891959px;}
.y36{bottom:437.740090px;}
.y13{bottom:462.943803px;}
.y12{bottom:518.833805px;}
.y35{bottom:534.940093px;}
.y11{bottom:574.723807px;}
.y34{bottom:583.540094px;}
.y10{bottom:630.613775px;}
.y33{bottom:632.140096px;}
.y32{bottom:680.739873px;}
.yf{bottom:704.503766px;}
.y31{bottom:744.339725px;}
.ye{bottom:778.393757px;}
.yd{bottom:834.283759px;}
.yc{bottom:890.173749px;}
.yb{bottom:946.063740px;}
.ya{bottom:1019.953731px;}
.y9{bottom:1093.843733px;}
.y8{bottom:1149.733724px;}
.y4e{bottom:1171.441747px;}
.y7{bottom:1205.623717px;}
.y4d{bottom:1227.331738px;}
.y4c{bottom:1283.221739px;}
.y16{bottom:1304.039023px;}
.y4b{bottom:1339.111730px;}
.y4a{bottom:1395.001723px;}
.y30{bottom:1399.540758px;}
.y2f{bottom:1448.140760px;}
.y17{bottom:1487.542339px;}
.y5f{bottom:1661.034866px;}
.y74{bottom:1695.533841px;}
.y5e{bottom:1716.924834px;}
.y73{bottom:1727.033842px;}
.y63{bottom:1735.403050px;}
.y72{bottom:1758.533847px;}
.y5d{bottom:1772.814825px;}
.y71{bottom:1791.213492px;}
.y5c{bottom:1828.704816px;}
.y5b{bottom:1884.594806px;}
.y7a{bottom:1918.674275px;}
.y70{bottom:1922.123750px;}
.y5a{bottom:1940.484808px;}
.y79{bottom:1950.174276px;}
.y6f{bottom:1953.623751px;}
.y94{bottom:1969.988457px;}
.y7c{bottom:1980.048843px;}
.y78{bottom:1981.674277px;}
.y6e{bottom:1985.123763px;}
.y62{bottom:1992.137058px;}
.y64{bottom:1994.453546px;}
.y59{bottom:1996.374798px;}
.y51{bottom:1998.524640px;}
.y77{bottom:2013.174278px;}
.y7b{bottom:2013.798844px;}
.y6d{bottom:2016.623764px;}
.y93{bottom:2018.588455px;}
.y76{bottom:2044.674285px;}
.y6c{bottom:2048.123757px;}
.y58{bottom:2052.264789px;}
.y75{bottom:2077.353931px;}
.y6b{bottom:2079.623759px;}
.y57{bottom:2108.154768px;}
.y6a{bottom:2112.303405px;}
.y56{bottom:2164.044792px;}
.y69{bottom:2198.683701px;}
.y55{bottom:2210.484794px;}
.y68{bottom:2231.308702px;}
.y54{bottom:2244.774795px;}
.y61{bottom:2248.866229px;}
.y67{bottom:2263.933703px;}
.y66{bottom:2297.443510px;}
.y53{bottom:2300.664786px;}
.y65{bottom:2333.443513px;}
.y2e{bottom:2339.140226px;}
.y52{bottom:2356.554778px;}
.y2d{bottom:2436.340116px;}
.y60{bottom:2454.123149px;}
.y2c{bottom:2484.940050px;}
.y90{bottom:2518.020226px;}
.y2b{bottom:2533.540063px;}
.y8f{bottom:2573.910217px;}
.y2a{bottom:2582.140087px;}
.y8e{bottom:2629.800185px;}
.y29{bottom:2630.740122px;}
.y28{bottom:2679.340124px;}
.y8d{bottom:2685.690187px;}
.y8c{bottom:2741.580188px;}
.y27{bottom:2774.740127px;}
.y8b{bottom:2797.470190px;}
.y26{bottom:2823.340129px;}
.y49{bottom:2835.007504px;}
.y8a{bottom:2853.360192px;}
.y25{bottom:2871.940130px;}
.y48{bottom:2890.897506px;}
.y89{bottom:2909.250194px;}
.y24{bottom:2920.540132px;}
.y47{bottom:2946.787508px;}
.y88{bottom:2965.140196px;}
.y23{bottom:2969.140133px;}
.y46{bottom:3002.677509px;}
.y22{bottom:3017.740180px;}
.y87{bottom:3021.030197px;}
.y45{bottom:3076.567512px;}
.y86{bottom:3076.920165px;}
.y21{bottom:3081.340133px;}
.y44{bottom:3132.457480px;}
.y85{bottom:3132.810156px;}
.y20{bottom:3176.740159px;}
.y43{bottom:3188.347470px;}
.y84{bottom:3188.700147px;}
.y1f{bottom:3225.340183px;}
.y42{bottom:3244.237461px;}
.y83{bottom:3244.590148px;}
.y1e{bottom:3273.940196px;}
.y41{bottom:3300.127463px;}
.y82{bottom:3300.480139px;}
.y1d{bottom:3322.540220px;}
.y40{bottom:3356.017453px;}
.y81{bottom:3356.370129px;}
.y1c{bottom:3371.140210px;}
.y80{bottom:3412.260120px;}
.y1b{bottom:3419.740200px;}
.y3f{bottom:3429.907444px;}
.y7f{bottom:3468.150122px;}
.y1a{bottom:3468.340202px;}
.y3e{bottom:3485.797435px;}
.y19{bottom:3516.940203px;}
.y7e{bottom:3524.040112px;}
.y3d{bottom:3541.687437px;}
.y7d{bottom:3579.930105px;}
.y18{bottom:3580.540193px;}
.y3c{bottom:3597.577427px;}
.y3b{bottom:3653.467420px;}
.y3a{bottom:3677.686778px;}
.y92{bottom:3677.687003px;}
.y95{bottom:3734.657939px;}
.y39{bottom:3764.086781px;}
.y91{bottom:3764.087010px;}
.y6{bottom:4094.268307px;}
.y5{bottom:4166.328317px;}
.y4{bottom:4283.928317px;}
.y3{bottom:4491.026063px;}
.y2{bottom:4669.526073px;}
.hb{height:51.679689px;}
.h10{height:64.544918px;}
.hf{height:67.027691px;}
.hd{height:70.928737px;}
.he{height:74.475174px;}
.h11{height:81.699724px;}
.hc{height:85.600803px;}
.h9{height:110.742191px;}
.h5{height:114.843757px;}
.h6{height:116.279301px;}
.h1{height:196.382803px;}
.h7{height:196.875006px;}
.h8{height:246.093758px;}
.h3{height:286.781248px;}
.h4{height:286.781261px;}
.h2{height:366.064473px;}
.ha{height:473.730495px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x3{left:71.923232px;}
.x2{left:74.320873px;}
.xc{left:112.942927px;}
.x7{left:125.692177px;}
.x4{left:129.442909px;}
.x5{left:131.980751px;}
.x6{left:183.442911px;}
.x8{left:193.500636px;}
.x2e{left:204.750007px;}
.x1{left:576.103113px;}
.x10{left:820.159881px;}
.x1b{left:839.976226px;}
.x1a{left:841.950427px;}
.x19{left:847.276205px;}
.x18{left:848.746013px;}
.x1c{left:858.585582px;}
.x17{left:862.358588px;}
.xe{left:879.797087px;}
.x1d{left:1110.996137px;}
.xf{left:1125.688718px;}
.x12{left:1134.320265px;}
.x1f{left:1139.913783px;}
.x15{left:1144.832620px;}
.x1e{left:1149.802321px;}
.x14{left:1161.069504px;}
.x26{left:1169.710710px;}
.x16{left:1172.456369px;}
.x25{left:1180.771393px;}
.x13{left:1204.500639px;}
.x23{left:1404.267560px;}
.x20{left:1415.944114px;}
.x21{left:1418.412724px;}
.x22{left:1421.357832px;}
.x11{left:1425.316570px;}
.x24{left:1460.660272px;}
.xa{left:1830.917534px;}
.xb{left:1887.766373px;}
.x27{left:2711.891403px;}
.xd{left:2753.140926px;}
.x2b{left:2755.561026px;}
.x28{left:2763.353563px;}
.x29{left:2765.891406px;}
.x9{left:2767.481639px;}
.x2d{left:2808.587351px;}
.x2a{left:2817.353565px;}
.x2c{left:2833.721877px;}
@media print{
.v2{vertical-align:-80.000003pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:80.000003pt;}
.v1{vertical-align:111.999992pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013901pt;}
.ls6{letter-spacing:0.101154pt;}
.ls5{letter-spacing:0.101290pt;}
.ls4{letter-spacing:0.141376pt;}
.ls2{letter-spacing:0.141616pt;}
.ls0{letter-spacing:0.141736pt;}
.ls3{letter-spacing:0.141776pt;}
.ls1{letter-spacing:0.141896pt;}
.ls9{letter-spacing:96.000563pt;}
.ls7{letter-spacing:96.000567pt;}
.ws3{word-spacing:-72.320002pt;}
.ws1{word-spacing:-57.856002pt;}
.ws0{word-spacing:-32.544001pt;}
.ws2{word-spacing:-20.843952pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-21.401599pt;}
._d{margin-left:-11.471938pt;}
._e{margin-left:-10.214337pt;}
._4{margin-left:-9.066667pt;}
._6{margin-left:-8.006401pt;}
._5{margin-left:-6.646401pt;}
._2{margin-left:-5.593600pt;}
._7{margin-left:-4.533334pt;}
._3{margin-left:-3.626667pt;}
._1{margin-left:-2.188800pt;}
._9{margin-left:-1.161663pt;}
._8{width:1.227530pt;}
._a{width:2.637389pt;}
._b{width:4.982785pt;}
._c{width:96.183941pt;}
.fsb{font-size:64.000002pt;}
.fsf{font-size:79.932271pt;}
.fse{font-size:83.006931pt;}
.fsd{font-size:92.229875pt;}
.fsc{font-size:101.452803pt;}
.fs9{font-size:138.666676pt;}
.fs4{font-size:142.222230pt;}
.fs6{font-size:144.000005pt;}
.fs3{font-size:199.111120pt;}
.fs5{font-size:213.333335pt;}
.fs0{font-size:243.199988pt;}
.fs7{font-size:256.000008pt;}
.fs2{font-size:298.666666pt;}
.fs8{font-size:320.000010pt;}
.fs1{font-size:453.333359pt;}
.fsa{font-size:586.666699pt;}
.y1{bottom:-256.473729pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:254.385598pt;}
.y50{bottom:270.321748pt;}
.y38{bottom:302.702499pt;}
.y37{bottom:345.902401pt;}
.y14{bottom:361.825601pt;}
.y4f{bottom:369.681741pt;}
.y36{bottom:389.102302pt;}
.y13{bottom:411.505603pt;}
.y12{bottom:461.185604pt;}
.y35{bottom:475.502305pt;}
.y11{bottom:510.865606pt;}
.y34{bottom:518.702306pt;}
.y10{bottom:560.545577pt;}
.y33{bottom:561.902308pt;}
.y32{bottom:605.102109pt;}
.yf{bottom:626.225570pt;}
.y31{bottom:661.635311pt;}
.ye{bottom:691.905562pt;}
.yd{bottom:741.585563pt;}
.yc{bottom:791.265555pt;}
.yb{bottom:840.945546pt;}
.ya{bottom:906.625539pt;}
.y9{bottom:972.305541pt;}
.y8{bottom:1021.985532pt;}
.y4e{bottom:1041.281553pt;}
.y7{bottom:1071.665526pt;}
.y4d{bottom:1090.961544pt;}
.y4c{bottom:1140.641546pt;}
.y16{bottom:1159.145799pt;}
.y4b{bottom:1190.321538pt;}
.y4a{bottom:1240.001531pt;}
.y30{bottom:1244.036229pt;}
.y2f{bottom:1287.236231pt;}
.y17{bottom:1322.259857pt;}
.y5f{bottom:1476.475437pt;}
.y74{bottom:1507.141192pt;}
.y5e{bottom:1526.155408pt;}
.y73{bottom:1535.141193pt;}
.y63{bottom:1542.580489pt;}
.y72{bottom:1563.141198pt;}
.y5d{bottom:1575.835400pt;}
.y71{bottom:1592.189770pt;}
.y5c{bottom:1625.515392pt;}
.y5b{bottom:1675.195383pt;}
.y7a{bottom:1705.488244pt;}
.y70{bottom:1708.554444pt;}
.y5a{bottom:1724.875385pt;}
.y79{bottom:1733.488245pt;}
.y6f{bottom:1736.554445pt;}
.y94{bottom:1751.100851pt;}
.y7c{bottom:1760.043416pt;}
.y78{bottom:1761.488246pt;}
.y6e{bottom:1764.554456pt;}
.y62{bottom:1770.788496pt;}
.y64{bottom:1772.847596pt;}
.y59{bottom:1774.555376pt;}
.y51{bottom:1776.466346pt;}
.y77{bottom:1789.488247pt;}
.y7b{bottom:1790.043417pt;}
.y6d{bottom:1792.554457pt;}
.y93{bottom:1794.300849pt;}
.y76{bottom:1817.488254pt;}
.y6c{bottom:1820.554451pt;}
.y58{bottom:1824.235368pt;}
.y75{bottom:1846.536828pt;}
.y6b{bottom:1848.554453pt;}
.y57{bottom:1873.915350pt;}
.y6a{bottom:1877.603027pt;}
.y56{bottom:1923.595371pt;}
.y69{bottom:1954.385512pt;}
.y55{bottom:1964.875372pt;}
.y68{bottom:1983.385513pt;}
.y54{bottom:1995.355373pt;}
.y61{bottom:1998.992204pt;}
.y67{bottom:2012.385514pt;}
.y66{bottom:2042.172009pt;}
.y53{bottom:2045.035365pt;}
.y65{bottom:2074.172012pt;}
.y2e{bottom:2079.235756pt;}
.y52{bottom:2094.715359pt;}
.y2d{bottom:2165.635659pt;}
.y60{bottom:2181.442799pt;}
.y2c{bottom:2208.835600pt;}
.y90{bottom:2238.240201pt;}
.y2b{bottom:2252.035612pt;}
.y8f{bottom:2287.920193pt;}
.y2a{bottom:2295.235633pt;}
.y8e{bottom:2337.600164pt;}
.y29{bottom:2338.435664pt;}
.y28{bottom:2381.635666pt;}
.y8d{bottom:2387.280166pt;}
.y8c{bottom:2436.960168pt;}
.y27{bottom:2466.435668pt;}
.y8b{bottom:2486.640169pt;}
.y26{bottom:2509.635670pt;}
.y49{bottom:2520.006670pt;}
.y8a{bottom:2536.320171pt;}
.y25{bottom:2552.835671pt;}
.y48{bottom:2569.686672pt;}
.y89{bottom:2586.000172pt;}
.y24{bottom:2596.035673pt;}
.y47{bottom:2619.366673pt;}
.y88{bottom:2635.680174pt;}
.y23{bottom:2639.235674pt;}
.y46{bottom:2669.046675pt;}
.y22{bottom:2682.435715pt;}
.y87{bottom:2685.360175pt;}
.y45{bottom:2734.726677pt;}
.y86{bottom:2735.040147pt;}
.y21{bottom:2738.969007pt;}
.y44{bottom:2784.406649pt;}
.y85{bottom:2784.720139pt;}
.y20{bottom:2823.769030pt;}
.y43{bottom:2834.086640pt;}
.y84{bottom:2834.400130pt;}
.y1f{bottom:2866.969051pt;}
.y42{bottom:2883.766632pt;}
.y83{bottom:2884.080132pt;}
.y1e{bottom:2910.169063pt;}
.y41{bottom:2933.446633pt;}
.y82{bottom:2933.760123pt;}
.y1d{bottom:2953.369084pt;}
.y40{bottom:2983.126625pt;}
.y81{bottom:2983.440115pt;}
.y1c{bottom:2996.569075pt;}
.y80{bottom:3033.120107pt;}
.y1b{bottom:3039.769067pt;}
.y3f{bottom:3048.806617pt;}
.y7f{bottom:3082.800108pt;}
.y1a{bottom:3082.969068pt;}
.y3e{bottom:3098.486609pt;}
.y19{bottom:3126.169070pt;}
.y7e{bottom:3132.480100pt;}
.y3d{bottom:3148.166610pt;}
.y7d{bottom:3182.160093pt;}
.y18{bottom:3182.702393pt;}
.y3c{bottom:3197.846602pt;}
.y3b{bottom:3247.526595pt;}
.y3a{bottom:3269.054914pt;}
.y92{bottom:3269.055114pt;}
.y95{bottom:3319.695946pt;}
.y39{bottom:3345.854917pt;}
.y91{bottom:3345.855120pt;}
.y6{bottom:3639.349606pt;}
.y5{bottom:3703.402948pt;}
.y4{bottom:3807.936281pt;}
.y3{bottom:3992.023167pt;}
.y2{bottom:4150.689842pt;}
.hb{height:45.937501pt;}
.h10{height:57.373261pt;}
.hf{height:59.580170pt;}
.hd{height:63.047766pt;}
.he{height:66.200154pt;}
.h11{height:72.621977pt;}
.hc{height:76.089602pt;}
.h9{height:98.437503pt;}
.h5{height:102.083339pt;}
.h6{height:103.359378pt;}
.h1{height:174.562491pt;}
.h7{height:175.000006pt;}
.h8{height:218.750007pt;}
.h3{height:254.916665pt;}
.h4{height:254.916677pt;}
.h2{height:325.390643pt;}
.ha{height:421.093773pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x3{left:63.931762pt;}
.x2{left:66.062998pt;}
.xc{left:100.393713pt;}
.x7{left:111.726379pt;}
.x4{left:115.060364pt;}
.x5{left:117.316223pt;}
.x6{left:163.060365pt;}
.x8{left:172.000566pt;}
.x2e{left:182.000006pt;}
.x1{left:512.091656pt;}
.x10{left:729.031005pt;}
.x1b{left:746.645534pt;}
.x1a{left:748.400380pt;}
.x19{left:753.134404pt;}
.x18{left:754.440900pt;}
.x1c{left:763.187184pt;}
.x17{left:766.540968pt;}
.xe{left:782.041855pt;}
.x1d{left:987.552122pt;}
.xf{left:1000.612194pt;}
.x12{left:1008.284680pt;}
.x1f{left:1013.256696pt;}
.x15{left:1017.628996pt;}
.x1e{left:1022.046508pt;}
.x14{left:1032.061781pt;}
.x26{left:1039.742853pt;}
.x16{left:1042.183439pt;}
.x25{left:1049.574572pt;}
.x13{left:1070.667234pt;}
.x23{left:1248.237831pt;}
.x20{left:1258.616990pt;}
.x21{left:1260.811310pt;}
.x22{left:1263.429184pt;}
.x11{left:1266.948063pt;}
.x24{left:1298.364687pt;}
.xa{left:1627.482252pt;}
.xb{left:1678.014554pt;}
.x27{left:2410.570136pt;}
.xd{left:2447.236378pt;}
.x2b{left:2449.387578pt;}
.x28{left:2456.314279pt;}
.x29{left:2458.570139pt;}
.x9{left:2459.983679pt;}
.x2d{left:2496.522090pt;}
.x2a{left:2504.314280pt;}
.x2c{left:2518.863891pt;}
}




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