
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_705f73addf540fae50825c87.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_43aee27e5a08b9938e8ea191.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_5f9444e6cf046f9ceae85c98.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_7046c38f9e7b9f0d41470e60.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_495d862db37710bb72c4140c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_92182813b0fce692de50489d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000023px;}
.ls0{letter-spacing:13.492680px;}
.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.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-9.281247px;}
._f{margin-left:-7.980469px;}
._2{margin-left:-6.609375px;}
._12{margin-left:-5.131655px;}
._1{margin-left:-3.972671px;}
._6{margin-left:-2.491968px;}
._0{margin-left:-1.300760px;}
._3{width:4.405751px;}
._13{width:5.441212px;}
._8{width:9.005665px;}
._5{width:13.183014px;}
._b{width:14.450959px;}
._4{width:17.961666px;}
._7{width:22.488280px;}
._10{width:27.000003px;}
._11{width:30.783911px;}
._a{width:31.858044px;}
._9{width:35.834276px;}
._c{width:36.994332px;}
._17{width:40.500036px;}
._15{width:44.999990px;}
._14{width:49.499999px;}
._e{width:80.999997px;}
._d{width:85.500002px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y6e{bottom:3.496581px;}
.y2a{bottom:3.496583px;}
.yaa{bottom:89.480710px;}
.ye9{bottom:94.415770px;}
.y8f{bottom:106.131598px;}
.y4b{bottom:107.480536px;}
.ye8{bottom:115.114013px;}
.y6c{bottom:116.028082px;}
.ya9{bottom:120.528078px;}
.y8e{bottom:137.178961px;}
.y4a{bottom:138.527899px;}
.yc3{bottom:146.622808px;}
.y6b{bottom:147.075449px;}
.ya8{bottom:151.575441px;}
.ye7{bottom:153.812251px;}
.y28{bottom:155.329013px;}
.y108{bottom:159.128911px;}
.yc2{bottom:167.321050px;}
.y8d{bottom:168.226324px;}
.y49{bottom:169.575263px;}
.ye6{bottom:174.510493px;}
.y6a{bottom:178.122805px;}
.ya7{bottom:182.622804px;}
.yc1{bottom:188.019293px;}
.ye5{bottom:195.208735px;}
.y107{bottom:197.906248px;}
.y8c{bottom:199.273688px;}
.y48{bottom:200.622622px;}
.y27{bottom:202.378324px;}
.y69{bottom:209.170173px;}
.ya6{bottom:213.670168px;}
.ye4{bottom:215.906978px;}
.y106{bottom:218.604490px;}
.yc0{bottom:226.717523px;}
.y26{bottom:228.626851px;}
.y8b{bottom:230.321039px;}
.y47{bottom:231.669798px;}
.y105{bottom:239.302733px;}
.y68{bottom:240.217536px;}
.ya5{bottom:244.717531px;}
.y25{bottom:245.875395px;}
.ye3{bottom:254.605231px;}
.y8a{bottom:261.368407px;}
.y46{bottom:262.717161px;}
.y24{bottom:263.123931px;}
.y67{bottom:271.264899px;}
.ye2{bottom:275.303473px;}
.ybf{bottom:275.764889px;}
.ya4{bottom:275.764894px;}
.y104{bottom:278.000983px;}
.y23{bottom:280.372466px;}
.y89{bottom:292.415774px;}
.y45{bottom:293.764524px;}
.ye1{bottom:296.001715px;}
.y22{bottom:297.621001px;}
.y103{bottom:298.699225px;}
.y66{bottom:302.312263px;}
.ybe{bottom:306.812245px;}
.ya3{bottom:306.812257px;}
.y21{bottom:314.869536px;}
.ye0{bottom:316.699957px;}
.y102{bottom:319.397468px;}
.y88{bottom:323.463130px;}
.y44{bottom:324.811888px;}
.y20{bottom:332.118072px;}
.y65{bottom:333.359626px;}
.ybd{bottom:337.859613px;}
.ya2{bottom:337.859620px;}
.y1f{bottom:349.366604px;}
.y87{bottom:354.510498px;}
.ydf{bottom:355.398190px;}
.y43{bottom:355.859251px;}
.y101{bottom:358.095703px;}
.y64{bottom:364.406989px;}
.y1e{bottom:366.615139px;}
.ybc{bottom:368.906976px;}
.ya1{bottom:368.906988px;}
.yde{bottom:376.096433px;}
.y100{bottom:378.793945px;}
.y86{bottom:385.557861px;}
.y42{bottom:386.906614px;}
.y63{bottom:395.454353px;}
.yff{bottom:399.492188px;}
.ybb{bottom:399.954339px;}
.ya0{bottom:399.954344px;}
.y1d{bottom:401.863669px;}
.ydd{bottom:414.794673px;}
.y85{bottom:416.605224px;}
.y41{bottom:417.953978px;}
.y1c{bottom:420.115623px;}
.y62{bottom:431.001693px;}
.yba{bottom:431.001703px;}
.y9f{bottom:431.001712px;}
.ydc{bottom:435.492916px;}
.yfe{bottom:438.190426px;}
.y1b{bottom:446.364148px;}
.y84{bottom:447.652588px;}
.y40{bottom:449.001340px;}
.ydb{bottom:456.191158px;}
.yfd{bottom:458.888668px;}
.y61{bottom:462.049060px;}
.yb9{bottom:462.049066px;}
.y9e{bottom:462.049079px;}
.y1a{bottom:463.612700px;}
.yda{bottom:476.889400px;}
.y83{bottom:478.699951px;}
.yfc{bottom:479.586910px;}
.y3f{bottom:480.048707px;}
.y19{bottom:480.861236px;}
.y60{bottom:493.096417px;}
.yb8{bottom:493.096429px;}
.y9d{bottom:493.096435px;}
.yd9{bottom:497.587643px;}
.y18{bottom:498.109771px;}
.yfb{bottom:500.285152px;}
.y82{bottom:509.747314px;}
.y3e{bottom:511.096063px;}
.y17{bottom:515.358305px;}
.y5f{bottom:524.143784px;}
.yb7{bottom:524.143792px;}
.y9c{bottom:524.143803px;}
.y16{bottom:532.606789px;}
.yd8{bottom:536.285893px;}
.yfa{bottom:538.983400px;}
.y81{bottom:540.794678px;}
.y3d{bottom:542.143431px;}
.y15{bottom:550.858745px;}
.yb6{bottom:555.191155px;}
.y9b{bottom:555.191159px;}
.y5e{bottom:555.191174px;}
.yd7{bottom:556.984135px;}
.yf9{bottom:559.681642px;}
.y14{bottom:568.107281px;}
.y80{bottom:571.842037px;}
.y3c{bottom:573.190798px;}
.yd6{bottom:577.682378px;}
.y13{bottom:585.355813px;}
.yb5{bottom:586.238523px;}
.y9a{bottom:586.238527px;}
.y5d{bottom:586.238530px;}
.yf8{bottom:598.379875px;}
.y12{bottom:602.604348px;}
.y7f{bottom:602.889404px;}
.y3b{bottom:604.238155px;}
.yd5{bottom:616.380613px;}
.yb4{bottom:617.285879px;}
.y5c{bottom:617.285887px;}
.y99{bottom:617.285894px;}
.yf7{bottom:619.078118px;}
.y7e{bottom:633.936760px;}
.y3a{bottom:635.285522px;}
.yd4{bottom:637.078855px;}
.y11{bottom:638.501812px;}
.yb3{bottom:648.333247px;}
.y98{bottom:648.333250px;}
.y5b{bottom:648.333254px;}
.yf6{bottom:657.776368px;}
.yd3{bottom:657.777098px;}
.y7d{bottom:664.984128px;}
.y39{bottom:666.332890px;}
.y10{bottom:677.200103px;}
.yf5{bottom:678.474610px;}
.y5a{bottom:679.380615px;}
.y97{bottom:679.380618px;}
.y7c{bottom:696.031491px;}
.yd2{bottom:696.475348px;}
.y38{bottom:697.380246px;}
.yf4{bottom:699.172852px;}
.y59{bottom:710.427970px;}
.y96{bottom:710.427981px;}
.yf{bottom:715.898348px;}
.yd1{bottom:717.173590px;}
.y7b{bottom:727.078854px;}
.y37{bottom:728.427613px;}
.yf3{bottom:737.871088px;}
.yd0{bottom:737.871832px;}
.y58{bottom:741.475153px;}
.yb2{bottom:741.475338px;}
.y95{bottom:741.475344px;}
.ye{bottom:754.596593px;}
.y7a{bottom:758.126218px;}
.yf2{bottom:758.569330px;}
.y36{bottom:759.474970px;}
.y57{bottom:772.522516px;}
.yb1{bottom:772.522701px;}
.y94{bottom:772.522708px;}
.ycf{bottom:776.570071px;}
.yf1{bottom:779.267573px;}
.y79{bottom:789.173581px;}
.y35{bottom:790.522337px;}
.yd{bottom:793.294828px;}
.yce{bottom:797.268313px;}
.y56{bottom:803.569879px;}
.yb0{bottom:803.570064px;}
.y93{bottom:803.570071px;}
.yc{bottom:813.993070px;}
.yf0{bottom:817.965826px;}
.ycd{bottom:817.966555px;}
.y78{bottom:820.220944px;}
.y34{bottom:821.569705px;}
.y55{bottom:834.617242px;}
.yaf{bottom:834.617428px;}
.y92{bottom:834.617434px;}
.yb{bottom:834.691313px;}
.yef{bottom:838.664068px;}
.ycc{bottom:838.664798px;}
.y77{bottom:851.268307px;}
.y33{bottom:852.617061px;}
.yee{bottom:859.362310px;}
.y54{bottom:864.315488px;}
.yae{bottom:865.664791px;}
.y91{bottom:865.664797px;}
.ya{bottom:873.389560px;}
.ycb{bottom:877.363033px;}
.yed{bottom:880.060552px;}
.y76{bottom:882.315670px;}
.y32{bottom:883.664428px;}
.y9{bottom:894.087802px;}
.y90{bottom:895.363042px;}
.yad{bottom:896.712154px;}
.yca{bottom:898.061275px;}
.y53{bottom:913.362853px;}
.y75{bottom:913.363038px;}
.y31{bottom:914.711791px;}
.yec{bottom:918.758789px;}
.yc9{bottom:918.759518px;}
.yac{bottom:927.759518px;}
.y8{bottom:932.786047px;}
.yeb{bottom:939.457036px;}
.y52{bottom:944.410216px;}
.y74{bottom:944.410401px;}
.y30{bottom:945.759154px;}
.yab{bottom:957.457762px;}
.yea{bottom:960.156007px;}
.y7{bottom:971.484277px;}
.y51{bottom:975.457579px;}
.y73{bottom:975.457764px;}
.y2f{bottom:976.806518px;}
.yc8{bottom:978.156005px;}
.yc7{bottom:998.854248px;}
.y50{bottom:1006.504943px;}
.y72{bottom:1006.505128px;}
.y2e{bottom:1007.853881px;}
.y6{bottom:1010.182525px;}
.yc6{bottom:1019.552490px;}
.y4f{bottom:1037.552306px;}
.y71{bottom:1037.552491px;}
.y2d{bottom:1038.901244px;}
.y5{bottom:1039.880768px;}
.yc5{bottom:1058.250733px;}
.y4{bottom:1063.823628px;}
.y4e{bottom:1068.599669px;}
.y70{bottom:1068.599854px;}
.y2c{bottom:1069.948608px;}
.yc4{bottom:1078.948975px;}
.y2b{bottom:1099.646850px;}
.y4d{bottom:1099.647033px;}
.y6f{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y29{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y4c{bottom:1116.451720px;}
.y6d{bottom:1116.451905px;}
.h2{height:43.989259px;}
.hc{height:47.988281px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h8{height:53.789061px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:118.335940px;}
.hb{height:146.548095px;}
.ha{height:146.548280px;}
.h1{height:146.548382px;}
.h9{height:146.548462px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x6{left:140.159637px;}
.x3{left:147.028279px;}
.xb{left:213.075005px;}
.x2{left:282.239210px;}
.x5{left:388.455037px;}
.x7{left:447.710904px;}
.x4{left:467.719205px;}
.x9{left:512.506928px;}
.xa{left:646.311616px;}
.x8{left:807.863416px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000020pt;}
.ls0{letter-spacing:11.993494pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-8.249998pt;}
._f{margin-left:-7.093750pt;}
._2{margin-left:-5.875000pt;}
._12{margin-left:-4.561471pt;}
._1{margin-left:-3.531263pt;}
._6{margin-left:-2.215083pt;}
._0{margin-left:-1.156232pt;}
._3{width:3.916223pt;}
._13{width:4.836633pt;}
._8{width:8.005035pt;}
._5{width:11.718235pt;}
._b{width:12.845297pt;}
._4{width:15.965925pt;}
._7{width:19.989582pt;}
._10{width:24.000002pt;}
._11{width:27.363476pt;}
._a{width:28.318262pt;}
._9{width:31.852690pt;}
._c{width:32.883851pt;}
._17{width:36.000032pt;}
._15{width:39.999991pt;}
._14{width:44.000000pt;}
._e{width:71.999997pt;}
._d{width:76.000002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y6e{bottom:3.108072pt;}
.y2a{bottom:3.108073pt;}
.yaa{bottom:79.538409pt;}
.ye9{bottom:83.925129pt;}
.y8f{bottom:94.339198pt;}
.y4b{bottom:95.538254pt;}
.ye8{bottom:102.323567pt;}
.y6c{bottom:103.136073pt;}
.ya9{bottom:107.136069pt;}
.y8e{bottom:121.936854pt;}
.y4a{bottom:123.135910pt;}
.yc3{bottom:130.331385pt;}
.y6b{bottom:130.733733pt;}
.ya8{bottom:134.733725pt;}
.ye7{bottom:136.722001pt;}
.y28{bottom:138.070233pt;}
.y108{bottom:141.447921pt;}
.yc2{bottom:148.729823pt;}
.y8d{bottom:149.534510pt;}
.y49{bottom:150.733567pt;}
.ye6{bottom:155.120438pt;}
.y6a{bottom:158.331383pt;}
.ya7{bottom:162.331381pt;}
.yc1{bottom:167.128260pt;}
.ye5{bottom:173.518876pt;}
.y107{bottom:175.916665pt;}
.y8c{bottom:177.132167pt;}
.y48{bottom:178.331219pt;}
.y27{bottom:179.891844pt;}
.y69{bottom:185.929043pt;}
.ya6{bottom:189.929038pt;}
.ye4{bottom:191.917313pt;}
.y106{bottom:194.315103pt;}
.yc0{bottom:201.526687pt;}
.y26{bottom:203.223868pt;}
.y8b{bottom:204.729812pt;}
.y47{bottom:205.928709pt;}
.y105{bottom:212.713540pt;}
.y68{bottom:213.526699pt;}
.ya5{bottom:217.526694pt;}
.y25{bottom:218.555907pt;}
.ye3{bottom:226.315761pt;}
.y8a{bottom:232.327472pt;}
.y46{bottom:233.526365pt;}
.y24{bottom:233.887939pt;}
.y67{bottom:241.124355pt;}
.ye2{bottom:244.714198pt;}
.ybf{bottom:245.124346pt;}
.ya4{bottom:245.124350pt;}
.y104{bottom:247.111985pt;}
.y23{bottom:249.219970pt;}
.y89{bottom:259.925133pt;}
.y45{bottom:261.124021pt;}
.ye1{bottom:263.112636pt;}
.y22{bottom:264.552001pt;}
.y103{bottom:265.510423pt;}
.y66{bottom:268.722012pt;}
.ybe{bottom:272.721996pt;}
.ya3{bottom:272.722007pt;}
.y21{bottom:279.884032pt;}
.ye0{bottom:281.511073pt;}
.y102{bottom:283.908860pt;}
.y88{bottom:287.522782pt;}
.y44{bottom:288.721678pt;}
.y20{bottom:295.216064pt;}
.y65{bottom:296.319668pt;}
.ybd{bottom:300.319656pt;}
.ya2{bottom:300.319662pt;}
.y1f{bottom:310.548093pt;}
.y87{bottom:315.120443pt;}
.ydf{bottom:315.909503pt;}
.y43{bottom:316.319334pt;}
.y101{bottom:318.307291pt;}
.y64{bottom:323.917324pt;}
.y1e{bottom:325.880124pt;}
.ybc{bottom:327.917312pt;}
.ya1{bottom:327.917322pt;}
.yde{bottom:334.307940pt;}
.y100{bottom:336.705729pt;}
.y86{bottom:342.718099pt;}
.y42{bottom:343.916990pt;}
.y63{bottom:351.514980pt;}
.yff{bottom:355.104167pt;}
.ybb{bottom:355.514968pt;}
.ya0{bottom:355.514972pt;}
.y1d{bottom:357.212150pt;}
.ydd{bottom:368.706376pt;}
.y85{bottom:370.315754pt;}
.y41{bottom:371.514647pt;}
.y1c{bottom:373.436110pt;}
.y62{bottom:383.112616pt;}
.yba{bottom:383.112625pt;}
.y9f{bottom:383.112632pt;}
.ydc{bottom:387.104814pt;}
.yfe{bottom:389.502601pt;}
.y1b{bottom:396.768131pt;}
.y84{bottom:397.913411pt;}
.y40{bottom:399.112302pt;}
.ydb{bottom:405.503251pt;}
.yfd{bottom:407.901038pt;}
.y61{bottom:410.710276pt;}
.yb9{bottom:410.710281pt;}
.y9e{bottom:410.710292pt;}
.y1a{bottom:412.100177pt;}
.yda{bottom:423.901689pt;}
.y83{bottom:425.511068pt;}
.yfc{bottom:426.299476pt;}
.y3f{bottom:426.709962pt;}
.y19{bottom:427.432209pt;}
.y60{bottom:438.307926pt;}
.yb8{bottom:438.307937pt;}
.y9d{bottom:438.307942pt;}
.yd9{bottom:442.300127pt;}
.y18{bottom:442.764240pt;}
.yfb{bottom:444.697913pt;}
.y82{bottom:453.108723pt;}
.y3e{bottom:454.307612pt;}
.y17{bottom:458.096271pt;}
.y5f{bottom:465.905586pt;}
.yb7{bottom:465.905593pt;}
.y9c{bottom:465.905602pt;}
.y16{bottom:473.428256pt;}
.yd8{bottom:476.698571pt;}
.yfa{bottom:479.096356pt;}
.y81{bottom:480.706380pt;}
.y3d{bottom:481.905272pt;}
.y15{bottom:489.652217pt;}
.yb6{bottom:493.503249pt;}
.y9b{bottom:493.503252pt;}
.y5e{bottom:493.503266pt;}
.yd7{bottom:495.097009pt;}
.yf9{bottom:497.494793pt;}
.y14{bottom:504.984249pt;}
.y80{bottom:508.304032pt;}
.y3c{bottom:509.502932pt;}
.yd6{bottom:513.495447pt;}
.y13{bottom:520.316278pt;}
.yb5{bottom:521.100909pt;}
.y9a{bottom:521.100912pt;}
.y5d{bottom:521.100916pt;}
.yf8{bottom:531.893223pt;}
.y12{bottom:535.648310pt;}
.y7f{bottom:535.901692pt;}
.y3b{bottom:537.100582pt;}
.yd5{bottom:547.893878pt;}
.yb4{bottom:548.698559pt;}
.y5c{bottom:548.698566pt;}
.y99{bottom:548.698572pt;}
.yf7{bottom:550.291660pt;}
.y7e{bottom:563.499342pt;}
.y3a{bottom:564.698242pt;}
.yd4{bottom:566.292316pt;}
.y11{bottom:567.557167pt;}
.yb3{bottom:576.296219pt;}
.y98{bottom:576.296222pt;}
.y5b{bottom:576.296226pt;}
.yf6{bottom:584.690104pt;}
.yd3{bottom:584.690753pt;}
.y7d{bottom:591.097002pt;}
.y39{bottom:592.295902pt;}
.y10{bottom:601.955647pt;}
.yf5{bottom:603.088542pt;}
.y5a{bottom:603.893880pt;}
.y97{bottom:603.893882pt;}
.y7c{bottom:618.694658pt;}
.yd2{bottom:619.089198pt;}
.y38{bottom:619.893552pt;}
.yf4{bottom:621.486980pt;}
.y59{bottom:631.491529pt;}
.y96{bottom:631.491538pt;}
.yf{bottom:636.354087pt;}
.yd1{bottom:637.487636pt;}
.y7b{bottom:646.292314pt;}
.y37{bottom:647.491212pt;}
.yf3{bottom:655.885411pt;}
.yd0{bottom:655.886073pt;}
.y58{bottom:659.089025pt;}
.yb2{bottom:659.089189pt;}
.y95{bottom:659.089194pt;}
.ye{bottom:670.752527pt;}
.y7a{bottom:673.889971pt;}
.yf2{bottom:674.283849pt;}
.y36{bottom:675.088862pt;}
.y57{bottom:686.686681pt;}
.yb1{bottom:686.686845pt;}
.y94{bottom:686.686851pt;}
.ycf{bottom:690.284508pt;}
.yf1{bottom:692.682287pt;}
.y79{bottom:701.487627pt;}
.y35{bottom:702.686522pt;}
.yd{bottom:705.150958pt;}
.yce{bottom:708.682945pt;}
.y56{bottom:714.284337pt;}
.yb0{bottom:714.284501pt;}
.y93{bottom:714.284507pt;}
.yc{bottom:723.549396pt;}
.yf0{bottom:727.080734pt;}
.ycd{bottom:727.081383pt;}
.y78{bottom:729.085283pt;}
.y34{bottom:730.284182pt;}
.y55{bottom:741.881993pt;}
.yaf{bottom:741.882158pt;}
.y92{bottom:741.882163pt;}
.yb{bottom:741.947833pt;}
.yef{bottom:745.479171pt;}
.ycc{bottom:745.479820pt;}
.y77{bottom:756.682940pt;}
.y33{bottom:757.881832pt;}
.yee{bottom:763.877609pt;}
.y54{bottom:768.280433pt;}
.yae{bottom:769.479814pt;}
.y91{bottom:769.479820pt;}
.ya{bottom:776.346276pt;}
.ycb{bottom:779.878251pt;}
.yed{bottom:782.276047pt;}
.y76{bottom:784.280596pt;}
.y32{bottom:785.479492pt;}
.y9{bottom:794.744713pt;}
.y90{bottom:795.878260pt;}
.yad{bottom:797.077470pt;}
.yca{bottom:798.276689pt;}
.y53{bottom:811.878092pt;}
.y75{bottom:811.878256pt;}
.y31{bottom:813.077148pt;}
.yec{bottom:816.674479pt;}
.yc9{bottom:816.675127pt;}
.yac{bottom:824.675127pt;}
.y8{bottom:829.143153pt;}
.yeb{bottom:835.072921pt;}
.y52{bottom:839.475748pt;}
.y74{bottom:839.475912pt;}
.y30{bottom:840.674804pt;}
.yab{bottom:851.073567pt;}
.yea{bottom:853.472007pt;}
.y7{bottom:863.541580pt;}
.y51{bottom:867.073404pt;}
.y73{bottom:867.073568pt;}
.y2f{bottom:868.272461pt;}
.yc8{bottom:869.472005pt;}
.yc7{bottom:887.870442pt;}
.y50{bottom:894.671061pt;}
.y72{bottom:894.671225pt;}
.y2e{bottom:895.870117pt;}
.y6{bottom:897.940023pt;}
.yc6{bottom:906.268880pt;}
.y4f{bottom:922.268717pt;}
.y71{bottom:922.268881pt;}
.y2d{bottom:923.467773pt;}
.y5{bottom:924.338460pt;}
.yc5{bottom:940.667318pt;}
.y4{bottom:945.621003pt;}
.y4e{bottom:949.866373pt;}
.y70{bottom:949.866537pt;}
.y2c{bottom:951.065429pt;}
.yc4{bottom:959.065756pt;}
.y2b{bottom:977.463867pt;}
.y4d{bottom:977.464029pt;}
.y6f{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y29{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y4c{bottom:992.401529pt;}
.y6d{bottom:992.401693pt;}
.h2{height:39.101563pt;}
.hc{height:42.656250pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h8{height:47.812499pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:105.187502pt;}
.hb{height:130.264973pt;}
.ha{height:130.265137pt;}
.h1{height:130.265228pt;}
.h9{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x6{left:124.586344pt;}
.x3{left:130.691804pt;}
.xb{left:189.400004pt;}
.x2{left:250.879298pt;}
.x5{left:345.293366pt;}
.x7{left:397.965248pt;}
.x4{left:415.750404pt;}
.x9{left:455.561714pt;}
.xa{left:574.499214pt;}
.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; }
  