
    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_0fab7320f028d1dd18adb8ff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_f920c89b53c91947193920fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.724000;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_792149677ec73a0664f21021.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_504fcccef95477464e1507f0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d6f3e20061b32bcca93145e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.387000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v3{vertical-align:-26.034000px;}
.v1{vertical-align:-14.346000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.034000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000746px;}
.ls2{letter-spacing:2.984700px;}
.ls3{letter-spacing:2.990700px;}
.ls1{letter-spacing:2.992175px;}
.lsc{letter-spacing:3.040477px;}
.ls8{letter-spacing:20.624700px;}
.ls6{letter-spacing:20.918700px;}
.ls5{letter-spacing:20.920175px;}
.ls4{letter-spacing:20.924700px;}
.ls0{letter-spacing:33.677100px;}
.ls9{letter-spacing:35.865600px;}
.lsb{letter-spacing:462.506700px;}
.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;}
}
.ws12{word-spacing:-54.372250px;}
.ws13{word-spacing:-45.047194px;}
.wse{word-spacing:-35.865600px;}
.wsa{word-spacing:-25.105920px;}
.ws18{word-spacing:-19.797811px;}
.ws11{word-spacing:-18.219725px;}
.ws4{word-spacing:-17.932800px;}
.ws14{word-spacing:-16.713370px;}
.wsb{word-spacing:-16.363650px;}
.ws9{word-spacing:-15.637402px;}
.ws8{word-spacing:-15.633178px;}
.ws17{word-spacing:-15.135283px;}
.ws16{word-spacing:-15.063552px;}
.ws7{word-spacing:-9.181594px;}
.wsd{word-spacing:-1.721549px;}
.ws2{word-spacing:-0.095641px;}
.ws10{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.052603px;}
.ws15{word-spacing:0.000000px;}
.ws6{word-spacing:7.489920px;}
.ws19{word-spacing:17.861069px;}
.wsc{word-spacing:23.814659px;}
.ws0{word-spacing:24.579788px;}
.wsf{word-spacing:25.608038px;}
.ws1{word-spacing:30.592096px;}
.ws3{word-spacing:30.605184px;}
.ws21{word-spacing:41.266310px;}
.ws27{word-spacing:53.206800px;}
.ws24{word-spacing:53.212310px;}
.ws29{word-spacing:59.197910px;}
.ws1e{word-spacing:65.152800px;}
.ws25{word-spacing:65.158800px;}
.ws26{word-spacing:71.140800px;}
.ws1d{word-spacing:75.086890px;}
.ws2b{word-spacing:75.520310px;}
.ws1f{word-spacing:83.086800px;}
.ws23{word-spacing:89.078400px;}
.ws20{word-spacing:139.756800px;}
.ws22{word-spacing:145.708800px;}
.ws28{word-spacing:159.700800px;}
.ws2a{word-spacing:165.652800px;}
.ws1a{word-spacing:292.509110px;}
.ws1c{word-spacing:465.259632px;}
.ws1b{word-spacing:486.038122px;}
._12{margin-left:-5680.033691px;}
._15{margin-left:-3521.641829px;}
._d{margin-left:-3413.358128px;}
._20{margin-left:-2990.467661px;}
._28{margin-left:-2966.892336px;}
._11{margin-left:-2954.391427px;}
._3{margin-left:-2935.754248px;}
._1c{margin-left:-2771.162527px;}
._25{margin-left:-2760.072884px;}
._2c{margin-left:-2742.756817px;}
._e{margin-left:-804.027569px;}
._6{margin-left:-760.635038px;}
._16{margin-left:-692.345546px;}
._29{margin-left:-649.498289px;}
._a{margin-left:-490.976400px;}
._f{margin-left:-487.960302px;}
._23{margin-left:-39.093504px;}
._24{margin-left:-38.017536px;}
._1e{margin-left:-36.941568px;}
._1d{margin-left:-35.865600px;}
._22{margin-left:-17.574144px;}
._2a{margin-left:-6.814506px;}
._5{margin-left:-5.738472px;}
._14{margin-left:-4.662522px;}
._1{margin-left:-2.869236px;}
._2{margin-left:-1.434618px;}
._7{width:1.793274px;}
._13{width:3.012710px;}
._2d{width:11.548687px;}
._c{width:12.696416px;}
._26{width:19.006114px;}
._27{width:20.443392px;}
._b{width:22.308403px;}
._0{width:25.727483px;}
._8{width:27.975156px;}
._9{width:29.338079px;}
._2b{width:33.857108px;}
._19{width:35.865600px;}
._1f{width:43.899494px;}
._4{width:49.066721px;}
._21{width:53.368013px;}
._1b{width:55.950336px;}
._10{width:59.178204px;}
._1a{width:70.146936px;}
._18{width:71.874632px;}
._2f{width:73.399699px;}
._2e{width:74.836558px;}
._60{width:77.143421px;}
._17{width:89.233613px;}
._5c{width:95.082931px;}
._59{width:101.024400px;}
._4c{width:107.015510px;}
._50{width:111.391910px;}
._56{width:112.994400px;}
._43{width:118.956000px;}
._33{width:123.980400px;}
._4a{width:125.099702px;}
._53{width:129.158698px;}
._3e{width:130.281110px;}
._45{width:131.395306px;}
._3d{width:136.728298px;}
._39{width:141.912000px;}
._57{width:143.335795px;}
._5e{width:146.929910px;}
._32{width:152.882400px;}
._48{width:157.289232px;}
._51{width:159.840000px;}
._46{width:161.273395px;}
._37{width:167.294237px;}
._38{width:170.816400px;}
._44{width:173.249616px;}
._3c{width:176.768400px;}
._58{width:188.708400px;}
._41{width:193.194163px;}
._4b{width:194.696400px;}
._3f{width:197.172326px;}
._4d{width:204.548698px;}
._42{width:206.642400px;}
._31{width:209.154547px;}
._5a{width:222.638400px;}
._34{width:228.596400px;}
._54{width:241.539110px;}
._5b{width:246.528000px;}
._52{width:252.515510px;}
._3a{width:264.456000px;}
._4e{width:307.357910px;}
._35{width:319.298400px;}
._55{width:325.289510px;}
._3b{width:337.236000px;}
._30{width:498.086074px;}
._4f{width:629.864400px;}
._36{width:641.810400px;}
._5d{width:647.798400px;}
._49{width:659.744400px;}
._5f{width:1083.128102px;}
._47{width:1100.900400px;}
._40{width:1112.846400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:33.713400px;}
.fs4{font-size:52.602600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:69.817800px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y4b{bottom:109.624500px;}
.y17{bottom:126.097500px;}
.y49{bottom:131.293500px;}
.y66{bottom:142.128000px;}
.y48{bottom:152.962500px;}
.y4a{bottom:163.797000px;}
.y47{bottom:174.631500px;}
.y65{bottom:185.466000px;}
.y27{bottom:190.929000px;}
.y46{bottom:196.300500px;}
.y64{bottom:207.135000px;}
.y16{bottom:211.638000px;}
.y45{bottom:217.968000px;}
.y63{bottom:228.802500px;}
.y44{bottom:240.235500px;}
.y15{bottom:247.500000px;}
.y62{bottom:250.471500px;}
.y24{bottom:256.710000px;}
.y42{bottom:261.904500px;}
.y61{bottom:272.140500px;}
.y14{bottom:283.362000px;}
.y41{bottom:283.572000px;}
.y60{bottom:293.809500px;}
.y43{bottom:294.406500px;}
.y40{bottom:305.241000px;}
.y5f{bottom:316.075500px;}
.y13{bottom:319.224000px;}
.y3f{bottom:326.910000px;}
.y5e{bottom:337.744500px;}
.y3e{bottom:348.579000px;}
.y12{bottom:355.086000px;}
.y5d{bottom:359.413500px;}
.y3d{bottom:370.845000px;}
.y5c{bottom:381.082500px;}
.y11{bottom:390.946500px;}
.y3b{bottom:392.514000px;}
.y5b{bottom:402.750000px;}
.y2a{bottom:413.907000px;}
.y3a{bottom:414.183000px;}
.y5a{bottom:424.419000px;}
.y10{bottom:426.808500px;}
.y39{bottom:435.852000px;}
.y59{bottom:446.088000px;}
.y3c{bottom:446.685000px;}
.y4c{bottom:455.917500px;}
.y38{bottom:457.519500px;}
.y67{bottom:458.902500px;}
.y1d{bottom:459.844500px;}
.y58{bottom:468.354000px;}
.yf{bottom:470.740500px;}
.y37{bottom:479.188500px;}
.y57{bottom:490.023000px;}
.y36{bottom:500.857500px;}
.y56{bottom:511.692000px;}
.y35{bottom:522.526500px;}
.y55{bottom:533.361000px;}
.ye{bottom:541.291500px;}
.y34{bottom:544.792500px;}
.y54{bottom:555.030000px;}
.y32{bottom:566.461500px;}
.y53{bottom:576.697500px;}
.yd{bottom:577.152000px;}
.y31{bottom:588.130500px;}
.y52{bottom:598.965000px;}
.y30{bottom:609.799500px;}
.yc{bottom:613.014000px;}
.y33{bottom:620.632500px;}
.y2f{bottom:631.467000px;}
.y51{bottom:642.301500px;}
.yb{bottom:648.876000px;}
.y2e{bottom:653.136000px;}
.y50{bottom:663.970500px;}
.y2d{bottom:674.805000px;}
.y4f{bottom:686.236500px;}
.ya{bottom:692.808000px;}
.y2c{bottom:696.474000px;}
.y2b{bottom:718.740000px;}
.y4e{bottom:720.829500px;}
.y4d{bottom:742.498500px;}
.y29{bottom:753.333000px;}
.y26{bottom:760.950000px;}
.y28{bottom:775.000500px;}
.y9{bottom:777.937500px;}
.y25{bottom:782.619000px;}
.y69{bottom:797.680500px;}
.y68{bottom:819.349500px;}
.y8{bottom:823.429500px;}
.y7{bottom:883.500000px;}
.y6{bottom:925.870500px;}
.y23{bottom:937.489500px;}
.y1c{bottom:943.570500px;}
.y22{bottom:953.245500px;}
.y5{bottom:955.222500px;}
.y21{bottom:975.513000px;}
.y1b{bottom:979.432500px;}
.y20{bottom:997.779000px;}
.y1a{bottom:1015.294500px;}
.y1f{bottom:1020.045000px;}
.y4{bottom:1023.364500px;}
.y19{bottom:1051.156500px;}
.y1e{bottom:1054.638000px;}
.y3{bottom:1059.225000px;}
.y18{bottom:1087.017000px;}
.y2{bottom:1095.087000px;}
.y1{bottom:1130.949000px;}
.h8{height:23.671170px;}
.h4{height:23.902801px;}
.h6{height:36.190589px;}
.h7{height:49.351066px;}
.h9{height:49.781453px;}
.h3{height:62.224589px;}
.h5{height:62.230589px;}
.h2{height:66.374993px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:69.661500px;}
.x2{left:89.292000px;}
.x8{left:98.856000px;}
.x1{left:115.629000px;}
.x17{left:126.097500px;}
.x4{left:157.435500px;}
.xd{left:170.929500px;}
.xa{left:183.853500px;}
.xc{left:185.307000px;}
.xb{left:190.500000px;}
.x9{left:193.495500px;}
.xe{left:205.887000px;}
.x15{left:226.276500px;}
.x1a{left:231.261000px;}
.x13{left:318.964500px;}
.x16{left:321.951000px;}
.x14{left:326.433000px;}
.x10{left:327.940500px;}
.x12{left:329.428500px;}
.x11{left:335.409000px;}
.xf{left:338.403000px;}
.x19{left:344.383500px;}
.x18{left:348.373500px;}
.x1b{left:431.025000px;}
.x7{left:437.499000px;}
.x6{left:440.485500px;}
.x5{left:443.472000px;}
@media print{
.v3{vertical-align:-23.141333pt;}
.v1{vertical-align:-12.752000pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.141333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000663pt;}
.ls2{letter-spacing:2.653067pt;}
.ls3{letter-spacing:2.658400pt;}
.ls1{letter-spacing:2.659711pt;}
.lsc{letter-spacing:2.702646pt;}
.ls8{letter-spacing:18.333067pt;}
.ls6{letter-spacing:18.594400pt;}
.ls5{letter-spacing:18.595711pt;}
.ls4{letter-spacing:18.599733pt;}
.ls0{letter-spacing:29.935200pt;}
.ls9{letter-spacing:31.880533pt;}
.lsb{letter-spacing:411.117067pt;}
.ws12{word-spacing:-48.330889pt;}
.ws13{word-spacing:-40.041950pt;}
.wse{word-spacing:-31.880533pt;}
.wsa{word-spacing:-22.316373pt;}
.ws18{word-spacing:-17.598054pt;}
.ws11{word-spacing:-16.195311pt;}
.ws4{word-spacing:-15.940267pt;}
.ws14{word-spacing:-14.856329pt;}
.wsb{word-spacing:-14.545467pt;}
.ws9{word-spacing:-13.899913pt;}
.ws8{word-spacing:-13.896158pt;}
.ws17{word-spacing:-13.453585pt;}
.ws16{word-spacing:-13.389824pt;}
.ws7{word-spacing:-8.161417pt;}
.wsd{word-spacing:-1.530266pt;}
.ws2{word-spacing:-0.085014pt;}
.ws10{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.046758pt;}
.ws15{word-spacing:0.000000pt;}
.ws6{word-spacing:6.657707pt;}
.ws19{word-spacing:15.876506pt;}
.wsc{word-spacing:21.168586pt;}
.ws0{word-spacing:21.848701pt;}
.wsf{word-spacing:22.762701pt;}
.ws1{word-spacing:27.192974pt;}
.ws3{word-spacing:27.204608pt;}
.ws21{word-spacing:36.681165pt;}
.ws27{word-spacing:47.294933pt;}
.ws24{word-spacing:47.299831pt;}
.ws29{word-spacing:52.620365pt;}
.ws1e{word-spacing:57.913600pt;}
.ws25{word-spacing:57.918933pt;}
.ws26{word-spacing:63.236267pt;}
.ws1d{word-spacing:66.743902pt;}
.ws2b{word-spacing:67.129165pt;}
.ws1f{word-spacing:73.854933pt;}
.ws23{word-spacing:79.180800pt;}
.ws20{word-spacing:124.228267pt;}
.ws22{word-spacing:129.518933pt;}
.ws28{word-spacing:141.956267pt;}
.ws2a{word-spacing:147.246933pt;}
.ws1a{word-spacing:260.008098pt;}
.ws1c{word-spacing:413.564117pt;}
.ws1b{word-spacing:432.033886pt;}
._12{margin-left:-5048.918836pt;}
._15{margin-left:-3130.348292pt;}
._d{margin-left:-3034.096114pt;}
._20{margin-left:-2658.193476pt;}
._28{margin-left:-2637.237632pt;}
._11{margin-left:-2626.125713pt;}
._3{margin-left:-2609.559331pt;}
._1c{margin-left:-2463.255580pt;}
._25{margin-left:-2453.398119pt;}
._2c{margin-left:-2438.006060pt;}
._e{margin-left:-714.691173pt;}
._6{margin-left:-676.120034pt;}
._16{margin-left:-615.418263pt;}
._29{margin-left:-577.331812pt;}
._a{margin-left:-436.423467pt;}
._f{margin-left:-433.742491pt;}
._23{margin-left:-34.749781pt;}
._24{margin-left:-33.793365pt;}
._1e{margin-left:-32.836949pt;}
._1d{margin-left:-31.880533pt;}
._22{margin-left:-15.621461pt;}
._2a{margin-left:-6.057339pt;}
._5{margin-left:-5.100864pt;}
._14{margin-left:-4.144464pt;}
._1{margin-left:-2.550432pt;}
._2{margin-left:-1.275216pt;}
._7{width:1.594021pt;}
._13{width:2.677965pt;}
._2d{width:10.265500pt;}
._c{width:11.285703pt;}
._26{width:16.894323pt;}
._27{width:18.171904pt;}
._b{width:19.829692pt;}
._0{width:22.868874pt;}
._8{width:24.866805pt;}
._9{width:26.078292pt;}
._2b{width:30.095207pt;}
._19{width:31.880533pt;}
._1f{width:39.021773pt;}
._4{width:43.614863pt;}
._21{width:47.438234pt;}
._1b{width:49.733632pt;}
._10{width:52.602848pt;}
._1a{width:62.352832pt;}
._18{width:63.888562pt;}
._2f{width:65.244177pt;}
._2e{width:66.521385pt;}
._60{width:68.571930pt;}
._17{width:79.318767pt;}
._5c{width:84.518161pt;}
._59{width:89.799467pt;}
._4c{width:95.124898pt;}
._50{width:99.015031pt;}
._56{width:100.439467pt;}
._43{width:105.738667pt;}
._33{width:110.204800pt;}
._4a{width:111.199735pt;}
._53{width:114.807731pt;}
._3e{width:115.805431pt;}
._45{width:116.795827pt;}
._3d{width:121.536265pt;}
._39{width:126.144000pt;}
._57{width:127.409596pt;}
._5e{width:130.604365pt;}
._32{width:135.895467pt;}
._48{width:139.812651pt;}
._51{width:142.080000pt;}
._46{width:143.354129pt;}
._37{width:148.705988pt;}
._38{width:151.836800pt;}
._44{width:153.999659pt;}
._3c{width:157.127467pt;}
._58{width:167.740800pt;}
._41{width:171.728145pt;}
._4b{width:173.063467pt;}
._3f{width:175.264290pt;}
._4d{width:181.821065pt;}
._42{width:183.682133pt;}
._31{width:185.915153pt;}
._5a{width:197.900800pt;}
._34{width:203.196800pt;}
._54{width:214.701431pt;}
._5b{width:219.136000pt;}
._52{width:224.458231pt;}
._3a{width:235.072000pt;}
._4e{width:273.207031pt;}
._35{width:283.820800pt;}
._55{width:289.146231pt;}
._3b{width:299.765333pt;}
._30{width:442.743177pt;}
._4f{width:559.879467pt;}
._36{width:570.498133pt;}
._5d{width:575.820800pt;}
._49{width:586.439467pt;}
._5f{width:962.780535pt;}
._47{width:978.578133pt;}
._40{width:989.196800pt;}
.fs1{font-size:29.967467pt;}
.fs4{font-size:46.757867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:62.060267pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:97.444000pt;}
.y17{bottom:112.086667pt;}
.y49{bottom:116.705333pt;}
.y66{bottom:126.336000pt;}
.y48{bottom:135.966667pt;}
.y4a{bottom:145.597333pt;}
.y47{bottom:155.228000pt;}
.y65{bottom:164.858667pt;}
.y27{bottom:169.714667pt;}
.y46{bottom:174.489333pt;}
.y64{bottom:184.120000pt;}
.y16{bottom:188.122667pt;}
.y45{bottom:193.749333pt;}
.y63{bottom:203.380000pt;}
.y44{bottom:213.542667pt;}
.y15{bottom:220.000000pt;}
.y62{bottom:222.641333pt;}
.y24{bottom:228.186667pt;}
.y42{bottom:232.804000pt;}
.y61{bottom:241.902667pt;}
.y14{bottom:251.877333pt;}
.y41{bottom:252.064000pt;}
.y60{bottom:261.164000pt;}
.y43{bottom:261.694667pt;}
.y40{bottom:271.325333pt;}
.y5f{bottom:280.956000pt;}
.y13{bottom:283.754667pt;}
.y3f{bottom:290.586667pt;}
.y5e{bottom:300.217333pt;}
.y3e{bottom:309.848000pt;}
.y12{bottom:315.632000pt;}
.y5d{bottom:319.478667pt;}
.y3d{bottom:329.640000pt;}
.y5c{bottom:338.740000pt;}
.y11{bottom:347.508000pt;}
.y3b{bottom:348.901333pt;}
.y5b{bottom:358.000000pt;}
.y2a{bottom:367.917333pt;}
.y3a{bottom:368.162667pt;}
.y5a{bottom:377.261333pt;}
.y10{bottom:379.385333pt;}
.y39{bottom:387.424000pt;}
.y59{bottom:396.522667pt;}
.y3c{bottom:397.053333pt;}
.y4c{bottom:405.260000pt;}
.y38{bottom:406.684000pt;}
.y67{bottom:407.913333pt;}
.y1d{bottom:408.750667pt;}
.y58{bottom:416.314667pt;}
.yf{bottom:418.436000pt;}
.y37{bottom:425.945333pt;}
.y57{bottom:435.576000pt;}
.y36{bottom:445.206667pt;}
.y56{bottom:454.837333pt;}
.y35{bottom:464.468000pt;}
.y55{bottom:474.098667pt;}
.ye{bottom:481.148000pt;}
.y34{bottom:484.260000pt;}
.y54{bottom:493.360000pt;}
.y32{bottom:503.521333pt;}
.y53{bottom:512.620000pt;}
.yd{bottom:513.024000pt;}
.y31{bottom:522.782667pt;}
.y52{bottom:532.413333pt;}
.y30{bottom:542.044000pt;}
.yc{bottom:544.901333pt;}
.y33{bottom:551.673333pt;}
.y2f{bottom:561.304000pt;}
.y51{bottom:570.934667pt;}
.yb{bottom:576.778667pt;}
.y2e{bottom:580.565333pt;}
.y50{bottom:590.196000pt;}
.y2d{bottom:599.826667pt;}
.y4f{bottom:609.988000pt;}
.ya{bottom:615.829333pt;}
.y2c{bottom:619.088000pt;}
.y2b{bottom:638.880000pt;}
.y4e{bottom:640.737333pt;}
.y4d{bottom:659.998667pt;}
.y29{bottom:669.629333pt;}
.y26{bottom:676.400000pt;}
.y28{bottom:688.889333pt;}
.y9{bottom:691.500000pt;}
.y25{bottom:695.661333pt;}
.y69{bottom:709.049333pt;}
.y68{bottom:728.310667pt;}
.y8{bottom:731.937333pt;}
.y7{bottom:785.333333pt;}
.y6{bottom:822.996000pt;}
.y23{bottom:833.324000pt;}
.y1c{bottom:838.729333pt;}
.y22{bottom:847.329333pt;}
.y5{bottom:849.086667pt;}
.y21{bottom:867.122667pt;}
.y1b{bottom:870.606667pt;}
.y20{bottom:886.914667pt;}
.y1a{bottom:902.484000pt;}
.y1f{bottom:906.706667pt;}
.y4{bottom:909.657333pt;}
.y19{bottom:934.361333pt;}
.y1e{bottom:937.456000pt;}
.y3{bottom:941.533333pt;}
.y18{bottom:966.237333pt;}
.y2{bottom:973.410667pt;}
.y1{bottom:1005.288000pt;}
.h8{height:21.041040pt;}
.h4{height:21.246934pt;}
.h6{height:32.169412pt;}
.h7{height:43.867614pt;}
.h9{height:44.250180pt;}
.h3{height:55.310746pt;}
.h5{height:55.316079pt;}
.h2{height:58.999994pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:61.921333pt;}
.x2{left:79.370667pt;}
.x8{left:87.872000pt;}
.x1{left:102.781333pt;}
.x17{left:112.086667pt;}
.x4{left:139.942667pt;}
.xd{left:151.937333pt;}
.xa{left:163.425333pt;}
.xc{left:164.717333pt;}
.xb{left:169.333333pt;}
.x9{left:171.996000pt;}
.xe{left:183.010667pt;}
.x15{left:201.134667pt;}
.x1a{left:205.565333pt;}
.x13{left:283.524000pt;}
.x16{left:286.178667pt;}
.x14{left:290.162667pt;}
.x10{left:291.502667pt;}
.x12{left:292.825333pt;}
.x11{left:298.141333pt;}
.xf{left:300.802667pt;}
.x19{left:306.118667pt;}
.x18{left:309.665333pt;}
.x1b{left:383.133333pt;}
.x7{left:388.888000pt;}
.x6{left:391.542667pt;}
.x5{left:394.197333pt;}
}




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