
    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_2779efc60d7b3755f95163e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e75c9ca0bfa41954dc49da90.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_cb599f9378a7af571cab5700.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011230;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_e82deec93669e81151890a27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_b5b2f51568585dfccab428c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws4{word-spacing:-17.832504px;}
.ws2{word-spacing:-17.656641px;}
.ws5{word-spacing:-15.603441px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:41.257471px;}
.ws0{word-spacing:114.984375px;}
._9{margin-left:-11.395918px;}
._a{margin-left:-9.971428px;}
._2{margin-left:-8.722802px;}
._5{margin-left:-7.074083px;}
._3{margin-left:-4.361401px;}
._1{margin-left:-2.648435px;}
._4{margin-left:-1.512419px;}
._6{width:1.116729px;}
._8{width:2.637956px;}
._7{width:59.019604px;}
._0{width:824.367122px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.999996px;}
.fs5{font-size:54.025100px;}
.fs6{font-size:63.029284px;}
.fs1{font-size:72.033467px;}
.fs3{font-size:81.037651px;}
.fs4{font-size:108.050201px;}
.fs2{font-size:162.075301px;}
.y0{bottom:0.000000px;}
.y7c{bottom:6.753146px;}
.yd6{bottom:11.255225px;}
.y2{bottom:25.380071px;}
.y7b{bottom:31.514650px;}
.y4e{bottom:36.016663px;}
.yd5{bottom:36.016729px;}
.yfe{bottom:42.082767px;}
.y50{bottom:42.082942px;}
.y3{bottom:42.083008px;}
.y23{bottom:42.083102px;}
.y7e{bottom:42.083118px;}
.yfd{bottom:45.020904px;}
.ya8{bottom:56.276150px;}
.y7a{bottom:56.276155px;}
.y4d{bottom:60.778167px;}
.yd4{bottom:60.778233px;}
.y20{bottom:66.405844px;}
.yfc{bottom:69.782408px;}
.ya7{bottom:81.037655px;}
.y79{bottom:81.037659px;}
.y4c{bottom:85.539672px;}
.yd3{bottom:85.539738px;}
.y1f{bottom:91.167348px;}
.yfb{bottom:94.543912px;}
.ya6{bottom:105.799159px;}
.y78{bottom:105.799163px;}
.y4b{bottom:110.301176px;}
.yd2{bottom:110.301242px;}
.y1e{bottom:115.928853px;}
.yfa{bottom:130.560646px;}
.ya5{bottom:130.560663px;}
.y77{bottom:130.560668px;}
.yd1{bottom:135.062746px;}
.y1d{bottom:140.690357px;}
.y4a{bottom:146.317910px;}
.yf9{bottom:155.322150px;}
.ya4{bottom:155.322168px;}
.yd0{bottom:159.824251px;}
.y1c{bottom:165.451861px;}
.y76{bottom:166.577401px;}
.y49{bottom:171.079414px;}
.yf8{bottom:180.083655px;}
.ya3{bottom:180.083672px;}
.y75{bottom:191.338906px;}
.y48{bottom:195.840918px;}
.ycf{bottom:195.840984px;}
.y1b{bottom:201.468595px;}
.yf7{bottom:204.845159px;}
.ya2{bottom:204.845176px;}
.y22{bottom:208.221732px;}
.y74{bottom:216.100410px;}
.y47{bottom:220.602423px;}
.yce{bottom:220.602489px;}
.y1a{bottom:226.230099px;}
.y4f{bottom:227.355560px;}
.ya1{bottom:229.606681px;}
.yf6{bottom:240.861893px;}
.y73{bottom:240.861914px;}
.y46{bottom:245.363927px;}
.ycd{bottom:245.363993px;}
.y19{bottom:250.991604px;}
.ya0{bottom:254.368185px;}
.yf5{bottom:265.623397px;}
.y72{bottom:265.623419px;}
.y45{bottom:270.125431px;}
.ycc{bottom:270.125497px;}
.y18{bottom:275.753108px;}
.y9f{bottom:279.129689px;}
.yf4{bottom:290.384901px;}
.y71{bottom:290.384923px;}
.ycb{bottom:294.887002px;}
.y17{bottom:300.514612px;}
.y9e{bottom:303.891194px;}
.y44{bottom:306.142165px;}
.y70{bottom:315.146427px;}
.yca{bottom:319.648506px;}
.yf3{bottom:325.276112px;}
.y16{bottom:325.276117px;}
.y43{bottom:330.903669px;}
.y21{bottom:332.029254px;}
.y9d{bottom:339.907927px;}
.y6f{bottom:339.907932px;}
.yc9{bottom:344.410010px;}
.y15{bottom:350.037621px;}
.y42{bottom:355.665174px;}
.y9c{bottom:364.669432px;}
.yc8{bottom:369.171515px;}
.y14{bottom:374.799125px;}
.y6e{bottom:374.799142px;}
.yf2{bottom:378.175689px;}
.y41{bottom:380.426678px;}
.y9b{bottom:389.430936px;}
.yc7{bottom:393.933019px;}
.yaa{bottom:396.184074px;}
.y13{bottom:399.560630px;}
.y40{bottom:405.188182px;}
.yf1{bottom:414.192423px;}
.y9a{bottom:414.192440px;}
.yc6{bottom:418.694523px;}
.y6d{bottom:427.698720px;}
.y3f{bottom:429.949687px;}
.y12{bottom:434.451840px;}
.yf0{bottom:438.953927px;}
.y99{bottom:438.953945px;}
.ya9{bottom:445.707082px;}
.y6c{bottom:452.460224px;}
.y3e{bottom:454.711191px;}
.yc5{bottom:454.711257px;}
.yef{bottom:463.715432px;}
.y98{bottom:474.970678px;}
.y6b{bottom:477.221729px;}
.y3d{bottom:479.472695px;}
.yc4{bottom:479.472761px;}
.y11{bottom:487.351418px;}
.yee{bottom:488.476936px;}
.y97{bottom:499.732183px;}
.y6a{bottom:501.983233px;}
.yc3{bottom:504.234266px;}
.y3c{bottom:515.489429px;}
.yed{bottom:524.493670px;}
.y96{bottom:524.493687px;}
.y69{bottom:526.744737px;}
.yc2{bottom:528.995770px;}
.y3b{bottom:540.250933px;}
.y95{bottom:549.255191px;}
.y68{bottom:551.506242px;}
.y10{bottom:553.757270px;}
.yc1{bottom:553.757274px;}
.yec{bottom:560.510403px;}
.y3a{bottom:565.012438px;}
.y111{bottom:568.389010px;}
.y67{bottom:576.267746px;}
.yc0{bottom:578.518779px;}
.yf{bottom:581.895344px;}
.y94{bottom:584.146402px;}
.yeb{bottom:585.271908px;}
.y39{bottom:589.773942px;}
.y110{bottom:589.773946px;}
.y66{bottom:601.029250px;}
.ybf{bottom:603.280283px;}
.yea{bottom:610.033412px;}
.ye{bottom:610.033417px;}
.y93{bottom:613.409998px;}
.y38{bottom:614.535446px;}
.y65{bottom:625.790755px;}
.y10f{bottom:628.041725px;}
.ye9{bottom:634.794916px;}
.yd{bottom:638.171490px;}
.y37{bottom:639.296951px;}
.ybe{bottom:639.297017px;}
.y10e{bottom:649.426661px;}
.y64{bottom:650.552259px;}
.ybd{bottom:664.058521px;}
.yc{bottom:666.309563px;}
.y92{bottom:666.309576px;}
.y10d{bottom:670.811597px;}
.ye8{bottom:670.811650px;}
.y36{bottom:674.188161px;}
.y63{bottom:675.313763px;}
.ybc{bottom:688.820025px;}
.y91{bottom:691.071080px;}
.yb{bottom:694.447636px;}
.y62{bottom:700.075268px;}
.ye7{bottom:706.828384px;}
.ybb{bottom:713.581530px;}
.y90{bottom:715.832584px;}
.ya{bottom:722.585709px;}
.y10c{bottom:723.711174px;}
.y35{bottom:727.087739px;}
.ye6{bottom:731.589888px;}
.y61{bottom:736.092001px;}
.yba{bottom:738.343034px;}
.y8f{bottom:740.594089px;}
.y9{bottom:750.723782px;}
.y34{bottom:751.849243px;}
.ye5{bottom:756.351392px;}
.y60{bottom:760.853506px;}
.yb9{bottom:763.104539px;}
.y8e{bottom:765.355593px;}
.y33{bottom:776.610748px;}
.y8{bottom:778.861855px;}
.ye4{bottom:781.112897px;}
.y5f{bottom:785.615010px;}
.yb8{bottom:787.866043px;}
.y8d{bottom:790.117097px;}
.y32{bottom:801.372252px;}
.ye3{bottom:805.874401px;}
.y7{bottom:806.999929px;}
.y5e{bottom:810.376514px;}
.yb7{bottom:812.627547px;}
.y31{bottom:826.133756px;}
.y8c{bottom:826.133831px;}
.y10b{bottom:828.384806px;}
.y5d{bottom:835.138019px;}
.yb6{bottom:837.389052px;}
.ye2{bottom:841.891135px;}
.y30{bottom:850.895261px;}
.y8b{bottom:850.895335px;}
.y10a{bottom:853.146310px;}
.y5c{bottom:859.899523px;}
.ye1{bottom:866.652639px;}
.yb5{bottom:873.405785px;}
.y2f{bottom:875.656765px;}
.y8a{bottom:875.656840px;}
.y109{bottom:877.907815px;}
.y5b{bottom:884.661028px;}
.y6{bottom:886.912056px;}
.ye0{bottom:891.414143px;}
.yb4{bottom:898.167290px;}
.y2e{bottom:900.418269px;}
.y89{bottom:900.418344px;}
.y108{bottom:902.669319px;}
.y5a{bottom:909.422532px;}
.ydf{bottom:916.175648px;}
.yb3{bottom:922.928794px;}
.y88{bottom:925.179848px;}
.y5{bottom:930.807450px;}
.y2d{bottom:936.435003px;}
.y107{bottom:938.686053px;}
.y59{bottom:945.439266px;}
.yb2{bottom:947.690298px;}
.y87{bottom:949.941353px;}
.yde{bottom:952.192381px;}
.y2c{bottom:961.196507px;}
.y106{bottom:963.447557px;}
.y58{bottom:970.200770px;}
.y86{bottom:974.702857px;}
.yb1{bottom:982.581509px;}
.y2b{bottom:985.958012px;}
.y105{bottom:988.209061px;}
.ydd{bottom:988.209115px;}
.y57{bottom:994.962274px;}
.y85{bottom:999.464362px;}
.y2a{bottom:1010.719516px;}
.y104{bottom:1012.970566px;}
.ydc{bottom:1012.970619px;}
.y56{bottom:1019.723779px;}
.y84{bottom:1024.225866px;}
.y29{bottom:1035.481020px;}
.yb0{bottom:1035.481086px;}
.ydb{bottom:1037.732124px;}
.y55{bottom:1044.485283px;}
.y103{bottom:1048.987299px;}
.y83{bottom:1048.987370px;}
.y28{bottom:1060.242525px;}
.yaf{bottom:1060.242591px;}
.y54{bottom:1069.246787px;}
.y4{bottom:1070.372293px;}
.y102{bottom:1073.748804px;}
.yda{bottom:1073.748857px;}
.y82{bottom:1073.748875px;}
.y27{bottom:1085.004029px;}
.yae{bottom:1085.004095px;}
.y53{bottom:1094.008292px;}
.y101{bottom:1098.510308px;}
.y26{bottom:1109.765533px;}
.yd9{bottom:1109.765591px;}
.yad{bottom:1109.765599px;}
.y81{bottom:1109.765608px;}
.y52{bottom:1118.769796px;}
.y7d{bottom:1125.522934px;}
.y25{bottom:1134.527038px;}
.y100{bottom:1134.527042px;}
.yd8{bottom:1134.527095px;}
.yac{bottom:1134.527104px;}
.y80{bottom:1134.527113px;}
.y51{bottom:1153.661007px;}
.y24{bottom:1159.288542px;}
.yff{bottom:1159.288546px;}
.yd7{bottom:1159.288599px;}
.yab{bottom:1159.288608px;}
.y7f{bottom:1159.288617px;}
.y1{bottom:1229.879973px;}
.h2{height:34.945310px;}
.h9{height:43.895394px;}
.hc{height:51.211293px;}
.hb{height:54.835506px;}
.h4{height:57.366497px;}
.h7{height:58.527192px;}
.h6{height:63.943771px;}
.h8{height:78.663501px;}
.h5{height:117.995251px;}
.ha{height:1177.296899px;}
.h3{height:1177.296971px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:806.999906px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:16.882844px;}
.xc{left:33.765688px;}
.x5{left:37.142257px;}
.x1{left:39.679684px;}
.x2{left:43.499994px;}
.xa{left:338.342749px;}
.x3{left:372.548088px;}
.x6{left:423.864899px;}
.xb{left:529.294747px;}
.x8{left:583.777092px;}
.x7{left:641.055651px;}
.x9{left:746.292045px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-15.851114pt;}
.ws2{word-spacing:-15.694792pt;}
.ws5{word-spacing:-13.869725pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:36.673308pt;}
.ws0{word-spacing:102.208334pt;}
._9{margin-left:-10.129705pt;}
._a{margin-left:-8.863491pt;}
._2{margin-left:-7.753602pt;}
._5{margin-left:-6.288074pt;}
._3{margin-left:-3.876801pt;}
._1{margin-left:-2.354165pt;}
._4{margin-left:-1.344372pt;}
._6{width:0.992648pt;}
._8{width:2.344850pt;}
._7{width:52.461870pt;}
._0{width:732.770775pt;}
.fs0{font-size:42.666663pt;}
.fs5{font-size:48.022311pt;}
.fs6{font-size:56.026030pt;}
.fs1{font-size:64.029749pt;}
.fs3{font-size:72.033467pt;}
.fs4{font-size:96.044623pt;}
.fs2{font-size:144.066934pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:6.002796pt;}
.yd6{bottom:10.004644pt;}
.y2{bottom:22.560063pt;}
.y7b{bottom:28.013023pt;}
.y4e{bottom:32.014811pt;}
.yd5{bottom:32.014870pt;}
.yfe{bottom:37.406904pt;}
.y50{bottom:37.407060pt;}
.y3{bottom:37.407118pt;}
.y23{bottom:37.407202pt;}
.y7e{bottom:37.407216pt;}
.yfd{bottom:40.018581pt;}
.ya8{bottom:50.023245pt;}
.y7a{bottom:50.023249pt;}
.y4d{bottom:54.025038pt;}
.yd4{bottom:54.025096pt;}
.y20{bottom:59.027417pt;}
.yfc{bottom:62.028807pt;}
.ya7{bottom:72.033471pt;}
.y79{bottom:72.033475pt;}
.y4c{bottom:76.035264pt;}
.yd3{bottom:76.035322pt;}
.y1f{bottom:81.037643pt;}
.yfb{bottom:84.039033pt;}
.ya6{bottom:94.043697pt;}
.y78{bottom:94.043701pt;}
.y4b{bottom:98.045490pt;}
.yd2{bottom:98.045548pt;}
.y1e{bottom:103.047869pt;}
.yfa{bottom:116.053907pt;}
.ya5{bottom:116.053923pt;}
.y77{bottom:116.053927pt;}
.yd1{bottom:120.055775pt;}
.y1d{bottom:125.058095pt;}
.y4a{bottom:130.060364pt;}
.yf9{bottom:138.064134pt;}
.ya4{bottom:138.064149pt;}
.yd0{bottom:142.066001pt;}
.y1c{bottom:147.068321pt;}
.y76{bottom:148.068801pt;}
.y49{bottom:152.070590pt;}
.yf8{bottom:160.074360pt;}
.ya3{bottom:160.074375pt;}
.y75{bottom:170.079027pt;}
.y48{bottom:174.080816pt;}
.ycf{bottom:174.080875pt;}
.y1b{bottom:179.083195pt;}
.yf7{bottom:182.084586pt;}
.ya2{bottom:182.084601pt;}
.y22{bottom:185.085984pt;}
.y74{bottom:192.089253pt;}
.y47{bottom:196.091042pt;}
.yce{bottom:196.091101pt;}
.y1a{bottom:201.093422pt;}
.y4f{bottom:202.093831pt;}
.ya1{bottom:204.094827pt;}
.yf6{bottom:214.099460pt;}
.y73{bottom:214.099479pt;}
.y46{bottom:218.101268pt;}
.ycd{bottom:218.101327pt;}
.y19{bottom:223.103648pt;}
.ya0{bottom:226.105053pt;}
.yf5{bottom:236.109686pt;}
.y72{bottom:236.109706pt;}
.y45{bottom:240.111495pt;}
.ycc{bottom:240.111553pt;}
.y18{bottom:245.113874pt;}
.y9f{bottom:248.115280pt;}
.yf4{bottom:258.119912pt;}
.y71{bottom:258.119932pt;}
.ycb{bottom:262.121779pt;}
.y17{bottom:267.124100pt;}
.y9e{bottom:270.125506pt;}
.y44{bottom:272.126369pt;}
.y70{bottom:280.130158pt;}
.yca{bottom:284.132005pt;}
.yf3{bottom:289.134322pt;}
.y16{bottom:289.134326pt;}
.y43{bottom:294.136595pt;}
.y21{bottom:295.137115pt;}
.y9d{bottom:302.140380pt;}
.y6f{bottom:302.140384pt;}
.yc9{bottom:306.142231pt;}
.y15{bottom:311.144552pt;}
.y42{bottom:316.146821pt;}
.y9c{bottom:324.150606pt;}
.yc8{bottom:328.152458pt;}
.y14{bottom:333.154778pt;}
.y6e{bottom:333.154793pt;}
.yf2{bottom:336.156168pt;}
.y41{bottom:338.157047pt;}
.y9b{bottom:346.160832pt;}
.yc7{bottom:350.162684pt;}
.yaa{bottom:352.163621pt;}
.y13{bottom:355.165004pt;}
.y40{bottom:360.167273pt;}
.yf1{bottom:368.171043pt;}
.y9a{bottom:368.171058pt;}
.yc6{bottom:372.172910pt;}
.y6d{bottom:380.176640pt;}
.y3f{bottom:382.177499pt;}
.y12{bottom:386.179414pt;}
.yf0{bottom:390.181269pt;}
.y99{bottom:390.181284pt;}
.ya9{bottom:396.184073pt;}
.y6c{bottom:402.186866pt;}
.y3e{bottom:404.187725pt;}
.yc5{bottom:404.187784pt;}
.yef{bottom:412.191495pt;}
.y98{bottom:422.196159pt;}
.y6b{bottom:424.197092pt;}
.y3d{bottom:426.197951pt;}
.yc4{bottom:426.198010pt;}
.y11{bottom:433.201260pt;}
.yee{bottom:434.201721pt;}
.y97{bottom:444.206385pt;}
.y6a{bottom:446.207318pt;}
.yc3{bottom:448.208236pt;}
.y3c{bottom:458.212826pt;}
.yed{bottom:466.216595pt;}
.y96{bottom:466.216611pt;}
.y69{bottom:468.217544pt;}
.yc2{bottom:470.218462pt;}
.y3b{bottom:480.223052pt;}
.y95{bottom:488.226837pt;}
.y68{bottom:490.227770pt;}
.y10{bottom:492.228685pt;}
.yc1{bottom:492.228688pt;}
.yec{bottom:498.231470pt;}
.y3a{bottom:502.233278pt;}
.y111{bottom:505.234676pt;}
.y67{bottom:512.237997pt;}
.yc0{bottom:514.238915pt;}
.yf{bottom:517.240305pt;}
.y94{bottom:519.241246pt;}
.yeb{bottom:520.241696pt;}
.y39{bottom:524.243504pt;}
.y110{bottom:524.243508pt;}
.y66{bottom:534.248223pt;}
.ybf{bottom:536.249141pt;}
.yea{bottom:542.251922pt;}
.ye{bottom:542.251926pt;}
.y93{bottom:545.253332pt;}
.y38{bottom:546.253730pt;}
.y65{bottom:556.258449pt;}
.y10f{bottom:558.259312pt;}
.ye9{bottom:564.262148pt;}
.yd{bottom:567.263547pt;}
.y37{bottom:568.263956pt;}
.ybe{bottom:568.264015pt;}
.y10e{bottom:577.268143pt;}
.y64{bottom:578.268675pt;}
.ybd{bottom:590.274241pt;}
.yc{bottom:592.275167pt;}
.y92{bottom:592.275178pt;}
.y10d{bottom:596.276975pt;}
.ye8{bottom:596.277022pt;}
.y36{bottom:599.278366pt;}
.y63{bottom:600.278901pt;}
.ybc{bottom:612.284467pt;}
.y91{bottom:614.285404pt;}
.yb{bottom:617.286788pt;}
.y62{bottom:622.289127pt;}
.ye7{bottom:628.291897pt;}
.ybb{bottom:634.294693pt;}
.y90{bottom:636.295631pt;}
.ya{bottom:642.298408pt;}
.y10c{bottom:643.298821pt;}
.y35{bottom:646.300212pt;}
.ye6{bottom:650.302123pt;}
.y61{bottom:654.304001pt;}
.yba{bottom:656.304919pt;}
.y8f{bottom:658.305857pt;}
.y9{bottom:667.310029pt;}
.y34{bottom:668.310438pt;}
.ye5{bottom:672.312349pt;}
.y60{bottom:676.314227pt;}
.yb9{bottom:678.315145pt;}
.y8e{bottom:680.316083pt;}
.y33{bottom:690.320665pt;}
.y8{bottom:692.321649pt;}
.ye4{bottom:694.322575pt;}
.y5f{bottom:698.324453pt;}
.yb8{bottom:700.325371pt;}
.y8d{bottom:702.326309pt;}
.y32{bottom:712.330891pt;}
.ye3{bottom:716.332801pt;}
.y7{bottom:717.333270pt;}
.y5e{bottom:720.334680pt;}
.yb7{bottom:722.335598pt;}
.y31{bottom:734.341117pt;}
.y8c{bottom:734.341183pt;}
.y10b{bottom:736.342050pt;}
.y5d{bottom:742.344906pt;}
.yb6{bottom:744.345824pt;}
.ye2{bottom:748.347675pt;}
.y30{bottom:756.351343pt;}
.y8b{bottom:756.351409pt;}
.y10a{bottom:758.352276pt;}
.y5c{bottom:764.355132pt;}
.ye1{bottom:770.357901pt;}
.yb5{bottom:776.360698pt;}
.y2f{bottom:778.361569pt;}
.y8a{bottom:778.361635pt;}
.y109{bottom:780.362502pt;}
.y5b{bottom:786.365358pt;}
.y6{bottom:788.366272pt;}
.ye0{bottom:792.368127pt;}
.yb4{bottom:798.370924pt;}
.y2e{bottom:800.371795pt;}
.y89{bottom:800.371861pt;}
.y108{bottom:802.372728pt;}
.y5a{bottom:808.375584pt;}
.ydf{bottom:814.378353pt;}
.yb3{bottom:820.381150pt;}
.y88{bottom:822.382088pt;}
.y5{bottom:827.384400pt;}
.y2d{bottom:832.386669pt;}
.y107{bottom:834.387602pt;}
.y59{bottom:840.390458pt;}
.yb2{bottom:842.391376pt;}
.y87{bottom:844.392314pt;}
.yde{bottom:846.393228pt;}
.y2c{bottom:854.396895pt;}
.y106{bottom:856.397829pt;}
.y58{bottom:862.400684pt;}
.y86{bottom:866.402540pt;}
.yb1{bottom:873.405786pt;}
.y2b{bottom:876.407121pt;}
.y105{bottom:878.408055pt;}
.ydd{bottom:878.408102pt;}
.y57{bottom:884.410910pt;}
.y85{bottom:888.412766pt;}
.y2a{bottom:898.417348pt;}
.y104{bottom:900.418281pt;}
.ydc{bottom:900.418328pt;}
.y56{bottom:906.421137pt;}
.y84{bottom:910.422992pt;}
.y29{bottom:920.427574pt;}
.yb0{bottom:920.427632pt;}
.ydb{bottom:922.428554pt;}
.y55{bottom:928.431363pt;}
.y103{bottom:932.433155pt;}
.y83{bottom:932.433218pt;}
.y28{bottom:942.437800pt;}
.yaf{bottom:942.437858pt;}
.y54{bottom:950.441589pt;}
.y4{bottom:951.442038pt;}
.y102{bottom:954.443381pt;}
.yda{bottom:954.443429pt;}
.y82{bottom:954.443444pt;}
.y27{bottom:964.448026pt;}
.yae{bottom:964.448085pt;}
.y53{bottom:972.451815pt;}
.y101{bottom:976.453607pt;}
.y26{bottom:986.458252pt;}
.yd9{bottom:986.458303pt;}
.yad{bottom:986.458311pt;}
.y81{bottom:986.458318pt;}
.y52{bottom:994.462041pt;}
.y7d{bottom:1000.464830pt;}
.y25{bottom:1008.468478pt;}
.y100{bottom:1008.468482pt;}
.yd8{bottom:1008.468529pt;}
.yac{bottom:1008.468537pt;}
.y80{bottom:1008.468544pt;}
.y51{bottom:1025.476450pt;}
.y24{bottom:1030.478704pt;}
.yff{bottom:1030.478708pt;}
.yd7{bottom:1030.478755pt;}
.yab{bottom:1030.478763pt;}
.y7f{bottom:1030.478771pt;}
.y1{bottom:1093.226642pt;}
.h2{height:31.062497pt;}
.h9{height:39.018128pt;}
.hc{height:45.521149pt;}
.hb{height:48.742672pt;}
.h4{height:50.992441pt;}
.h7{height:52.024171pt;}
.h6{height:56.838908pt;}
.h8{height:69.923112pt;}
.h5{height:104.884668pt;}
.ha{height:1046.486132pt;}
.h3{height:1046.486196pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:717.333250pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:15.006972pt;}
.xc{left:30.013945pt;}
.x5{left:33.015339pt;}
.x1{left:35.270830pt;}
.x2{left:38.666661pt;}
.xa{left:300.749110pt;}
.x3{left:331.153856pt;}
.x6{left:376.768799pt;}
.xb{left:470.484220pt;}
.x8{left:518.912970pt;}
.x7{left:569.827245pt;}
.x9{left:663.370706pt;}
}




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