
    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_87c4b4ff39419b6c2d349fc7.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_358583c8012d776d2a45f816.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_db6c0ce5e370f4774f060111.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_0d9cdf4587551644d7ccb28a.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_c9c7ff200fc3848f0c2ca29d.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.899221px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321705px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000003px;}
.ls0{letter-spacing:4.493520px;}
.ls3{letter-spacing:13.500000px;}
.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;}
.ws4{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.800000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-17.717252px;}
._11{margin-left:-9.281259px;}
._16{margin-left:-7.980469px;}
._17{margin-left:-6.609378px;}
._0{margin-left:-5.343749px;}
._2{margin-left:-3.972656px;}
._3{margin-left:-2.671873px;}
._1{margin-left:-1.300761px;}
._4{width:4.405751px;}
._10{width:5.435041px;}
._7{width:8.869545px;}
._a{width:9.886173px;}
._9{width:12.662993px;}
._8{width:13.745454px;}
._6{width:17.340884px;}
._d{width:18.594116px;}
._5{width:22.483773px;}
._c{width:26.954422px;}
._1a{width:27.964281px;}
._b{width:31.381170px;}
._12{width:32.450626px;}
._f{width:36.147358px;}
._e{width:40.384996px;}
._13{width:41.420037px;}
._18{width:54.000021px;}
._15{width:58.500000px;}
._14{width:62.542968px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:13.500000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:43.200002px;}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y74{bottom:3.496581px;}
.y34{bottom:3.496583px;}
.yb6{bottom:3.569086px;}
.yb1{bottom:3.569088px;}
.ybf{bottom:3.569091px;}
.ya5{bottom:3.569092px;}
.yac{bottom:3.569094px;}
.ya8{bottom:3.569101px;}
.yb8{bottom:22.542474px;}
.ya7{bottom:22.542481px;}
.yb0{bottom:22.542483px;}
.ybe{bottom:22.542486px;}
.yab{bottom:22.542489px;}
.yb4{bottom:41.515863px;}
.ybd{bottom:41.515866px;}
.yaa{bottom:41.515869px;}
.yaf{bottom:41.515878px;}
.yae{bottom:60.489258px;}
.ybc{bottom:60.489261px;}
.ybb{bottom:79.462641px;}
.yfa{bottom:89.480707px;}
.yda{bottom:94.758977px;}
.yc6{bottom:96.380854px;}
.yba{bottom:98.436036px;}
.y32{bottom:104.000249px;}
.yf9{bottom:110.178953px;}
.y94{bottom:120.528078px;}
.y31{bottom:121.248784px;}
.yc5{bottom:127.428217px;}
.yf8{bottom:130.877197px;}
.y72{bottom:132.670173px;}
.yf7{bottom:151.575436px;}
.yd9{bottom:151.575439px;}
.y93{bottom:151.575441px;}
.y30{bottom:156.497310px;}
.yc4{bottom:158.475586px;}
.y71{bottom:163.717536px;}
.y53{bottom:169.575262px;}
.yf6{bottom:172.273678px;}
.y2f{bottom:173.745844px;}
.yd8{bottom:182.622803px;}
.y92{bottom:182.622804px;}
.yc3{bottom:189.522958px;}
.y2e{bottom:190.994378px;}
.yf5{bottom:192.971920px;}
.y70{bottom:194.764899px;}
.y52{bottom:200.622629px;}
.y2d{bottom:208.242923px;}
.yd7{bottom:212.321048px;}
.yf4{bottom:213.670163px;}
.y91{bottom:213.670168px;}
.yc2{bottom:220.569952px;}
.y2c{bottom:225.491457px;}
.y6f{bottom:225.812263px;}
.y51{bottom:231.669801px;}
.yf3{bottom:234.368408px;}
.y2b{bottom:242.805906px;}
.y90{bottom:244.717531px;}
.yc1{bottom:251.617313px;}
.yf2{bottom:255.066646px;}
.y6e{bottom:256.859626px;}
.y2a{bottom:260.054441px;}
.yd6{bottom:261.368410px;}
.y50{bottom:262.717164px;}
.yc0{bottom:271.991083px;}
.yf1{bottom:275.764888px;}
.y8f{bottom:275.764894px;}
.y29{bottom:277.302976px;}
.y6d{bottom:287.906989px;}
.yb9{bottom:288.520388px;}
.yd5{bottom:292.415778px;}
.y4f{bottom:293.764528px;}
.y28{bottom:294.551520px;}
.yf0{bottom:296.463130px;}
.y8e{bottom:306.812257px;}
.y27{bottom:311.800056px;}
.yef{bottom:317.161373px;}
.y6c{bottom:318.954353px;}
.yd4{bottom:323.463134px;}
.y4e{bottom:324.811891px;}
.yb3{bottom:326.467166px;}
.y26{bottom:329.048591px;}
.y8d{bottom:336.510503px;}
.yee{bottom:337.859618px;}
.yb7{bottom:345.440555px;}
.y25{bottom:346.297126px;}
.y6b{bottom:350.001703px;}
.yd3{bottom:354.510502px;}
.y4d{bottom:355.859254px;}
.yed{bottom:358.557865px;}
.y24{bottom:363.545661px;}
.yb5{bottom:364.413942px;}
.yec{bottom:379.256107px;}
.y23{bottom:380.794197px;}
.y6a{bottom:381.049066px;}
.yb2{bottom:383.387331px;}
.y8c{bottom:385.557861px;}
.yd2{bottom:385.557869px;}
.y4c{bottom:386.906618px;}
.y22{bottom:398.042729px;}
.yeb{bottom:399.954353px;}
.yad{bottom:403.485716px;}
.y69{bottom:412.096429px;}
.y21{bottom:415.291264px;}
.y119{bottom:416.604493px;}
.y8b{bottom:416.605224px;}
.yd1{bottom:416.605225px;}
.y4b{bottom:417.953980px;}
.yea{bottom:420.652588px;}
.ya9{bottom:422.459104px;}
.y118{bottom:437.302735px;}
.ye9{bottom:441.350830px;}
.ya6{bottom:441.432492px;}
.y68{bottom:443.143793px;}
.y8a{bottom:447.652588px;}
.yd0{bottom:447.652593px;}
.y4a{bottom:449.001348px;}
.y20{bottom:450.539789px;}
.y117{bottom:458.000978px;}
.ya4{bottom:460.405881px;}
.ye8{bottom:462.049073px;}
.y1f{bottom:467.788324px;}
.y67{bottom:472.842038px;}
.y116{bottom:478.699222px;}
.y89{bottom:478.699951px;}
.ycf{bottom:478.699956px;}
.y49{bottom:480.048711px;}
.ye7{bottom:491.747318px;}
.y1e{bottom:494.036898px;}
.ya3{bottom:494.747317px;}
.y115{bottom:499.397467px;}
.y88{bottom:509.747314px;}
.yce{bottom:509.747319px;}
.y48{bottom:511.096074px;}
.y1d{bottom:511.285432px;}
.y114{bottom:520.095698px;}
.y66{bottom:521.889409px;}
.y1c{bottom:528.533966px;}
.y113{bottom:540.793951px;}
.ye6{bottom:540.794669px;}
.y87{bottom:540.794678px;}
.ya2{bottom:540.794679px;}
.ycd{bottom:540.794683px;}
.y47{bottom:542.143438px;}
.y1b{bottom:545.782499px;}
.y65{bottom:552.936772px;}
.y112{bottom:561.492193px;}
.y1a{bottom:563.031033px;}
.ye5{bottom:571.842037px;}
.ya1{bottom:571.842043px;}
.y86{bottom:571.842044px;}
.ycc{bottom:571.842046px;}
.y46{bottom:573.190801px;}
.y19{bottom:580.279574px;}
.y111{bottom:582.190435px;}
.y64{bottom:583.984129px;}
.y18{bottom:597.528109px;}
.y110{bottom:602.888678px;}
.y85{bottom:602.889400px;}
.ye4{bottom:602.889404px;}
.ya0{bottom:602.889406px;}
.ycb{bottom:602.889409px;}
.y45{bottom:604.238164px;}
.y17{bottom:614.776661px;}
.y63{bottom:615.031493px;}
.y10f{bottom:623.586908px;}
.y16{bottom:632.025196px;}
.ye3{bottom:633.936760px;}
.y84{bottom:633.936768px;}
.y9f{bottom:633.936769px;}
.yca{bottom:633.936772px;}
.y44{bottom:635.285528px;}
.y10e{bottom:644.285155px;}
.y62{bottom:646.078861px;}
.y15{bottom:649.273731px;}
.y10d{bottom:664.983398px;}
.ye2{bottom:664.984128px;}
.y83{bottom:664.984131px;}
.y9e{bottom:664.984132px;}
.y43{bottom:666.332889px;}
.y14{bottom:666.522267px;}
.y61{bottom:677.126224px;}
.y13{bottom:683.770845px;}
.y10c{bottom:685.681642px;}
.y9d{bottom:696.031488px;}
.ye1{bottom:696.031491px;}
.y82{bottom:696.031494px;}
.y42{bottom:697.380253px;}
.y12{bottom:701.019380px;}
.y10b{bottom:706.379878px;}
.y60{bottom:708.173588px;}
.y11{bottom:718.267916px;}
.y10a{bottom:727.078120px;}
.y9c{bottom:727.078851px;}
.ye0{bottom:727.078854px;}
.yc9{bottom:727.078856px;}
.y81{bottom:727.078858px;}
.y41{bottom:728.427616px;}
.y10{bottom:735.516448px;}
.y5f{bottom:737.871638px;}
.y109{bottom:747.776363px;}
.yf{bottom:752.764983px;}
.y9b{bottom:758.126214px;}
.ydf{bottom:758.126218px;}
.y80{bottom:758.126221px;}
.yc8{bottom:758.126224px;}
.y40{bottom:759.474979px;}
.y108{bottom:768.474608px;}
.y5e{bottom:786.919006px;}
.ye{bottom:788.662448px;}
.y107{bottom:789.172852px;}
.y9a{bottom:789.173578px;}
.yc7{bottom:789.173580px;}
.yde{bottom:789.173581px;}
.y7f{bottom:789.173584px;}
.y3f{bottom:790.522343px;}
.y106{bottom:809.871093px;}
.y5d{bottom:817.966369px;}
.y99{bottom:820.220941px;}
.ydd{bottom:820.220944px;}
.y7e{bottom:820.220948px;}
.y3e{bottom:821.569705px;}
.yd{bottom:827.360693px;}
.y105{bottom:830.569336px;}
.y5c{bottom:849.013733px;}
.y104{bottom:851.267578px;}
.y98{bottom:851.268304px;}
.ydc{bottom:851.268307px;}
.y7d{bottom:851.268310px;}
.y3d{bottom:852.617061px;}
.yc{bottom:866.058928px;}
.y103{bottom:871.965820px;}
.y5b{bottom:878.711977px;}
.y97{bottom:882.315668px;}
.ydb{bottom:882.315670px;}
.y7c{bottom:882.315673px;}
.y3c{bottom:883.664428px;}
.yb{bottom:886.757170px;}
.y102{bottom:892.664062px;}
.ya{bottom:907.455412px;}
.y101{bottom:913.362308px;}
.y7b{bottom:913.363036px;}
.y96{bottom:913.363038px;}
.y3b{bottom:914.711791px;}
.y5a{bottom:927.759334px;}
.y100{bottom:934.060550px;}
.y7a{bottom:944.410400px;}
.y3a{bottom:945.759154px;}
.y9{bottom:946.153663px;}
.yff{bottom:954.758792px;}
.y59{bottom:958.806697px;}
.y8{bottom:966.851905px;}
.y79{bottom:975.457763px;}
.y39{bottom:976.806518px;}
.y7{bottom:987.550147px;}
.y58{bottom:988.504944px;}
.yfe{bottom:996.156005px;}
.y78{bottom:1006.505126px;}
.y95{bottom:1006.505128px;}
.y38{bottom:1007.853881px;}
.yfd{bottom:1016.854248px;}
.y6{bottom:1023.084870px;}
.y57{bottom:1037.552306px;}
.y77{bottom:1037.552490px;}
.y37{bottom:1038.901244px;}
.y5{bottom:1048.129303px;}
.yfc{bottom:1058.250732px;}
.y56{bottom:1068.599669px;}
.y76{bottom:1068.599854px;}
.y36{bottom:1069.948608px;}
.y4{bottom:1077.827534px;}
.yfb{bottom:1078.948975px;}
.y35{bottom:1099.646850px;}
.y55{bottom:1099.647033px;}
.y75{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y33{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y54{bottom:1116.451720px;}
.y73{bottom:1116.451905px;}
.h5{height:11.990479px;}
.hd{height:18.973389px;}
.h15{height:35.268750px;}
.hf{height:37.946778px;}
.h2{height:43.989259px;}
.h7{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:53.789061px;}
.h10{height:56.920166px;}
.he{height:58.620119px;}
.h12{height:59.167970px;}
.h6{height:63.949219px;}
.h3{height:64.546875px;}
.h14{height:66.049832px;}
.h11{height:75.893554px;}
.h4{height:85.265628px;}
.h13{height:113.840333px;}
.hc{height:146.548095px;}
.hb{height:146.548280px;}
.h1{height:146.548382px;}
.ha{height:146.548462px;}
.h0{height:1263.000000px;}
.w2{width:41.624988px;}
.w4{width:127.125000px;}
.w6{width:139.500047px;}
.w5{width:183.375046px;}
.w3{width:187.874988px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xf{left:6.750000px;}
.x11{left:7.970856px;}
.x1d{left:10.798213px;}
.x1f{left:12.282226px;}
.x18{left:14.352187px;}
.x21{left:16.767600px;}
.x19{left:17.793311px;}
.x14{left:19.034577px;}
.x1e{left:21.480297px;}
.x24{left:23.164424px;}
.x22{left:24.978653px;}
.x15{left:27.048624px;}
.x23{left:29.471066px;}
.x25{left:30.494786px;}
.x1c{left:38.513500px;}
.x16{left:41.020992px;}
.x1a{left:52.194783px;}
.x20{left:54.698388px;}
.x12{left:64.745934px;}
.xe{left:125.325005px;}
.x1{left:127.575005px;}
.x5{left:132.697713px;}
.x7{left:139.135701px;}
.xd{left:142.818318px;}
.x3{left:147.028279px;}
.x6{left:152.341268px;}
.x10{left:168.074993px;}
.xc{left:180.450005px;}
.xb{left:213.075005px;}
.x2{left:282.239210px;}
.x9{left:327.224727px;}
.x13{left:357.074985px;}
.x8{left:405.703578px;}
.x4{left:467.719205px;}
.x17{left:485.324985px;}
.xa{left:638.480570px;}
.x1b{left:669.825030px;}
@media print{
.v2{vertical-align:-21.243752pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000002pt;}
.ls0{letter-spacing:3.994240pt;}
.ls3{letter-spacing:12.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-15.748668pt;}
._11{margin-left:-8.250008pt;}
._16{margin-left:-7.093750pt;}
._17{margin-left:-5.875003pt;}
._0{margin-left:-4.749999pt;}
._2{margin-left:-3.531250pt;}
._3{margin-left:-2.374998pt;}
._1{margin-left:-1.156232pt;}
._4{width:3.916223pt;}
._10{width:4.831148pt;}
._7{width:7.884040pt;}
._a{width:8.787710pt;}
._9{width:11.255994pt;}
._8{width:12.218181pt;}
._6{width:15.414119pt;}
._d{width:16.528103pt;}
._5{width:19.985576pt;}
._c{width:23.959486pt;}
._1a{width:24.857138pt;}
._b{width:27.894373pt;}
._12{width:28.845001pt;}
._f{width:32.130985pt;}
._e{width:35.897774pt;}
._13{width:36.817810pt;}
._18{width:48.000019pt;}
._15{width:52.000000pt;}
._14{width:55.593750pt;}
.fs3{font-size:12.000000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:38.400002pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y74{bottom:3.108072pt;}
.y34{bottom:3.108073pt;}
.yb6{bottom:3.172521pt;}
.yb1{bottom:3.172523pt;}
.ybf{bottom:3.172525pt;}
.ya5{bottom:3.172526pt;}
.yac{bottom:3.172528pt;}
.ya8{bottom:3.172535pt;}
.yb8{bottom:20.037755pt;}
.ya7{bottom:20.037761pt;}
.yb0{bottom:20.037763pt;}
.ybe{bottom:20.037765pt;}
.yab{bottom:20.037768pt;}
.yb4{bottom:36.902989pt;}
.ybd{bottom:36.902992pt;}
.yaa{bottom:36.902995pt;}
.yaf{bottom:36.903003pt;}
.yae{bottom:53.768229pt;}
.ybc{bottom:53.768232pt;}
.ybb{bottom:70.633459pt;}
.yfa{bottom:79.538407pt;}
.yda{bottom:84.230202pt;}
.yc6{bottom:85.671870pt;}
.yba{bottom:87.498699pt;}
.y32{bottom:92.444666pt;}
.yf9{bottom:97.936847pt;}
.y94{bottom:107.136069pt;}
.y31{bottom:107.776697pt;}
.yc5{bottom:113.269527pt;}
.yf8{bottom:116.335287pt;}
.y72{bottom:117.929043pt;}
.yf7{bottom:134.733721pt;}
.yd9{bottom:134.733724pt;}
.y93{bottom:134.733725pt;}
.y30{bottom:139.108720pt;}
.yc4{bottom:140.867188pt;}
.y71{bottom:145.526699pt;}
.y53{bottom:150.733566pt;}
.yf6{bottom:153.132158pt;}
.y2f{bottom:154.440750pt;}
.yd8{bottom:162.331380pt;}
.y92{bottom:162.331381pt;}
.yc3{bottom:168.464851pt;}
.y2e{bottom:169.772780pt;}
.yf5{bottom:171.530596pt;}
.y70{bottom:173.124355pt;}
.y52{bottom:178.331226pt;}
.y2d{bottom:185.104820pt;}
.yd7{bottom:188.729820pt;}
.yf4{bottom:189.929033pt;}
.y91{bottom:189.929038pt;}
.yc2{bottom:196.062180pt;}
.y2c{bottom:200.436850pt;}
.y6f{bottom:200.722012pt;}
.y51{bottom:205.928712pt;}
.yf3{bottom:208.327473pt;}
.y2b{bottom:215.827472pt;}
.y90{bottom:217.526694pt;}
.yc1{bottom:223.659833pt;}
.yf2{bottom:226.725908pt;}
.y6e{bottom:228.319668pt;}
.y2a{bottom:231.159503pt;}
.yd6{bottom:232.327476pt;}
.y50{bottom:233.526368pt;}
.yc0{bottom:241.769852pt;}
.yf1{bottom:245.124345pt;}
.y8f{bottom:245.124350pt;}
.y29{bottom:246.491534pt;}
.y6d{bottom:255.917324pt;}
.yb9{bottom:256.462567pt;}
.yd5{bottom:259.925136pt;}
.y4f{bottom:261.124025pt;}
.y28{bottom:261.823573pt;}
.yf0{bottom:263.522783pt;}
.y8e{bottom:272.722007pt;}
.y27{bottom:277.155605pt;}
.yef{bottom:281.921220pt;}
.y6c{bottom:283.514980pt;}
.yd4{bottom:287.522786pt;}
.y4e{bottom:288.721681pt;}
.yb3{bottom:290.193036pt;}
.y26{bottom:292.487636pt;}
.y8d{bottom:299.120447pt;}
.yee{bottom:300.319660pt;}
.yb7{bottom:307.058271pt;}
.y25{bottom:307.819667pt;}
.y6b{bottom:311.112625pt;}
.yd3{bottom:315.120446pt;}
.y4d{bottom:316.319337pt;}
.yed{bottom:318.718102pt;}
.y24{bottom:323.151698pt;}
.yb5{bottom:323.923504pt;}
.yec{bottom:337.116540pt;}
.y23{bottom:338.483730pt;}
.y6a{bottom:338.710281pt;}
.yb2{bottom:340.788739pt;}
.y8c{bottom:342.718099pt;}
.yd2{bottom:342.718106pt;}
.y4c{bottom:343.916993pt;}
.y22{bottom:353.815759pt;}
.yeb{bottom:355.514980pt;}
.yad{bottom:358.653969pt;}
.y69{bottom:366.307937pt;}
.y21{bottom:369.147791pt;}
.y119{bottom:370.315105pt;}
.y8b{bottom:370.315754pt;}
.yd1{bottom:370.315756pt;}
.y4b{bottom:371.514649pt;}
.yea{bottom:373.913411pt;}
.ya9{bottom:375.519204pt;}
.y118{bottom:388.713543pt;}
.ye9{bottom:392.311849pt;}
.ya6{bottom:392.384437pt;}
.y68{bottom:393.905593pt;}
.y8a{bottom:397.913411pt;}
.yd0{bottom:397.913416pt;}
.y4a{bottom:399.112309pt;}
.y20{bottom:400.479813pt;}
.y117{bottom:407.111980pt;}
.ya4{bottom:409.249672pt;}
.ye8{bottom:410.710287pt;}
.y1f{bottom:415.811844pt;}
.y67{bottom:420.304033pt;}
.y116{bottom:425.510420pt;}
.y89{bottom:425.511068pt;}
.ycf{bottom:425.511072pt;}
.y49{bottom:426.709965pt;}
.ye7{bottom:437.108727pt;}
.y1e{bottom:439.143909pt;}
.ya3{bottom:439.775393pt;}
.y115{bottom:443.908860pt;}
.y88{bottom:453.108723pt;}
.yce{bottom:453.108728pt;}
.y48{bottom:454.307621pt;}
.y1d{bottom:454.475939pt;}
.y114{bottom:462.307287pt;}
.y66{bottom:463.901697pt;}
.y1c{bottom:469.807969pt;}
.y113{bottom:480.705734pt;}
.ye6{bottom:480.706372pt;}
.y87{bottom:480.706380pt;}
.ya2{bottom:480.706381pt;}
.ycd{bottom:480.706385pt;}
.y47{bottom:481.905278pt;}
.y1b{bottom:485.139999pt;}
.y65{bottom:491.499353pt;}
.y112{bottom:499.104171pt;}
.y1a{bottom:500.472029pt;}
.ye5{bottom:508.304032pt;}
.ya1{bottom:508.304038pt;}
.y86{bottom:508.304039pt;}
.ycc{bottom:508.304041pt;}
.y46{bottom:509.502934pt;}
.y19{bottom:515.804065pt;}
.y111{bottom:517.502609pt;}
.y64{bottom:519.097004pt;}
.y18{bottom:531.136096pt;}
.y110{bottom:535.901047pt;}
.y85{bottom:535.901689pt;}
.ye4{bottom:535.901692pt;}
.ya0{bottom:535.901694pt;}
.ycb{bottom:535.901697pt;}
.y45{bottom:537.100590pt;}
.y17{bottom:546.468143pt;}
.y63{bottom:546.694660pt;}
.y10f{bottom:554.299473pt;}
.y16{bottom:561.800174pt;}
.ye3{bottom:563.499342pt;}
.y84{bottom:563.499349pt;}
.y9f{bottom:563.499350pt;}
.yca{bottom:563.499353pt;}
.y44{bottom:564.698247pt;}
.y10e{bottom:572.697916pt;}
.y62{bottom:574.292321pt;}
.y15{bottom:577.132205pt;}
.y10d{bottom:591.096353pt;}
.ye2{bottom:591.097002pt;}
.y83{bottom:591.097005pt;}
.y9e{bottom:591.097007pt;}
.y43{bottom:592.295901pt;}
.y14{bottom:592.464237pt;}
.y61{bottom:601.889977pt;}
.y13{bottom:607.796306pt;}
.y10c{bottom:609.494793pt;}
.y9d{bottom:618.694656pt;}
.ye1{bottom:618.694658pt;}
.y82{bottom:618.694661pt;}
.y42{bottom:619.893558pt;}
.y12{bottom:623.128337pt;}
.y10b{bottom:627.893224pt;}
.y60{bottom:629.487633pt;}
.y11{bottom:638.460369pt;}
.y10a{bottom:646.291662pt;}
.y9c{bottom:646.292312pt;}
.ye0{bottom:646.292314pt;}
.yc9{bottom:646.292316pt;}
.y81{bottom:646.292318pt;}
.y41{bottom:647.491214pt;}
.y10{bottom:653.792398pt;}
.y5f{bottom:655.885900pt;}
.y109{bottom:664.690100pt;}
.yf{bottom:669.124430pt;}
.y9b{bottom:673.889968pt;}
.ydf{bottom:673.889971pt;}
.y80{bottom:673.889974pt;}
.yc8{bottom:673.889976pt;}
.y40{bottom:675.088870pt;}
.y108{bottom:683.088540pt;}
.y5e{bottom:699.483561pt;}
.ye{bottom:701.033287pt;}
.y107{bottom:701.486980pt;}
.y9a{bottom:701.487625pt;}
.yc7{bottom:701.487626pt;}
.yde{bottom:701.487627pt;}
.y7f{bottom:701.487630pt;}
.y3f{bottom:702.686527pt;}
.y106{bottom:719.885416pt;}
.y5d{bottom:727.081217pt;}
.y99{bottom:729.085281pt;}
.ydd{bottom:729.085283pt;}
.y7e{bottom:729.085287pt;}
.y3e{bottom:730.284182pt;}
.yd{bottom:735.431727pt;}
.y105{bottom:738.283854pt;}
.y5c{bottom:754.678873pt;}
.y104{bottom:756.682291pt;}
.y98{bottom:756.682937pt;}
.ydc{bottom:756.682940pt;}
.y7d{bottom:756.682942pt;}
.y3d{bottom:757.881832pt;}
.yc{bottom:769.830158pt;}
.y103{bottom:775.080729pt;}
.y5b{bottom:781.077313pt;}
.y97{bottom:784.280593pt;}
.ydb{bottom:784.280596pt;}
.y7c{bottom:784.280598pt;}
.y3c{bottom:785.479492pt;}
.yb{bottom:788.228596pt;}
.y102{bottom:793.479167pt;}
.ya{bottom:806.627033pt;}
.y101{bottom:811.877607pt;}
.y7b{bottom:811.878255pt;}
.y96{bottom:811.878256pt;}
.y3b{bottom:813.077148pt;}
.y5a{bottom:824.674963pt;}
.y100{bottom:830.276045pt;}
.y7a{bottom:839.475911pt;}
.y3a{bottom:840.674804pt;}
.y9{bottom:841.025478pt;}
.yff{bottom:848.674481pt;}
.y59{bottom:852.272620pt;}
.y8{bottom:859.423916pt;}
.y79{bottom:867.073567pt;}
.y39{bottom:868.272461pt;}
.y7{bottom:877.822353pt;}
.y58{bottom:878.671061pt;}
.yfe{bottom:885.472005pt;}
.y78{bottom:894.671223pt;}
.y95{bottom:894.671225pt;}
.y38{bottom:895.870117pt;}
.yfd{bottom:903.870442pt;}
.y6{bottom:909.408773pt;}
.y57{bottom:922.268717pt;}
.y77{bottom:922.268880pt;}
.y37{bottom:923.467773pt;}
.y5{bottom:931.670492pt;}
.yfc{bottom:940.667317pt;}
.y56{bottom:949.866373pt;}
.y76{bottom:949.866537pt;}
.y36{bottom:951.065429pt;}
.y4{bottom:958.068919pt;}
.yfb{bottom:959.065756pt;}
.y35{bottom:977.463867pt;}
.y55{bottom:977.464029pt;}
.y75{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y33{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y54{bottom:992.401529pt;}
.y73{bottom:992.401693pt;}
.h5{height:10.658203pt;}
.hd{height:16.865234pt;}
.h15{height:31.350000pt;}
.hf{height:33.730469pt;}
.h2{height:39.101563pt;}
.h7{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:47.812499pt;}
.h10{height:50.595703pt;}
.he{height:52.106772pt;}
.h12{height:52.593751pt;}
.h6{height:56.843750pt;}
.h3{height:57.375000pt;}
.h14{height:58.710961pt;}
.h11{height:67.460937pt;}
.h4{height:75.791669pt;}
.h13{height:101.191407pt;}
.hc{height:130.264973pt;}
.hb{height:130.265137pt;}
.h1{height:130.265228pt;}
.ha{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w2{width:36.999989pt;}
.w4{width:113.000000pt;}
.w6{width:124.000041pt;}
.w5{width:163.000041pt;}
.w3{width:166.999989pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xf{left:6.000000pt;}
.x11{left:7.085205pt;}
.x1d{left:9.598412pt;}
.x1f{left:10.917534pt;}
.x18{left:12.757500pt;}
.x21{left:14.904533pt;}
.x19{left:15.816277pt;}
.x14{left:16.919624pt;}
.x1e{left:19.093597pt;}
.x24{left:20.590599pt;}
.x22{left:22.203247pt;}
.x15{left:24.043221pt;}
.x23{left:26.196503pt;}
.x25{left:27.106476pt;}
.x1c{left:34.234222pt;}
.x16{left:36.463104pt;}
.x1a{left:46.395363pt;}
.x20{left:48.620789pt;}
.x12{left:57.551941pt;}
.xe{left:111.400004pt;}
.x1{left:113.400004pt;}
.x5{left:117.953523pt;}
.x7{left:123.676179pt;}
.xd{left:126.949616pt;}
.x3{left:130.691804pt;}
.x6{left:135.414461pt;}
.x10{left:149.399993pt;}
.xc{left:160.400004pt;}
.xb{left:189.400004pt;}
.x2{left:250.879298pt;}
.x9{left:290.866424pt;}
.x13{left:317.399987pt;}
.x8{left:360.625403pt;}
.x4{left:415.750404pt;}
.x17{left:431.399987pt;}
.xa{left:567.538284pt;}
.x1b{left:595.400027pt;}
}




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