
    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_740646d452e44995f35614c1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_a3bc3b4fa132286fc8c66a81.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921875;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_5e26a17d877b905bfe21d2fb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_9308885d3737c622cf429010.woff')format("woff");}.ff4{font-family:ff4;line-height:1.020020;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_a43dc616beb65bfd7145abd2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.020020;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_f1792ff9ca6da8d288a93535.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_ed8657b7e90af99f710499a8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_a52e6343521d4e912d03937d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.979004;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_dcaf3e3988ecf11bac08ebbf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.921875;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_751a7a456c315dabc1bbd0cb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_d87cf2c18d45b1355fb7ee98.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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);}
.v3{vertical-align:-79.500000px;}
.v2{vertical-align:-27.150000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.150000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.045000px;}
.ls3{letter-spacing:0.432600px;}
.ls1{letter-spacing:1.332000px;}
.ls2{letter-spacing:2.100000px;}
.ls5{letter-spacing:32.613300px;}
.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;}
}
.ws4{word-spacing:-144.150000px;}
.ws8{word-spacing:-39.341400px;}
.ws6{word-spacing:-36.738300px;}
.ws0{word-spacing:-29.916300px;}
.ws5{word-spacing:-25.866300px;}
.ws9{word-spacing:-21.954450px;}
.ws1{word-spacing:-21.171300px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.717300px;}
.ws3{word-spacing:325.033050px;}
._12{margin-left:-14.554950px;}
._13{margin-left:-11.369400px;}
._9{margin-left:-10.129650px;}
._10{margin-left:-8.937300px;}
._8{margin-left:-7.465650px;}
._f{margin-left:-6.384600px;}
._a{margin-left:-5.365500px;}
._0{margin-left:-3.502800px;}
._6{margin-left:-2.335200px;}
._4{margin-left:-1.334400px;}
._2{width:1.334400px;}
._5{width:2.502000px;}
._1{width:4.336800px;}
._11{width:6.582300px;}
._e{width:14.673000px;}
._14{width:16.439850px;}
._7{width:18.666300px;}
._3{width:21.183600px;}
._17{width:31.539300px;}
._15{width:34.047750px;}
._16{width:64.833600px;}
._d{width:239.064750px;}
._c{width:243.964650px;}
._b{width:251.425500px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:63.150000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fsc{font-size:85.500000px;}
.fs6{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs5{font-size:108.150000px;}
.fsa{font-size:121.650000px;}
.fsb{font-size:121.800000px;}
.fs9{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs0{font-size:166.800000px;}
.fs7{font-size:193.800000px;}
.y0{bottom:0.000000px;}
.y10{bottom:9.900000px;}
.y60{bottom:29.287500px;}
.y38{bottom:31.012500px;}
.y27{bottom:32.137500px;}
.y15{bottom:39.975000px;}
.y5e{bottom:58.687500px;}
.y8{bottom:59.662500px;}
.y17{bottom:61.350000px;}
.y5f{bottom:66.112500px;}
.y26{bottom:76.387500px;}
.y1f{bottom:78.037500px;}
.y25{bottom:81.562500px;}
.y7{bottom:88.950000px;}
.y55{bottom:91.087500px;}
.y1a{bottom:96.412500px;}
.y5d{bottom:102.637500px;}
.y51{bottom:103.725000px;}
.y14{bottom:109.012500px;}
.y1e{bottom:110.700000px;}
.y54{bottom:127.125000px;}
.y19{bottom:127.950000px;}
.y41{bottom:133.612500px;}
.y50{bottom:139.800000px;}
.y1d{bottom:143.362500px;}
.y9{bottom:143.700000px;}
.y5c{bottom:145.425000px;}
.ye{bottom:150.030000px;}
.y48{bottom:156.900000px;}
.y53{bottom:163.170000px;}
.y40{bottom:169.650000px;}
.y13{bottom:173.250000px;}
.yd{bottom:174.825000px;}
.y4f{bottom:175.845000px;}
.y18{bottom:177.075000px;}
.y31{bottom:185.805000px;}
.y47{bottom:192.945000px;}
.y52{bottom:199.245000px;}
.yc{bottom:200.745000px;}
.y3f{bottom:205.695000px;}
.y12{bottom:205.905000px;}
.y1c{bottom:208.725000px;}
.y30{bottom:221.850000px;}
.y46{bottom:228.975000px;}
.y1b{bottom:240.255000px;}
.y2f{bottom:257.895000px;}
.yb{bottom:259.320000px;}
.y36{bottom:263.550000px;}
.y5b{bottom:274.995000px;}
.y11{bottom:292.995000px;}
.y2e{bottom:293.970000px;}
.y35{bottom:295.095000px;}
.y45{bottom:301.080000px;}
.y5a{bottom:318.945000px;}
.y4e{bottom:320.025000px;}
.ya{bottom:324.675000px;}
.y2d{bottom:330.000000px;}
.y4d{bottom:356.100000px;}
.y6{bottom:358.200000px;}
.y3e{bottom:359.550000px;}
.y24{bottom:360.195000px;}
.y59{bottom:361.725000px;}
.y4c{bottom:392.130000px;}
.y5{bottom:393.150000px;}
.y3d{bottom:395.625000px;}
.y2c{bottom:402.120000px;}
.y33{bottom:418.875000px;}
.y23{bottom:424.380000px;}
.y4b{bottom:428.175000px;}
.y2b{bottom:438.150000px;}
.y32{bottom:443.625000px;}
.y34{bottom:444.375000px;}
.y3c{bottom:467.700000px;}
.y4{bottom:473.130000px;}
.y22{bottom:489.750000px;}
.y58{bottom:491.280000px;}
.y3b{bottom:503.775000px;}
.y44{bottom:509.220000px;}
.y2a{bottom:510.255000px;}
.y57{bottom:535.245000px;}
.y43{bottom:545.250000px;}
.y29{bottom:546.300000px;}
.y21{bottom:555.075000px;}
.y37{bottom:561.630000px;}
.y4a{bottom:572.400000px;}
.y3a{bottom:575.850000px;}
.y56{bottom:578.025000px;}
.y28{bottom:582.330000px;}
.y20{bottom:586.620000px;}
.y3{bottom:597.420000px;}
.y49{bottom:608.445000px;}
.y39{bottom:611.925000px;}
.y42{bottom:617.370000px;}
.y2{bottom:648.120000px;}
.y1{bottom:698.820000px;}
.yf{bottom:709.875000px;}
.y16{bottom:720.750000px;}
.h9{height:43.875000px;}
.hb{height:62.226562px;}
.h6{height:62.356201px;}
.h13{height:64.125000px;}
.h14{height:64.237500px;}
.h3{height:65.580249px;}
.h4{height:70.987500px;}
.h8{height:72.392651px;}
.h5{height:74.512500px;}
.he{height:81.112500px;}
.hd{height:82.168652px;}
.hc{height:82.696729px;}
.h12{height:84.391699px;}
.h10{height:91.237500px;}
.h11{height:91.350000px;}
.h7{height:91.409985px;}
.hf{height:108.112500px;}
.h2{height:108.225000px;}
.h1{height:125.100000px;}
.h15{height:147.598901px;}
.h16{height:147.752490px;}
.ha{height:163.802637px;}
.h17{height:198.436816px;}
.h0{height:810.000000px;}
.w2{width:586.125000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:1.162500px;}
.x1f{left:19.687479px;}
.x2e{left:26.849979px;}
.x28{left:29.812479px;}
.x20{left:36.224979px;}
.x10{left:44.812479px;}
.xc{left:51.750000px;}
.x1{left:64.687479px;}
.x13{left:72.974979px;}
.x5{left:74.249979px;}
.x7{left:82.912479px;}
.xf{left:90.037479px;}
.x2{left:98.737479px;}
.x1a{left:101.924979px;}
.x6{left:103.574979px;}
.x18{left:110.962479px;}
.x1b{left:113.812479px;}
.x11{left:130.762479px;}
.x8{left:182.399979px;}
.x4{left:229.994979px;}
.x3{left:260.999979px;}
.x19{left:346.349979px;}
.x1c{left:391.499979px;}
.x1d{left:474.569979px;}
.xe{left:637.199979px;}
.x2b{left:693.044979px;}
.x2a{left:694.349979px;}
.x14{left:735.599979px;}
.x21{left:755.549979px;}
.x29{left:792.629979px;}
.xb{left:821.444979px;}
.x26{left:836.849979px;}
.x22{left:851.744979px;}
.x25{left:887.444979px;}
.x2d{left:896.624979px;}
.x23{left:903.674979px;}
.x16{left:908.294979px;}
.xa{left:929.504979px;}
.x2f{left:930.704979px;}
.x2c{left:934.529979px;}
.x17{left:947.369979px;}
.x30{left:986.144979px;}
.x24{left:1061.024979px;}
.x1e{left:1094.744979px;}
.x15{left:1139.954979px;}
.x27{left:1171.769979px;}
.x12{left:1225.574979px;}
.x9{left:1305.194979px;}
@media print{
.v3{vertical-align:-70.666667pt;}
.v2{vertical-align:-24.133333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.133333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.040000pt;}
.ls3{letter-spacing:0.384533pt;}
.ls1{letter-spacing:1.184000pt;}
.ls2{letter-spacing:1.866667pt;}
.ls5{letter-spacing:28.989600pt;}
.ws4{word-spacing:-128.133333pt;}
.ws8{word-spacing:-34.970133pt;}
.ws6{word-spacing:-32.656267pt;}
.ws0{word-spacing:-26.592267pt;}
.ws5{word-spacing:-22.992267pt;}
.ws9{word-spacing:-19.515067pt;}
.ws1{word-spacing:-18.818933pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.637600pt;}
.ws3{word-spacing:288.918267pt;}
._12{margin-left:-12.937733pt;}
._13{margin-left:-10.106133pt;}
._9{margin-left:-9.004133pt;}
._10{margin-left:-7.944267pt;}
._8{margin-left:-6.636133pt;}
._f{margin-left:-5.675200pt;}
._a{margin-left:-4.769333pt;}
._0{margin-left:-3.113600pt;}
._6{margin-left:-2.075733pt;}
._4{margin-left:-1.186133pt;}
._2{width:1.186133pt;}
._5{width:2.224000pt;}
._1{width:3.854933pt;}
._11{width:5.850933pt;}
._e{width:13.042667pt;}
._14{width:14.613200pt;}
._7{width:16.592267pt;}
._3{width:18.829867pt;}
._17{width:28.034933pt;}
._15{width:30.264667pt;}
._16{width:57.629867pt;}
._d{width:212.502000pt;}
._c{width:216.857467pt;}
._b{width:223.489333pt;}
.fs3{font-size:56.133333pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fsc{font-size:76.000000pt;}
.fs6{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs5{font-size:96.133333pt;}
.fsa{font-size:108.133333pt;}
.fsb{font-size:108.266667pt;}
.fs9{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs0{font-size:148.266667pt;}
.fs7{font-size:172.266667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:8.800000pt;}
.y60{bottom:26.033333pt;}
.y38{bottom:27.566667pt;}
.y27{bottom:28.566667pt;}
.y15{bottom:35.533333pt;}
.y5e{bottom:52.166667pt;}
.y8{bottom:53.033333pt;}
.y17{bottom:54.533333pt;}
.y5f{bottom:58.766667pt;}
.y26{bottom:67.900000pt;}
.y1f{bottom:69.366667pt;}
.y25{bottom:72.500000pt;}
.y7{bottom:79.066667pt;}
.y55{bottom:80.966667pt;}
.y1a{bottom:85.700000pt;}
.y5d{bottom:91.233333pt;}
.y51{bottom:92.200000pt;}
.y14{bottom:96.900000pt;}
.y1e{bottom:98.400000pt;}
.y54{bottom:113.000000pt;}
.y19{bottom:113.733333pt;}
.y41{bottom:118.766667pt;}
.y50{bottom:124.266667pt;}
.y1d{bottom:127.433333pt;}
.y9{bottom:127.733333pt;}
.y5c{bottom:129.266667pt;}
.ye{bottom:133.360000pt;}
.y48{bottom:139.466667pt;}
.y53{bottom:145.040000pt;}
.y40{bottom:150.800000pt;}
.y13{bottom:154.000000pt;}
.yd{bottom:155.400000pt;}
.y4f{bottom:156.306667pt;}
.y18{bottom:157.400000pt;}
.y31{bottom:165.160000pt;}
.y47{bottom:171.506667pt;}
.y52{bottom:177.106667pt;}
.yc{bottom:178.440000pt;}
.y3f{bottom:182.840000pt;}
.y12{bottom:183.026667pt;}
.y1c{bottom:185.533333pt;}
.y30{bottom:197.200000pt;}
.y46{bottom:203.533333pt;}
.y1b{bottom:213.560000pt;}
.y2f{bottom:229.240000pt;}
.yb{bottom:230.506667pt;}
.y36{bottom:234.266667pt;}
.y5b{bottom:244.440000pt;}
.y11{bottom:260.440000pt;}
.y2e{bottom:261.306667pt;}
.y35{bottom:262.306667pt;}
.y45{bottom:267.626667pt;}
.y5a{bottom:283.506667pt;}
.y4e{bottom:284.466667pt;}
.ya{bottom:288.600000pt;}
.y2d{bottom:293.333333pt;}
.y4d{bottom:316.533333pt;}
.y6{bottom:318.400000pt;}
.y3e{bottom:319.600000pt;}
.y24{bottom:320.173333pt;}
.y59{bottom:321.533333pt;}
.y4c{bottom:348.560000pt;}
.y5{bottom:349.466667pt;}
.y3d{bottom:351.666667pt;}
.y2c{bottom:357.440000pt;}
.y33{bottom:372.333333pt;}
.y23{bottom:377.226667pt;}
.y4b{bottom:380.600000pt;}
.y2b{bottom:389.466667pt;}
.y32{bottom:394.333333pt;}
.y34{bottom:395.000000pt;}
.y3c{bottom:415.733333pt;}
.y4{bottom:420.560000pt;}
.y22{bottom:435.333333pt;}
.y58{bottom:436.693333pt;}
.y3b{bottom:447.800000pt;}
.y44{bottom:452.640000pt;}
.y2a{bottom:453.560000pt;}
.y57{bottom:475.773333pt;}
.y43{bottom:484.666667pt;}
.y29{bottom:485.600000pt;}
.y21{bottom:493.400000pt;}
.y37{bottom:499.226667pt;}
.y4a{bottom:508.800000pt;}
.y3a{bottom:511.866667pt;}
.y56{bottom:513.800000pt;}
.y28{bottom:517.626667pt;}
.y20{bottom:521.440000pt;}
.y3{bottom:531.040000pt;}
.y49{bottom:540.840000pt;}
.y39{bottom:543.933333pt;}
.y42{bottom:548.773333pt;}
.y2{bottom:576.106667pt;}
.y1{bottom:621.173333pt;}
.yf{bottom:631.000000pt;}
.y16{bottom:640.666667pt;}
.h9{height:39.000000pt;}
.hb{height:55.312500pt;}
.h6{height:55.427734pt;}
.h13{height:57.000000pt;}
.h14{height:57.100000pt;}
.h3{height:58.293555pt;}
.h4{height:63.100000pt;}
.h8{height:64.349023pt;}
.h5{height:66.233333pt;}
.he{height:72.100000pt;}
.hd{height:73.038802pt;}
.hc{height:73.508203pt;}
.h12{height:75.014844pt;}
.h10{height:81.100000pt;}
.h11{height:81.200000pt;}
.h7{height:81.253320pt;}
.hf{height:96.100000pt;}
.h2{height:96.200000pt;}
.h1{height:111.200000pt;}
.h15{height:131.199023pt;}
.h16{height:131.335547pt;}
.ha{height:145.602344pt;}
.h17{height:176.388281pt;}
.h0{height:720.000000pt;}
.w2{width:521.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:1.033333pt;}
.x1f{left:17.499981pt;}
.x2e{left:23.866648pt;}
.x28{left:26.499981pt;}
.x20{left:32.199981pt;}
.x10{left:39.833314pt;}
.xc{left:46.000000pt;}
.x1{left:57.499981pt;}
.x13{left:64.866648pt;}
.x5{left:65.999981pt;}
.x7{left:73.699981pt;}
.xf{left:80.033314pt;}
.x2{left:87.766648pt;}
.x1a{left:90.599981pt;}
.x6{left:92.066648pt;}
.x18{left:98.633314pt;}
.x1b{left:101.166648pt;}
.x11{left:116.233314pt;}
.x8{left:162.133314pt;}
.x4{left:204.439981pt;}
.x3{left:231.999981pt;}
.x19{left:307.866648pt;}
.x1c{left:347.999981pt;}
.x1d{left:421.839981pt;}
.xe{left:566.399981pt;}
.x2b{left:616.039981pt;}
.x2a{left:617.199981pt;}
.x14{left:653.866648pt;}
.x21{left:671.599981pt;}
.x29{left:704.559981pt;}
.xb{left:730.173314pt;}
.x26{left:743.866648pt;}
.x22{left:757.106648pt;}
.x25{left:788.839981pt;}
.x2d{left:796.999981pt;}
.x23{left:803.266648pt;}
.x16{left:807.373314pt;}
.xa{left:826.226648pt;}
.x2f{left:827.293314pt;}
.x2c{left:830.693314pt;}
.x17{left:842.106648pt;}
.x30{left:876.573314pt;}
.x24{left:943.133314pt;}
.x1e{left:973.106648pt;}
.x15{left:1013.293314pt;}
.x27{left:1041.573314pt;}
.x12{left:1089.399981pt;}
.x9{left:1160.173314pt;}
}




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