
    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_07a493f3e9a2e8141e12fb19.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_c4e9591b1dccf02e51546621.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_6b41eed959e5fbab5f570434.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16b8d4a41300583a05eae15a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e9faa77ce32535bcba773161.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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;}
.ls9{letter-spacing:-1.800000px;}
.ls3{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.552000px;}
.ls14{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.096000px;}
.ls1{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.600000px;}
.lse{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.732000px;}
.lsc{letter-spacing:2.940000px;}
.lsa{letter-spacing:16.200000px;}
.ls6{letter-spacing:17.340000px;}
.lsd{letter-spacing:20.940000px;}
.lsf{letter-spacing:31.800000px;}
.ls4{letter-spacing:43.740000px;}
.ls12{letter-spacing:77.448000px;}
.ls10{letter-spacing:83.418000px;}
.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:-21.552000px;}
.ws2{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws5{word-spacing:-20.904000px;}
.ws3{word-spacing:-20.448000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-4.872000px;}
._33{margin-left:-3.864000px;}
._17{margin-left:-2.604000px;}
._1{margin-left:-1.344000px;}
._0{width:1.092000px;}
._2{width:2.280000px;}
._d{width:3.534000px;}
._4{width:5.292000px;}
._1b{width:6.972000px;}
._1a{width:7.980000px;}
._11{width:9.408000px;}
._5{width:10.668000px;}
._6{width:11.676000px;}
._1f{width:12.768000px;}
._1e{width:14.112000px;}
._1d{width:15.120000px;}
._2f{width:16.374000px;}
._c{width:17.472000px;}
._b{width:18.480000px;}
._31{width:19.740000px;}
._15{width:22.032000px;}
._14{width:23.328000px;}
._12{width:24.528000px;}
._13{width:25.620000px;}
._1c{width:27.630000px;}
._18{width:28.644000px;}
._19{width:30.156000px;}
._39{width:31.338000px;}
._16{width:32.844000px;}
._9{width:34.524000px;}
._36{width:35.532000px;}
._a{width:36.540000px;}
._2e{width:37.686000px;}
._3a{width:38.874000px;}
._2c{width:39.984000px;}
._2d{width:41.244000px;}
._10{width:44.184000px;}
._f{width:45.360000px;}
._3b{width:46.956000px;}
._37{width:48.888000px;}
._26{width:50.484000px;}
._2b{width:52.500000px;}
._38{width:53.508000px;}
._7{width:54.516000px;}
._8{width:56.028000px;}
._23{width:57.246000px;}
._22{width:58.380000px;}
._34{width:59.808000px;}
._35{width:60.834000px;}
._24{width:68.040000px;}
._25{width:69.132000px;}
._30{width:70.224000px;}
._32{width:71.484000px;}
._41{width:75.600000px;}
._40{width:76.608000px;}
._27{width:77.700000px;}
._28{width:79.212000px;}
._42{width:86.364000px;}
._21{width:88.212000px;}
._20{width:89.364000px;}
._3c{width:98.112000px;}
._3d{width:99.624000px;}
._3{width:107.184000px;}
._2a{width:118.440000px;}
._29{width:119.448000px;}
._3e{width:1009.512000px;}
._3f{width:1011.192000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:58.837500px;}
.y6{bottom:80.737500px;}
.y73{bottom:105.637500px;}
.y43{bottom:110.137500px;}
.y88{bottom:113.437500px;}
.y5c{bottom:126.337500px;}
.y35{bottom:131.137500px;}
.y42{bottom:146.437500px;}
.y87{bottom:149.437500px;}
.y5b{bottom:150.330000px;}
.y72{bottom:150.930000px;}
.y34{bottom:167.430000px;}
.y71{bottom:174.975000px;}
.y41{bottom:182.775000px;}
.y1e{bottom:183.075000px;}
.y86{bottom:185.775000px;}
.y4e{bottom:188.475000px;}
.y5a{bottom:195.675000px;}
.y33{bottom:203.775000px;}
.y1d{bottom:219.375000px;}
.y85{bottom:222.075000px;}
.y70{bottom:231.975000px;}
.y32{bottom:239.775000px;}
.y4d{bottom:245.775000px;}
.y59{bottom:252.375000px;}
.y1c{bottom:255.675000px;}
.y84{bottom:258.375000px;}
.y31{bottom:276.075000px;}
.y4c{bottom:281.775000px;}
.y58{bottom:288.675000px;}
.y6f{bottom:289.275000px;}
.y1b{bottom:291.975000px;}
.y30{bottom:312.375000px;}
.y83{bottom:315.375000px;}
.y4b{bottom:318.075000px;}
.y6e{bottom:325.275000px;}
.y1a{bottom:327.975000px;}
.y57{bottom:346.005000px;}
.y2f{bottom:348.720000px;}
.y82{bottom:351.720000px;}
.y4a{bottom:354.405000px;}
.y19{bottom:364.305000px;}
.y6d{bottom:370.905000px;}
.y56{bottom:382.005000px;}
.y2e{bottom:384.705000px;}
.y81{bottom:388.005000px;}
.y49{bottom:390.705000px;}
.y6c{bottom:394.905000px;}
.y18{bottom:400.620000px;}
.y40{bottom:421.005000px;}
.y80{bottom:424.005000px;}
.y48{bottom:426.705000px;}
.y55{bottom:427.620000px;}
.y17{bottom:436.620000px;}
.y6b{bottom:440.205000px;}
.y2d{bottom:442.005000px;}
.y54{bottom:451.620000px;}
.y3f{bottom:457.320000px;}
.y7f{bottom:460.320000px;}
.y47{bottom:463.005000px;}
.y16{bottom:472.905000px;}
.y2c{bottom:478.320000px;}
.y6a{bottom:485.205000px;}
.y3e{bottom:493.320000px;}
.y7e{bottom:496.605000px;}
.y53{bottom:496.905000px;}
.y46{bottom:499.320000px;}
.y15{bottom:509.250000px;}
.y3d{bottom:529.650000px;}
.y7d{bottom:532.950000px;}
.y2b{bottom:535.350000px;}
.y52{bottom:541.950000px;}
.y69{bottom:542.250000px;}
.y14{bottom:545.550000px;}
.y3c{bottom:565.950000px;}
.y51{bottom:566.250000px;}
.y7c{bottom:568.950000px;}
.y2a{bottom:571.650000px;}
.y68{bottom:578.550000px;}
.y13{bottom:581.550000px;}
.y8c{bottom:592.650000px;}
.y29{bottom:607.950000px;}
.y12{bottom:617.850000px;}
.y3b{bottom:623.250000px;}
.y7b{bottom:626.250000px;}
.y8b{bottom:628.950000px;}
.y67{bottom:635.850000px;}
.y28{bottom:644.250000px;}
.y50{bottom:659.250000px;}
.y11{bottom:663.450000px;}
.y8a{bottom:665.250000px;}
.y66{bottom:671.850000px;}
.y27{bottom:680.280000px;}
.y7a{bottom:683.595000px;}
.y89{bottom:701.280000px;}
.y10{bottom:708.495000px;}
.y26{bottom:716.580000px;}
.y65{bottom:717.480000px;}
.y45{bottom:737.595000px;}
.y79{bottom:740.880000px;}
.y25{bottom:752.880000px;}
.yf{bottom:753.780000px;}
.y64{bottom:762.495000px;}
.y44{bottom:773.880000px;}
.y78{bottom:776.880000px;}
.y24{bottom:789.195000px;}
.ye{bottom:798.795000px;}
.y63{bottom:807.780000px;}
.y3a{bottom:810.195000px;}
.y77{bottom:813.195000px;}
.y23{bottom:825.195000px;}
.yd{bottom:844.080000px;}
.y39{bottom:846.225000px;}
.y76{bottom:849.525000px;}
.y22{bottom:861.525000px;}
.y62{bottom:864.825000px;}
.y38{bottom:882.525000px;}
.y75{bottom:885.825000px;}
.yc{bottom:889.125000px;}
.y21{bottom:897.825000px;}
.y61{bottom:900.825000px;}
.y37{bottom:918.825000px;}
.y74{bottom:921.825000px;}
.y20{bottom:934.125000px;}
.yb{bottom:934.425000px;}
.y36{bottom:955.125000px;}
.y60{bottom:958.125000px;}
.y1f{bottom:970.125000px;}
.ya{bottom:991.125000px;}
.y5f{bottom:994.425000px;}
.y4f{bottom:1006.425000px;}
.y9{bottom:1027.455000px;}
.y5e{bottom:1039.755000px;}
.y8{bottom:1063.755000px;}
.y5d{bottom:1064.070000px;}
.y5{bottom:1089.570000px;}
.y4{bottom:1111.455000px;}
.y3{bottom:1137.570000px;}
.y2{bottom:1163.655000px;}
.y1{bottom:1189.800000px;}
.h4{height:58.898438px;}
.h2{height:59.267578px;}
.h5{height:61.154297px;}
.h3{height:65.645508px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.537487px;}
.x10{left:169.844987px;}
.x1{left:246.074987px;}
.x13{left:264.674987px;}
.xd{left:266.474987px;}
.x11{left:288.674987px;}
.x7{left:299.819987px;}
.xa{left:323.219987px;}
.x6{left:355.619987px;}
.x8{left:389.819987px;}
.x2{left:412.904987px;}
.x4{left:465.749987px;}
.x12{left:499.349987px;}
.xe{left:519.749987px;}
.xc{left:523.949987px;}
.x9{left:534.149987px;}
.x3{left:537.794987px;}
.xb{left:569.894987px;}
.xf{left:829.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.490667pt;}
.ls14{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.085333pt;}
.ls1{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.650667pt;}
.lsc{letter-spacing:2.613333pt;}
.lsa{letter-spacing:14.400000pt;}
.ls6{letter-spacing:15.413333pt;}
.lsd{letter-spacing:18.613333pt;}
.lsf{letter-spacing:28.266667pt;}
.ls4{letter-spacing:38.880000pt;}
.ls12{letter-spacing:68.842667pt;}
.ls10{letter-spacing:74.149333pt;}
.ws4{word-spacing:-19.157333pt;}
.ws2{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws5{word-spacing:-18.581333pt;}
.ws3{word-spacing:-18.176000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-4.330667pt;}
._33{margin-left:-3.434667pt;}
._17{margin-left:-2.314667pt;}
._1{margin-left:-1.194667pt;}
._0{width:0.970667pt;}
._2{width:2.026667pt;}
._d{width:3.141333pt;}
._4{width:4.704000pt;}
._1b{width:6.197333pt;}
._1a{width:7.093333pt;}
._11{width:8.362667pt;}
._5{width:9.482667pt;}
._6{width:10.378667pt;}
._1f{width:11.349333pt;}
._1e{width:12.544000pt;}
._1d{width:13.440000pt;}
._2f{width:14.554667pt;}
._c{width:15.530667pt;}
._b{width:16.426667pt;}
._31{width:17.546667pt;}
._15{width:19.584000pt;}
._14{width:20.736000pt;}
._12{width:21.802667pt;}
._13{width:22.773333pt;}
._1c{width:24.560000pt;}
._18{width:25.461333pt;}
._19{width:26.805333pt;}
._39{width:27.856000pt;}
._16{width:29.194667pt;}
._9{width:30.688000pt;}
._36{width:31.584000pt;}
._a{width:32.480000pt;}
._2e{width:33.498667pt;}
._3a{width:34.554667pt;}
._2c{width:35.541333pt;}
._2d{width:36.661333pt;}
._10{width:39.274667pt;}
._f{width:40.320000pt;}
._3b{width:41.738667pt;}
._37{width:43.456000pt;}
._26{width:44.874667pt;}
._2b{width:46.666667pt;}
._38{width:47.562667pt;}
._7{width:48.458667pt;}
._8{width:49.802667pt;}
._23{width:50.885333pt;}
._22{width:51.893333pt;}
._34{width:53.162667pt;}
._35{width:54.074667pt;}
._24{width:60.480000pt;}
._25{width:61.450667pt;}
._30{width:62.421333pt;}
._32{width:63.541333pt;}
._41{width:67.200000pt;}
._40{width:68.096000pt;}
._27{width:69.066667pt;}
._28{width:70.410667pt;}
._42{width:76.768000pt;}
._21{width:78.410667pt;}
._20{width:79.434667pt;}
._3c{width:87.210667pt;}
._3d{width:88.554667pt;}
._3{width:95.274667pt;}
._2a{width:105.280000pt;}
._29{width:106.176000pt;}
._3e{width:897.344000pt;}
._3f{width:898.837333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:52.300000pt;}
.y6{bottom:71.766667pt;}
.y73{bottom:93.900000pt;}
.y43{bottom:97.900000pt;}
.y88{bottom:100.833333pt;}
.y5c{bottom:112.300000pt;}
.y35{bottom:116.566667pt;}
.y42{bottom:130.166667pt;}
.y87{bottom:132.833333pt;}
.y5b{bottom:133.626667pt;}
.y72{bottom:134.160000pt;}
.y34{bottom:148.826667pt;}
.y71{bottom:155.533333pt;}
.y41{bottom:162.466667pt;}
.y1e{bottom:162.733333pt;}
.y86{bottom:165.133333pt;}
.y4e{bottom:167.533333pt;}
.y5a{bottom:173.933333pt;}
.y33{bottom:181.133333pt;}
.y1d{bottom:195.000000pt;}
.y85{bottom:197.400000pt;}
.y70{bottom:206.200000pt;}
.y32{bottom:213.133333pt;}
.y4d{bottom:218.466667pt;}
.y59{bottom:224.333333pt;}
.y1c{bottom:227.266667pt;}
.y84{bottom:229.666667pt;}
.y31{bottom:245.400000pt;}
.y4c{bottom:250.466667pt;}
.y58{bottom:256.600000pt;}
.y6f{bottom:257.133333pt;}
.y1b{bottom:259.533333pt;}
.y30{bottom:277.666667pt;}
.y83{bottom:280.333333pt;}
.y4b{bottom:282.733333pt;}
.y6e{bottom:289.133333pt;}
.y1a{bottom:291.533333pt;}
.y57{bottom:307.560000pt;}
.y2f{bottom:309.973333pt;}
.y82{bottom:312.640000pt;}
.y4a{bottom:315.026667pt;}
.y19{bottom:323.826667pt;}
.y6d{bottom:329.693333pt;}
.y56{bottom:339.560000pt;}
.y2e{bottom:341.960000pt;}
.y81{bottom:344.893333pt;}
.y49{bottom:347.293333pt;}
.y6c{bottom:351.026667pt;}
.y18{bottom:356.106667pt;}
.y40{bottom:374.226667pt;}
.y80{bottom:376.893333pt;}
.y48{bottom:379.293333pt;}
.y55{bottom:380.106667pt;}
.y17{bottom:388.106667pt;}
.y6b{bottom:391.293333pt;}
.y2d{bottom:392.893333pt;}
.y54{bottom:401.440000pt;}
.y3f{bottom:406.506667pt;}
.y7f{bottom:409.173333pt;}
.y47{bottom:411.560000pt;}
.y16{bottom:420.360000pt;}
.y2c{bottom:425.173333pt;}
.y6a{bottom:431.293333pt;}
.y3e{bottom:438.506667pt;}
.y7e{bottom:441.426667pt;}
.y53{bottom:441.693333pt;}
.y46{bottom:443.840000pt;}
.y15{bottom:452.666667pt;}
.y3d{bottom:470.800000pt;}
.y7d{bottom:473.733333pt;}
.y2b{bottom:475.866667pt;}
.y52{bottom:481.733333pt;}
.y69{bottom:482.000000pt;}
.y14{bottom:484.933333pt;}
.y3c{bottom:503.066667pt;}
.y51{bottom:503.333333pt;}
.y7c{bottom:505.733333pt;}
.y2a{bottom:508.133333pt;}
.y68{bottom:514.266667pt;}
.y13{bottom:516.933333pt;}
.y8c{bottom:526.800000pt;}
.y29{bottom:540.400000pt;}
.y12{bottom:549.200000pt;}
.y3b{bottom:554.000000pt;}
.y7b{bottom:556.666667pt;}
.y8b{bottom:559.066667pt;}
.y67{bottom:565.200000pt;}
.y28{bottom:572.666667pt;}
.y50{bottom:586.000000pt;}
.y11{bottom:589.733333pt;}
.y8a{bottom:591.333333pt;}
.y66{bottom:597.200000pt;}
.y27{bottom:604.693333pt;}
.y7a{bottom:607.640000pt;}
.y89{bottom:623.360000pt;}
.y10{bottom:629.773333pt;}
.y26{bottom:636.960000pt;}
.y65{bottom:637.760000pt;}
.y45{bottom:655.640000pt;}
.y79{bottom:658.560000pt;}
.y25{bottom:669.226667pt;}
.yf{bottom:670.026667pt;}
.y64{bottom:677.773333pt;}
.y44{bottom:687.893333pt;}
.y78{bottom:690.560000pt;}
.y24{bottom:701.506667pt;}
.ye{bottom:710.040000pt;}
.y63{bottom:718.026667pt;}
.y3a{bottom:720.173333pt;}
.y77{bottom:722.840000pt;}
.y23{bottom:733.506667pt;}
.yd{bottom:750.293333pt;}
.y39{bottom:752.200000pt;}
.y76{bottom:755.133333pt;}
.y22{bottom:765.800000pt;}
.y62{bottom:768.733333pt;}
.y38{bottom:784.466667pt;}
.y75{bottom:787.400000pt;}
.yc{bottom:790.333333pt;}
.y21{bottom:798.066667pt;}
.y61{bottom:800.733333pt;}
.y37{bottom:816.733333pt;}
.y74{bottom:819.400000pt;}
.y20{bottom:830.333333pt;}
.yb{bottom:830.600000pt;}
.y36{bottom:849.000000pt;}
.y60{bottom:851.666667pt;}
.y1f{bottom:862.333333pt;}
.ya{bottom:881.000000pt;}
.y5f{bottom:883.933333pt;}
.y4f{bottom:894.600000pt;}
.y9{bottom:913.293333pt;}
.y5e{bottom:924.226667pt;}
.y8{bottom:945.560000pt;}
.y5d{bottom:945.840000pt;}
.y5{bottom:968.506667pt;}
.y4{bottom:987.960000pt;}
.y3{bottom:1011.173333pt;}
.y2{bottom:1034.360000pt;}
.y1{bottom:1057.600000pt;}
.h4{height:52.354167pt;}
.h2{height:52.682292pt;}
.h5{height:54.359375pt;}
.h3{height:58.351562pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.366655pt;}
.x10{left:150.973322pt;}
.x1{left:218.733322pt;}
.x13{left:235.266655pt;}
.xd{left:236.866655pt;}
.x11{left:256.599988pt;}
.x7{left:266.506655pt;}
.xa{left:287.306655pt;}
.x6{left:316.106655pt;}
.x8{left:346.506655pt;}
.x2{left:367.026655pt;}
.x4{left:413.999988pt;}
.x12{left:443.866655pt;}
.xe{left:461.999988pt;}
.xc{left:465.733322pt;}
.x9{left:474.799988pt;}
.x3{left:478.039988pt;}
.xb{left:506.573322pt;}
.xf{left:737.039988pt;}
}




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