
    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_17f4fa82952c7fca00f741f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d72eeefbdfdfbb47806595f2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.680176;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_5a63a09f2999140117dba025.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_7a5ff03461940b3abc05a41d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.882812;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:36.000000px;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws2{word-spacing:-38.870100px;}
.ws6a{word-spacing:-38.664600px;}
.ws31{word-spacing:-38.661000px;}
.ws17{word-spacing:-38.660400px;}
.ws23{word-spacing:-38.659200px;}
.ws11{word-spacing:-38.658600px;}
.ws4e{word-spacing:-38.656800px;}
.ws88{word-spacing:-38.655600px;}
.ws8b{word-spacing:-38.654100px;}
.ws7{word-spacing:-38.653200px;}
.ws56{word-spacing:-38.652000px;}
.ws1f{word-spacing:-38.649600px;}
.ws92{word-spacing:-38.648700px;}
.ws5f{word-spacing:-38.647800px;}
.ws60{word-spacing:-38.646000px;}
.ws42{word-spacing:-38.645400px;}
.ws5e{word-spacing:-38.645100px;}
.ws6f{word-spacing:-38.643600px;}
.ws67{word-spacing:-38.643000px;}
.ws95{word-spacing:-38.451300px;}
.ws97{word-spacing:-38.444100px;}
.ws58{word-spacing:-38.442600px;}
.ws93{word-spacing:-38.440500px;}
.ws8f{word-spacing:-38.438100px;}
.ws4{word-spacing:-38.437500px;}
.ws2d{word-spacing:-38.435400px;}
.ws8e{word-spacing:-38.434500px;}
.ws6{word-spacing:-38.363400px;}
.ws91{word-spacing:-38.166000px;}
.ws90{word-spacing:-38.154000px;}
.ws28{word-spacing:-38.148000px;}
.ws8a{word-spacing:-38.145600px;}
.ws5c{word-spacing:-38.145300px;}
.ws8d{word-spacing:-37.944000px;}
.ws4b{word-spacing:-37.939200px;}
.wse{word-spacing:-37.938600px;}
.ws3c{word-spacing:-37.935000px;}
.ws46{word-spacing:-37.933200px;}
.ws52{word-spacing:-37.730400px;}
.ws4c{word-spacing:-37.722300px;}
.ws5d{word-spacing:-37.720800px;}
.ws7b{word-spacing:-37.719000px;}
.ws25{word-spacing:-37.440000px;}
.ws13{word-spacing:-37.436400px;}
.ws5a{word-spacing:-37.427400px;}
.ws2e{word-spacing:-37.224600px;}
.ws19{word-spacing:-37.207800px;}
.ws5{word-spacing:-37.142100px;}
.ws49{word-spacing:-36.995400px;}
.ws86{word-spacing:-36.709200px;}
.ws2b{word-spacing:-36.491400px;}
.ws61{word-spacing:-36.282600px;}
.ws7f{word-spacing:-35.989200px;}
.ws64{word-spacing:-35.556300px;}
.ws96{word-spacing:-35.064000px;}
.ws27{word-spacing:-35.060100px;}
.ws4a{word-spacing:-35.047800px;}
.ws55{word-spacing:-34.840800px;}
.ws62{word-spacing:-34.554600px;}
.ws1c{word-spacing:-34.338600px;}
.ws10{word-spacing:-34.335900px;}
.ws71{word-spacing:-34.326000px;}
.ws32{word-spacing:-33.840000px;}
.ws78{word-spacing:-33.836400px;}
.wsf{word-spacing:-33.831900px;}
.ws7e{word-spacing:-33.618600px;}
.ws4d{word-spacing:-33.616800px;}
.ws20{word-spacing:-33.609600px;}
.ws3{word-spacing:-33.547800px;}
.ws94{word-spacing:-32.900400px;}
.ws66{word-spacing:-32.391000px;}
.ws75{word-spacing:-32.389200px;}
.ws69{word-spacing:-32.382000px;}
.ws79{word-spacing:-32.160600px;}
.ws85{word-spacing:-31.680000px;}
.ws3f{word-spacing:-31.447800px;}
.ws50{word-spacing:-30.738600px;}
.ws26{word-spacing:-30.240000px;}
.ws29{word-spacing:-30.021300px;}
.ws3b{word-spacing:-29.520000px;}
.ws35{word-spacing:-29.502000px;}
.ws41{word-spacing:-29.298600px;}
.ws2a{word-spacing:-28.800000px;}
.ws36{word-spacing:-28.586400px;}
.ws1e{word-spacing:-28.582800px;}
.ws37{word-spacing:-28.582200px;}
.ws7c{word-spacing:-28.575900px;}
.ws18{word-spacing:-28.574100px;}
.ws83{word-spacing:-28.573800px;}
.ws38{word-spacing:-28.568700px;}
.wsb{word-spacing:-28.080000px;}
.ws8c{word-spacing:-28.072800px;}
.ws68{word-spacing:-27.864000px;}
.ws89{word-spacing:-27.855000px;}
.ws40{word-spacing:-27.345600px;}
.ws3e{word-spacing:-27.144000px;}
.ws9{word-spacing:-27.141300px;}
.ws48{word-spacing:-27.122400px;}
.ws2f{word-spacing:-25.920000px;}
.ws74{word-spacing:-24.978600px;}
.ws72{word-spacing:-23.756400px;}
.ws54{word-spacing:-23.531400px;}
.ws30{word-spacing:-23.527800px;}
.ws44{word-spacing:-23.027400px;}
.ws7a{word-spacing:-22.821000px;}
.ws2c{word-spacing:-22.815000px;}
.ws21{word-spacing:-22.095000px;}
.ws24{word-spacing:-22.094100px;}
.ws76{word-spacing:-22.089600px;}
.ws6b{word-spacing:-22.087800px;}
.ws81{word-spacing:-21.587400px;}
.ws77{word-spacing:-21.384000px;}
.wsa{word-spacing:-21.369600px;}
.ws43{word-spacing:-20.872200px;}
.ws47{word-spacing:-20.647800px;}
.ws63{word-spacing:-20.145600px;}
.ws1a{word-spacing:-19.440000px;}
.ws14{word-spacing:-19.430400px;}
.ws15{word-spacing:-19.218600px;}
.ws65{word-spacing:-18.716400px;}
.ws6e{word-spacing:-18.491100px;}
.ws7d{word-spacing:-17.988300px;}
.ws3a{word-spacing:-17.766000px;}
.ws73{word-spacing:-17.271000px;}
.ws57{word-spacing:-17.269200px;}
.ws34{word-spacing:-17.048700px;}
.ws51{word-spacing:-15.840000px;}
.ws87{word-spacing:-15.822000px;}
.ws16{word-spacing:-15.622200px;}
.ws22{word-spacing:-14.396400px;}
.ws4f{word-spacing:-14.171400px;}
.ws1d{word-spacing:-12.744600px;}
.ws84{word-spacing:-12.734100px;}
.ws1b{word-spacing:-12.726000px;}
.ws12{word-spacing:-10.580400px;}
.wsc{word-spacing:-10.068000px;}
.ws80{word-spacing:-8.640000px;}
.ws5b{word-spacing:-8.416800px;}
.ws45{word-spacing:-7.693200px;}
.ws3d{word-spacing:-6.981000px;}
.ws53{word-spacing:-5.760000px;}
.ws82{word-spacing:-5.740200px;}
.wsd{word-spacing:-5.544000px;}
.ws39{word-spacing:-4.600800px;}
.ws6c{word-spacing:-2.670000px;}
.ws70{word-spacing:0.000000px;}
.ws59{word-spacing:9.373500px;}
.ws6d{word-spacing:10.296000px;}
.ws33{word-spacing:13.694400px;}
._20{margin-left:-2.180100px;}
._0{margin-left:-1.110600px;}
._4{width:1.274100px;}
._22{width:17.133600px;}
._1{width:18.144000px;}
._5{width:19.205100px;}
._12{width:20.524200px;}
._1d{width:21.602700px;}
._9{width:22.655700px;}
._10{width:24.239400px;}
._18{width:25.615800px;}
._11{width:27.013800px;}
._7{width:29.205600px;}
._6{width:30.234600px;}
._21{width:32.682600px;}
._13{width:34.407000px;}
._e{width:35.476500px;}
._2{width:36.560100px;}
._c{width:38.043600px;}
._d{width:39.207000px;}
._15{width:40.347300px;}
._1a{width:42.048000px;}
._19{width:43.164000px;}
._f{width:44.895900px;}
._b{width:46.436400px;}
._a{width:47.444400px;}
._1c{width:48.658800px;}
._17{width:50.103000px;}
._8{width:51.523800px;}
._16{width:53.265600px;}
._1e{width:54.699900px;}
._1b{width:66.717000px;}
._1f{width:67.871700px;}
._14{width:70.905600px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y56{bottom:106.275000px;}
.y7f{bottom:111.675000px;}
.y2b{bottom:126.075000px;}
.y55{bottom:126.975000px;}
.y7e{bottom:144.436500px;}
.y2a{bottom:146.775000px;}
.y54{bottom:147.675000px;}
.y72{bottom:150.375000px;}
.y29{bottom:167.475000px;}
.y53{bottom:168.375000px;}
.y71{bottom:171.075000px;}
.y7d{bottom:177.015000px;}
.y28{bottom:188.175000px;}
.y52{bottom:189.075000px;}
.y70{bottom:191.775000px;}
.y7c{bottom:197.715000px;}
.y27{bottom:208.875000px;}
.y6f{bottom:212.475000px;}
.y51{bottom:227.775000px;}
.y7b{bottom:230.475000px;}
.y6e{bottom:233.175000px;}
.y26{bottom:247.575000px;}
.y6d{bottom:253.875000px;}
.y50{bottom:266.475000px;}
.y25{bottom:268.275000px;}
.y7a{bottom:269.175000px;}
.y4f{bottom:287.175000px;}
.y24{bottom:288.975000px;}
.y6c{bottom:292.575000px;}
.y4e{bottom:307.875000px;}
.y23{bottom:309.675000px;}
.y6b{bottom:313.275000px;}
.y4d{bottom:328.575000px;}
.y22{bottom:330.375000px;}
.y6a{bottom:333.975000px;}
.y4c{bottom:349.275000px;}
.y69{bottom:354.675000px;}
.y21{bottom:369.075000px;}
.y68{bottom:375.375000px;}
.y4b{bottom:387.975000px;}
.y20{bottom:389.775000px;}
.y4a{bottom:408.675000px;}
.y1f{bottom:410.475000px;}
.y67{bottom:414.075000px;}
.y49{bottom:429.375000px;}
.y1e{bottom:431.175000px;}
.y66{bottom:434.775000px;}
.y48{bottom:450.075000px;}
.y1d{bottom:451.875000px;}
.y65{bottom:455.475000px;}
.y79{bottom:470.775000px;}
.y1c{bottom:472.575000px;}
.y64{bottom:476.175000px;}
.y47{bottom:488.775000px;}
.y46{bottom:509.475000px;}
.y1b{bottom:511.275000px;}
.y63{bottom:514.875000px;}
.y45{bottom:530.175000px;}
.y1a{bottom:549.975000px;}
.y44{bottom:550.875000px;}
.y62{bottom:553.575000px;}
.y19{bottom:570.675000px;}
.y43{bottom:571.575000px;}
.y61{bottom:574.275000px;}
.y42{bottom:592.275000px;}
.y60{bottom:594.975000px;}
.y18{bottom:609.375000px;}
.y78{bottom:612.975000px;}
.y5f{bottom:615.675000px;}
.y17{bottom:630.075000px;}
.y41{bottom:630.975000px;}
.y77{bottom:633.675000px;}
.y16{bottom:650.775000px;}
.y40{bottom:651.675000px;}
.y5e{bottom:654.375000px;}
.y15{bottom:671.475000px;}
.y3f{bottom:672.375000px;}
.y5d{bottom:675.075000px;}
.y14{bottom:692.175000px;}
.y3e{bottom:693.075000px;}
.y5c{bottom:695.775000px;}
.y13{bottom:712.875000px;}
.y3d{bottom:713.775000px;}
.y5b{bottom:716.475000px;}
.y76{bottom:734.475000px;}
.y8c{bottom:736.636500px;}
.y12{bottom:751.575000px;}
.y3c{bottom:752.475000px;}
.y5a{bottom:755.175000px;}
.y8b{bottom:769.215000px;}
.y11{bottom:772.275000px;}
.y3b{bottom:773.175000px;}
.y75{bottom:775.875000px;}
.y3a{bottom:793.875000px;}
.y8a{bottom:801.975000px;}
.y10{bottom:810.975000px;}
.y39{bottom:814.575000px;}
.yf{bottom:831.675000px;}
.y89{bottom:834.736500px;}
.y38{bottom:835.275000px;}
.ye{bottom:852.375000px;}
.y74{bottom:853.275000px;}
.y88{bottom:855.436500px;}
.y37{bottom:855.975000px;}
.yd{bottom:873.075000px;}
.y73{bottom:873.975000px;}
.y36{bottom:876.675000px;}
.y87{bottom:888.015000px;}
.yc{bottom:893.775000px;}
.y59{bottom:894.675000px;}
.y86{bottom:908.715000px;}
.yb{bottom:914.475000px;}
.y35{bottom:915.375000px;}
.y58{bottom:936.075000px;}
.y85{bottom:941.475000px;}
.ya{bottom:953.175000px;}
.y34{bottom:954.075000px;}
.y84{bottom:974.236500px;}
.y33{bottom:974.775000px;}
.y9{bottom:982.875000px;}
.y32{bottom:995.475000px;}
.y83{bottom:1006.815000px;}
.y8{bottom:1012.575000px;}
.y31{bottom:1016.175000px;}
.y57{bottom:1036.875000px;}
.y82{bottom:1039.575000px;}
.y30{bottom:1054.875000px;}
.y81{bottom:1072.336500px;}
.y2f{bottom:1075.575000px;}
.y7{bottom:1080.975000px;}
.y2e{bottom:1096.275000px;}
.y80{bottom:1104.915000px;}
.y2d{bottom:1116.975000px;}
.y6{bottom:1119.675000px;}
.y2c{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h5{height:44.480566px;}
.h3{height:48.796875px;}
.h6{height:50.027344px;}
.h2{height:57.133008px;}
.h7{height:57.656250px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.620000px;}
.xb{left:132.480000px;}
.x3{left:145.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x5{left:215.638500px;}
.x6{left:375.660000px;}
.x8{left:409.320000px;}
.x4{left:470.025000px;}
.x9{left:556.200000px;}
.x7{left:589.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:32.000000pt;}
.ws8{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws2{word-spacing:-34.551200pt;}
.ws6a{word-spacing:-34.368533pt;}
.ws31{word-spacing:-34.365333pt;}
.ws17{word-spacing:-34.364800pt;}
.ws23{word-spacing:-34.363733pt;}
.ws11{word-spacing:-34.363200pt;}
.ws4e{word-spacing:-34.361600pt;}
.ws88{word-spacing:-34.360533pt;}
.ws8b{word-spacing:-34.359200pt;}
.ws7{word-spacing:-34.358400pt;}
.ws56{word-spacing:-34.357333pt;}
.ws1f{word-spacing:-34.355200pt;}
.ws92{word-spacing:-34.354400pt;}
.ws5f{word-spacing:-34.353600pt;}
.ws60{word-spacing:-34.352000pt;}
.ws42{word-spacing:-34.351467pt;}
.ws5e{word-spacing:-34.351200pt;}
.ws6f{word-spacing:-34.349867pt;}
.ws67{word-spacing:-34.349333pt;}
.ws95{word-spacing:-34.178933pt;}
.ws97{word-spacing:-34.172533pt;}
.ws58{word-spacing:-34.171200pt;}
.ws93{word-spacing:-34.169333pt;}
.ws8f{word-spacing:-34.167200pt;}
.ws4{word-spacing:-34.166667pt;}
.ws2d{word-spacing:-34.164800pt;}
.ws8e{word-spacing:-34.164000pt;}
.ws6{word-spacing:-34.100800pt;}
.ws91{word-spacing:-33.925333pt;}
.ws90{word-spacing:-33.914667pt;}
.ws28{word-spacing:-33.909333pt;}
.ws8a{word-spacing:-33.907200pt;}
.ws5c{word-spacing:-33.906933pt;}
.ws8d{word-spacing:-33.728000pt;}
.ws4b{word-spacing:-33.723733pt;}
.wse{word-spacing:-33.723200pt;}
.ws3c{word-spacing:-33.720000pt;}
.ws46{word-spacing:-33.718400pt;}
.ws52{word-spacing:-33.538133pt;}
.ws4c{word-spacing:-33.530933pt;}
.ws5d{word-spacing:-33.529600pt;}
.ws7b{word-spacing:-33.528000pt;}
.ws25{word-spacing:-33.280000pt;}
.ws13{word-spacing:-33.276800pt;}
.ws5a{word-spacing:-33.268800pt;}
.ws2e{word-spacing:-33.088533pt;}
.ws19{word-spacing:-33.073600pt;}
.ws5{word-spacing:-33.015200pt;}
.ws49{word-spacing:-32.884800pt;}
.ws86{word-spacing:-32.630400pt;}
.ws2b{word-spacing:-32.436800pt;}
.ws61{word-spacing:-32.251200pt;}
.ws7f{word-spacing:-31.990400pt;}
.ws64{word-spacing:-31.605600pt;}
.ws96{word-spacing:-31.168000pt;}
.ws27{word-spacing:-31.164533pt;}
.ws4a{word-spacing:-31.153600pt;}
.ws55{word-spacing:-30.969600pt;}
.ws62{word-spacing:-30.715200pt;}
.ws1c{word-spacing:-30.523200pt;}
.ws10{word-spacing:-30.520800pt;}
.ws71{word-spacing:-30.512000pt;}
.ws32{word-spacing:-30.080000pt;}
.ws78{word-spacing:-30.076800pt;}
.wsf{word-spacing:-30.072800pt;}
.ws7e{word-spacing:-29.883200pt;}
.ws4d{word-spacing:-29.881600pt;}
.ws20{word-spacing:-29.875200pt;}
.ws3{word-spacing:-29.820267pt;}
.ws94{word-spacing:-29.244800pt;}
.ws66{word-spacing:-28.792000pt;}
.ws75{word-spacing:-28.790400pt;}
.ws69{word-spacing:-28.784000pt;}
.ws79{word-spacing:-28.587200pt;}
.ws85{word-spacing:-28.160000pt;}
.ws3f{word-spacing:-27.953600pt;}
.ws50{word-spacing:-27.323200pt;}
.ws26{word-spacing:-26.880000pt;}
.ws29{word-spacing:-26.685600pt;}
.ws3b{word-spacing:-26.240000pt;}
.ws35{word-spacing:-26.224000pt;}
.ws41{word-spacing:-26.043200pt;}
.ws2a{word-spacing:-25.600000pt;}
.ws36{word-spacing:-25.410133pt;}
.ws1e{word-spacing:-25.406933pt;}
.ws37{word-spacing:-25.406400pt;}
.ws7c{word-spacing:-25.400800pt;}
.ws18{word-spacing:-25.399200pt;}
.ws83{word-spacing:-25.398933pt;}
.ws38{word-spacing:-25.394400pt;}
.wsb{word-spacing:-24.960000pt;}
.ws8c{word-spacing:-24.953600pt;}
.ws68{word-spacing:-24.768000pt;}
.ws89{word-spacing:-24.760000pt;}
.ws40{word-spacing:-24.307200pt;}
.ws3e{word-spacing:-24.128000pt;}
.ws9{word-spacing:-24.125600pt;}
.ws48{word-spacing:-24.108800pt;}
.ws2f{word-spacing:-23.040000pt;}
.ws74{word-spacing:-22.203200pt;}
.ws72{word-spacing:-21.116800pt;}
.ws54{word-spacing:-20.916800pt;}
.ws30{word-spacing:-20.913600pt;}
.ws44{word-spacing:-20.468800pt;}
.ws7a{word-spacing:-20.285333pt;}
.ws2c{word-spacing:-20.280000pt;}
.ws21{word-spacing:-19.640000pt;}
.ws24{word-spacing:-19.639200pt;}
.ws76{word-spacing:-19.635200pt;}
.ws6b{word-spacing:-19.633600pt;}
.ws81{word-spacing:-19.188800pt;}
.ws77{word-spacing:-19.008000pt;}
.wsa{word-spacing:-18.995200pt;}
.ws43{word-spacing:-18.553067pt;}
.ws47{word-spacing:-18.353600pt;}
.ws63{word-spacing:-17.907200pt;}
.ws1a{word-spacing:-17.280000pt;}
.ws14{word-spacing:-17.271467pt;}
.ws15{word-spacing:-17.083200pt;}
.ws65{word-spacing:-16.636800pt;}
.ws6e{word-spacing:-16.436533pt;}
.ws7d{word-spacing:-15.989600pt;}
.ws3a{word-spacing:-15.792000pt;}
.ws73{word-spacing:-15.352000pt;}
.ws57{word-spacing:-15.350400pt;}
.ws34{word-spacing:-15.154400pt;}
.ws51{word-spacing:-14.080000pt;}
.ws87{word-spacing:-14.064000pt;}
.ws16{word-spacing:-13.886400pt;}
.ws22{word-spacing:-12.796800pt;}
.ws4f{word-spacing:-12.596800pt;}
.ws1d{word-spacing:-11.328533pt;}
.ws84{word-spacing:-11.319200pt;}
.ws1b{word-spacing:-11.312000pt;}
.ws12{word-spacing:-9.404800pt;}
.wsc{word-spacing:-8.949333pt;}
.ws80{word-spacing:-7.680000pt;}
.ws5b{word-spacing:-7.481600pt;}
.ws45{word-spacing:-6.838400pt;}
.ws3d{word-spacing:-6.205333pt;}
.ws53{word-spacing:-5.120000pt;}
.ws82{word-spacing:-5.102400pt;}
.wsd{word-spacing:-4.928000pt;}
.ws39{word-spacing:-4.089600pt;}
.ws6c{word-spacing:-2.373333pt;}
.ws70{word-spacing:0.000000pt;}
.ws59{word-spacing:8.332000pt;}
.ws6d{word-spacing:9.152000pt;}
.ws33{word-spacing:12.172800pt;}
._20{margin-left:-1.937867pt;}
._0{margin-left:-0.987200pt;}
._4{width:1.132533pt;}
._22{width:15.229867pt;}
._1{width:16.128000pt;}
._5{width:17.071200pt;}
._12{width:18.243733pt;}
._1d{width:19.202400pt;}
._9{width:20.138400pt;}
._10{width:21.546133pt;}
._18{width:22.769600pt;}
._11{width:24.012267pt;}
._7{width:25.960533pt;}
._6{width:26.875200pt;}
._21{width:29.051200pt;}
._13{width:30.584000pt;}
._e{width:31.534667pt;}
._2{width:32.497867pt;}
._c{width:33.816533pt;}
._d{width:34.850667pt;}
._15{width:35.864267pt;}
._1a{width:37.376000pt;}
._19{width:38.368000pt;}
._f{width:39.907467pt;}
._b{width:41.276800pt;}
._a{width:42.172800pt;}
._1c{width:43.252267pt;}
._17{width:44.536000pt;}
._8{width:45.798933pt;}
._16{width:47.347200pt;}
._1e{width:48.622133pt;}
._1b{width:59.304000pt;}
._1f{width:60.330400pt;}
._14{width:63.027200pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y56{bottom:94.466667pt;}
.y7f{bottom:99.266667pt;}
.y2b{bottom:112.066667pt;}
.y55{bottom:112.866667pt;}
.y7e{bottom:128.388000pt;}
.y2a{bottom:130.466667pt;}
.y54{bottom:131.266667pt;}
.y72{bottom:133.666667pt;}
.y29{bottom:148.866667pt;}
.y53{bottom:149.666667pt;}
.y71{bottom:152.066667pt;}
.y7d{bottom:157.346667pt;}
.y28{bottom:167.266667pt;}
.y52{bottom:168.066667pt;}
.y70{bottom:170.466667pt;}
.y7c{bottom:175.746667pt;}
.y27{bottom:185.666667pt;}
.y6f{bottom:188.866667pt;}
.y51{bottom:202.466667pt;}
.y7b{bottom:204.866667pt;}
.y6e{bottom:207.266667pt;}
.y26{bottom:220.066667pt;}
.y6d{bottom:225.666667pt;}
.y50{bottom:236.866667pt;}
.y25{bottom:238.466667pt;}
.y7a{bottom:239.266667pt;}
.y4f{bottom:255.266667pt;}
.y24{bottom:256.866667pt;}
.y6c{bottom:260.066667pt;}
.y4e{bottom:273.666667pt;}
.y23{bottom:275.266667pt;}
.y6b{bottom:278.466667pt;}
.y4d{bottom:292.066667pt;}
.y22{bottom:293.666667pt;}
.y6a{bottom:296.866667pt;}
.y4c{bottom:310.466667pt;}
.y69{bottom:315.266667pt;}
.y21{bottom:328.066667pt;}
.y68{bottom:333.666667pt;}
.y4b{bottom:344.866667pt;}
.y20{bottom:346.466667pt;}
.y4a{bottom:363.266667pt;}
.y1f{bottom:364.866667pt;}
.y67{bottom:368.066667pt;}
.y49{bottom:381.666667pt;}
.y1e{bottom:383.266667pt;}
.y66{bottom:386.466667pt;}
.y48{bottom:400.066667pt;}
.y1d{bottom:401.666667pt;}
.y65{bottom:404.866667pt;}
.y79{bottom:418.466667pt;}
.y1c{bottom:420.066667pt;}
.y64{bottom:423.266667pt;}
.y47{bottom:434.466667pt;}
.y46{bottom:452.866667pt;}
.y1b{bottom:454.466667pt;}
.y63{bottom:457.666667pt;}
.y45{bottom:471.266667pt;}
.y1a{bottom:488.866667pt;}
.y44{bottom:489.666667pt;}
.y62{bottom:492.066667pt;}
.y19{bottom:507.266667pt;}
.y43{bottom:508.066667pt;}
.y61{bottom:510.466667pt;}
.y42{bottom:526.466667pt;}
.y60{bottom:528.866667pt;}
.y18{bottom:541.666667pt;}
.y78{bottom:544.866667pt;}
.y5f{bottom:547.266667pt;}
.y17{bottom:560.066667pt;}
.y41{bottom:560.866667pt;}
.y77{bottom:563.266667pt;}
.y16{bottom:578.466667pt;}
.y40{bottom:579.266667pt;}
.y5e{bottom:581.666667pt;}
.y15{bottom:596.866667pt;}
.y3f{bottom:597.666667pt;}
.y5d{bottom:600.066667pt;}
.y14{bottom:615.266667pt;}
.y3e{bottom:616.066667pt;}
.y5c{bottom:618.466667pt;}
.y13{bottom:633.666667pt;}
.y3d{bottom:634.466667pt;}
.y5b{bottom:636.866667pt;}
.y76{bottom:652.866667pt;}
.y8c{bottom:654.788000pt;}
.y12{bottom:668.066667pt;}
.y3c{bottom:668.866667pt;}
.y5a{bottom:671.266667pt;}
.y8b{bottom:683.746667pt;}
.y11{bottom:686.466667pt;}
.y3b{bottom:687.266667pt;}
.y75{bottom:689.666667pt;}
.y3a{bottom:705.666667pt;}
.y8a{bottom:712.866667pt;}
.y10{bottom:720.866667pt;}
.y39{bottom:724.066667pt;}
.yf{bottom:739.266667pt;}
.y89{bottom:741.988000pt;}
.y38{bottom:742.466667pt;}
.ye{bottom:757.666667pt;}
.y74{bottom:758.466667pt;}
.y88{bottom:760.388000pt;}
.y37{bottom:760.866667pt;}
.yd{bottom:776.066667pt;}
.y73{bottom:776.866667pt;}
.y36{bottom:779.266667pt;}
.y87{bottom:789.346667pt;}
.yc{bottom:794.466667pt;}
.y59{bottom:795.266667pt;}
.y86{bottom:807.746667pt;}
.yb{bottom:812.866667pt;}
.y35{bottom:813.666667pt;}
.y58{bottom:832.066667pt;}
.y85{bottom:836.866667pt;}
.ya{bottom:847.266667pt;}
.y34{bottom:848.066667pt;}
.y84{bottom:865.988000pt;}
.y33{bottom:866.466667pt;}
.y9{bottom:873.666667pt;}
.y32{bottom:884.866667pt;}
.y83{bottom:894.946667pt;}
.y8{bottom:900.066667pt;}
.y31{bottom:903.266667pt;}
.y57{bottom:921.666667pt;}
.y82{bottom:924.066667pt;}
.y30{bottom:937.666667pt;}
.y81{bottom:953.188000pt;}
.y2f{bottom:956.066667pt;}
.y7{bottom:960.866667pt;}
.y2e{bottom:974.466667pt;}
.y80{bottom:982.146667pt;}
.y2d{bottom:992.866667pt;}
.y6{bottom:995.266667pt;}
.y2c{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h5{height:39.538281pt;}
.h3{height:43.375000pt;}
.h6{height:44.468750pt;}
.h2{height:50.784896pt;}
.h7{height:51.250000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.440000pt;}
.xb{left:117.760000pt;}
.x3{left:129.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x5{left:191.678667pt;}
.x6{left:333.920000pt;}
.x8{left:363.840000pt;}
.x4{left:417.800000pt;}
.x9{left:494.400000pt;}
.x7{left:524.160000pt;}
}




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