
    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_7476cad1ee3ec05dbcc6a321.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_e0d5ac6bc53e2ed2cbb523a9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_671a38cc9dd7a1eff6f1edbc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_94f92b89032d2943053050dd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0db5d25fa976435e9263df4d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_1ea0c839558ffaf422864768.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-2.520000px;}
.ls4{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.208200px;}
.lsd{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.189600px;}
.ls14{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.lsb{letter-spacing:15.238800px;}
.ls2{letter-spacing:15.300000px;}
.ls13{letter-spacing:16.506720px;}
.ls1{letter-spacing:16.560000px;}
.ls12{letter-spacing:16.650720px;}
.ls10{letter-spacing:46.026720px;}
.ls11{letter-spacing:46.170720px;}
.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:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.ws5{word-spacing:0.000000px;}
._3e{margin-left:-8.848080px;}
._35{margin-left:-7.720560px;}
._e{margin-left:-5.463600px;}
._f{margin-left:-3.841920px;}
._d{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._24{width:2.270880px;}
._10{width:3.283440px;}
._13{width:4.545120px;}
._17{width:5.550960px;}
._22{width:6.759600px;}
._c{width:7.920000px;}
._3{width:9.540000px;}
._1e{width:10.702080px;}
._1{width:12.420000px;}
._18{width:13.744800px;}
._12{width:16.683840px;}
._1d{width:18.704880px;}
._11{width:19.720800px;}
._30{width:20.729520px;}
._21{width:21.935520px;}
._19{width:23.306400px;}
._16{width:24.621120px;}
._15{width:26.072640px;}
._14{width:27.250560px;}
._25{width:28.326240px;}
._20{width:29.519040px;}
._1f{width:30.537360px;}
._23{width:31.897440px;}
._1b{width:33.166800px;}
._2f{width:34.780320px;}
._2c{width:36.334080px;}
._3a{width:37.468800px;}
._1c{width:39.113280px;}
._1a{width:40.218480px;}
._2d{width:41.652720px;}
._2e{width:42.788160px;}
._34{width:44.222400px;}
._2b{width:46.612800px;}
._27{width:47.987280px;}
._28{width:49.302000px;}
._31{width:54.142560px;}
._29{width:56.174400px;}
._2a{width:57.309840px;}
._38{width:59.700240px;}
._39{width:60.716160px;}
._33{width:64.062720px;}
._3c{width:65.257920px;}
._3b{width:66.333600px;}
._26{width:87.010560px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._32{width:103.631760px;}
._9{width:108.180000px;}
._37{width:126.810720px;}
._36{width:128.005920px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
._3d{width:509.177520px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y10{bottom:7.020000px;}
.y37{bottom:7.200000px;}
.y16{bottom:8.100000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y2a{bottom:35.100000px;}
.y38{bottom:36.180000px;}
.y11{bottom:36.900000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y36{bottom:50.400000px;}
.yf{bottom:52.380000px;}
.y29{bottom:62.100000px;}
.y6{bottom:63.180000px;}
.yb{bottom:73.080000px;}
.y61{bottom:81.900000px;}
.y34{bottom:82.620000px;}
.y5{bottom:84.450000px;}
.y28{bottom:89.145000px;}
.y80{bottom:90.900000px;}
.ya{bottom:92.370000px;}
.y4{bottom:106.950000px;}
.y60{bottom:108.900000px;}
.y33{bottom:109.620000px;}
.y9{bottom:110.190000px;}
.y27{bottom:116.145000px;}
.y7f{bottom:117.900000px;}
.y3{bottom:126.750000px;}
.y5f{bottom:135.900000px;}
.y32{bottom:136.620000px;}
.y26{bottom:143.145000px;}
.y7e{bottom:144.900000px;}
.y5e{bottom:162.930000px;}
.y31{bottom:163.650000px;}
.y25{bottom:170.145000px;}
.y7d{bottom:171.930000px;}
.y5d{bottom:189.930000px;}
.y30{bottom:190.650000px;}
.y24{bottom:197.145000px;}
.y7c{bottom:198.930000px;}
.y5c{bottom:216.930000px;}
.y2f{bottom:217.650000px;}
.y23{bottom:224.145000px;}
.y7b{bottom:225.930000px;}
.y5b{bottom:243.930000px;}
.y2e{bottom:244.650000px;}
.y22{bottom:251.145000px;}
.y7a{bottom:261.930000px;}
.y5a{bottom:270.930000px;}
.y2d{bottom:271.650000px;}
.y21{bottom:278.145000px;}
.y79{bottom:288.930000px;}
.y59{bottom:297.930000px;}
.y2c{bottom:299.010000px;}
.y20{bottom:305.145000px;}
.y2b{bottom:308.550000px;}
.y78{bottom:315.930000px;}
.y58{bottom:324.930000px;}
.y1f{bottom:332.175000px;}
.y17{bottom:336.270000px;}
.y77{bottom:342.930000px;}
.y57{bottom:351.930000px;}
.y1e{bottom:359.175000px;}
.y76{bottom:369.930000px;}
.y56{bottom:378.930000px;}
.y1d{bottom:386.175000px;}
.y75{bottom:396.930000px;}
.y55{bottom:405.975000px;}
.y1c{bottom:413.175000px;}
.y74{bottom:423.975000px;}
.y54{bottom:432.975000px;}
.y1b{bottom:440.175000px;}
.y73{bottom:450.975000px;}
.y53{bottom:459.975000px;}
.y1a{bottom:467.175000px;}
.y72{bottom:477.975000px;}
.y52{bottom:486.975000px;}
.y19{bottom:494.175000px;}
.y71{bottom:504.975000px;}
.y51{bottom:513.975000px;}
.y18{bottom:521.175000px;}
.y70{bottom:531.975000px;}
.y50{bottom:540.975000px;}
.y6f{bottom:558.975000px;}
.y4f{bottom:567.975000px;}
.y6e{bottom:585.975000px;}
.y4e{bottom:594.975000px;}
.y6d{bottom:612.975000px;}
.y4d{bottom:621.975000px;}
.y6c{bottom:639.975000px;}
.y4c{bottom:648.975000px;}
.y6b{bottom:667.005000px;}
.y4b{bottom:676.005000px;}
.y6a{bottom:694.005000px;}
.y4a{bottom:703.005000px;}
.y69{bottom:721.005000px;}
.y49{bottom:730.005000px;}
.y68{bottom:748.005000px;}
.y48{bottom:757.005000px;}
.y67{bottom:775.005000px;}
.y47{bottom:784.005000px;}
.y66{bottom:802.005000px;}
.y46{bottom:811.005000px;}
.y65{bottom:829.005000px;}
.y45{bottom:838.005000px;}
.y64{bottom:856.005000px;}
.y44{bottom:865.005000px;}
.y15{bottom:877.245000px;}
.y63{bottom:883.005000px;}
.y43{bottom:892.005000px;}
.y62{bottom:910.050000px;}
.y42{bottom:919.050000px;}
.y14{bottom:931.110000px;}
.y41{bottom:946.050000px;}
.y13{bottom:957.570000px;}
.y40{bottom:973.050000px;}
.y3f{bottom:1000.050000px;}
.y12{bottom:1004.370000px;}
.y3e{bottom:1027.050000px;}
.ye{bottom:1046.670000px;}
.y3d{bottom:1054.050000px;}
.y1{bottom:1067.730000px;}
.y3c{bottom:1081.050000px;}
.y3b{bottom:1108.050000px;}
.y3a{bottom:1135.050000px;}
.y39{bottom:1162.080000px;}
.y35{bottom:1193.400000px;}
.h3{height:2.190938px;}
.ha{height:22.320000px;}
.h14{height:22.500000px;}
.h11{height:27.000000px;}
.hf{height:27.036000px;}
.h12{height:27.147656px;}
.h8{height:37.705078px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h16{height:43.506914px;}
.h15{height:45.461953px;}
.h13{height:46.251562px;}
.hb{height:46.736719px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.he{height:53.224453px;}
.hc{height:55.987031px;}
.h9{height:59.439023px;}
.hd{height:67.565039px;}
.h2{height:140.796000px;}
.h10{height:540.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.776000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.510000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.x11{left:84.059987px;}
.x15{left:89.495987px;}
.xc{left:107.496000px;}
.x7{left:133.605000px;}
.x2{left:160.050000px;}
.x10{left:197.849987px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.xf{left:462.524987px;}
.x13{left:470.984987px;}
.x12{left:492.584987px;}
.x14{left:497.984987px;}
.x8{left:685.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-2.240000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.168533pt;}
.ls14{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.lsb{letter-spacing:13.545600pt;}
.ls2{letter-spacing:13.600000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls1{letter-spacing:14.720000pt;}
.ls12{letter-spacing:14.800640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls11{letter-spacing:41.040640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws5{word-spacing:0.000000pt;}
._3e{margin-left:-7.864960pt;}
._35{margin-left:-6.862720pt;}
._e{margin-left:-4.856533pt;}
._f{margin-left:-3.415040pt;}
._d{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._24{width:2.018560pt;}
._10{width:2.918613pt;}
._13{width:4.040107pt;}
._17{width:4.934187pt;}
._22{width:6.008533pt;}
._c{width:7.040000pt;}
._3{width:8.480000pt;}
._1e{width:9.512960pt;}
._1{width:11.040000pt;}
._18{width:12.217600pt;}
._12{width:14.830080pt;}
._1d{width:16.626560pt;}
._11{width:17.529600pt;}
._30{width:18.426240pt;}
._21{width:19.498240pt;}
._19{width:20.716800pt;}
._16{width:21.885440pt;}
._15{width:23.175680pt;}
._14{width:24.222720pt;}
._25{width:25.178880pt;}
._20{width:26.239147pt;}
._1f{width:27.144320pt;}
._23{width:28.353280pt;}
._1b{width:29.481600pt;}
._2f{width:30.915840pt;}
._2c{width:32.296960pt;}
._3a{width:33.305600pt;}
._1c{width:34.767360pt;}
._1a{width:35.749760pt;}
._2d{width:37.024640pt;}
._2e{width:38.033920pt;}
._34{width:39.308800pt;}
._2b{width:41.433600pt;}
._27{width:42.655360pt;}
._28{width:43.824000pt;}
._31{width:48.126720pt;}
._29{width:49.932800pt;}
._2a{width:50.942080pt;}
._38{width:53.066880pt;}
._39{width:53.969920pt;}
._33{width:56.944640pt;}
._3c{width:58.007040pt;}
._3b{width:58.963200pt;}
._26{width:77.342720pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._32{width:92.117120pt;}
._9{width:96.160000pt;}
._37{width:112.720640pt;}
._36{width:113.783040pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
._3d{width:452.602240pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y10{bottom:6.240000pt;}
.y37{bottom:6.400000pt;}
.y16{bottom:7.200000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y2a{bottom:31.200000pt;}
.y38{bottom:32.160000pt;}
.y11{bottom:32.800000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y36{bottom:44.800000pt;}
.yf{bottom:46.560000pt;}
.y29{bottom:55.200000pt;}
.y6{bottom:56.160000pt;}
.yb{bottom:64.960000pt;}
.y61{bottom:72.800000pt;}
.y34{bottom:73.440000pt;}
.y5{bottom:75.066667pt;}
.y28{bottom:79.240000pt;}
.y80{bottom:80.800000pt;}
.ya{bottom:82.106667pt;}
.y4{bottom:95.066667pt;}
.y60{bottom:96.800000pt;}
.y33{bottom:97.440000pt;}
.y9{bottom:97.946667pt;}
.y27{bottom:103.240000pt;}
.y7f{bottom:104.800000pt;}
.y3{bottom:112.666667pt;}
.y5f{bottom:120.800000pt;}
.y32{bottom:121.440000pt;}
.y26{bottom:127.240000pt;}
.y7e{bottom:128.800000pt;}
.y5e{bottom:144.826667pt;}
.y31{bottom:145.466667pt;}
.y25{bottom:151.240000pt;}
.y7d{bottom:152.826667pt;}
.y5d{bottom:168.826667pt;}
.y30{bottom:169.466667pt;}
.y24{bottom:175.240000pt;}
.y7c{bottom:176.826667pt;}
.y5c{bottom:192.826667pt;}
.y2f{bottom:193.466667pt;}
.y23{bottom:199.240000pt;}
.y7b{bottom:200.826667pt;}
.y5b{bottom:216.826667pt;}
.y2e{bottom:217.466667pt;}
.y22{bottom:223.240000pt;}
.y7a{bottom:232.826667pt;}
.y5a{bottom:240.826667pt;}
.y2d{bottom:241.466667pt;}
.y21{bottom:247.240000pt;}
.y79{bottom:256.826667pt;}
.y59{bottom:264.826667pt;}
.y2c{bottom:265.786667pt;}
.y20{bottom:271.240000pt;}
.y2b{bottom:274.266667pt;}
.y78{bottom:280.826667pt;}
.y58{bottom:288.826667pt;}
.y1f{bottom:295.266667pt;}
.y17{bottom:298.906667pt;}
.y77{bottom:304.826667pt;}
.y57{bottom:312.826667pt;}
.y1e{bottom:319.266667pt;}
.y76{bottom:328.826667pt;}
.y56{bottom:336.826667pt;}
.y1d{bottom:343.266667pt;}
.y75{bottom:352.826667pt;}
.y55{bottom:360.866667pt;}
.y1c{bottom:367.266667pt;}
.y74{bottom:376.866667pt;}
.y54{bottom:384.866667pt;}
.y1b{bottom:391.266667pt;}
.y73{bottom:400.866667pt;}
.y53{bottom:408.866667pt;}
.y1a{bottom:415.266667pt;}
.y72{bottom:424.866667pt;}
.y52{bottom:432.866667pt;}
.y19{bottom:439.266667pt;}
.y71{bottom:448.866667pt;}
.y51{bottom:456.866667pt;}
.y18{bottom:463.266667pt;}
.y70{bottom:472.866667pt;}
.y50{bottom:480.866667pt;}
.y6f{bottom:496.866667pt;}
.y4f{bottom:504.866667pt;}
.y6e{bottom:520.866667pt;}
.y4e{bottom:528.866667pt;}
.y6d{bottom:544.866667pt;}
.y4d{bottom:552.866667pt;}
.y6c{bottom:568.866667pt;}
.y4c{bottom:576.866667pt;}
.y6b{bottom:592.893333pt;}
.y4b{bottom:600.893333pt;}
.y6a{bottom:616.893333pt;}
.y4a{bottom:624.893333pt;}
.y69{bottom:640.893333pt;}
.y49{bottom:648.893333pt;}
.y68{bottom:664.893333pt;}
.y48{bottom:672.893333pt;}
.y67{bottom:688.893333pt;}
.y47{bottom:696.893333pt;}
.y66{bottom:712.893333pt;}
.y46{bottom:720.893333pt;}
.y65{bottom:736.893333pt;}
.y45{bottom:744.893333pt;}
.y64{bottom:760.893333pt;}
.y44{bottom:768.893333pt;}
.y15{bottom:779.773333pt;}
.y63{bottom:784.893333pt;}
.y43{bottom:792.893333pt;}
.y62{bottom:808.933333pt;}
.y42{bottom:816.933333pt;}
.y14{bottom:827.653333pt;}
.y41{bottom:840.933333pt;}
.y13{bottom:851.173333pt;}
.y40{bottom:864.933333pt;}
.y3f{bottom:888.933333pt;}
.y12{bottom:892.773333pt;}
.y3e{bottom:912.933333pt;}
.ye{bottom:930.373333pt;}
.y3d{bottom:936.933333pt;}
.y1{bottom:949.093333pt;}
.y3c{bottom:960.933333pt;}
.y3b{bottom:984.933333pt;}
.y3a{bottom:1008.933333pt;}
.y39{bottom:1032.960000pt;}
.y35{bottom:1060.800000pt;}
.h3{height:1.947500pt;}
.ha{height:19.840000pt;}
.h14{height:20.000000pt;}
.h11{height:24.000000pt;}
.hf{height:24.032000pt;}
.h12{height:24.131250pt;}
.h8{height:33.515625pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h16{height:38.672812pt;}
.h15{height:40.410625pt;}
.h13{height:41.112500pt;}
.hb{height:41.543750pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.he{height:47.310625pt;}
.hc{height:49.766250pt;}
.h9{height:52.834688pt;}
.hd{height:60.057813pt;}
.h2{height:125.152000pt;}
.h10{height:480.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.912000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.453333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.x11{left:74.719988pt;}
.x15{left:79.551988pt;}
.xc{left:95.552000pt;}
.x7{left:118.760000pt;}
.x2{left:142.266667pt;}
.x10{left:175.866655pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.xf{left:411.133322pt;}
.x13{left:418.653322pt;}
.x12{left:437.853322pt;}
.x14{left:442.653322pt;}
.x8{left:609.733333pt;}
}




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