
    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_c386debe21f04ee06653ae70.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_8db7ae7006104bd61dacc6be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_2c51cd4df98bd0ced925809f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_73e8db76a5805be06c5ced7a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053000;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_0686f6cf47ad2a5a99771502.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_40f7cc25b2ba370648aade12.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_25305210055e56cfae28629d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_62f83606980f32c463b73c1b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eff51babb04e41c80cb3ec90.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d0baee6e43f8d1483effa31.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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:ffb;src:url('chunks/assets/font_55568b302244d16b88d8dc31.woff')format("woff");}.ffb{font-family:ffb;line-height:0.778000;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;}
.ls4{letter-spacing:0.041892px;}
.ls2{letter-spacing:107.986253px;}
.ls1{letter-spacing:107.986325px;}
.ls5{letter-spacing:108.000426px;}
.ls3{letter-spacing:108.000496px;}
.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:-31.428001px;}
.ws3{word-spacing:-30.438002px;}
.wsb{word-spacing:-28.836001px;}
.ws4{word-spacing:-28.152000px;}
.wsc{word-spacing:-28.080001px;}
.ws8{word-spacing:-27.234000px;}
.wsa{word-spacing:-25.632002px;}
.ws1{word-spacing:-24.288002px;}
.ws7{word-spacing:-20.826001px;}
.ws6{word-spacing:-19.734001px;}
.ws5{word-spacing:-18.984000px;}
.wsd{word-spacing:-12.480001px;}
.ws9{word-spacing:-0.087000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-3420.550200px;}
._b{margin-left:-15.354000px;}
._9{margin-left:-13.998000px;}
._1{margin-left:-12.600000px;}
._3{margin-left:-10.320000px;}
._6{margin-left:-8.304001px;}
._2{margin-left:-6.600000px;}
._5{margin-left:-4.968000px;}
._0{margin-left:-3.600000px;}
._7{margin-left:-2.496000px;}
._4{margin-left:-1.440000px;}
._a{width:1.249894px;}
._8{width:3.258000px;}
.fcb{color:rgb(255,169,51);}
.fc9{color:rgb(0,151,167);}
.fc5{color:rgb(4,50,87);}
.fc3{color:rgb(31,73,125);}
.fca{color:rgb(9,90,210);}
.fc2{color:rgb(19,41,75);}
.fc1{color:rgb(27,56,103);}
.fc8{color:rgb(4,51,88);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(0,132,255);}
.fc0{color:rgb(37,37,37);}
.fs10{font-size:48.000003px;}
.fsa{font-size:60.000000px;}
.fse{font-size:66.000004px;}
.fsb{font-size:78.000005px;}
.fs7{font-size:84.000000px;}
.fsd{font-size:87.000006px;}
.fs5{font-size:96.000006px;}
.fs9{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fs6{font-size:114.000007px;}
.fs3{font-size:120.000001px;}
.fsc{font-size:126.000004px;}
.fs8{font-size:138.000001px;}
.fs2{font-size:144.000005px;}
.fsf{font-size:162.000005px;}
.fs0{font-size:180.000006px;}
.fs4{font-size:276.000003px;}
.y0{bottom:0.000000px;}
.y58{bottom:8.815796px;}
.y57{bottom:8.817281px;}
.y2e{bottom:39.133962px;}
.y35{bottom:40.685922px;}
.y46{bottom:46.034780px;}
.y2d{bottom:68.113963px;}
.y34{bottom:69.665923px;}
.y45{bottom:72.944780px;}
.y65{bottom:79.020343px;}
.y5a{bottom:84.536668px;}
.y2c{bottom:97.093952px;}
.y33{bottom:98.645912px;}
.y44{bottom:99.854781px;}
.y14{bottom:111.236778px;}
.y10{bottom:112.190227px;}
.y2b{bottom:126.073953px;}
.y32{bottom:127.625902px;}
.y43{bottom:136.754782px;}
.y13{bottom:144.356779px;}
.y4{bottom:147.042096px;}
.y2a{bottom:155.053943px;}
.y31{bottom:156.605897px;}
.y19{bottom:163.336295px;}
.y3e{bottom:171.586683px;}
.y61{bottom:175.235555px;}
.y12{bottom:177.476780px;}
.yf{bottom:178.430218px;}
.y42{bottom:183.554784px;}
.y29{bottom:184.033944px;}
.y30{bottom:186.845893px;}
.y3{bottom:188.202094px;}
.y18{bottom:195.736284px;}
.y11{bottom:210.596781px;}
.y60{bottom:212.495556px;}
.y28{bottom:213.013945px;}
.y1f{bottom:216.671095px;}
.y2f{bottom:219.965894px;}
.y17{bottom:228.136285px;}
.y41{bottom:230.354785px;}
.y54{bottom:238.262703px;}
.y4d{bottom:239.771002px;}
.y27{bottom:241.993935px;}
.y2{bottom:247.261522px;}
.y5f{bottom:249.755546px;}
.y40{bottom:253.754786px;}
.y1e{bottom:256.001096px;}
.y16{bottom:260.536293px;}
.y4c{bottom:270.371003px;}
.y26{bottom:270.973932px;}
.y53{bottom:274.532704px;}
.y3f{bottom:277.154787px;}
.y67{bottom:283.418292px;}
.y5e{bottom:287.015536px;}
.y15{bottom:292.936299px;}
.y1{bottom:295.861524px;}
.y4b{bottom:300.970998px;}
.y25{bottom:301.213925px;}
.y1d{bottom:313.331098px;}
.y52{bottom:314.852706px;}
.y5d{bottom:324.275526px;}
.y3d{bottom:329.633790px;}
.y4a{bottom:331.570994px;}
.y51{bottom:347.027707px;}
.ye{bottom:352.422971px;}
.y1c{bottom:352.661099px;}
.y5c{bottom:361.535538px;}
.y49{bottom:362.170989px;}
.y66{bottom:375.458291px;}
.y50{bottom:377.987708px;}
.yd{bottom:385.542983px;}
.y8{bottom:386.166075px;}
.y1b{bottom:391.991101px;}
.y48{bottom:392.770987px;}
.y3c{bottom:398.489833px;}
.y64{bottom:410.189003px;}
.y4f{bottom:411.107709px;}
.y5b{bottom:416.795540px;}
.yc{bottom:418.662984px;}
.y3b{bottom:421.169834px;}
.y1a{bottom:431.321102px;}
.y3a{bottom:443.849823px;}
.y4e{bottom:444.227710px;}
.y63{bottom:451.012999px;}
.yb{bottom:451.782985px;}
.y7{bottom:452.406066px;}
.y24{bottom:453.740331px;}
.y23{bottom:482.720321px;}
.y37{bottom:484.250315px;}
.ya{bottom:484.902986px;}
.y55{bottom:495.173506px;}
.y62{bottom:501.906611px;}
.y39{bottom:506.513827px;}
.y21{bottom:508.820310px;}
.y22{bottom:511.700318px;}
.y9{bottom:518.022987px;}
.y59{bottom:520.078933px;}
.y36{bottom:531.860312px;}
.y5{bottom:535.944919px;}
.y38{bottom:537.113825px;}
.y47{bottom:538.649762px;}
.y56{bottom:540.349603px;}
.y20{bottom:541.940311px;}
.y6{bottom:559.099605px;}
.h1b{height:36.720002px;}
.hf{height:43.740235px;}
.h11{height:56.238004px;}
.he{height:58.201172px;}
.h10{height:65.598005px;}
.h14{height:66.142094px;}
.h7{height:69.216004px;}
.ha{height:69.890629px;}
.hb{height:70.644000px;}
.hd{height:74.562000px;}
.h8{height:77.004002px;}
.h16{height:78.626956px;}
.h18{height:78.732424px;}
.h6{height:80.736005px;}
.h2{height:82.620003px;}
.h13{height:85.782000px;}
.h4{height:87.720001px;}
.h19{height:90.828003px;}
.h15{height:91.854495px;}
.h9{height:95.874006px;}
.h1c{height:96.390003px;}
.hc{height:99.498001px;}
.h17{height:100.920001px;}
.h3{height:105.264003px;}
.h12{height:105.966003px;}
.h1a{height:123.930004px;}
.h1{height:137.700004px;}
.h5{height:232.116002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:40.269686px;}
.x4{left:42.233271px;}
.x17{left:48.126968px;}
.xb{left:50.323822px;}
.xe{left:55.921713px;}
.x18{left:58.818863px;}
.xd{left:72.826749px;}
.x1{left:82.114377px;}
.x13{left:85.727365px;}
.x16{left:87.454724px;}
.x12{left:93.701242px;}
.x10{left:98.234803px;}
.x19{left:102.126970px;}
.x11{left:139.727367px;}
.x1a{left:186.048343px;}
.x3{left:225.073818px;}
.x2{left:335.056207px;}
.x1c{left:372.043729px;}
.x7{left:476.738235px;}
.x1d{left:500.831982px;}
.x9{left:519.844494px;}
.x8{left:520.948817px;}
.x15{left:569.530481px;}
.x5{left:584.645711px;}
.xf{left:771.628975px;}
.xc{left:780.566226px;}
.xa{left:798.874001px;}
.x1b{left:826.899776px;}
.x14{left:865.095440px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.037237pt;}
.ls2{letter-spacing:95.987780pt;}
.ls1{letter-spacing:95.987844pt;}
.ls5{letter-spacing:96.000379pt;}
.ls3{letter-spacing:96.000441pt;}
.ws2{word-spacing:-27.936001pt;}
.ws3{word-spacing:-27.056002pt;}
.wsb{word-spacing:-25.632001pt;}
.ws4{word-spacing:-25.024000pt;}
.wsc{word-spacing:-24.960001pt;}
.ws8{word-spacing:-24.208000pt;}
.wsa{word-spacing:-22.784001pt;}
.ws1{word-spacing:-21.589335pt;}
.ws7{word-spacing:-18.512001pt;}
.ws6{word-spacing:-17.541335pt;}
.ws5{word-spacing:-16.874667pt;}
.wsd{word-spacing:-11.093334pt;}
.ws9{word-spacing:-0.077333pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-3040.489067pt;}
._b{margin-left:-13.648000pt;}
._9{margin-left:-12.442666pt;}
._1{margin-left:-11.200000pt;}
._3{margin-left:-9.173333pt;}
._6{margin-left:-7.381334pt;}
._2{margin-left:-5.866667pt;}
._5{margin-left:-4.416000pt;}
._0{margin-left:-3.200000pt;}
._7{margin-left:-2.218667pt;}
._4{margin-left:-1.280000pt;}
._a{width:1.111017pt;}
._8{width:2.896000pt;}
.fs10{font-size:42.666669pt;}
.fsa{font-size:53.333334pt;}
.fse{font-size:58.666670pt;}
.fsb{font-size:69.333338pt;}
.fs7{font-size:74.666666pt;}
.fsd{font-size:77.333338pt;}
.fs5{font-size:85.333339pt;}
.fs9{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fs6{font-size:101.333339pt;}
.fs3{font-size:106.666667pt;}
.fsc{font-size:112.000004pt;}
.fs8{font-size:122.666668pt;}
.fs2{font-size:128.000004pt;}
.fsf{font-size:144.000005pt;}
.fs0{font-size:160.000005pt;}
.fs4{font-size:245.333336pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:7.836263pt;}
.y57{bottom:7.837583pt;}
.y2e{bottom:34.785744pt;}
.y35{bottom:36.165264pt;}
.y46{bottom:40.919804pt;}
.y2d{bottom:60.545745pt;}
.y34{bottom:61.925265pt;}
.y45{bottom:64.839805pt;}
.y65{bottom:70.240305pt;}
.y5a{bottom:75.143705pt;}
.y2c{bottom:86.305735pt;}
.y33{bottom:87.685256pt;}
.y44{bottom:88.759806pt;}
.y14{bottom:98.877136pt;}
.y10{bottom:99.724646pt;}
.y2b{bottom:112.065736pt;}
.y32{bottom:113.445246pt;}
.y43{bottom:121.559807pt;}
.y13{bottom:128.317137pt;}
.y4{bottom:130.704085pt;}
.y2a{bottom:137.825727pt;}
.y31{bottom:139.205242pt;}
.y19{bottom:145.187817pt;}
.y3e{bottom:152.521496pt;}
.y61{bottom:155.764938pt;}
.y12{bottom:157.757138pt;}
.yf{bottom:158.604638pt;}
.y42{bottom:163.159808pt;}
.y29{bottom:163.585728pt;}
.y30{bottom:166.085238pt;}
.y3{bottom:167.290750pt;}
.y18{bottom:173.987808pt;}
.y11{bottom:187.197139pt;}
.y60{bottom:188.884939pt;}
.y28{bottom:189.345729pt;}
.y1f{bottom:192.596529pt;}
.y2f{bottom:195.525239pt;}
.y17{bottom:202.787809pt;}
.y41{bottom:204.759809pt;}
.y54{bottom:211.789069pt;}
.y4d{bottom:213.129780pt;}
.y27{bottom:215.105720pt;}
.y2{bottom:219.788020pt;}
.y5f{bottom:222.004930pt;}
.y40{bottom:225.559810pt;}
.y1e{bottom:227.556530pt;}
.y16{bottom:231.587816pt;}
.y4c{bottom:240.329780pt;}
.y26{bottom:240.865717pt;}
.y53{bottom:244.029071pt;}
.y3f{bottom:246.359811pt;}
.y67{bottom:251.927371pt;}
.y5e{bottom:255.124921pt;}
.y15{bottom:260.387821pt;}
.y1{bottom:262.988021pt;}
.y4b{bottom:267.529776pt;}
.y25{bottom:267.745711pt;}
.y1d{bottom:278.516532pt;}
.y52{bottom:279.869072pt;}
.y5d{bottom:288.244912pt;}
.y3d{bottom:293.007813pt;}
.y4a{bottom:294.729772pt;}
.y51{bottom:308.469073pt;}
.ye{bottom:313.264863pt;}
.y1c{bottom:313.476533pt;}
.y5c{bottom:321.364923pt;}
.y49{bottom:321.929768pt;}
.y66{bottom:333.740703pt;}
.y50{bottom:335.989073pt;}
.yd{bottom:342.704874pt;}
.y8{bottom:343.258734pt;}
.y1b{bottom:348.436534pt;}
.y48{bottom:349.129766pt;}
.y3c{bottom:354.213185pt;}
.y64{bottom:364.612447pt;}
.y4f{bottom:365.429074pt;}
.y5b{bottom:370.484925pt;}
.yc{bottom:372.144875pt;}
.y3b{bottom:374.373186pt;}
.y1a{bottom:383.396535pt;}
.y3a{bottom:394.533176pt;}
.y4e{bottom:394.869075pt;}
.y63{bottom:400.900444pt;}
.yb{bottom:401.584876pt;}
.y7{bottom:402.138726pt;}
.y24{bottom:403.324739pt;}
.y23{bottom:429.084729pt;}
.y37{bottom:430.444724pt;}
.ya{bottom:431.024877pt;}
.y55{bottom:440.154228pt;}
.y62{bottom:446.139210pt;}
.y39{bottom:450.234513pt;}
.y21{bottom:452.284720pt;}
.y22{bottom:454.844727pt;}
.y9{bottom:460.464877pt;}
.y59{bottom:462.292385pt;}
.y36{bottom:472.764722pt;}
.y5{bottom:476.395484pt;}
.y38{bottom:477.434511pt;}
.y47{bottom:478.799788pt;}
.y56{bottom:480.310758pt;}
.y20{bottom:481.724721pt;}
.y6{bottom:496.977427pt;}
.h1b{height:32.640002pt;}
.hf{height:38.880209pt;}
.h11{height:49.989337pt;}
.he{height:51.734375pt;}
.h10{height:58.309337pt;}
.h14{height:58.792973pt;}
.h7{height:61.525337pt;}
.ha{height:62.125004pt;}
.hb{height:62.794666pt;}
.hd{height:66.277334pt;}
.h8{height:68.448002pt;}
.h16{height:69.890627pt;}
.h18{height:69.984377pt;}
.h6{height:71.765338pt;}
.h2{height:73.440002pt;}
.h13{height:76.250667pt;}
.h4{height:77.973334pt;}
.h19{height:80.736003pt;}
.h15{height:81.648440pt;}
.h9{height:85.221338pt;}
.h1c{height:85.680003pt;}
.hc{height:88.442668pt;}
.h17{height:89.706667pt;}
.h3{height:93.568003pt;}
.h12{height:94.192003pt;}
.h1a{height:110.160004pt;}
.h1{height:122.400004pt;}
.h5{height:206.325335pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:35.795276pt;}
.x4{left:37.540685pt;}
.x17{left:42.779527pt;}
.xb{left:44.732286pt;}
.xe{left:49.708189pt;}
.x18{left:52.283434pt;}
.xd{left:64.734888pt;}
.x1{left:72.990557pt;}
.x13{left:76.202102pt;}
.x16{left:77.737532pt;}
.x12{left:83.289993pt;}
.x10{left:87.319825pt;}
.x19{left:90.779529pt;}
.x11{left:124.202104pt;}
.x1a{left:165.376305pt;}
.x3{left:200.065616pt;}
.x2{left:297.827740pt;}
.x1c{left:330.705537pt;}
.x7{left:423.767320pt;}
.x1d{left:445.183984pt;}
.x9{left:462.083995pt;}
.x8{left:463.065615pt;}
.x15{left:506.249316pt;}
.x5{left:519.685077pt;}
.xf{left:685.892422pt;}
.xc{left:693.836645pt;}
.xa{left:710.110223pt;}
.x1b{left:735.022024pt;}
.x14{left:768.973725pt;}
}




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