
    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_1ed1e7cf87dab731bc8c79ae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_83a4478c55b4ecae651efa5b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_e23be63a094eeadb47b327b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_7662414291494398a603800e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.658000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:34.308000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:19.928015px;}
.ls1{letter-spacing:21.581249px;}
.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;}
}
.wse{word-spacing:-3.215927px;}
.ws11{word-spacing:-0.227147px;}
.ws8{word-spacing:-0.059776px;}
.ws5{word-spacing:0.000000px;}
.ws1b{word-spacing:1.685672px;}
.ws1c{word-spacing:2.821408px;}
.ws2{word-spacing:3.299613px;}
.ws6{word-spacing:3.359389px;}
.ws1d{word-spacing:3.837594px;}
.ws16{word-spacing:4.136472px;}
.ws15{word-spacing:4.495125px;}
.ws19{word-spacing:4.794003px;}
.ws1a{word-spacing:5.212432px;}
.ws9{word-spacing:7.125252px;}
.wsf{word-spacing:7.543681px;}
.wsd{word-spacing:7.723008px;}
.ws12{word-spacing:8.141437px;}
.wsc{word-spacing:8.500090px;}
.ws13{word-spacing:8.679417px;}
.ws1e{word-spacing:9.396724px;}
.ws20{word-spacing:9.456500px;}
.ws14{word-spacing:9.516276px;}
.wsa{word-spacing:10.293358px;}
.ws18{word-spacing:10.472685px;}
.ws1f{word-spacing:10.831339px;}
.ws17{word-spacing:11.070441px;}
.wsb{word-spacing:12.086626px;}
.ws10{word-spacing:25.536136px;}
.ws1{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws3{word-spacing:55.125058px;}
.ws4{word-spacing:55.184834px;}
.ws7{word-spacing:74.659724px;}
._26{margin-left:-29.349820px;}
._2d{margin-left:-28.226053px;}
._2b{margin-left:-22.365613px;}
._10{margin-left:-7.115728px;}
._4{margin-left:-4.961375px;}
._14{margin-left:-3.347434px;}
._3{margin-left:-2.223667px;}
._6{margin-left:-1.004215px;}
._23{width:1.613941px;}
._1{width:2.668393px;}
._22{width:14.645022px;}
._21{width:16.151382px;}
._2e{width:18.960835px;}
._27{width:19.965050px;}
._28{width:21.459440px;}
._20{width:22.726698px;}
._29{width:23.836138px;}
._18{width:25.428570px;}
._5{width:26.540366px;}
._2c{width:27.568522px;}
._1b{width:28.632512px;}
._2a{width:30.067127px;}
._19{width:31.095282px;}
._24{width:32.147303px;}
._25{width:33.641767px;}
._2f{width:34.789399px;}
._1f{width:35.984911px;}
._1e{width:37.039363px;}
._1d{width:38.316160px;}
._1c{width:39.977906px;}
._1a{width:41.266673px;}
._17{width:43.038600px;}
._12{width:71.730720px;}
._e{width:76.464962px;}
._2{width:80.697600px;}
._f{width:87.511478px;}
._0{width:96.836850px;}
._d{width:100.913183px;}
._a{width:102.455378px;}
._9{width:104.965954px;}
._16{width:121.289602px;}
._15{width:124.888079px;}
._c{width:154.699253px;}
._7{width:170.539787px;}
._13{width:174.705064px;}
._8{width:180.462536px;}
._b{width:183.809970px;}
._11{width:225.067104px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y29{bottom:134.047500px;}
.y28{bottom:211.752000px;}
.y26{bottom:229.684500px;}
.y4f{bottom:240.757500px;}
.y27{bottom:247.617000px;}
.y8a{bottom:252.843000px;}
.y4d{bottom:258.690000px;}
.y25{bottom:266.148000px;}
.y89{bottom:270.775500px;}
.y4e{bottom:276.622500px;}
.y23{bottom:284.080500px;}
.y88{bottom:288.708000px;}
.y4c{bottom:295.153500px;}
.y24{bottom:302.013000px;}
.y87{bottom:306.640500px;}
.y4a{bottom:313.086000px;}
.y22{bottom:320.544000px;}
.y86{bottom:324.573000px;}
.y4b{bottom:331.018500px;}
.y20{bottom:338.476500px;}
.y85{bottom:342.505500px;}
.y76{bottom:343.198500px;}
.y49{bottom:349.549500px;}
.y21{bottom:356.409000px;}
.y84{bottom:360.439500px;}
.y75{bottom:361.131000px;}
.y47{bottom:367.482000px;}
.y1f{bottom:374.940000px;}
.y83{bottom:378.372000px;}
.y74{bottom:379.063500px;}
.y48{bottom:385.414500px;}
.y1d{bottom:392.872500px;}
.y82{bottom:396.304500px;}
.y73{bottom:396.996000px;}
.y46{bottom:403.945500px;}
.y1e{bottom:410.805000px;}
.y81{bottom:414.237000px;}
.y72{bottom:414.928500px;}
.y44{bottom:421.878000px;}
.y1c{bottom:429.336000px;}
.y80{bottom:432.169500px;}
.y71{bottom:432.862500px;}
.y45{bottom:439.810500px;}
.y1a{bottom:447.268500px;}
.y7f{bottom:450.103500px;}
.y70{bottom:450.795000px;}
.y43{bottom:458.341500px;}
.y1b{bottom:465.201000px;}
.y7e{bottom:468.036000px;}
.y6f{bottom:468.727500px;}
.y41{bottom:476.274000px;}
.y6b{bottom:476.661000px;}
.y19{bottom:483.732000px;}
.y6a{bottom:484.222500px;}
.y7d{bottom:485.968500px;}
.y42{bottom:494.206500px;}
.y17{bottom:501.664500px;}
.y7c{bottom:503.901000px;}
.y6e{bottom:504.592500px;}
.y69{bottom:508.941000px;}
.y40{bottom:512.737500px;}
.y68{bottom:516.502500px;}
.y18{bottom:519.597000px;}
.y7b{bottom:521.833500px;}
.y3e{bottom:530.670000px;}
.y16{bottom:538.128000px;}
.y7a{bottom:539.766000px;}
.y67{bottom:541.219500px;}
.y3f{bottom:548.602500px;}
.y66{bottom:548.781000px;}
.y14{bottom:556.060500px;}
.y79{bottom:557.700000px;}
.y3d{bottom:567.133500px;}
.y65{bottom:573.498000px;}
.y15{bottom:573.993000px;}
.y78{bottom:575.632500px;}
.y64{bottom:581.059500px;}
.y3b{bottom:585.066000px;}
.y13{bottom:592.524000px;}
.y3c{bottom:603.000000px;}
.y63{bottom:605.776500px;}
.y11{bottom:610.456500px;}
.y62{bottom:613.338000px;}
.y77{bottom:614.403000px;}
.y3a{bottom:621.529500px;}
.y12{bottom:628.389000px;}
.y61{bottom:638.055000px;}
.y38{bottom:639.462000px;}
.y60{bottom:645.616500px;}
.y10{bottom:646.920000px;}
.y39{bottom:657.396000px;}
.ye{bottom:664.852500px;}
.y5f{bottom:670.333500px;}
.y37{bottom:675.925500px;}
.yf{bottom:682.785000px;}
.y35{bottom:693.858000px;}
.y5e{bottom:693.976500px;}
.yd{bottom:701.316000px;}
.y5d{bottom:701.538000px;}
.y36{bottom:711.792000px;}
.yb{bottom:719.248500px;}
.y5c{bottom:726.255000px;}
.y34{bottom:730.321500px;}
.y5b{bottom:733.816500px;}
.yc{bottom:737.181000px;}
.y32{bottom:748.254000px;}
.ya{bottom:755.712000px;}
.y5a{bottom:758.533500px;}
.y59{bottom:766.095000px;}
.y33{bottom:766.188000px;}
.y8{bottom:773.644500px;}
.y31{bottom:784.717500px;}
.y58{bottom:790.812000px;}
.y9{bottom:791.577000px;}
.y57{bottom:798.373500px;}
.y2f{bottom:802.650000px;}
.y7{bottom:810.108000px;}
.y30{bottom:820.584000px;}
.y56{bottom:823.090500px;}
.y5{bottom:828.040500px;}
.y55{bottom:830.652000px;}
.y2e{bottom:839.113500px;}
.y6{bottom:845.973000px;}
.y54{bottom:855.369000px;}
.y2c{bottom:857.046000px;}
.y53{bottom:862.932000px;}
.y4{bottom:871.410000px;}
.y2d{bottom:874.980000px;}
.y52{bottom:887.649000px;}
.y3{bottom:893.740500px;}
.y2b{bottom:900.415500px;}
.y51{bottom:911.290500px;}
.y2a{bottom:922.746000px;}
.y50{bottom:929.460000px;}
.y6d{bottom:935.188500px;}
.y2{bottom:950.133000px;}
.y6c{bottom:953.121000px;}
.y1{bottom:985.852500px;}
.h4{height:41.723369px;}
.h3{height:44.831700px;}
.h2{height:50.211840px;}
.h1{height:60.254040px;}
.h5{height:79.139700px;}
.h6{height:79.145700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:200.652000px;}
.x13{left:223.068000px;}
.x7{left:254.886000px;}
.x4{left:258.622500px;}
.xd{left:275.641500px;}
.x2{left:278.880000px;}
.x9{left:282.201000px;}
.x6{left:298.555500px;}
.x5{left:305.197500px;}
.xc{left:319.311000px;}
.xb{left:325.953000px;}
.xe{left:333.633000px;}
.x12{left:351.981000px;}
.x14{left:355.302000px;}
.x3{left:361.944000px;}
.xa{left:382.699500px;}
.xf{left:417.826500px;}
.x11{left:421.578000px;}
.x8{left:454.699500px;}
.x10{left:481.453500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:30.496000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:17.713791pt;}
.ls1{letter-spacing:19.183333pt;}
.wse{word-spacing:-2.858602pt;}
.ws11{word-spacing:-0.201909pt;}
.ws8{word-spacing:-0.053134pt;}
.ws5{word-spacing:0.000000pt;}
.ws1b{word-spacing:1.498375pt;}
.ws1c{word-spacing:2.507919pt;}
.ws2{word-spacing:2.932989pt;}
.ws6{word-spacing:2.986123pt;}
.ws1d{word-spacing:3.411194pt;}
.ws16{word-spacing:3.676864pt;}
.ws15{word-spacing:3.995667pt;}
.ws19{word-spacing:4.261336pt;}
.ws1a{word-spacing:4.633273pt;}
.ws9{word-spacing:6.333557pt;}
.wsf{word-spacing:6.705494pt;}
.wsd{word-spacing:6.864896pt;}
.ws12{word-spacing:7.236833pt;}
.wsc{word-spacing:7.555636pt;}
.ws13{word-spacing:7.715037pt;}
.ws1e{word-spacing:8.352644pt;}
.ws20{word-spacing:8.405778pt;}
.ws14{word-spacing:8.458912pt;}
.wsa{word-spacing:9.149652pt;}
.ws18{word-spacing:9.309053pt;}
.ws1f{word-spacing:9.627857pt;}
.ws17{word-spacing:9.840392pt;}
.wsb{word-spacing:10.743668pt;}
.ws10{word-spacing:22.698788pt;}
.ws1{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws3{word-spacing:49.000052pt;}
.ws4{word-spacing:49.053186pt;}
.ws7{word-spacing:66.364199pt;}
._26{margin-left:-26.088729pt;}
._2d{margin-left:-25.089825pt;}
._2b{margin-left:-19.880545pt;}
._10{margin-left:-6.325091pt;}
._4{margin-left:-4.410111pt;}
._14{margin-left:-2.975497pt;}
._3{margin-left:-1.976593pt;}
._6{margin-left:-0.892636pt;}
._23{width:1.434614pt;}
._1{width:2.371905pt;}
._22{width:13.017797pt;}
._21{width:14.356784pt;}
._2e{width:16.854076pt;}
._27{width:17.746711pt;}
._28{width:19.075058pt;}
._20{width:20.201509pt;}
._29{width:21.187678pt;}
._18{width:22.603173pt;}
._5{width:23.591437pt;}
._2c{width:24.505353pt;}
._1b{width:25.451122pt;}
._2a{width:26.726335pt;}
._19{width:27.640251pt;}
._24{width:28.575380pt;}
._25{width:29.903793pt;}
._2f{width:30.923910pt;}
._1f{width:31.986588pt;}
._1e{width:32.923878pt;}
._1d{width:34.058809pt;}
._1c{width:35.535917pt;}
._1a{width:36.681487pt;}
._17{width:38.256533pt;}
._12{width:63.760640pt;}
._e{width:67.968855pt;}
._2{width:71.731200pt;}
._f{width:77.787981pt;}
._0{width:86.077200pt;}
._d{width:89.700607pt;}
._a{width:91.071447pt;}
._9{width:93.303070pt;}
._16{width:107.812980pt;}
._15{width:111.011625pt;}
._c{width:137.510447pt;}
._7{width:151.590922pt;}
._13{width:155.293390pt;}
._8{width:160.411143pt;}
._b{width:163.386640pt;}
._11{width:200.059648pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:119.153333pt;}
.y28{bottom:188.224000pt;}
.y26{bottom:204.164000pt;}
.y4f{bottom:214.006667pt;}
.y27{bottom:220.104000pt;}
.y8a{bottom:224.749333pt;}
.y4d{bottom:229.946667pt;}
.y25{bottom:236.576000pt;}
.y89{bottom:240.689333pt;}
.y4e{bottom:245.886667pt;}
.y23{bottom:252.516000pt;}
.y88{bottom:256.629333pt;}
.y4c{bottom:262.358667pt;}
.y24{bottom:268.456000pt;}
.y87{bottom:272.569333pt;}
.y4a{bottom:278.298667pt;}
.y22{bottom:284.928000pt;}
.y86{bottom:288.509333pt;}
.y4b{bottom:294.238667pt;}
.y20{bottom:300.868000pt;}
.y85{bottom:304.449333pt;}
.y76{bottom:305.065333pt;}
.y49{bottom:310.710667pt;}
.y21{bottom:316.808000pt;}
.y84{bottom:320.390667pt;}
.y75{bottom:321.005333pt;}
.y47{bottom:326.650667pt;}
.y1f{bottom:333.280000pt;}
.y83{bottom:336.330667pt;}
.y74{bottom:336.945333pt;}
.y48{bottom:342.590667pt;}
.y1d{bottom:349.220000pt;}
.y82{bottom:352.270667pt;}
.y73{bottom:352.885333pt;}
.y46{bottom:359.062667pt;}
.y1e{bottom:365.160000pt;}
.y81{bottom:368.210667pt;}
.y72{bottom:368.825333pt;}
.y44{bottom:375.002667pt;}
.y1c{bottom:381.632000pt;}
.y80{bottom:384.150667pt;}
.y71{bottom:384.766667pt;}
.y45{bottom:390.942667pt;}
.y1a{bottom:397.572000pt;}
.y7f{bottom:400.092000pt;}
.y70{bottom:400.706667pt;}
.y43{bottom:407.414667pt;}
.y1b{bottom:413.512000pt;}
.y7e{bottom:416.032000pt;}
.y6f{bottom:416.646667pt;}
.y41{bottom:423.354667pt;}
.y6b{bottom:423.698667pt;}
.y19{bottom:429.984000pt;}
.y6a{bottom:430.420000pt;}
.y7d{bottom:431.972000pt;}
.y42{bottom:439.294667pt;}
.y17{bottom:445.924000pt;}
.y7c{bottom:447.912000pt;}
.y6e{bottom:448.526667pt;}
.y69{bottom:452.392000pt;}
.y40{bottom:455.766667pt;}
.y68{bottom:459.113333pt;}
.y18{bottom:461.864000pt;}
.y7b{bottom:463.852000pt;}
.y3e{bottom:471.706667pt;}
.y16{bottom:478.336000pt;}
.y7a{bottom:479.792000pt;}
.y67{bottom:481.084000pt;}
.y3f{bottom:487.646667pt;}
.y66{bottom:487.805333pt;}
.y14{bottom:494.276000pt;}
.y79{bottom:495.733333pt;}
.y3d{bottom:504.118667pt;}
.y65{bottom:509.776000pt;}
.y15{bottom:510.216000pt;}
.y78{bottom:511.673333pt;}
.y64{bottom:516.497333pt;}
.y3b{bottom:520.058667pt;}
.y13{bottom:526.688000pt;}
.y3c{bottom:536.000000pt;}
.y63{bottom:538.468000pt;}
.y11{bottom:542.628000pt;}
.y62{bottom:545.189333pt;}
.y77{bottom:546.136000pt;}
.y3a{bottom:552.470667pt;}
.y12{bottom:558.568000pt;}
.y61{bottom:567.160000pt;}
.y38{bottom:568.410667pt;}
.y60{bottom:573.881333pt;}
.y10{bottom:575.040000pt;}
.y39{bottom:584.352000pt;}
.ye{bottom:590.980000pt;}
.y5f{bottom:595.852000pt;}
.y37{bottom:600.822667pt;}
.yf{bottom:606.920000pt;}
.y35{bottom:616.762667pt;}
.y5e{bottom:616.868000pt;}
.yd{bottom:623.392000pt;}
.y5d{bottom:623.589333pt;}
.y36{bottom:632.704000pt;}
.yb{bottom:639.332000pt;}
.y5c{bottom:645.560000pt;}
.y34{bottom:649.174667pt;}
.y5b{bottom:652.281333pt;}
.yc{bottom:655.272000pt;}
.y32{bottom:665.114667pt;}
.ya{bottom:671.744000pt;}
.y5a{bottom:674.252000pt;}
.y59{bottom:680.973333pt;}
.y33{bottom:681.056000pt;}
.y8{bottom:687.684000pt;}
.y31{bottom:697.526667pt;}
.y58{bottom:702.944000pt;}
.y9{bottom:703.624000pt;}
.y57{bottom:709.665333pt;}
.y2f{bottom:713.466667pt;}
.y7{bottom:720.096000pt;}
.y30{bottom:729.408000pt;}
.y56{bottom:731.636000pt;}
.y5{bottom:736.036000pt;}
.y55{bottom:738.357333pt;}
.y2e{bottom:745.878667pt;}
.y6{bottom:751.976000pt;}
.y54{bottom:760.328000pt;}
.y2c{bottom:761.818667pt;}
.y53{bottom:767.050667pt;}
.y4{bottom:774.586667pt;}
.y2d{bottom:777.760000pt;}
.y52{bottom:789.021333pt;}
.y3{bottom:794.436000pt;}
.y2b{bottom:800.369333pt;}
.y51{bottom:810.036000pt;}
.y2a{bottom:820.218667pt;}
.y50{bottom:826.186667pt;}
.y6d{bottom:831.278667pt;}
.y2{bottom:844.562667pt;}
.y6c{bottom:847.218667pt;}
.y1{bottom:876.313333pt;}
.h4{height:37.087439pt;}
.h3{height:39.850400pt;}
.h2{height:44.632747pt;}
.h1{height:53.559147pt;}
.h5{height:70.346400pt;}
.h6{height:70.351733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:178.357333pt;}
.x13{left:198.282667pt;}
.x7{left:226.565333pt;}
.x4{left:229.886667pt;}
.xd{left:245.014667pt;}
.x2{left:247.893333pt;}
.x9{left:250.845333pt;}
.x6{left:265.382667pt;}
.x5{left:271.286667pt;}
.xc{left:283.832000pt;}
.xb{left:289.736000pt;}
.xe{left:296.562667pt;}
.x12{left:312.872000pt;}
.x14{left:315.824000pt;}
.x3{left:321.728000pt;}
.xa{left:340.177333pt;}
.xf{left:371.401333pt;}
.x11{left:374.736000pt;}
.x8{left:404.177333pt;}
.x10{left:427.958667pt;}
}




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