
    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_d9ff8e222f727c3c902852f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_6165853d70ac08a992bf3d2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_81833d7aaf7371cbf60c7ce5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_27b07995a6fcd3126cab5b92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_9c4a2330d1504299bcf03040.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.051771px;}
.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;}
}
.ws2{word-spacing:-26.284284px;}
.ws3{word-spacing:-24.599394px;}
.ws9{word-spacing:-23.758434px;}
.wsa{word-spacing:-22.465404px;}
.ws8{word-spacing:-21.077085px;}
.ws7{word-spacing:-21.025314px;}
.wsb{word-spacing:-20.668284px;}
.ws4{word-spacing:-0.704252px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.118857px;}
.ws0{word-spacing:0.980527px;}
.ws5{word-spacing:23.484608px;}
.ws6{word-spacing:72.151437px;}
._15{margin-left:-7.358260px;}
._a{margin-left:-6.021544px;}
._16{margin-left:-5.009009px;}
._29{margin-left:-3.605499px;}
._5{margin-left:-2.371061px;}
._2{margin-left:-1.158783px;}
._0{width:1.687083px;}
._13{width:3.176500px;}
._1f{width:4.271867px;}
._7{width:5.275391px;}
._9{width:6.317832px;}
._8{width:7.416970px;}
._21{width:9.118793px;}
._20{width:10.152642px;}
._2a{width:11.204089px;}
._b{width:13.470948px;}
._c{width:14.769743px;}
._1e{width:16.345960px;}
._19{width:17.630468px;}
._1a{width:19.669121px;}
._2d{width:22.295637px;}
._30{width:23.840177px;}
._24{width:25.152709px;}
._25{width:27.632280px;}
._3{width:29.860126px;}
._1{width:30.887572px;}
._6{width:32.471450px;}
._e{width:33.888614px;}
._d{width:35.350340px;}
._f{width:36.642985px;}
._2b{width:40.364657px;}
._2c{width:41.446525px;}
._31{width:43.861210px;}
._27{width:45.330109px;}
._26{width:46.394963px;}
._12{width:48.987250px;}
._11{width:50.378295px;}
._14{width:52.391655px;}
._4{width:57.365212px;}
._28{width:58.802914px;}
._1b{width:68.102149px;}
._10{width:77.388598px;}
._1d{width:97.810813px;}
._1c{width:99.127133px;}
._23{width:117.103138px;}
._22{width:118.153838px;}
._32{width:182.445579px;}
._33{width:200.290059px;}
._35{width:229.955373px;}
._36{width:245.220777px;}
._34{width:248.893007px;}
._2f{width:1329.502603px;}
._2e{width:1410.324439px;}
._17{width:1864.777624px;}
._18{width:2232.478263px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs4{font-size:72.004500px;}
.fs6{font-size:77.764500px;}
.fs5{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y1e{bottom:111.060000px;}
.ya6{bottom:126.540000px;}
.y1d{bottom:129.240000px;}
.y1c{bottom:147.240000px;}
.ya5{bottom:159.120150px;}
.y97{bottom:162.000000px;}
.y37{bottom:173.340000px;}
.y1b{bottom:183.600150px;}
.ya4{bottom:191.700150px;}
.y1a{bottom:201.600150px;}
.y96{bottom:201.960150px;}
.y36{bottom:211.320000px;}
.y19{bottom:219.960150px;}
.y5d{bottom:221.040000px;}
.y95{bottom:242.100150px;}
.y35{bottom:249.300000px;}
.y72{bottom:253.440150px;}
.y5c{bottom:257.400000px;}
.y4b{bottom:274.500000px;}
.y18{bottom:281.520000px;}
.y5b{bottom:284.760000px;}
.ya3{bottom:289.620000px;}
.y71{bottom:289.800150px;}
.y82{bottom:292.860000px;}
.y34{bottom:299.340000px;}
.y4a{bottom:301.680000px;}
.y94{bottom:307.080000px;}
.y5a{bottom:312.120000px;}
.y70{bottom:317.160150px;}
.y17{bottom:319.500000px;}
.y49{bottom:321.120000px;}
.ya2{bottom:329.580000px;}
.y33{bottom:337.320000px;}
.y6f{bottom:344.520150px;}
.y48{bottom:345.240000px;}
.y93{bottom:347.040000px;}
.y16{bottom:357.480000px;}
.y47{bottom:363.420000px;}
.y81{bottom:366.840000px;}
.ya1{bottom:369.540000px;}
.y32{bottom:375.480000px;}
.y46{bottom:382.680000px;}
.y92{bottom:387.000000px;}
.y59{bottom:390.060000px;}
.y15{bottom:395.460000px;}
.y80{bottom:403.020000px;}
.ya0{bottom:409.500000px;}
.y31{bottom:413.460000px;}
.y6e{bottom:422.280150px;}
.y45{bottom:424.980000px;}
.y58{bottom:426.240000px;}
.y91{bottom:426.960000px;}
.y7f{bottom:430.380000px;}
.y14{bottom:433.620000px;}
.y9f{bottom:434.520000px;}
.y44{bottom:442.980000px;}
.y30{bottom:451.440000px;}
.y6d{bottom:458.640150px;}
.y9e{bottom:459.540000px;}
.y43{bottom:461.160000px;}
.y90{bottom:466.920000px;}
.y13{bottom:471.600000px;}
.y6c{bottom:486.000150px;}
.y2f{bottom:489.420000px;}
.y8f{bottom:491.940000px;}
.y9d{bottom:499.500000px;}
.y57{bottom:505.980000px;}
.y7e{bottom:508.320000px;}
.y6b{bottom:513.360150px;}
.y12{bottom:521.460000px;}
.y8e{bottom:531.900000px;}
.y9c{bottom:538.740000px;}
.y2e{bottom:539.460000px;}
.y6a{bottom:540.720150px;}
.y7d{bottom:544.680000px;}
.y11{bottom:559.440000px;}
.y8d{bottom:571.860150px;}
.y7c{bottom:572.040000px;}
.y9b{bottom:577.260000px;}
.y2d{bottom:577.440000px;}
.y56{bottom:591.480000px;}
.y10{bottom:597.420000px;}
.y9a{bottom:602.280000px;}
.y8c{bottom:611.820000px;}
.y2c{bottom:615.600000px;}
.y69{bottom:620.460000px;}
.y55{bottom:630.900000px;}
.yf{bottom:635.400000px;}
.y7b{bottom:649.800000px;}
.y8b{bottom:651.780000px;}
.y99{bottom:652.320150px;}
.y2b{bottom:653.580000px;}
.ye{bottom:673.560000px;}
.y8a{bottom:676.800000px;}
.y7a{bottom:686.160000px;}
.y2a{bottom:691.560000px;}
.y68{bottom:705.060000px;}
.y54{bottom:709.560000px;}
.yd{bottom:711.540000px;}
.y79{bottom:713.520000px;}
.y89{bottom:716.760000px;}
.y29{bottom:729.540000px;}
.y42{bottom:736.740000px;}
.y78{bottom:740.880000px;}
.y67{bottom:741.420150px;}
.y53{bottom:748.980000px;}
.yc{bottom:749.520000px;}
.y88{bottom:756.900000px;}
.y41{bottom:764.820000px;}
.y28{bottom:767.700000px;}
.y98{bottom:768.060000px;}
.y66{bottom:768.780150px;}
.y52{bottom:776.340000px;}
.yb{bottom:787.500000px;}
.y40{bottom:793.080000px;}
.y65{bottom:796.140150px;}
.y87{bottom:796.860150px;}
.y51{bottom:803.700000px;}
.y27{bottom:817.560000px;}
.y77{bottom:818.640000px;}
.y64{bottom:823.500150px;}
.ya{bottom:825.660000px;}
.y39{bottom:831.600000px;}
.y3f{bottom:849.420000px;}
.y63{bottom:850.860150px;}
.y76{bottom:855.000000px;}
.y26{bottom:855.720000px;}
.y86{bottom:862.380000px;}
.y9{bottom:863.640000px;}
.y3e{bottom:877.500000px;}
.y50{bottom:881.460000px;}
.y75{bottom:882.360000px;}
.y25{bottom:893.700000px;}
.y3d{bottom:905.760000px;}
.y8{bottom:913.680000px;}
.y4f{bottom:917.820000px;}
.y62{bottom:928.620000px;}
.y24{bottom:931.680000px;}
.y3c{bottom:933.840000px;}
.y4e{bottom:945.180000px;}
.y85{bottom:948.780000px;}
.y7{bottom:951.660000px;}
.y3b{bottom:962.100000px;}
.y61{bottom:964.980000px;}
.y23{bottom:969.660000px;}
.y4d{bottom:972.540000px;}
.y6{bottom:989.640000px;}
.y84{bottom:991.980000px;}
.y60{bottom:992.340000px;}
.y22{bottom:1007.820000px;}
.y83{bottom:1035.000000px;}
.y3a{bottom:1035.540000px;}
.y5{bottom:1039.680000px;}
.y74{bottom:1042.740000px;}
.y38{bottom:1045.800000px;}
.y4c{bottom:1051.200000px;}
.y21{bottom:1057.860000px;}
.y5f{bottom:1070.100000px;}
.y4{bottom:1077.660000px;}
.y73{bottom:1079.100000px;}
.y20{bottom:1095.840000px;}
.y5e{bottom:1106.460000px;}
.y3{bottom:1130.580000px;}
.y1f{bottom:1133.820000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.h2{height:44.928521px;}
.h6{height:48.908839px;}
.hd{height:54.211808px;}
.h5{height:56.291856px;}
.hc{height:58.925558px;}
.h7{height:67.820645px;}
.h8{height:68.643694px;}
.h4{height:68.942276px;}
.hb{height:73.245957px;}
.ha{height:76.636778px;}
.h9{height:79.349434px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:106.200000px;}
.x2{left:108.000000px;}
.x1c{left:130.140000px;}
.x8{left:137.340000px;}
.xd{left:149.220000px;}
.x4{left:180.720000px;}
.xb{left:187.920000px;}
.x15{left:192.060000px;}
.x9{left:211.140000px;}
.x20{left:212.400000px;}
.x23{left:214.200000px;}
.x1e{left:238.680000px;}
.x7{left:249.840000px;}
.x1b{left:255.240000px;}
.x6{left:270.360000px;}
.xf{left:290.700000px;}
.x3{left:303.480000px;}
.x14{left:305.640000px;}
.x10{left:323.460000px;}
.x17{left:347.220000px;}
.x1d{left:352.800000px;}
.xe{left:356.220000px;}
.x12{left:370.980000px;}
.x11{left:387.540000px;}
.x13{left:402.480000px;}
.x16{left:419.760000px;}
.xc{left:422.640000px;}
.xa{left:426.240000px;}
.x21{left:433.080000px;}
.x1{left:438.120000px;}
.x18{left:442.260000px;}
.x22{left:451.260000px;}
.x1a{left:518.220000px;}
.x24{left:532.440000px;}
.x5{left:596.700000px;}
.x25{left:690.840000px;}
.x19{left:754.380000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.046019pt;}
.ws2{word-spacing:-23.363808pt;}
.ws3{word-spacing:-21.866128pt;}
.ws9{word-spacing:-21.118608pt;}
.wsa{word-spacing:-19.969248pt;}
.ws8{word-spacing:-18.735187pt;}
.ws7{word-spacing:-18.689168pt;}
.wsb{word-spacing:-18.371808pt;}
.ws4{word-spacing:-0.626002pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.105650pt;}
.ws0{word-spacing:0.871580pt;}
.ws5{word-spacing:20.875207pt;}
.ws6{word-spacing:64.134611pt;}
._15{margin-left:-6.540676pt;}
._a{margin-left:-5.352484pt;}
._16{margin-left:-4.452453pt;}
._29{margin-left:-3.204888pt;}
._5{margin-left:-2.107610pt;}
._2{margin-left:-1.030029pt;}
._0{width:1.499630pt;}
._13{width:2.823556pt;}
._1f{width:3.797215pt;}
._7{width:4.689236pt;}
._9{width:5.615851pt;}
._8{width:6.592862pt;}
._21{width:8.105594pt;}
._20{width:9.024570pt;}
._2a{width:9.959190pt;}
._b{width:11.974176pt;}
._c{width:13.128660pt;}
._1e{width:14.529743pt;}
._19{width:15.671527pt;}
._1a{width:17.483663pt;}
._2d{width:19.818344pt;}
._30{width:21.191269pt;}
._24{width:22.357964pt;}
._25{width:24.562027pt;}
._3{width:26.542334pt;}
._1{width:27.455620pt;}
._6{width:28.863511pt;}
._e{width:30.123212pt;}
._d{width:31.422525pt;}
._f{width:32.571542pt;}
._2b{width:35.879695pt;}
._2c{width:36.841355pt;}
._31{width:38.987742pt;}
._27{width:40.293430pt;}
._26{width:41.239967pt;}
._12{width:43.544222pt;}
._11{width:44.780707pt;}
._14{width:46.570360pt;}
._4{width:50.991300pt;}
._28{width:52.269257pt;}
._1b{width:60.535243pt;}
._10{width:68.789865pt;}
._1d{width:86.942945pt;}
._1c{width:88.113007pt;}
._23{width:104.091678pt;}
._22{width:105.025634pt;}
._32{width:162.173848pt;}
._33{width:178.035608pt;}
._35{width:204.404776pt;}
._36{width:217.974024pt;}
._34{width:221.238228pt;}
._2f{width:1181.780092pt;}
._2e{width:1253.621724pt;}
._17{width:1657.580110pt;}
._18{width:1984.425122pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs4{font-size:64.004000pt;}
.fs6{font-size:69.124000pt;}
.fs5{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:98.720000pt;}
.ya6{bottom:112.480000pt;}
.y1d{bottom:114.880000pt;}
.y1c{bottom:130.880000pt;}
.ya5{bottom:141.440133pt;}
.y97{bottom:144.000000pt;}
.y37{bottom:154.080000pt;}
.y1b{bottom:163.200133pt;}
.ya4{bottom:170.400133pt;}
.y1a{bottom:179.200133pt;}
.y96{bottom:179.520133pt;}
.y36{bottom:187.840000pt;}
.y19{bottom:195.520133pt;}
.y5d{bottom:196.480000pt;}
.y95{bottom:215.200133pt;}
.y35{bottom:221.600000pt;}
.y72{bottom:225.280133pt;}
.y5c{bottom:228.800000pt;}
.y4b{bottom:244.000000pt;}
.y18{bottom:250.240000pt;}
.y5b{bottom:253.120000pt;}
.ya3{bottom:257.440000pt;}
.y71{bottom:257.600133pt;}
.y82{bottom:260.320000pt;}
.y34{bottom:266.080000pt;}
.y4a{bottom:268.160000pt;}
.y94{bottom:272.960000pt;}
.y5a{bottom:277.440000pt;}
.y70{bottom:281.920133pt;}
.y17{bottom:284.000000pt;}
.y49{bottom:285.440000pt;}
.ya2{bottom:292.960000pt;}
.y33{bottom:299.840000pt;}
.y6f{bottom:306.240133pt;}
.y48{bottom:306.880000pt;}
.y93{bottom:308.480000pt;}
.y16{bottom:317.760000pt;}
.y47{bottom:323.040000pt;}
.y81{bottom:326.080000pt;}
.ya1{bottom:328.480000pt;}
.y32{bottom:333.760000pt;}
.y46{bottom:340.160000pt;}
.y92{bottom:344.000000pt;}
.y59{bottom:346.720000pt;}
.y15{bottom:351.520000pt;}
.y80{bottom:358.240000pt;}
.ya0{bottom:364.000000pt;}
.y31{bottom:367.520000pt;}
.y6e{bottom:375.360133pt;}
.y45{bottom:377.760000pt;}
.y58{bottom:378.880000pt;}
.y91{bottom:379.520000pt;}
.y7f{bottom:382.560000pt;}
.y14{bottom:385.440000pt;}
.y9f{bottom:386.240000pt;}
.y44{bottom:393.760000pt;}
.y30{bottom:401.280000pt;}
.y6d{bottom:407.680133pt;}
.y9e{bottom:408.480000pt;}
.y43{bottom:409.920000pt;}
.y90{bottom:415.040000pt;}
.y13{bottom:419.200000pt;}
.y6c{bottom:432.000133pt;}
.y2f{bottom:435.040000pt;}
.y8f{bottom:437.280000pt;}
.y9d{bottom:444.000000pt;}
.y57{bottom:449.760000pt;}
.y7e{bottom:451.840000pt;}
.y6b{bottom:456.320133pt;}
.y12{bottom:463.520000pt;}
.y8e{bottom:472.800000pt;}
.y9c{bottom:478.880000pt;}
.y2e{bottom:479.520000pt;}
.y6a{bottom:480.640133pt;}
.y7d{bottom:484.160000pt;}
.y11{bottom:497.280000pt;}
.y8d{bottom:508.320133pt;}
.y7c{bottom:508.480000pt;}
.y9b{bottom:513.120000pt;}
.y2d{bottom:513.280000pt;}
.y56{bottom:525.760000pt;}
.y10{bottom:531.040000pt;}
.y9a{bottom:535.360000pt;}
.y8c{bottom:543.840000pt;}
.y2c{bottom:547.200000pt;}
.y69{bottom:551.520000pt;}
.y55{bottom:560.800000pt;}
.yf{bottom:564.800000pt;}
.y7b{bottom:577.600000pt;}
.y8b{bottom:579.360000pt;}
.y99{bottom:579.840133pt;}
.y2b{bottom:580.960000pt;}
.ye{bottom:598.720000pt;}
.y8a{bottom:601.600000pt;}
.y7a{bottom:609.920000pt;}
.y2a{bottom:614.720000pt;}
.y68{bottom:626.720000pt;}
.y54{bottom:630.720000pt;}
.yd{bottom:632.480000pt;}
.y79{bottom:634.240000pt;}
.y89{bottom:637.120000pt;}
.y29{bottom:648.480000pt;}
.y42{bottom:654.880000pt;}
.y78{bottom:658.560000pt;}
.y67{bottom:659.040133pt;}
.y53{bottom:665.760000pt;}
.yc{bottom:666.240000pt;}
.y88{bottom:672.800000pt;}
.y41{bottom:679.840000pt;}
.y28{bottom:682.400000pt;}
.y98{bottom:682.720000pt;}
.y66{bottom:683.360133pt;}
.y52{bottom:690.080000pt;}
.yb{bottom:700.000000pt;}
.y40{bottom:704.960000pt;}
.y65{bottom:707.680133pt;}
.y87{bottom:708.320133pt;}
.y51{bottom:714.400000pt;}
.y27{bottom:726.720000pt;}
.y77{bottom:727.680000pt;}
.y64{bottom:732.000133pt;}
.ya{bottom:733.920000pt;}
.y39{bottom:739.200000pt;}
.y3f{bottom:755.040000pt;}
.y63{bottom:756.320133pt;}
.y76{bottom:760.000000pt;}
.y26{bottom:760.640000pt;}
.y86{bottom:766.560000pt;}
.y9{bottom:767.680000pt;}
.y3e{bottom:780.000000pt;}
.y50{bottom:783.520000pt;}
.y75{bottom:784.320000pt;}
.y25{bottom:794.400000pt;}
.y3d{bottom:805.120000pt;}
.y8{bottom:812.160000pt;}
.y4f{bottom:815.840000pt;}
.y62{bottom:825.440000pt;}
.y24{bottom:828.160000pt;}
.y3c{bottom:830.080000pt;}
.y4e{bottom:840.160000pt;}
.y85{bottom:843.360000pt;}
.y7{bottom:845.920000pt;}
.y3b{bottom:855.200000pt;}
.y61{bottom:857.760000pt;}
.y23{bottom:861.920000pt;}
.y4d{bottom:864.480000pt;}
.y6{bottom:879.680000pt;}
.y84{bottom:881.760000pt;}
.y60{bottom:882.080000pt;}
.y22{bottom:895.840000pt;}
.y83{bottom:920.000000pt;}
.y3a{bottom:920.480000pt;}
.y5{bottom:924.160000pt;}
.y74{bottom:926.880000pt;}
.y38{bottom:929.600000pt;}
.y4c{bottom:934.400000pt;}
.y21{bottom:940.320000pt;}
.y5f{bottom:951.200000pt;}
.y4{bottom:957.920000pt;}
.y73{bottom:959.200000pt;}
.y20{bottom:974.080000pt;}
.y5e{bottom:983.520000pt;}
.y3{bottom:1004.960000pt;}
.y1f{bottom:1007.840000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.h2{height:39.936463pt;}
.h6{height:43.474523pt;}
.hd{height:48.188273pt;}
.h5{height:50.037205pt;}
.hc{height:52.378273pt;}
.h7{height:60.285018pt;}
.h8{height:61.016617pt;}
.h4{height:61.282023pt;}
.hb{height:65.107518pt;}
.ha{height:68.121580pt;}
.h9{height:70.532830pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:94.400000pt;}
.x2{left:96.000000pt;}
.x1c{left:115.680000pt;}
.x8{left:122.080000pt;}
.xd{left:132.640000pt;}
.x4{left:160.640000pt;}
.xb{left:167.040000pt;}
.x15{left:170.720000pt;}
.x9{left:187.680000pt;}
.x20{left:188.800000pt;}
.x23{left:190.400000pt;}
.x1e{left:212.160000pt;}
.x7{left:222.080000pt;}
.x1b{left:226.880000pt;}
.x6{left:240.320000pt;}
.xf{left:258.400000pt;}
.x3{left:269.760000pt;}
.x14{left:271.680000pt;}
.x10{left:287.520000pt;}
.x17{left:308.640000pt;}
.x1d{left:313.600000pt;}
.xe{left:316.640000pt;}
.x12{left:329.760000pt;}
.x11{left:344.480000pt;}
.x13{left:357.760000pt;}
.x16{left:373.120000pt;}
.xc{left:375.680000pt;}
.xa{left:378.880000pt;}
.x21{left:384.960000pt;}
.x1{left:389.440000pt;}
.x18{left:393.120000pt;}
.x22{left:401.120000pt;}
.x1a{left:460.640000pt;}
.x24{left:473.280000pt;}
.x5{left:530.400000pt;}
.x25{left:614.080000pt;}
.x19{left:670.560000pt;}
}




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