
    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_5bc3fa8f5474b4eef84a48dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b8f00543e51ce3fad4eabb8a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5dfeb153d55ddfbda5c83241.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_87656d16cabbea00aed4a2e7.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.399980px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.378514px;}
.ls2{letter-spacing:503.587599px;}
.ls1{letter-spacing:563.382975px;}
.ls5{letter-spacing:584.273766px;}
.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;}
}
.ws3{word-spacing:-35.855986px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.939994px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.034774px;}
._0{width:1.006150px;}
._2{width:2.114688px;}
._5{width:16.840116px;}
._3{width:315.169074px;}
._4{width:788.126085px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.599129px;}
.ye6{bottom:3.599224px;}
.yf0{bottom:3.599302px;}
.y1{bottom:57.720277px;}
.y2f{bottom:116.579953px;}
.yf3{bottom:125.759950px;}
.y7c{bottom:125.940250px;}
.y61{bottom:126.300249px;}
.y92{bottom:131.519947px;}
.yca{bottom:134.939946px;}
.y97{bottom:137.099945px;}
.y98{bottom:137.100245px;}
.y2e{bottom:137.279945px;}
.y106{bottom:141.240244px;}
.y7b{bottom:146.640241px;}
.y60{bottom:147.000241px;}
.y9a{bottom:147.179941px;}
.y96{bottom:154.379938px;}
.yc9{bottom:155.639938px;}
.y2d{bottom:157.979937px;}
.y7a{bottom:167.340233px;}
.yf2{bottom:167.519933px;}
.y5f{bottom:167.700233px;}
.y95{bottom:171.479931px;}
.yc8{bottom:176.339929px;}
.y2c{bottom:178.679929px;}
.y105{bottom:183.000227px;}
.y91{bottom:183.359927px;}
.y79{bottom:187.680225px;}
.y7f{bottom:188.040225px;}
.y5e{bottom:188.400225px;}
.y94{bottom:188.759924px;}
.y99{bottom:196.679921px;}
.yc7{bottom:197.039921px;}
.y2b{bottom:199.379920px;}
.y93{bottom:206.039918px;}
.y78{bottom:208.740217px;}
.y5d{bottom:209.100216px;}
.y90{bottom:212.159915px;}
.yc6{bottom:217.739913px;}
.yf1{bottom:219.719912px;}
.y2a{bottom:220.079912px;}
.y104{bottom:224.760210px;}
.y77{bottom:229.440208px;}
.y5c{bottom:229.800208px;}
.yee{bottom:232.319907px;}
.yc5{bottom:238.439905px;}
.y29{bottom:240.779904px;}
.yef{bottom:242.040600px;}
.y8f{bottom:244.560202px;}
.y76{bottom:250.140200px;}
.y5b{bottom:250.500200px;}
.yc4{bottom:259.139896px;}
.y28{bottom:261.479895px;}
.yeb{bottom:265.979894px;}
.y103{bottom:266.340193px;}
.y75{bottom:270.840192px;}
.y5a{bottom:271.200192px;}
.yc3{bottom:279.839888px;}
.y27{bottom:282.179887px;}
.y8e{bottom:291.000184px;}
.y74{bottom:291.540183px;}
.y59{bottom:291.900183px;}
.yc2{bottom:300.539880px;}
.y26{bottom:302.879879px;}
.y102{bottom:308.100177px;}
.y73{bottom:312.240175px;}
.y58{bottom:312.600175px;}
.yea{bottom:315.479874px;}
.yc1{bottom:321.239872px;}
.y25{bottom:323.579871px;}
.yed{bottom:325.559870px;}
.y72{bottom:332.940167px;}
.y57{bottom:333.300167px;}
.ye4{bottom:333.479867px;}
.ye9{bottom:341.399863px;}
.yc0{bottom:341.939863px;}
.y24{bottom:344.279862px;}
.y101{bottom:349.680160px;}
.y71{bottom:353.640159px;}
.y56{bottom:354.000158px;}
.ybf{bottom:362.639855px;}
.ye8{bottom:367.139853px;}
.y70{bottom:374.340150px;}
.y55{bottom:374.700150px;}
.yec{bottom:377.579849px;}
.ye3{bottom:380.459848px;}
.ybe{bottom:383.339847px;}
.y23{bottom:385.499846px;}
.y100{bottom:391.440143px;}
.y6f{bottom:395.040142px;}
.y54{bottom:395.400142px;}
.ybd{bottom:404.039838px;}
.ye7{bottom:414.119834px;}
.y6e{bottom:415.740134px;}
.y53{bottom:416.100134px;}
.ybc{bottom:424.739830px;}
.y22{bottom:427.619829px;}
.yff{bottom:433.200127px;}
.y6d{bottom:436.440125px;}
.ye5{bottom:436.440600px;}
.y52{bottom:436.800125px;}
.ybb{bottom:445.439822px;}
.y21{bottom:448.319821px;}
.y6c{bottom:457.140117px;}
.y51{bottom:457.500117px;}
.yba{bottom:465.779814px;}
.ye2{bottom:468.119813px;}
.y20{bottom:469.019812px;}
.yfe{bottom:474.780110px;}
.y6b{bottom:477.840109px;}
.y50{bottom:478.200109px;}
.y1f{bottom:489.719804px;}
.y6a{bottom:498.180101px;}
.y7e{bottom:498.540101px;}
.y4f{bottom:498.900100px;}
.yb9{bottom:507.719797px;}
.y1e{bottom:510.419796px;}
.ye1{bottom:514.919794px;}
.yfd{bottom:516.540093px;}
.y69{bottom:519.240092px;}
.y4e{bottom:519.600092px;}
.y1d{bottom:531.119788px;}
.y68{bottom:539.940084px;}
.y4d{bottom:540.300084px;}
.y1c{bottom:551.819779px;}
.yb8{bottom:553.079779px;}
.yfc{bottom:558.300077px;}
.y67{bottom:560.640076px;}
.y4c{bottom:561.000076px;}
.ye0{bottom:561.899775px;}
.yb7{bottom:570.359772px;}
.y1b{bottom:572.519771px;}
.yb5{bottom:574.859770px;}
.y66{bottom:581.340067px;}
.y4b{bottom:581.700067px;}
.yb6{bottom:587.639765px;}
.y1a{bottom:592.859763px;}
.yfb{bottom:599.880060px;}
.ydf{bottom:600.779760px;}
.y65{bottom:602.040059px;}
.y4a{bottom:602.400059px;}
.y19{bottom:613.919754px;}
.yb3{bottom:617.879753px;}
.y64{bottom:622.740051px;}
.y49{bottom:623.100051px;}
.yda{bottom:624.539750px;}
.y18{bottom:634.619746px;}
.yfa{bottom:641.640043px;}
.y8d{bottom:643.440043px;}
.y48{bottom:643.800042px;}
.yd9{bottom:650.459740px;}
.y17{bottom:655.319738px;}
.yb2{bottom:656.939737px;}
.y8c{bottom:664.140034px;}
.y47{bottom:664.500034px;}
.yd7{bottom:672.780600px;}
.y16{bottom:676.019730px;}
.yf9{bottom:683.400027px;}
.y8b{bottom:684.840026px;}
.y46{bottom:685.200026px;}
.yde{bottom:689.339724px;}
.y15{bottom:696.719721px;}
.y8a{bottom:705.540018px;}
.y45{bottom:705.900018px;}
.yb1{bottom:706.619717px;}
.y14{bottom:717.419713px;}
.yf8{bottom:724.980010px;}
.y89{bottom:726.240010px;}
.y44{bottom:726.600009px;}
.yad{bottom:729.659708px;}
.yb4{bottom:730.019708px;}
.y13{bottom:738.119705px;}
.ydd{bottom:739.019704px;}
.yb0{bottom:745.499702px;}
.y88{bottom:746.940001px;}
.y43{bottom:747.300001px;}
.y12{bottom:758.819696px;}
.yf7{bottom:766.739993px;}
.y87{bottom:767.639993px;}
.y42{bottom:767.999993px;}
.ydc{bottom:777.899689px;}
.y11{bottom:779.519688px;}
.y86{bottom:788.339985px;}
.y41{bottom:788.699985px;}
.yaf{bottom:797.519681px;}
.y10{bottom:800.219680px;}
.yf6{bottom:808.499977px;}
.y85{bottom:809.039976px;}
.y40{bottom:809.399976px;}
.yf{bottom:820.919672px;}
.y84{bottom:829.379968px;}
.y7d{bottom:829.739968px;}
.ydb{bottom:829.919668px;}
.y3f{bottom:830.099968px;}
.yae{bottom:839.279664px;}
.ye{bottom:841.619663px;}
.yf5{bottom:850.079960px;}
.y83{bottom:850.439960px;}
.y3e{bottom:850.799960px;}
.yd1{bottom:852.959659px;}
.yd{bottom:862.319655px;}
.yac{bottom:863.759654px;}
.y80{bottom:871.139952px;}
.y3d{bottom:871.499951px;}
.yab{bottom:881.039648px;}
.yc{bottom:882.659647px;}
.yd5{bottom:887.159645px;}
.y63{bottom:891.839943px;}
.y3c{bottom:892.199943px;}
.yd0{bottom:894.719642px;}
.yaa{bottom:898.319641px;}
.yb{bottom:903.359639px;}
.y3b{bottom:912.899935px;}
.ya9{bottom:915.599634px;}
.ya{bottom:924.059630px;}
.ya8{bottom:932.879627px;}
.y62{bottom:933.239927px;}
.y3a{bottom:933.599927px;}
.yd4{bottom:933.959626px;}
.yd6{bottom:938.999624px;}
.ycf{bottom:944.219622px;}
.y9{bottom:944.759622px;}
.ya7{bottom:950.159620px;}
.y39{bottom:954.299918px;}
.yd3{bottom:959.879616px;}
.y8{bottom:965.459614px;}
.ya6{bottom:967.259613px;}
.yce{bottom:970.139612px;}
.y38{bottom:974.999910px;}
.ya5{bottom:984.539606px;}
.y7{bottom:986.159606px;}
.yd2{bottom:987.959605px;}
.y37{bottom:995.699902px;}
.ya4{bottom:1001.819599px;}
.y9b{bottom:1006.319597px;}
.y6{bottom:1006.859597px;}
.y36{bottom:1016.399893px;}
.ycd{bottom:1016.939593px;}
.ya3{bottom:1019.099592px;}
.y5{bottom:1027.559589px;}
.ya2{bottom:1036.379585px;}
.ycc{bottom:1036.739885px;}
.y35{bottom:1037.099885px;}
.y4{bottom:1048.619581px;}
.ya1{bottom:1053.479579px;}
.y107{bottom:1057.439877px;}
.y34{bottom:1057.799877px;}
.y3{bottom:1069.319572px;}
.ya0{bottom:1070.759572px;}
.ycb{bottom:1077.779869px;}
.y33{bottom:1078.499869px;}
.y2{bottom:1085.519566px;}
.y9f{bottom:1088.039565px;}
.y82{bottom:1098.839860px;}
.y32{bottom:1099.199860px;}
.y9e{bottom:1105.319558px;}
.y81{bottom:1119.539852px;}
.y31{bottom:1119.899852px;}
.y9d{bottom:1122.599551px;}
.y9c{bottom:1139.879544px;}
.yf4{bottom:1140.239844px;}
.y30{bottom:1140.599844px;}
.h4{height:16.920000px;}
.h6{height:49.992168px;}
.h3{height:52.435877px;}
.h1{height:63.175756px;}
.h2{height:63.949193px;}
.h5{height:113.575736px;}
.h0{height:1263.000000px;}
.w1{width:192.600000px;}
.w2{width:309.600000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619938px;}
.x4{left:170.461454px;}
.x12{left:174.059930px;}
.x5{left:196.559921px;}
.x1c{left:207.179917px;}
.xa{left:244.439902px;}
.xd{left:276.659889px;}
.x15{left:294.299882px;}
.x16{left:321.298933px;}
.x17{left:325.799870px;}
.x6{left:345.959862px;}
.xb{left:404.459838px;}
.x13{left:511.919795px;}
.x19{left:513.899794px;}
.x10{left:525.599790px;}
.xf{left:530.459788px;}
.x22{left:534.779786px;}
.x7{left:540.179784px;}
.xe{left:546.839781px;}
.x1e{left:550.079780px;}
.x1d{left:552.059779px;}
.x1{left:586.439765px;}
.x18{left:596.159762px;}
.x21{left:632.159747px;}
.x8{left:651.419739px;}
.x1f{left:676.260179px;}
.x1a{left:687.419725px;}
.x1b{left:710.099716px;}
.x23{left:712.259715px;}
.x9{left:715.139714px;}
.x11{left:722.699711px;}
.x20{left:725.759710px;}
.xc{left:752.759699px;}
.x14{left:756.539697px;}
.x2{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.799982pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.336457pt;}
.ls2{letter-spacing:447.633421pt;}
.ls1{letter-spacing:500.784866pt;}
.ls5{letter-spacing:519.354459pt;}
.ws3{word-spacing:-31.871987pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-0.919799pt;}
._0{width:0.894356pt;}
._2{width:1.879722pt;}
._5{width:14.968992pt;}
._3{width:280.150288pt;}
._4{width:700.556520pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.199226pt;}
.ye6{bottom:3.199310pt;}
.yf0{bottom:3.199379pt;}
.y1{bottom:51.306913pt;}
.y2f{bottom:103.626625pt;}
.yf3{bottom:111.786622pt;}
.y7c{bottom:111.946889pt;}
.y61{bottom:112.266888pt;}
.y92{bottom:116.906620pt;}
.yca{bottom:119.946619pt;}
.y97{bottom:121.866618pt;}
.y98{bottom:121.866885pt;}
.y2e{bottom:122.026618pt;}
.y106{bottom:125.546883pt;}
.y7b{bottom:130.346881pt;}
.y60{bottom:130.666881pt;}
.y9a{bottom:130.826614pt;}
.y96{bottom:137.226612pt;}
.yc9{bottom:138.346611pt;}
.y2d{bottom:140.426610pt;}
.y7a{bottom:148.746874pt;}
.yf2{bottom:148.906607pt;}
.y5f{bottom:149.066874pt;}
.y95{bottom:152.426606pt;}
.yc8{bottom:156.746604pt;}
.y2c{bottom:158.826603pt;}
.y105{bottom:162.666868pt;}
.y91{bottom:162.986601pt;}
.y79{bottom:166.826867pt;}
.y7f{bottom:167.146866pt;}
.y5e{bottom:167.466866pt;}
.y94{bottom:167.786600pt;}
.y99{bottom:174.826597pt;}
.yc7{bottom:175.146597pt;}
.y2b{bottom:177.226596pt;}
.y93{bottom:183.146593pt;}
.y78{bottom:185.546859pt;}
.y5d{bottom:185.866859pt;}
.y90{bottom:188.586591pt;}
.yc6{bottom:193.546589pt;}
.yf1{bottom:195.306589pt;}
.y2a{bottom:195.626588pt;}
.y104{bottom:199.786853pt;}
.y77{bottom:203.946852pt;}
.y5c{bottom:204.266852pt;}
.yee{bottom:206.506584pt;}
.yc5{bottom:211.946582pt;}
.y29{bottom:214.026581pt;}
.yef{bottom:215.147200pt;}
.y8f{bottom:217.386846pt;}
.y76{bottom:222.346844pt;}
.y5b{bottom:222.666844pt;}
.yc4{bottom:230.346575pt;}
.y28{bottom:232.426574pt;}
.yeb{bottom:236.426572pt;}
.y103{bottom:236.746839pt;}
.y75{bottom:240.746837pt;}
.y5a{bottom:241.066837pt;}
.yc3{bottom:248.746567pt;}
.y27{bottom:250.826566pt;}
.y8e{bottom:258.666830pt;}
.y74{bottom:259.146830pt;}
.y59{bottom:259.466830pt;}
.yc2{bottom:267.146560pt;}
.y26{bottom:269.226559pt;}
.y102{bottom:273.866824pt;}
.y73{bottom:277.546822pt;}
.y58{bottom:277.866822pt;}
.yea{bottom:280.426554pt;}
.yc1{bottom:285.546552pt;}
.y25{bottom:287.626552pt;}
.yed{bottom:289.386551pt;}
.y72{bottom:295.946815pt;}
.y57{bottom:296.266815pt;}
.ye4{bottom:296.426548pt;}
.ye9{bottom:303.466545pt;}
.yc0{bottom:303.946545pt;}
.y24{bottom:306.026544pt;}
.y101{bottom:310.826809pt;}
.y71{bottom:314.346808pt;}
.y56{bottom:314.666807pt;}
.ybf{bottom:322.346538pt;}
.ye8{bottom:326.346536pt;}
.y70{bottom:332.746800pt;}
.y55{bottom:333.066800pt;}
.yec{bottom:335.626532pt;}
.ye3{bottom:338.186531pt;}
.ybe{bottom:340.746530pt;}
.y23{bottom:342.666530pt;}
.y100{bottom:347.946794pt;}
.y6f{bottom:351.146793pt;}
.y54{bottom:351.466793pt;}
.ybd{bottom:359.146523pt;}
.ye7{bottom:368.106519pt;}
.y6e{bottom:369.546786pt;}
.y53{bottom:369.866785pt;}
.ybc{bottom:377.546516pt;}
.y22{bottom:380.106515pt;}
.yff{bottom:385.066779pt;}
.y6d{bottom:387.946778pt;}
.ye5{bottom:387.947200pt;}
.y52{bottom:388.266778pt;}
.ybb{bottom:395.946508pt;}
.y21{bottom:398.506507pt;}
.y6c{bottom:406.346771pt;}
.y51{bottom:406.666771pt;}
.yba{bottom:414.026501pt;}
.ye2{bottom:416.106500pt;}
.y20{bottom:416.906500pt;}
.yfe{bottom:422.026765pt;}
.y6b{bottom:424.746763pt;}
.y50{bottom:425.066763pt;}
.y1f{bottom:435.306493pt;}
.y6a{bottom:442.826756pt;}
.y7e{bottom:443.146756pt;}
.y4f{bottom:443.466756pt;}
.yb9{bottom:451.306486pt;}
.y1e{bottom:453.706485pt;}
.ye1{bottom:457.706484pt;}
.yfd{bottom:459.146750pt;}
.y69{bottom:461.546749pt;}
.y4e{bottom:461.866749pt;}
.y1d{bottom:472.106478pt;}
.y68{bottom:479.946741pt;}
.y4d{bottom:480.266741pt;}
.y1c{bottom:490.506470pt;}
.yb8{bottom:491.626470pt;}
.yfc{bottom:496.266735pt;}
.y67{bottom:498.346734pt;}
.y4c{bottom:498.666734pt;}
.ye0{bottom:499.466467pt;}
.yb7{bottom:506.986464pt;}
.y1b{bottom:508.906463pt;}
.yb5{bottom:510.986462pt;}
.y66{bottom:516.746727pt;}
.y4b{bottom:517.066727pt;}
.yb6{bottom:522.346458pt;}
.y1a{bottom:526.986456pt;}
.yfb{bottom:533.226720pt;}
.ydf{bottom:534.026453pt;}
.y65{bottom:535.146719pt;}
.y4a{bottom:535.466719pt;}
.y19{bottom:545.706448pt;}
.yb3{bottom:549.226447pt;}
.y64{bottom:553.546712pt;}
.y49{bottom:553.866712pt;}
.yda{bottom:555.146445pt;}
.y18{bottom:564.106441pt;}
.yfa{bottom:570.346705pt;}
.y8d{bottom:571.946705pt;}
.y48{bottom:572.266704pt;}
.yd9{bottom:578.186435pt;}
.y17{bottom:582.506434pt;}
.yb2{bottom:583.946433pt;}
.y8c{bottom:590.346697pt;}
.y47{bottom:590.666697pt;}
.yd7{bottom:598.027200pt;}
.y16{bottom:600.906426pt;}
.yf9{bottom:607.466690pt;}
.y8b{bottom:608.746690pt;}
.y46{bottom:609.066690pt;}
.yde{bottom:612.746422pt;}
.y15{bottom:619.306419pt;}
.y8a{bottom:627.146682pt;}
.y45{bottom:627.466682pt;}
.yb1{bottom:628.106415pt;}
.y14{bottom:637.706412pt;}
.yf8{bottom:644.426676pt;}
.y89{bottom:645.546675pt;}
.y44{bottom:645.866675pt;}
.yad{bottom:648.586407pt;}
.yb4{bottom:648.906407pt;}
.y13{bottom:656.106404pt;}
.ydd{bottom:656.906404pt;}
.yb0{bottom:662.666402pt;}
.y88{bottom:663.946668pt;}
.y43{bottom:664.266668pt;}
.y12{bottom:674.506397pt;}
.yf7{bottom:681.546661pt;}
.y87{bottom:682.346660pt;}
.y42{bottom:682.666660pt;}
.ydc{bottom:691.466390pt;}
.y11{bottom:692.906390pt;}
.y86{bottom:700.746653pt;}
.y41{bottom:701.066653pt;}
.yaf{bottom:708.906383pt;}
.y10{bottom:711.306382pt;}
.yf6{bottom:718.666646pt;}
.y85{bottom:719.146646pt;}
.y40{bottom:719.466646pt;}
.yf{bottom:729.706375pt;}
.y84{bottom:737.226638pt;}
.y7d{bottom:737.546638pt;}
.ydb{bottom:737.706372pt;}
.y3f{bottom:737.866638pt;}
.yae{bottom:746.026368pt;}
.ye{bottom:748.106367pt;}
.yf5{bottom:755.626631pt;}
.y83{bottom:755.946631pt;}
.y3e{bottom:756.266631pt;}
.yd1{bottom:758.186363pt;}
.yd{bottom:766.506360pt;}
.yac{bottom:767.786360pt;}
.y80{bottom:774.346624pt;}
.y3d{bottom:774.666623pt;}
.yab{bottom:783.146353pt;}
.yc{bottom:784.586353pt;}
.yd5{bottom:788.586351pt;}
.y63{bottom:792.746616pt;}
.y3c{bottom:793.066616pt;}
.yd0{bottom:795.306349pt;}
.yaa{bottom:798.506347pt;}
.yb{bottom:802.986345pt;}
.y3b{bottom:811.466609pt;}
.ya9{bottom:813.866341pt;}
.ya{bottom:821.386338pt;}
.ya8{bottom:829.226335pt;}
.y62{bottom:829.546602pt;}
.y3a{bottom:829.866601pt;}
.yd4{bottom:830.186335pt;}
.yd6{bottom:834.666333pt;}
.ycf{bottom:839.306331pt;}
.y9{bottom:839.786331pt;}
.ya7{bottom:844.586329pt;}
.y39{bottom:848.266594pt;}
.yd3{bottom:853.226325pt;}
.y8{bottom:858.186323pt;}
.ya6{bottom:859.786323pt;}
.yce{bottom:862.346322pt;}
.y38{bottom:866.666587pt;}
.ya5{bottom:875.146317pt;}
.y7{bottom:876.586316pt;}
.yd2{bottom:878.186315pt;}
.y37{bottom:885.066579pt;}
.ya4{bottom:890.506310pt;}
.y9b{bottom:894.506309pt;}
.y6{bottom:894.986309pt;}
.y36{bottom:903.466572pt;}
.ycd{bottom:903.946305pt;}
.ya3{bottom:905.866304pt;}
.y5{bottom:913.386301pt;}
.ya2{bottom:921.226298pt;}
.ycc{bottom:921.546565pt;}
.y35{bottom:921.866565pt;}
.y4{bottom:932.106294pt;}
.ya1{bottom:936.426292pt;}
.y107{bottom:939.946557pt;}
.y34{bottom:940.266557pt;}
.y3{bottom:950.506286pt;}
.ya0{bottom:951.786286pt;}
.ycb{bottom:958.026550pt;}
.y33{bottom:958.666550pt;}
.y2{bottom:964.906281pt;}
.y9f{bottom:967.146280pt;}
.y82{bottom:976.746543pt;}
.y32{bottom:977.066543pt;}
.y9e{bottom:982.506274pt;}
.y81{bottom:995.146535pt;}
.y31{bottom:995.466535pt;}
.y9d{bottom:997.866268pt;}
.y9c{bottom:1013.226261pt;}
.yf4{bottom:1013.546528pt;}
.y30{bottom:1013.866528pt;}
.h4{height:15.040000pt;}
.h6{height:44.437482pt;}
.h3{height:46.609669pt;}
.h1{height:56.156228pt;}
.h2{height:56.843727pt;}
.h5{height:100.956210pt;}
.h0{height:1122.666667pt;}
.w1{width:171.200000pt;}
.w2{width:275.200000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439945pt;}
.x4{left:151.521292pt;}
.x12{left:154.719938pt;}
.x5{left:174.719930pt;}
.x1c{left:184.159926pt;}
.xa{left:217.279913pt;}
.xd{left:245.919902pt;}
.x15{left:261.599895pt;}
.x16{left:285.599051pt;}
.x17{left:289.599884pt;}
.x6{left:307.519877pt;}
.xb{left:359.519856pt;}
.x13{left:455.039818pt;}
.x19{left:456.799817pt;}
.x10{left:467.199813pt;}
.xf{left:471.519811pt;}
.x22{left:475.359810pt;}
.x7{left:480.159808pt;}
.xe{left:486.079806pt;}
.x1e{left:488.959804pt;}
.x1d{left:490.719804pt;}
.x1{left:521.279791pt;}
.x18{left:529.919788pt;}
.x21{left:561.919775pt;}
.x8{left:579.039768pt;}
.x1f{left:601.120159pt;}
.x1a{left:611.039756pt;}
.x1b{left:631.199748pt;}
.x23{left:633.119747pt;}
.x9{left:635.679746pt;}
.x11{left:642.399743pt;}
.x20{left:645.119742pt;}
.xc{left:669.119732pt;}
.x14{left:672.479731pt;}
.x2{left:680.319728pt;}
}




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