
    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_1a0108a23c15612d59d5d516.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a965b6c2701525d9c687efb5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_b85e449fb7b72106eea18fb2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.977000;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_121f1c7e32e328301cd98ae3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854000;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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:14.942100px;}
.ls3{letter-spacing:19.574383px;}
.ls5{letter-spacing:23.072383px;}
.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;}
}
.ws54{word-spacing:-19.941274px;}
.ws5c{word-spacing:-14.920027px;}
.ws1b{word-spacing:-11.955150px;}
.ws5f{word-spacing:-2.988780px;}
.ws5e{word-spacing:-2.570351px;}
.ws48{word-spacing:-1.853044px;}
.ws15{word-spacing:-1.374839px;}
.ws43{word-spacing:-1.315063px;}
.ws47{word-spacing:-1.255288px;}
.ws3d{word-spacing:-1.075961px;}
.ws36{word-spacing:-0.896634px;}
.ws1a{word-spacing:-0.836858px;}
.ws13{word-spacing:-0.777083px;}
.ws1f{word-spacing:-0.657532px;}
.ws1e{word-spacing:-0.597756px;}
.ws6{word-spacing:-0.484186px;}
.ws3f{word-spacing:-0.478205px;}
.wsf{word-spacing:-0.376589px;}
.ws45{word-spacing:-0.298878px;}
.ws5{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws34{word-spacing:0.059776px;}
.ws4f{word-spacing:0.179327px;}
.ws4a{word-spacing:0.239102px;}
.ws50{word-spacing:0.298878px;}
.ws33{word-spacing:0.358654px;}
.ws40{word-spacing:0.418429px;}
.ws1{word-spacing:0.430387px;}
.ws42{word-spacing:0.478205px;}
.ws3{word-spacing:0.484186px;}
.ws32{word-spacing:0.537980px;}
.ws10{word-spacing:0.591782px;}
.ws39{word-spacing:0.657532px;}
.ws12{word-spacing:0.777083px;}
.ws49{word-spacing:0.836858px;}
.ws2d{word-spacing:0.956410px;}
.ws44{word-spacing:1.075961px;}
.ws17{word-spacing:1.374839px;}
.ws4b{word-spacing:1.494390px;}
.ws2b{word-spacing:1.554166px;}
.ws28{word-spacing:1.853044px;}
.wsd{word-spacing:1.936742px;}
.ws38{word-spacing:1.972595px;}
.ws3c{word-spacing:2.032370px;}
.ws3b{word-spacing:2.092146px;}
.ws9{word-spacing:2.098138px;}
.ws62{word-spacing:2.151922px;}
.ws2f{word-spacing:2.271473px;}
.ws3a{word-spacing:2.391024px;}
.ws2e{word-spacing:2.510575px;}
.wsb{word-spacing:2.582323px;}
.ws41{word-spacing:2.630126px;}
.ws4{word-spacing:2.851315px;}
.ws4e{word-spacing:2.929004px;}
.ws2{word-spacing:3.066509px;}
.ws2c{word-spacing:3.108331px;}
.ws14{word-spacing:3.168107px;}
.ws24{word-spacing:3.227882px;}
.wse{word-spacing:3.281702px;}
.ws3e{word-spacing:3.287658px;}
.ws26{word-spacing:3.407209px;}
.ws4d{word-spacing:3.466985px;}
.ws25{word-spacing:3.586536px;}
.ws1c{word-spacing:3.646312px;}
.ws51{word-spacing:3.706087px;}
.ws21{word-spacing:3.885414px;}
.ws35{word-spacing:3.945190px;}
.ws18{word-spacing:4.004965px;}
.wsc{word-spacing:4.034880px;}
.ws30{word-spacing:4.064741px;}
.ws7{word-spacing:4.142477px;}
.ws4c{word-spacing:4.303843px;}
.ws53{word-spacing:4.602721px;}
.ws2a{word-spacing:4.662497px;}
.ws1d{word-spacing:4.782048px;}
.ws56{word-spacing:4.841824px;}
.ws31{word-spacing:4.901599px;}
.ws20{word-spacing:4.961375px;}
.ws37{word-spacing:5.080926px;}
.wsa{word-spacing:5.164646px;}
.ws57{word-spacing:5.379804px;}
.ws8{word-spacing:5.379840px;}
.ws29{word-spacing:5.618906px;}
.ws46{word-spacing:5.977560px;}
.ws27{word-spacing:6.156887px;}
.ws23{word-spacing:6.993745px;}
.ws5a{word-spacing:7.591501px;}
.ws5b{word-spacing:8.129482px;}
.ws22{word-spacing:8.667462px;}
.ws5d{word-spacing:8.906564px;}
.ws60{word-spacing:11.895344px;}
.ws11{word-spacing:15.924326px;}
.ws61{word-spacing:17.036046px;}
.ws55{word-spacing:19.486846px;}
.ws58{word-spacing:20.263928px;}
.ws59{word-spacing:22.475626px;}
.ws52{word-spacing:27.720959px;}
._1{margin-left:-7.962163px;}
._f{margin-left:-6.013368px;}
._19{margin-left:-4.997203px;}
._2{margin-left:-3.981082px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.075968px;}
._16{width:2.566092px;}
._17{width:4.418434px;}
._18{width:5.803193px;}
._12{width:13.036946px;}
._4{width:14.902144px;}
._6{width:16.623706px;}
._9{width:17.807270px;}
._7{width:18.829440px;}
._b{width:20.622582px;}
._a{width:22.439768px;}
._d{width:23.671138px;}
._13{width:24.806874px;}
._5{width:25.984627px;}
._e{width:28.034785px;}
._11{width:30.067001px;}
._14{width:31.621292px;}
._8{width:32.709427px;}
._10{width:36.487014px;}
._c{width:44.831700px;}
._15{width:59.775600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:44.233800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y3f{bottom:206.628000px;}
.y28{bottom:210.967500px;}
.y6c{bottom:224.560500px;}
.y3e{bottom:224.562000px;}
.y27{bottom:225.646500px;}
.y26{bottom:240.324000px;}
.y3d{bottom:242.494500px;}
.y86{bottom:248.170500px;}
.y25{bottom:255.001500px;}
.y3c{bottom:260.427000px;}
.y85{bottom:266.103000px;}
.y3b{bottom:278.359500px;}
.y24{bottom:278.553000px;}
.y84{bottom:284.035500px;}
.y3a{bottom:296.292000px;}
.y23{bottom:296.485500px;}
.y83{bottom:301.968000px;}
.y39{bottom:314.224500px;}
.y22{bottom:314.418000px;}
.y82{bottom:325.576500px;}
.y6b{bottom:332.157000px;}
.y38{bottom:332.158500px;}
.y21{bottom:332.352000px;}
.y81{bottom:343.509000px;}
.y37{bottom:350.091000px;}
.y20{bottom:350.284500px;}
.y80{bottom:361.443000px;}
.y36{bottom:368.023500px;}
.y1f{bottom:368.217000px;}
.y59{bottom:372.315000px;}
.y7f{bottom:379.375500px;}
.y6a{bottom:385.956000px;}
.y1e{bottom:386.149500px;}
.y7e{bottom:397.308000px;}
.y69{bottom:403.888500px;}
.y1d{bottom:404.082000px;}
.y35{bottom:405.333000px;}
.y7d{bottom:415.240500px;}
.y1c{bottom:422.014500px;}
.y68{bottom:429.294000px;}
.y7c{bottom:438.849000px;}
.y1b{bottom:439.948500px;}
.y7b{bottom:456.781500px;}
.y1a{bottom:465.549000px;}
.y67{bottom:468.981000px;}
.y7a{bottom:480.390000px;}
.y66{bottom:486.915000px;}
.y79{bottom:498.324000px;}
.y65{bottom:504.847500px;}
.y64{bottom:522.780000px;}
.y78{bottom:523.728000px;}
.y19{bottom:533.626500px;}
.y63{bottom:540.712500px;}
.y18{bottom:550.065000px;}
.y34{bottom:550.906500px;}
.y77{bottom:552.121500px;}
.y62{bottom:558.645000px;}
.y17{bottom:566.502000px;}
.y61{bottom:576.577500px;}
.y16{bottom:582.940500px;}
.y76{bottom:592.312500px;}
.y60{bottom:594.511500px;}
.y58{bottom:599.203500px;}
.y15{bottom:599.379000px;}
.y75{bottom:610.245000px;}
.y5f{bottom:612.444000px;}
.y14{bottom:615.817500px;}
.y57{bottom:617.136000px;}
.y74{bottom:628.177500px;}
.y5e{bottom:630.376500px;}
.y13{bottom:632.256000px;}
.y56{bottom:635.068500px;}
.y73{bottom:646.111500px;}
.y12{bottom:648.694500px;}
.y55{bottom:653.001000px;}
.y72{bottom:664.044000px;}
.y11{bottom:665.133000px;}
.y54{bottom:670.935000px;}
.y5d{bottom:678.711000px;}
.y10{bottom:681.571500px;}
.y71{bottom:681.976500px;}
.y53{bottom:688.867500px;}
.y5c{bottom:696.643500px;}
.yf{bottom:698.010000px;}
.y70{bottom:699.909000px;}
.y52{bottom:706.800000px;}
.ye{bottom:714.448500px;}
.y6f{bottom:717.841500px;}
.y51{bottom:724.732500px;}
.yd{bottom:730.885500px;}
.y50{bottom:742.665000px;}
.yc{bottom:747.324000px;}
.y4f{bottom:760.597500px;}
.yb{bottom:763.762500px;}
.y6e{bottom:766.846500px;}
.y33{bottom:769.816500px;}
.y4e{bottom:778.531500px;}
.ya{bottom:780.201000px;}
.y6d{bottom:784.780500px;}
.y4d{bottom:796.464000px;}
.y9{bottom:796.639500px;}
.y8{bottom:813.078000px;}
.y4c{bottom:814.396500px;}
.y4b{bottom:840.874500px;}
.y7{bottom:845.248500px;}
.y5b{bottom:877.684500px;}
.y4a{bottom:887.337000px;}
.y5a{bottom:895.617000px;}
.y6{bottom:905.262000px;}
.y49{bottom:905.271000px;}
.y5{bottom:923.194500px;}
.y48{bottom:923.203500px;}
.y32{bottom:933.664500px;}
.y4{bottom:941.127000px;}
.y47{bottom:941.136000px;}
.y31{bottom:951.597000px;}
.y3{bottom:959.059500px;}
.y46{bottom:959.068500px;}
.y30{bottom:969.529500px;}
.y45{bottom:977.001000px;}
.y2f{bottom:987.462000px;}
.y44{bottom:994.933500px;}
.y2e{bottom:1005.394500px;}
.y43{bottom:1012.867500px;}
.y2{bottom:1017.859500px;}
.y2d{bottom:1023.328500px;}
.y42{bottom:1030.800000px;}
.y2c{bottom:1041.261000px;}
.y41{bottom:1048.732500px;}
.y1{bottom:1050.736500px;}
.y2b{bottom:1059.193500px;}
.y40{bottom:1066.665000px;}
.y2a{bottom:1084.597500px;}
.y29{bottom:1136.902500px;}
.h8{height:24.675533px;}
.h4{height:37.013299px;}
.h5{height:37.228493px;}
.hb{height:39.930101px;}
.h7{height:41.125613px;}
.ha{height:41.364715px;}
.h9{height:45.250129px;}
.h3{height:52.134854px;}
.h6{height:54.300518px;}
.h2{height:71.065171px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:178.954500px;}
.xd{left:181.336500px;}
.xa{left:194.446500px;}
.x9{left:200.572500px;}
.xf{left:202.930500px;}
.x10{left:210.525000px;}
.x8{left:215.517000px;}
.x7{left:235.692000px;}
.xb{left:261.427500px;}
.xc{left:302.209500px;}
.x3{left:306.627000px;}
.x2{left:361.524000px;}
.x4{left:426.661500px;}
.x6{left:473.895000px;}
.x5{left:545.190000px;}
.xe{left:808.480500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:13.281867pt;}
.ls3{letter-spacing:17.399452pt;}
.ls5{letter-spacing:20.508785pt;}
.ws54{word-spacing:-17.725577pt;}
.ws5c{word-spacing:-13.262246pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws5f{word-spacing:-2.656693pt;}
.ws5e{word-spacing:-2.284756pt;}
.ws48{word-spacing:-1.647150pt;}
.ws15{word-spacing:-1.222079pt;}
.ws43{word-spacing:-1.168945pt;}
.ws47{word-spacing:-1.115811pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws36{word-spacing:-0.797008pt;}
.ws1a{word-spacing:-0.743874pt;}
.ws13{word-spacing:-0.690740pt;}
.ws1f{word-spacing:-0.584473pt;}
.ws1e{word-spacing:-0.531339pt;}
.ws6{word-spacing:-0.430387pt;}
.ws3f{word-spacing:-0.425071pt;}
.wsf{word-spacing:-0.334746pt;}
.ws45{word-spacing:-0.265669pt;}
.ws5{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws34{word-spacing:0.053134pt;}
.ws4f{word-spacing:0.159402pt;}
.ws4a{word-spacing:0.212535pt;}
.ws50{word-spacing:0.265669pt;}
.ws33{word-spacing:0.318803pt;}
.ws40{word-spacing:0.371937pt;}
.ws1{word-spacing:0.382566pt;}
.ws42{word-spacing:0.425071pt;}
.ws3{word-spacing:0.430387pt;}
.ws32{word-spacing:0.478205pt;}
.ws10{word-spacing:0.526029pt;}
.ws39{word-spacing:0.584473pt;}
.ws12{word-spacing:0.690740pt;}
.ws49{word-spacing:0.743874pt;}
.ws2d{word-spacing:0.850142pt;}
.ws44{word-spacing:0.956410pt;}
.ws17{word-spacing:1.222079pt;}
.ws4b{word-spacing:1.328347pt;}
.ws2b{word-spacing:1.381481pt;}
.ws28{word-spacing:1.647150pt;}
.wsd{word-spacing:1.721549pt;}
.ws38{word-spacing:1.753418pt;}
.ws3c{word-spacing:1.806551pt;}
.ws3b{word-spacing:1.859685pt;}
.ws9{word-spacing:1.865011pt;}
.ws62{word-spacing:1.912819pt;}
.ws2f{word-spacing:2.019087pt;}
.ws3a{word-spacing:2.125355pt;}
.ws2e{word-spacing:2.231622pt;}
.wsb{word-spacing:2.295398pt;}
.ws41{word-spacing:2.337890pt;}
.ws4{word-spacing:2.534502pt;}
.ws4e{word-spacing:2.603559pt;}
.ws2{word-spacing:2.725786pt;}
.ws2c{word-spacing:2.762961pt;}
.ws14{word-spacing:2.816095pt;}
.ws24{word-spacing:2.869229pt;}
.wse{word-spacing:2.917069pt;}
.ws3e{word-spacing:2.922363pt;}
.ws26{word-spacing:3.028630pt;}
.ws4d{word-spacing:3.081764pt;}
.ws25{word-spacing:3.188032pt;}
.ws1c{word-spacing:3.241166pt;}
.ws51{word-spacing:3.294300pt;}
.ws21{word-spacing:3.453701pt;}
.ws35{word-spacing:3.506835pt;}
.ws18{word-spacing:3.559969pt;}
.wsc{word-spacing:3.586560pt;}
.ws30{word-spacing:3.613103pt;}
.ws7{word-spacing:3.682202pt;}
.ws4c{word-spacing:3.825638pt;}
.ws53{word-spacing:4.091308pt;}
.ws2a{word-spacing:4.144442pt;}
.ws1d{word-spacing:4.250709pt;}
.ws56{word-spacing:4.303843pt;}
.ws31{word-spacing:4.356977pt;}
.ws20{word-spacing:4.410111pt;}
.ws37{word-spacing:4.516379pt;}
.wsa{word-spacing:4.590797pt;}
.ws57{word-spacing:4.782048pt;}
.ws8{word-spacing:4.782080pt;}
.ws29{word-spacing:4.994583pt;}
.ws46{word-spacing:5.313387pt;}
.ws27{word-spacing:5.472788pt;}
.ws23{word-spacing:6.216662pt;}
.ws5a{word-spacing:6.748001pt;}
.ws5b{word-spacing:7.226206pt;}
.ws22{word-spacing:7.704411pt;}
.ws5d{word-spacing:7.916946pt;}
.ws60{word-spacing:10.573639pt;}
.ws11{word-spacing:14.154957pt;}
.ws61{word-spacing:15.143152pt;}
.ws55{word-spacing:17.321641pt;}
.ws58{word-spacing:18.012381pt;}
.ws59{word-spacing:19.978334pt;}
.ws52{word-spacing:24.640852pt;}
._1{margin-left:-7.077478pt;}
._f{margin-left:-5.345216pt;}
._19{margin-left:-4.441958pt;}
._2{margin-left:-3.538739pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-0.956416pt;}
._16{width:2.280971pt;}
._17{width:3.927497pt;}
._18{width:5.158394pt;}
._12{width:11.588397pt;}
._4{width:13.246350pt;}
._6{width:14.776627pt;}
._9{width:15.828685pt;}
._7{width:16.737280pt;}
._b{width:18.331184pt;}
._a{width:19.946461pt;}
._d{width:21.041011pt;}
._13{width:22.050555pt;}
._5{width:23.097446pt;}
._e{width:24.919809pt;}
._11{width:26.726223pt;}
._14{width:28.107815pt;}
._8{width:29.075046pt;}
._10{width:32.432901pt;}
._c{width:39.850400pt;}
._15{width:53.133867pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:39.318933pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:183.669333pt;}
.y28{bottom:187.526667pt;}
.y6c{bottom:199.609333pt;}
.y3e{bottom:199.610667pt;}
.y27{bottom:200.574667pt;}
.y26{bottom:213.621333pt;}
.y3d{bottom:215.550667pt;}
.y86{bottom:220.596000pt;}
.y25{bottom:226.668000pt;}
.y3c{bottom:231.490667pt;}
.y85{bottom:236.536000pt;}
.y3b{bottom:247.430667pt;}
.y24{bottom:247.602667pt;}
.y84{bottom:252.476000pt;}
.y3a{bottom:263.370667pt;}
.y23{bottom:263.542667pt;}
.y83{bottom:268.416000pt;}
.y39{bottom:279.310667pt;}
.y22{bottom:279.482667pt;}
.y82{bottom:289.401333pt;}
.y6b{bottom:295.250667pt;}
.y38{bottom:295.252000pt;}
.y21{bottom:295.424000pt;}
.y81{bottom:305.341333pt;}
.y37{bottom:311.192000pt;}
.y20{bottom:311.364000pt;}
.y80{bottom:321.282667pt;}
.y36{bottom:327.132000pt;}
.y1f{bottom:327.304000pt;}
.y59{bottom:330.946667pt;}
.y7f{bottom:337.222667pt;}
.y6a{bottom:343.072000pt;}
.y1e{bottom:343.244000pt;}
.y7e{bottom:353.162667pt;}
.y69{bottom:359.012000pt;}
.y1d{bottom:359.184000pt;}
.y35{bottom:360.296000pt;}
.y7d{bottom:369.102667pt;}
.y1c{bottom:375.124000pt;}
.y68{bottom:381.594667pt;}
.y7c{bottom:390.088000pt;}
.y1b{bottom:391.065333pt;}
.y7b{bottom:406.028000pt;}
.y1a{bottom:413.821333pt;}
.y67{bottom:416.872000pt;}
.y7a{bottom:427.013333pt;}
.y66{bottom:432.813333pt;}
.y79{bottom:442.954667pt;}
.y65{bottom:448.753333pt;}
.y64{bottom:464.693333pt;}
.y78{bottom:465.536000pt;}
.y19{bottom:474.334667pt;}
.y63{bottom:480.633333pt;}
.y18{bottom:488.946667pt;}
.y34{bottom:489.694667pt;}
.y77{bottom:490.774667pt;}
.y62{bottom:496.573333pt;}
.y17{bottom:503.557333pt;}
.y61{bottom:512.513333pt;}
.y16{bottom:518.169333pt;}
.y76{bottom:526.500000pt;}
.y60{bottom:528.454667pt;}
.y58{bottom:532.625333pt;}
.y15{bottom:532.781333pt;}
.y75{bottom:542.440000pt;}
.y5f{bottom:544.394667pt;}
.y14{bottom:547.393333pt;}
.y57{bottom:548.565333pt;}
.y74{bottom:558.380000pt;}
.y5e{bottom:560.334667pt;}
.y13{bottom:562.005333pt;}
.y56{bottom:564.505333pt;}
.y73{bottom:574.321333pt;}
.y12{bottom:576.617333pt;}
.y55{bottom:580.445333pt;}
.y72{bottom:590.261333pt;}
.y11{bottom:591.229333pt;}
.y54{bottom:596.386667pt;}
.y5d{bottom:603.298667pt;}
.y10{bottom:605.841333pt;}
.y71{bottom:606.201333pt;}
.y53{bottom:612.326667pt;}
.y5c{bottom:619.238667pt;}
.yf{bottom:620.453333pt;}
.y70{bottom:622.141333pt;}
.y52{bottom:628.266667pt;}
.ye{bottom:635.065333pt;}
.y6f{bottom:638.081333pt;}
.y51{bottom:644.206667pt;}
.yd{bottom:649.676000pt;}
.y50{bottom:660.146667pt;}
.yc{bottom:664.288000pt;}
.y4f{bottom:676.086667pt;}
.yb{bottom:678.900000pt;}
.y6e{bottom:681.641333pt;}
.y33{bottom:684.281333pt;}
.y4e{bottom:692.028000pt;}
.ya{bottom:693.512000pt;}
.y6d{bottom:697.582667pt;}
.y4d{bottom:707.968000pt;}
.y9{bottom:708.124000pt;}
.y8{bottom:722.736000pt;}
.y4c{bottom:723.908000pt;}
.y4b{bottom:747.444000pt;}
.y7{bottom:751.332000pt;}
.y5b{bottom:780.164000pt;}
.y4a{bottom:788.744000pt;}
.y5a{bottom:796.104000pt;}
.y6{bottom:804.677333pt;}
.y49{bottom:804.685333pt;}
.y5{bottom:820.617333pt;}
.y48{bottom:820.625333pt;}
.y32{bottom:829.924000pt;}
.y4{bottom:836.557333pt;}
.y47{bottom:836.565333pt;}
.y31{bottom:845.864000pt;}
.y3{bottom:852.497333pt;}
.y46{bottom:852.505333pt;}
.y30{bottom:861.804000pt;}
.y45{bottom:868.445333pt;}
.y2f{bottom:877.744000pt;}
.y44{bottom:884.385333pt;}
.y2e{bottom:893.684000pt;}
.y43{bottom:900.326667pt;}
.y2{bottom:904.764000pt;}
.y2d{bottom:909.625333pt;}
.y42{bottom:916.266667pt;}
.y2c{bottom:925.565333pt;}
.y41{bottom:932.206667pt;}
.y1{bottom:933.988000pt;}
.y2b{bottom:941.505333pt;}
.y40{bottom:948.146667pt;}
.y2a{bottom:964.086667pt;}
.y29{bottom:1010.580000pt;}
.h8{height:21.933807pt;}
.h4{height:32.900710pt;}
.h5{height:33.091994pt;}
.hb{height:35.493423pt;}
.h7{height:36.556100pt;}
.ha{height:36.768636pt;}
.h9{height:40.222337pt;}
.h3{height:46.342093pt;}
.h6{height:48.267127pt;}
.h2{height:63.169041pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:159.070667pt;}
.xd{left:161.188000pt;}
.xa{left:172.841333pt;}
.x9{left:178.286667pt;}
.xf{left:180.382667pt;}
.x10{left:187.133333pt;}
.x8{left:191.570667pt;}
.x7{left:209.504000pt;}
.xb{left:232.380000pt;}
.xc{left:268.630667pt;}
.x3{left:272.557333pt;}
.x2{left:321.354667pt;}
.x4{left:379.254667pt;}
.x6{left:421.240000pt;}
.x5{left:484.613333pt;}
.xe{left:718.649333pt;}
}




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