
    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_9749bc002526d16cf6053e9f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_41889ddcc90277716329cf23.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946289;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_e26f3700f1ec61dd700eee8b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946289;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_e8cf6d1141c4fe50ee0099ff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907715;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_b9bb69c925612764e1a25da2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_656d23591a49fa6ff53f921e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_9e252c40c50018ab28a6528a.woff')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_34dabc930fb5c406c8c349f9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946289;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_bc61596e5e355614a3f71df7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9e252c40c50018ab28a6528a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5522893faae4c46dfae2db09.woff')format("woff");}.ffc{font-family:ffc;line-height:0.958496;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:ffd;src:url('chunks/assets/font_ae29324d1a9e276fe51e0519.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946289;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);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.586913px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:1569.433771px;}
.ls4{letter-spacing:1871.021431px;}
.ls6{letter-spacing:2112.484343px;}
.ls1{letter-spacing:2252.731379px;}
.ls2{letter-spacing:2253.441718px;}
.ls3{letter-spacing:2351.950880px;}
.ls5{letter-spacing:2410.561697px;}
.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;}
}
.ws1{word-spacing:-13.212891px;}
.ws2{word-spacing:-7.927734px;}
.ws3{word-spacing:-7.207031px;}
.ws4{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-5.639948px;}
._2{margin-left:-4.398106px;}
._0{margin-left:-2.957225px;}
._1{margin-left:-1.339953px;}
._4{width:49.798827px;}
.fc5{color:rgb(17,85,204);}
.fc1{color:rgb(244,125,32);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.600001px;}
.fs4{font-size:59.999999px;}
.fs3{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.028353px;}
.y1b{bottom:10.690327px;}
.y15{bottom:10.690384px;}
.y23{bottom:10.690426px;}
.y8{bottom:10.690430px;}
.ye{bottom:10.690475px;}
.y37{bottom:11.903137px;}
.y32{bottom:11.903320px;}
.y4c{bottom:12.306152px;}
.y39{bottom:14.649719px;}
.y35{bottom:14.649902px;}
.y30{bottom:18.565430px;}
.ya{bottom:22.338868px;}
.y2b{bottom:31.056146px;}
.y27{bottom:32.663086px;}
.y22{bottom:35.662996px;}
.y1a{bottom:35.663032px;}
.y2d{bottom:39.149963px;}
.y2{bottom:39.150008px;}
.y59{bottom:39.150146px;}
.y19{bottom:60.635737px;}
.y21{bottom:60.635746px;}
.y2a{bottom:61.268561px;}
.y29{bottom:81.410156px;}
.y18{bottom:85.608352px;}
.y20{bottom:85.608391px;}
.y8f{bottom:107.731929px;}
.y1f{bottom:110.580961px;}
.y1e{bottom:135.553711px;}
.y4e{bottom:193.983758px;}
.y28{bottom:229.669283px;}
.y4d{bottom:243.624382px;}
.y26{bottom:271.645942px;}
.y25{bottom:282.632268px;}
.y4b{bottom:285.600954px;}
.y7d{bottom:301.636957px;}
.y24{bottom:322.716243px;}
.y4a{bottom:346.382258px;}
.y7c{bottom:346.919675px;}
.y1d{bottom:351.813907px;}
.y7b{bottom:367.061639px;}
.y7a{bottom:387.202875px;}
.y49{bottom:391.664981px;}
.y79{bottom:407.344479px;}
.y48{bottom:408.500428px;}
.y8e{bottom:411.521119px;}
.y1c{bottom:414.245538px;}
.y78{bottom:427.486444px;}
.y8d{bottom:431.662354px;}
.y47{bottom:443.685977px;}
.y77{bottom:447.627679px;}
.y8c{bottom:451.803956px;}
.y76{bottom:467.769281px;}
.y8b{bottom:471.945926px;}
.y46{bottom:478.871518px;}
.y75{bottom:487.910891px;}
.y8a{bottom:492.087161px;}
.y17{bottom:505.774847px;}
.y74{bottom:508.052861px;}
.y89{bottom:512.228756px;}
.y45{bottom:514.057063px;}
.y73{bottom:528.194096px;}
.y88{bottom:532.370726px;}
.y16{bottom:543.233825px;}
.y72{bottom:548.335691px;}
.y44{bottom:549.242612px;}
.y87{bottom:552.511961px;}
.y71{bottom:568.477661px;}
.y86{bottom:572.653571px;}
.y43{bottom:584.428161px;}
.y42{bottom:585.801449px;}
.y70{bottom:588.618896px;}
.y85{bottom:592.795524px;}
.y6f{bottom:608.760491px;}
.y14{bottom:609.790414px;}
.y84{bottom:612.936761px;}
.y41{bottom:622.360296px;}
.y40{bottom:623.733584px;}
.y6e{bottom:628.902474px;}
.y83{bottom:633.078371px;}
.y13{bottom:638.888118px;}
.y6d{bottom:649.043705px;}
.y82{bottom:653.220341px;}
.y3f{bottom:660.292427px;}
.y6c{bottom:669.185310px;}
.y12{bottom:669.186903px;}
.y81{bottom:673.361575px;}
.y6b{bottom:689.327276px;}
.y3e{bottom:695.477968px;}
.y6a{bottom:709.468511px;}
.y11{bottom:719.806087px;}
.y69{bottom:729.610102px;}
.y3d{bottom:730.663514px;}
.y68{bottom:749.752076px;}
.y10{bottom:761.782608px;}
.y3c{bottom:765.849062px;}
.y67{bottom:769.893320px;}
.y66{bottom:790.034924px;}
.yf{bottom:790.880268px;}
.y3b{bottom:801.034604px;}
.y65{bottom:810.176889px;}
.yd{bottom:819.977928px;}
.y57{bottom:821.116151px;}
.y64{bottom:830.318124px;}
.y3a{bottom:836.220149px;}
.y56{bottom:841.257566px;}
.yc{bottom:849.075573px;}
.y63{bottom:850.459720px;}
.y55{bottom:861.399536px;}
.y62{bottom:870.601689px;}
.y38{bottom:871.405704px;}
.y36{bottom:872.778991px;}
.y9{bottom:878.173225px;}
.y7{bottom:882.497448px;}
.y54{bottom:886.040951px;}
.y61{bottom:890.742926px;}
.y34{bottom:909.337836px;}
.y53{bottom:910.682366px;}
.y33{bottom:910.711123px;}
.y60{bottom:910.884521px;}
.y6{bottom:920.350496px;}
.y5f{bottom:931.026492px;}
.y52{bottom:935.324336px;}
.y31{bottom:947.269964px;}
.y80{bottom:951.167726px;}
.y5e{bottom:951.167727px;}
.y5{bottom:957.506242px;}
.y51{bottom:959.965766px;}
.y5d{bottom:971.309323px;}
.y7f{bottom:971.309692px;}
.y2f{bottom:982.455504px;}
.y50{bottom:984.607181px;}
.y7e{bottom:991.450927px;}
.y5c{bottom:991.451292px;}
.y4{bottom:1006.414467px;}
.y4f{bottom:1009.249145px;}
.y5b{bottom:1011.592529px;}
.y3{bottom:1043.035537px;}
.y5a{bottom:1048.748290px;}
.y2e{bottom:1048.748474px;}
.y58{bottom:1071.599853px;}
.y1{bottom:1071.599991px;}
.y2c{bottom:1071.600036px;}
.h19{height:25.892578px;}
.hb{height:27.972610px;}
.h6{height:27.972657px;}
.ha{height:27.972702px;}
.h14{height:34.060363px;}
.h12{height:34.060546px;}
.h16{height:35.891601px;}
.h8{height:36.621095px;}
.h15{height:36.806946px;}
.h13{height:36.807129px;}
.h7{height:42.421874px;}
.h9{height:43.154296px;}
.h11{height:43.722657px;}
.h5{height:47.469728px;}
.h2{height:47.988281px;}
.he{height:49.945312px;}
.h18{height:55.068750px;}
.h4{height:69.046877px;}
.h3{height:86.308592px;}
.hf{height:97.120605px;}
.hc{height:102.890579px;}
.hd{height:152.835938px;}
.h10{height:191.399964px;}
.h1{height:191.400009px;}
.h17{height:191.400147px;}
.h0{height:1263.000000px;}
.w8{width:70.875000px;}
.w4{width:82.125000px;}
.w9{width:105.750000px;}
.w6{width:121.500000px;}
.wb{width:156.375000px;}
.wa{width:158.625000px;}
.w7{width:175.500000px;}
.wd{width:182.250000px;}
.w2{width:189.000000px;}
.wc{width:220.500000px;}
.w5{width:283.500000px;}
.w3{width:479.250000px;}
.we{width:490.500000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:6.750000px;}
.x8{left:7.875000px;}
.x10{left:15.750000px;}
.x6{left:16.875000px;}
.x4{left:108.000000px;}
.x5{left:109.125000px;}
.xf{left:111.375000px;}
.x18{left:135.000000px;}
.x11{left:183.375000px;}
.x9{left:192.375000px;}
.x2{left:216.815100px;}
.x1{left:244.125000px;}
.xc{left:282.375000px;}
.x12{left:290.250000px;}
.x16{left:292.500000px;}
.x7{left:299.250000px;}
.x1a{left:335.008418px;}
.x3{left:358.241659px;}
.xd{left:446.456700px;}
.x13{left:450.000000px;}
.xa{left:477.000000px;}
.xb{left:599.625000px;}
.x14{left:607.500000px;}
.x19{left:624.206700px;}
.x17{left:776.492111px;}
.xe{left:777.522634px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.632812pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1395.052241pt;}
.ls4{letter-spacing:1663.130161pt;}
.ls6{letter-spacing:1877.763861pt;}
.ls1{letter-spacing:2002.427893pt;}
.ls2{letter-spacing:2003.059305pt;}
.ls3{letter-spacing:2090.623005pt;}
.ls5{letter-spacing:2142.721509pt;}
.ws1{word-spacing:-11.744792pt;}
.ws2{word-spacing:-7.046875pt;}
.ws3{word-spacing:-6.406250pt;}
.ws4{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-5.013287pt;}
._2{margin-left:-3.909428pt;}
._0{margin-left:-2.628645pt;}
._1{margin-left:-1.191070pt;}
._4{width:44.265624pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:35.200001pt;}
.fs4{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.580758pt;}
.y1b{bottom:9.502513pt;}
.y15{bottom:9.502563pt;}
.y23{bottom:9.502601pt;}
.y8{bottom:9.502604pt;}
.ye{bottom:9.502644pt;}
.y37{bottom:10.580566pt;}
.y32{bottom:10.580729pt;}
.y4c{bottom:10.938802pt;}
.y39{bottom:13.021973pt;}
.y35{bottom:13.022135pt;}
.y30{bottom:16.502605pt;}
.ya{bottom:19.856772pt;}
.y2b{bottom:27.605463pt;}
.y27{bottom:29.033854pt;}
.y22{bottom:31.700441pt;}
.y1a{bottom:31.700473pt;}
.y2d{bottom:34.799967pt;}
.y2{bottom:34.800007pt;}
.y59{bottom:34.800130pt;}
.y19{bottom:53.898433pt;}
.y21{bottom:53.898441pt;}
.y2a{bottom:54.460943pt;}
.y29{bottom:72.364583pt;}
.y18{bottom:76.096313pt;}
.y20{bottom:76.096348pt;}
.y8f{bottom:95.761715pt;}
.y1f{bottom:98.294188pt;}
.y1e{bottom:120.492187pt;}
.y4e{bottom:172.430007pt;}
.y28{bottom:204.150473pt;}
.y4d{bottom:216.555007pt;}
.y26{bottom:241.463060pt;}
.y25{bottom:251.228683pt;}
.y4b{bottom:253.867515pt;}
.y7d{bottom:268.121740pt;}
.y24{bottom:286.858883pt;}
.y4a{bottom:307.895340pt;}
.y7c{bottom:308.373045pt;}
.y1d{bottom:312.723473pt;}
.y7b{bottom:326.277013pt;}
.y7a{bottom:344.180334pt;}
.y49{bottom:348.146650pt;}
.y79{bottom:362.083982pt;}
.y48{bottom:363.111492pt;}
.y8e{bottom:365.796551pt;}
.y1c{bottom:368.218256pt;}
.y78{bottom:379.987951pt;}
.y8d{bottom:383.699871pt;}
.y47{bottom:394.387535pt;}
.y77{bottom:397.891271pt;}
.y8c{bottom:401.603516pt;}
.y76{bottom:415.794916pt;}
.y8b{bottom:419.507490pt;}
.y46{bottom:425.663572pt;}
.y75{bottom:433.698570pt;}
.y8a{bottom:437.410810pt;}
.y17{bottom:449.577641pt;}
.y74{bottom:451.602543pt;}
.y89{bottom:455.314450pt;}
.y45{bottom:456.939612pt;}
.y73{bottom:469.505863pt;}
.y88{bottom:473.218423pt;}
.y16{bottom:482.874511pt;}
.y72{bottom:487.409503pt;}
.y44{bottom:488.215655pt;}
.y87{bottom:491.121743pt;}
.y71{bottom:505.313476pt;}
.y86{bottom:509.025396pt;}
.y43{bottom:519.491699pt;}
.y42{bottom:520.712399pt;}
.y70{bottom:523.216796pt;}
.y85{bottom:526.929355pt;}
.y6f{bottom:541.120436pt;}
.y14{bottom:542.035924pt;}
.y84{bottom:544.832676pt;}
.y41{bottom:553.209152pt;}
.y40{bottom:554.429852pt;}
.y6e{bottom:559.024422pt;}
.y83{bottom:562.736330pt;}
.y13{bottom:567.900549pt;}
.y6d{bottom:576.927738pt;}
.y82{bottom:580.640303pt;}
.y3f{bottom:586.926601pt;}
.y6c{bottom:594.831387pt;}
.y12{bottom:594.832803pt;}
.y81{bottom:598.543622pt;}
.y6b{bottom:612.735356pt;}
.y3e{bottom:618.202639pt;}
.y6a{bottom:630.638676pt;}
.y11{bottom:639.827633pt;}
.y69{bottom:648.542313pt;}
.y3d{bottom:649.478679pt;}
.y68{bottom:666.446290pt;}
.y10{bottom:677.140096pt;}
.y3c{bottom:680.754721pt;}
.y67{bottom:684.349618pt;}
.y66{bottom:702.253266pt;}
.yf{bottom:703.004683pt;}
.y3b{bottom:712.030759pt;}
.y65{bottom:720.157235pt;}
.yd{bottom:728.869269pt;}
.y57{bottom:729.881023pt;}
.y64{bottom:738.060555pt;}
.y3a{bottom:743.306799pt;}
.y56{bottom:747.784503pt;}
.yc{bottom:754.733843pt;}
.y63{bottom:755.964196pt;}
.y55{bottom:765.688476pt;}
.y62{bottom:773.868168pt;}
.y38{bottom:774.582848pt;}
.y36{bottom:775.803548pt;}
.y9{bottom:780.598423pt;}
.y7{bottom:784.442176pt;}
.y54{bottom:787.591956pt;}
.y61{bottom:791.771490pt;}
.y34{bottom:808.300299pt;}
.y53{bottom:809.495436pt;}
.y33{bottom:809.520999pt;}
.y60{bottom:809.675130pt;}
.y6{bottom:818.089330pt;}
.y5f{bottom:827.579104pt;}
.y52{bottom:831.399410pt;}
.y31{bottom:842.017745pt;}
.y80{bottom:845.482423pt;}
.y5e{bottom:845.482424pt;}
.y5{bottom:851.116660pt;}
.y51{bottom:853.302903pt;}
.y5d{bottom:863.386065pt;}
.y7f{bottom:863.386393pt;}
.y2f{bottom:873.293781pt;}
.y50{bottom:875.206383pt;}
.y7e{bottom:881.289713pt;}
.y5c{bottom:881.290037pt;}
.y4{bottom:894.590637pt;}
.y4f{bottom:897.110351pt;}
.y5b{bottom:899.193359pt;}
.y3{bottom:927.142700pt;}
.y5a{bottom:932.220703pt;}
.y2e{bottom:932.220865pt;}
.y58{bottom:952.533203pt;}
.y1{bottom:952.533325pt;}
.y2c{bottom:952.533365pt;}
.h19{height:23.015625pt;}
.hb{height:24.864543pt;}
.h6{height:24.864584pt;}
.ha{height:24.864624pt;}
.h14{height:30.275879pt;}
.h12{height:30.276041pt;}
.h16{height:31.903645pt;}
.h8{height:32.552084pt;}
.h15{height:32.717285pt;}
.h13{height:32.717448pt;}
.h7{height:37.708332pt;}
.h9{height:38.359374pt;}
.h11{height:38.864584pt;}
.h5{height:42.195313pt;}
.h2{height:42.656250pt;}
.he{height:44.395833pt;}
.h18{height:48.950000pt;}
.h4{height:61.375002pt;}
.h3{height:76.718748pt;}
.hf{height:86.329427pt;}
.hc{height:91.458292pt;}
.hd{height:135.854167pt;}
.h10{height:170.133301pt;}
.h1{height:170.133341pt;}
.h17{height:170.133464pt;}
.h0{height:1122.666667pt;}
.w8{width:63.000000pt;}
.w4{width:73.000000pt;}
.w9{width:94.000000pt;}
.w6{width:108.000000pt;}
.wb{width:139.000000pt;}
.wa{width:141.000000pt;}
.w7{width:156.000000pt;}
.wd{width:162.000000pt;}
.w2{width:168.000000pt;}
.wc{width:196.000000pt;}
.w5{width:252.000000pt;}
.w3{width:426.000000pt;}
.we{width:436.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.000000pt;}
.x8{left:7.000000pt;}
.x10{left:14.000000pt;}
.x6{left:15.000000pt;}
.x4{left:96.000000pt;}
.x5{left:97.000000pt;}
.xf{left:99.000000pt;}
.x18{left:120.000000pt;}
.x11{left:163.000000pt;}
.x9{left:171.000000pt;}
.x2{left:192.724533pt;}
.x1{left:217.000000pt;}
.xc{left:251.000000pt;}
.x12{left:258.000000pt;}
.x16{left:260.000000pt;}
.x7{left:266.000000pt;}
.x1a{left:297.785260pt;}
.x3{left:318.437030pt;}
.xd{left:396.850400pt;}
.x13{left:400.000000pt;}
.xa{left:424.000000pt;}
.xb{left:533.000000pt;}
.x14{left:540.000000pt;}
.x19{left:554.850400pt;}
.x17{left:690.215210pt;}
.xe{left:691.131230pt;}
}




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