
    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_325339e37633c63e6ee8e76d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c2e92079acee489cd6693d9f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d1a1f72dfae04aeb2ff2fb6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_6d3b199215bde81f55c2574d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_09cc5618b641dd41f6ef78d3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f4bd16aae5f182f794f668b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_aa6ddd433ccaaead067ff749.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_f74cc2e6060f7526e380759c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_db39b3a7d550919578f7bdcb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls16{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.017280px;}
.ls5{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.080640px;}
.ls14{letter-spacing:0.109440px;}
.ls11{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.230400px;}
.ls12{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.745920px;}
.ls15{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.422000px;}
.ls10{letter-spacing:1.440000px;}
.lse{letter-spacing:15.822720px;}
.ls18{letter-spacing:16.560000px;}
.lsf{letter-spacing:17.280000px;}
.ls9{letter-spacing:18.000000px;}
.ls1c{letter-spacing:27.480000px;}
.ls19{letter-spacing:29.466720px;}
.ls17{letter-spacing:29.520000px;}
.ls1a{letter-spacing:33.840000px;}
.lsc{letter-spacing:34.560000px;}
.ls1b{letter-spacing:38.880000px;}
.ls1d{letter-spacing:67.680000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.617280px;}
.ws9{word-spacing:-20.862000px;}
.ws3{word-spacing:-19.474560px;}
.ws5{word-spacing:-19.465920px;}
.ws6{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.431360px;}
.ws7{word-spacing:-19.422720px;}
.ws1{word-spacing:-0.077760px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-9.377280px;}
._16{margin-left:-2.249280px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._1d{width:2.799360px;}
._19{width:3.810720px;}
._18{width:5.184480px;}
._13{width:6.298560px;}
._2b{width:7.495680px;}
._17{width:8.503200px;}
._7{width:9.970080px;}
._6{width:11.586240px;}
._3{width:13.452480px;}
._4{width:15.007680px;}
._c{width:16.485120px;}
._8{width:18.273600px;}
._1a{width:21.223680px;}
._15{width:23.109120px;}
._14{width:25.116480px;}
._9{width:27.371520px;}
._24{width:28.372320px;}
._20{width:29.471040px;}
._21{width:30.792960px;}
._a{width:31.803840px;}
._2{width:33.670080px;}
._1c{width:34.800960px;}
._28{width:36.614880px;}
._27{width:38.102400px;}
._29{width:39.216960px;}
._23{width:41.343840px;}
._22{width:42.379200px;}
._25{width:46.733760px;}
._26{width:48.133440px;}
._d{width:51.088320px;}
._1f{width:53.023680px;}
._1e{width:54.193440px;}
._b{width:55.987200px;}
._12{width:58.164960px;}
._11{width:59.175360px;}
._10{width:65.551680px;}
._e{width:66.873600px;}
._2a{width:67.988160px;}
._f{width:92.845440px;}
._5{width:143.933760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs4{font-size:38.880000px;}
.fs3{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:7.560000px;}
.y2e{bottom:8.085000px;}
.y15{bottom:33.480000px;}
.y2d{bottom:34.050000px;}
.y32{bottom:34.200000px;}
.y31{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y2c{bottom:59.790000px;}
.y30{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y2b{bottom:85.530000px;}
.yb{bottom:106.416000px;}
.y2a{bottom:111.270000px;}
.y3e{bottom:124.050000px;}
.ya{bottom:130.536000px;}
.y29{bottom:137.190000px;}
.y3d{bottom:149.970000px;}
.y9{bottom:154.470000px;}
.y28{bottom:162.930000px;}
.y3c{bottom:175.710000px;}
.y8{bottom:176.250000px;}
.y27{bottom:188.670000px;}
.y7{bottom:198.750000px;}
.y3b{bottom:201.450000px;}
.y26{bottom:214.590000px;}
.y6{bottom:221.250000px;}
.y3a{bottom:227.190000px;}
.y25{bottom:240.330000px;}
.y75{bottom:243.210000px;}
.y74{bottom:250.050000px;}
.y5e{bottom:252.930000px;}
.y39{bottom:253.110000px;}
.y40{bottom:259.410000px;}
.y83{bottom:260.490000px;}
.y73{bottom:261.750000px;}
.y24{bottom:266.070000px;}
.y82{bottom:267.330000px;}
.y81{bottom:277.590000px;}
.y5d{bottom:278.670000px;}
.y38{bottom:278.850000px;}
.y80{bottom:284.430000px;}
.y3f{bottom:285.150000px;}
.y23{bottom:291.840000px;}
.y7f{bottom:296.310000px;}
.y18{bottom:303.345000px;}
.y5c{bottom:304.410000px;}
.y37{bottom:304.620000px;}
.y22{bottom:317.760000px;}
.y72{bottom:326.010000px;}
.y36{bottom:330.360000px;}
.y5b{bottom:330.375000px;}
.y21{bottom:343.500000px;}
.y71{bottom:351.975000px;}
.y5a{bottom:356.115000px;}
.y35{bottom:356.280000px;}
.y20{bottom:369.240000px;}
.y70{bottom:377.715000px;}
.y59{bottom:381.855000px;}
.y34{bottom:382.020000px;}
.y1f{bottom:394.980000px;}
.y6e{bottom:403.455000px;}
.y58{bottom:407.595000px;}
.y6f{bottom:412.455000px;}
.y1e{bottom:420.900000px;}
.y6d{bottom:429.195000px;}
.y57{bottom:432.975000px;}
.y7e{bottom:433.515000px;}
.y1d{bottom:446.640000px;}
.y6c{bottom:455.115000px;}
.y56{bottom:459.255000px;}
.y1c{bottom:472.380000px;}
.y6b{bottom:480.855000px;}
.y85{bottom:484.455000px;}
.y55{bottom:484.995000px;}
.y1b{bottom:498.120000px;}
.y6a{bottom:506.595000px;}
.y84{bottom:510.195000px;}
.y54{bottom:510.735000px;}
.y1a{bottom:524.040000px;}
.y69{bottom:532.335000px;}
.y53{bottom:536.655000px;}
.y19{bottom:549.780000px;}
.y68{bottom:558.255000px;}
.y52{bottom:562.395000px;}
.y67{bottom:583.995000px;}
.y51{bottom:587.595000px;}
.y7d{bottom:588.135000px;}
.y66{bottom:609.225000px;}
.y7c{bottom:613.365000px;}
.y50{bottom:613.905000px;}
.y65{bottom:635.505000px;}
.y4f{bottom:639.825000px;}
.y64{bottom:661.425000px;}
.y4e{bottom:665.565000px;}
.y63{bottom:687.165000px;}
.y4d{bottom:690.765000px;}
.y7b{bottom:691.305000px;}
.y33{bottom:703.725000px;}
.y62{bottom:714.345000px;}
.y4c{bottom:716.685000px;}
.y7a{bottom:717.225000px;}
.y61{bottom:741.525000px;}
.y4b{bottom:742.965000px;}
.y2f{bottom:747.465000px;}
.y4a{bottom:768.705000px;}
.y49{bottom:794.445000px;}
.y48{bottom:820.365000px;}
.y17{bottom:845.025000px;}
.y60{bottom:845.565000px;}
.y47{bottom:846.105000px;}
.y79{bottom:855.105000px;}
.y5f{bottom:871.350000px;}
.y46{bottom:871.890000px;}
.y14{bottom:880.530000px;}
.y45{bottom:897.630000px;}
.y44{bottom:923.550000px;}
.y13{bottom:949.290000px;}
.y86{bottom:974.490000px;}
.y12{bottom:975.030000px;}
.y78{bottom:984.030000px;}
.y11{bottom:1000.230000px;}
.y43{bottom:1000.770000px;}
.y10{bottom:1026.150000px;}
.y42{bottom:1026.690000px;}
.yf{bottom:1051.890000px;}
.y41{bottom:1052.430000px;}
.ye{bottom:1077.630000px;}
.y76{bottom:1078.170000px;}
.y77{bottom:1087.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.hc{height:34.762500px;}
.h15{height:38.158594px;}
.h10{height:43.740000px;}
.h14{height:50.171484px;}
.h12{height:54.295313px;}
.h9{height:54.864844px;}
.h16{height:58.651172px;}
.hb{height:60.645000px;}
.he{height:64.091250px;}
.h2{height:72.562500px;}
.ha{height:76.279219px;}
.h8{height:76.317188px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.hf{height:96.660000px;}
.h11{height:399.660000px;}
.hd{height:576.450000px;}
.h13{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:209.539500px;}
.w3{width:432.795000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x15{left:9.889500px;}
.x18{left:17.989500px;}
.x17{left:19.969500px;}
.x13{left:21.049500px;}
.x14{left:26.983500px;}
.xf{left:29.323500px;}
.x16{left:32.023500px;}
.x11{left:34.723500px;}
.x12{left:40.303500px;}
.x19{left:43.183500px;}
.xc{left:47.683500px;}
.xb{left:70.363500px;}
.x1{left:84.960000px;}
.x1f{left:94.716000px;}
.x2{left:103.356000px;}
.x1a{left:118.836000px;}
.xa{left:125.326500px;}
.x4{left:129.456000px;}
.x26{left:138.996000px;}
.xe{left:151.770000px;}
.x1b{left:172.830000px;}
.x1c{left:235.288125px;}
.x1d{left:248.250000px;}
.x7{left:297.435000px;}
.x1e{left:301.035000px;}
.x9{left:307.335000px;}
.x5{left:328.575000px;}
.x8{left:333.615000px;}
.xd{left:334.875000px;}
.x6{left:457.095000px;}
.x27{left:463.395000px;}
.x24{left:537.403125px;}
.x25{left:550.365000px;}
.x20{left:552.343125px;}
.x21{left:565.305000px;}
.x3{left:778.650000px;}
.x22{left:790.348125px;}
.x23{left:803.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.071680pt;}
.ls14{letter-spacing:0.097280pt;}
.ls11{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.204800pt;}
.ls12{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.663040pt;}
.ls15{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.264000pt;}
.ls10{letter-spacing:1.280000pt;}
.lse{letter-spacing:14.064640pt;}
.ls18{letter-spacing:14.720000pt;}
.lsf{letter-spacing:15.360000pt;}
.ls9{letter-spacing:16.000000pt;}
.ls1c{letter-spacing:24.426667pt;}
.ls19{letter-spacing:26.192640pt;}
.ls17{letter-spacing:26.240000pt;}
.ls1a{letter-spacing:30.080000pt;}
.lsc{letter-spacing:30.720000pt;}
.ls1b{letter-spacing:34.560000pt;}
.ls1d{letter-spacing:60.160000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-19.215360pt;}
.ws9{word-spacing:-18.544000pt;}
.ws3{word-spacing:-17.310720pt;}
.ws5{word-spacing:-17.303040pt;}
.ws6{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.272320pt;}
.ws7{word-spacing:-17.264640pt;}
.ws1{word-spacing:-0.069120pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-8.335360pt;}
._16{margin-left:-1.999360pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._1d{width:2.488320pt;}
._19{width:3.387307pt;}
._18{width:4.608427pt;}
._13{width:5.598720pt;}
._2b{width:6.662827pt;}
._17{width:7.558400pt;}
._7{width:8.862293pt;}
._6{width:10.298880pt;}
._3{width:11.957760pt;}
._4{width:13.340160pt;}
._c{width:14.653440pt;}
._8{width:16.243200pt;}
._1a{width:18.865493pt;}
._15{width:20.541440pt;}
._14{width:22.325760pt;}
._9{width:24.330240pt;}
._24{width:25.219840pt;}
._20{width:26.196480pt;}
._21{width:27.371520pt;}
._a{width:28.270080pt;}
._2{width:29.928960pt;}
._1c{width:30.934187pt;}
._28{width:32.546560pt;}
._27{width:33.868800pt;}
._29{width:34.859520pt;}
._23{width:36.750080pt;}
._22{width:37.670400pt;}
._25{width:41.541120pt;}
._26{width:42.785280pt;}
._d{width:45.411840pt;}
._1f{width:47.132160pt;}
._1e{width:48.171947pt;}
._b{width:49.766400pt;}
._12{width:51.702187pt;}
._11{width:52.600320pt;}
._10{width:58.268160pt;}
._e{width:59.443200pt;}
._2a{width:60.433920pt;}
._f{width:82.529280pt;}
._5{width:127.941120pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:6.720000pt;}
.y2e{bottom:7.186667pt;}
.y15{bottom:29.760000pt;}
.y2d{bottom:30.266667pt;}
.y32{bottom:30.400000pt;}
.y31{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y2c{bottom:53.146667pt;}
.y30{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y2b{bottom:76.026667pt;}
.yb{bottom:94.592000pt;}
.y2a{bottom:98.906667pt;}
.y3e{bottom:110.266667pt;}
.ya{bottom:116.032000pt;}
.y29{bottom:121.946667pt;}
.y3d{bottom:133.306667pt;}
.y9{bottom:137.306667pt;}
.y28{bottom:144.826667pt;}
.y3c{bottom:156.186667pt;}
.y8{bottom:156.666667pt;}
.y27{bottom:167.706667pt;}
.y7{bottom:176.666667pt;}
.y3b{bottom:179.066667pt;}
.y26{bottom:190.746667pt;}
.y6{bottom:196.666667pt;}
.y3a{bottom:201.946667pt;}
.y25{bottom:213.626667pt;}
.y75{bottom:216.186667pt;}
.y74{bottom:222.266667pt;}
.y5e{bottom:224.826667pt;}
.y39{bottom:224.986667pt;}
.y40{bottom:230.586667pt;}
.y83{bottom:231.546667pt;}
.y73{bottom:232.666667pt;}
.y24{bottom:236.506667pt;}
.y82{bottom:237.626667pt;}
.y81{bottom:246.746667pt;}
.y5d{bottom:247.706667pt;}
.y38{bottom:247.866667pt;}
.y80{bottom:252.826667pt;}
.y3f{bottom:253.466667pt;}
.y23{bottom:259.413333pt;}
.y7f{bottom:263.386667pt;}
.y18{bottom:269.640000pt;}
.y5c{bottom:270.586667pt;}
.y37{bottom:270.773333pt;}
.y22{bottom:282.453333pt;}
.y72{bottom:289.786667pt;}
.y36{bottom:293.653333pt;}
.y5b{bottom:293.666667pt;}
.y21{bottom:305.333333pt;}
.y71{bottom:312.866667pt;}
.y5a{bottom:316.546667pt;}
.y35{bottom:316.693333pt;}
.y20{bottom:328.213333pt;}
.y70{bottom:335.746667pt;}
.y59{bottom:339.426667pt;}
.y34{bottom:339.573333pt;}
.y1f{bottom:351.093333pt;}
.y6e{bottom:358.626667pt;}
.y58{bottom:362.306667pt;}
.y6f{bottom:366.626667pt;}
.y1e{bottom:374.133333pt;}
.y6d{bottom:381.506667pt;}
.y57{bottom:384.866667pt;}
.y7e{bottom:385.346667pt;}
.y1d{bottom:397.013333pt;}
.y6c{bottom:404.546667pt;}
.y56{bottom:408.226667pt;}
.y1c{bottom:419.893333pt;}
.y6b{bottom:427.426667pt;}
.y85{bottom:430.626667pt;}
.y55{bottom:431.106667pt;}
.y1b{bottom:442.773333pt;}
.y6a{bottom:450.306667pt;}
.y84{bottom:453.506667pt;}
.y54{bottom:453.986667pt;}
.y1a{bottom:465.813333pt;}
.y69{bottom:473.186667pt;}
.y53{bottom:477.026667pt;}
.y19{bottom:488.693333pt;}
.y68{bottom:496.226667pt;}
.y52{bottom:499.906667pt;}
.y67{bottom:519.106667pt;}
.y51{bottom:522.306667pt;}
.y7d{bottom:522.786667pt;}
.y66{bottom:541.533333pt;}
.y7c{bottom:545.213333pt;}
.y50{bottom:545.693333pt;}
.y65{bottom:564.893333pt;}
.y4f{bottom:568.733333pt;}
.y64{bottom:587.933333pt;}
.y4e{bottom:591.613333pt;}
.y63{bottom:610.813333pt;}
.y4d{bottom:614.013333pt;}
.y7b{bottom:614.493333pt;}
.y33{bottom:625.533333pt;}
.y62{bottom:634.973333pt;}
.y4c{bottom:637.053333pt;}
.y7a{bottom:637.533333pt;}
.y61{bottom:659.133333pt;}
.y4b{bottom:660.413333pt;}
.y2f{bottom:664.413333pt;}
.y4a{bottom:683.293333pt;}
.y49{bottom:706.173333pt;}
.y48{bottom:729.213333pt;}
.y17{bottom:751.133333pt;}
.y60{bottom:751.613333pt;}
.y47{bottom:752.093333pt;}
.y79{bottom:760.093333pt;}
.y5f{bottom:774.533333pt;}
.y46{bottom:775.013333pt;}
.y14{bottom:782.693333pt;}
.y45{bottom:797.893333pt;}
.y44{bottom:820.933333pt;}
.y13{bottom:843.813333pt;}
.y86{bottom:866.213333pt;}
.y12{bottom:866.693333pt;}
.y78{bottom:874.693333pt;}
.y11{bottom:889.093333pt;}
.y43{bottom:889.573333pt;}
.y10{bottom:912.133333pt;}
.y42{bottom:912.613333pt;}
.yf{bottom:935.013333pt;}
.y41{bottom:935.493333pt;}
.ye{bottom:957.893333pt;}
.y76{bottom:958.373333pt;}
.y77{bottom:966.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.hc{height:30.900000pt;}
.h15{height:33.918750pt;}
.h10{height:38.880000pt;}
.h14{height:44.596875pt;}
.h12{height:48.262500pt;}
.h9{height:48.768750pt;}
.h16{height:52.134375pt;}
.hb{height:53.906667pt;}
.he{height:56.970000pt;}
.h2{height:64.500000pt;}
.ha{height:67.803750pt;}
.h8{height:67.837500pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.hf{height:85.920000pt;}
.h11{height:355.253333pt;}
.hd{height:512.400000pt;}
.h13{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:186.257333pt;}
.w3{width:384.706667pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x15{left:8.790667pt;}
.x18{left:15.990667pt;}
.x17{left:17.750667pt;}
.x13{left:18.710667pt;}
.x14{left:23.985333pt;}
.xf{left:26.065333pt;}
.x16{left:28.465333pt;}
.x11{left:30.865333pt;}
.x12{left:35.825333pt;}
.x19{left:38.385333pt;}
.xc{left:42.385333pt;}
.xb{left:62.545333pt;}
.x1{left:75.520000pt;}
.x1f{left:84.192000pt;}
.x2{left:91.872000pt;}
.x1a{left:105.632000pt;}
.xa{left:111.401333pt;}
.x4{left:115.072000pt;}
.x26{left:123.552000pt;}
.xe{left:134.906667pt;}
.x1b{left:153.626667pt;}
.x1c{left:209.145000pt;}
.x1d{left:220.666667pt;}
.x7{left:264.386667pt;}
.x1e{left:267.586667pt;}
.x9{left:273.186667pt;}
.x5{left:292.066667pt;}
.x8{left:296.546667pt;}
.xd{left:297.666667pt;}
.x6{left:406.306667pt;}
.x27{left:411.906667pt;}
.x24{left:477.691667pt;}
.x25{left:489.213333pt;}
.x20{left:490.971667pt;}
.x21{left:502.493333pt;}
.x3{left:692.133333pt;}
.x22{left:702.531667pt;}
.x23{left:714.053333pt;}
}




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