
    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_2da37dd96c151f08f25066b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.880859;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_004d859d3c4b7d9d5e7b7b1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_37c21253b2f4fe14beda3886.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_aed2ffb2f7035548f67112b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-105.119906px;}
.ws2{word-spacing:-19.345565px;}
.ws4{word-spacing:-16.154729px;}
.ws3{word-spacing:-0.698396px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:176.362964px;}
._e{margin-left:-5.377648px;}
._d{margin-left:-4.120535px;}
._14{margin-left:-2.793583px;}
._1{margin-left:-1.676150px;}
._0{width:1.396792px;}
._11{width:2.407847px;}
._5{width:3.422140px;}
._13{width:5.156085px;}
._9{width:6.215723px;}
._f{width:7.345201px;}
._3{width:8.590269px;}
._2{width:10.545777px;}
._4{width:12.352188px;}
._15{width:13.967917px;}
._12{width:15.504388px;}
._b{width:16.551981px;}
._a{width:17.647887px;}
._1c{width:19.006633px;}
._1a{width:20.062191px;}
._19{width:21.403558px;}
._1b{width:23.094847px;}
._1e{width:25.080634px;}
._1d{width:26.581823px;}
._16{width:27.935834px;}
._c{width:28.983427px;}
._8{width:30.589738px;}
._7{width:31.637331px;}
._6{width:32.894444px;}
._18{width:34.630028px;}
._23{width:37.922894px;}
._24{width:39.529204px;}
._22{width:45.260347px;}
._29{width:46.373484px;}
._10{width:52.889844px;}
._2a{width:68.372953px;}
._28{width:89.045469px;}
._27{width:90.162903px;}
._21{width:96.127438px;}
._20{width:157.876415px;}
._25{width:225.861214px;}
._26{width:227.467524px;}
._17{width:234.100082px;}
._1f{width:400.384554px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:58.320321px;}
.fs1{font-size:69.839584px;}
.fs0{font-size:105.119906px;}
.fs2{font-size:163.440227px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.239175px;}
.y5b{bottom:3.239218px;}
.y59{bottom:3.239240px;}
.y3d{bottom:3.239262px;}
.y40{bottom:3.243694px;}
.ya4{bottom:3.246344px;}
.y49{bottom:3.248126px;}
.yd4{bottom:3.595134px;}
.y3b{bottom:3.595221px;}
.ycb{bottom:3.599566px;}
.y6a{bottom:3.599609px;}
.yd9{bottom:3.599653px;}
.ya7{bottom:3.602303px;}
.ybf{bottom:3.604085px;}
.y3{bottom:75.958316px;}
.y1{bottom:118.087426px;}
.ya2{bottom:164.154734px;}
.y8f{bottom:168.301028px;}
.yf1{bottom:170.112662px;}
.y4f{bottom:176.217365px;}
.ye9{bottom:178.925753px;}
.ya1{bottom:181.071738px;}
.y29{bottom:185.761948px;}
.yc{bottom:186.310808px;}
.y4e{bottom:189.712608px;}
.y4d{bottom:193.129849px;}
.y101{bottom:195.848532px;}
.ya0{bottom:198.535976px;}
.y8e{bottom:198.544650px;}
.yf0{bottom:200.350978px;}
.ye8{bottom:208.988192px;}
.y4c{bottom:210.594088px;}
.yde{bottom:210.783800px;}
.y9f{bottom:212.031220px;}
.y9e{bottom:215.270482px;}
.y28{bottom:215.824491px;}
.y100{bottom:216.000263px;}
.y4a{bottom:223.915871px;}
.yb{bottom:226.981946px;}
.y8d{bottom:228.601781px;}
.yef{bottom:230.589293px;}
.ydd{bottom:230.754698px;}
.y9d{bottom:232.013938px;}
.yff{bottom:236.162713px;}
.ye7{bottom:239.045323px;}
.y48{bottom:240.650376px;}
.y27{bottom:246.062806px;}
.ya{bottom:247.501457px;}
.ydc{bottom:247.676134px;}
.y9c{bottom:248.930854px;}
.yfe{bottom:256.149286px;}
.y47{bottom:257.571724px;}
.y8c{bottom:258.840097px;}
.y46{bottom:260.810986px;}
.yee{bottom:260.827608px;}
.y9b{bottom:262.257070px;}
.ydb{bottom:264.415071px;}
.y9a{bottom:265.496331px;}
.y9{bottom:268.026171px;}
.ye6{bottom:269.283638px;}
.y45{bottom:274.319613px;}
.yfd{bottom:276.301121px;}
.yd8{bottom:277.914833px;}
.yda{bottom:281.336507px;}
.y99{bottom:282.235268px;}
.y26{bottom:288.007437px;}
.y8{bottom:288.188621px;}
.y8b{bottom:288.902639px;}
.yed{bottom:290.890047px;}
.y44{bottom:291.232097px;}
.yfc{bottom:296.463467px;}
.yd7{bottom:298.791794px;}
.y97{bottom:299.156704px;}
.ye5{bottom:299.527261px;}
.y7{bottom:308.708028px;}
.y43{bottom:311.214815px;}
.yd6{bottom:312.113577px;}
.y98{bottom:315.895641px;}
.y96{bottom:316.073621px;}
.yfb{bottom:316.625917px;}
.y42{bottom:324.536511px;}
.y41{bottom:327.775773px;}
.yd3{bottom:328.857033px;}
.y25{bottom:329.765576px;}
.y8a{bottom:331.028455px;}
.yd5{bottom:332.274187px;}
.yec{bottom:332.648290px;}
.y95{bottom:333.533427px;}
.yfa{bottom:336.788367px;}
.y3f{bottom:341.453515px;}
.ye4{bottom:341.461277px;}
.y3e{bottom:344.697209px;}
.yd2{bottom:349.738426px;}
.y89{bottom:351.353625px;}
.y94{bottom:351.723738px;}
.yf9{bottom:356.945509px;}
.y3a{bottom:358.018905px;}
.y3c{bottom:358.196884px;}
.y24{bottom:359.822811px;}
.y88{bottom:364.675408px;}
.y6{bottom:365.574846px;}
.yd1{bottom:366.477450px;}
.ye3{bottom:371.523820px;}
.y93{bottom:371.710312px;}
.yeb{bottom:373.143655px;}
.yf8{bottom:377.107855px;}
.y39{bottom:379.078364px;}
.yd0{bottom:380.159624px;}
.y87{bottom:381.409913px;}
.ycf{bottom:383.398799px;}
.y86{bottom:384.658039px;}
.y23{bottom:390.066434px;}
.yea{bottom:393.306053px;}
.yf7{bottom:397.089173px;}
.y85{bottom:398.335781px;}
.y38{bottom:398.522464px;}
.yce{bottom:400.133304px;}
.y92{bottom:401.948627px;}
.y84{bottom:415.079150px;}
.ycd{bottom:417.059172px;}
.yf6{bottom:417.240956px;}
.y5{bottom:417.787163px;}
.y22{bottom:420.304750px;}
.yca{bottom:430.194111px;}
.y83{bottom:431.991634px;}
.y91{bottom:432.011065px;}
.ycc{bottom:433.615697px;}
.yf5{bottom:437.403353px;}
.y82{bottom:448.739523px;}
.y21{bottom:450.543065px;}
.yc9{bottom:451.071072px;}
.y81{bottom:451.978784px;}
.yf4{bottom:457.565803px;}
.y37{bottom:462.249381px;}
.yc8{bottom:464.757678px;}
.y80{bottom:465.296048px;}
.y4{bottom:469.979449px;}
.yf3{bottom:477.722894px;}
.y20{bottom:480.781380px;}
.yc6{bottom:481.314203px;}
.y7f{bottom:482.217484px;}
.yc7{bottom:484.731445px;}
.y36{bottom:492.487696px;}
.y7d{bottom:498.778442px;}
.y7e{bottom:502.195683px;}
.y1f{bottom:511.019696px;}
.yf2{bottom:511.200828px;}
.yc5{bottom:515.877857px;}
.yc4{bottom:519.117119px;}
.y7c{bottom:519.659921px;}
.y35{bottom:522.726011px;}
.y7b{bottom:533.333231px;}
.yc3{bottom:535.856056px;}
.y1e{bottom:541.082134px;}
.y7a{bottom:550.081076px;}
.yc2{bottom:552.599469px;}
.y34{bottom:552.788502px;}
.y79{bottom:566.993561px;}
.yc1{bottom:569.338449px;}
.y78{bottom:570.232779px;}
.y1d{bottom:571.320449px;}
.ybe{bottom:582.655757px;}
.y33{bottom:583.026817px;}
.y77{bottom:583.554562px;}
.yc0{bottom:586.072954px;}
.ye2{bottom:594.722518px;}
.y76{bottom:600.297975px;}
.ybd{bottom:603.537193px;}
.y1c{bottom:613.265133px;}
.y75{bottom:617.214935px;}
.y74{bottom:620.458629px;}
.ye1{bottom:624.960833px;}
.ybc{bottom:633.958348px;}
.y73{bottom:637.197566px;}
.y1b{bottom:643.327623px;}
.y72{bottom:650.879740px;}
.ybb{bottom:654.119002px;}
.ye0{bottom:655.023324px;}
.y117{bottom:667.086701px;}
.y71{bottom:667.440741px;}
.y1a{bottom:673.565938px;}
.yba{bottom:684.175290px;}
.ydf{bottom:685.442824px;}
.y116{bottom:687.062607px;}
.y70{bottom:687.414508px;}
.y6f{bottom:701.096682px;}
.y19{bottom:703.804254px;}
.y115{bottom:707.225057px;}
.y90{bottom:715.499955px;}
.y6e{bottom:717.835663px;}
.yb9{bottom:721.074881px;}
.y114{bottom:727.387455px;}
.y18{bottom:734.044703px;}
.y6d{bottom:734.579075px;}
.y6c{bottom:737.818294px;}
.y32{bottom:745.741444px;}
.y113{bottom:747.540330px;}
.y69{bottom:751.318056px;}
.y6b{bottom:751.496036px;}
.y17{bottom:764.105060px;}
.y112{bottom:767.702728px;}
.yb8{bottom:768.052561px;}
.yb7{bottom:771.300687px;}
.y68{bottom:772.199492px;}
.y31{bottom:775.801801px;}
.yb6{bottom:784.978429px;}
.y67{bottom:785.516800px;}
.y111{bottom:787.865178px;}
.y16{bottom:794.523467px;}
.y66{bottom:802.438192px;}
.yb5{bottom:804.961060px;}
.y65{bottom:805.677410px;}
.y30{bottom:806.220208px;}
.y110{bottom:807.840043px;}
.y64{bottom:819.177172px;}
.yb4{bottom:821.697347px;}
.y10f{bottom:828.002467px;}
.yb3{bottom:835.380433px;}
.y63{bottom:836.099477px;}
.y15{bottom:836.280565px;}
.yb2{bottom:838.619651px;}
.y10e{bottom:848.164891px;}
.yb1{bottom:855.356850px;}
.y62{bottom:856.075895px;}
.y14{bottom:866.519947px;}
.y10d{bottom:868.318808px;}
.yb0{bottom:868.854831px;}
.yaf{bottom:872.101176px;}
.y61{bottom:872.820176px;}
.y60{bottom:886.318157px;}
.y10c{bottom:888.481231px;}
.yae{bottom:888.838331px;}
.y13{bottom:896.759329px;}
.y5f{bottom:903.055356px;}
.yad{bottom:905.760636px;}
.y5e{bottom:906.479680px;}
.y2f{bottom:908.464630px;}
.y10b{bottom:908.643655px;}
.yac{bottom:923.216879px;}
.y5d{bottom:923.757922px;}
.y12{bottom:926.819686px;}
.y10a{bottom:928.806105px;}
.yab{bottom:936.714839px;}
.y5c{bottom:937.440987px;}
.y2e{bottom:938.524988px;}
.y109{bottom:948.959995px;}
.y5a{bottom:954.178186px;}
.yaa{bottom:956.698382px;}
.y11{bottom:957.059068px;}
.y2d{bottom:968.764370px;}
.y108{bottom:968.943395px;}
.ya9{bottom:970.196341px;}
.y58{bottom:971.100469px;}
.y57{bottom:974.339709px;}
.ya6{bottom:986.755561px;}
.ya8{bottom:986.940645px;}
.y10{bottom:987.298450px;}
.y107{bottom:989.105818px;}
.y56{bottom:990.898907px;}
.y2c{bottom:999.003752px;}
.y2{bottom:1002.780471px;}
.y55{bottom:1007.636106px;}
.y106{bottom:1009.259735px;}
.yf{bottom:1017.537833px;}
.y54{bottom:1024.558389px;}
.y2b{bottom:1029.243134px;}
.y105{bottom:1029.422159px;}
.ya5{bottom:1038.056370px;}
.y53{bottom:1041.295588px;}
.ye{bottom:1047.598177px;}
.y104{bottom:1049.584582px;}
.y52{bottom:1058.039892px;}
.y2a{bottom:1059.303478px;}
.y103{bottom:1069.738486px;}
.ya3{bottom:1071.715852px;}
.y51{bottom:1074.962197px;}
.yd{bottom:1089.542847px;}
.y102{bottom:1089.721885px;}
.y50{bottom:1091.521406px;}
.hc{height:16.374114px;}
.h10{height:16.375896px;}
.ha{height:16.378546px;}
.h13{height:16.378590px;}
.h8{height:16.378633px;}
.h17{height:16.381197px;}
.hf{height:16.381218px;}
.h15{height:16.381229px;}
.he{height:16.381240px;}
.hd{height:16.382978px;}
.h11{height:16.383022px;}
.hb{height:16.383065px;}
.h7{height:16.912571px;}
.h1a{height:16.916917px;}
.h14{height:16.917004px;}
.h19{height:16.921349px;}
.h12{height:16.921392px;}
.h18{height:16.921436px;}
.h16{height:16.922283px;}
.h9{height:52.311734px;}
.h6{height:52.767361px;}
.h5{height:62.644197px;}
.h3{height:63.189819px;}
.h2{height:79.404538px;}
.h4{height:152.107946px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w1d{width:8.998643px;}
.w10{width:15.840176px;}
.we{width:33.482393px;}
.w1b{width:34.919580px;}
.w2{width:41.220059px;}
.wf{width:46.979473px;}
.w4{width:47.333683px;}
.w1c{width:51.834748px;}
.w14{width:52.560918px;}
.wb{width:53.457920px;}
.w1e{width:56.697149px;}
.w1f{width:85.857315px;}
.wa{width:113.217209px;}
.w19{width:116.640643px;}
.w5{width:219.239632px;}
.wd{width:237.415789px;}
.w8{width:295.922074px;}
.wc{width:310.138186px;}
.w11{width:336.957038px;}
.w1a{width:391.497065px;}
.w16{width:401.577849px;}
.w17{width:411.480609px;}
.w18{width:425.697612px;}
.w6{width:430.560024px;}
.w12{width:496.981965px;}
.w13{width:497.159945px;}
.w15{width:502.022335px;}
.w9{width:510.301945px;}
.w3{width:522.539817px;}
.w7{width:522.717796px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:124.197147px;}
.xe{left:132.302838px;}
.x4{left:142.730887px;}
.x5{left:144.905560px;}
.xd{left:165.417171px;}
.xf{left:245.882242px;}
.x14{left:258.120114px;}
.x6{left:264.233698px;}
.x1b{left:266.399724px;}
.x1c{left:271.440094px;}
.x12{left:337.862035px;}
.x1f{left:342.724447px;}
.x1e{left:356.941450px;}
.x1d{left:366.844211px;}
.x20{left:376.924994px;}
.x1a{left:431.465021px;}
.x16{left:458.283873px;}
.xa{left:469.976435px;}
.x13{left:472.499985px;}
.x9{left:481.860761px;}
.x7{left:519.841140px;}
.x17{left:531.006270px;}
.x11{left:549.182427px;}
.x8{left:606.055774px;}
.xc{left:608.394883px;}
.x15{left:655.204850px;}
.xb{left:686.151354px;}
.x10{left:721.088376px;}
.x18{left:734.939666px;}
.x19{left:752.581884px;}
.x3{left:807.663347px;}
.x1{left:835.557014px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-93.439916pt;}
.ws2{word-spacing:-17.196058pt;}
.ws4{word-spacing:-14.359759pt;}
.ws3{word-spacing:-0.620796pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:156.767079pt;}
._e{margin-left:-4.780132pt;}
._d{margin-left:-3.662698pt;}
._14{margin-left:-2.483185pt;}
._1{margin-left:-1.489911pt;}
._0{width:1.241593pt;}
._11{width:2.140308pt;}
._5{width:3.041902pt;}
._13{width:4.583187pt;}
._9{width:5.525087pt;}
._f{width:6.529067pt;}
._3{width:7.635794pt;}
._2{width:9.374024pt;}
._4{width:10.979723pt;}
._15{width:12.415926pt;}
._12{width:13.781678pt;}
._b{width:14.712872pt;}
._a{width:15.687011pt;}
._1c{width:16.894785pt;}
._1a{width:17.833058pt;}
._19{width:19.025385pt;}
._1b{width:20.528753pt;}
._1e{width:22.293897pt;}
._1d{width:23.628287pt;}
._16{width:24.831852pt;}
._c{width:25.763046pt;}
._8{width:27.190878pt;}
._7{width:28.122072pt;}
._6{width:29.239506pt;}
._18{width:30.782247pt;}
._23{width:33.709239pt;}
._24{width:35.137071pt;}
._22{width:40.231420pt;}
._29{width:41.220874pt;}
._10{width:47.013194pt;}
._2a{width:60.775958pt;}
._28{width:79.151528pt;}
._27{width:80.144802pt;}
._21{width:85.446611pt;}
._20{width:140.334591pt;}
._25{width:200.765524pt;}
._26{width:202.193355pt;}
._17{width:208.088962pt;}
._1f{width:355.897381pt;}
.fs3{font-size:51.840286pt;}
.fs1{font-size:62.079630pt;}
.fs0{font-size:93.439916pt;}
.fs2{font-size:145.280202pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.879266pt;}
.y5b{bottom:2.879305pt;}
.y59{bottom:2.879324pt;}
.y3d{bottom:2.879344pt;}
.y40{bottom:2.883283pt;}
.ya4{bottom:2.885639pt;}
.y49{bottom:2.887223pt;}
.yd4{bottom:3.195674pt;}
.y3b{bottom:3.195752pt;}
.ycb{bottom:3.199614pt;}
.y6a{bottom:3.199653pt;}
.yd9{bottom:3.199691pt;}
.ya7{bottom:3.202047pt;}
.ybf{bottom:3.203631pt;}
.y3{bottom:67.518503pt;}
.y1{bottom:104.966601pt;}
.ya2{bottom:145.915319pt;}
.y8f{bottom:149.600913pt;}
.yf1{bottom:151.211255pt;}
.y4f{bottom:156.637657pt;}
.ye9{bottom:159.045114pt;}
.ya1{bottom:160.952656pt;}
.y29{bottom:165.121731pt;}
.yc{bottom:165.609607pt;}
.y4e{bottom:168.633429pt;}
.y4d{bottom:171.670977pt;}
.y101{bottom:174.087584pt;}
.ya0{bottom:176.476424pt;}
.y8e{bottom:176.484134pt;}
.yf0{bottom:178.089758pt;}
.ye8{bottom:185.767282pt;}
.y4c{bottom:187.194745pt;}
.yde{bottom:187.363378pt;}
.y9f{bottom:188.472195pt;}
.y9e{bottom:191.351539pt;}
.y28{bottom:191.843992pt;}
.y100{bottom:192.000234pt;}
.y4a{bottom:199.036329pt;}
.yb{bottom:201.761730pt;}
.y8d{bottom:203.201583pt;}
.yef{bottom:204.968260pt;}
.ydd{bottom:205.115287pt;}
.y9d{bottom:206.234611pt;}
.yff{bottom:209.922412pt;}
.ye7{bottom:212.484731pt;}
.y48{bottom:213.911445pt;}
.y27{bottom:218.722494pt;}
.ya{bottom:220.001295pt;}
.ydc{bottom:220.156563pt;}
.y9c{bottom:221.271871pt;}
.yfe{bottom:227.688254pt;}
.y47{bottom:228.952644pt;}
.y8c{bottom:230.080086pt;}
.y46{bottom:231.831988pt;}
.yee{bottom:231.846763pt;}
.y9b{bottom:233.117395pt;}
.ydb{bottom:235.035619pt;}
.y9a{bottom:235.996739pt;}
.y9{bottom:238.245486pt;}
.ye6{bottom:239.363234pt;}
.y45{bottom:243.839656pt;}
.yfd{bottom:245.600997pt;}
.yd8{bottom:247.035408pt;}
.yda{bottom:250.076895pt;}
.y99{bottom:250.875794pt;}
.y26{bottom:256.006611pt;}
.y8{bottom:256.167663pt;}
.y8b{bottom:256.802346pt;}
.yed{bottom:258.568930pt;}
.y44{bottom:258.872975pt;}
.yfc{bottom:263.523082pt;}
.yd7{bottom:265.592706pt;}
.y97{bottom:265.917070pt;}
.ye5{bottom:266.246454pt;}
.y7{bottom:274.407136pt;}
.y43{bottom:276.635391pt;}
.yd6{bottom:277.434291pt;}
.y98{bottom:280.796126pt;}
.y96{bottom:280.954330pt;}
.yfb{bottom:281.445259pt;}
.y42{bottom:288.476899pt;}
.y41{bottom:291.356243pt;}
.yd3{bottom:292.317363pt;}
.y25{bottom:293.124957pt;}
.y8a{bottom:294.247515pt;}
.yd5{bottom:295.354833pt;}
.yec{bottom:295.687369pt;}
.y95{bottom:296.474158pt;}
.yfa{bottom:299.367437pt;}
.y3f{bottom:303.514236pt;}
.ye4{bottom:303.521135pt;}
.y3e{bottom:306.397519pt;}
.yd2{bottom:310.878601pt;}
.y89{bottom:312.314333pt;}
.y94{bottom:312.643323pt;}
.yf9{bottom:317.284897pt;}
.y3a{bottom:318.239026pt;}
.y3c{bottom:318.397230pt;}
.y24{bottom:319.842499pt;}
.y88{bottom:324.155918pt;}
.y6{bottom:324.955419pt;}
.yd1{bottom:325.757733pt;}
.ye3{bottom:330.243395pt;}
.y93{bottom:330.409166pt;}
.yeb{bottom:331.683249pt;}
.yf8{bottom:335.206982pt;}
.y39{bottom:336.958546pt;}
.yd0{bottom:337.919666pt;}
.y87{bottom:339.031034pt;}
.ycf{bottom:340.798932pt;}
.y86{bottom:341.918257pt;}
.y23{bottom:346.725719pt;}
.yea{bottom:349.605381pt;}
.yf7{bottom:352.968154pt;}
.y85{bottom:354.076249pt;}
.y38{bottom:354.242190pt;}
.yce{bottom:355.674048pt;}
.y92{bottom:357.287668pt;}
.y84{bottom:368.959244pt;}
.ycd{bottom:370.719264pt;}
.yf6{bottom:370.880849pt;}
.y5{bottom:371.366367pt;}
.y22{bottom:373.604222pt;}
.yca{bottom:382.394765pt;}
.y83{bottom:383.992564pt;}
.y91{bottom:384.009836pt;}
.ycc{bottom:385.436175pt;}
.yf5{bottom:388.802981pt;}
.y82{bottom:398.879576pt;}
.y21{bottom:400.482724pt;}
.yc9{bottom:400.952064pt;}
.y81{bottom:401.758920pt;}
.yf4{bottom:406.725159pt;}
.y37{bottom:410.888338pt;}
.yc8{bottom:413.117936pt;}
.y80{bottom:413.596487pt;}
.y4{bottom:417.759510pt;}
.yf3{bottom:424.642572pt;}
.y20{bottom:427.361227pt;}
.yc6{bottom:427.834847pt;}
.y7f{bottom:428.637764pt;}
.yc7{bottom:430.872395pt;}
.y36{bottom:437.766841pt;}
.y7d{bottom:443.358615pt;}
.y7e{bottom:446.396163pt;}
.y1f{bottom:454.239729pt;}
.yf2{bottom:454.400736pt;}
.yc5{bottom:458.558095pt;}
.yc4{bottom:461.437439pt;}
.y7c{bottom:461.919930pt;}
.y35{bottom:464.645343pt;}
.y7b{bottom:474.073983pt;}
.yc3{bottom:476.316494pt;}
.y1e{bottom:480.961897pt;}
.y7a{bottom:488.960957pt;}
.yc2{bottom:491.199528pt;}
.y34{bottom:491.367557pt;}
.y79{bottom:503.994276pt;}
.yc1{bottom:506.078622pt;}
.y78{bottom:506.873581pt;}
.y1d{bottom:507.840399pt;}
.ybe{bottom:517.916228pt;}
.y33{bottom:518.246060pt;}
.y77{bottom:518.715166pt;}
.yc0{bottom:520.953737pt;}
.ye2{bottom:528.642238pt;}
.y76{bottom:533.598200pt;}
.ybd{bottom:536.477505pt;}
.y1c{bottom:545.124562pt;}
.y75{bottom:548.635498pt;}
.y74{bottom:551.518781pt;}
.ye1{bottom:555.520741pt;}
.ybc{bottom:563.518531pt;}
.y73{bottom:566.397836pt;}
.y1b{bottom:571.846776pt;}
.y72{bottom:578.559769pt;}
.ybb{bottom:581.439113pt;}
.ye0{bottom:582.242955pt;}
.y117{bottom:592.965956pt;}
.y71{bottom:593.280659pt;}
.y1a{bottom:598.725279pt;}
.yba{bottom:608.155813pt;}
.ydf{bottom:609.282510pt;}
.y116{bottom:610.722317pt;}
.y70{bottom:611.035118pt;}
.y6f{bottom:623.197051pt;}
.y19{bottom:625.603781pt;}
.y115{bottom:628.644495pt;}
.y90{bottom:635.999960pt;}
.y6e{bottom:638.076145pt;}
.yb9{bottom:640.955450pt;}
.y114{bottom:646.566626pt;}
.y18{bottom:652.484180pt;}
.y6d{bottom:652.959178pt;}
.y6c{bottom:655.838483pt;}
.y32{bottom:662.881284pt;}
.y113{bottom:664.480294pt;}
.y69{bottom:667.838272pt;}
.y6b{bottom:667.996476pt;}
.y17{bottom:679.204498pt;}
.y112{bottom:682.402425pt;}
.yb8{bottom:682.713388pt;}
.yb7{bottom:685.600611pt;}
.y68{bottom:686.399549pt;}
.y31{bottom:689.601601pt;}
.yb6{bottom:697.758604pt;}
.y67{bottom:698.237155pt;}
.y111{bottom:700.324603pt;}
.y16{bottom:706.243081pt;}
.y66{bottom:713.278393pt;}
.yb5{bottom:715.520942pt;}
.y65{bottom:716.157698pt;}
.y30{bottom:716.640185pt;}
.y110{bottom:718.080039pt;}
.y64{bottom:728.157487pt;}
.yb4{bottom:730.397641pt;}
.y10f{bottom:736.002193pt;}
.yb3{bottom:742.560385pt;}
.y63{bottom:743.199535pt;}
.y15{bottom:743.360502pt;}
.yb2{bottom:745.439690pt;}
.y10e{bottom:753.924348pt;}
.yb1{bottom:760.317200pt;}
.y62{bottom:760.956351pt;}
.y14{bottom:770.239953pt;}
.y10d{bottom:771.838940pt;}
.yb0{bottom:772.315406pt;}
.yaf{bottom:775.201045pt;}
.y61{bottom:775.840157pt;}
.y60{bottom:787.838362pt;}
.y10c{bottom:789.761095pt;}
.yae{bottom:790.078517pt;}
.y13{bottom:797.119404pt;}
.y5f{bottom:802.715872pt;}
.yad{bottom:805.120566pt;}
.y5e{bottom:805.759716pt;}
.y2f{bottom:807.524116pt;}
.y10b{bottom:807.683249pt;}
.yac{bottom:820.637226pt;}
.y5d{bottom:821.118153pt;}
.y12{bottom:823.839721pt;}
.y10a{bottom:825.605427pt;}
.yab{bottom:832.635412pt;}
.y5c{bottom:833.280878pt;}
.y2e{bottom:834.244433pt;}
.y109{bottom:843.519996pt;}
.y5a{bottom:848.158388pt;}
.yaa{bottom:850.398562pt;}
.y11{bottom:850.719172pt;}
.y2d{bottom:861.123884pt;}
.y108{bottom:861.283017pt;}
.ya9{bottom:862.396748pt;}
.y58{bottom:863.200417pt;}
.y57{bottom:866.079742pt;}
.ya6{bottom:877.116054pt;}
.ya8{bottom:877.280573pt;}
.y10{bottom:877.598623pt;}
.y107{bottom:879.205172pt;}
.y56{bottom:880.799029pt;}
.y2c{bottom:888.003335pt;}
.y2{bottom:891.360419pt;}
.y55{bottom:895.676539pt;}
.y106{bottom:897.119764pt;}
.yf{bottom:904.478073pt;}
.y54{bottom:910.718568pt;}
.y2b{bottom:914.882786pt;}
.y105{bottom:915.041919pt;}
.ya5{bottom:922.716774pt;}
.y53{bottom:925.596079pt;}
.ye{bottom:931.198379pt;}
.y104{bottom:932.964073pt;}
.y52{bottom:940.479904pt;}
.y2a{bottom:941.603091pt;}
.y103{bottom:950.878654pt;}
.ya3{bottom:952.636313pt;}
.y51{bottom:955.521953pt;}
.yd{bottom:968.482531pt;}
.y102{bottom:968.641675pt;}
.y50{bottom:970.241249pt;}
.hc{height:14.554768pt;}
.h10{height:14.556352pt;}
.ha{height:14.558708pt;}
.h13{height:14.558746pt;}
.h8{height:14.558785pt;}
.h17{height:14.561064pt;}
.hf{height:14.561083pt;}
.h15{height:14.561093pt;}
.he{height:14.561102pt;}
.hd{height:14.562647pt;}
.h11{height:14.562686pt;}
.hb{height:14.562725pt;}
.h7{height:15.033397pt;}
.h1a{height:15.037259pt;}
.h14{height:15.037337pt;}
.h19{height:15.041199pt;}
.h12{height:15.041238pt;}
.h18{height:15.041276pt;}
.h16{height:15.042029pt;}
.h9{height:46.499319pt;}
.h6{height:46.904321pt;}
.h5{height:55.683731pt;}
.h3{height:56.168728pt;}
.h2{height:70.581812pt;}
.h4{height:135.207063pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w1d{width:7.998794pt;}
.w10{width:14.080156pt;}
.we{width:29.762128pt;}
.w1b{width:31.039627pt;}
.w2{width:36.640052pt;}
.wf{width:41.759531pt;}
.w4{width:42.074385pt;}
.w1c{width:46.075331pt;}
.w14{width:46.720816pt;}
.wb{width:47.518151pt;}
.w1e{width:50.397466pt;}
.w1f{width:76.317613pt;}
.wa{width:100.637520pt;}
.w19{width:103.680571pt;}
.w5{width:194.879673pt;}
.wd{width:211.036257pt;}
.w8{width:263.041843pt;}
.wc{width:275.678388pt;}
.w11{width:299.517367pt;}
.w1a{width:347.997391pt;}
.w16{width:356.958088pt;}
.w17{width:365.760541pt;}
.w18{width:378.397877pt;}
.w6{width:382.720022pt;}
.w12{width:441.761747pt;}
.w13{width:441.919951pt;}
.w15{width:446.242075pt;}
.w9{width:453.601729pt;}
.w3{width:464.479837pt;}
.w7{width:464.638041pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:110.397464pt;}
.xe{left:117.602523pt;}
.x4{left:126.871899pt;}
.x5{left:128.804942pt;}
.xd{left:147.037485pt;}
.xf{left:218.561993pt;}
.x14{left:229.440102pt;}
.x6{left:234.874398pt;}
.x1b{left:236.799755pt;}
.x1c{left:241.280084pt;}
.x12{left:300.321809pt;}
.x1f{left:304.643953pt;}
.x1e{left:317.281289pt;}
.x1d{left:326.083743pt;}
.x20{left:335.044439pt;}
.x1a{left:383.524463pt;}
.x16{left:407.363442pt;}
.xa{left:417.756831pt;}
.x13{left:419.999987pt;}
.x9{left:428.320676pt;}
.x7{left:462.081013pt;}
.x17{left:472.005574pt;}
.x11{left:488.162157pt;}
.x8{left:538.716244pt;}
.xc{left:540.795452pt;}
.x15{left:582.404311pt;}
.xb{left:609.912315pt;}
.x10{left:640.967446pt;}
.x18{left:653.279703pt;}
.x19{left:668.961674pt;}
.x3{left:717.922976pt;}
.x1{left:742.717345pt;}
}




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