
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_be2154f3a1647b1c83e3e134.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_39dc0a7be014917816a3f170.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_4079da98b3427a17023effbd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8066fd66598ce7cd75e3c490.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5aff2e09ce33b5f5751a276e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_728d98c32c6d73e86d48e5ef.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_01972b24c217507ee05e6161.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls15{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.162800px;}
.wse{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-3.787800px;}
._b{margin-left:-2.705400px;}
._0{margin-left:-1.050000px;}
._2{width:1.061760px;}
._9{width:2.886359px;}
._7{width:3.995040px;}
._d{width:5.050200px;}
._e{width:6.225359px;}
._3{width:7.334400px;}
._4{width:9.096605px;}
._8{width:10.682995px;}
._a{width:12.225960px;}
._11{width:14.757360px;}
._12{width:15.973573px;}
._6{width:17.453398px;}
._5{width:18.577200px;}
._16{width:20.019960px;}
._17{width:21.102120px;}
._14{width:22.364640px;}
._13{width:23.506920px;}
._15{width:24.737280px;}
._f{width:26.092200px;}
._10{width:27.374639px;}
._1{width:28.872120px;}
._21{width:42.084000px;}
._1a{width:45.210240px;}
._22{width:57.204000px;}
._1f{width:58.797360px;}
._20{width:59.999760px;}
._18{width:63.486720px;}
._1c{width:73.647000px;}
._23{width:94.598640px;}
._24{width:96.222960px;}
._1e{width:104.789160px;}
._25{width:182.644560px;}
._19{width:199.357920px;}
._1b{width:206.091360px;}
._1d{width:301.742280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:7.830000px;}
.yf2{bottom:7.920000px;}
.yf1{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y95{bottom:117.300000px;}
.y7a{bottom:119.010000px;}
.y59{bottom:121.530000px;}
.y11a{bottom:129.360000px;}
.y94{bottom:134.940000px;}
.y79{bottom:136.560000px;}
.y58{bottom:139.170000px;}
.ybc{bottom:139.980000px;}
.yc3{bottom:144.300000px;}
.y119{bottom:147.000000px;}
.y93{bottom:152.490000px;}
.y78{bottom:154.200000px;}
.y57{bottom:156.720000px;}
.ybb{bottom:157.530000px;}
.y25{bottom:166.350000px;}
.y92{bottom:170.130000px;}
.y77{bottom:171.750000px;}
.y118{bottom:173.550000px;}
.y56{bottom:174.270000px;}
.yba{bottom:175.170000px;}
.yc2{bottom:176.520000px;}
.y24{bottom:183.990000px;}
.y91{bottom:187.680000px;}
.y76{bottom:189.300000px;}
.y117{bottom:191.100000px;}
.y55{bottom:191.910000px;}
.yb9{bottom:192.720000px;}
.y23{bottom:201.540000px;}
.y90{bottom:205.230000px;}
.y75{bottom:206.940000px;}
.y116{bottom:208.740000px;}
.y54{bottom:209.460000px;}
.yb8{bottom:210.270000px;}
.y22{bottom:219.090000px;}
.y8f{bottom:222.870000px;}
.y74{bottom:224.490000px;}
.y53{bottom:227.100000px;}
.yb7{bottom:227.910000px;}
.y115{bottom:235.290000px;}
.y21{bottom:236.730000px;}
.y8e{bottom:240.420000px;}
.y73{bottom:242.130000px;}
.yb6{bottom:245.460000px;}
.yef{bottom:245.910000px;}
.y114{bottom:252.930000px;}
.y52{bottom:253.650000px;}
.y20{bottom:254.280000px;}
.yb5{bottom:263.100000px;}
.yee{bottom:263.460000px;}
.y8d{bottom:267.060000px;}
.y72{bottom:268.680000px;}
.y113{bottom:270.480000px;}
.y1f{bottom:271.920000px;}
.yb4{bottom:280.650000px;}
.yed{bottom:281.100000px;}
.y51{bottom:289.200000px;}
.y1e{bottom:289.470000px;}
.y112{bottom:297.030000px;}
.yb3{bottom:298.200000px;}
.yec{bottom:298.650000px;}
.y8c{bottom:302.610000px;}
.y71{bottom:304.230000px;}
.y50{bottom:306.840000px;}
.y111{bottom:314.670000px;}
.yb2{bottom:315.840000px;}
.y1d{bottom:316.020000px;}
.yeb{bottom:316.200000px;}
.y8b{bottom:320.160000px;}
.y70{bottom:321.870000px;}
.y4f{bottom:324.390000px;}
.y110{bottom:332.220000px;}
.yea{bottom:333.840000px;}
.y8a{bottom:337.800000px;}
.y6f{bottom:339.420000px;}
.y4e{bottom:341.940000px;}
.yb1{bottom:342.390000px;}
.ye9{bottom:351.390000px;}
.y1c{bottom:351.660000px;}
.y89{bottom:355.350000px;}
.y6e{bottom:357.060000px;}
.y10f{bottom:358.860000px;}
.y4d{bottom:359.580000px;}
.ye8{bottom:368.940000px;}
.y1b{bottom:369.210000px;}
.y6d{bottom:374.610000px;}
.y10e{bottom:376.410000px;}
.y4c{bottom:377.130000px;}
.yb0{bottom:377.940000px;}
.y88{bottom:382.260000px;}
.ye7{bottom:386.580000px;}
.y1a{bottom:386.850000px;}
.y6c{bottom:392.160000px;}
.y4b{bottom:394.770000px;}
.yaf{bottom:395.580000px;}
.y10d{bottom:402.960000px;}
.ye6{bottom:404.130000px;}
.y19{bottom:404.400000px;}
.y6b{bottom:409.800000px;}
.y4a{bottom:412.320000px;}
.yae{bottom:413.130000px;}
.y10c{bottom:420.600000px;}
.ye5{bottom:421.770000px;}
.y6a{bottom:427.350000px;}
.y49{bottom:429.870000px;}
.y87{bottom:430.500000px;}
.yad{bottom:430.770000px;}
.y18{bottom:430.950000px;}
.y10b{bottom:438.150000px;}
.ye4{bottom:439.320000px;}
.y69{bottom:444.990000px;}
.y48{bottom:456.510000px;}
.ye3{bottom:456.870000px;}
.yac{bottom:457.680000px;}
.y68{bottom:462.540000px;}
.y86{bottom:462.720000px;}
.y10a{bottom:464.700000px;}
.y17{bottom:466.860000px;}
.y67{bottom:480.120000px;}
.y109{bottom:482.370000px;}
.ye2{bottom:483.540000px;}
.y47{bottom:492.090000px;}
.y66{bottom:497.760000px;}
.yab{bottom:505.950000px;}
.y108{bottom:508.920000px;}
.y46{bottom:509.730000px;}
.y16{bottom:515.220000px;}
.ye1{bottom:519.090000px;}
.yaa{bottom:523.500000px;}
.y65{bottom:524.310000px;}
.y107{bottom:526.560000px;}
.y45{bottom:527.280000px;}
.y15{bottom:533.130000px;}
.ye0{bottom:536.730000px;}
.ya9{bottom:541.140000px;}
.y44{bottom:544.830000px;}
.y106{bottom:553.110000px;}
.ydf{bottom:554.280000px;}
.ya8{bottom:558.690000px;}
.y64{bottom:559.950000px;}
.y43{bottom:562.470000px;}
.y14{bottom:570.120000px;}
.y105{bottom:570.660000px;}
.yde{bottom:571.830000px;}
.ya7{bottom:576.330000px;}
.y63{bottom:577.500000px;}
.y42{bottom:580.020000px;}
.y13{bottom:587.670000px;}
.ydd{bottom:589.470000px;}
.ya6{bottom:593.880000px;}
.y62{bottom:595.050000px;}
.y104{bottom:597.570000px;}
.y41{bottom:597.660000px;}
.y12{bottom:605.310000px;}
.ydc{bottom:607.020000px;}
.ya5{bottom:611.430000px;}
.y61{bottom:612.690000px;}
.y40{bottom:615.210000px;}
.y11{bottom:622.860000px;}
.ydb{bottom:624.660000px;}
.ya4{bottom:629.070000px;}
.y60{bottom:630.240000px;}
.y3f{bottom:632.760000px;}
.y10{bottom:640.500000px;}
.yda{bottom:642.210000px;}
.y103{bottom:645.900000px;}
.ya3{bottom:646.620000px;}
.y5f{bottom:657.150000px;}
.yf{bottom:658.050000px;}
.y3e{bottom:659.400000px;}
.yd9{bottom:659.760000px;}
.y102{bottom:663.450000px;}
.ya2{bottom:664.260000px;}
.ye{bottom:675.600000px;}
.yd8{bottom:677.400000px;}
.y101{bottom:681.090000px;}
.ya1{bottom:681.810000px;}
.yd{bottom:693.240000px;}
.y3d{bottom:694.950000px;}
.y100{bottom:698.640000px;}
.ya0{bottom:699.360000px;}
.y5e{bottom:705.390000px;}
.yc{bottom:710.790000px;}
.y3c{bottom:712.590000px;}
.yff{bottom:716.190000px;}
.y9f{bottom:717.000000px;}
.yb{bottom:728.430000px;}
.y3b{bottom:730.140000px;}
.yfe{bottom:733.830000px;}
.y9e{bottom:734.550000px;}
.y5d{bottom:737.610000px;}
.yd7{bottom:739.140000px;}
.y3a{bottom:747.690000px;}
.yfd{bottom:751.380000px;}
.yc1{bottom:752.190000px;}
.ya{bottom:755.340000px;}
.y9d{bottom:761.190000px;}
.yfc{bottom:769.020000px;}
.yc0{bottom:769.740000px;}
.y39{bottom:774.600000px;}
.yd6{bottom:774.690000px;}
.yfb{bottom:786.570000px;}
.ybf{bottom:787.290000px;}
.yd5{bottom:792.330000px;}
.y9c{bottom:796.740000px;}
.y9{bottom:803.580000px;}
.yfa{bottom:804.120000px;}
.ybe{bottom:804.930000px;}
.yd4{bottom:809.880000px;}
.y9b{bottom:814.290000px;}
.yf9{bottom:821.760000px;}
.y38{bottom:822.930000px;}
.yd3{bottom:827.520000px;}
.ybd{bottom:831.480000px;}
.y9a{bottom:831.930000px;}
.y8{bottom:839.130000px;}
.y37{bottom:840.480000px;}
.yd2{bottom:845.070000px;}
.yf8{bottom:848.670000px;}
.y99{bottom:849.480000px;}
.y36{bottom:858.030000px;}
.yd1{bottom:862.620000px;}
.y98{bottom:867.030000px;}
.y7{bottom:874.950000px;}
.y35{bottom:875.670000px;}
.yd0{bottom:880.260000px;}
.y85{bottom:884.670000px;}
.y34{bottom:893.220000px;}
.yf6{bottom:894.300000px;}
.ycf{bottom:897.810000px;}
.y84{bottom:902.220000px;}
.y33{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yce{bottom:915.450000px;}
.y83{bottom:919.860000px;}
.y32{bottom:928.410000px;}
.ycd{bottom:933.000000px;}
.y82{bottom:937.410000px;}
.yf5{bottom:939.210000px;}
.y31{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.ycc{bottom:950.550000px;}
.y81{bottom:954.960000px;}
.ycb{bottom:968.190000px;}
.y30{bottom:972.600000px;}
.yf4{bottom:984.120000px;}
.y4{bottom:985.380000px;}
.yca{bottom:985.740000px;}
.y80{bottom:990.150000px;}
.y11d{bottom:999.150000px;}
.y7f{bottom:1007.790000px;}
.y2f{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.yc9{bottom:1012.320000px;}
.y11c{bottom:1016.820000px;}
.y7e{bottom:1025.370000px;}
.y2e{bottom:1025.820000px;}
.yf3{bottom:1029.060000px;}
.y97{bottom:1034.370000px;}
.y7d{bottom:1042.920000px;}
.y2d{bottom:1043.370000px;}
.yc8{bottom:1047.960000px;}
.y11b{bottom:1051.920000px;}
.y7c{bottom:1060.560000px;}
.y2c{bottom:1060.920000px;}
.yc7{bottom:1065.510000px;}
.y96{bottom:1069.920000px;}
.yf0{bottom:1073.970000px;}
.y2b{bottom:1078.560000px;}
.yc6{bottom:1083.150000px;}
.y7b{bottom:1087.110000px;}
.y5c{bottom:1087.560000px;}
.y2a{bottom:1096.110000px;}
.yc5{bottom:1100.700000px;}
.y5b{bottom:1105.110000px;}
.y29{bottom:1113.750000px;}
.y5a{bottom:1122.750000px;}
.yc4{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.hb{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:59.973223px;}
.hc{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:128.550000px;}
.w5{width:173.640000px;}
.w4{width:203.670000px;}
.w6{width:247.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:111.239987px;}
.x9{left:164.999987px;}
.xb{left:198.030000px;}
.x2{left:202.799987px;}
.x5{left:217.199987px;}
.x7{left:247.529987px;}
.xc{left:402.420000px;}
.xd{left:576.780000px;}
.x8{left:727.889987px;}
.x4{left:730.139987px;}
.x6{left:762.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls15{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.wsd{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.700267pt;}
.wse{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.366934pt;}
._b{margin-left:-2.404800pt;}
._0{margin-left:-0.933333pt;}
._2{width:0.943787pt;}
._9{width:2.565653pt;}
._7{width:3.551147pt;}
._d{width:4.489067pt;}
._e{width:5.533652pt;}
._3{width:6.519466pt;}
._4{width:8.085871pt;}
._8{width:9.495996pt;}
._a{width:10.867520pt;}
._11{width:13.117653pt;}
._12{width:14.198732pt;}
._6{width:15.514132pt;}
._5{width:16.513067pt;}
._16{width:17.795520pt;}
._17{width:18.757440pt;}
._14{width:19.879680pt;}
._13{width:20.895040pt;}
._15{width:21.988693pt;}
._f{width:23.193067pt;}
._10{width:24.333013pt;}
._1{width:25.664107pt;}
._21{width:37.408000pt;}
._1a{width:40.186880pt;}
._22{width:50.848000pt;}
._1f{width:52.264320pt;}
._20{width:53.333120pt;}
._18{width:56.432640pt;}
._1c{width:65.464000pt;}
._23{width:84.087680pt;}
._24{width:85.531520pt;}
._1e{width:93.145920pt;}
._25{width:162.350720pt;}
._19{width:177.207040pt;}
._1b{width:183.192320pt;}
._1d{width:268.215360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:6.960000pt;}
.yf2{bottom:7.040000pt;}
.yf1{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y95{bottom:104.266667pt;}
.y7a{bottom:105.786667pt;}
.y59{bottom:108.026667pt;}
.y11a{bottom:114.986667pt;}
.y94{bottom:119.946667pt;}
.y79{bottom:121.386667pt;}
.y58{bottom:123.706667pt;}
.ybc{bottom:124.426667pt;}
.yc3{bottom:128.266667pt;}
.y119{bottom:130.666667pt;}
.y93{bottom:135.546667pt;}
.y78{bottom:137.066667pt;}
.y57{bottom:139.306667pt;}
.ybb{bottom:140.026667pt;}
.y25{bottom:147.866667pt;}
.y92{bottom:151.226667pt;}
.y77{bottom:152.666667pt;}
.y118{bottom:154.266667pt;}
.y56{bottom:154.906667pt;}
.yba{bottom:155.706667pt;}
.yc2{bottom:156.906667pt;}
.y24{bottom:163.546667pt;}
.y91{bottom:166.826667pt;}
.y76{bottom:168.266667pt;}
.y117{bottom:169.866667pt;}
.y55{bottom:170.586667pt;}
.yb9{bottom:171.306667pt;}
.y23{bottom:179.146667pt;}
.y90{bottom:182.426667pt;}
.y75{bottom:183.946667pt;}
.y116{bottom:185.546667pt;}
.y54{bottom:186.186667pt;}
.yb8{bottom:186.906667pt;}
.y22{bottom:194.746667pt;}
.y8f{bottom:198.106667pt;}
.y74{bottom:199.546667pt;}
.y53{bottom:201.866667pt;}
.yb7{bottom:202.586667pt;}
.y115{bottom:209.146667pt;}
.y21{bottom:210.426667pt;}
.y8e{bottom:213.706667pt;}
.y73{bottom:215.226667pt;}
.yb6{bottom:218.186667pt;}
.yef{bottom:218.586667pt;}
.y114{bottom:224.826667pt;}
.y52{bottom:225.466667pt;}
.y20{bottom:226.026667pt;}
.yb5{bottom:233.866667pt;}
.yee{bottom:234.186667pt;}
.y8d{bottom:237.386667pt;}
.y72{bottom:238.826667pt;}
.y113{bottom:240.426667pt;}
.y1f{bottom:241.706667pt;}
.yb4{bottom:249.466667pt;}
.yed{bottom:249.866667pt;}
.y51{bottom:257.066667pt;}
.y1e{bottom:257.306667pt;}
.y112{bottom:264.026667pt;}
.yb3{bottom:265.066667pt;}
.yec{bottom:265.466667pt;}
.y8c{bottom:268.986667pt;}
.y71{bottom:270.426667pt;}
.y50{bottom:272.746667pt;}
.y111{bottom:279.706667pt;}
.yb2{bottom:280.746667pt;}
.y1d{bottom:280.906667pt;}
.yeb{bottom:281.066667pt;}
.y8b{bottom:284.586667pt;}
.y70{bottom:286.106667pt;}
.y4f{bottom:288.346667pt;}
.y110{bottom:295.306667pt;}
.yea{bottom:296.746667pt;}
.y8a{bottom:300.266667pt;}
.y6f{bottom:301.706667pt;}
.y4e{bottom:303.946667pt;}
.yb1{bottom:304.346667pt;}
.ye9{bottom:312.346667pt;}
.y1c{bottom:312.586667pt;}
.y89{bottom:315.866667pt;}
.y6e{bottom:317.386667pt;}
.y10f{bottom:318.986667pt;}
.y4d{bottom:319.626667pt;}
.ye8{bottom:327.946667pt;}
.y1b{bottom:328.186667pt;}
.y6d{bottom:332.986667pt;}
.y10e{bottom:334.586667pt;}
.y4c{bottom:335.226667pt;}
.yb0{bottom:335.946667pt;}
.y88{bottom:339.786667pt;}
.ye7{bottom:343.626667pt;}
.y1a{bottom:343.866667pt;}
.y6c{bottom:348.586667pt;}
.y4b{bottom:350.906667pt;}
.yaf{bottom:351.626667pt;}
.y10d{bottom:358.186667pt;}
.ye6{bottom:359.226667pt;}
.y19{bottom:359.466667pt;}
.y6b{bottom:364.266667pt;}
.y4a{bottom:366.506667pt;}
.yae{bottom:367.226667pt;}
.y10c{bottom:373.866667pt;}
.ye5{bottom:374.906667pt;}
.y6a{bottom:379.866667pt;}
.y49{bottom:382.106667pt;}
.y87{bottom:382.666667pt;}
.yad{bottom:382.906667pt;}
.y18{bottom:383.066667pt;}
.y10b{bottom:389.466667pt;}
.ye4{bottom:390.506667pt;}
.y69{bottom:395.546667pt;}
.y48{bottom:405.786667pt;}
.ye3{bottom:406.106667pt;}
.yac{bottom:406.826667pt;}
.y68{bottom:411.146667pt;}
.y86{bottom:411.306667pt;}
.y10a{bottom:413.066667pt;}
.y17{bottom:414.986667pt;}
.y67{bottom:426.773333pt;}
.y109{bottom:428.773333pt;}
.ye2{bottom:429.813333pt;}
.y47{bottom:437.413333pt;}
.y66{bottom:442.453333pt;}
.yab{bottom:449.733333pt;}
.y108{bottom:452.373333pt;}
.y46{bottom:453.093333pt;}
.y16{bottom:457.973333pt;}
.ye1{bottom:461.413333pt;}
.yaa{bottom:465.333333pt;}
.y65{bottom:466.053333pt;}
.y107{bottom:468.053333pt;}
.y45{bottom:468.693333pt;}
.y15{bottom:473.893333pt;}
.ye0{bottom:477.093333pt;}
.ya9{bottom:481.013333pt;}
.y44{bottom:484.293333pt;}
.y106{bottom:491.653333pt;}
.ydf{bottom:492.693333pt;}
.ya8{bottom:496.613333pt;}
.y64{bottom:497.733333pt;}
.y43{bottom:499.973333pt;}
.y14{bottom:506.773333pt;}
.y105{bottom:507.253333pt;}
.yde{bottom:508.293333pt;}
.ya7{bottom:512.293333pt;}
.y63{bottom:513.333333pt;}
.y42{bottom:515.573333pt;}
.y13{bottom:522.373333pt;}
.ydd{bottom:523.973333pt;}
.ya6{bottom:527.893333pt;}
.y62{bottom:528.933333pt;}
.y104{bottom:531.173333pt;}
.y41{bottom:531.253333pt;}
.y12{bottom:538.053333pt;}
.ydc{bottom:539.573333pt;}
.ya5{bottom:543.493333pt;}
.y61{bottom:544.613333pt;}
.y40{bottom:546.853333pt;}
.y11{bottom:553.653333pt;}
.ydb{bottom:555.253333pt;}
.ya4{bottom:559.173333pt;}
.y60{bottom:560.213333pt;}
.y3f{bottom:562.453333pt;}
.y10{bottom:569.333333pt;}
.yda{bottom:570.853333pt;}
.y103{bottom:574.133333pt;}
.ya3{bottom:574.773333pt;}
.y5f{bottom:584.133333pt;}
.yf{bottom:584.933333pt;}
.y3e{bottom:586.133333pt;}
.yd9{bottom:586.453333pt;}
.y102{bottom:589.733333pt;}
.ya2{bottom:590.453333pt;}
.ye{bottom:600.533333pt;}
.yd8{bottom:602.133333pt;}
.y101{bottom:605.413333pt;}
.ya1{bottom:606.053333pt;}
.yd{bottom:616.213333pt;}
.y3d{bottom:617.733333pt;}
.y100{bottom:621.013333pt;}
.ya0{bottom:621.653333pt;}
.y5e{bottom:627.013333pt;}
.yc{bottom:631.813333pt;}
.y3c{bottom:633.413333pt;}
.yff{bottom:636.613333pt;}
.y9f{bottom:637.333333pt;}
.yb{bottom:647.493333pt;}
.y3b{bottom:649.013333pt;}
.yfe{bottom:652.293333pt;}
.y9e{bottom:652.933333pt;}
.y5d{bottom:655.653333pt;}
.yd7{bottom:657.013333pt;}
.y3a{bottom:664.613333pt;}
.yfd{bottom:667.893333pt;}
.yc1{bottom:668.613333pt;}
.ya{bottom:671.413333pt;}
.y9d{bottom:676.613333pt;}
.yfc{bottom:683.573333pt;}
.yc0{bottom:684.213333pt;}
.y39{bottom:688.533333pt;}
.yd6{bottom:688.613333pt;}
.yfb{bottom:699.173333pt;}
.ybf{bottom:699.813333pt;}
.yd5{bottom:704.293333pt;}
.y9c{bottom:708.213333pt;}
.y9{bottom:714.293333pt;}
.yfa{bottom:714.773333pt;}
.ybe{bottom:715.493333pt;}
.yd4{bottom:719.893333pt;}
.y9b{bottom:723.813333pt;}
.yf9{bottom:730.453333pt;}
.y38{bottom:731.493333pt;}
.yd3{bottom:735.573333pt;}
.ybd{bottom:739.093333pt;}
.y9a{bottom:739.493333pt;}
.y8{bottom:745.893333pt;}
.y37{bottom:747.093333pt;}
.yd2{bottom:751.173333pt;}
.yf8{bottom:754.373333pt;}
.y99{bottom:755.093333pt;}
.y36{bottom:762.693333pt;}
.yd1{bottom:766.773333pt;}
.y98{bottom:770.693333pt;}
.y7{bottom:777.733333pt;}
.y35{bottom:778.373333pt;}
.yd0{bottom:782.453333pt;}
.y85{bottom:786.373333pt;}
.y34{bottom:793.973333pt;}
.yf6{bottom:794.933333pt;}
.ycf{bottom:798.053333pt;}
.y84{bottom:801.973333pt;}
.y33{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yce{bottom:813.733333pt;}
.y83{bottom:817.653333pt;}
.y32{bottom:825.253333pt;}
.ycd{bottom:829.333333pt;}
.y82{bottom:833.253333pt;}
.yf5{bottom:834.853333pt;}
.y31{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.ycc{bottom:844.933333pt;}
.y81{bottom:848.853333pt;}
.ycb{bottom:860.613333pt;}
.y30{bottom:864.533333pt;}
.yf4{bottom:874.773333pt;}
.y4{bottom:875.893333pt;}
.yca{bottom:876.213333pt;}
.y80{bottom:880.133333pt;}
.y11d{bottom:888.133333pt;}
.y7f{bottom:895.813333pt;}
.y2f{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.yc9{bottom:899.840000pt;}
.y11c{bottom:903.840000pt;}
.y7e{bottom:911.440000pt;}
.y2e{bottom:911.840000pt;}
.yf3{bottom:914.720000pt;}
.y97{bottom:919.440000pt;}
.y7d{bottom:927.040000pt;}
.y2d{bottom:927.440000pt;}
.yc8{bottom:931.520000pt;}
.y11b{bottom:935.040000pt;}
.y7c{bottom:942.720000pt;}
.y2c{bottom:943.040000pt;}
.yc7{bottom:947.120000pt;}
.y96{bottom:951.040000pt;}
.yf0{bottom:954.640000pt;}
.y2b{bottom:958.720000pt;}
.yc6{bottom:962.800000pt;}
.y7b{bottom:966.320000pt;}
.y5c{bottom:966.720000pt;}
.y2a{bottom:974.320000pt;}
.yc5{bottom:978.400000pt;}
.y5b{bottom:982.320000pt;}
.y29{bottom:990.000000pt;}
.y5a{bottom:998.000000pt;}
.yc4{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.hb{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:53.309531pt;}
.hc{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:114.266667pt;}
.w5{width:154.346667pt;}
.w4{width:181.040000pt;}
.w6{width:220.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:98.879988pt;}
.x9{left:146.666655pt;}
.xb{left:176.026667pt;}
.x2{left:180.266655pt;}
.x5{left:193.066655pt;}
.x7{left:220.026655pt;}
.xc{left:357.706667pt;}
.xd{left:512.693333pt;}
.x8{left:647.013322pt;}
.x4{left:649.013322pt;}
.x6{left:678.053322pt;}
.x3{left:704.053322pt;}
}




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