
    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_d175608be829a7bbc012396c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_89d623f82298ceaf80a826a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_cb727b14cbbbcd0e413ea7e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ca343fc07e52069257bd77f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_25a8dd905e3d86e583381443.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_cf86e47e3cec6c1a22dc6ce0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_9205d7f8450b4dd4bd36039d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db7a6692c837497f913db340.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-70.560000px;}
.v1{vertical-align:-69.240000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.980000px;}
.lsa{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.080000px;}
.ls15{letter-spacing:2.106720px;}
.lsf{letter-spacing:3.060000px;}
.ls1{letter-spacing:5.940000px;}
.ls13{letter-spacing:31.626720px;}
.ls14{letter-spacing:56.340000px;}
.lsd{letter-spacing:103.860000px;}
.ls12{letter-spacing:375.300000px;}
.ls0{letter-spacing:951.600000px;}
.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;}
}
.ws6{word-spacing:-33.704640px;}
.ws4{word-spacing:-16.020000px;}
.ws7{word-spacing:-15.606000px;}
.wsf{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.453600px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws1{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.274000px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-3.473280px;}
._c{margin-left:-2.084160px;}
._5{margin-left:-1.049040px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._4{width:3.626640px;}
._3{width:4.889280px;}
._6{width:6.822480px;}
._b{width:8.256480px;}
._9{width:9.369120px;}
._a{width:10.528320px;}
._7{width:12.006720px;}
._8{width:13.182240px;}
._13{width:16.268880px;}
._23{width:18.027840px;}
._19{width:19.822800px;}
._10{width:21.773280px;}
._11{width:22.791120px;}
._1e{width:23.913120px;}
._17{width:24.973200px;}
._33{width:25.991520px;}
._26{width:27.040080px;}
._14{width:28.529040px;}
._35{width:29.904000px;}
._1f{width:31.137600px;}
._30{width:32.355840px;}
._18{width:33.702240px;}
._d{width:34.939920px;}
._e{width:36.873360px;}
._f{width:38.215920px;}
._22{width:39.863760px;}
._2b{width:41.726640px;}
._2c{width:42.954720px;}
._25{width:44.573040px;}
._24{width:45.660000px;}
._1b{width:47.286480px;}
._2f{width:48.475920px;}
._12{width:49.942560px;}
._1a{width:51.928800px;}
._31{width:55.626480px;}
._32{width:56.671440px;}
._34{width:57.945360px;}
._1c{width:59.213280px;}
._1d{width:60.840000px;}
._36{width:62.704320px;}
._21{width:65.172720px;}
._20{width:66.866160px;}
._27{width:68.575440px;}
._16{width:70.728960px;}
._2e{width:81.799920px;}
._2d{width:82.868880px;}
._28{width:289.119360px;}
._29{width:426.442080px;}
._0{width:767.850240px;}
._2a{width:845.957280px;}
._37{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.600000px;}
.y6c{bottom:3.630000px;}
.y2{bottom:56.160000px;}
.y61{bottom:94.860000px;}
.y78{bottom:99.360000px;}
.y40{bottom:105.120000px;}
.y60{bottom:112.140000px;}
.y77{bottom:116.640000px;}
.y3f{bottom:122.400000px;}
.y5f{bottom:129.420000px;}
.y76{bottom:133.740000px;}
.y3e{bottom:139.680000px;}
.y5e{bottom:149.040000px;}
.y75{bottom:151.020000px;}
.y3d{bottom:156.960000px;}
.y74{bottom:168.330000px;}
.y3c{bottom:174.270000px;}
.y5d{bottom:178.410000px;}
.y73{bottom:182.010000px;}
.y3b{bottom:191.370000px;}
.y5c{bottom:207.570000px;}
.y3a{bottom:208.650000px;}
.y39{bottom:225.930000px;}
.y5b{bottom:236.910000px;}
.y38{bottom:243.210000px;}
.y7e{bottom:260.130000px;}
.y37{bottom:260.490000px;}
.y5a{bottom:266.070000px;}
.y36{bottom:277.770000px;}
.y59{bottom:292.530000px;}
.y35{bottom:294.870000px;}
.y34{bottom:312.150000px;}
.y58{bottom:327.450000px;}
.y33{bottom:329.430000px;}
.y57{bottom:344.730000px;}
.y32{bottom:346.710000px;}
.y56{bottom:362.010000px;}
.y31{bottom:363.990000px;}
.y55{bottom:379.110000px;}
.y30{bottom:381.090000px;}
.y54{bottom:396.390000px;}
.y2f{bottom:398.370000px;}
.y53{bottom:410.115000px;}
.y2e{bottom:415.695000px;}
.y2d{bottom:432.975000px;}
.y2c{bottom:450.255000px;}
.y7d{bottom:467.175000px;}
.y2b{bottom:467.535000px;}
.y2a{bottom:484.635000px;}
.y29{bottom:501.915000px;}
.y72{bottom:517.215000px;}
.y28{bottom:519.195000px;}
.y71{bottom:534.495000px;}
.y27{bottom:536.475000px;}
.y70{bottom:551.775000px;}
.y26{bottom:553.755000px;}
.y6f{bottom:569.055000px;}
.y25{bottom:571.035000px;}
.y24{bottom:588.135000px;}
.y6e{bottom:588.675000px;}
.y23{bottom:605.415000px;}
.y6d{bottom:617.835000px;}
.y22{bottom:622.695000px;}
.y21{bottom:639.975000px;}
.y6b{bottom:647.175000px;}
.y20{bottom:657.255000px;}
.y1f{bottom:674.385000px;}
.y6a{bottom:676.365000px;}
.y1e{bottom:691.665000px;}
.y69{bottom:705.705000px;}
.y1d{bottom:708.945000px;}
.y1c{bottom:725.865000px;}
.y7c{bottom:726.225000px;}
.y68{bottom:732.165000px;}
.y1b{bottom:743.505000px;}
.y1a{bottom:760.785000px;}
.y67{bottom:766.905000px;}
.y52{bottom:769.425000px;}
.y19{bottom:777.525000px;}
.y7b{bottom:777.885000px;}
.y66{bottom:784.185000px;}
.y51{bottom:786.885000px;}
.y18{bottom:795.165000px;}
.y65{bottom:801.465000px;}
.y50{bottom:804.165000px;}
.y17{bottom:812.445000px;}
.y64{bottom:818.745000px;}
.y4f{bottom:821.445000px;}
.y16{bottom:829.725000px;}
.y63{bottom:836.025000px;}
.y4e{bottom:838.725000px;}
.y15{bottom:847.005000px;}
.y62{bottom:849.705000px;}
.y4d{bottom:856.005000px;}
.y14{bottom:864.285000px;}
.y4c{bottom:875.625000px;}
.y13{bottom:881.385000px;}
.y12{bottom:898.665000px;}
.y4b{bottom:904.830000px;}
.y11{bottom:915.990000px;}
.y10{bottom:933.270000px;}
.y4a{bottom:934.170000px;}
.yf{bottom:950.190000px;}
.y7a{bottom:950.550000px;}
.y49{bottom:963.330000px;}
.ye{bottom:967.830000px;}
.yd{bottom:984.930000px;}
.y47{bottom:992.670000px;}
.yc{bottom:1002.210000px;}
.y46{bottom:1019.130000px;}
.yb{bottom:1019.490000px;}
.ya{bottom:1036.770000px;}
.y9{bottom:1054.050000px;}
.y8{bottom:1070.790000px;}
.y45{bottom:1071.150000px;}
.y44{bottom:1088.070000px;}
.y7{bottom:1088.430000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1122.990000px;}
.y79{bottom:1139.910000px;}
.y43{bottom:1140.270000px;}
.y4{bottom:1157.220000px;}
.y42{bottom:1157.580000px;}
.y3{bottom:1174.320000px;}
.y41{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h9{height:17.100000px;}
.hb{height:17.136000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.h6{height:43.737568px;}
.h3{height:52.998047px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.hc{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:226.650000px;}
.w3{width:226.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:5.940000px;}
.x1{left:106.415987px;}
.xe{left:136.115987px;}
.x2{left:153.209987px;}
.x1a{left:308.774987px;}
.x16{left:322.994987px;}
.x18{left:329.294987px;}
.x13{left:333.255000px;}
.x19{left:346.034987px;}
.x11{left:362.234987px;}
.x17{left:368.354987px;}
.xb{left:420.014987px;}
.x10{left:457.274987px;}
.x3{left:461.414987px;}
.xf{left:487.004987px;}
.x8{left:502.124987px;}
.xc{left:537.944987px;}
.x7{left:550.004987px;}
.x14{left:560.085000px;}
.x4{left:604.184987px;}
.xa{left:647.924987px;}
.x9{left:670.829987px;}
.x15{left:716.549987px;}
.x5{left:728.069987px;}
.x6{left:732.929987px;}
.x1b{left:775.769987px;}
.x1c{left:780.809987px;}
.xd{left:786.749987px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.546667pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.760000pt;}
.lsa{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls15{letter-spacing:1.872640pt;}
.lsf{letter-spacing:2.720000pt;}
.ls1{letter-spacing:5.280000pt;}
.ls13{letter-spacing:28.112640pt;}
.ls14{letter-spacing:50.080000pt;}
.lsd{letter-spacing:92.320000pt;}
.ls12{letter-spacing:333.600000pt;}
.ls0{letter-spacing:845.866667pt;}
.ws6{word-spacing:-29.959680pt;}
.ws4{word-spacing:-14.240000pt;}
.ws7{word-spacing:-13.872000pt;}
.wsf{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.736533pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.688000pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-3.087360pt;}
._c{margin-left:-1.852587pt;}
._5{margin-left:-0.932480pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._4{width:3.223680pt;}
._3{width:4.346027pt;}
._6{width:6.064427pt;}
._b{width:7.339093pt;}
._9{width:8.328107pt;}
._a{width:9.358507pt;}
._7{width:10.672640pt;}
._8{width:11.717547pt;}
._13{width:14.461227pt;}
._23{width:16.024747pt;}
._19{width:17.620267pt;}
._10{width:19.354027pt;}
._11{width:20.258773pt;}
._1e{width:21.256107pt;}
._17{width:22.198400pt;}
._33{width:23.103573pt;}
._26{width:24.035627pt;}
._14{width:25.359147pt;}
._35{width:26.581333pt;}
._1f{width:27.677867pt;}
._30{width:28.760747pt;}
._18{width:29.957547pt;}
._d{width:31.057707pt;}
._e{width:32.776320pt;}
._f{width:33.969707pt;}
._22{width:35.434453pt;}
._2b{width:37.090347pt;}
._2c{width:38.181973pt;}
._25{width:39.620480pt;}
._24{width:40.586667pt;}
._1b{width:42.032427pt;}
._2f{width:43.089707pt;}
._12{width:44.393387pt;}
._1a{width:46.158933pt;}
._31{width:49.445760pt;}
._32{width:50.374613pt;}
._34{width:51.506987pt;}
._1c{width:52.634027pt;}
._1d{width:54.080000pt;}
._36{width:55.737173pt;}
._21{width:57.931307pt;}
._20{width:59.436587pt;}
._27{width:60.955947pt;}
._16{width:62.870187pt;}
._2e{width:72.711040pt;}
._2d{width:73.661227pt;}
._28{width:256.994987pt;}
._29{width:379.059627pt;}
._0{width:682.533547pt;}
._2a{width:751.962027pt;}
._37{width:754.858667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:3.200000pt;}
.y6c{bottom:3.226667pt;}
.y2{bottom:49.920000pt;}
.y61{bottom:84.320000pt;}
.y78{bottom:88.320000pt;}
.y40{bottom:93.440000pt;}
.y60{bottom:99.680000pt;}
.y77{bottom:103.680000pt;}
.y3f{bottom:108.800000pt;}
.y5f{bottom:115.040000pt;}
.y76{bottom:118.880000pt;}
.y3e{bottom:124.160000pt;}
.y5e{bottom:132.480000pt;}
.y75{bottom:134.240000pt;}
.y3d{bottom:139.520000pt;}
.y74{bottom:149.626667pt;}
.y3c{bottom:154.906667pt;}
.y5d{bottom:158.586667pt;}
.y73{bottom:161.786667pt;}
.y3b{bottom:170.106667pt;}
.y5c{bottom:184.506667pt;}
.y3a{bottom:185.466667pt;}
.y39{bottom:200.826667pt;}
.y5b{bottom:210.586667pt;}
.y38{bottom:216.186667pt;}
.y7e{bottom:231.226667pt;}
.y37{bottom:231.546667pt;}
.y5a{bottom:236.506667pt;}
.y36{bottom:246.906667pt;}
.y59{bottom:260.026667pt;}
.y35{bottom:262.106667pt;}
.y34{bottom:277.466667pt;}
.y58{bottom:291.066667pt;}
.y33{bottom:292.826667pt;}
.y57{bottom:306.426667pt;}
.y32{bottom:308.186667pt;}
.y56{bottom:321.786667pt;}
.y31{bottom:323.546667pt;}
.y55{bottom:336.986667pt;}
.y30{bottom:338.746667pt;}
.y54{bottom:352.346667pt;}
.y2f{bottom:354.106667pt;}
.y53{bottom:364.546667pt;}
.y2e{bottom:369.506667pt;}
.y2d{bottom:384.866667pt;}
.y2c{bottom:400.226667pt;}
.y7d{bottom:415.266667pt;}
.y2b{bottom:415.586667pt;}
.y2a{bottom:430.786667pt;}
.y29{bottom:446.146667pt;}
.y72{bottom:459.746667pt;}
.y28{bottom:461.506667pt;}
.y71{bottom:475.106667pt;}
.y27{bottom:476.866667pt;}
.y70{bottom:490.466667pt;}
.y26{bottom:492.226667pt;}
.y6f{bottom:505.826667pt;}
.y25{bottom:507.586667pt;}
.y24{bottom:522.786667pt;}
.y6e{bottom:523.266667pt;}
.y23{bottom:538.146667pt;}
.y6d{bottom:549.186667pt;}
.y22{bottom:553.506667pt;}
.y21{bottom:568.866667pt;}
.y6b{bottom:575.266667pt;}
.y20{bottom:584.226667pt;}
.y1f{bottom:599.453333pt;}
.y6a{bottom:601.213333pt;}
.y1e{bottom:614.813333pt;}
.y69{bottom:627.293333pt;}
.y1d{bottom:630.173333pt;}
.y1c{bottom:645.213333pt;}
.y7c{bottom:645.533333pt;}
.y68{bottom:650.813333pt;}
.y1b{bottom:660.893333pt;}
.y1a{bottom:676.253333pt;}
.y67{bottom:681.693333pt;}
.y52{bottom:683.933333pt;}
.y19{bottom:691.133333pt;}
.y7b{bottom:691.453333pt;}
.y66{bottom:697.053333pt;}
.y51{bottom:699.453333pt;}
.y18{bottom:706.813333pt;}
.y65{bottom:712.413333pt;}
.y50{bottom:714.813333pt;}
.y17{bottom:722.173333pt;}
.y64{bottom:727.773333pt;}
.y4f{bottom:730.173333pt;}
.y16{bottom:737.533333pt;}
.y63{bottom:743.133333pt;}
.y4e{bottom:745.533333pt;}
.y15{bottom:752.893333pt;}
.y62{bottom:755.293333pt;}
.y4d{bottom:760.893333pt;}
.y14{bottom:768.253333pt;}
.y4c{bottom:778.333333pt;}
.y13{bottom:783.453333pt;}
.y12{bottom:798.813333pt;}
.y4b{bottom:804.293333pt;}
.y11{bottom:814.213333pt;}
.y10{bottom:829.573333pt;}
.y4a{bottom:830.373333pt;}
.yf{bottom:844.613333pt;}
.y7a{bottom:844.933333pt;}
.y49{bottom:856.293333pt;}
.ye{bottom:860.293333pt;}
.yd{bottom:875.493333pt;}
.y47{bottom:882.373333pt;}
.yc{bottom:890.853333pt;}
.y46{bottom:905.893333pt;}
.yb{bottom:906.213333pt;}
.ya{bottom:921.573333pt;}
.y9{bottom:936.933333pt;}
.y8{bottom:951.813333pt;}
.y45{bottom:952.133333pt;}
.y44{bottom:967.173333pt;}
.y7{bottom:967.493333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:998.213333pt;}
.y79{bottom:1013.253333pt;}
.y43{bottom:1013.573333pt;}
.y4{bottom:1028.640000pt;}
.y42{bottom:1028.960000pt;}
.y3{bottom:1043.840000pt;}
.y41{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h9{height:15.200000pt;}
.hb{height:15.232000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.h6{height:38.877839pt;}
.h3{height:47.109375pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.hc{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:201.466667pt;}
.w3{width:201.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.280000pt;}
.x1{left:94.591988pt;}
.xe{left:120.991988pt;}
.x2{left:136.186655pt;}
.x1a{left:274.466655pt;}
.x16{left:287.106655pt;}
.x18{left:292.706655pt;}
.x13{left:296.226667pt;}
.x19{left:307.586655pt;}
.x11{left:321.986655pt;}
.x17{left:327.426655pt;}
.xb{left:373.346655pt;}
.x10{left:406.466655pt;}
.x3{left:410.146655pt;}
.xf{left:432.893322pt;}
.x8{left:446.333322pt;}
.xc{left:478.173322pt;}
.x7{left:488.893322pt;}
.x14{left:497.853333pt;}
.x4{left:537.053322pt;}
.xa{left:575.933322pt;}
.x9{left:596.293322pt;}
.x15{left:636.933322pt;}
.x5{left:647.173322pt;}
.x6{left:651.493322pt;}
.x1b{left:689.573322pt;}
.x1c{left:694.053322pt;}
.xd{left:699.333322pt;}
}




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