
    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_a61e17d37ff44f6972730a2d.woff')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_8b25b5c4756f5383d594c25d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0a147d21ff7c3bb77c8d33ed.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0a3a9b5d2b5086ff16ea2679.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_03f8d3a1b67fd2c5c63fa97d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c3043cd0de4483929b9372b6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.012000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_749043af134800e169845621.woff')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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);}
.v1{vertical-align:-2.594012px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:107.972093px;}
.ls1{letter-spacing:111.679694px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000002px;}
.ws5{word-spacing:-48.000000px;}
.ws6{word-spacing:-40.800000px;}
.ws2{word-spacing:-29.916001px;}
.ws3{word-spacing:-28.254000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:79.718093px;}
._11{margin-left:-28.560000px;}
._8{margin-left:-26.843999px;}
._9{margin-left:-24.198000px;}
._b{margin-left:-22.152000px;}
._c{margin-left:-20.274000px;}
._1a{margin-left:-14.040000px;}
._10{margin-left:-12.000000px;}
._3{margin-left:-10.452001px;}
._2{margin-left:-9.282000px;}
._19{margin-left:-8.100000px;}
._6{margin-left:-7.026000px;}
._4{margin-left:-5.064001px;}
._1{margin-left:-3.774000px;}
._0{margin-left:-1.836000px;}
._18{width:1.077480px;}
._13{width:44.048953px;}
._d{width:51.197859px;}
._7{width:54.597413px;}
._17{width:58.771906px;}
._12{width:66.884769px;}
._a{width:81.186247px;}
._5{width:90.171978px;}
._f{width:100.899754px;}
._16{width:103.537414px;}
._15{width:107.972093px;}
._e{width:134.649305px;}
._14{width:1204.258393px;}
.fc2{color:rgb(224,92,55);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:96.000006px;}
.fs3{font-size:102.000000px;}
.fs9{font-size:108.000003px;}
.fs2{font-size:114.000007px;}
.fs6{font-size:120.000001px;}
.fs1{font-size:136.575135px;}
.fsa{font-size:186.000000px;}
.fsb{font-size:204.000001px;}
.fs0{font-size:207.061252px;}
.fs8{font-size:222.000001px;}
.fs5{font-size:240.000002px;}
.fs7{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y8b{bottom:74.179698px;}
.y16{bottom:83.339954px;}
.y71{bottom:83.339977px;}
.y35{bottom:84.971711px;}
.y23{bottom:88.955122px;}
.y7e{bottom:90.748912px;}
.y46{bottom:92.504826px;}
.y8a{bottom:110.899710px;}
.yb{bottom:118.013704px;}
.y7d{bottom:121.348924px;}
.y52{bottom:123.644939px;}
.y34{bottom:123.851701px;}
.y22{bottom:127.835123px;}
.y45{bottom:129.224827px;}
.y70{bottom:130.357385px;}
.y14{bottom:135.899438px;}
.ya{bottom:146.813705px;}
.y89{bottom:147.619689px;}
.y51{bottom:160.364940px;}
.y33{bottom:162.731668px;}
.y21{bottom:174.215106px;}
.y61{bottom:175.401733px;}
.y7c{bottom:184.948911px;}
.y15{bottom:191.339958px;}
.y88{bottom:191.839660px;}
.y13{bottom:194.099437px;}
.y32{bottom:201.611669px;}
.y44{bottom:202.544904px;}
.y6f{bottom:203.677406px;}
.y9{bottom:204.413718px;}
.y20{bottom:213.095107px;}
.y60{bottom:214.281735px;}
.y7b{bottom:215.548935px;}
.y8{bottom:233.213730px;}
.y50{bottom:233.684973px;}
.y43{bottom:239.264928px;}
.y6e{bottom:240.397418px;}
.y31{bottom:240.491671px;}
.y12{bottom:252.299435px;}
.y5f{bottom:253.161713px;}
.y7{bottom:262.013742px;}
.y87{bottom:266.059693px;}
.y4f{bottom:270.404985px;}
.y7a{bottom:279.148933px;}
.y30{bottom:286.871653px;}
.y1f{bottom:289.475117px;}
.y5e{bottom:292.041715px;}
.y36{bottom:299.339961px;}
.y86{bottom:302.779716px;}
.y4e{bottom:307.125020px;}
.y79{bottom:309.748934px;}
.y11{bottom:310.499422px;}
.y42{bottom:312.584938px;}
.y6d{bottom:313.717394px;}
.y6{bottom:319.613724px;}
.y91{bottom:325.663331px;}
.y1e{bottom:328.355152px;}
.y5d{bottom:330.921716px;}
.y85{bottom:339.499717px;}
.y5{bottom:348.413723px;}
.y41{bottom:349.304950px;}
.y2f{bottom:363.251663px;}
.y10{bottom:368.699397px;}
.y78{bottom:373.348944px;}
.y1d{bottom:374.735157px;}
.y90{bottom:379.543329px;}
.y4d{bottom:380.445019px;}
.y84{bottom:383.719723px;}
.y6c{bottom:387.037426px;}
.y2e{bottom:402.131664px;}
.y77{bottom:403.948945px;}
.y57{bottom:410.476318px;}
.y4c{bottom:417.165031px;}
.y40{bottom:422.624949px;}
.y5c{bottom:423.681726px;}
.y6b{bottom:423.757428px;}
.y66{bottom:426.615141px;}
.yf{bottom:426.899395px;}
.y8f{bottom:433.423321px;}
.y2d{bottom:441.011699px;}
.y56{bottom:441.076314px;}
.y2{bottom:443.983061px;}
.y1c{bottom:451.115145px;}
.y65{bottom:457.215137px;}
.y83{bottom:457.939721px;}
.y3f{bottom:459.344995px;}
.y5b{bottom:462.561716px;}
.y76{bottom:468.448954px;}
.y55{bottom:471.676309px;}
.ye{bottom:485.099405px;}
.y8e{bottom:487.303331px;}
.y2c{bottom:487.391705px;}
.y64{bottom:487.815132px;}
.y1b{bottom:489.995135px;}
.y4b{bottom:490.485030px;}
.y82{bottom:494.659717px;}
.y6a{bottom:497.077437px;}
.y75{bottom:499.048955px;}
.y5a{bottom:501.441718px;}
.y1{bottom:501.608437px;}
.y54{bottom:502.276305px;}
.y63{bottom:518.415128px;}
.y4a{bottom:527.205031px;}
.yd{bottom:528.299408px;}
.y1a{bottom:528.875136px;}
.y81{bottom:531.379717px;}
.y3e{bottom:532.665005px;}
.y53{bottom:532.876302px;}
.y69{bottom:533.797434px;}
.y39{bottom:539.100228px;}
.y8d{bottom:541.183335px;}
.y62{bottom:549.015125px;}
.y27{bottom:549.790422px;}
.y74{bottom:563.548948px;}
.y2b{bottom:563.771692px;}
.y3d{bottom:569.385006px;}
.y19{bottom:575.255142px;}
.y80{bottom:575.599720px;}
.y73{bottom:594.148945px;}
.y26{bottom:600.010424px;}
.y49{bottom:600.525029px;}
.y2a{bottom:602.651682px;}
.y3c{bottom:606.105007px;}
.y68{bottom:607.117440px;}
.y38{bottom:611.100230px;}
.y18{bottom:623.496362px;}
.y59{bottom:637.892117px;}
.y48{bottom:637.893539px;}
.y29{bottom:641.531683px;}
.y8c{bottom:644.092510px;}
.y25{bottom:650.230426px;}
.yc{bottom:660.523214px;}
.y7f{bottom:671.891474px;}
.y4{bottom:675.733874px;}
.y3b{bottom:679.424997px;}
.y37{bottom:683.100236px;}
.y72{bottom:683.706985px;}
.y28{bottom:687.911690px;}
.y17{bottom:690.096364px;}
.y24{bottom:700.450423px;}
.y67{bottom:702.423129px;}
.y3{bottom:707.053875px;}
.y58{bottom:709.892123px;}
.y47{bottom:709.893545px;}
.y3a{bottom:716.144998px;}
.h5{height:69.937504px;}
.h4{height:70.822266px;}
.hf{height:74.258789px;}
.he{height:74.308594px;}
.hb{height:78.626956px;}
.hc{height:78.679690px;}
.h3{height:79.154301px;}
.h8{height:87.363282px;}
.h7{height:87.656251px;}
.h2{height:99.430433px;}
.h1{height:150.746253px;}
.hd{height:157.542000px;}
.h10{height:172.788000px;}
.ha{height:188.034001px;}
.h6{height:203.280001px;}
.h9{height:304.920010px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:46.466457px;}
.xf{left:53.325002px;}
.x12{left:54.906909px;}
.x13{left:83.564879px;}
.x17{left:112.804136px;}
.x18{left:124.409114px;}
.x19{left:125.912074px;}
.x1a{left:137.517052px;}
.x1{left:146.290121px;}
.x2{left:264.638319px;}
.x1b{left:376.446860px;}
.xa{left:437.324748px;}
.x8{left:444.413110px;}
.x10{left:465.639945px;}
.x4{left:476.145904px;}
.x1d{left:534.324820px;}
.x1e{left:545.929798px;}
.x7{left:550.652643px;}
.x1c{left:570.643702px;}
.x9{left:587.288201px;}
.x1f{left:588.324821px;}
.x5{left:633.964340px;}
.x16{left:636.484295px;}
.x20{left:653.196902px;}
.x6{left:659.311682px;}
.x14{left:670.355346px;}
.xb{left:699.250185px;}
.x11{left:792.581650px;}
.xc{left:829.885217px;}
.x21{left:833.805139px;}
.x3{left:845.545302px;}
.xe{left:883.885219px;}
.xd{left:887.805141px;}
@media print{
.v1{vertical-align:-2.305788pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.975194pt;}
.ls1{letter-spacing:99.270839pt;}
.ws1{word-spacing:-64.000002pt;}
.ws5{word-spacing:-42.666667pt;}
.ws6{word-spacing:-36.266667pt;}
.ws2{word-spacing:-26.592001pt;}
.ws3{word-spacing:-25.114667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:70.860527pt;}
._11{margin-left:-25.386667pt;}
._8{margin-left:-23.861333pt;}
._9{margin-left:-21.509333pt;}
._b{margin-left:-19.690667pt;}
._c{margin-left:-18.021333pt;}
._1a{margin-left:-12.480000pt;}
._10{margin-left:-10.666667pt;}
._3{margin-left:-9.290667pt;}
._2{margin-left:-8.250667pt;}
._19{margin-left:-7.200000pt;}
._6{margin-left:-6.245334pt;}
._4{margin-left:-4.501334pt;}
._1{margin-left:-3.354667pt;}
._0{margin-left:-1.632000pt;}
._18{width:0.957760pt;}
._13{width:39.154625pt;}
._d{width:45.509208pt;}
._7{width:48.531034pt;}
._17{width:52.241694pt;}
._12{width:59.453128pt;}
._a{width:72.165553pt;}
._5{width:80.152869pt;}
._f{width:89.688670pt;}
._16{width:92.033257pt;}
._15{width:95.975194pt;}
._e{width:119.688271pt;}
._14{width:1070.451905pt;}
.fs4{font-size:85.333339pt;}
.fs3{font-size:90.666667pt;}
.fs9{font-size:96.000003pt;}
.fs2{font-size:101.333339pt;}
.fs6{font-size:106.666667pt;}
.fs1{font-size:121.400120pt;}
.fsa{font-size:165.333333pt;}
.fsb{font-size:181.333334pt;}
.fs0{font-size:184.054446pt;}
.fs8{font-size:197.333334pt;}
.fs5{font-size:213.333335pt;}
.fs7{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:65.937509pt;}
.y16{bottom:74.079959pt;}
.y71{bottom:74.079979pt;}
.y35{bottom:75.530409pt;}
.y23{bottom:79.071219pt;}
.y7e{bottom:80.665700pt;}
.y46{bottom:82.226512pt;}
.y8a{bottom:98.577520pt;}
.yb{bottom:104.901070pt;}
.y7d{bottom:107.865710pt;}
.y52{bottom:109.906612pt;}
.y34{bottom:110.090400pt;}
.y22{bottom:113.631221pt;}
.y45{bottom:114.866513pt;}
.y70{bottom:115.873231pt;}
.y14{bottom:120.799501pt;}
.ya{bottom:130.501071pt;}
.y89{bottom:131.217501pt;}
.y51{bottom:142.546614pt;}
.y33{bottom:144.650372pt;}
.y21{bottom:154.857872pt;}
.y61{bottom:155.912652pt;}
.y7c{bottom:164.399032pt;}
.y15{bottom:170.079962pt;}
.y88{bottom:170.524142pt;}
.y13{bottom:172.532832pt;}
.y32{bottom:179.210373pt;}
.y44{bottom:180.039915pt;}
.y6f{bottom:181.046583pt;}
.y9{bottom:181.701083pt;}
.y20{bottom:189.417873pt;}
.y60{bottom:190.472653pt;}
.y7b{bottom:191.599053pt;}
.y8{bottom:207.301094pt;}
.y50{bottom:207.719976pt;}
.y43{bottom:212.679936pt;}
.y6e{bottom:213.686594pt;}
.y31{bottom:213.770374pt;}
.y12{bottom:224.266164pt;}
.y5f{bottom:225.032634pt;}
.y7{bottom:232.901104pt;}
.y87{bottom:236.497505pt;}
.y4f{bottom:240.359987pt;}
.y7a{bottom:248.132385pt;}
.y30{bottom:254.997025pt;}
.y1f{bottom:257.311215pt;}
.y5e{bottom:259.592635pt;}
.y36{bottom:266.079965pt;}
.y86{bottom:269.137526pt;}
.y4e{bottom:273.000018pt;}
.y79{bottom:275.332386pt;}
.y11{bottom:275.999486pt;}
.y42{bottom:277.853278pt;}
.y6d{bottom:278.859906pt;}
.y6{bottom:284.101088pt;}
.y91{bottom:289.478516pt;}
.y1e{bottom:291.871246pt;}
.y5d{bottom:294.152636pt;}
.y85{bottom:301.777527pt;}
.y5{bottom:309.701087pt;}
.y41{bottom:310.493289pt;}
.y2f{bottom:322.890367pt;}
.y10{bottom:327.732797pt;}
.y78{bottom:331.865728pt;}
.y1d{bottom:333.097918pt;}
.y90{bottom:337.371848pt;}
.y4d{bottom:338.173350pt;}
.y84{bottom:341.084198pt;}
.y6c{bottom:344.033268pt;}
.y2e{bottom:357.450368pt;}
.y77{bottom:359.065728pt;}
.y57{bottom:364.867839pt;}
.y4c{bottom:370.813361pt;}
.y40{bottom:375.666621pt;}
.y5c{bottom:376.605979pt;}
.y6b{bottom:376.673269pt;}
.y66{bottom:379.213459pt;}
.yf{bottom:379.466129pt;}
.y8f{bottom:385.265174pt;}
.y2d{bottom:392.010400pt;}
.y56{bottom:392.067835pt;}
.y2{bottom:394.651610pt;}
.y1c{bottom:400.991240pt;}
.y65{bottom:406.413455pt;}
.y83{bottom:407.057530pt;}
.y3f{bottom:408.306662pt;}
.y5b{bottom:411.165970pt;}
.y76{bottom:416.399070pt;}
.y55{bottom:419.267830pt;}
.ye{bottom:431.199471pt;}
.y8e{bottom:433.158517pt;}
.y2c{bottom:433.237071pt;}
.y64{bottom:433.613451pt;}
.y1b{bottom:435.551231pt;}
.y4b{bottom:435.986693pt;}
.y82{bottom:439.697526pt;}
.y6a{bottom:441.846611pt;}
.y75{bottom:443.599071pt;}
.y5a{bottom:445.725971pt;}
.y1{bottom:445.874166pt;}
.y54{bottom:446.467826pt;}
.y63{bottom:460.813447pt;}
.y4a{bottom:468.626694pt;}
.yd{bottom:469.599474pt;}
.y1a{bottom:470.111232pt;}
.y81{bottom:472.337526pt;}
.y3e{bottom:473.480004pt;}
.y53{bottom:473.667824pt;}
.y69{bottom:474.486608pt;}
.y39{bottom:479.200202pt;}
.y8d{bottom:481.051853pt;}
.y62{bottom:488.013445pt;}
.y27{bottom:488.702598pt;}
.y74{bottom:500.932398pt;}
.y2b{bottom:501.130393pt;}
.y3d{bottom:506.120005pt;}
.y19{bottom:511.337904pt;}
.y80{bottom:511.644195pt;}
.y73{bottom:528.132396pt;}
.y26{bottom:533.342599pt;}
.y49{bottom:533.800026pt;}
.y2a{bottom:535.690384pt;}
.y3c{bottom:538.760006pt;}
.y68{bottom:539.659946pt;}
.y38{bottom:543.200204pt;}
.y18{bottom:554.218989pt;}
.y59{bottom:567.015215pt;}
.y48{bottom:567.016479pt;}
.y29{bottom:570.250385pt;}
.y8c{bottom:572.526675pt;}
.y25{bottom:577.982600pt;}
.yc{bottom:587.131746pt;}
.y7f{bottom:597.236866pt;}
.y4{bottom:600.652332pt;}
.y3b{bottom:603.933330pt;}
.y37{bottom:607.200209pt;}
.y72{bottom:607.739542pt;}
.y28{bottom:611.477058pt;}
.y17{bottom:613.418991pt;}
.y24{bottom:622.622598pt;}
.y67{bottom:624.376115pt;}
.y3{bottom:628.492333pt;}
.y58{bottom:631.015220pt;}
.y47{bottom:631.016484pt;}
.y3a{bottom:636.573331pt;}
.h5{height:62.166671pt;}
.h4{height:62.953125pt;}
.hf{height:66.007813pt;}
.he{height:66.052084pt;}
.hb{height:69.890627pt;}
.hc{height:69.937502pt;}
.h3{height:70.359379pt;}
.h8{height:77.656251pt;}
.h7{height:77.916667pt;}
.h2{height:88.382607pt;}
.h1{height:133.996669pt;}
.hd{height:140.037333pt;}
.h10{height:153.589334pt;}
.ha{height:167.141334pt;}
.h6{height:180.693335pt;}
.h9{height:271.040009pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:41.303517pt;}
.xf{left:47.400002pt;}
.x12{left:48.806142pt;}
.x13{left:74.279892pt;}
.x17{left:100.270343pt;}
.x18{left:110.585880pt;}
.x19{left:111.921844pt;}
.x1a{left:122.237380pt;}
.x1{left:130.035663pt;}
.x2{left:235.234062pt;}
.x1b{left:334.619431pt;}
.xa{left:388.733109pt;}
.x8{left:395.033876pt;}
.x10{left:413.902173pt;}
.x4{left:423.240804pt;}
.x1d{left:474.955395pt;}
.x1e{left:485.270932pt;}
.x7{left:489.469016pt;}
.x1c{left:507.238846pt;}
.x9{left:522.033957pt;}
.x1f{left:522.955397pt;}
.x5{left:563.523858pt;}
.x16{left:565.763818pt;}
.x20{left:580.619469pt;}
.x6{left:586.054829pt;}
.x14{left:595.871419pt;}
.xb{left:621.555720pt;}
.x11{left:704.517023pt;}
.xc{left:737.675749pt;}
.x21{left:741.160124pt;}
.x3{left:751.595824pt;}
.xe{left:785.675750pt;}
.xd{left:789.160125pt;}
}




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