
    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_6abe2c5498296a39fe2c5c6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_78124e01aad0a581e921a628.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_06aea8baf9ea4193ff6c8c7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_2388fc1598051863332f1e8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_499fb98c3e57c02569a4747f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.152400px;}
.ls3{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.010560px;}
.ls14{letter-spacing:0.070560px;}
.ls1{letter-spacing:0.108000px;}
.lse{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.305280px;}
.ls4{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.308400px;}
.ls10{letter-spacing:0.328320px;}
.ls6{letter-spacing:34.841280px;}
.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;}
}
.wsc{word-spacing:-20.160000px;}
.wsa{word-spacing:-19.440000px;}
.wsb{word-spacing:-18.723120px;}
.ws8{word-spacing:-18.720120px;}
.ws9{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.wse{word-spacing:-18.262320px;}
.wsd{word-spacing:-18.152520px;}
.ws5{word-spacing:-18.109320px;}
.ws6{word-spacing:-17.586720px;}
.ws2{word-spacing:-13.680120px;}
.ws1{word-spacing:-13.410720px;}
.ws3{word-spacing:-11.609280px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-3008.328235px;}
._10{margin-left:-3007.184240px;}
._6{margin-left:-2969.992004px;}
._9{margin-left:-2956.857912px;}
._3{margin-left:-2828.538467px;}
._1{margin-left:-2801.203330px;}
._b{margin-left:-2559.985126px;}
._2{margin-left:-2264.089175px;}
._11{margin-left:-1935.316295px;}
._7{margin-left:-1807.599899px;}
._a{margin-left:-1675.906139px;}
._e{margin-left:-1673.340143px;}
._12{margin-left:-1315.083462px;}
._d{margin-left:-783.339672px;}
._15{margin-left:-2.036076px;}
._0{margin-left:-1.010964px;}
._8{width:1.106114px;}
._16{width:2.208393px;}
._4{width:14.394306px;}
._5{width:15.425412px;}
._f{width:16.758588px;}
._13{width:34.535520px;}
._14{width:844.140000px;}
.fc2{color:rgb(209,52,56);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:111.996000px;}
.y81{bottom:113.976000px;}
.y52{bottom:115.596000px;}
.y7a{bottom:129.276000px;}
.y47{bottom:146.556000px;}
.y38{bottom:149.976000px;}
.y80{bottom:151.950000px;}
.y1f{bottom:152.130000px;}
.y51{bottom:153.390000px;}
.y79{bottom:167.250000px;}
.y60{bottom:184.530000px;}
.y46{bottom:186.690000px;}
.y37{bottom:187.950000px;}
.y7f{bottom:189.930000px;}
.y61{bottom:190.110000px;}
.y50{bottom:191.370000px;}
.y1e{bottom:197.850000px;}
.y78{bottom:207.390000px;}
.y5f{bottom:222.510000px;}
.y36{bottom:225.930000px;}
.y7e{bottom:227.910000px;}
.y4f{bottom:229.350000px;}
.y1d{bottom:246.090000px;}
.y77{bottom:248.790000px;}
.y5e{bottom:260.490000px;}
.y35{bottom:263.910000px;}
.y7d{bottom:265.890000px;}
.y4e{bottom:267.330000px;}
.y76{bottom:288.075000px;}
.y1c{bottom:294.375000px;}
.y5d{bottom:298.335000px;}
.y34{bottom:301.935000px;}
.y7c{bottom:304.455000px;}
.y4d{bottom:305.355000px;}
.y75{bottom:328.215000px;}
.y5c{bottom:336.315000px;}
.y33{bottom:339.735000px;}
.y1b{bottom:342.795000px;}
.y7b{bottom:343.155000px;}
.y4c{bottom:343.335000px;}
.y74{bottom:367.455000px;}
.y5b{bottom:374.295000px;}
.y32{bottom:377.715000px;}
.y4b{bottom:381.135000px;}
.y1a{bottom:382.755000px;}
.y73{bottom:405.255000px;}
.y5a{bottom:412.275000px;}
.y31{bottom:415.695000px;}
.y19{bottom:419.115000px;}
.y72{bottom:445.395000px;}
.y59{bottom:450.255000px;}
.y30{bottom:453.675000px;}
.y18{bottom:457.095000px;}
.y71{bottom:484.635000px;}
.y58{bottom:488.055000px;}
.y2f{bottom:491.655000px;}
.y4a{bottom:495.075000px;}
.y17{bottom:501.015000px;}
.y70{bottom:522.615000px;}
.y57{bottom:526.035000px;}
.y2e{bottom:529.455000px;}
.y49{bottom:533.055000px;}
.y16{bottom:538.995000px;}
.y6f{bottom:560.625000px;}
.y56{bottom:564.045000px;}
.y2d{bottom:567.465000px;}
.y15{bottom:570.885000px;}
.y6e{bottom:600.765000px;}
.y55{bottom:602.025000px;}
.y2c{bottom:605.445000px;}
.y45{bottom:607.605000px;}
.y48{bottom:608.865000px;}
.y14{bottom:614.805000px;}
.y6c{bottom:640.005000px;}
.y54{bottom:642.165000px;}
.y2b{bottom:643.425000px;}
.y6d{bottom:645.585000px;}
.y44{bottom:646.845000px;}
.y13{bottom:652.785000px;}
.y6b{bottom:677.985000px;}
.y2a{bottom:681.405000px;}
.y53{bottom:683.565000px;}
.y43{bottom:684.825000px;}
.y12{bottom:690.765000px;}
.y6a{bottom:715.785000px;}
.y29{bottom:719.205000px;}
.y42{bottom:722.805000px;}
.y11{bottom:728.745000px;}
.y69{bottom:753.765000px;}
.y28{bottom:757.185000px;}
.y41{bottom:760.605000px;}
.y10{bottom:766.545000px;}
.y68{bottom:791.745000px;}
.y27{bottom:795.165000px;}
.yf{bottom:798.585000px;}
.y67{bottom:829.770000px;}
.y26{bottom:833.190000px;}
.y40{bottom:836.610000px;}
.ye{bottom:842.550000px;}
.y66{bottom:867.750000px;}
.y25{bottom:871.170000px;}
.y3f{bottom:874.590000px;}
.yd{bottom:876.750000px;}
.y8{bottom:881.539500px;}
.y7{bottom:903.139500px;}
.y65{bottom:905.550000px;}
.y24{bottom:909.150000px;}
.y3e{bottom:912.570000px;}
.yc{bottom:918.150000px;}
.y6{bottom:924.739500px;}
.y64{bottom:943.530000px;}
.y5{bottom:946.339500px;}
.y23{bottom:946.950000px;}
.y3d{bottom:950.550000px;}
.yb{bottom:963.690000px;}
.y4{bottom:967.939500px;}
.y63{bottom:981.510000px;}
.y22{bottom:984.930000px;}
.y3c{bottom:988.350000px;}
.y3{bottom:989.539500px;}
.y2{bottom:1011.139500px;}
.ya{bottom:1012.110000px;}
.y62{bottom:1021.650000px;}
.y21{bottom:1022.910000px;}
.y3b{bottom:1026.330000px;}
.y1{bottom:1032.739500px;}
.y9{bottom:1060.380000px;}
.y20{bottom:1063.080000px;}
.y3a{bottom:1064.340000px;}
.h5{height:45.326250px;}
.h1{height:51.264000px;}
.h6{height:59.415469px;}
.h3{height:69.086250px;}
.h4{height:75.093750px;}
.h2{height:87.859687px;}
.h0{height:1188.000000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:53.459973px;}
.x4{left:62.640000px;}
.x3{left:71.820000px;}
.x5{left:80.999986px;}
.x2{left:108.036000px;}
.x9{left:112.535986px;}
.x1{left:123.712500px;}
.x6{left:135.035986px;}
.x7{left:162.029986px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.009387pt;}
.ls14{letter-spacing:0.062720pt;}
.ls1{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.271360pt;}
.ls4{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.274133pt;}
.ls10{letter-spacing:0.291840pt;}
.ls6{letter-spacing:30.970027pt;}
.wsc{word-spacing:-17.920000pt;}
.wsa{word-spacing:-17.280000pt;}
.wsb{word-spacing:-16.642773pt;}
.ws8{word-spacing:-16.640107pt;}
.ws9{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.wse{word-spacing:-16.233173pt;}
.wsd{word-spacing:-16.135573pt;}
.ws5{word-spacing:-16.097173pt;}
.ws6{word-spacing:-15.632640pt;}
.ws2{word-spacing:-12.160107pt;}
.ws1{word-spacing:-11.920640pt;}
.ws3{word-spacing:-10.319360pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-2674.069542pt;}
._10{margin-left:-2673.052658pt;}
._6{margin-left:-2639.992893pt;}
._9{margin-left:-2628.318144pt;}
._3{margin-left:-2514.256415pt;}
._1{margin-left:-2489.958516pt;}
._b{margin-left:-2275.542334pt;}
._2{margin-left:-2012.523711pt;}
._11{margin-left:-1720.281151pt;}
._7{margin-left:-1606.755466pt;}
._a{margin-left:-1489.694346pt;}
._e{margin-left:-1487.413460pt;}
._12{margin-left:-1168.963077pt;}
._d{margin-left:-696.301930pt;}
._15{margin-left:-1.809845pt;}
._0{margin-left:-0.898635pt;}
._8{width:0.983212pt;}
._16{width:1.963016pt;}
._4{width:12.794939pt;}
._5{width:13.711478pt;}
._f{width:14.896522pt;}
._13{width:30.698240pt;}
._14{width:750.346667pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:99.552000pt;}
.y81{bottom:101.312000pt;}
.y52{bottom:102.752000pt;}
.y7a{bottom:114.912000pt;}
.y47{bottom:130.272000pt;}
.y38{bottom:133.312000pt;}
.y80{bottom:135.066667pt;}
.y1f{bottom:135.226667pt;}
.y51{bottom:136.346667pt;}
.y79{bottom:148.666667pt;}
.y60{bottom:164.026667pt;}
.y46{bottom:165.946667pt;}
.y37{bottom:167.066667pt;}
.y7f{bottom:168.826667pt;}
.y61{bottom:168.986667pt;}
.y50{bottom:170.106667pt;}
.y1e{bottom:175.866667pt;}
.y78{bottom:184.346667pt;}
.y5f{bottom:197.786667pt;}
.y36{bottom:200.826667pt;}
.y7e{bottom:202.586667pt;}
.y4f{bottom:203.866667pt;}
.y1d{bottom:218.746667pt;}
.y77{bottom:221.146667pt;}
.y5e{bottom:231.546667pt;}
.y35{bottom:234.586667pt;}
.y7d{bottom:236.346667pt;}
.y4e{bottom:237.626667pt;}
.y76{bottom:256.066667pt;}
.y1c{bottom:261.666667pt;}
.y5d{bottom:265.186667pt;}
.y34{bottom:268.386667pt;}
.y7c{bottom:270.626667pt;}
.y4d{bottom:271.426667pt;}
.y75{bottom:291.746667pt;}
.y5c{bottom:298.946667pt;}
.y33{bottom:301.986667pt;}
.y1b{bottom:304.706667pt;}
.y7b{bottom:305.026667pt;}
.y4c{bottom:305.186667pt;}
.y74{bottom:326.626667pt;}
.y5b{bottom:332.706667pt;}
.y32{bottom:335.746667pt;}
.y4b{bottom:338.786667pt;}
.y1a{bottom:340.226667pt;}
.y73{bottom:360.226667pt;}
.y5a{bottom:366.466667pt;}
.y31{bottom:369.506667pt;}
.y19{bottom:372.546667pt;}
.y72{bottom:395.906667pt;}
.y59{bottom:400.226667pt;}
.y30{bottom:403.266667pt;}
.y18{bottom:406.306667pt;}
.y71{bottom:430.786667pt;}
.y58{bottom:433.826667pt;}
.y2f{bottom:437.026667pt;}
.y4a{bottom:440.066667pt;}
.y17{bottom:445.346667pt;}
.y70{bottom:464.546667pt;}
.y57{bottom:467.586667pt;}
.y2e{bottom:470.626667pt;}
.y49{bottom:473.826667pt;}
.y16{bottom:479.106667pt;}
.y6f{bottom:498.333333pt;}
.y56{bottom:501.373333pt;}
.y2d{bottom:504.413333pt;}
.y15{bottom:507.453333pt;}
.y6e{bottom:534.013333pt;}
.y55{bottom:535.133333pt;}
.y2c{bottom:538.173333pt;}
.y45{bottom:540.093333pt;}
.y48{bottom:541.213333pt;}
.y14{bottom:546.493333pt;}
.y6c{bottom:568.893333pt;}
.y54{bottom:570.813333pt;}
.y2b{bottom:571.933333pt;}
.y6d{bottom:573.853333pt;}
.y44{bottom:574.973333pt;}
.y13{bottom:580.253333pt;}
.y6b{bottom:602.653333pt;}
.y2a{bottom:605.693333pt;}
.y53{bottom:607.613333pt;}
.y43{bottom:608.733333pt;}
.y12{bottom:614.013333pt;}
.y6a{bottom:636.253333pt;}
.y29{bottom:639.293333pt;}
.y42{bottom:642.493333pt;}
.y11{bottom:647.773333pt;}
.y69{bottom:670.013333pt;}
.y28{bottom:673.053333pt;}
.y41{bottom:676.093333pt;}
.y10{bottom:681.373333pt;}
.y68{bottom:703.773333pt;}
.y27{bottom:706.813333pt;}
.yf{bottom:709.853333pt;}
.y67{bottom:737.573333pt;}
.y26{bottom:740.613333pt;}
.y40{bottom:743.653333pt;}
.ye{bottom:748.933333pt;}
.y66{bottom:771.333333pt;}
.y25{bottom:774.373333pt;}
.y3f{bottom:777.413333pt;}
.yd{bottom:779.333333pt;}
.y8{bottom:783.590667pt;}
.y7{bottom:802.790667pt;}
.y65{bottom:804.933333pt;}
.y24{bottom:808.133333pt;}
.y3e{bottom:811.173333pt;}
.yc{bottom:816.133333pt;}
.y6{bottom:821.990667pt;}
.y64{bottom:838.693333pt;}
.y5{bottom:841.190667pt;}
.y23{bottom:841.733333pt;}
.y3d{bottom:844.933333pt;}
.yb{bottom:856.613333pt;}
.y4{bottom:860.390667pt;}
.y63{bottom:872.453333pt;}
.y22{bottom:875.493333pt;}
.y3c{bottom:878.533333pt;}
.y3{bottom:879.590667pt;}
.y2{bottom:898.790667pt;}
.ya{bottom:899.653333pt;}
.y62{bottom:908.133333pt;}
.y21{bottom:909.253333pt;}
.y3b{bottom:912.293333pt;}
.y1{bottom:917.990667pt;}
.y9{bottom:942.560000pt;}
.y20{bottom:944.960000pt;}
.y3a{bottom:946.080000pt;}
.h5{height:40.290000pt;}
.h1{height:45.568000pt;}
.h6{height:52.813750pt;}
.h3{height:61.410000pt;}
.h4{height:66.750000pt;}
.h2{height:78.097500pt;}
.h0{height:1056.000000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:47.519976pt;}
.x4{left:55.680000pt;}
.x3{left:63.840000pt;}
.x5{left:71.999988pt;}
.x2{left:96.032000pt;}
.x9{left:100.031988pt;}
.x1{left:109.966667pt;}
.x6{left:120.031988pt;}
.x7{left:144.026655pt;}
}




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