
    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_f7acbd33c269316aeaa2b7f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_a5ec8e29d5c88633dccc7780.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f07e5f4de8977d10ba0b2cee.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_9a3e89c100bd68c5c709b7cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_969a6c29c9339b6b958f417c.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_17a21b613196b631fc75e01a.woff2')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_06beab6e0638efc622144c86.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_aba74fdd18c9d02786f428b3.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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(0.256544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256544,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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.980000px;}
.ls6{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.270600px;}
.ls9{letter-spacing:-0.224400px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:8.640000px;}
.lse{letter-spacing:217.952780px;}
.lsf{letter-spacing:218.592278px;}
.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;}
}
.wsf{word-spacing:-18.720000px;}
.wse{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.280000px;}
.ws5{word-spacing:-17.009400px;}
.wsa{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.518000px;}
.ws4{word-spacing:-11.340000px;}
.ws2{word-spacing:-10.260000px;}
.ws7{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.360000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:75.428382px;}
.wsb{word-spacing:91.292386px;}
._20{margin-left:-476.006149px;}
._1a{margin-left:-3.578760px;}
._3{margin-left:-2.397240px;}
._0{margin-left:-1.134000px;}
._1{width:1.182000px;}
._4{width:2.269920px;}
._f{width:3.350160px;}
._13{width:5.070960px;}
._8{width:6.095520px;}
._7{width:7.111440px;}
._6{width:8.843040px;}
._5{width:10.278720px;}
._d{width:11.384760px;}
._c{width:12.519240px;}
._e{width:13.734480px;}
._11{width:15.112560px;}
._10{width:16.128000px;}
._12{width:19.224000px;}
._17{width:20.286000px;}
._15{width:22.752000px;}
._16{width:24.564000px;}
._14{width:25.632000px;}
._18{width:28.440000px;}
._19{width:29.952000px;}
._21{width:35.688000px;}
._2{width:57.853200px;}
._1e{width:92.876195px;}
._1f{width:119.123368px;}
._1d{width:127.435724px;}
._1c{width:142.786490px;}
._a{width:183.204240px;}
._9{width:186.491040px;}
._b{width:843.096000px;}
._1b{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs9{font-size:40.610492px;}
.fs4{font-size:45.360000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:69.120000px;}
.fs8{font-size:70.362296px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.240000px;}
.y93{bottom:4.860000px;}
.y83{bottom:5.760000px;}
.y87{bottom:5.940000px;}
.y8a{bottom:5.985000px;}
.y67{bottom:6.010633px;}
.y7d{bottom:6.120000px;}
.y7a{bottom:6.300000px;}
.y66{bottom:10.509917px;}
.y68{bottom:10.509950px;}
.y4{bottom:13.530000px;}
.y29{bottom:20.520000px;}
.y5{bottom:21.090000px;}
.y3{bottom:29.010000px;}
.y28{bottom:37.800000px;}
.y2{bottom:44.490000px;}
.y27{bottom:55.080000px;}
.y8{bottom:57.420000px;}
.y2d{bottom:57.600000px;}
.y26{bottom:72.360000px;}
.y7{bottom:77.580000px;}
.y25{bottom:89.640000px;}
.y24{bottom:106.740000px;}
.yad{bottom:117.900000px;}
.y23{bottom:124.050000px;}
.ycf{bottom:126.360000px;}
.yac{bottom:138.636000px;}
.y5d{bottom:139.896000px;}
.y22{bottom:141.330000px;}
.yce{bottom:147.096000px;}
.y21{bottom:158.610000px;}
.yab{bottom:159.330000px;}
.y5c{bottom:169.590000px;}
.y20{bottom:175.890000px;}
.ycd{bottom:176.790000px;}
.yaa{bottom:180.030000px;}
.y5b{bottom:190.290000px;}
.y1f{bottom:193.170000px;}
.ycc{bottom:197.490000px;}
.ya9{bottom:200.730000px;}
.y1e{bottom:210.270000px;}
.y5a{bottom:210.990000px;}
.y80{bottom:218.730000px;}
.ya8{bottom:221.430000px;}
.ycb{bottom:227.190000px;}
.y1d{bottom:227.550000px;}
.y7f{bottom:236.190000px;}
.y59{bottom:240.690000px;}
.ya7{bottom:242.130000px;}
.y1c{bottom:244.830000px;}
.yca{bottom:247.890000px;}
.y7e{bottom:254.190000px;}
.y58{bottom:261.390000px;}
.y1b{bottom:262.110000px;}
.ya6{bottom:262.830000px;}
.yc9{bottom:277.590000px;}
.y7c{bottom:278.130000px;}
.y1a{bottom:279.390000px;}
.y57{bottom:282.090000px;}
.ya5{bottom:283.530000px;}
.y19{bottom:296.490000px;}
.yc8{bottom:298.290000px;}
.y7b{bottom:301.890000px;}
.y56{bottom:302.790000px;}
.ya4{bottom:304.230000px;}
.y18{bottom:313.770000px;}
.yc7{bottom:318.990000px;}
.y55{bottom:323.490000px;}
.ya3{bottom:324.930000px;}
.y79{bottom:325.830000px;}
.y17{bottom:331.050000px;}
.y54{bottom:344.190000px;}
.ya2{bottom:345.630000px;}
.y16{bottom:348.330000px;}
.yc6{bottom:348.690000px;}
.y78{bottom:362.370000px;}
.y53{bottom:364.890000px;}
.y15{bottom:365.610000px;}
.ya1{bottom:366.330000px;}
.yc5{bottom:369.390000px;}
.y77{bottom:381.450000px;}
.y52{bottom:385.590000px;}
.ya0{bottom:387.030000px;}
.yc4{bottom:390.135000px;}
.y51{bottom:406.335000px;}
.y9f{bottom:407.775000px;}
.y76{bottom:409.755000px;}
.yc3{bottom:419.835000px;}
.y50{bottom:427.035000px;}
.y75{bottom:430.455000px;}
.y2b{bottom:439.995000px;}
.y9e{bottom:440.535000px;}
.y4f{bottom:447.735000px;}
.y9d{bottom:457.995000px;}
.y74{bottom:460.155000px;}
.yc2{bottom:461.235000px;}
.y4e{bottom:468.435000px;}
.y9c{bottom:481.215000px;}
.y73{bottom:488.955000px;}
.y4d{bottom:489.135000px;}
.yc1{bottom:490.935000px;}
.ye0{bottom:499.935000px;}
.y9b{bottom:504.435000px;}
.y4c{bottom:509.835000px;}
.yc0{bottom:511.635000px;}
.y14{bottom:519.195000px;}
.ydf{bottom:520.635000px;}
.y9a{bottom:527.835000px;}
.y4b{bottom:530.535000px;}
.ybf{bottom:532.335000px;}
.yde{bottom:541.335000px;}
.y99{bottom:551.055000px;}
.y4a{bottom:551.235000px;}
.ybe{bottom:553.035000px;}
.ydd{bottom:571.035000px;}
.y49{bottom:571.935000px;}
.y98{bottom:574.275000px;}
.ybd{bottom:582.735000px;}
.ydc{bottom:591.735000px;}
.y48{bottom:592.635000px;}
.y97{bottom:597.495000px;}
.ybc{bottom:603.435000px;}
.ydb{bottom:612.435000px;}
.y47{bottom:613.335000px;}
.y96{bottom:620.715000px;}
.ybb{bottom:624.135000px;}
.y46{bottom:634.035000px;}
.yda{bottom:642.165000px;}
.y95{bottom:643.965000px;}
.yba{bottom:653.865000px;}
.y45{bottom:654.765000px;}
.yd9{bottom:662.865000px;}
.y94{bottom:667.365000px;}
.yb9{bottom:674.565000px;}
.y44{bottom:675.465000px;}
.yd8{bottom:683.565000px;}
.y92{bottom:690.585000px;}
.y43{bottom:696.165000px;}
.y72{bottom:703.005000px;}
.yb8{bottom:704.265000px;}
.yd7{bottom:713.265000px;}
.y42{bottom:716.865000px;}
.y71{bottom:723.705000px;}
.yb7{bottom:724.965000px;}
.y91{bottom:726.045000px;}
.yd6{bottom:733.965000px;}
.y41{bottom:737.565000px;}
.y70{bottom:753.405000px;}
.y90{bottom:754.665000px;}
.y40{bottom:758.265000px;}
.y8f{bottom:772.125000px;}
.yb6{bottom:775.365000px;}
.y3f{bottom:778.965000px;}
.y6f{bottom:783.105000px;}
.yd5{bottom:784.365000px;}
.y8e{bottom:795.345000px;}
.yb5{bottom:796.065000px;}
.y3e{bottom:799.665000px;}
.yd4{bottom:805.065000px;}
.y6e{bottom:809.565000px;}
.y8d{bottom:818.745000px;}
.y3d{bottom:820.365000px;}
.yb4{bottom:825.765000px;}
.y6d{bottom:827.565000px;}
.y3c{bottom:841.065000px;}
.y8c{bottom:841.965000px;}
.y6c{bottom:845.565000px;}
.yb3{bottom:846.465000px;}
.yd3{bottom:855.465000px;}
.y3b{bottom:861.765000px;}
.y6b{bottom:863.565000px;}
.y8b{bottom:865.185000px;}
.yb2{bottom:876.165000px;}
.y3a{bottom:882.465000px;}
.y89{bottom:888.405000px;}
.yb1{bottom:896.910000px;}
.y39{bottom:903.210000px;}
.y13{bottom:910.950000px;}
.y6a{bottom:911.310000px;}
.y88{bottom:911.670000px;}
.yb0{bottom:917.610000px;}
.y38{bottom:923.910000px;}
.yd2{bottom:926.610000px;}
.y12{bottom:933.450000px;}
.y86{bottom:934.890000px;}
.y65{bottom:935.939919px;}
.y37{bottom:944.610000px;}
.y69{bottom:946.410000px;}
.yaf{bottom:947.310000px;}
.y11{bottom:950.730000px;}
.y85{bottom:958.290000px;}
.y36{bottom:965.310000px;}
.y10{bottom:968.010000px;}
.y64{bottom:977.010000px;}
.y84{bottom:981.510000px;}
.yf{bottom:985.290000px;}
.y35{bottom:986.010000px;}
.y63{bottom:997.710000px;}
.ye{bottom:998.070000px;}
.y82{bottom:1004.730000px;}
.y34{bottom:1006.710000px;}
.y62{bottom:1018.410000px;}
.yd{bottom:1018.770000px;}
.y33{bottom:1027.410000px;}
.y61{bottom:1039.110000px;}
.yc{bottom:1039.290000px;}
.y81{bottom:1040.370000px;}
.y32{bottom:1048.110000px;}
.yb{bottom:1059.270000px;}
.y60{bottom:1059.810000px;}
.y31{bottom:1068.810000px;}
.yd1{bottom:1077.810000px;}
.ya{bottom:1079.970000px;}
.y5f{bottom:1080.510000px;}
.y30{bottom:1089.510000px;}
.yd0{bottom:1098.510000px;}
.y9{bottom:1100.670000px;}
.y2f{bottom:1110.210000px;}
.yae{bottom:1119.210000px;}
.y6{bottom:1121.910000px;}
.y2e{bottom:1139.730000px;}
.y5e{bottom:1139.910000px;}
.y1{bottom:1142.070000px;}
.y2c{bottom:1194.480000px;}
.h14{height:17.280000px;}
.h18{height:22.500000px;}
.h19{height:22.536000px;}
.h17{height:23.040000px;}
.h16{height:23.220000px;}
.he{height:28.049366px;}
.h13{height:34.596000px;}
.h9{height:38.158594px;}
.h10{height:39.837148px;}
.h1a{height:52.066406px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.ha{height:58.651172px;}
.hc{height:60.226875px;}
.h15{height:65.010937px;}
.h5{height:65.884219px;}
.h12{height:66.757500px;}
.h2{height:67.716000px;}
.h11{height:69.022389px;}
.h7{height:69.660000px;}
.h8{height:70.664062px;}
.hf{height:72.321353px;}
.h6{height:72.562500px;}
.hd{height:84.898125px;}
.hb{height:379.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:16.740000px;}
.wa{width:69.660000px;}
.w3{width:74.700000px;}
.w9{width:158.765193px;}
.wd{width:160.380000px;}
.w11{width:169.050000px;}
.w13{width:169.200000px;}
.w12{width:169.230000px;}
.wb{width:169.590000px;}
.w10{width:179.490000px;}
.w8{width:197.130000px;}
.w4{width:223.590000px;}
.we{width:223.770000px;}
.wf{width:274.170000px;}
.wc{width:276.735000px;}
.w2{width:339.555000px;}
.w6{width:424.155000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:4.123868px;}
.x2{left:8.100000px;}
.x13{left:13.860000px;}
.x10{left:18.956370px;}
.x1a{left:23.400000px;}
.x15{left:24.480000px;}
.x1e{left:27.360000px;}
.x1b{left:31.140000px;}
.x17{left:35.460000px;}
.x24{left:47.925000px;}
.x30{left:53.640000px;}
.x2f{left:55.074000px;}
.x2d{left:58.680000px;}
.x2a{left:60.114000px;}
.x2c{left:62.460000px;}
.x4{left:66.600000px;}
.x31{left:69.120000px;}
.x20{left:70.920000px;}
.x27{left:72.765000px;}
.x1f{left:75.420000px;}
.x29{left:76.545000px;}
.x28{left:77.574000px;}
.x25{left:79.374000px;}
.x1c{left:81.000000px;}
.xd{left:106.235987px;}
.x18{left:108.930000px;}
.x26{left:121.710000px;}
.x1d{left:125.130000px;}
.x1{left:127.656000px;}
.xf{left:148.715987px;}
.xa{left:149.975987px;}
.x8{left:158.789987px;}
.x14{left:177.510000px;}
.x6{left:203.805000px;}
.x12{left:265.034987px;}
.x2b{left:276.915000px;}
.x22{left:331.635000px;}
.x16{left:348.015000px;}
.xe{left:378.794987px;}
.x7{left:434.054987px;}
.x9{left:446.504987px;}
.x3{left:467.205000px;}
.x5{left:541.905000px;}
.xb{left:551.805000px;}
.xc{left:568.545000px;}
.x21{left:593.024987px;}
.x23{left:606.525000px;}
.x2e{left:616.785000px;}
.x19{left:625.650000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-1.760000pt;}
.ls6{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.240533pt;}
.ls9{letter-spacing:-0.199467pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:7.680000pt;}
.lse{letter-spacing:193.735804pt;}
.lsf{letter-spacing:194.304247pt;}
.wsf{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.119467pt;}
.wsa{word-spacing:-14.176000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.016000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws2{word-spacing:-9.120000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.320000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:67.047450pt;}
.wsb{word-spacing:81.148788pt;}
._20{margin-left:-423.116577pt;}
._1a{margin-left:-3.181120pt;}
._3{margin-left:-2.130880pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.050667pt;}
._4{width:2.017707pt;}
._f{width:2.977920pt;}
._13{width:4.507520pt;}
._8{width:5.418240pt;}
._7{width:6.321280pt;}
._6{width:7.860480pt;}
._5{width:9.136640pt;}
._d{width:10.119787pt;}
._c{width:11.128213pt;}
._e{width:12.208427pt;}
._11{width:13.433387pt;}
._10{width:14.336000pt;}
._12{width:17.088000pt;}
._17{width:18.032000pt;}
._15{width:20.224000pt;}
._16{width:21.834667pt;}
._14{width:22.784000pt;}
._18{width:25.280000pt;}
._19{width:26.624000pt;}
._21{width:31.722667pt;}
._2{width:51.425067pt;}
._1e{width:82.556618pt;}
._1f{width:105.887438pt;}
._1d{width:113.276199pt;}
._1c{width:126.921324pt;}
._a{width:162.848213pt;}
._9{width:165.769813pt;}
._b{width:749.418667pt;}
._1b{width:752.138667pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:36.098215pt;}
.fs4{font-size:40.320000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:61.440000pt;}
.fs8{font-size:62.544263pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:2.880000pt;}
.y93{bottom:4.320000pt;}
.y83{bottom:5.120000pt;}
.y87{bottom:5.280000pt;}
.y8a{bottom:5.320000pt;}
.y67{bottom:5.342785pt;}
.y7d{bottom:5.440000pt;}
.y7a{bottom:5.600000pt;}
.y66{bottom:9.342149pt;}
.y68{bottom:9.342177pt;}
.y4{bottom:12.026667pt;}
.y29{bottom:18.240000pt;}
.y5{bottom:18.746667pt;}
.y3{bottom:25.786667pt;}
.y28{bottom:33.600000pt;}
.y2{bottom:39.546667pt;}
.y27{bottom:48.960000pt;}
.y8{bottom:51.040000pt;}
.y2d{bottom:51.200000pt;}
.y26{bottom:64.320000pt;}
.y7{bottom:68.960000pt;}
.y25{bottom:79.680000pt;}
.y24{bottom:94.880000pt;}
.yad{bottom:104.800000pt;}
.y23{bottom:110.266667pt;}
.ycf{bottom:112.320000pt;}
.yac{bottom:123.232000pt;}
.y5d{bottom:124.352000pt;}
.y22{bottom:125.626667pt;}
.yce{bottom:130.752000pt;}
.y21{bottom:140.986667pt;}
.yab{bottom:141.626667pt;}
.y5c{bottom:150.746667pt;}
.y20{bottom:156.346667pt;}
.ycd{bottom:157.146667pt;}
.yaa{bottom:160.026667pt;}
.y5b{bottom:169.146667pt;}
.y1f{bottom:171.706667pt;}
.ycc{bottom:175.546667pt;}
.ya9{bottom:178.426667pt;}
.y1e{bottom:186.906667pt;}
.y5a{bottom:187.546667pt;}
.y80{bottom:194.426667pt;}
.ya8{bottom:196.826667pt;}
.ycb{bottom:201.946667pt;}
.y1d{bottom:202.266667pt;}
.y7f{bottom:209.946667pt;}
.y59{bottom:213.946667pt;}
.ya7{bottom:215.226667pt;}
.y1c{bottom:217.626667pt;}
.yca{bottom:220.346667pt;}
.y7e{bottom:225.946667pt;}
.y58{bottom:232.346667pt;}
.y1b{bottom:232.986667pt;}
.ya6{bottom:233.626667pt;}
.yc9{bottom:246.746667pt;}
.y7c{bottom:247.226667pt;}
.y1a{bottom:248.346667pt;}
.y57{bottom:250.746667pt;}
.ya5{bottom:252.026667pt;}
.y19{bottom:263.546667pt;}
.yc8{bottom:265.146667pt;}
.y7b{bottom:268.346667pt;}
.y56{bottom:269.146667pt;}
.ya4{bottom:270.426667pt;}
.y18{bottom:278.906667pt;}
.yc7{bottom:283.546667pt;}
.y55{bottom:287.546667pt;}
.ya3{bottom:288.826667pt;}
.y79{bottom:289.626667pt;}
.y17{bottom:294.266667pt;}
.y54{bottom:305.946667pt;}
.ya2{bottom:307.226667pt;}
.y16{bottom:309.626667pt;}
.yc6{bottom:309.946667pt;}
.y78{bottom:322.106667pt;}
.y53{bottom:324.346667pt;}
.y15{bottom:324.986667pt;}
.ya1{bottom:325.626667pt;}
.yc5{bottom:328.346667pt;}
.y77{bottom:339.066667pt;}
.y52{bottom:342.746667pt;}
.ya0{bottom:344.026667pt;}
.yc4{bottom:346.786667pt;}
.y51{bottom:361.186667pt;}
.y9f{bottom:362.466667pt;}
.y76{bottom:364.226667pt;}
.yc3{bottom:373.186667pt;}
.y50{bottom:379.586667pt;}
.y75{bottom:382.626667pt;}
.y2b{bottom:391.106667pt;}
.y9e{bottom:391.586667pt;}
.y4f{bottom:397.986667pt;}
.y9d{bottom:407.106667pt;}
.y74{bottom:409.026667pt;}
.yc2{bottom:409.986667pt;}
.y4e{bottom:416.386667pt;}
.y9c{bottom:427.746667pt;}
.y73{bottom:434.626667pt;}
.y4d{bottom:434.786667pt;}
.yc1{bottom:436.386667pt;}
.ye0{bottom:444.386667pt;}
.y9b{bottom:448.386667pt;}
.y4c{bottom:453.186667pt;}
.yc0{bottom:454.786667pt;}
.y14{bottom:461.506667pt;}
.ydf{bottom:462.786667pt;}
.y9a{bottom:469.186667pt;}
.y4b{bottom:471.586667pt;}
.ybf{bottom:473.186667pt;}
.yde{bottom:481.186667pt;}
.y99{bottom:489.826667pt;}
.y4a{bottom:489.986667pt;}
.ybe{bottom:491.586667pt;}
.ydd{bottom:507.586667pt;}
.y49{bottom:508.386667pt;}
.y98{bottom:510.466667pt;}
.ybd{bottom:517.986667pt;}
.ydc{bottom:525.986667pt;}
.y48{bottom:526.786667pt;}
.y97{bottom:531.106667pt;}
.ybc{bottom:536.386667pt;}
.ydb{bottom:544.386667pt;}
.y47{bottom:545.186667pt;}
.y96{bottom:551.746667pt;}
.ybb{bottom:554.786667pt;}
.y46{bottom:563.586667pt;}
.yda{bottom:570.813333pt;}
.y95{bottom:572.413333pt;}
.yba{bottom:581.213333pt;}
.y45{bottom:582.013333pt;}
.yd9{bottom:589.213333pt;}
.y94{bottom:593.213333pt;}
.yb9{bottom:599.613333pt;}
.y44{bottom:600.413333pt;}
.yd8{bottom:607.613333pt;}
.y92{bottom:613.853333pt;}
.y43{bottom:618.813333pt;}
.y72{bottom:624.893333pt;}
.yb8{bottom:626.013333pt;}
.yd7{bottom:634.013333pt;}
.y42{bottom:637.213333pt;}
.y71{bottom:643.293333pt;}
.yb7{bottom:644.413333pt;}
.y91{bottom:645.373333pt;}
.yd6{bottom:652.413333pt;}
.y41{bottom:655.613333pt;}
.y70{bottom:669.693333pt;}
.y90{bottom:670.813333pt;}
.y40{bottom:674.013333pt;}
.y8f{bottom:686.333333pt;}
.yb6{bottom:689.213333pt;}
.y3f{bottom:692.413333pt;}
.y6f{bottom:696.093333pt;}
.yd5{bottom:697.213333pt;}
.y8e{bottom:706.973333pt;}
.yb5{bottom:707.613333pt;}
.y3e{bottom:710.813333pt;}
.yd4{bottom:715.613333pt;}
.y6e{bottom:719.613333pt;}
.y8d{bottom:727.773333pt;}
.y3d{bottom:729.213333pt;}
.yb4{bottom:734.013333pt;}
.y6d{bottom:735.613333pt;}
.y3c{bottom:747.613333pt;}
.y8c{bottom:748.413333pt;}
.y6c{bottom:751.613333pt;}
.yb3{bottom:752.413333pt;}
.yd3{bottom:760.413333pt;}
.y3b{bottom:766.013333pt;}
.y6b{bottom:767.613333pt;}
.y8b{bottom:769.053333pt;}
.yb2{bottom:778.813333pt;}
.y3a{bottom:784.413333pt;}
.y89{bottom:789.693333pt;}
.yb1{bottom:797.253333pt;}
.y39{bottom:802.853333pt;}
.y13{bottom:809.733333pt;}
.y6a{bottom:810.053333pt;}
.y88{bottom:810.373333pt;}
.yb0{bottom:815.653333pt;}
.y38{bottom:821.253333pt;}
.yd2{bottom:823.653333pt;}
.y12{bottom:829.733333pt;}
.y86{bottom:831.013333pt;}
.y65{bottom:831.946594pt;}
.y37{bottom:839.653333pt;}
.y69{bottom:841.253333pt;}
.yaf{bottom:842.053333pt;}
.y11{bottom:845.093333pt;}
.y85{bottom:851.813333pt;}
.y36{bottom:858.053333pt;}
.y10{bottom:860.453333pt;}
.y64{bottom:868.453333pt;}
.y84{bottom:872.453333pt;}
.yf{bottom:875.813333pt;}
.y35{bottom:876.453333pt;}
.y63{bottom:886.853333pt;}
.ye{bottom:887.173333pt;}
.y82{bottom:893.093333pt;}
.y34{bottom:894.853333pt;}
.y62{bottom:905.253333pt;}
.yd{bottom:905.573333pt;}
.y33{bottom:913.253333pt;}
.y61{bottom:923.653333pt;}
.yc{bottom:923.813333pt;}
.y81{bottom:924.773333pt;}
.y32{bottom:931.653333pt;}
.yb{bottom:941.573333pt;}
.y60{bottom:942.053333pt;}
.y31{bottom:950.053333pt;}
.yd1{bottom:958.053333pt;}
.ya{bottom:959.973333pt;}
.y5f{bottom:960.453333pt;}
.y30{bottom:968.453333pt;}
.yd0{bottom:976.453333pt;}
.y9{bottom:978.373333pt;}
.y2f{bottom:986.853333pt;}
.yae{bottom:994.853333pt;}
.y6{bottom:997.253333pt;}
.y2e{bottom:1013.093333pt;}
.y5e{bottom:1013.253333pt;}
.y1{bottom:1015.173333pt;}
.y2c{bottom:1061.760000pt;}
.h14{height:15.360000pt;}
.h18{height:20.000000pt;}
.h19{height:20.032000pt;}
.h17{height:20.480000pt;}
.h16{height:20.640000pt;}
.he{height:24.932770pt;}
.h13{height:30.752000pt;}
.h9{height:33.918750pt;}
.h10{height:35.410798pt;}
.h1a{height:46.281250pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.ha{height:52.134375pt;}
.hc{height:53.535000pt;}
.h15{height:57.787500pt;}
.h5{height:58.563750pt;}
.h12{height:59.340000pt;}
.h2{height:60.192000pt;}
.h11{height:61.353235pt;}
.h7{height:61.920000pt;}
.h8{height:62.812500pt;}
.hf{height:64.285647pt;}
.h6{height:64.500000pt;}
.hd{height:75.465000pt;}
.hb{height:337.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:14.880000pt;}
.wa{width:61.920000pt;}
.w3{width:66.400000pt;}
.w9{width:141.124616pt;}
.wd{width:142.560000pt;}
.w11{width:150.266667pt;}
.w13{width:150.400000pt;}
.w12{width:150.426667pt;}
.wb{width:150.746667pt;}
.w10{width:159.546667pt;}
.w8{width:175.226667pt;}
.w4{width:198.746667pt;}
.we{width:198.906667pt;}
.wf{width:243.706667pt;}
.wc{width:245.986667pt;}
.w2{width:301.826667pt;}
.w6{width:377.026667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:3.665661pt;}
.x2{left:7.200000pt;}
.x13{left:12.320000pt;}
.x10{left:16.850107pt;}
.x1a{left:20.800000pt;}
.x15{left:21.760000pt;}
.x1e{left:24.320000pt;}
.x1b{left:27.680000pt;}
.x17{left:31.520000pt;}
.x24{left:42.600000pt;}
.x30{left:47.680000pt;}
.x2f{left:48.954667pt;}
.x2d{left:52.160000pt;}
.x2a{left:53.434667pt;}
.x2c{left:55.520000pt;}
.x4{left:59.200000pt;}
.x31{left:61.440000pt;}
.x20{left:63.040000pt;}
.x27{left:64.680000pt;}
.x1f{left:67.040000pt;}
.x29{left:68.040000pt;}
.x28{left:68.954667pt;}
.x25{left:70.554667pt;}
.x1c{left:72.000000pt;}
.xd{left:94.431988pt;}
.x18{left:96.826667pt;}
.x26{left:108.186667pt;}
.x1d{left:111.226667pt;}
.x1{left:113.472000pt;}
.xf{left:132.191988pt;}
.xa{left:133.311988pt;}
.x8{left:141.146655pt;}
.x14{left:157.786667pt;}
.x6{left:181.160000pt;}
.x12{left:235.586655pt;}
.x2b{left:246.146667pt;}
.x22{left:294.786667pt;}
.x16{left:309.346667pt;}
.xe{left:336.706655pt;}
.x7{left:385.826655pt;}
.x9{left:396.893322pt;}
.x3{left:415.293333pt;}
.x5{left:481.693333pt;}
.xb{left:490.493333pt;}
.xc{left:505.373333pt;}
.x21{left:527.133322pt;}
.x23{left:539.133333pt;}
.x2e{left:548.253333pt;}
.x19{left:556.133333pt;}
}




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