
    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_542399196b9a5d6c97ad90ce.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_6365da4e07b895183e673961.woff')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_9c41701a4ee9364052b54e4d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_5940cc7237e027cc741ffe1f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_d936fda2ee031080a712900c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_0549407b747b1d2dea4c0354.woff')format("woff");}.ff6{font-family:ff6;line-height:0.707000;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:ff7;src:url('chunks/assets/font_8f5a23ab89b71bd79c44120f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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:ff8;src:url('chunks/assets/font_9d5b3968ce75bd1e2085ca7b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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:ff9;src:url('chunks/assets/font_8b48f70457a73ff7fcf808d7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.725000;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:ffa;src:url('chunks/assets/font_1fafa471cd188d7eab5d144f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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:ffb;src:url('chunks/assets/font_cf075d8ab05a1a37be2e6b7a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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:ffc;src:url('chunks/assets/font_0a10ac16aab6229362b2e4d8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.628000;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:ffd;src:url('chunks/assets/font_80de7f1a7e59ef2645c6dd0b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.383000;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:ffe;src:url('chunks/assets/font_92303a783d01d85d6d82f6c7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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);}
.v1{vertical-align:-18.594000px;}
.v2{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:29.616000px;}
.v4{vertical-align:48.528000px;}
.v3{vertical-align:68.142000px;}
.ls17{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.001139px;}
.ls18{letter-spacing:0.001165px;}
.ls7{letter-spacing:0.001473px;}
.ls5{letter-spacing:0.002759px;}
.ls24{letter-spacing:0.003056px;}
.ls1{letter-spacing:0.004332px;}
.lse{letter-spacing:0.004669px;}
.ls14{letter-spacing:0.451809px;}
.lsf{letter-spacing:0.586737px;}
.lsd{letter-spacing:1.711622px;}
.ls13{letter-spacing:2.570450px;}
.ls10{letter-spacing:2.576450px;}
.ls4{letter-spacing:2.984915px;}
.ls19{letter-spacing:2.989739px;}
.ls3{letter-spacing:2.990915px;}
.ls8{letter-spacing:3.972993px;}
.ls9{letter-spacing:4.205226px;}
.ls1a{letter-spacing:7.174404px;}
.ls1c{letter-spacing:9.756440px;}
.ls1b{letter-spacing:11.953165px;}
.lsc{letter-spacing:15.851724px;}
.lsa{letter-spacing:15.935073px;}
.ls25{letter-spacing:15.935518px;}
.ls23{letter-spacing:15.941073px;}
.ls22{letter-spacing:15.941299px;}
.lsb{letter-spacing:15.941518px;}
.ls21{letter-spacing:19.921473px;}
.ls1f{letter-spacing:19.924800px;}
.ls2a{letter-spacing:22.239650px;}
.ls1e{letter-spacing:22.915739px;}
.ls20{letter-spacing:22.919860px;}
.ls2{letter-spacing:23.060915px;}
.ls12{letter-spacing:23.411073px;}
.ls29{letter-spacing:25.232915px;}
.ls6{letter-spacing:26.576915px;}
.ls27{letter-spacing:28.822800px;}
.ls26{letter-spacing:32.126915px;}
.ls2b{letter-spacing:32.180915px;}
.ls15{letter-spacing:32.941114px;}
.ls16{letter-spacing:34.937724px;}
.ls11{letter-spacing:35.117578px;}
.ls0{letter-spacing:49.476603px;}
.ls1d{letter-spacing:1187.685848px;}
.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:-78.922485px;}
.ws19{word-spacing:-71.731200px;}
.wsb{word-spacing:-45.664082px;}
.ws26{word-spacing:-29.733268px;}
.ws16{word-spacing:-19.510886px;}
.ws21{word-spacing:-6.582964px;}
.ws18{word-spacing:-3.586560px;}
.ws2f{word-spacing:-3.443098px;}
.ws2d{word-spacing:-3.371366px;}
.ws4{word-spacing:-2.736002px;}
.ws30{word-spacing:-2.367130px;}
.wsc{word-spacing:-2.223667px;}
.ws2b{word-spacing:-0.103292px;}
.ws2e{word-spacing:-0.071731px;}
.ws6{word-spacing:-0.065455px;}
.ws15{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws17{word-spacing:0.390117px;}
.ws20{word-spacing:0.396117px;}
.ws33{word-spacing:0.430387px;}
.ws7{word-spacing:0.667637px;}
.ws5{word-spacing:1.911274px;}
.ws23{word-spacing:2.008474px;}
.ws22{word-spacing:2.018959px;}
.ws29{word-spacing:2.725786px;}
.ws9{word-spacing:3.613094px;}
.ws24{word-spacing:3.873471px;}
.ws12{word-spacing:3.873485px;}
.ws31{word-spacing:3.930284px;}
.ws13{word-spacing:4.088678px;}
.ws3{word-spacing:4.648169px;}
.ws8{word-spacing:4.791277px;}
.ws10{word-spacing:5.236378px;}
.ws11{word-spacing:5.308109px;}
.ws2c{word-spacing:7.173120px;}
.ws1f{word-spacing:8.105626px;}
.wsf{word-spacing:8.392550px;}
.ws28{word-spacing:9.325056px;}
.ws2a{word-spacing:9.683712px;}
.ws1c{word-spacing:11.534465px;}
.ws1b{word-spacing:11.537752px;}
.ws1d{word-spacing:11.548723px;}
.wse{word-spacing:13.270272px;}
.ws25{word-spacing:14.911401px;}
.ws35{word-spacing:19.295693px;}
.ws34{word-spacing:21.878016px;}
.ws32{word-spacing:25.034189px;}
.wsa{word-spacing:27.284291px;}
.ws14{word-spacing:38.631358px;}
.ws0{word-spacing:46.366650px;}
.ws1{word-spacing:46.397543px;}
.wsd{word-spacing:116.100658px;}
.ws1a{word-spacing:769.747507px;}
.ws27{word-spacing:1016.144179px;}
._2{margin-left:-37.701814px;}
._0{margin-left:-11.653650px;}
._10{margin-left:-9.709486px;}
._4{margin-left:-6.972253px;}
._6{margin-left:-5.432732px;}
._1{margin-left:-4.389937px;}
._3{margin-left:-2.410162px;}
._9{margin-left:-1.071483px;}
._11{width:1.132317px;}
._5{width:2.324084px;}
._b{width:15.890766px;}
._18{width:17.608567px;}
._1a{width:18.687134px;}
._8{width:20.234435px;}
._19{width:21.420854px;}
._e{width:24.402941px;}
._7{width:27.130465px;}
._12{width:28.656867px;}
._c{width:29.926243px;}
._a{width:32.530936px;}
._17{width:35.148288px;}
._16{width:40.605212px;}
._15{width:42.443399px;}
._d{width:45.229215px;}
._14{width:48.237128px;}
._13{width:51.646200px;}
._f{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:31.704000px;}
.y1d{bottom:76.536000px;}
.y1c{bottom:98.205000px;}
.y1b{bottom:130.732500px;}
.y1a{bottom:165.984000px;}
.y19{bottom:201.234000px;}
.y18{bottom:233.763000px;}
.y17{bottom:257.929500px;}
.y16{bottom:278.950500px;}
.y15{bottom:322.288500px;}
.y14{bottom:361.714500px;}
.y33{bottom:418.863000px;}
.y13{bottom:420.912000px;}
.y32{bottom:440.530500px;}
.y12{bottom:442.581000px;}
.y11{bottom:464.250000px;}
.y31{bottom:479.958000px;}
.y10{bottom:485.917500px;}
.yf{bottom:507.586500px;}
.ye{bottom:529.255500px;}
.y30{bottom:539.859000px;}
.y2f{bottom:561.528000px;}
.yd{bottom:568.683000px;}
.y2e{bottom:583.195500px;}
.y2d{bottom:622.623000px;}
.yc{bottom:627.880500px;}
.y2c{bottom:682.524000px;}
.yb{bottom:686.746500px;}
.y2b{bottom:704.193000px;}
.ya{bottom:707.070000px;}
.y2a{bottom:725.860500px;}
.y9{bottom:727.393500px;}
.y8{bottom:747.717000px;}
.y29{bottom:757.243500px;}
.y7{bottom:768.042000px;}
.y28{bottom:800.581500px;}
.y6{bottom:804.426000px;}
.y27{bottom:840.007500px;}
.y39{bottom:857.592000px;}
.y5{bottom:861.490500px;}
.y38{bottom:879.259500px;}
.y26{bottom:899.908500px;}
.y4{bottom:903.558000px;}
.y37{bottom:915.873000px;}
.y25{bottom:921.577500px;}
.y3{bottom:930.456000px;}
.y36{bottom:937.542000px;}
.y24{bottom:949.722000px;}
.y23{bottom:962.022000px;}
.y35{bottom:974.154000px;}
.y2{bottom:983.694000px;}
.y34{bottom:995.823000px;}
.y22{bottom:1010.767500px;}
.y1{bottom:1021.054500px;}
.y21{bottom:1032.435000px;}
.y20{bottom:1054.104000px;}
.y1f{bottom:1093.531500px;}
.h9{height:33.665702px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h6{height:53.798400px;}
.hc{height:63.281702px;}
.h3{height:64.557900px;}
.h8{height:68.142000px;}
.h7{height:72.304680px;}
.h1{height:86.782500px;}
.h2{height:88.518150px;}
.ha{height:102.326400px;}
.hb{height:102.998400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:76.536000px;}
.xa{left:102.874500px;}
.x8{left:120.433500px;}
.x7{left:146.772000px;}
.x1{left:237.541500px;}
.x2{left:287.601000px;}
.xb{left:296.293500px;}
.x3{left:307.977000px;}
.x10{left:357.891000px;}
.x4{left:379.840500px;}
.x5{left:397.251000px;}
.x6{left:422.998500px;}
.xe{left:454.611000px;}
.xf{left:477.984000px;}
.xc{left:556.813500px;}
.xd{left:585.405000px;}
@media print{
.v1{vertical-align:-16.528000pt;}
.v2{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.325333pt;}
.v4{vertical-align:43.136000pt;}
.v3{vertical-align:60.570667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.001012pt;}
.ls18{letter-spacing:0.001036pt;}
.ls7{letter-spacing:0.001309pt;}
.ls5{letter-spacing:0.002452pt;}
.ls24{letter-spacing:0.002717pt;}
.ls1{letter-spacing:0.003851pt;}
.lse{letter-spacing:0.004150pt;}
.ls14{letter-spacing:0.401608pt;}
.lsf{letter-spacing:0.521544pt;}
.lsd{letter-spacing:1.521441pt;}
.ls13{letter-spacing:2.284844pt;}
.ls10{letter-spacing:2.290178pt;}
.ls4{letter-spacing:2.653258pt;}
.ls19{letter-spacing:2.657546pt;}
.ls3{letter-spacing:2.658591pt;}
.ls8{letter-spacing:3.531549pt;}
.ls9{letter-spacing:3.737979pt;}
.ls1a{letter-spacing:6.377248pt;}
.ls1c{letter-spacing:8.672391pt;}
.ls1b{letter-spacing:10.625036pt;}
.lsc{letter-spacing:14.090421pt;}
.lsa{letter-spacing:14.164509pt;}
.ls25{letter-spacing:14.164905pt;}
.ls23{letter-spacing:14.169842pt;}
.ls22{letter-spacing:14.170044pt;}
.lsb{letter-spacing:14.170238pt;}
.ls21{letter-spacing:17.707976pt;}
.ls1f{letter-spacing:17.710933pt;}
.ls2a{letter-spacing:19.768578pt;}
.ls1e{letter-spacing:20.369546pt;}
.ls20{letter-spacing:20.373209pt;}
.ls2{letter-spacing:20.498591pt;}
.ls12{letter-spacing:20.809842pt;}
.ls29{letter-spacing:22.429258pt;}
.ls6{letter-spacing:23.623925pt;}
.ls27{letter-spacing:25.620267pt;}
.ls26{letter-spacing:28.557258pt;}
.ls2b{letter-spacing:28.605258pt;}
.ls15{letter-spacing:29.280990pt;}
.ls16{letter-spacing:31.055754pt;}
.ls11{letter-spacing:31.215625pt;}
.ls0{letter-spacing:43.979203pt;}
.ls1d{letter-spacing:1055.720753pt;}
.ws2{word-spacing:-70.153320pt;}
.ws19{word-spacing:-63.761067pt;}
.wsb{word-spacing:-40.590295pt;}
.ws26{word-spacing:-26.429571pt;}
.ws16{word-spacing:-17.343010pt;}
.ws21{word-spacing:-5.851523pt;}
.ws18{word-spacing:-3.188053pt;}
.ws2f{word-spacing:-3.060531pt;}
.ws2d{word-spacing:-2.996770pt;}
.ws4{word-spacing:-2.432002pt;}
.ws30{word-spacing:-2.104115pt;}
.wsc{word-spacing:-1.976593pt;}
.ws2b{word-spacing:-0.091815pt;}
.ws2e{word-spacing:-0.063761pt;}
.ws6{word-spacing:-0.058182pt;}
.ws15{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws17{word-spacing:0.346771pt;}
.ws20{word-spacing:0.352104pt;}
.ws33{word-spacing:0.382566pt;}
.ws7{word-spacing:0.593455pt;}
.ws5{word-spacing:1.698911pt;}
.ws23{word-spacing:1.785310pt;}
.ws22{word-spacing:1.794630pt;}
.ws29{word-spacing:2.422921pt;}
.ws9{word-spacing:3.211639pt;}
.ws24{word-spacing:3.443086pt;}
.ws12{word-spacing:3.443098pt;}
.ws31{word-spacing:3.493586pt;}
.ws13{word-spacing:3.634381pt;}
.ws3{word-spacing:4.131706pt;}
.ws8{word-spacing:4.258913pt;}
.ws10{word-spacing:4.654558pt;}
.ws11{word-spacing:4.718319pt;}
.ws2c{word-spacing:6.376107pt;}
.ws1f{word-spacing:7.205001pt;}
.wsf{word-spacing:7.460045pt;}
.ws28{word-spacing:8.288939pt;}
.ws2a{word-spacing:8.607744pt;}
.ws1c{word-spacing:10.252858pt;}
.ws1b{word-spacing:10.255780pt;}
.ws1d{word-spacing:10.265532pt;}
.wse{word-spacing:11.795797pt;}
.ws25{word-spacing:13.254578pt;}
.ws35{word-spacing:17.151727pt;}
.ws34{word-spacing:19.447125pt;}
.ws32{word-spacing:22.252612pt;}
.wsa{word-spacing:24.252703pt;}
.ws14{word-spacing:34.338985pt;}
.ws0{word-spacing:41.214800pt;}
.ws1{word-spacing:41.242260pt;}
.wsd{word-spacing:103.200585pt;}
.ws1a{word-spacing:684.220006pt;}
.ws27{word-spacing:903.239270pt;}
._2{margin-left:-33.512723pt;}
._0{margin-left:-10.358800pt;}
._10{margin-left:-8.630654pt;}
._4{margin-left:-6.197558pt;}
._6{margin-left:-4.829095pt;}
._1{margin-left:-3.902166pt;}
._3{margin-left:-2.142366pt;}
._9{margin-left:-0.952429pt;}
._11{width:1.006504pt;}
._5{width:2.065853pt;}
._b{width:14.125125pt;}
._18{width:15.652059pt;}
._1a{width:16.610786pt;}
._8{width:17.986165pt;}
._19{width:19.040759pt;}
._e{width:21.691503pt;}
._7{width:24.115969pt;}
._12{width:25.472771pt;}
._c{width:26.601105pt;}
._a{width:28.916388pt;}
._17{width:31.242923pt;}
._16{width:36.093522pt;}
._15{width:37.727465pt;}
._d{width:40.203747pt;}
._14{width:42.877447pt;}
._13{width:45.907733pt;}
._f{width:103.292400pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:28.181333pt;}
.y1d{bottom:68.032000pt;}
.y1c{bottom:87.293333pt;}
.y1b{bottom:116.206667pt;}
.y1a{bottom:147.541333pt;}
.y19{bottom:178.874667pt;}
.y18{bottom:207.789333pt;}
.y17{bottom:229.270667pt;}
.y16{bottom:247.956000pt;}
.y15{bottom:286.478667pt;}
.y14{bottom:321.524000pt;}
.y33{bottom:372.322667pt;}
.y13{bottom:374.144000pt;}
.y32{bottom:391.582667pt;}
.y12{bottom:393.405333pt;}
.y11{bottom:412.666667pt;}
.y31{bottom:426.629333pt;}
.y10{bottom:431.926667pt;}
.yf{bottom:451.188000pt;}
.ye{bottom:470.449333pt;}
.y30{bottom:479.874667pt;}
.y2f{bottom:499.136000pt;}
.yd{bottom:505.496000pt;}
.y2e{bottom:518.396000pt;}
.y2d{bottom:553.442667pt;}
.yc{bottom:558.116000pt;}
.y2c{bottom:606.688000pt;}
.yb{bottom:610.441333pt;}
.y2b{bottom:625.949333pt;}
.ya{bottom:628.506667pt;}
.y2a{bottom:645.209333pt;}
.y9{bottom:646.572000pt;}
.y8{bottom:664.637333pt;}
.y29{bottom:673.105333pt;}
.y7{bottom:682.704000pt;}
.y28{bottom:711.628000pt;}
.y6{bottom:715.045333pt;}
.y27{bottom:746.673333pt;}
.y39{bottom:762.304000pt;}
.y5{bottom:765.769333pt;}
.y38{bottom:781.564000pt;}
.y26{bottom:799.918667pt;}
.y4{bottom:803.162667pt;}
.y37{bottom:814.109333pt;}
.y25{bottom:819.180000pt;}
.y3{bottom:827.072000pt;}
.y36{bottom:833.370667pt;}
.y24{bottom:844.197333pt;}
.y23{bottom:855.130667pt;}
.y35{bottom:865.914667pt;}
.y2{bottom:874.394667pt;}
.y34{bottom:885.176000pt;}
.y22{bottom:898.460000pt;}
.y1{bottom:907.604000pt;}
.y21{bottom:917.720000pt;}
.y20{bottom:936.981333pt;}
.y1f{bottom:972.028000pt;}
.h9{height:29.925069pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h6{height:47.820800pt;}
.hc{height:56.250402pt;}
.h3{height:57.384800pt;}
.h8{height:60.570667pt;}
.h7{height:64.270827pt;}
.h1{height:77.140000pt;}
.h2{height:78.682800pt;}
.ha{height:90.956800pt;}
.hb{height:91.554133pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:68.032000pt;}
.xa{left:91.444000pt;}
.x8{left:107.052000pt;}
.x7{left:130.464000pt;}
.x1{left:211.148000pt;}
.x2{left:255.645333pt;}
.xb{left:263.372000pt;}
.x3{left:273.757333pt;}
.x10{left:318.125333pt;}
.x4{left:337.636000pt;}
.x5{left:353.112000pt;}
.x6{left:375.998667pt;}
.xe{left:404.098667pt;}
.xf{left:424.874667pt;}
.xc{left:494.945333pt;}
.xd{left:520.360000pt;}
}




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