
    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_33f9146ff35de495e7398318.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_4ea8d6a3c0d4dfec0501ab36.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905143;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_6fda5b2814597641d579e493.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.770020;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_454f3481577baeb856852e64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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_dca31bac0f55558e6f0325d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970787;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_64a56935817a7efc1f8c3ee3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678223;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_200dfd4dca892322ab39cc84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.925293;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_a6d22b495b78dd084e752a38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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:-56.250002px;}
.v1{vertical-align:-12.964050px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:56.250002px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001501px;}
.lsa{letter-spacing:0.003489px;}
.ls7{letter-spacing:0.005238px;}
.ls2{letter-spacing:0.009888px;}
.ls3{letter-spacing:0.009933px;}
.ls9{letter-spacing:0.025399px;}
.ls6{letter-spacing:0.038374px;}
.lsb{letter-spacing:0.064869px;}
.ls8{letter-spacing:0.065049px;}
.ls0{letter-spacing:0.074491px;}
.ls5{letter-spacing:0.097579px;}
.ls4{letter-spacing:107.986470px;}
.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;}
}
.ws2{word-spacing:-58.835834px;}
.ws3{word-spacing:-56.013451px;}
.ws4{word-spacing:-40.650000px;}
.ws7{word-spacing:-38.700000px;}
.ws0{word-spacing:-37.200000px;}
.ws1{word-spacing:-34.224000px;}
.ws8{word-spacing:-27.100001px;}
.ws6{word-spacing:-25.800001px;}
.ws5{word-spacing:-0.150000px;}
.ws9{word-spacing:-0.100000px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:69.280398px;}
._7{margin-left:-18.780000px;}
._6{margin-left:-15.120000px;}
._13{margin-left:-12.237402px;}
._11{margin-left:-10.990467px;}
._9{margin-left:-9.019447px;}
._4{margin-left:-6.480000px;}
._10{margin-left:-5.220000px;}
._8{margin-left:-3.840000px;}
._1{margin-left:-2.700000px;}
._2{margin-left:-1.620000px;}
._5{width:1.920000px;}
._a{width:3.049328px;}
._b{width:5.217402px;}
._3{width:7.020000px;}
._12{width:8.100000px;}
._d{width:9.360000px;}
._15{width:12.090000px;}
._c{width:13.200000px;}
._0{width:29.700001px;}
._14{width:107.980397px;}
._16{width:1332.863200px;}
._f{width:2993.386495px;}
._e{width:3705.803588px;}
.fc2{color:rgb(0,151,167);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(62,62,62);}
.fc0{color:rgb(103,78,167);}
.fs6{font-size:90.000003px;}
.fs5{font-size:100.000004px;}
.fs3{font-size:138.000001px;}
.fs2{font-size:149.999999px;}
.fs4{font-size:217.106399px;}
.fs1{font-size:240.000002px;}
.fs0{font-size:540.000017px;}
.y0{bottom:0.000000px;}
.y7{bottom:56.470513px;}
.y6{bottom:101.470503px;}
.y5{bottom:146.470504px;}
.y61{bottom:352.164611px;}
.y67{bottom:358.354998px;}
.y4c{bottom:385.917413px;}
.y60{bottom:403.914612px;}
.y4b{bottom:437.667381px;}
.y5f{bottom:455.664614px;}
.y4a{bottom:489.417383px;}
.y5e{bottom:507.414604px;}
.y49{bottom:541.167384px;}
.y48{bottom:592.917386px;}
.y47{bottom:644.667388px;}
.y46{bottom:696.417389px;}
.y66{bottom:727.280756px;}
.y45{bottom:748.167391px;}
.y5d{bottom:784.489232px;}
.y44{bottom:799.917393px;}
.y5c{bottom:836.239234px;}
.y43{bottom:851.667383px;}
.y5b{bottom:887.989235px;}
.y64{bottom:915.525887px;}
.y5a{bottom:939.739215px;}
.y59{bottom:991.489216px;}
.y58{bottom:1043.239218px;}
.y42{bottom:1080.226148px;}
.y57{bottom:1094.989220px;}
.y41{bottom:1131.976082px;}
.y40{bottom:1183.726084px;}
.y56{bottom:1215.775985px;}
.y3f{bottom:1235.476085px;}
.y55{bottom:1267.525986px;}
.y3e{bottom:1287.226087px;}
.y54{bottom:1319.275988px;}
.y3d{bottom:1338.976089px;}
.y53{bottom:1371.025990px;}
.y3c{bottom:1390.726090px;}
.y65{bottom:1421.644841px;}
.y52{bottom:1422.775991px;}
.y3b{bottom:1442.476069px;}
.y51{bottom:1474.525993px;}
.y3a{bottom:1494.226071px;}
.y50{bottom:1526.275995px;}
.y39{bottom:1545.976073px;}
.y4f{bottom:1578.025996px;}
.y38{bottom:1597.726074px;}
.y4e{bottom:1629.775998px;}
.y4d{bottom:1681.526000px;}
.y62{bottom:1709.117788px;}
.ya{bottom:1798.356087px;}
.y63{bottom:2064.300549px;}
.y2e{bottom:2477.954925px;}
.y37{bottom:2499.596854px;}
.y2d{bottom:2529.704927px;}
.y36{bottom:2551.346856px;}
.y35{bottom:2603.096858px;}
.y26{bottom:2608.546245px;}
.y34{bottom:2654.846848px;}
.y33{bottom:2706.596853px;}
.y25{bottom:2712.046249px;}
.y24{bottom:2763.796239px;}
.y23{bottom:2815.546244px;}
.y32{bottom:2836.473008px;}
.y31{bottom:2888.223009px;}
.y22{bottom:2921.843107px;}
.y30{bottom:2939.973011px;}
.y21{bottom:2973.593108px;}
.y2f{bottom:2991.723015px;}
.y20{bottom:3025.343110px;}
.y1f{bottom:3077.093112px;}
.y2c{bottom:3144.547248px;}
.y1e{bottom:3180.593081px;}
.y2b{bottom:3196.297249px;}
.y1d{bottom:3232.343083px;}
.y2a{bottom:3248.047251px;}
.y1c{bottom:3284.093085px;}
.y29{bottom:3299.797253px;}
.y1b{bottom:3335.843081px;}
.y28{bottom:3351.547243px;}
.y1a{bottom:3387.593082px;}
.y27{bottom:3403.297245px;}
.y9{bottom:3503.919366px;}
.yf{bottom:3664.793266px;}
.y19{bottom:3702.587732px;}
.ye{bottom:3716.543267px;}
.y18{bottom:3754.337733px;}
.yd{bottom:3768.293273px;}
.y17{bottom:3806.087735px;}
.yc{bottom:3820.043275px;}
.y16{bottom:3857.837737px;}
.y15{bottom:3909.587738px;}
.y14{bottom:4010.590512px;}
.y13{bottom:4078.090502px;}
.y12{bottom:4145.590498px;}
.y11{bottom:4236.915949px;}
.yb{bottom:4269.659849px;}
.y10{bottom:4288.665947px;}
.y8{bottom:4365.028448px;}
.y4{bottom:4530.377642px;}
.y3{bottom:4602.377639px;}
.y2{bottom:4736.523987px;}
.y1{bottom:4898.523992px;}
.ha{height:64.260002px;}
.h6{height:107.099999px;}
.h9{height:107.102249px;}
.h5{height:114.899999px;}
.h3{height:121.874999px;}
.h7{height:127.650005px;}
.h8{height:132.850005px;}
.h4{height:166.303502px;}
.h2{height:183.840001px;}
.h1{height:413.640013px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x5{left:44.109044px;}
.xa{left:57.623035px;}
.x11{left:60.788389px;}
.x17{left:65.141774px;}
.x13{left:87.317425px;}
.x18{left:114.788391px;}
.x8{left:247.340151px;}
.x1{left:284.188734px;}
.x27{left:381.769043px;}
.x7{left:444.270395px;}
.x9{left:588.284445px;}
.x4{left:704.621156px;}
.x14{left:948.361710px;}
.xf{left:974.446006px;}
.x10{left:978.799391px;}
.x6{left:1068.084151px;}
.x3{left:1079.314212px;}
.x19{left:1116.605398px;}
.x1a{left:1120.958783px;}
.x25{left:1132.802530px;}
.x1b{left:1170.605400px;}
.x2{left:1184.233324px;}
.xb{left:1714.827880px;}
.x16{left:1829.586659px;}
.x12{left:1839.044309px;}
.x1f{left:1843.397693px;}
.x20{left:1893.044311px;}
.x2a{left:1904.854696px;}
.x15{left:1919.093752px;}
.x28{left:2122.691220px;}
.x26{left:2134.379521px;}
.xc{left:2442.101563px;}
.x21{left:2599.848758px;}
.x22{left:2604.202143px;}
.x23{left:2653.848760px;}
.x1c{left:2706.103549px;}
.x1d{left:2710.456934px;}
.xd{left:2723.323812px;}
.xe{left:2727.677197px;}
.x1e{left:2760.103551px;}
.x29{left:2918.829896px;}
.x24{left:2945.047144px;}
@media print{
.v2{vertical-align:-50.000002pt;}
.v1{vertical-align:-11.523600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:50.000002pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001335pt;}
.lsa{letter-spacing:0.003102pt;}
.ls7{letter-spacing:0.004656pt;}
.ls2{letter-spacing:0.008790pt;}
.ls3{letter-spacing:0.008830pt;}
.ls9{letter-spacing:0.022577pt;}
.ls6{letter-spacing:0.034110pt;}
.lsb{letter-spacing:0.057662pt;}
.ls8{letter-spacing:0.057822pt;}
.ls0{letter-spacing:0.066215pt;}
.ls5{letter-spacing:0.086737pt;}
.ls4{letter-spacing:95.987973pt;}
.ws2{word-spacing:-52.298519pt;}
.ws3{word-spacing:-49.789734pt;}
.ws4{word-spacing:-36.133333pt;}
.ws7{word-spacing:-34.400000pt;}
.ws0{word-spacing:-33.066666pt;}
.ws1{word-spacing:-30.421334pt;}
.ws8{word-spacing:-24.088890pt;}
.ws6{word-spacing:-22.933334pt;}
.ws5{word-spacing:-0.133333pt;}
.ws9{word-spacing:-0.088889pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:61.582576pt;}
._7{margin-left:-16.693333pt;}
._6{margin-left:-13.440000pt;}
._13{margin-left:-10.877691pt;}
._11{margin-left:-9.769304pt;}
._9{margin-left:-8.017286pt;}
._4{margin-left:-5.760000pt;}
._10{margin-left:-4.640000pt;}
._8{margin-left:-3.413333pt;}
._1{margin-left:-2.400000pt;}
._2{margin-left:-1.440000pt;}
._5{width:1.706667pt;}
._a{width:2.710514pt;}
._b{width:4.637690pt;}
._3{width:6.240000pt;}
._12{width:7.200000pt;}
._d{width:8.320000pt;}
._15{width:10.746667pt;}
._c{width:11.733333pt;}
._0{width:26.400001pt;}
._14{width:95.982575pt;}
._16{width:1184.767289pt;}
._f{width:2660.787995pt;}
._e{width:3294.047634pt;}
.fs6{font-size:80.000003pt;}
.fs5{font-size:88.888893pt;}
.fs3{font-size:122.666668pt;}
.fs2{font-size:133.333332pt;}
.fs4{font-size:192.983466pt;}
.fs1{font-size:213.333335pt;}
.fs0{font-size:480.000015pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.196011pt;}
.y6{bottom:90.196002pt;}
.y5{bottom:130.196004pt;}
.y61{bottom:313.035210pt;}
.y67{bottom:318.537776pt;}
.y4c{bottom:343.037701pt;}
.y60{bottom:359.035211pt;}
.y4b{bottom:389.037672pt;}
.y5f{bottom:405.035213pt;}
.y4a{bottom:435.037673pt;}
.y5e{bottom:451.035204pt;}
.y49{bottom:481.037675pt;}
.y48{bottom:527.037676pt;}
.y47{bottom:573.037678pt;}
.y46{bottom:619.037679pt;}
.y66{bottom:646.471783pt;}
.y45{bottom:665.037681pt;}
.y5d{bottom:697.323762pt;}
.y44{bottom:711.037682pt;}
.y5c{bottom:743.323763pt;}
.y43{bottom:757.037674pt;}
.y5b{bottom:789.323765pt;}
.y64{bottom:813.800789pt;}
.y5a{bottom:835.323746pt;}
.y59{bottom:881.323748pt;}
.y58{bottom:927.323749pt;}
.y42{bottom:960.201020pt;}
.y57{bottom:973.323751pt;}
.y41{bottom:1006.200962pt;}
.y40{bottom:1052.200963pt;}
.y56{bottom:1080.689764pt;}
.y3f{bottom:1098.200965pt;}
.y55{bottom:1126.689766pt;}
.y3e{bottom:1144.200966pt;}
.y54{bottom:1172.689767pt;}
.y3d{bottom:1190.200968pt;}
.y53{bottom:1218.689769pt;}
.y3c{bottom:1236.200969pt;}
.y65{bottom:1263.684303pt;}
.y52{bottom:1264.689770pt;}
.y3b{bottom:1282.200951pt;}
.y51{bottom:1310.689771pt;}
.y3a{bottom:1328.200952pt;}
.y50{bottom:1356.689773pt;}
.y39{bottom:1374.200954pt;}
.y4f{bottom:1402.689774pt;}
.y38{bottom:1420.200955pt;}
.y4e{bottom:1448.689776pt;}
.y4d{bottom:1494.689777pt;}
.y62{bottom:1519.215811pt;}
.ya{bottom:1598.538744pt;}
.y63{bottom:1834.933821pt;}
.y2e{bottom:2202.626600pt;}
.y37{bottom:2221.863871pt;}
.y2d{bottom:2248.626602pt;}
.y36{bottom:2267.863872pt;}
.y35{bottom:2313.863874pt;}
.y26{bottom:2318.707774pt;}
.y34{bottom:2359.863865pt;}
.y33{bottom:2405.863870pt;}
.y25{bottom:2410.707777pt;}
.y24{bottom:2456.707768pt;}
.y23{bottom:2502.707773pt;}
.y32{bottom:2521.309340pt;}
.y31{bottom:2567.309342pt;}
.y22{bottom:2597.193873pt;}
.y30{bottom:2613.309343pt;}
.y21{bottom:2643.193874pt;}
.y2f{bottom:2659.309347pt;}
.y20{bottom:2689.193876pt;}
.y1f{bottom:2735.193877pt;}
.y2c{bottom:2795.153109pt;}
.y1e{bottom:2827.193850pt;}
.y2b{bottom:2841.153110pt;}
.y1d{bottom:2873.193851pt;}
.y2a{bottom:2887.153112pt;}
.y1c{bottom:2919.193853pt;}
.y29{bottom:2933.153113pt;}
.y1b{bottom:2965.193849pt;}
.y28{bottom:2979.153105pt;}
.y1a{bottom:3011.193851pt;}
.y27{bottom:3025.153106pt;}
.y9{bottom:3114.594992pt;}
.yf{bottom:3257.594014pt;}
.y19{bottom:3291.189095pt;}
.ye{bottom:3303.594015pt;}
.y18{bottom:3337.189096pt;}
.yd{bottom:3349.594021pt;}
.y17{bottom:3383.189098pt;}
.yc{bottom:3395.594022pt;}
.y16{bottom:3429.189099pt;}
.y15{bottom:3475.189101pt;}
.y14{bottom:3564.969344pt;}
.y13{bottom:3624.969336pt;}
.y12{bottom:3684.969331pt;}
.y11{bottom:3766.147510pt;}
.yb{bottom:3795.253199pt;}
.y10{bottom:3812.147509pt;}
.y8{bottom:3880.025287pt;}
.y4{bottom:4027.002348pt;}
.y3{bottom:4091.002345pt;}
.y2{bottom:4210.243544pt;}
.y1{bottom:4354.243549pt;}
.ha{height:57.120002pt;}
.h6{height:95.199999pt;}
.h9{height:95.201999pt;}
.h5{height:102.133333pt;}
.h3{height:108.333332pt;}
.h7{height:113.466671pt;}
.h8{height:118.088893pt;}
.h4{height:147.825335pt;}
.h2{height:163.413334pt;}
.h1{height:367.680012pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x5{left:39.208039pt;}
.xa{left:51.220476pt;}
.x11{left:54.034124pt;}
.x17{left:57.903799pt;}
.x13{left:77.615488pt;}
.x18{left:102.034125pt;}
.x8{left:219.857912pt;}
.x1{left:252.612208pt;}
.x27{left:339.350261pt;}
.x7{left:394.907018pt;}
.x9{left:522.919507pt;}
.x4{left:626.329916pt;}
.x14{left:842.988187pt;}
.xf{left:866.174228pt;}
.x10{left:870.043903pt;}
.x6{left:949.408134pt;}
.x3{left:959.390411pt;}
.x19{left:992.538132pt;}
.x1a{left:996.407807pt;}
.x25{left:1006.935582pt;}
.x1b{left:1040.538133pt;}
.x2{left:1052.651844pt;}
.xb{left:1524.291449pt;}
.x16{left:1626.299252pt;}
.x12{left:1634.706052pt;}
.x1f{left:1638.575727pt;}
.x20{left:1682.706054pt;}
.x2a{left:1693.204174pt;}
.x15{left:1705.861113pt;}
.x28{left:1886.836640pt;}
.x26{left:1897.226241pt;}
.xc{left:2170.756944pt;}
.x21{left:2310.976674pt;}
.x22{left:2314.846349pt;}
.x23{left:2358.976675pt;}
.x1c{left:2405.425377pt;}
.x1d{left:2409.295052pt;}
.xd{left:2420.732277pt;}
.xe{left:2424.601953pt;}
.x1e{left:2453.425379pt;}
.x29{left:2594.515463pt;}
.x24{left:2617.819684pt;}
}




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