
    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_6de7521f337597f88e282567.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d51d9b2d788cbe8c2325bc3e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_257c59d3a05e32e9415a1155.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_25574c7df5612be933797b01.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_dbbc1073c3da18c6ad1c2412.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_f8245e446be4cef965b7d1fe.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3acc6140a9150a8dd67c51c2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.724000px;}
.ls2{letter-spacing:-1.482000px;}
.ls4{letter-spacing:-1.128000px;}
.ls3{letter-spacing:-0.972000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.990000px;}
.ls0{letter-spacing:2.250000px;}
.ls5{letter-spacing:2.742000px;}
.lsa{letter-spacing:4.500000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.875000px;}
.ws0{word-spacing:-14.625000px;}
.ws3{word-spacing:-12.531000px;}
.ws1{word-spacing:-12.204000px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-9.688500px;}
._9{margin-left:-7.953900px;}
._4{margin-left:-6.817500px;}
._2{margin-left:-5.535000px;}
._a{margin-left:-4.171500px;}
._5{margin-left:-2.850000px;}
._1{margin-left:-1.552500px;}
._0{width:1.012500px;}
._3{width:2.767500px;}
._6{width:4.068000px;}
._7{width:5.265000px;}
._15{width:6.273000px;}
._8{width:7.645500px;}
._b{width:9.357000px;}
._d{width:12.817500px;}
._c{width:13.854000px;}
._12{width:21.685500px;}
._14{width:22.686000px;}
._f{width:26.104500px;}
._e{width:27.762000px;}
._16{width:30.489000px;}
._10{width:31.843500px;}
._13{width:36.159000px;}
._11{width:39.858000px;}
._17{width:40.938000px;}
._18{width:45.226500px;}
._1b{width:193.752000px;}
._1a{width:198.699000px;}
._1c{width:202.468500px;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:4.500000px;}
.y73{bottom:4.515000px;}
.y5{bottom:14.625000px;}
.y70{bottom:22.500000px;}
.y6f{bottom:23.625000px;}
.y6a{bottom:23.655000px;}
.y71{bottom:24.750000px;}
.y6b{bottom:24.780000px;}
.y4{bottom:31.500000px;}
.y3{bottom:48.420000px;}
.y7{bottom:50.670000px;}
.yb{bottom:57.412500px;}
.y2{bottom:66.420000px;}
.y6{bottom:68.670000px;}
.ya{bottom:77.662500px;}
.y89{bottom:112.575000px;}
.y47{bottom:113.700000px;}
.y6d{bottom:133.987500px;}
.y2c{bottom:142.987500px;}
.y46{bottom:147.487500px;}
.y69{bottom:154.245000px;}
.y2b{bottom:173.400000px;}
.y88{bottom:174.525000px;}
.y45{bottom:181.275000px;}
.y2a{bottom:203.775000px;}
.y87{bottom:204.900000px;}
.y68{bottom:211.695000px;}
.y44{bottom:215.070000px;}
.y67{bottom:234.195000px;}
.y29{bottom:235.320000px;}
.y86{bottom:236.445000px;}
.y43{bottom:256.725000px;}
.y28{bottom:266.850000px;}
.y66{bottom:267.975000px;}
.y85{bottom:270.225000px;}
.y42{bottom:287.100000px;}
.y65{bottom:290.505000px;}
.y27{bottom:297.255000px;}
.y84{bottom:306.255000px;}
.y64{bottom:313.005000px;}
.y41{bottom:317.505000px;}
.y26{bottom:328.770000px;}
.y63{bottom:335.550000px;}
.y83{bottom:340.050000px;}
.y40{bottom:349.050000px;}
.y98{bottom:354.675000px;}
.y62{bottom:358.050000px;}
.y25{bottom:362.550000px;}
.y3f{bottom:379.470000px;}
.y61{bottom:380.580000px;}
.y82{bottom:382.845000px;}
.y97{bottom:388.455000px;}
.y24{bottom:398.580000px;}
.y60{bottom:403.095000px;}
.y81{bottom:412.080000px;}
.y96{bottom:420.000000px;}
.y3e{bottom:424.500000px;}
.y23{bottom:432.375000px;}
.y5f{bottom:436.875000px;}
.y80{bottom:443.625000px;}
.y95{bottom:451.500000px;}
.y3d{bottom:453.750000px;}
.y22{bottom:466.170000px;}
.y5e{bottom:472.920000px;}
.y7f{bottom:475.155000px;}
.y3c{bottom:485.280000px;}
.y21{bottom:487.545000px;}
.y7e{bottom:505.575000px;}
.y5d{bottom:506.700000px;}
.y94{bottom:507.825000px;}
.y20{bottom:510.075000px;}
.y3b{bottom:515.700000px;}
.y5c{bottom:540.495000px;}
.y93{bottom:542.745000px;}
.y1f{bottom:543.870000px;}
.y3a{bottom:547.245000px;}
.y7d{bottom:549.495000px;}
.y5b{bottom:561.855000px;}
.y92{bottom:564.120000px;}
.y1e{bottom:566.370000px;}
.y39{bottom:578.730000px;}
.y7c{bottom:579.900000px;}
.y5a{bottom:584.400000px;}
.y91{bottom:586.650000px;}
.y1d{bottom:588.900000px;}
.y59{bottom:606.900000px;}
.y38{bottom:609.150000px;}
.y1c{bottom:611.400000px;}
.y58{bottom:629.445000px;}
.y1b{bottom:633.945000px;}
.y37{bottom:640.695000px;}
.y7b{bottom:641.820000px;}
.y90{bottom:644.070000px;}
.y1a{bottom:656.445000px;}
.y57{bottom:663.225000px;}
.y8f{bottom:665.475000px;}
.y7a{bottom:673.350000px;}
.y19{bottom:678.975000px;}
.y36{bottom:684.600000px;}
.y56{bottom:685.725000px;}
.y8e{bottom:687.975000px;}
.y18{bottom:700.350000px;}
.y79{bottom:703.725000px;}
.y55{bottom:708.255000px;}
.y35{bottom:715.005000px;}
.y17{bottom:722.895000px;}
.y54{bottom:730.755000px;}
.y78{bottom:735.255000px;}
.y16{bottom:745.380000px;}
.y53{bottom:752.175000px;}
.y15{bottom:767.925000px;}
.y52{bottom:774.675000px;}
.y34{bottom:776.925000px;}
.y77{bottom:779.175000px;}
.y8d{bottom:801.705000px;}
.y14{bottom:802.830000px;}
.y33{bottom:807.330000px;}
.y51{bottom:809.580000px;}
.y8c{bottom:824.205000px;}
.y50{bottom:832.125000px;}
.y13{bottom:838.875000px;}
.y76{bottom:840.000000px;}
.y8b{bottom:846.750000px;}
.y4f{bottom:865.875000px;}
.y12{bottom:871.545000px;}
.y32{bottom:882.795000px;}
.y4e{bottom:888.420000px;}
.y8a{bottom:890.670000px;}
.y75{bottom:903.045000px;}
.y11{bottom:904.170000px;}
.y4d{bottom:910.920000px;}
.y31{bottom:913.200000px;}
.y4c{bottom:933.450000px;}
.y10{bottom:939.075000px;}
.y30{bottom:944.700000px;}
.y4b{bottom:967.245000px;}
.y74{bottom:969.495000px;}
.yf{bottom:972.870000px;}
.y2f{bottom:977.370000px;}
.y72{bottom:986.355000px;}
.y4a{bottom:989.745000px;}
.ye{bottom:1006.650000px;}
.y49{bottom:1012.275000px;}
.yd{bottom:1033.650000px;}
.y48{bottom:1034.775000px;}
.y2e{bottom:1038.195000px;}
.y6e{bottom:1047.195000px;}
.y2d{bottom:1068.570000px;}
.yc{bottom:1070.820000px;}
.y9{bottom:1091.100000px;}
.y8{bottom:1111.350000px;}
.y1{bottom:1128.255000px;}
.hd{height:19.125000px;}
.hf{height:20.287500px;}
.he{height:39.412500px;}
.hc{height:40.537500px;}
.h6{height:57.414551px;}
.h4{height:58.957031px;}
.h10{height:60.128782px;}
.h3{height:67.137451px;}
.h8{height:69.114990px;}
.ha{height:69.379363px;}
.h7{height:70.664062px;}
.h5{height:71.613281px;}
.hb{height:72.562500px;}
.h2{height:82.200000px;}
.h9{height:86.319141px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w4{width:168.930000px;}
.w6{width:168.975000px;}
.w5{width:170.100000px;}
.w2{width:265.830000px;}
.w1{width:415.650000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x1{left:108.150000px;}
.x5{left:132.937487px;}
.xb{left:139.687487px;}
.x14{left:144.187487px;}
.x9{left:189.224987px;}
.xf{left:230.924987px;}
.x6{left:269.219987px;}
.x10{left:277.095000px;}
.xd{left:319.904987px;}
.x8{left:360.449987px;}
.xc{left:373.994987px;}
.x12{left:379.619987px;}
.xa{left:396.524987px;}
.x13{left:399.899987px;}
.x4{left:439.319987px;}
.x7{left:447.194987px;}
.xe{left:462.974987px;}
.x3{left:523.800000px;}
.x11{left:616.155000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.421333pt;}
.ls2{letter-spacing:-1.317333pt;}
.ls4{letter-spacing:-1.002667pt;}
.ls3{letter-spacing:-0.864000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.880000pt;}
.ls0{letter-spacing:2.000000pt;}
.ls5{letter-spacing:2.437333pt;}
.lsa{letter-spacing:4.000000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.000000pt;}
.ws0{word-spacing:-13.000000pt;}
.ws3{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.848000pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-8.612000pt;}
._9{margin-left:-7.070133pt;}
._4{margin-left:-6.060000pt;}
._2{margin-left:-4.920000pt;}
._a{margin-left:-3.708000pt;}
._5{margin-left:-2.533333pt;}
._1{margin-left:-1.380000pt;}
._0{width:0.900000pt;}
._3{width:2.460000pt;}
._6{width:3.616000pt;}
._7{width:4.680000pt;}
._15{width:5.576000pt;}
._8{width:6.796000pt;}
._b{width:8.317333pt;}
._d{width:11.393333pt;}
._c{width:12.314667pt;}
._12{width:19.276000pt;}
._14{width:20.165333pt;}
._f{width:23.204000pt;}
._e{width:24.677333pt;}
._16{width:27.101333pt;}
._10{width:28.305333pt;}
._13{width:32.141333pt;}
._11{width:35.429333pt;}
._17{width:36.389333pt;}
._18{width:40.201333pt;}
._1b{width:172.224000pt;}
._1a{width:176.621333pt;}
._1c{width:179.972000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:4.000000pt;}
.y73{bottom:4.013333pt;}
.y5{bottom:13.000000pt;}
.y70{bottom:20.000000pt;}
.y6f{bottom:21.000000pt;}
.y6a{bottom:21.026667pt;}
.y71{bottom:22.000000pt;}
.y6b{bottom:22.026667pt;}
.y4{bottom:28.000000pt;}
.y3{bottom:43.040000pt;}
.y7{bottom:45.040000pt;}
.yb{bottom:51.033333pt;}
.y2{bottom:59.040000pt;}
.y6{bottom:61.040000pt;}
.ya{bottom:69.033333pt;}
.y89{bottom:100.066667pt;}
.y47{bottom:101.066667pt;}
.y6d{bottom:119.100000pt;}
.y2c{bottom:127.100000pt;}
.y46{bottom:131.100000pt;}
.y69{bottom:137.106667pt;}
.y2b{bottom:154.133333pt;}
.y88{bottom:155.133333pt;}
.y45{bottom:161.133333pt;}
.y2a{bottom:181.133333pt;}
.y87{bottom:182.133333pt;}
.y68{bottom:188.173333pt;}
.y44{bottom:191.173333pt;}
.y67{bottom:208.173333pt;}
.y29{bottom:209.173333pt;}
.y86{bottom:210.173333pt;}
.y43{bottom:228.200000pt;}
.y28{bottom:237.200000pt;}
.y66{bottom:238.200000pt;}
.y85{bottom:240.200000pt;}
.y42{bottom:255.200000pt;}
.y65{bottom:258.226667pt;}
.y27{bottom:264.226667pt;}
.y84{bottom:272.226667pt;}
.y64{bottom:278.226667pt;}
.y41{bottom:282.226667pt;}
.y26{bottom:292.240000pt;}
.y63{bottom:298.266667pt;}
.y83{bottom:302.266667pt;}
.y40{bottom:310.266667pt;}
.y98{bottom:315.266667pt;}
.y62{bottom:318.266667pt;}
.y25{bottom:322.266667pt;}
.y3f{bottom:337.306667pt;}
.y61{bottom:338.293333pt;}
.y82{bottom:340.306667pt;}
.y97{bottom:345.293333pt;}
.y24{bottom:354.293333pt;}
.y60{bottom:358.306667pt;}
.y81{bottom:366.293333pt;}
.y96{bottom:373.333333pt;}
.y3e{bottom:377.333333pt;}
.y23{bottom:384.333333pt;}
.y5f{bottom:388.333333pt;}
.y80{bottom:394.333333pt;}
.y95{bottom:401.333333pt;}
.y3d{bottom:403.333333pt;}
.y22{bottom:414.373333pt;}
.y5e{bottom:420.373333pt;}
.y7f{bottom:422.360000pt;}
.y3c{bottom:431.360000pt;}
.y21{bottom:433.373333pt;}
.y7e{bottom:449.400000pt;}
.y5d{bottom:450.400000pt;}
.y94{bottom:451.400000pt;}
.y20{bottom:453.400000pt;}
.y3b{bottom:458.400000pt;}
.y5c{bottom:480.440000pt;}
.y93{bottom:482.440000pt;}
.y1f{bottom:483.440000pt;}
.y3a{bottom:486.440000pt;}
.y7d{bottom:488.440000pt;}
.y5b{bottom:499.426667pt;}
.y92{bottom:501.440000pt;}
.y1e{bottom:503.440000pt;}
.y39{bottom:514.426667pt;}
.y7c{bottom:515.466667pt;}
.y5a{bottom:519.466667pt;}
.y91{bottom:521.466667pt;}
.y1d{bottom:523.466667pt;}
.y59{bottom:539.466667pt;}
.y38{bottom:541.466667pt;}
.y1c{bottom:543.466667pt;}
.y58{bottom:559.506667pt;}
.y1b{bottom:563.506667pt;}
.y37{bottom:569.506667pt;}
.y7b{bottom:570.506667pt;}
.y90{bottom:572.506667pt;}
.y1a{bottom:583.506667pt;}
.y57{bottom:589.533333pt;}
.y8f{bottom:591.533333pt;}
.y7a{bottom:598.533333pt;}
.y19{bottom:603.533333pt;}
.y36{bottom:608.533333pt;}
.y56{bottom:609.533333pt;}
.y8e{bottom:611.533333pt;}
.y18{bottom:622.533333pt;}
.y79{bottom:625.533333pt;}
.y55{bottom:629.560000pt;}
.y35{bottom:635.560000pt;}
.y17{bottom:642.573333pt;}
.y54{bottom:649.560000pt;}
.y78{bottom:653.560000pt;}
.y16{bottom:662.560000pt;}
.y53{bottom:668.600000pt;}
.y15{bottom:682.600000pt;}
.y52{bottom:688.600000pt;}
.y34{bottom:690.600000pt;}
.y77{bottom:692.600000pt;}
.y8d{bottom:712.626667pt;}
.y14{bottom:713.626667pt;}
.y33{bottom:717.626667pt;}
.y51{bottom:719.626667pt;}
.y8c{bottom:732.626667pt;}
.y50{bottom:739.666667pt;}
.y13{bottom:745.666667pt;}
.y76{bottom:746.666667pt;}
.y8b{bottom:752.666667pt;}
.y4f{bottom:769.666667pt;}
.y12{bottom:774.706667pt;}
.y32{bottom:784.706667pt;}
.y4e{bottom:789.706667pt;}
.y8a{bottom:791.706667pt;}
.y75{bottom:802.706667pt;}
.y11{bottom:803.706667pt;}
.y4d{bottom:809.706667pt;}
.y31{bottom:811.733333pt;}
.y4c{bottom:829.733333pt;}
.y10{bottom:834.733333pt;}
.y30{bottom:839.733333pt;}
.y4b{bottom:859.773333pt;}
.y74{bottom:861.773333pt;}
.yf{bottom:864.773333pt;}
.y2f{bottom:868.773333pt;}
.y72{bottom:876.760000pt;}
.y4a{bottom:879.773333pt;}
.ye{bottom:894.800000pt;}
.y49{bottom:899.800000pt;}
.yd{bottom:918.800000pt;}
.y48{bottom:919.800000pt;}
.y2e{bottom:922.840000pt;}
.y6e{bottom:930.840000pt;}
.y2d{bottom:949.840000pt;}
.yc{bottom:951.840000pt;}
.y9{bottom:969.866667pt;}
.y8{bottom:987.866667pt;}
.y1{bottom:1002.893333pt;}
.hd{height:17.000000pt;}
.hf{height:18.033333pt;}
.he{height:35.033333pt;}
.hc{height:36.033333pt;}
.h6{height:51.035156pt;}
.h4{height:52.406250pt;}
.h10{height:53.447806pt;}
.h3{height:59.677734pt;}
.h8{height:61.435547pt;}
.ha{height:61.670545pt;}
.h7{height:62.812500pt;}
.h5{height:63.656250pt;}
.hb{height:64.500000pt;}
.h2{height:73.066667pt;}
.h9{height:76.728125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w4{width:150.160000pt;}
.w6{width:150.200000pt;}
.w5{width:151.200000pt;}
.w2{width:236.293333pt;}
.w1{width:369.466667pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x1{left:96.133333pt;}
.x5{left:118.166655pt;}
.xb{left:124.166655pt;}
.x14{left:128.166655pt;}
.x9{left:168.199988pt;}
.xf{left:205.266655pt;}
.x6{left:239.306655pt;}
.x10{left:246.306667pt;}
.xd{left:284.359988pt;}
.x8{left:320.399988pt;}
.xc{left:332.439988pt;}
.x12{left:337.439988pt;}
.xa{left:352.466655pt;}
.x13{left:355.466655pt;}
.x4{left:390.506655pt;}
.x7{left:397.506655pt;}
.xe{left:411.533322pt;}
.x3{left:465.600000pt;}
.x11{left:547.693333pt;}
}




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