
    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_f08cc6b290134daedca08f96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984375;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_6306f39997a98cec77eef1fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074707;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_89fd6f748915e8519fa96115.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_6bbb118c1cb55af970284975.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_ca2428b9b825ac246059da36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.987305;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_27d4c8bb3b44246cd137eb1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.043461px;}
.ls8{letter-spacing:-0.031043px;}
.ls10{letter-spacing:-0.017074px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010710px;}
.ls7{letter-spacing:0.053550px;}
.ls2{letter-spacing:0.085967px;}
.ls0{letter-spacing:0.152829px;}
.ls4{letter-spacing:10.244348px;}
.lsf{letter-spacing:42.645409px;}
.ls9{letter-spacing:44.887927px;}
.ls12{letter-spacing:49.372963px;}
.ls19{letter-spacing:49.495863px;}
.ls5{letter-spacing:50.122974px;}
.ls17{letter-spacing:53.411481px;}
.ls16{letter-spacing:57.600538px;}
.lse{letter-spacing:57.717131px;}
.lsc{letter-spacing:58.863480px;}
.lsa{letter-spacing:63.593109px;}
.lsd{letter-spacing:66.585637px;}
.ls11{letter-spacing:67.328134px;}
.lsb{letter-spacing:68.820642px;}
.ls15{letter-spacing:71.070673px;}
.ls18{letter-spacing:72.058969px;}
.ls3{letter-spacing:74.813212px;}
.ls14{letter-spacing:92.121146px;}
.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:-95.671226px;}
.ws3{word-spacing:-53.815065px;}
.ws2{word-spacing:-53.729098px;}
.ws6{word-spacing:-38.804349px;}
.ws7{word-spacing:-38.773305px;}
.ws5{word-spacing:-26.828551px;}
.ws4{word-spacing:-26.785711px;}
.ws8{word-spacing:-21.325318px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-10.244348px;}
._0{margin-left:-1.146221px;}
._2{width:1.071000px;}
._1{width:40.635914px;}
._5{width:51.051001px;}
._4{width:72.486523px;}
.fc4{color:rgb(141,199,101);}
.fc6{color:transparent;}
.fc3{color:rgb(56,145,167);}
.fc2{color:rgb(50,14,4);}
.fc1{color:rgb(87,35,20);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:63.185419px;}
.fs13{font-size:68.295654px;}
.fsd{font-size:71.208965px;}
.fs9{font-size:74.504350px;}
.fs21{font-size:76.796791px;}
.fs12{font-size:78.981774px;}
.fs1d{font-size:80.235453px;}
.fs14{font-size:85.369567px;}
.fs6{font-size:85.680002px;}
.fs17{font-size:86.921741px;}
.fse{font-size:89.011206px;}
.fs0{font-size:89.548497px;}
.fsa{font-size:93.130437px;}
.fs19{font-size:95.518397px;}
.fs22{font-size:95.995989px;}
.fs1e{font-size:100.294317px;}
.fsb{font-size:103.064350px;}
.fs7{font-size:107.100002px;}
.fsf{font-size:108.031307px;}
.fs18{font-size:108.652176px;}
.fs1f{font-size:108.890972px;}
.fs15{font-size:116.723481px;}
.fs1a{font-size:119.397996px;}
.fs1b{font-size:120.448698px;}
.fs4{font-size:124.173916px;}
.fsc{font-size:128.830438px;}
.fs10{font-size:135.039133px;}
.fs20{font-size:136.113715px;}
.fs8{font-size:143.277595px;}
.fs16{font-size:145.904351px;}
.fs1c{font-size:150.560873px;}
.fs5{font-size:155.217395px;}
.fs2{font-size:173.127094px;}
.fs3{font-size:214.916393px;}
.fs1{font-size:382.073587px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.000000px;}
.y16{bottom:17.924850px;}
.y24{bottom:17.951250px;}
.y7e{bottom:18.093600px;}
.y37{bottom:18.106800px;}
.y29{bottom:18.135900px;}
.y1f{bottom:18.262350px;}
.y62{bottom:18.278250px;}
.y7c{bottom:18.346800px;}
.y3b{bottom:18.375750px;}
.y55{bottom:18.404700px;}
.y14{bottom:18.462750px;}
.y59{bottom:18.504900px;}
.y57{bottom:18.518100px;}
.y43{bottom:18.531300px;}
.y22{bottom:18.602400px;}
.y73{bottom:18.615600px;}
.y1c{bottom:18.631500px;}
.y31{bottom:18.984750px;}
.y41{bottom:19.042650px;}
.y39{bottom:19.084800px;}
.y5b{bottom:19.156050px;}
.y50{bottom:19.240350px;}
.y2e{bottom:19.295850px;}
.y19{bottom:19.308900px;}
.y79{bottom:19.324800px;}
.y1{bottom:37.500000px;}
.y45{bottom:46.500000px;}
.y1a{bottom:51.000000px;}
.y52{bottom:57.000000px;}
.y71{bottom:63.000000px;}
.y1d{bottom:76.500000px;}
.y3f{bottom:81.000000px;}
.y6f{bottom:82.500000px;}
.y7a{bottom:87.000000px;}
.y2c{bottom:88.500000px;}
.y20{bottom:93.000000px;}
.y5d{bottom:94.500000px;}
.y67{bottom:96.000000px;}
.y17{bottom:106.500000px;}
.y70{bottom:118.500000px;}
.y35{bottom:123.000000px;}
.y6e{bottom:132.000000px;}
.y3e{bottom:135.000000px;}
.y12{bottom:136.500000px;}
.y2b{bottom:138.000000px;}
.y44{bottom:139.500000px;}
.y53{bottom:144.000000px;}
.y66{bottom:145.500000px;}
.y5c{bottom:147.000000px;}
.y60{bottom:148.500000px;}
.y51{bottom:151.500000px;}
.y6c{bottom:156.000000px;}
.y75{bottom:157.500000px;}
.y34{bottom:159.000000px;}
.y77{bottom:171.000000px;}
.y11{bottom:172.500000px;}
.y6d{bottom:177.000000px;}
.y2a{bottom:181.500000px;}
.y65{bottom:186.000000px;}
.y64{bottom:189.000000px;}
.y5f{bottom:192.000000px;}
.y69{bottom:193.500000px;}
.y33{bottom:195.000000px;}
.y27{bottom:199.500000px;}
.y6b{bottom:202.500000px;}
.y76{bottom:210.000000px;}
.y18{bottom:211.691100px;}
.y10{bottom:214.500000px;}
.y7b{bottom:220.153200px;}
.y72{bottom:224.384400px;}
.y32{bottom:226.500000px;}
.y2f{bottom:228.000000px;}
.y5e{bottom:231.000000px;}
.y74{bottom:232.500000px;}
.y26{bottom:237.000000px;}
.y4a{bottom:241.500000px;}
.y4e{bottom:243.000000px;}
.y68{bottom:246.000000px;}
.y6a{bottom:250.500000px;}
.y49{bottom:268.500000px;}
.y25{bottom:274.500000px;}
.y4d{bottom:277.500000px;}
.y5{bottom:280.500000px;}
.y63{bottom:283.500000px;}
.y48{bottom:297.000000px;}
.y4c{bottom:309.000000px;}
.y1e{bottom:313.237650px;}
.y42{bottom:317.468700px;}
.y47{bottom:324.000000px;}
.y36{bottom:334.393200px;}
.yf{bottom:336.000000px;}
.y3a{bottom:338.624250px;}
.y4b{bottom:345.000000px;}
.y46{bottom:348.000000px;}
.y23{bottom:355.548750px;}
.y2d{bottom:376.704150px;}
.y21{bottom:389.397600px;}
.ye{bottom:390.000000px;}
.y3d{bottom:418.500000px;}
.y30{bottom:419.015250px;}
.y7{bottom:420.000000px;}
.yd{bottom:444.000000px;}
.y28{bottom:452.864100px;}
.y54{bottom:457.095300px;}
.y56{bottom:482.481900px;}
.y3c{bottom:490.500000px;}
.y6{bottom:492.000000px;}
.y78{bottom:495.175200px;}
.y7d{bottom:499.406400px;}
.yc{bottom:505.500000px;}
.y1b{bottom:507.868500px;}
.y4{bottom:550.500000px;}
.yb{bottom:561.000000px;}
.y4f{bottom:588.259650px;}
.y61{bottom:596.721750px;}
.y38{bottom:609.415200px;}
.ya{bottom:622.500000px;}
.y58{bottom:647.495100px;}
.y40{bottom:655.957350px;}
.y3{bottom:660.000000px;}
.y9{bottom:676.500000px;}
.y5a{bottom:681.343950px;}
.y15{bottom:685.575150px;}
.y13{bottom:694.037250px;}
.y8{bottom:763.500000px;}
.h11{height:53.236331px;}
.h13{height:58.027175px;}
.h12{height:59.236331px;}
.he{height:60.758405px;}
.h9{height:62.558595px;}
.h14{height:64.027175px;}
.h2{height:64.843956px;}
.h1{height:66.229110px;}
.hf{height:66.758405px;}
.hb{height:69.847828px;}
.h1f{height:71.996992px;}
.h1d{height:75.220737px;}
.h17{height:75.489132px;}
.h8{height:80.325002px;}
.h18{height:81.489132px;}
.h19{height:83.548497px;}
.h1a{height:89.548497px;}
.hd{height:90.622828px;}
.h1c{height:95.279350px;}
.hc{height:96.622828px;}
.h10{height:101.279350px;}
.h1e{height:102.085287px;}
.h15{height:103.428263px;}
.ha{height:107.458196px;}
.h16{height:109.428263px;}
.h7{height:110.413046px;}
.h1b{height:112.920655px;}
.h6{height:116.413046px;}
.h4{height:129.845321px;}
.h5{height:179.866551px;}
.h3{height:319.762758px;}
.h0{height:892.500000px;}
.w6{width:51.973740px;}
.w16{width:57.964695px;}
.wa{width:63.955875px;}
.w12{width:69.926475px;}
.w4{width:75.938010px;}
.w14{width:81.929205px;}
.wc{width:87.920385px;}
.w15{width:105.893700px;}
.w3{width:111.884655px;}
.wf{width:117.875835px;}
.w13{width:123.867015px;}
.wd{width:135.849165px;}
.w11{width:147.831300px;}
.wb{width:165.804600px;}
.w5{width:177.787050px;}
.we{width:213.733650px;}
.w7{width:225.715800px;}
.w8{width:327.564750px;}
.w10{width:363.642000px;}
.w9{width:405.448950px;}
.w1{width:429.806250px;}
.w2{width:1185.000000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:6.890400px;}
.x14{left:26.089800px;}
.x46{left:29.240850px;}
.x1f{left:31.589550px;}
.x36{left:35.691600px;}
.xf{left:37.554450px;}
.x3{left:39.000000px;}
.x3f{left:40.941450px;}
.x29{left:43.345800px;}
.x43{left:53.676900px;}
.xd{left:56.100900px;}
.x2f{left:58.459500px;}
.x38{left:61.882500px;}
.x2b{left:67.755600px;}
.x34{left:74.336250px;}
.x27{left:82.987200px;}
.x11{left:89.551500px;}
.x2d{left:106.516050px;}
.x16{left:112.379400px;}
.x18{left:113.388150px;}
.x7{left:129.000000px;}
.x8{left:135.000000px;}
.x3c{left:144.000000px;}
.xa{left:151.500000px;}
.x1d{left:160.500000px;}
.x20{left:162.000000px;}
.x1a{left:163.649400px;}
.x41{left:168.000000px;}
.x40{left:169.500000px;}
.x9{left:172.500000px;}
.x1{left:174.609600px;}
.xb{left:177.000000px;}
.x44{left:178.500000px;}
.x3d{left:180.000000px;}
.x33{left:181.523550px;}
.x30{left:183.000000px;}
.x4{left:184.500000px;}
.x24{left:186.000000px;}
.x3a{left:187.500000px;}
.x12{left:189.000000px;}
.x5{left:190.500000px;}
.x21{left:193.500000px;}
.x1c{left:203.218800px;}
.x31{left:217.518150px;}
.x1e{left:265.410450px;}
.x6{left:340.500000px;}
.x42{left:358.823100px;}
.x22{left:367.083000px;}
.x17{left:392.111850px;}
.x23{left:409.446450px;}
.x13{left:423.910200px;}
.x47{left:433.623750px;}
.x26{left:439.012800px;}
.x1b{left:446.281200px;}
.x25{left:493.784250px;}
.x19{left:523.350600px;}
.x15{left:544.620600px;}
.x2e{left:598.540500px;}
.x10{left:610.948500px;}
.x37{left:650.617500px;}
.xe{left:716.945550px;}
.x2c{left:745.483950px;}
.x2a{left:763.244400px;}
.x32{left:793.476450px;}
.x39{left:803.126250px;}
.x28{left:804.154200px;}
.x45{left:857.259150px;}
.xc{left:876.899100px;}
.x3e{left:913.058550px;}
.x3b{left:1023.416700px;}
.x35{left:1147.808400px;}
@media print{
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.038632pt;}
.ls8{letter-spacing:-0.027594pt;}
.ls10{letter-spacing:-0.015177pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009520pt;}
.ls7{letter-spacing:0.047600pt;}
.ls2{letter-spacing:0.076415pt;}
.ls0{letter-spacing:0.135848pt;}
.ls4{letter-spacing:9.106087pt;}
.lsf{letter-spacing:37.907030pt;}
.ls9{letter-spacing:39.900380pt;}
.ls12{letter-spacing:43.887079pt;}
.ls19{letter-spacing:43.996323pt;}
.ls5{letter-spacing:44.553754pt;}
.ls17{letter-spacing:47.476872pt;}
.ls16{letter-spacing:51.200479pt;}
.lse{letter-spacing:51.304117pt;}
.lsc{letter-spacing:52.323094pt;}
.lsa{letter-spacing:56.527208pt;}
.lsd{letter-spacing:59.187233pt;}
.ls11{letter-spacing:59.847230pt;}
.lsb{letter-spacing:61.173904pt;}
.ls15{letter-spacing:63.173932pt;}
.ls18{letter-spacing:64.052417pt;}
.ls3{letter-spacing:66.500633pt;}
.ls14{letter-spacing:81.885463pt;}
.ws0{word-spacing:-85.041090pt;}
.ws3{word-spacing:-47.835613pt;}
.ws2{word-spacing:-47.759198pt;}
.ws6{word-spacing:-34.492754pt;}
.ws7{word-spacing:-34.465160pt;}
.ws5{word-spacing:-23.847601pt;}
.ws4{word-spacing:-23.809521pt;}
.ws8{word-spacing:-18.955838pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-9.106087pt;}
._0{margin-left:-1.018863pt;}
._2{width:0.952000pt;}
._1{width:36.120812pt;}
._5{width:45.378668pt;}
._4{width:64.432465pt;}
.fs11{font-size:56.164817pt;}
.fs13{font-size:60.707248pt;}
.fsd{font-size:63.296858pt;}
.fs9{font-size:66.226088pt;}
.fs21{font-size:68.263814pt;}
.fs12{font-size:70.206022pt;}
.fs1d{font-size:71.320403pt;}
.fs14{font-size:75.884060pt;}
.fs6{font-size:76.160002pt;}
.fs17{font-size:77.263770pt;}
.fse{font-size:79.121072pt;}
.fs0{font-size:79.598664pt;}
.fsa{font-size:82.782611pt;}
.fs19{font-size:84.905242pt;}
.fs22{font-size:85.329768pt;}
.fs1e{font-size:89.150504pt;}
.fsb{font-size:91.612756pt;}
.fs7{font-size:95.200002pt;}
.fsf{font-size:96.027828pt;}
.fs18{font-size:96.579712pt;}
.fs1f{font-size:96.791975pt;}
.fs15{font-size:103.754205pt;}
.fs1a{font-size:106.131552pt;}
.fs1b{font-size:107.065510pt;}
.fs4{font-size:110.376814pt;}
.fsc{font-size:114.515945pt;}
.fs10{font-size:120.034785pt;}
.fs20{font-size:120.989969pt;}
.fs8{font-size:127.357862pt;}
.fs16{font-size:129.692757pt;}
.fs1c{font-size:133.831887pt;}
.fs5{font-size:137.971018pt;}
.fs2{font-size:153.890750pt;}
.fs3{font-size:191.036794pt;}
.fs1{font-size:339.620966pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.000000pt;}
.y16{bottom:15.933200pt;}
.y24{bottom:15.956667pt;}
.y7e{bottom:16.083200pt;}
.y37{bottom:16.094933pt;}
.y29{bottom:16.120800pt;}
.y1f{bottom:16.233200pt;}
.y62{bottom:16.247333pt;}
.y7c{bottom:16.308267pt;}
.y3b{bottom:16.334000pt;}
.y55{bottom:16.359733pt;}
.y14{bottom:16.411333pt;}
.y59{bottom:16.448800pt;}
.y57{bottom:16.460533pt;}
.y43{bottom:16.472267pt;}
.y22{bottom:16.535467pt;}
.y73{bottom:16.547200pt;}
.y1c{bottom:16.561333pt;}
.y31{bottom:16.875333pt;}
.y41{bottom:16.926800pt;}
.y39{bottom:16.964267pt;}
.y5b{bottom:17.027600pt;}
.y50{bottom:17.102533pt;}
.y2e{bottom:17.151867pt;}
.y19{bottom:17.163467pt;}
.y79{bottom:17.177600pt;}
.y1{bottom:33.333333pt;}
.y45{bottom:41.333333pt;}
.y1a{bottom:45.333333pt;}
.y52{bottom:50.666667pt;}
.y71{bottom:56.000000pt;}
.y1d{bottom:68.000000pt;}
.y3f{bottom:72.000000pt;}
.y6f{bottom:73.333333pt;}
.y7a{bottom:77.333333pt;}
.y2c{bottom:78.666667pt;}
.y20{bottom:82.666667pt;}
.y5d{bottom:84.000000pt;}
.y67{bottom:85.333333pt;}
.y17{bottom:94.666667pt;}
.y70{bottom:105.333333pt;}
.y35{bottom:109.333333pt;}
.y6e{bottom:117.333333pt;}
.y3e{bottom:120.000000pt;}
.y12{bottom:121.333333pt;}
.y2b{bottom:122.666667pt;}
.y44{bottom:124.000000pt;}
.y53{bottom:128.000000pt;}
.y66{bottom:129.333333pt;}
.y5c{bottom:130.666667pt;}
.y60{bottom:132.000000pt;}
.y51{bottom:134.666667pt;}
.y6c{bottom:138.666667pt;}
.y75{bottom:140.000000pt;}
.y34{bottom:141.333333pt;}
.y77{bottom:152.000000pt;}
.y11{bottom:153.333333pt;}
.y6d{bottom:157.333333pt;}
.y2a{bottom:161.333333pt;}
.y65{bottom:165.333333pt;}
.y64{bottom:168.000000pt;}
.y5f{bottom:170.666667pt;}
.y69{bottom:172.000000pt;}
.y33{bottom:173.333333pt;}
.y27{bottom:177.333333pt;}
.y6b{bottom:180.000000pt;}
.y76{bottom:186.666667pt;}
.y18{bottom:188.169867pt;}
.y10{bottom:190.666667pt;}
.y7b{bottom:195.691733pt;}
.y72{bottom:199.452800pt;}
.y32{bottom:201.333333pt;}
.y2f{bottom:202.666667pt;}
.y5e{bottom:205.333333pt;}
.y74{bottom:206.666667pt;}
.y26{bottom:210.666667pt;}
.y4a{bottom:214.666667pt;}
.y4e{bottom:216.000000pt;}
.y68{bottom:218.666667pt;}
.y6a{bottom:222.666667pt;}
.y49{bottom:238.666667pt;}
.y25{bottom:244.000000pt;}
.y4d{bottom:246.666667pt;}
.y5{bottom:249.333333pt;}
.y63{bottom:252.000000pt;}
.y48{bottom:264.000000pt;}
.y4c{bottom:274.666667pt;}
.y1e{bottom:278.433467pt;}
.y42{bottom:282.194400pt;}
.y47{bottom:288.000000pt;}
.y36{bottom:297.238400pt;}
.yf{bottom:298.666667pt;}
.y3a{bottom:300.999333pt;}
.y4b{bottom:306.666667pt;}
.y46{bottom:309.333333pt;}
.y23{bottom:316.043333pt;}
.y2d{bottom:334.848133pt;}
.y21{bottom:346.131200pt;}
.ye{bottom:346.666667pt;}
.y3d{bottom:372.000000pt;}
.y30{bottom:372.458000pt;}
.y7{bottom:373.333333pt;}
.yd{bottom:394.666667pt;}
.y28{bottom:402.545867pt;}
.y54{bottom:406.306933pt;}
.y56{bottom:428.872800pt;}
.y3c{bottom:436.000000pt;}
.y6{bottom:437.333333pt;}
.y78{bottom:440.155733pt;}
.y7d{bottom:443.916800pt;}
.yc{bottom:449.333333pt;}
.y1b{bottom:451.438667pt;}
.y4{bottom:489.333333pt;}
.yb{bottom:498.666667pt;}
.y4f{bottom:522.897467pt;}
.y61{bottom:530.419333pt;}
.y38{bottom:541.702400pt;}
.ya{bottom:553.333333pt;}
.y58{bottom:575.551200pt;}
.y40{bottom:583.073200pt;}
.y3{bottom:586.666667pt;}
.y9{bottom:601.333333pt;}
.y5a{bottom:605.639067pt;}
.y15{bottom:609.400133pt;}
.y13{bottom:616.922000pt;}
.y8{bottom:678.666667pt;}
.h11{height:47.321183pt;}
.h13{height:51.579711pt;}
.h12{height:52.654516pt;}
.he{height:54.007471pt;}
.h9{height:55.607640pt;}
.h14{height:56.913045pt;}
.h2{height:57.639072pt;}
.h1{height:58.870320pt;}
.hf{height:59.340804pt;}
.hb{height:62.086958pt;}
.h1f{height:63.997326pt;}
.h1d{height:66.862878pt;}
.h17{height:67.101451pt;}
.h8{height:71.400002pt;}
.h18{height:72.434784pt;}
.h19{height:74.265331pt;}
.h1a{height:79.598664pt;}
.hd{height:80.553625pt;}
.h1c{height:84.692756pt;}
.hc{height:85.886958pt;}
.h10{height:90.026089pt;}
.h1e{height:90.742477pt;}
.h15{height:91.936234pt;}
.ha{height:95.518397pt;}
.h16{height:97.269567pt;}
.h7{height:98.144930pt;}
.h1b{height:100.373915pt;}
.h6{height:103.478263pt;}
.h4{height:115.418063pt;}
.h5{height:159.881379pt;}
.h3{height:284.233563pt;}
.h0{height:793.333333pt;}
.w6{width:46.198880pt;}
.w16{width:51.524173pt;}
.wa{width:56.849667pt;}
.w12{width:62.156867pt;}
.w4{width:67.500453pt;}
.w14{width:72.825960pt;}
.wc{width:78.151453pt;}
.w15{width:94.127733pt;}
.w3{width:99.453027pt;}
.wf{width:104.778520pt;}
.w13{width:110.104013pt;}
.wd{width:120.754813pt;}
.w11{width:131.405600pt;}
.wb{width:147.381867pt;}
.w5{width:158.032933pt;}
.we{width:189.985467pt;}
.w7{width:200.636267pt;}
.w8{width:291.168667pt;}
.w10{width:323.237333pt;}
.w9{width:360.399067pt;}
.w1{width:382.050000pt;}
.w2{width:1053.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:6.124800pt;}
.x14{left:23.190933pt;}
.x46{left:25.991867pt;}
.x1f{left:28.079600pt;}
.x36{left:31.725867pt;}
.xf{left:33.381733pt;}
.x3{left:34.666667pt;}
.x3f{left:36.392400pt;}
.x29{left:38.529600pt;}
.x43{left:47.712800pt;}
.xd{left:49.867467pt;}
.x2f{left:51.964000pt;}
.x38{left:55.006667pt;}
.x2b{left:60.227200pt;}
.x34{left:66.076667pt;}
.x27{left:73.766400pt;}
.x11{left:79.601333pt;}
.x2d{left:94.680933pt;}
.x16{left:99.892800pt;}
.x18{left:100.789467pt;}
.x7{left:114.666667pt;}
.x8{left:120.000000pt;}
.x3c{left:128.000000pt;}
.xa{left:134.666667pt;}
.x1d{left:142.666667pt;}
.x20{left:144.000000pt;}
.x1a{left:145.466133pt;}
.x41{left:149.333333pt;}
.x40{left:150.666667pt;}
.x9{left:153.333333pt;}
.x1{left:155.208533pt;}
.xb{left:157.333333pt;}
.x44{left:158.666667pt;}
.x3d{left:160.000000pt;}
.x33{left:161.354267pt;}
.x30{left:162.666667pt;}
.x4{left:164.000000pt;}
.x24{left:165.333333pt;}
.x3a{left:166.666667pt;}
.x12{left:168.000000pt;}
.x5{left:169.333333pt;}
.x21{left:172.000000pt;}
.x1c{left:180.638933pt;}
.x31{left:193.349467pt;}
.x1e{left:235.920400pt;}
.x6{left:302.666667pt;}
.x42{left:318.953867pt;}
.x22{left:326.296000pt;}
.x17{left:348.543867pt;}
.x23{left:363.952400pt;}
.x13{left:376.809067pt;}
.x47{left:385.443333pt;}
.x26{left:390.233600pt;}
.x1b{left:396.694400pt;}
.x25{left:438.919333pt;}
.x19{left:465.200533pt;}
.x15{left:484.107200pt;}
.x2e{left:532.036000pt;}
.x10{left:543.065333pt;}
.x37{left:578.326667pt;}
.xe{left:637.284933pt;}
.x2c{left:662.652400pt;}
.x2a{left:678.439467pt;}
.x32{left:705.312400pt;}
.x39{left:713.890000pt;}
.x28{left:714.803733pt;}
.x45{left:762.008133pt;}
.xc{left:779.465867pt;}
.x3e{left:811.607600pt;}
.x3b{left:909.703733pt;}
.x35{left:1020.274133pt;}
}




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