
    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_4ce78d92737b455652559bf3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_565e962d66d74f2fc771a109.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_9267d2f2a3b3a79bcf4a6c41.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_d4566d7bd2dac2045e7c13ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_cefa3cfe8f7a097aab31598e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_b925ce31182c15696250d1c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_09ba970e5ca77fc962e05ba6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v1{vertical-align:-5.759996px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440036px;}
.v2{vertical-align:5.759996px;}
.v3{vertical-align:42.480009px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.142459px;}
.lsc{letter-spacing:0.142464px;}
.lsa{letter-spacing:0.142531px;}
.ls11{letter-spacing:0.142599px;}
.lsf{letter-spacing:0.142603px;}
.lsb{letter-spacing:0.179554px;}
.ls10{letter-spacing:0.179559px;}
.ls8{letter-spacing:0.358974px;}
.ls9{letter-spacing:0.359041px;}
.ls6{letter-spacing:0.359109px;}
.ls5{letter-spacing:0.359113px;}
.lsd{letter-spacing:0.359181px;}
.ls0{letter-spacing:0.719202px;}
.ls7{letter-spacing:2.159301px;}
.ls1{letter-spacing:12.239328px;}
.ls3{letter-spacing:15.839409px;}
.ls4{letter-spacing:21.599270px;}
.ls12{letter-spacing:22.319423px;}
.ls13{letter-spacing:32.615251px;}
.ls14{letter-spacing:845.999288px;}
.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:-18.000676px;}
.ws1{word-spacing:-17.999954px;}
.ws4{word-spacing:-12.060450px;}
.ws0{word-spacing:-10.902647px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-4.948340px;}
._7{margin-left:-3.785363px;}
._4{margin-left:-2.259287px;}
._1{margin-left:-1.023266px;}
._0{width:1.219759px;}
._a{width:2.460749px;}
._8{width:3.623199px;}
._9{width:5.139193px;}
._1c{width:6.184134px;}
._18{width:7.223334px;}
._1a{width:8.288915px;}
._11{width:9.564875px;}
._10{width:10.810250px;}
._6{width:12.121205px;}
._5{width:13.223747px;}
._19{width:14.233753px;}
._17{width:15.263730px;}
._d{width:16.812913px;}
._b{width:19.634800px;}
._c{width:20.796125px;}
._13{width:22.207209px;}
._14{width:23.253005px;}
._1b{width:24.928686px;}
._29{width:25.931943px;}
._1f{width:27.128050px;}
._1e{width:28.169410px;}
._3a{width:29.674637px;}
._3b{width:30.746481px;}
._2{width:31.813499px;}
._3{width:33.077812px;}
._1d{width:34.526703px;}
._f{width:35.797759px;}
._e{width:36.913761px;}
._12{width:38.080430px;}
._3c{width:39.214181px;}
._3d{width:40.422498px;}
._3f{width:41.791627px;}
._3e{width:42.794920px;}
._16{width:61.013854px;}
._15{width:62.917707px;}
._21{width:72.196212px;}
._42{width:86.179276px;}
._41{width:87.312362px;}
._22{width:92.200869px;}
._40{width:134.986969px;}
._23{width:136.946894px;}
._2a{width:285.194275px;}
._38{width:360.013523px;}
._33{width:382.318003px;}
._2d{width:393.837994px;}
._39{width:400.682956px;}
._36{width:406.077999px;}
._30{width:470.463873px;}
._37{width:482.489560px;}
._34{width:509.343542px;}
._2e{width:521.585793px;}
._2c{width:558.020960px;}
._27{width:627.193058px;}
._32{width:645.864259px;}
._24{width:659.604739px;}
._31{width:663.864935px;}
._26{width:667.441445px;}
._2f{width:714.987418px;}
._28{width:737.307694px;}
._25{width:745.795644px;}
._35{width:766.109338px;}
._2b{width:877.448242px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y6d{bottom:3.959953px;}
.y76{bottom:3.960021px;}
.y5c{bottom:3.960022px;}
.y65{bottom:4.139992px;}
.y60{bottom:4.319962px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y3d{bottom:106.020127px;}
.y9f{bottom:113.760064px;}
.y3c{bottom:126.720085px;}
.y9e{bottom:134.460091px;}
.y79{bottom:135.360077px;}
.y3b{bottom:147.420043px;}
.y9d{bottom:155.160049px;}
.y78{bottom:156.060036px;}
.y3a{bottom:168.120072px;}
.y9c{bottom:175.860077px;}
.y77{bottom:177.120072px;}
.y39{bottom:188.820099px;}
.y75{bottom:195.120072px;}
.y9b{bottom:196.560036px;}
.y74{bottom:199.080093px;}
.y38{bottom:209.520058px;}
.y9a{bottom:217.260064px;}
.y73{bottom:220.500068px;}
.y37{bottom:230.220085px;}
.y99{bottom:237.960091px;}
.y72{bottom:241.920043px;}
.y36{bottom:250.920043px;}
.y98{bottom:258.660049px;}
.y71{bottom:263.340088px;}
.y35{bottom:271.620072px;}
.y97{bottom:279.360077px;}
.y70{bottom:284.760064px;}
.y34{bottom:291.960091px;}
.y56{bottom:292.320099px;}
.y96{bottom:300.060036px;}
.y6f{bottom:301.860077px;}
.y6e{bottom:306.180039px;}
.y33{bottom:313.020058px;}
.y95{bottom:320.760064px;}
.y6c{bottom:323.460091px;}
.y6b{bottom:327.420043px;}
.y32{bottom:333.720085px;}
.y94{bottom:341.460091px;}
.y6a{bottom:348.840088px;}
.y31{bottom:354.420043px;}
.y93{bottom:362.160049px;}
.y69{bottom:369.540047px;}
.y30{bottom:375.120072px;}
.y92{bottom:382.860077px;}
.y68{bottom:390.600083px;}
.y2f{bottom:395.820099px;}
.y91{bottom:403.560036px;}
.y67{bottom:411.300041px;}
.y2e{bottom:416.520058px;}
.ya2{bottom:417.060036px;}
.y90{bottom:420.480079px;}
.y8f{bottom:424.620072px;}
.y66{bottom:432.000068px;}
.y2d{bottom:437.220085px;}
.y8e{bottom:446.040047px;}
.y64{bottom:448.920043px;}
.y63{bottom:453.060036px;}
.y2c{bottom:457.920043px;}
.y8d{bottom:467.640060px;}
.y62{bottom:474.840088px;}
.y2b{bottom:478.620072px;}
.y8c{bottom:489.060036px;}
.y61{bottom:496.260064px;}
.y2a{bottom:499.320099px;}
.y8b{bottom:510.480079px;}
.y5f{bottom:513.360077px;}
.y5e{bottom:517.680039px;}
.y29{bottom:520.020058px;}
.y8a{bottom:531.900055px;}
.y5d{bottom:539.100083px;}
.y28{bottom:540.720085px;}
.y89{bottom:553.320099px;}
.y5b{bottom:556.380066px;}
.y5a{bottom:560.340088px;}
.y27{bottom:561.420043px;}
.y88{bottom:574.740074px;}
.y59{bottom:581.760064px;}
.y26{bottom:582.120072px;}
.y87{bottom:596.340088px;}
.y58{bottom:602.460091px;}
.y25{bottom:602.820099px;}
.y86{bottom:608.040047px;}
.y24{bottom:623.520058px;}
.y85{bottom:641.160049px;}
.y23{bottom:644.220085px;}
.y84{bottom:661.860077px;}
.y22{bottom:664.920043px;}
.y83{bottom:682.560036px;}
.y21{bottom:685.260064px;}
.y55{bottom:685.620072px;}
.y82{bottom:703.440067px;}
.y20{bottom:705.600083px;}
.y54{bottom:706.320065px;}
.y1f{bottom:722.880066px;}
.y81{bottom:725.580059px;}
.y53{bottom:727.020058px;}
.y1e{bottom:740.160049px;}
.y80{bottom:746.280052px;}
.y52{bottom:747.720051px;}
.y1d{bottom:757.800076px;}
.y7f{bottom:766.980079px;}
.y51{bottom:768.420078px;}
.y1c{bottom:778.860077px;}
.y7e{bottom:787.680073px;}
.y50{bottom:789.120072px;}
.y1b{bottom:799.560070px;}
.y7d{bottom:808.380066px;}
.y4f{bottom:809.820065px;}
.y1a{bottom:819.900055px;}
.y7c{bottom:829.080059px;}
.y4e{bottom:830.520058px;}
.y19{bottom:840.960056px;}
.y7b{bottom:849.780052px;}
.y4d{bottom:851.220051px;}
.y18{bottom:861.660049px;}
.y7a{bottom:870.480079px;}
.y4c{bottom:871.920078px;}
.y17{bottom:882.000068px;}
.y4b{bottom:892.620072px;}
.y16{bottom:902.700061px;}
.y4a{bottom:913.320065px;}
.y15{bottom:923.400055px;}
.y49{bottom:934.020058px;}
.y14{bottom:944.100083px;}
.y48{bottom:954.720051px;}
.y13{bottom:964.800076px;}
.y47{bottom:975.420061px;}
.y12{bottom:985.500068px;}
.y46{bottom:995.760064px;}
.y57{bottom:996.120072px;}
.y11{bottom:1006.200061px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1026.900072px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1047.420061px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1068.120072px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1088.820065px;}
.ya1{bottom:1099.260064px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.042566px;}
.ya0{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.he{height:20.159981px;}
.h10{height:20.340019px;}
.hd{height:20.340020px;}
.hc{height:20.519989px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.h11{height:52.419938px;}
.h9{height:58.431882px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h12{height:65.886904px;}
.hf{height:104.744066px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:7.739937px;}
.w9{width:7.739972px;}
.w8{width:7.919975px;}
.w6{width:7.920010px;}
.w7{width:9.000000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2e{left:86.040003px;}
.x10{left:90.000000px;}
.xd{left:98.459997px;}
.x11{left:101.519998px;}
.x9{left:105.116917px;}
.x1b{left:111.959997px;}
.xc{left:115.920001px;}
.xb{left:119.519998px;}
.x8{left:120.963562px;}
.x12{left:124.019998px;}
.x19{left:127.439999px;}
.x1a{left:138.060001px;}
.x30{left:149.219999px;}
.x32{left:153.719999px;}
.x33{left:158.219999px;}
.xa{left:230.035554px;}
.x28{left:268.560001px;}
.x26{left:291.060001px;}
.x20{left:294.480011px;}
.x1e{left:297.899987px;}
.x25{left:321.120002px;}
.x1d{left:328.139992px;}
.x23{left:332.459988px;}
.x2b{left:342.540012px;}
.x21{left:364.500000px;}
.x22{left:380.879998px;}
.x29{left:390.600014px;}
.xe{left:395.459988px;}
.x35{left:399.779983px;}
.x31{left:402.660015px;}
.x24{left:412.379998px;}
.x2f{left:421.379998px;}
.x2{left:432.899987px;}
.x34{left:441.899987px;}
.xf{left:446.399987px;}
.x2d{left:459.899987px;}
.x2c{left:495.360008px;}
.x2a{left:499.860008px;}
.x14{left:522.360008px;}
.x17{left:564.480011px;}
.x13{left:593.820030px;}
.x1f{left:598.320030px;}
.x15{left:603.899987px;}
.x27{left:624.240006px;}
.x16{left:715.679970px;}
.x1c{left:738.720017px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x18{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v1{vertical-align:-5.119996pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280032pt;}
.v2{vertical-align:5.119996pt;}
.v3{vertical-align:37.760008pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.126631pt;}
.lsc{letter-spacing:0.126635pt;}
.lsa{letter-spacing:0.126695pt;}
.ls11{letter-spacing:0.126755pt;}
.lsf{letter-spacing:0.126759pt;}
.lsb{letter-spacing:0.159604pt;}
.ls10{letter-spacing:0.159608pt;}
.ls8{letter-spacing:0.319088pt;}
.ls9{letter-spacing:0.319148pt;}
.ls6{letter-spacing:0.319208pt;}
.ls5{letter-spacing:0.319212pt;}
.lsd{letter-spacing:0.319272pt;}
.ls0{letter-spacing:0.639291pt;}
.ls7{letter-spacing:1.919379pt;}
.ls1{letter-spacing:10.879403pt;}
.ls3{letter-spacing:14.079475pt;}
.ls4{letter-spacing:19.199351pt;}
.ls12{letter-spacing:19.839487pt;}
.ls13{letter-spacing:28.991334pt;}
.ls14{letter-spacing:751.999367pt;}
.ws2{word-spacing:-16.000601pt;}
.ws1{word-spacing:-15.999959pt;}
.ws4{word-spacing:-10.720400pt;}
.ws0{word-spacing:-9.691242pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-4.398524pt;}
._7{margin-left:-3.364767pt;}
._4{margin-left:-2.008255pt;}
._1{margin-left:-0.909570pt;}
._0{width:1.084230pt;}
._a{width:2.187332pt;}
._8{width:3.220621pt;}
._9{width:4.568172pt;}
._1c{width:5.497008pt;}
._18{width:6.420741pt;}
._1a{width:7.367925pt;}
._11{width:8.502111pt;}
._10{width:9.609111pt;}
._6{width:10.774405pt;}
._5{width:11.754441pt;}
._19{width:12.652225pt;}
._17{width:13.567760pt;}
._d{width:14.944811pt;}
._b{width:17.453156pt;}
._c{width:18.485444pt;}
._13{width:19.739741pt;}
._14{width:20.669337pt;}
._1b{width:22.158832pt;}
._29{width:23.050616pt;}
._1f{width:24.113822pt;}
._1e{width:25.039476pt;}
._3a{width:26.377455pt;}
._3b{width:27.330205pt;}
._2{width:28.278666pt;}
._3{width:29.402500pt;}
._1d{width:30.690403pt;}
._f{width:31.820231pt;}
._e{width:32.812232pt;}
._12{width:33.849272pt;}
._3c{width:34.857050pt;}
._3d{width:35.931109pt;}
._3f{width:37.148113pt;}
._3e{width:38.039929pt;}
._16{width:54.234537pt;}
._15{width:55.926851pt;}
._21{width:64.174410pt;}
._42{width:76.603801pt;}
._41{width:77.610989pt;}
._22{width:81.956328pt;}
._40{width:119.988417pt;}
._23{width:121.730572pt;}
._2a{width:253.506022pt;}
._38{width:320.012020pt;}
._33{width:339.838225pt;}
._2d{width:350.078217pt;}
._39{width:356.162628pt;}
._36{width:360.958221pt;}
._30{width:418.190109pt;}
._37{width:428.879609pt;}
._34{width:452.749815pt;}
._2e{width:463.631816pt;}
._2c{width:496.018631pt;}
._27{width:557.504940pt;}
._32{width:574.101564pt;}
._24{width:586.315324pt;}
._31{width:590.102165pt;}
._26{width:593.281284pt;}
._2f{width:635.544372pt;}
._28{width:655.384617pt;}
._25{width:662.929461pt;}
._35{width:680.986079pt;}
._2b{width:779.953993pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y6d{bottom:3.519958pt;}
.y76{bottom:3.520019pt;}
.y5c{bottom:3.520020pt;}
.y65{bottom:3.679993pt;}
.y60{bottom:3.839966pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y3d{bottom:94.240113pt;}
.y9f{bottom:101.120057pt;}
.y3c{bottom:112.640076pt;}
.y9e{bottom:119.520081pt;}
.y79{bottom:120.320069pt;}
.y3b{bottom:131.040039pt;}
.y9d{bottom:137.920044pt;}
.y78{bottom:138.720032pt;}
.y3a{bottom:149.440064pt;}
.y9c{bottom:156.320069pt;}
.y77{bottom:157.440064pt;}
.y39{bottom:167.840088pt;}
.y75{bottom:173.440064pt;}
.y9b{bottom:174.720032pt;}
.y74{bottom:176.960083pt;}
.y38{bottom:186.240052pt;}
.y9a{bottom:193.120057pt;}
.y73{bottom:196.000061pt;}
.y37{bottom:204.640076pt;}
.y99{bottom:211.520081pt;}
.y72{bottom:215.040039pt;}
.y36{bottom:223.040039pt;}
.y98{bottom:229.920044pt;}
.y71{bottom:234.080079pt;}
.y35{bottom:241.440064pt;}
.y97{bottom:248.320069pt;}
.y70{bottom:253.120057pt;}
.y34{bottom:259.520081pt;}
.y56{bottom:259.840088pt;}
.y96{bottom:266.720032pt;}
.y6f{bottom:268.320069pt;}
.y6e{bottom:272.160035pt;}
.y33{bottom:278.240052pt;}
.y95{bottom:285.120057pt;}
.y6c{bottom:287.520081pt;}
.y6b{bottom:291.040039pt;}
.y32{bottom:296.640076pt;}
.y94{bottom:303.520081pt;}
.y6a{bottom:310.080079pt;}
.y31{bottom:315.040039pt;}
.y93{bottom:321.920044pt;}
.y69{bottom:328.480042pt;}
.y30{bottom:333.440064pt;}
.y92{bottom:340.320069pt;}
.y68{bottom:347.200074pt;}
.y2f{bottom:351.840088pt;}
.y91{bottom:358.720032pt;}
.y67{bottom:365.600037pt;}
.y2e{bottom:370.240052pt;}
.ya2{bottom:370.720032pt;}
.y90{bottom:373.760071pt;}
.y8f{bottom:377.440064pt;}
.y66{bottom:384.000061pt;}
.y2d{bottom:388.640076pt;}
.y8e{bottom:396.480042pt;}
.y64{bottom:399.040039pt;}
.y63{bottom:402.720032pt;}
.y2c{bottom:407.040039pt;}
.y8d{bottom:415.680054pt;}
.y62{bottom:422.080079pt;}
.y2b{bottom:425.440064pt;}
.y8c{bottom:434.720032pt;}
.y61{bottom:441.120057pt;}
.y2a{bottom:443.840088pt;}
.y8b{bottom:453.760071pt;}
.y5f{bottom:456.320069pt;}
.y5e{bottom:460.160035pt;}
.y29{bottom:462.240052pt;}
.y8a{bottom:472.800049pt;}
.y5d{bottom:479.200074pt;}
.y28{bottom:480.640076pt;}
.y89{bottom:491.840088pt;}
.y5b{bottom:494.560059pt;}
.y5a{bottom:498.080079pt;}
.y27{bottom:499.040039pt;}
.y88{bottom:510.880066pt;}
.y59{bottom:517.120057pt;}
.y26{bottom:517.440064pt;}
.y87{bottom:530.080079pt;}
.y58{bottom:535.520081pt;}
.y25{bottom:535.840088pt;}
.y86{bottom:540.480042pt;}
.y24{bottom:554.240052pt;}
.y85{bottom:569.920044pt;}
.y23{bottom:572.640076pt;}
.y84{bottom:588.320069pt;}
.y22{bottom:591.040039pt;}
.y83{bottom:606.720032pt;}
.y21{bottom:609.120057pt;}
.y55{bottom:609.440064pt;}
.y82{bottom:625.280060pt;}
.y20{bottom:627.200074pt;}
.y54{bottom:627.840058pt;}
.y1f{bottom:642.560059pt;}
.y81{bottom:644.960053pt;}
.y53{bottom:646.240052pt;}
.y1e{bottom:657.920044pt;}
.y80{bottom:663.360047pt;}
.y52{bottom:664.640046pt;}
.y1d{bottom:673.600068pt;}
.y7f{bottom:681.760071pt;}
.y51{bottom:683.040070pt;}
.y1c{bottom:692.320069pt;}
.y7e{bottom:700.160065pt;}
.y50{bottom:701.440064pt;}
.y1b{bottom:710.720063pt;}
.y7d{bottom:718.560059pt;}
.y4f{bottom:719.840058pt;}
.y1a{bottom:728.800049pt;}
.y7c{bottom:736.960053pt;}
.y4e{bottom:738.240052pt;}
.y19{bottom:747.520050pt;}
.y7b{bottom:755.360047pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:765.920044pt;}
.y7a{bottom:773.760071pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:784.000061pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:802.400055pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:820.800049pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:839.200074pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:857.600068pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:876.000061pt;}
.y46{bottom:885.120057pt;}
.y57{bottom:885.440064pt;}
.y11{bottom:894.400055pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:912.800064pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:931.040055pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:949.440064pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:967.840058pt;}
.ya1{bottom:977.120057pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:988.482281pt;}
.ya0{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.he{height:17.919983pt;}
.h10{height:18.080017pt;}
.hd{height:18.080018pt;}
.hc{height:18.239990pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.h11{height:46.595500pt;}
.h9{height:51.939451pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h12{height:58.566137pt;}
.hf{height:93.105837pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:6.879944pt;}
.w9{width:6.879975pt;}
.w8{width:7.039978pt;}
.w6{width:7.040009pt;}
.w7{width:8.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2e{left:76.480003pt;}
.x10{left:80.000000pt;}
.xd{left:87.519997pt;}
.x11{left:90.239998pt;}
.x9{left:93.437260pt;}
.x1b{left:99.519997pt;}
.xc{left:103.040001pt;}
.xb{left:106.239998pt;}
.x8{left:107.523166pt;}
.x12{left:110.239998pt;}
.x19{left:113.279999pt;}
.x1a{left:122.720001pt;}
.x30{left:132.639999pt;}
.x32{left:136.639999pt;}
.x33{left:140.639999pt;}
.xa{left:204.476048pt;}
.x28{left:238.720001pt;}
.x26{left:258.720001pt;}
.x20{left:261.760010pt;}
.x1e{left:264.799988pt;}
.x25{left:285.440002pt;}
.x1d{left:291.679993pt;}
.x23{left:295.519989pt;}
.x2b{left:304.480011pt;}
.x21{left:324.000000pt;}
.x22{left:338.559998pt;}
.x29{left:347.200012pt;}
.xe{left:351.519989pt;}
.x35{left:355.359985pt;}
.x31{left:357.920013pt;}
.x24{left:366.559998pt;}
.x2f{left:374.559998pt;}
.x2{left:384.799988pt;}
.x34{left:392.799988pt;}
.xf{left:396.799988pt;}
.x2d{left:408.799988pt;}
.x2c{left:440.320007pt;}
.x2a{left:444.320007pt;}
.x14{left:464.320007pt;}
.x17{left:501.760010pt;}
.x13{left:527.840027pt;}
.x1f{left:531.840027pt;}
.x15{left:536.799988pt;}
.x27{left:554.880005pt;}
.x16{left:636.159973pt;}
.x1c{left:656.640015pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x18{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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