
    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_574208f5fc4d8c5547ae668a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916016;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_393e44f8e87a5b1e1e046fc5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3e2ef79e122175f4f9f56046.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7775892856020908859014a2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_511ead1e09f53597a50a594d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_05811696c2d3bce861495e46.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_6d870ca4c0c78a6a1c229ecc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_6a59bf1182d275f1527fda5a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e69721fbe816e0ba4b262c1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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);}
.v2{vertical-align:-180.180000px;}
.v1{vertical-align:-161.280000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.617760px;}
.ls7{letter-spacing:1.980000px;}
.ls8{letter-spacing:66.060000px;}
.ls2{letter-spacing:320.940000px;}
.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:-39.060000px;}
.ws7{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-10.924560px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.101120px;}
._1{width:1.035120px;}
._c{width:2.061120px;}
._b{width:3.129360px;}
._10{width:4.150320px;}
._8{width:5.400000px;}
._20{width:7.012800px;}
._9{width:8.064000px;}
._21{width:9.945840px;}
._16{width:11.625600px;}
._3{width:12.816000px;}
._1e{width:14.242560px;}
._1b{width:15.614400px;}
._1a{width:17.184960px;}
._d{width:18.490080px;}
._e{width:19.683840px;}
._19{width:22.492080px;}
._7{width:23.616000px;}
._18{width:24.883440px;}
._1f{width:26.087760px;}
._2a{width:27.214320px;}
._2b{width:28.333680px;}
._4{width:29.448000px;}
._23{width:30.747600px;}
._2d{width:31.932960px;}
._28{width:33.353040px;}
._27{width:34.544400px;}
._29{width:35.958480px;}
._f{width:36.981360px;}
._1c{width:38.503680px;}
._17{width:39.592800px;}
._13{width:40.687920px;}
._14{width:41.801040px;}
._2c{width:43.299360px;}
._30{width:46.629120px;}
._22{width:47.837520px;}
._6{width:48.909120px;}
._5{width:49.968000px;}
._2f{width:53.161440px;}
._11{width:59.310960px;}
._12{width:65.791440px;}
._32{width:69.335520px;}
._15{width:72.789360px;}
._1d{width:73.884480px;}
._2e{width:84.582960px;}
._24{width:92.579760px;}
._31{width:114.572400px;}
._25{width:191.982960px;}
._26{width:193.505280px;}
._a{width:800.004000px;}
._2{width:843.240000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:131.760000px;}
.fs5{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.960000px;}
.y4{bottom:10.080000px;}
.y22{bottom:24.660000px;}
.y3{bottom:29.700000px;}
.y25{bottom:45.360000px;}
.y21{bottom:45.390000px;}
.y2a{bottom:45.405000px;}
.y2{bottom:57.600000px;}
.y5{bottom:65.196000px;}
.y27{bottom:66.060000px;}
.y20{bottom:66.090000px;}
.y4c{bottom:107.676000px;}
.y4b{bottom:143.856000px;}
.y4a{bottom:180.030000px;}
.y1e{bottom:214.410000px;}
.y49{bottom:216.210000px;}
.y48{bottom:252.570000px;}
.y1d{bottom:257.250000px;}
.y47{bottom:288.750000px;}
.y1c{bottom:299.910000px;}
.y46{bottom:324.930000px;}
.y1b{bottom:342.795000px;}
.y45{bottom:361.155000px;}
.y1a{bottom:385.635000px;}
.y44{bottom:397.515000px;}
.y19{bottom:428.295000px;}
.y43{bottom:433.695000px;}
.y42{bottom:469.875000px;}
.y18{bottom:471.135000px;}
.y41{bottom:506.055000px;}
.y17{bottom:513.795000px;}
.y40{bottom:542.415000px;}
.y16{bottom:556.635000px;}
.y3f{bottom:578.595000px;}
.y15{bottom:580.935000px;}
.y2e{bottom:592.455000px;}
.y14{bottom:609.045000px;}
.y2d{bottom:612.825000px;}
.y3e{bottom:614.805000px;}
.y3d{bottom:650.985000px;}
.y13{bottom:652.605000px;}
.y3c{bottom:687.165000px;}
.y12{bottom:690.585000px;}
.y2c{bottom:696.525000px;}
.y3b{bottom:723.525000px;}
.y11{bottom:729.825000px;}
.y3a{bottom:759.705000px;}
.y10{bottom:774.645000px;}
.y2b{bottom:780.045000px;}
.y39{bottom:795.885000px;}
.y29{bottom:822.165000px;}
.y38{bottom:832.065000px;}
.yf{bottom:864.510000px;}
.y37{bottom:868.470000px;}
.y28{bottom:885.030000px;}
.y36{bottom:904.650000px;}
.ye{bottom:909.330000px;}
.y35{bottom:940.830000px;}
.y26{bottom:947.850000px;}
.y34{bottom:977.010000px;}
.y33{bottom:1013.370000px;}
.yd{bottom:1016.250000px;}
.y24{bottom:1031.370000px;}
.yc{bottom:1036.950000px;}
.y32{bottom:1049.550000px;}
.yb{bottom:1057.650000px;}
.ya{bottom:1078.350000px;}
.y31{bottom:1085.730000px;}
.y1f{bottom:1094.190000px;}
.y9{bottom:1099.050000px;}
.y8{bottom:1119.750000px;}
.y30{bottom:1121.910000px;}
.y7{bottom:1140.480000px;}
.y2f{bottom:1158.300000px;}
.y6{bottom:1161.180000px;}
.y1{bottom:1209.240000px;}
.h4{height:21.600000px;}
.h12{height:41.400000px;}
.h5{height:47.980898px;}
.h8{height:59.343750px;}
.he{height:62.100000px;}
.h11{height:62.136000px;}
.h10{height:64.546875px;}
.h2{height:64.978594px;}
.h3{height:65.884219px;}
.h7{height:70.628906px;}
.hd{height:70.664062px;}
.h14{height:72.846211px;}
.h15{height:75.519844px;}
.h13{height:82.676953px;}
.hf{height:82.800000px;}
.hc{height:82.836000px;}
.h6{height:84.898125px;}
.ha{height:129.315234px;}
.hb{height:153.341016px;}
.h9{height:157.460625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:43.200000px;}
.w4{width:47.736000px;}
.w3{width:49.500000px;}
.w5{width:648.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:8.100000px;}
.x1f{left:10.080000px;}
.xe{left:12.420000px;}
.x17{left:14.580000px;}
.xc{left:15.735000px;}
.x4{left:21.675000px;}
.x26{left:26.994000px;}
.x25{left:28.794000px;}
.x21{left:30.234000px;}
.x10{left:32.754000px;}
.x14{left:48.234000px;}
.x18{left:63.894000px;}
.xd{left:77.040000px;}
.x2{left:84.959987px;}
.x1b{left:90.534000px;}
.xf{left:124.596000px;}
.x5{left:127.475987px;}
.x29{left:131.435987px;}
.x7{left:136.475987px;}
.x1e{left:145.974000px;}
.x1{left:148.715987px;}
.x9{left:150.689987px;}
.xb{left:185.789987px;}
.x12{left:187.779000px;}
.x2c{left:189.749987px;}
.x23{left:202.179000px;}
.x20{left:206.499000px;}
.x28{left:208.479000px;}
.x16{left:212.079000px;}
.x15{left:233.859000px;}
.x1c{left:252.759000px;}
.x19{left:257.259000px;}
.x1d{left:264.279000px;}
.x1a{left:269.139000px;}
.x11{left:276.879000px;}
.x22{left:280.119000px;}
.x27{left:292.179000px;}
.x2b{left:300.854987px;}
.x2a{left:341.354987px;}
.x6{left:356.474987px;}
.x8{left:361.874987px;}
.x3{left:421.740000px;}
.xa{left:446.474987px;}
.x13{left:772.890000px;}
@media print{
.v2{vertical-align:-160.160000pt;}
.v1{vertical-align:-143.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.549120pt;}
.ls7{letter-spacing:1.760000pt;}
.ls8{letter-spacing:58.720000pt;}
.ls2{letter-spacing:285.280000pt;}
.ws4{word-spacing:-34.720000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-9.710720pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.978773pt;}
._1{width:0.920107pt;}
._c{width:1.832107pt;}
._b{width:2.781653pt;}
._10{width:3.689173pt;}
._8{width:4.800000pt;}
._20{width:6.233600pt;}
._9{width:7.168000pt;}
._21{width:8.840747pt;}
._16{width:10.333867pt;}
._3{width:11.392000pt;}
._1e{width:12.660053pt;}
._1b{width:13.879467pt;}
._1a{width:15.275520pt;}
._d{width:16.435627pt;}
._e{width:17.496747pt;}
._19{width:19.992960pt;}
._7{width:20.992000pt;}
._18{width:22.118613pt;}
._1f{width:23.189120pt;}
._2a{width:24.190507pt;}
._2b{width:25.185493pt;}
._4{width:26.176000pt;}
._23{width:27.331200pt;}
._2d{width:28.384853pt;}
._28{width:29.647147pt;}
._27{width:30.706133pt;}
._29{width:31.963093pt;}
._f{width:32.872320pt;}
._1c{width:34.225493pt;}
._17{width:35.193600pt;}
._13{width:36.167040pt;}
._14{width:37.156480pt;}
._2c{width:38.488320pt;}
._30{width:41.448107pt;}
._22{width:42.522240pt;}
._6{width:43.474773pt;}
._5{width:44.416000pt;}
._2f{width:47.254613pt;}
._11{width:52.720853pt;}
._12{width:58.481280pt;}
._32{width:61.631573pt;}
._15{width:64.701653pt;}
._1d{width:65.675093pt;}
._2e{width:75.184853pt;}
._24{width:82.293120pt;}
._31{width:101.842133pt;}
._25{width:170.651520pt;}
._26{width:172.004693pt;}
._a{width:711.114667pt;}
._2{width:749.546667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:117.120000pt;}
.fs5{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:3.520000pt;}
.y4{bottom:8.960000pt;}
.y22{bottom:21.920000pt;}
.y3{bottom:26.400000pt;}
.y25{bottom:40.320000pt;}
.y21{bottom:40.346667pt;}
.y2a{bottom:40.360000pt;}
.y2{bottom:51.200000pt;}
.y5{bottom:57.952000pt;}
.y27{bottom:58.720000pt;}
.y20{bottom:58.746667pt;}
.y4c{bottom:95.712000pt;}
.y4b{bottom:127.872000pt;}
.y4a{bottom:160.026667pt;}
.y1e{bottom:190.586667pt;}
.y49{bottom:192.186667pt;}
.y48{bottom:224.506667pt;}
.y1d{bottom:228.666667pt;}
.y47{bottom:256.666667pt;}
.y1c{bottom:266.586667pt;}
.y46{bottom:288.826667pt;}
.y1b{bottom:304.706667pt;}
.y45{bottom:321.026667pt;}
.y1a{bottom:342.786667pt;}
.y44{bottom:353.346667pt;}
.y19{bottom:380.706667pt;}
.y43{bottom:385.506667pt;}
.y42{bottom:417.666667pt;}
.y18{bottom:418.786667pt;}
.y41{bottom:449.826667pt;}
.y17{bottom:456.706667pt;}
.y40{bottom:482.146667pt;}
.y16{bottom:494.786667pt;}
.y3f{bottom:514.306667pt;}
.y15{bottom:516.386667pt;}
.y2e{bottom:526.626667pt;}
.y14{bottom:541.373333pt;}
.y2d{bottom:544.733333pt;}
.y3e{bottom:546.493333pt;}
.y3d{bottom:578.653333pt;}
.y13{bottom:580.093333pt;}
.y3c{bottom:610.813333pt;}
.y12{bottom:613.853333pt;}
.y2c{bottom:619.133333pt;}
.y3b{bottom:643.133333pt;}
.y11{bottom:648.733333pt;}
.y3a{bottom:675.293333pt;}
.y10{bottom:688.573333pt;}
.y2b{bottom:693.373333pt;}
.y39{bottom:707.453333pt;}
.y29{bottom:730.813333pt;}
.y38{bottom:739.613333pt;}
.yf{bottom:768.453333pt;}
.y37{bottom:771.973333pt;}
.y28{bottom:786.693333pt;}
.y36{bottom:804.133333pt;}
.ye{bottom:808.293333pt;}
.y35{bottom:836.293333pt;}
.y26{bottom:842.533333pt;}
.y34{bottom:868.453333pt;}
.y33{bottom:900.773333pt;}
.yd{bottom:903.333333pt;}
.y24{bottom:916.773333pt;}
.yc{bottom:921.733333pt;}
.y32{bottom:932.933333pt;}
.yb{bottom:940.133333pt;}
.ya{bottom:958.533333pt;}
.y31{bottom:965.093333pt;}
.y1f{bottom:972.613333pt;}
.y9{bottom:976.933333pt;}
.y8{bottom:995.333333pt;}
.y30{bottom:997.253333pt;}
.y7{bottom:1013.760000pt;}
.y2f{bottom:1029.600000pt;}
.y6{bottom:1032.160000pt;}
.y1{bottom:1074.880000pt;}
.h4{height:19.200000pt;}
.h12{height:36.800000pt;}
.h5{height:42.649687pt;}
.h8{height:52.750000pt;}
.he{height:55.200000pt;}
.h11{height:55.232000pt;}
.h10{height:57.375000pt;}
.h2{height:57.758750pt;}
.h3{height:58.563750pt;}
.h7{height:62.781250pt;}
.hd{height:62.812500pt;}
.h14{height:64.752187pt;}
.h15{height:67.128750pt;}
.h13{height:73.490625pt;}
.hf{height:73.600000pt;}
.hc{height:73.632000pt;}
.h6{height:75.465000pt;}
.ha{height:114.946875pt;}
.hb{height:136.303125pt;}
.h9{height:139.965000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:38.400000pt;}
.w4{width:42.432000pt;}
.w3{width:44.000000pt;}
.w5{width:576.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:7.200000pt;}
.x1f{left:8.960000pt;}
.xe{left:11.040000pt;}
.x17{left:12.960000pt;}
.xc{left:13.986667pt;}
.x4{left:19.266667pt;}
.x26{left:23.994667pt;}
.x25{left:25.594667pt;}
.x21{left:26.874667pt;}
.x10{left:29.114667pt;}
.x14{left:42.874667pt;}
.x18{left:56.794667pt;}
.xd{left:68.480000pt;}
.x2{left:75.519988pt;}
.x1b{left:80.474667pt;}
.xf{left:110.752000pt;}
.x5{left:113.311988pt;}
.x29{left:116.831988pt;}
.x7{left:121.311988pt;}
.x1e{left:129.754667pt;}
.x1{left:132.191988pt;}
.x9{left:133.946655pt;}
.xb{left:165.146655pt;}
.x12{left:166.914667pt;}
.x2c{left:168.666655pt;}
.x23{left:179.714667pt;}
.x20{left:183.554667pt;}
.x28{left:185.314667pt;}
.x16{left:188.514667pt;}
.x15{left:207.874667pt;}
.x1c{left:224.674667pt;}
.x19{left:228.674667pt;}
.x1d{left:234.914667pt;}
.x1a{left:239.234667pt;}
.x11{left:246.114667pt;}
.x22{left:248.994667pt;}
.x27{left:259.714667pt;}
.x2b{left:267.426655pt;}
.x2a{left:303.426655pt;}
.x6{left:316.866655pt;}
.x8{left:321.666655pt;}
.x3{left:374.880000pt;}
.xa{left:396.866655pt;}
.x13{left:687.013333pt;}
}




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