
    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_17459fa97908a266bfa50eb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740234;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_3009ebbcc9f7729f68b70938.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_1c2b34b531fd6f97cd535c49.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_34ad3a6016ed0301f84354c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_1a5349407c6c3dab30218c6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.494140px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-13.599418px;}
._16{margin-left:-9.281249px;}
._15{margin-left:-7.952525px;}
._13{margin-left:-6.609938px;}
._3{margin-left:-5.527312px;}
._0{margin-left:-3.972659px;}
._a{margin-left:-2.745832px;}
._1{margin-left:-1.300778px;}
._6{width:4.363019px;}
._9{width:5.458848px;}
._5{width:9.000563px;}
._4{width:13.472058px;}
._7{width:17.912365px;}
._8{width:22.362290px;}
._e{width:23.463974px;}
._d{width:27.000016px;}
._c{width:31.499996px;}
._b{width:36.000002px;}
._14{width:40.499999px;}
._12{width:49.023392px;}
._11{width:50.453230px;}
._f{width:53.761689px;}
._10{width:54.953241px;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y68{bottom:3.496581px;}
.y24{bottom:3.496583px;}
.yb7{bottom:89.480709px;}
.y89{bottom:89.480718px;}
.ya0{bottom:89.480719px;}
.y45{bottom:90.829657px;}
.yb6{bottom:120.528073px;}
.y88{bottom:120.528081px;}
.y9f{bottom:120.528082px;}
.y44{bottom:121.877024px;}
.yea{bottom:122.764165px;}
.y66{bottom:137.178955px;}
.ye9{bottom:143.462408px;}
.y9e{bottom:150.226312px;}
.yb5{bottom:151.575436px;}
.ycd{bottom:151.575438px;}
.y87{bottom:151.575444px;}
.y43{bottom:152.924385px;}
.y65{bottom:168.226323px;}
.ye8{bottom:182.160643px;}
.yb4{bottom:182.622799px;}
.ycc{bottom:182.622801px;}
.y86{bottom:182.622808px;}
.y42{bottom:183.971740px;}
.y9d{bottom:199.273679px;}
.y64{bottom:199.273686px;}
.ye7{bottom:202.858885px;}
.yb3{bottom:213.670163px;}
.ycb{bottom:213.670164px;}
.y85{bottom:213.670171px;}
.y41{bottom:215.019103px;}
.ye6{bottom:223.557127px;}
.y9c{bottom:230.321047px;}
.y63{bottom:230.321049px;}
.yb2{bottom:243.368408px;}
.yca{bottom:244.717528px;}
.y84{bottom:244.717534px;}
.y40{bottom:246.066286px;}
.y62{bottom:261.368413px;}
.y9b{bottom:261.368414px;}
.ye5{bottom:262.255378px;}
.y22{bottom:273.276668px;}
.yc9{bottom:275.764891px;}
.y83{bottom:275.764898px;}
.y3f{bottom:277.113649px;}
.ye4{bottom:282.953620px;}
.y9a{bottom:292.415770px;}
.y61{bottom:292.415776px;}
.ye3{bottom:303.651863px;}
.y82{bottom:306.812253px;}
.yc8{bottom:306.812254px;}
.y3e{bottom:308.161013px;}
.y21{bottom:311.974913px;}
.y99{bottom:323.463138px;}
.y60{bottom:323.463139px;}
.y3d{bottom:337.859258px;}
.y81{bottom:337.859616px;}
.yc7{bottom:337.859618px;}
.y20{bottom:341.024224px;}
.ye2{bottom:342.350092px;}
.yb1{bottom:354.510494px;}
.y98{bottom:354.510501px;}
.y5f{bottom:354.510503px;}
.ye1{bottom:363.048338px;}
.y1f{bottom:367.272771px;}
.yc6{bottom:367.557862px;}
.y80{bottom:368.906979px;}
.ye0{bottom:383.746585px;}
.y1e{bottom:384.521306px;}
.yb0{bottom:385.557862px;}
.y5e{bottom:385.557864px;}
.y3c{bottom:386.906613px;}
.y7f{bottom:399.954343px;}
.y1d{bottom:401.769841px;}
.ydf{bottom:404.444828px;}
.yc5{bottom:416.605222px;}
.y5d{bottom:416.605228px;}
.yaf{bottom:416.605229px;}
.y3b{bottom:417.953976px;}
.y1c{bottom:419.018376px;}
.y7e{bottom:431.001706px;}
.y1b{bottom:436.266912px;}
.yde{bottom:443.143060px;}
.yae{bottom:447.652585px;}
.yc4{bottom:447.652589px;}
.y5c{bottom:447.652591px;}
.y3a{bottom:449.001339px;}
.y1a{bottom:453.515444px;}
.y7d{bottom:462.049069px;}
.ydd{bottom:463.841302px;}
.y19{bottom:470.763979px;}
.yc3{bottom:478.699945px;}
.yad{bottom:478.699953px;}
.y5b{bottom:478.699954px;}
.y39{bottom:480.048703px;}
.y7c{bottom:493.096432px;}
.ydc{bottom:502.539553px;}
.y18{bottom:506.012553px;}
.yc2{bottom:509.747313px;}
.yac{bottom:509.747316px;}
.y5a{bottom:509.747318px;}
.y38{bottom:511.096066px;}
.ydb{bottom:523.237795px;}
.y7b{bottom:524.143799px;}
.y17{bottom:532.261098px;}
.yc1{bottom:540.794676px;}
.yab{bottom:540.794679px;}
.y97{bottom:540.794680px;}
.y59{bottom:540.794695px;}
.y37{bottom:542.143429px;}
.yda{bottom:543.936037px;}
.y7a{bottom:555.191155px;}
.y16{bottom:558.509630px;}
.y96{bottom:571.842037px;}
.yc0{bottom:571.842039px;}
.yaa{bottom:571.842043px;}
.y58{bottom:571.842052px;}
.y36{bottom:573.190792px;}
.y15{bottom:575.758165px;}
.yd9{bottom:582.634282px;}
.y79{bottom:586.238523px;}
.y14{bottom:593.006700px;}
.ybf{bottom:602.889403px;}
.y95{bottom:602.889404px;}
.ya9{bottom:602.889406px;}
.y57{bottom:602.889419px;}
.yd8{bottom:603.332513px;}
.y35{bottom:604.238163px;}
.y13{bottom:610.255235px;}
.y78{bottom:617.285886px;}
.y12{bottom:627.503771px;}
.ybe{bottom:633.936766px;}
.ya8{bottom:633.936769px;}
.y94{bottom:633.936772px;}
.y56{bottom:633.936780px;}
.y34{bottom:635.285526px;}
.yd7{bottom:642.030758px;}
.y11{bottom:644.752303px;}
.y77{bottom:648.333249px;}
.yf9{bottom:651.897224px;}
.y10{bottom:662.000838px;}
.yd6{bottom:662.729002px;}
.y93{bottom:664.984128px;}
.ybd{bottom:664.984129px;}
.ya7{bottom:664.984132px;}
.y55{bottom:664.984135px;}
.y33{bottom:666.332889px;}
.y76{bottom:679.380613px;}
.yf8{bottom:689.267575px;}
.ya6{bottom:696.031488px;}
.ybc{bottom:696.031493px;}
.y92{bottom:696.031495px;}
.y54{bottom:696.031498px;}
.y32{bottom:697.380253px;}
.yf{bottom:697.898348px;}
.yd5{bottom:701.427248px;}
.yf7{bottom:709.965818px;}
.y75{bottom:710.427976px;}
.y91{bottom:727.078852px;}
.ybb{bottom:727.078856px;}
.y53{bottom:727.078870px;}
.y31{bottom:728.427616px;}
.ye{bottom:736.596593px;}
.yd4{bottom:740.125492px;}
.y74{bottom:741.475339px;}
.yf6{bottom:748.664062px;}
.y52{bottom:758.126044px;}
.ya5{bottom:758.126214px;}
.y90{bottom:758.126219px;}
.yba{bottom:758.126224px;}
.y30{bottom:759.474979px;}
.y73{bottom:772.522703px;}
.yd{bottom:775.294838px;}
.yf5{bottom:787.362308px;}
.yd3{bottom:789.172849px;}
.y51{bottom:789.173408px;}
.ya4{bottom:789.173578px;}
.yb9{bottom:789.173580px;}
.y8f{bottom:789.173587px;}
.y2f{bottom:790.522343px;}
.y72{bottom:802.220948px;}
.yc{bottom:813.993067px;}
.yd2{bottom:820.220205px;}
.y50{bottom:820.220764px;}
.ya3{bottom:820.220941px;}
.y8e{bottom:820.220943px;}
.yb8{bottom:820.220947px;}
.y2e{bottom:821.569705px;}
.yf4{bottom:826.060540px;}
.yf3{bottom:846.758783px;}
.yd1{bottom:851.267572px;}
.y4f{bottom:851.268127px;}
.ya2{bottom:851.268304px;}
.y8d{bottom:851.268310px;}
.y71{bottom:851.268314px;}
.y2d{bottom:852.617061px;}
.yb{bottom:852.691315px;}
.ya{bottom:873.389558px;}
.yd0{bottom:882.314944px;}
.y4e{bottom:882.315490px;}
.ya1{bottom:882.315668px;}
.y70{bottom:882.315670px;}
.y8c{bottom:882.315673px;}
.y2c{bottom:883.664428px;}
.yf2{bottom:885.457027px;}
.y9{bottom:912.087805px;}
.ycf{bottom:913.362307px;}
.y4d{bottom:913.362854px;}
.y8b{bottom:913.363036px;}
.y6f{bottom:913.363038px;}
.y2b{bottom:914.711791px;}
.yf1{bottom:924.155273px;}
.y8{bottom:932.786047px;}
.yce{bottom:944.409662px;}
.y4c{bottom:944.410217px;}
.y6e{bottom:944.410401px;}
.y2a{bottom:945.759154px;}
.yf0{bottom:962.853517px;}
.y7{bottom:971.484277px;}
.y4b{bottom:975.457580px;}
.y6d{bottom:975.457764px;}
.y29{bottom:976.806518px;}
.yef{bottom:1001.551758px;}
.y4a{bottom:1006.504944px;}
.y8a{bottom:1006.505126px;}
.y6c{bottom:1006.505128px;}
.y28{bottom:1007.853881px;}
.y6{bottom:1010.182525px;}
.yee{bottom:1022.250000px;}
.y49{bottom:1037.552306px;}
.y6b{bottom:1037.552491px;}
.y27{bottom:1038.901244px;}
.y5{bottom:1039.880768px;}
.yed{bottom:1060.948242px;}
.y4{bottom:1063.823628px;}
.y48{bottom:1068.599669px;}
.y6a{bottom:1068.599854px;}
.y26{bottom:1069.948608px;}
.yec{bottom:1099.646484px;}
.y25{bottom:1099.646850px;}
.y47{bottom:1099.647033px;}
.y69{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.yeb{bottom:1116.451171px;}
.y23{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y46{bottom:1116.451720px;}
.y67{bottom:1116.451905px;}
.h2{height:48.049806px;}
.h7{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:53.789061px;}
.h6{height:63.949219px;}
.h4{height:64.546875px;}
.h5{height:85.265628px;}
.h3{height:118.335940px;}
.hc{height:146.548095px;}
.hb{height:146.548280px;}
.h1{height:146.548382px;}
.ha{height:146.548462px;}
.hd{height:146.548829px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x3{left:147.028279px;}
.xc{left:213.075005px;}
.x6{left:279.927686px;}
.x2{left:282.239210px;}
.x5{left:291.700636px;}
.x7{left:297.672804px;}
.xb{left:301.950005px;}
.x4{left:467.719205px;}
.x9{left:475.715918px;}
.xa{left:602.832132px;}
.x8{left:807.863416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:11.994791pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-12.088371pt;}
._16{margin-left:-8.249999pt;}
._15{margin-left:-7.068911pt;}
._13{margin-left:-5.875501pt;}
._3{margin-left:-4.913166pt;}
._0{margin-left:-3.531252pt;}
._a{margin-left:-2.440739pt;}
._1{margin-left:-1.156247pt;}
._6{width:3.878240pt;}
._9{width:4.852309pt;}
._5{width:8.000500pt;}
._4{width:11.975162pt;}
._7{width:15.922102pt;}
._8{width:19.877591pt;}
._e{width:20.856866pt;}
._d{width:24.000014pt;}
._c{width:27.999996pt;}
._b{width:32.000002pt;}
._14{width:35.999999pt;}
._12{width:43.576348pt;}
._11{width:44.847316pt;}
._f{width:47.788168pt;}
._10{width:48.847325pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y68{bottom:3.108072pt;}
.y24{bottom:3.108073pt;}
.yb7{bottom:79.538408pt;}
.y89{bottom:79.538416pt;}
.ya0{bottom:79.538417pt;}
.y45{bottom:80.737473pt;}
.yb6{bottom:107.136065pt;}
.y88{bottom:107.136072pt;}
.y9f{bottom:107.136073pt;}
.y44{bottom:108.335133pt;}
.yea{bottom:109.123703pt;}
.y66{bottom:121.936849pt;}
.ye9{bottom:127.522140pt;}
.y9e{bottom:133.534500pt;}
.yb5{bottom:134.733721pt;}
.ycd{bottom:134.733723pt;}
.y87{bottom:134.733728pt;}
.y43{bottom:135.932787pt;}
.y65{bottom:149.534509pt;}
.ye8{bottom:161.920571pt;}
.yb4{bottom:162.331377pt;}
.ycc{bottom:162.331379pt;}
.y86{bottom:162.331385pt;}
.y42{bottom:163.530436pt;}
.y9d{bottom:177.132159pt;}
.y64{bottom:177.132165pt;}
.ye7{bottom:180.319009pt;}
.yb3{bottom:189.929033pt;}
.ycb{bottom:189.929035pt;}
.y85{bottom:189.929041pt;}
.y41{bottom:191.128092pt;}
.ye6{bottom:198.717447pt;}
.y9c{bottom:204.729819pt;}
.y63{bottom:204.729821pt;}
.yb2{bottom:216.327473pt;}
.yca{bottom:217.526692pt;}
.y84{bottom:217.526697pt;}
.y40{bottom:218.725588pt;}
.y62{bottom:232.327478pt;}
.y9b{bottom:232.327479pt;}
.ye5{bottom:233.115891pt;}
.y22{bottom:242.912593pt;}
.yc9{bottom:245.124348pt;}
.y83{bottom:245.124353pt;}
.y3f{bottom:246.323244pt;}
.ye4{bottom:251.514329pt;}
.y9a{bottom:259.925129pt;}
.y61{bottom:259.925134pt;}
.ye3{bottom:269.912767pt;}
.y82{bottom:272.722002pt;}
.yc8{bottom:272.722004pt;}
.y3e{bottom:273.920900pt;}
.y21{bottom:277.311033pt;}
.y99{bottom:287.522789pt;}
.y60{bottom:287.522790pt;}
.y3d{bottom:300.319340pt;}
.y81{bottom:300.319659pt;}
.yc7{bottom:300.319660pt;}
.y20{bottom:303.132644pt;}
.ye2{bottom:304.311193pt;}
.yb1{bottom:315.120439pt;}
.y98{bottom:315.120445pt;}
.y5f{bottom:315.120447pt;}
.ye1{bottom:322.709633pt;}
.y1f{bottom:326.464685pt;}
.yc6{bottom:326.718100pt;}
.y80{bottom:327.917314pt;}
.ye0{bottom:341.108076pt;}
.y1e{bottom:341.796716pt;}
.yb0{bottom:342.718099pt;}
.y5e{bottom:342.718101pt;}
.y3c{bottom:343.916989pt;}
.y7f{bottom:355.514971pt;}
.y1d{bottom:357.128747pt;}
.ydf{bottom:359.506513pt;}
.yc5{bottom:370.315752pt;}
.y5d{bottom:370.315758pt;}
.yaf{bottom:370.315759pt;}
.y3b{bottom:371.514645pt;}
.y1c{bottom:372.460778pt;}
.y7e{bottom:383.112627pt;}
.y1b{bottom:387.792810pt;}
.yde{bottom:393.904942pt;}
.yae{bottom:397.913409pt;}
.yc4{bottom:397.913412pt;}
.y5c{bottom:397.913414pt;}
.y3a{bottom:399.112301pt;}
.y1a{bottom:403.124839pt;}
.y7d{bottom:410.710284pt;}
.ydd{bottom:412.303380pt;}
.y19{bottom:418.456871pt;}
.yc3{bottom:425.511062pt;}
.yad{bottom:425.511069pt;}
.y5b{bottom:425.511070pt;}
.y39{bottom:426.709958pt;}
.y7c{bottom:438.307940pt;}
.ydc{bottom:446.701824pt;}
.y18{bottom:449.788936pt;}
.yc2{bottom:453.108722pt;}
.yac{bottom:453.108725pt;}
.y5a{bottom:453.108727pt;}
.y38{bottom:454.307614pt;}
.ydb{bottom:465.100262pt;}
.y7b{bottom:465.905599pt;}
.y17{bottom:473.120976pt;}
.yc1{bottom:480.706379pt;}
.yab{bottom:480.706381pt;}
.y97{bottom:480.706382pt;}
.y59{bottom:480.706396pt;}
.y37{bottom:481.905270pt;}
.yda{bottom:483.498700pt;}
.y7a{bottom:493.503249pt;}
.y16{bottom:496.453004pt;}
.y96{bottom:508.304032pt;}
.yc0{bottom:508.304035pt;}
.yaa{bottom:508.304038pt;}
.y58{bottom:508.304046pt;}
.y36{bottom:509.502927pt;}
.y15{bottom:511.785035pt;}
.yd9{bottom:517.897140pt;}
.y79{bottom:521.100909pt;}
.y14{bottom:527.117066pt;}
.ybf{bottom:535.901691pt;}
.y95{bottom:535.901692pt;}
.ya9{bottom:535.901694pt;}
.y57{bottom:535.901706pt;}
.yd8{bottom:536.295567pt;}
.y35{bottom:537.100589pt;}
.y13{bottom:542.449097pt;}
.y78{bottom:548.698565pt;}
.y12{bottom:557.781129pt;}
.ybe{bottom:563.499347pt;}
.ya8{bottom:563.499350pt;}
.y94{bottom:563.499352pt;}
.y56{bottom:563.499360pt;}
.y34{bottom:564.698245pt;}
.yd7{bottom:570.694007pt;}
.y11{bottom:573.113158pt;}
.y77{bottom:576.296221pt;}
.yf9{bottom:579.464199pt;}
.y10{bottom:588.445190pt;}
.yd6{bottom:589.092447pt;}
.y93{bottom:591.097002pt;}
.ybd{bottom:591.097004pt;}
.ya7{bottom:591.097007pt;}
.y55{bottom:591.097009pt;}
.y33{bottom:592.295901pt;}
.y76{bottom:603.893878pt;}
.yf8{bottom:612.682289pt;}
.ya6{bottom:618.694656pt;}
.ybc{bottom:618.694660pt;}
.y92{bottom:618.694663pt;}
.y54{bottom:618.694665pt;}
.y32{bottom:619.893558pt;}
.yf{bottom:620.354087pt;}
.yd5{bottom:623.490887pt;}
.yf7{bottom:631.080727pt;}
.y75{bottom:631.491534pt;}
.y91{bottom:646.292312pt;}
.ybb{bottom:646.292316pt;}
.y53{bottom:646.292329pt;}
.y31{bottom:647.491214pt;}
.ye{bottom:654.752527pt;}
.yd4{bottom:657.889327pt;}
.y74{bottom:659.089190pt;}
.yf6{bottom:665.479167pt;}
.y52{bottom:673.889817pt;}
.ya5{bottom:673.889968pt;}
.y90{bottom:673.889972pt;}
.yba{bottom:673.889976pt;}
.y30{bottom:675.088870pt;}
.y73{bottom:686.686847pt;}
.yd{bottom:689.150967pt;}
.yf5{bottom:699.877607pt;}
.yd3{bottom:701.486976pt;}
.y51{bottom:701.487473pt;}
.ya4{bottom:701.487625pt;}
.yb9{bottom:701.487626pt;}
.y8f{bottom:701.487633pt;}
.y2f{bottom:702.686527pt;}
.y72{bottom:713.085287pt;}
.yc{bottom:723.549393pt;}
.yd2{bottom:729.084627pt;}
.y50{bottom:729.085124pt;}
.ya3{bottom:729.085281pt;}
.y8e{bottom:729.085282pt;}
.yb8{bottom:729.085286pt;}
.y2e{bottom:730.284182pt;}
.yf4{bottom:734.276036pt;}
.yf3{bottom:752.674473pt;}
.yd1{bottom:756.682287pt;}
.y4f{bottom:756.682780pt;}
.ya2{bottom:756.682937pt;}
.y8d{bottom:756.682942pt;}
.y71{bottom:756.682946pt;}
.y2d{bottom:757.881832pt;}
.yb{bottom:757.947836pt;}
.ya{bottom:776.346273pt;}
.yd0{bottom:784.279950pt;}
.y4e{bottom:784.280436pt;}
.ya1{bottom:784.280593pt;}
.y70{bottom:784.280596pt;}
.y8c{bottom:784.280598pt;}
.y2c{bottom:785.479492pt;}
.yf2{bottom:787.072913pt;}
.y9{bottom:810.744716pt;}
.ycf{bottom:811.877606pt;}
.y4d{bottom:811.878093pt;}
.y8b{bottom:811.878255pt;}
.y6f{bottom:811.878256pt;}
.y2b{bottom:813.077148pt;}
.yf1{bottom:821.471353pt;}
.y8{bottom:829.143153pt;}
.yce{bottom:839.475255pt;}
.y4c{bottom:839.475749pt;}
.y6e{bottom:839.475912pt;}
.y2a{bottom:840.674804pt;}
.yf0{bottom:855.869793pt;}
.y7{bottom:863.541580pt;}
.y4b{bottom:867.073405pt;}
.y6d{bottom:867.073568pt;}
.y29{bottom:868.272461pt;}
.yef{bottom:890.268229pt;}
.y4a{bottom:894.671061pt;}
.y8a{bottom:894.671223pt;}
.y6c{bottom:894.671225pt;}
.y28{bottom:895.870117pt;}
.y6{bottom:897.940023pt;}
.yee{bottom:908.666667pt;}
.y49{bottom:922.268717pt;}
.y6b{bottom:922.268881pt;}
.y27{bottom:923.467773pt;}
.y5{bottom:924.338460pt;}
.yed{bottom:943.065104pt;}
.y4{bottom:945.621003pt;}
.y48{bottom:949.866373pt;}
.y6a{bottom:949.866537pt;}
.y26{bottom:951.065429pt;}
.yec{bottom:977.463541pt;}
.y25{bottom:977.463867pt;}
.y47{bottom:977.464029pt;}
.y69{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.yeb{bottom:992.401041pt;}
.y23{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y46{bottom:992.401529pt;}
.y67{bottom:992.401693pt;}
.h2{height:42.710938pt;}
.h7{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:47.812499pt;}
.h6{height:56.843750pt;}
.h4{height:57.375000pt;}
.h5{height:75.791669pt;}
.h3{height:105.187502pt;}
.hc{height:130.264973pt;}
.hb{height:130.265137pt;}
.h1{height:130.265228pt;}
.ha{height:130.265300pt;}
.hd{height:130.265625pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x3{left:130.691804pt;}
.xc{left:189.400004pt;}
.x6{left:248.824610pt;}
.x2{left:250.879298pt;}
.x5{left:259.289454pt;}
.x7{left:264.598048pt;}
.xb{left:268.400004pt;}
.x4{left:415.750404pt;}
.x9{left:422.858594pt;}
.xa{left:535.850784pt;}
.x8{left:718.100814pt;}
}




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