
    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_06f089b6902e6c9dff6e4e8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_9680d0ec036f0e9740b4c47e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_9cf540e6652db4c41964c061.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f58f6acaa55f7de6134bd6c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_5fe7f172cfab12aedb42c1b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_be8e781f2a0c3f6f97ae3999.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693848;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_d5929caf6c052b496c440252.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1d958c1e58eee3d258b86e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.863770;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;}
.m1{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);}
.m0{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.009702px;}
.ls1{letter-spacing:0.010919px;}
.ls3{letter-spacing:0.012130px;}
.ls4{letter-spacing:89.676422px;}
.ls2{letter-spacing:97.478788px;}
.ls7{letter-spacing:105.281159px;}
.ls6{letter-spacing:107.055673px;}
.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:-0.124222px;}
.ws1{word-spacing:-0.111800px;}
.ws3{word-spacing:-0.099378px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:20.471819px;}
.ws7{word-spacing:21.366218px;}
.ws9{word-spacing:23.701596px;}
.ws8{word-spacing:24.645684px;}
.ws4{word-spacing:36.272882px;}
.ws5{word-spacing:49.688880px;}
.wsa{word-spacing:142.321375px;}
._2{margin-left:-61.937189px;}
._17{margin-left:-47.378347px;}
._12{margin-left:-41.291459px;}
._19{margin-left:-30.968594px;}
._f{margin-left:-24.931396px;}
._b{margin-left:-22.099129px;}
._10{margin-left:-19.925241px;}
._0{margin-left:-16.322797px;}
._c{margin-left:-15.254486px;}
._16{margin-left:-11.091862px;}
._11{margin-left:-9.631879px;}
._6{margin-left:-8.397421px;}
._14{margin-left:-7.254576px;}
._5{margin-left:-5.142799px;}
._1{margin-left:-3.801199px;}
._4{margin-left:-2.794999px;}
._3{margin-left:-1.565200px;}
._d{width:1.788800px;}
._7{width:3.130399px;}
._e{width:10.235909px;}
._9{width:12.297998px;}
._1a{width:21.353796px;}
._1d{width:22.471796px;}
._a{width:24.036996px;}
._1b{width:25.154995px;}
._18{width:26.608395px;}
._8{width:27.726395px;}
._1c{width:32.198394px;}
._13{width:140.122642px;}
._15{width:196.668587px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,171);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:99.377760px;}
.fs3{font-size:111.799980px;}
.fs4{font-size:124.222200px;}
.fs9{font-size:149.066640px;}
.fs5{font-size:173.911080px;}
.fs2{font-size:223.599960px;}
.fs0{font-size:322.977720px;}
.y0{bottom:0.000000px;}
.y24{bottom:5.167200px;}
.y34{bottom:5.867400px;}
.y3{bottom:5.867550px;}
.y26{bottom:7.734150px;}
.y33{bottom:24.888600px;}
.y25{bottom:43.495350px;}
.y23{bottom:46.284300px;}
.y2{bottom:51.384450px;}
.y80{bottom:146.688122px;}
.y58{bottom:156.750044px;}
.y71{bottom:166.066844px;}
.y47{bottom:167.371110px;}
.y7f{bottom:187.060322px;}
.y57{bottom:192.463994px;}
.y32{bottom:194.738805px;}
.y46{bottom:196.873860px;}
.y70{bottom:201.780644px;}
.y22{bottom:217.642200px;}
.y7e{bottom:226.376655px;}
.y45{bottom:226.625144px;}
.y56{bottom:228.177944px;}
.y31{bottom:228.403022px;}
.y6f{bottom:237.494594px;}
.y21{bottom:254.908950px;}
.y7d{bottom:260.040872px;}
.y44{bottom:262.338944px;}
.y55{bottom:263.891744px;}
.y15{bottom:269.854455px;}
.y6e{bottom:273.208394px;}
.y20{bottom:292.175550px;}
.y43{bottom:299.357160px;}
.y54{bottom:299.605694px;}
.y7c{bottom:300.910005px;}
.y62{bottom:302.462760px;}
.y14{bottom:303.518672px;}
.y6d{bottom:308.922344px;}
.ya{bottom:317.493722px;}
.y42{bottom:328.859910px;}
.y1f{bottom:329.442150px;}
.y61{bottom:331.965510px;}
.y7b{bottom:334.574222px;}
.y53{bottom:335.319494px;}
.y13{bottom:342.835005px;}
.y6c{bottom:344.636144px;}
.y9{bottom:357.865922px;}
.y41{bottom:358.362810px;}
.y60{bottom:361.468260px;}
.y1e{bottom:367.019434px;}
.y52{bottom:371.033444px;}
.y30{bottom:374.861010px;}
.y7a{bottom:375.443355px;}
.y12{bottom:376.499222px;}
.y6b{bottom:381.902894px;}
.y40{bottom:387.865560px;}
.y5f{bottom:390.971160px;}
.y2f{bottom:404.363760px;}
.y51{bottom:406.747244px;}
.y79{bottom:407.554772px;}
.y3f{bottom:417.368310px;}
.y11{bottom:417.368355px;}
.y6a{bottom:417.616694px;}
.y5e{bottom:420.722294px;}
.y2e{bottom:435.419310px;}
.y3e{bottom:447.119594px;}
.y78{bottom:447.926972px;}
.y10{bottom:451.032572px;}
.y69{bottom:453.330644px;}
.y1d{bottom:456.769950px;}
.y2d{bottom:464.922060px;}
.y50{bottom:478.175144px;}
.y8{bottom:478.982522px;}
.y3d{bottom:484.386194px;}
.y77{bottom:488.299322px;}
.y68{bottom:489.044594px;}
.yf{bottom:489.851972px;}
.y5d{bottom:491.901660px;}
.y1c{bottom:494.036700px;}
.y2c{bottom:494.424810px;}
.y4f{bottom:513.888944px;}
.y7{bottom:517.802072px;}
.y3c{bottom:519.851610px;}
.y5c{bottom:521.652944px;}
.y2b{bottom:524.176094px;}
.y67{bottom:524.758394px;}
.y76{bottom:529.168305px;}
.ye{bottom:530.721105px;}
.y1b{bottom:531.303300px;}
.y3b{bottom:549.354510px;}
.y4e{bottom:549.602894px;}
.y6{bottom:558.174272px;}
.y66{bottom:560.472344px;}
.y75{bottom:562.832522px;}
.yd{bottom:564.385322px;}
.y1a{bottom:568.570050px;}
.y3a{bottom:578.857260px;}
.y4d{bottom:585.316844px;}
.y5b{bottom:594.384960px;}
.y5{bottom:599.043255px;}
.y74{bottom:602.148855px;}
.y19{bottom:605.836650px;}
.y39{bottom:608.608394px;}
.y4c{bottom:621.030644px;}
.y5a{bottom:624.136244px;}
.y65{bottom:631.900094px;}
.y73{bottom:636.310005px;}
.y18{bottom:643.103400px;}
.y4b{bottom:658.048860px;}
.y1{bottom:660.843870px;}
.y2a{bottom:666.783210px;}
.y64{bottom:667.614044px;}
.y17{bottom:679.127734px;}
.y38{bottom:679.787760px;}
.y4a{bottom:687.800144px;}
.yc{bottom:694.073434px;}
.y59{bottom:696.371522px;}
.y29{bottom:697.838760px;}
.y37{bottom:710.843310px;}
.y4{bottom:714.550560px;}
.y72{bottom:726.992280px;}
.y28{bottom:727.341510px;}
.yb{bottom:739.103884px;}
.y36{bottom:740.346060px;}
.y63{bottom:750.035407px;}
.y27{bottom:756.844410px;}
.y49{bottom:763.140872px;}
.y35{bottom:769.848810px;}
.y16{bottom:782.853330px;}
.y48{bottom:804.010005px;}
.hb{height:18.000000px;}
.h2{height:21.267000px;}
.hd{height:46.031250px;}
.hc{height:57.539062px;}
.h12{height:68.128113px;}
.hf{height:68.855977px;}
.h3{height:69.046875px;}
.he{height:72.398251px;}
.h11{height:76.644127px;}
.h10{height:77.462974px;}
.h5{height:81.448032px;}
.ha{height:86.069972px;}
.h9{height:90.497814px;}
.h7{height:100.936603px;}
.h6{height:112.151781px;}
.h8{height:126.696939px;}
.h13{height:134.582137px;}
.h4{height:201.873206px;}
.h1{height:291.594631px;}
.h0{height:892.500000px;}
.w3{width:58.258500px;}
.w2{width:108.033000px;}
.w4{width:387.297000px;}
.w1{width:488.424000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:102.115995px;}
.xa{left:111.433500px;}
.x11{left:139.386000px;}
.x17{left:144.044760px;}
.x14{left:148.703505px;}
.x1{left:151.815405px;}
.xb{left:153.362250px;}
.x4{left:158.020950px;}
.x12{left:181.314750px;}
.x9{left:187.333840px;}
.x15{left:190.632300px;}
.x7{left:195.291000px;}
.x8{left:237.219750px;}
.x10{left:242.646750px;}
.x6{left:266.396103px;}
.x3{left:278.582864px;}
.x5{left:391.774445px;}
.x19{left:435.908202px;}
.x13{left:505.094229px;}
.x18{left:518.786086px;}
.x2{left:542.468850px;}
.xe{left:614.578500px;}
.xf{left:656.507250px;}
.xc{left:1022.184150px;}
.xd{left:1137.929400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.008624pt;}
.ls1{letter-spacing:0.009706pt;}
.ls3{letter-spacing:0.010782pt;}
.ls4{letter-spacing:79.712375pt;}
.ls2{letter-spacing:86.647811pt;}
.ls7{letter-spacing:93.583253pt;}
.ls6{letter-spacing:95.160599pt;}
.ws2{word-spacing:-0.110420pt;}
.ws1{word-spacing:-0.099378pt;}
.ws3{word-spacing:-0.088336pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:18.197172pt;}
.ws7{word-spacing:18.992194pt;}
.ws9{word-spacing:21.068085pt;}
.ws8{word-spacing:21.907275pt;}
.ws4{word-spacing:32.242562pt;}
.ws5{word-spacing:44.167893pt;}
.wsa{word-spacing:126.507888pt;}
._2{margin-left:-55.055279pt;}
._17{margin-left:-42.114086pt;}
._12{margin-left:-36.703519pt;}
._19{margin-left:-27.527640pt;}
._f{margin-left:-22.161240pt;}
._b{margin-left:-19.643671pt;}
._10{margin-left:-17.711325pt;}
._0{margin-left:-14.509153pt;}
._c{margin-left:-13.559543pt;}
._16{margin-left:-9.859433pt;}
._11{margin-left:-8.561670pt;}
._6{margin-left:-7.464374pt;}
._14{margin-left:-6.448512pt;}
._5{margin-left:-4.571377pt;}
._1{margin-left:-3.378844pt;}
._4{margin-left:-2.484444pt;}
._3{margin-left:-1.391289pt;}
._d{width:1.590044pt;}
._7{width:2.782577pt;}
._e{width:9.098586pt;}
._9{width:10.931554pt;}
._1a{width:18.981152pt;}
._1d{width:19.974930pt;}
._a{width:21.366218pt;}
._1b{width:22.359996pt;}
._18{width:23.651907pt;}
._8{width:24.645684pt;}
._1c{width:28.620795pt;}
._13{width:124.553459pt;}
._15{width:174.816522pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:88.335787pt;}
.fs3{font-size:99.377760pt;}
.fs4{font-size:110.419733pt;}
.fs9{font-size:132.503680pt;}
.fs5{font-size:154.587627pt;}
.fs2{font-size:198.755520pt;}
.fs0{font-size:287.091307pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:4.593067pt;}
.y34{bottom:5.215467pt;}
.y3{bottom:5.215600pt;}
.y26{bottom:6.874800pt;}
.y33{bottom:22.123200pt;}
.y25{bottom:38.662533pt;}
.y23{bottom:41.141600pt;}
.y2{bottom:45.675067pt;}
.y80{bottom:130.389442pt;}
.y58{bottom:139.333373pt;}
.y71{bottom:147.614973pt;}
.y47{bottom:148.774320pt;}
.y7f{bottom:166.275842pt;}
.y57{bottom:171.079106pt;}
.y32{bottom:173.101160pt;}
.y46{bottom:174.998987pt;}
.y70{bottom:179.360573pt;}
.y22{bottom:193.459733pt;}
.y7e{bottom:201.223693pt;}
.y45{bottom:201.444573pt;}
.y56{bottom:202.824839pt;}
.y31{bottom:203.024908pt;}
.y6f{bottom:211.106306pt;}
.y21{bottom:226.585733pt;}
.y7d{bottom:231.147442pt;}
.y44{bottom:233.190173pt;}
.y55{bottom:234.570439pt;}
.y15{bottom:239.870627pt;}
.y6e{bottom:242.851906pt;}
.y20{bottom:259.711600pt;}
.y43{bottom:266.095253pt;}
.y54{bottom:266.316173pt;}
.y7c{bottom:267.475560pt;}
.y62{bottom:268.855787pt;}
.y14{bottom:269.794375pt;}
.y6d{bottom:274.597639pt;}
.ya{bottom:282.216642pt;}
.y42{bottom:292.319920pt;}
.y1f{bottom:292.837467pt;}
.y61{bottom:295.080453pt;}
.y7b{bottom:297.399308pt;}
.y53{bottom:298.061773pt;}
.y13{bottom:304.742227pt;}
.y6c{bottom:306.343239pt;}
.y9{bottom:318.103042pt;}
.y41{bottom:318.544720pt;}
.y60{bottom:321.305120pt;}
.y1e{bottom:326.239496pt;}
.y52{bottom:329.807506pt;}
.y30{bottom:333.209787pt;}
.y7a{bottom:333.727427pt;}
.y12{bottom:334.665975pt;}
.y6b{bottom:339.469239pt;}
.y40{bottom:344.769387pt;}
.y5f{bottom:347.529920pt;}
.y2f{bottom:359.434453pt;}
.y51{bottom:361.553106pt;}
.y79{bottom:362.270908pt;}
.y3f{bottom:370.994053pt;}
.y11{bottom:370.994093pt;}
.y6a{bottom:371.214839pt;}
.y5e{bottom:373.975373pt;}
.y2e{bottom:387.039387pt;}
.y3e{bottom:397.439639pt;}
.y78{bottom:398.157308pt;}
.y10{bottom:400.917842pt;}
.y69{bottom:402.960573pt;}
.y1d{bottom:406.017733pt;}
.y2d{bottom:413.264053pt;}
.y50{bottom:425.044573pt;}
.y8{bottom:425.762242pt;}
.y3d{bottom:430.565506pt;}
.y77{bottom:434.043842pt;}
.y68{bottom:434.706306pt;}
.yf{bottom:435.423975pt;}
.y5d{bottom:437.245920pt;}
.y1c{bottom:439.143733pt;}
.y2c{bottom:439.488720pt;}
.y4f{bottom:456.790173pt;}
.y7{bottom:460.268508pt;}
.y3c{bottom:462.090320pt;}
.y5c{bottom:463.691506pt;}
.y2b{bottom:465.934306pt;}
.y67{bottom:466.451906pt;}
.y76{bottom:470.371827pt;}
.ye{bottom:471.752093pt;}
.y1b{bottom:472.269600pt;}
.y3b{bottom:488.315120pt;}
.y4e{bottom:488.535906pt;}
.y6{bottom:496.154908pt;}
.y66{bottom:498.197639pt;}
.y75{bottom:500.295575pt;}
.yd{bottom:501.675842pt;}
.y1a{bottom:505.395600pt;}
.y3a{bottom:514.539787pt;}
.y4d{bottom:520.281639pt;}
.y5b{bottom:528.342187pt;}
.y5{bottom:532.482893pt;}
.y74{bottom:535.243427pt;}
.y19{bottom:538.521467pt;}
.y39{bottom:540.985239pt;}
.y4c{bottom:552.027239pt;}
.y5a{bottom:554.787773pt;}
.y65{bottom:561.688973pt;}
.y73{bottom:565.608893pt;}
.y18{bottom:571.647467pt;}
.y4b{bottom:584.932320pt;}
.y1{bottom:587.416773pt;}
.y2a{bottom:592.696187pt;}
.y64{bottom:593.434706pt;}
.y17{bottom:603.669096pt;}
.y38{bottom:604.255787pt;}
.y4a{bottom:611.377906pt;}
.yc{bottom:616.954163pt;}
.y59{bottom:618.996908pt;}
.y29{bottom:620.301120pt;}
.y37{bottom:631.860720pt;}
.y4{bottom:635.156053pt;}
.y72{bottom:646.215360pt;}
.y28{bottom:646.525787pt;}
.yb{bottom:656.981230pt;}
.y36{bottom:658.085387pt;}
.y63{bottom:666.698140pt;}
.y27{bottom:672.750587pt;}
.y49{bottom:678.347442pt;}
.y35{bottom:684.310053pt;}
.y16{bottom:695.869627pt;}
.y48{bottom:714.675560pt;}
.hb{height:16.000000pt;}
.h2{height:18.904000pt;}
.hd{height:40.916667pt;}
.hc{height:51.145833pt;}
.h12{height:60.558322pt;}
.hf{height:61.205313pt;}
.h3{height:61.375000pt;}
.he{height:64.354001pt;}
.h11{height:68.128113pt;}
.h10{height:68.855977pt;}
.h5{height:72.398251pt;}
.ha{height:76.506641pt;}
.h9{height:80.442501pt;}
.h7{height:89.721425pt;}
.h6{height:99.690472pt;}
.h8{height:112.619501pt;}
.h13{height:119.628567pt;}
.h4{height:179.442850pt;}
.h1{height:259.195228pt;}
.h0{height:793.333333pt;}
.w3{width:51.785333pt;}
.w2{width:96.029333pt;}
.w4{width:344.264000pt;}
.w1{width:434.154667pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:90.769773pt;}
.xa{left:99.052000pt;}
.x11{left:123.898667pt;}
.x17{left:128.039787pt;}
.x14{left:132.180893pt;}
.x1{left:134.947027pt;}
.xb{left:136.322000pt;}
.x4{left:140.463067pt;}
.x12{left:161.168667pt;}
.x9{left:166.518969pt;}
.x15{left:169.450933pt;}
.x7{left:173.592000pt;}
.x8{left:210.862000pt;}
.x10{left:215.686000pt;}
.x6{left:236.796536pt;}
.x3{left:247.629213pt;}
.x5{left:348.243951pt;}
.x19{left:387.473958pt;}
.x13{left:448.972648pt;}
.x18{left:461.143188pt;}
.x2{left:482.194533pt;}
.xe{left:546.292000pt;}
.xf{left:583.562000pt;}
.xc{left:908.608133pt;}
.xd{left:1011.492800pt;}
}




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