
    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_f4e72f67956a86813233844d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_893343bca5f20f69ddc4196e.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_a01e3371bdfb9b472ba7bf9e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_01292221580639f625c0f591.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5940b71ef75101b5286dfb50.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_b563e273d1475915845270bf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_2153ccb3237a182aa98f3051.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_13d298eb959111848e0e4a87.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_4e98fc038cd7b8fc4f4a5725.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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);}
.v1{vertical-align:-99.600000px;}
.v2{vertical-align:-97.320000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.372000px;}
.lsd{letter-spacing:-0.276000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.660000px;}
.ls9{letter-spacing:1.860000px;}
.ls3{letter-spacing:23.400000px;}
.ls7{letter-spacing:27.000000px;}
.lsa{letter-spacing:40.218000px;}
.lsb{letter-spacing:54.600000px;}
.ls8{letter-spacing:61.800000px;}
.ls2{letter-spacing:87.000000px;}
.ls6{letter-spacing:126.600000px;}
.lsc{letter-spacing:981.330000px;}
.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;}
}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.724000px;}
.ws1{word-spacing:0.000000px;}
._3c{margin-left:-3.528000px;}
._7{margin-left:-2.520000px;}
._0{margin-left:-1.512000px;}
._1{width:1.092000px;}
._9{width:2.184000px;}
._21{width:3.276000px;}
._20{width:4.452000px;}
._2c{width:5.628000px;}
._e{width:6.888000px;}
._d{width:8.148000px;}
._22{width:9.324000px;}
._1e{width:10.566000px;}
._1d{width:11.814000px;}
._a{width:13.020000px;}
._b{width:14.028000px;}
._c{width:15.036000px;}
._2b{width:16.716000px;}
._2a{width:17.892000px;}
._1f{width:19.404000px;}
._11{width:22.344000px;}
._4{width:23.940000px;}
._5{width:25.116000px;}
._6{width:26.460000px;}
._26{width:27.552000px;}
._24{width:29.316000px;}
._23{width:30.324000px;}
._14{width:31.668000px;}
._13{width:32.676000px;}
._16{width:34.188000px;}
._15{width:35.448000px;}
._31{width:37.044000px;}
._2{width:38.052000px;}
._3{width:39.144000px;}
._33{width:40.992000px;}
._1b{width:42.840000px;}
._1c{width:44.100000px;}
._25{width:45.612000px;}
._2f{width:47.712000px;}
._30{width:49.140000px;}
._28{width:50.238000px;}
._27{width:51.492000px;}
._32{width:52.584000px;}
._18{width:53.760000px;}
._17{width:55.020000px;}
._12{width:58.044000px;}
._8{width:59.640000px;}
._34{width:62.160000px;}
._19{width:66.078000px;}
._3b{width:67.704000px;}
._3a{width:71.568000px;}
._39{width:72.828000px;}
._f{width:76.020000px;}
._10{width:77.364000px;}
._38{width:84.924000px;}
._2e{width:85.932000px;}
._1a{width:87.528000px;}
._3e{width:94.752000px;}
._3d{width:95.844000px;}
._2d{width:98.952000px;}
._35{width:101.472000px;}
._36{width:103.404000px;}
._37{width:105.084000px;}
._29{width:127.176000px;}
._3f{width:843.330000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:4.485000px;}
.y42{bottom:5.085000px;}
.y40{bottom:5.385000px;}
.y3e{bottom:16.815000px;}
.y3a{bottom:28.815000px;}
.y3d{bottom:40.815000px;}
.y3b{bottom:52.815000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y2f{bottom:96.037500px;}
.y56{bottom:110.437500px;}
.y2e{bottom:120.037500px;}
.y55{bottom:134.737500px;}
.y2d{bottom:144.337500px;}
.y54{bottom:158.745000px;}
.y2c{bottom:168.375000px;}
.y53{bottom:183.075000px;}
.y2b{bottom:192.675000px;}
.y52{bottom:207.075000px;}
.y2a{bottom:216.675000px;}
.y51{bottom:231.375000px;}
.y29{bottom:240.975000px;}
.y50{bottom:255.375000px;}
.y28{bottom:264.975000px;}
.y4f{bottom:279.675000px;}
.y27{bottom:289.275000px;}
.y4e{bottom:303.675000px;}
.y26{bottom:313.275000px;}
.y4d{bottom:327.975000px;}
.y5a{bottom:337.005000px;}
.y25{bottom:337.620000px;}
.y4c{bottom:352.005000px;}
.y24{bottom:361.620000px;}
.y4b{bottom:376.320000px;}
.y23{bottom:385.905000px;}
.y4a{bottom:400.320000px;}
.y22{bottom:409.905000px;}
.y49{bottom:424.620000px;}
.y21{bottom:434.205000px;}
.y48{bottom:448.620000px;}
.y20{bottom:458.205000px;}
.y47{bottom:472.905000px;}
.y1f{bottom:482.505000px;}
.y46{bottom:496.905000px;}
.y36{bottom:505.950000px;}
.y1e{bottom:506.550000px;}
.y45{bottom:521.250000px;}
.y1d{bottom:530.850000px;}
.y44{bottom:544.965000px;}
.y1c{bottom:554.850000px;}
.y43{bottom:574.965000px;}
.y1b{bottom:579.150000px;}
.y1a{bottom:603.150000px;}
.y41{bottom:605.265000px;}
.y19{bottom:627.450000px;}
.y3f{bottom:635.265000px;}
.y18{bottom:651.450000px;}
.y39{bottom:665.565000px;}
.y59{bottom:675.195000px;}
.y17{bottom:675.780000px;}
.y58{bottom:699.195000px;}
.y16{bottom:699.780000px;}
.y15{bottom:724.080000px;}
.y14{bottom:748.080000px;}
.y13{bottom:772.380000px;}
.y12{bottom:796.380000px;}
.y11{bottom:820.695000px;}
.y10{bottom:844.725000px;}
.y38{bottom:868.425000px;}
.yf{bottom:869.025000px;}
.ye{bottom:893.025000px;}
.yd{bottom:917.325000px;}
.y37{bottom:940.725000px;}
.yc{bottom:941.325000px;}
.yb{bottom:965.625000px;}
.ya{bottom:989.025000px;}
.y35{bottom:989.625000px;}
.y9{bottom:1013.355000px;}
.y34{bottom:1013.955000px;}
.y57{bottom:1037.355000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1062.255000px;}
.y6{bottom:1085.655000px;}
.y33{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y32{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y31{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y30{bottom:1158.870000px;}
.ha{height:23.985000px;}
.h9{height:24.285000px;}
.h7{height:58.898438px;}
.h3{height:61.670545px;}
.h8{height:72.322500px;}
.h4{height:72.638672px;}
.h2{height:82.441406px;}
.h6{height:83.794922px;}
.h5{height:84.656250px;}
.hb{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:164.730000px;}
.w4{width:175.815000px;}
.w2{width:334.902000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.200000px;}
.x10{left:9.000000px;}
.xb{left:11.100000px;}
.xc{left:24.000000px;}
.xf{left:27.600000px;}
.xd{left:60.300000px;}
.x2{left:84.937500px;}
.x9{left:114.337500px;}
.x3{left:125.737500px;}
.x5{left:127.537500px;}
.x13{left:130.237500px;}
.x8{left:166.230000px;}
.x7{left:171.645000px;}
.x4{left:321.120000px;}
.x12{left:373.620000px;}
.x6{left:379.320000px;}
.xa{left:422.850000px;}
.x1{left:435.750000px;}
.xe{left:591.495000px;}
@media print{
.v1{vertical-align:-88.533333pt;}
.v2{vertical-align:-86.506667pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.330667pt;}
.lsd{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls9{letter-spacing:1.653333pt;}
.ls3{letter-spacing:20.800000pt;}
.ls7{letter-spacing:24.000000pt;}
.lsa{letter-spacing:35.749333pt;}
.lsb{letter-spacing:48.533333pt;}
.ls8{letter-spacing:54.933333pt;}
.ls2{letter-spacing:77.333333pt;}
.ls6{letter-spacing:112.533333pt;}
.lsc{letter-spacing:872.293333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.421333pt;}
.ws1{word-spacing:0.000000pt;}
._3c{margin-left:-3.136000pt;}
._7{margin-left:-2.240000pt;}
._0{margin-left:-1.344000pt;}
._1{width:0.970667pt;}
._9{width:1.941333pt;}
._21{width:2.912000pt;}
._20{width:3.957333pt;}
._2c{width:5.002667pt;}
._e{width:6.122667pt;}
._d{width:7.242667pt;}
._22{width:8.288000pt;}
._1e{width:9.392000pt;}
._1d{width:10.501333pt;}
._a{width:11.573333pt;}
._b{width:12.469333pt;}
._c{width:13.365333pt;}
._2b{width:14.858667pt;}
._2a{width:15.904000pt;}
._1f{width:17.248000pt;}
._11{width:19.861333pt;}
._4{width:21.280000pt;}
._5{width:22.325333pt;}
._6{width:23.520000pt;}
._26{width:24.490667pt;}
._24{width:26.058667pt;}
._23{width:26.954667pt;}
._14{width:28.149333pt;}
._13{width:29.045333pt;}
._16{width:30.389333pt;}
._15{width:31.509333pt;}
._31{width:32.928000pt;}
._2{width:33.824000pt;}
._3{width:34.794667pt;}
._33{width:36.437333pt;}
._1b{width:38.080000pt;}
._1c{width:39.200000pt;}
._25{width:40.544000pt;}
._2f{width:42.410667pt;}
._30{width:43.680000pt;}
._28{width:44.656000pt;}
._27{width:45.770667pt;}
._32{width:46.741333pt;}
._18{width:47.786667pt;}
._17{width:48.906667pt;}
._12{width:51.594667pt;}
._8{width:53.013333pt;}
._34{width:55.253333pt;}
._19{width:58.736000pt;}
._3b{width:60.181333pt;}
._3a{width:63.616000pt;}
._39{width:64.736000pt;}
._f{width:67.573333pt;}
._10{width:68.768000pt;}
._38{width:75.488000pt;}
._2e{width:76.384000pt;}
._1a{width:77.802667pt;}
._3e{width:84.224000pt;}
._3d{width:85.194667pt;}
._2d{width:87.957333pt;}
._35{width:90.197333pt;}
._36{width:91.914667pt;}
._37{width:93.408000pt;}
._29{width:113.045333pt;}
._3f{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:3.986667pt;}
.y42{bottom:4.520000pt;}
.y40{bottom:4.786667pt;}
.y3e{bottom:14.946667pt;}
.y3a{bottom:25.613333pt;}
.y3d{bottom:36.280000pt;}
.y3b{bottom:46.946667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y2f{bottom:85.366667pt;}
.y56{bottom:98.166667pt;}
.y2e{bottom:106.700000pt;}
.y55{bottom:119.766667pt;}
.y2d{bottom:128.300000pt;}
.y54{bottom:141.106667pt;}
.y2c{bottom:149.666667pt;}
.y53{bottom:162.733333pt;}
.y2b{bottom:171.266667pt;}
.y52{bottom:184.066667pt;}
.y2a{bottom:192.600000pt;}
.y51{bottom:205.666667pt;}
.y29{bottom:214.200000pt;}
.y50{bottom:227.000000pt;}
.y28{bottom:235.533333pt;}
.y4f{bottom:248.600000pt;}
.y27{bottom:257.133333pt;}
.y4e{bottom:269.933333pt;}
.y26{bottom:278.466667pt;}
.y4d{bottom:291.533333pt;}
.y5a{bottom:299.560000pt;}
.y25{bottom:300.106667pt;}
.y4c{bottom:312.893333pt;}
.y24{bottom:321.440000pt;}
.y4b{bottom:334.506667pt;}
.y23{bottom:343.026667pt;}
.y4a{bottom:355.840000pt;}
.y22{bottom:364.360000pt;}
.y49{bottom:377.440000pt;}
.y21{bottom:385.960000pt;}
.y48{bottom:398.773333pt;}
.y20{bottom:407.293333pt;}
.y47{bottom:420.360000pt;}
.y1f{bottom:428.893333pt;}
.y46{bottom:441.693333pt;}
.y36{bottom:449.733333pt;}
.y1e{bottom:450.266667pt;}
.y45{bottom:463.333333pt;}
.y1d{bottom:471.866667pt;}
.y44{bottom:484.413333pt;}
.y1c{bottom:493.200000pt;}
.y43{bottom:511.080000pt;}
.y1b{bottom:514.800000pt;}
.y1a{bottom:536.133333pt;}
.y41{bottom:538.013333pt;}
.y19{bottom:557.733333pt;}
.y3f{bottom:564.680000pt;}
.y18{bottom:579.066667pt;}
.y39{bottom:591.613333pt;}
.y59{bottom:600.173333pt;}
.y17{bottom:600.693333pt;}
.y58{bottom:621.506667pt;}
.y16{bottom:622.026667pt;}
.y15{bottom:643.626667pt;}
.y14{bottom:664.960000pt;}
.y13{bottom:686.560000pt;}
.y12{bottom:707.893333pt;}
.y11{bottom:729.506667pt;}
.y10{bottom:750.866667pt;}
.y38{bottom:771.933333pt;}
.yf{bottom:772.466667pt;}
.ye{bottom:793.800000pt;}
.yd{bottom:815.400000pt;}
.y37{bottom:836.200000pt;}
.yc{bottom:836.733333pt;}
.yb{bottom:858.333333pt;}
.ya{bottom:879.133333pt;}
.y35{bottom:879.666667pt;}
.y9{bottom:900.760000pt;}
.y34{bottom:901.293333pt;}
.y57{bottom:922.093333pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:944.226667pt;}
.y6{bottom:965.026667pt;}
.y33{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y32{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y31{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y30{bottom:1030.106667pt;}
.ha{height:21.320000pt;}
.h9{height:21.586667pt;}
.h7{height:52.354167pt;}
.h3{height:54.818262pt;}
.h8{height:64.286667pt;}
.h4{height:64.567708pt;}
.h2{height:73.281250pt;}
.h6{height:74.484375pt;}
.h5{height:75.250000pt;}
.hb{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:146.426667pt;}
.w4{width:156.280000pt;}
.w2{width:297.690667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.400000pt;}
.x10{left:8.000000pt;}
.xb{left:9.866667pt;}
.xc{left:21.333333pt;}
.xf{left:24.533333pt;}
.xd{left:53.600000pt;}
.x2{left:75.500000pt;}
.x9{left:101.633333pt;}
.x3{left:111.766667pt;}
.x5{left:113.366667pt;}
.x13{left:115.766667pt;}
.x8{left:147.760000pt;}
.x7{left:152.573333pt;}
.x4{left:285.440000pt;}
.x12{left:332.106667pt;}
.x6{left:337.173333pt;}
.xa{left:375.866667pt;}
.x1{left:387.333333pt;}
.xe{left:525.773333pt;}
}




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