
    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_b45f2ac76888442f750b087f.woff2')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_3ae57cf53fabc16b7c043ed4.woff2')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_1bb65da034d41a5919941b95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_4af56d90eab596bdb613deea.woff2')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_a55558a617c609e836cb2ef9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_1476f071dc622f865578e26c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_98c1f2e1e7ff90afe76637be.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f1bbfd3b7dfdd1d0a7636c6.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,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;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls22{letter-spacing:-0.088503px;}
.ls9{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.070800px;}
.ls18{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.048960px;}
.ls1a{letter-spacing:-0.031680px;}
.ls16{letter-spacing:-0.014760px;}
.ls17{letter-spacing:-0.013320px;}
.ls15{letter-spacing:-0.011160px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.006480px;}
.ls1d{letter-spacing:0.016560px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.095400px;}
.ls1c{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.142800px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.173520px;}
.ls14{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.366600px;}
.ls24{letter-spacing:48.446640px;}
.lsf{letter-spacing:63.566640px;}
.ls23{letter-spacing:81.566640px;}
.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;}
}
.ws9{word-spacing:-14.636400px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws13{word-spacing:-13.324800px;}
.ws14{word-spacing:-13.321800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.215240px;}
.ws10{word-spacing:-13.213080px;}
.wsf{word-spacing:-13.211640px;}
.ws15{word-spacing:-13.177440px;}
.ws11{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.155600px;}
.wsc{word-spacing:-13.072800px;}
.ws5{word-spacing:-13.039800px;}
.ws17{word-spacing:-11.808962px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws16{word-spacing:-6.940200px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-4.275842px;}
._2{margin-left:-2.928480px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._4{width:2.344800px;}
._5{width:3.546599px;}
._c{width:4.572006px;}
._d{width:6.192600px;}
._f{width:7.394520px;}
._b{width:8.717400px;}
._a{width:10.280400px;}
._8{width:12.107400px;}
._10{width:14.255160px;}
._e{width:15.330600px;}
._3{width:16.588919px;}
._15{width:17.820727px;}
._6{width:19.565040px;}
._7{width:20.869920px;}
._12{width:21.998651px;}
._11{width:23.025960px;}
._16{width:24.077029px;}
._13{width:36.192240px;}
._14{width:37.444560px;}
._17{width:86.452560px;}
._18{width:87.715080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:54.079389px;}
.fs9{font-size:59.943419px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:0.000009px;}
.y10f{bottom:3.290384px;}
.y87{bottom:7.830000px;}
.y88{bottom:7.920000px;}
.y10d{bottom:9.317309px;}
.y105{bottom:9.349874px;}
.yf7{bottom:9.773388px;}
.yad{bottom:10.530000px;}
.yff{bottom:10.859319px;}
.y109{bottom:11.434864px;}
.y10b{bottom:11.924076px;}
.y103{bottom:12.770564px;}
.y9d{bottom:12.780000px;}
.yfd{bottom:16.397570px;}
.yf9{bottom:16.587608px;}
.y107{bottom:17.005692px;}
.y8f{bottom:21.510000px;}
.y85{bottom:21.600000px;}
.yfb{bottom:22.125859px;}
.y9c{bottom:30.330000px;}
.yac{bottom:32.580000px;}
.y102{bottom:37.403563px;}
.y8a{bottom:48.870000px;}
.y101{bottom:59.882346px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yf3{bottom:112.080000px;}
.y57{bottom:113.790000px;}
.y13e{bottom:119.010000px;}
.y81{bottom:124.230000px;}
.yf2{bottom:130.530000px;}
.y56{bottom:131.340000px;}
.y13d{bottom:136.650000px;}
.y26{bottom:141.240000px;}
.y80{bottom:141.780000px;}
.yf1{bottom:148.080000px;}
.y55{bottom:149.790000px;}
.ya8{bottom:157.440000px;}
.y25{bottom:158.790000px;}
.y7f{bottom:159.330000px;}
.y13c{bottom:161.670000px;}
.yf0{bottom:175.890000px;}
.y24{bottom:176.340000px;}
.y7e{bottom:176.970000px;}
.y54{bottom:177.240000px;}
.y13b{bottom:179.310000px;}
.ya7{bottom:192.990000px;}
.y23{bottom:193.980000px;}
.y7d{bottom:194.520000px;}
.y13a{bottom:196.860000px;}
.ya3{bottom:207.930000px;}
.y7c{bottom:212.160000px;}
.y53{bottom:212.790000px;}
.yef{bottom:212.880000px;}
.y22{bottom:220.890000px;}
.y139{bottom:221.880000px;}
.y7b{bottom:229.710000px;}
.y52{bottom:231.240000px;}
.yd2{bottom:233.490000px;}
.ya6{bottom:235.290000px;}
.y138{bottom:239.610000px;}
.yee{bottom:239.790000px;}
.y7a{bottom:247.260000px;}
.y51{bottom:249.600000px;}
.yd1{bottom:260.850000px;}
.ya5{bottom:262.650000px;}
.y137{bottom:264.540000px;}
.y79{bottom:264.900000px;}
.y21{bottom:269.490000px;}
.y50{bottom:277.050000px;}
.yed{bottom:277.140000px;}
.y136{bottom:282.270000px;}
.y78{bottom:282.450000px;}
.yd0{bottom:288.120000px;}
.ya4{bottom:290.010000px;}
.y135{bottom:299.820000px;}
.y77{bottom:300.090000px;}
.y20{bottom:306.480000px;}
.y4f{bottom:312.600000px;}
.ycf{bottom:315.480000px;}
.y9f{bottom:317.280000px;}
.y76{bottom:317.640000px;}
.y1f{bottom:324.120000px;}
.y134{bottom:324.840000px;}
.yec{bottom:325.380000px;}
.y4e{bottom:331.410000px;}
.y75{bottom:335.190000px;}
.y1e{bottom:341.670000px;}
.y133{bottom:342.480000px;}
.yeb{bottom:343.020000px;}
.ya2{bottom:344.640000px;}
.y4d{bottom:349.770000px;}
.y1d{bottom:359.220000px;}
.y132{bottom:360.120000px;}
.yea{bottom:360.570000px;}
.y74{bottom:361.830000px;}
.yce{bottom:364.170000px;}
.y4c{bottom:368.220000px;}
.ya1{bottom:372.000000px;}
.y131{bottom:377.670000px;}
.ye9{bottom:378.210000px;}
.ycd{bottom:381.810000px;}
.y4b{bottom:386.580000px;}
.y1c{bottom:394.860000px;}
.ye8{bottom:395.760000px;}
.y73{bottom:397.380000px;}
.ya0{bottom:399.270000px;}
.y130{bottom:402.690000px;}
.y4a{bottom:404.940000px;}
.y1b{bottom:412.410000px;}
.ye7{bottom:413.310000px;}
.y72{bottom:415.740000px;}
.ycc{bottom:416.640000px;}
.y12f{bottom:420.330000px;}
.y49{bottom:423.030000px;}
.y9b{bottom:426.630000px;}
.ycb{bottom:428.790000px;}
.y1a{bottom:430.050000px;}
.ye6{bottom:430.950000px;}
.y71{bottom:434.190000px;}
.y12e{bottom:445.350000px;}
.y19{bottom:447.600000px;}
.y48{bottom:450.840000px;}
.y70{bottom:452.640000px;}
.y9e{bottom:453.990000px;}
.yca{bottom:456.150000px;}
.ye5{bottom:457.860000px;}
.y12d{bottom:462.990000px;}
.y18{bottom:465.150000px;}
.y6f{bottom:471.030000px;}
.y97{bottom:481.380000px;}
.y17{bottom:482.820000px;}
.yc9{bottom:483.540000px;}
.y12c{bottom:488.040000px;}
.y47{bottom:499.110000px;}
.y16{bottom:500.370000px;}
.y12b{bottom:505.680000px;}
.ye4{bottom:506.130000px;}
.y6e{bottom:507.480000px;}
.y9a{bottom:508.650000px;}
.y46{bottom:516.660000px;}
.y15{bottom:517.920000px;}
.ye3{bottom:523.770000px;}
.y12a{bottom:530.700000px;}
.yc8{bottom:532.230000px;}
.y45{bottom:535.110000px;}
.y14{bottom:535.560000px;}
.y99{bottom:536.010000px;}
.ye2{bottom:541.320000px;}
.y6d{bottom:543.120000px;}
.y129{bottom:548.430000px;}
.y44{bottom:552.660000px;}
.ye1{bottom:558.870000px;}
.y6c{bottom:560.670000px;}
.y98{bottom:563.370000px;}
.yc7{bottom:567.780000px;}
.y13{bottom:571.110000px;}
.y128{bottom:573.360000px;}
.ye0{bottom:576.510000px;}
.yc6{bottom:585.420000px;}
.y12{bottom:588.750000px;}
.y93{bottom:590.730000px;}
.y127{bottom:591.090000px;}
.ydf{bottom:594.060000px;}
.y6b{bottom:596.220000px;}
.y43{bottom:598.830000px;}
.yc5{bottom:602.970000px;}
.y11{bottom:606.300000px;}
.y126{bottom:608.640000px;}
.yde{bottom:611.700000px;}
.y6a{bottom:613.860000px;}
.y96{bottom:618.000000px;}
.yc4{bottom:620.610000px;}
.ydd{bottom:629.250000px;}
.y125{bottom:633.660000px;}
.y42{bottom:635.910000px;}
.yc3{bottom:638.160000px;}
.y69{bottom:640.410000px;}
.y10{bottom:641.850000px;}
.y95{bottom:645.360000px;}
.ydc{bottom:646.800000px;}
.y124{bottom:651.300000px;}
.yc2{bottom:655.710000px;}
.yf{bottom:659.490000px;}
.y41{bottom:662.820000px;}
.ydb{bottom:664.440000px;}
.y123{bottom:668.940000px;}
.y94{bottom:672.720000px;}
.yc1{bottom:673.350000px;}
.y68{bottom:676.050000px;}
.ye{bottom:677.040000px;}
.yda{bottom:681.990000px;}
.y122{bottom:686.490000px;}
.yc0{bottom:690.900000px;}
.y67{bottom:693.600000px;}
.yd{bottom:694.680000px;}
.yd9{bottom:699.540000px;}
.y40{bottom:699.810000px;}
.y91{bottom:699.990000px;}
.ybf{bottom:708.450000px;}
.y121{bottom:711.510000px;}
.yc{bottom:712.230000px;}
.yd8{bottom:717.180000px;}
.y3f{bottom:717.360000px;}
.ybe{bottom:726.090000px;}
.y92{bottom:727.350000px;}
.y66{bottom:729.150000px;}
.yd7{bottom:734.730000px;}
.y3e{bottom:735.000000px;}
.yb{bottom:739.140000px;}
.ybd{bottom:743.640000px;}
.y120{bottom:746.700000px;}
.y65{bottom:746.790000px;}
.yd6{bottom:752.370000px;}
.y3d{bottom:752.550000px;}
.y8e{bottom:754.710000px;}
.ybc{bottom:761.280000px;}
.y3c{bottom:770.190000px;}
.y11f{bottom:771.720000px;}
.y64{bottom:773.340000px;}
.ybb{bottom:778.830000px;}
.yd5{bottom:779.280000px;}
.y90{bottom:782.070000px;}
.ya{bottom:787.380000px;}
.y3b{bottom:787.740000px;}
.y11e{bottom:789.450000px;}
.yba{bottom:796.380000px;}
.y3a{bottom:805.290000px;}
.y63{bottom:808.890000px;}
.y89{bottom:809.340000px;}
.yb9{bottom:814.020000px;}
.y11d{bottom:814.380000px;}
.y39{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y62{bottom:826.530000px;}
.yd4{bottom:827.520000px;}
.yb8{bottom:831.570000px;}
.y11c{bottom:832.110000px;}
.y8d{bottom:836.700000px;}
.yb7{bottom:849.210000px;}
.y11b{bottom:857.040000px;}
.y38{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.yd3{bottom:859.740000px;}
.y61{bottom:862.080000px;}
.yf4{bottom:863.011011px;}
.y8c{bottom:864.060000px;}
.y10c{bottom:864.607360px;}
.yb6{bottom:866.760000px;}
.y10e{bottom:868.353800px;}
.y11a{bottom:874.770000px;}
.y10a{bottom:876.009661px;}
.y37{bottom:876.030000px;}
.y60{bottom:879.720000px;}
.yb5{bottom:884.310000px;}
.y8b{bottom:891.420000px;}
.y119{bottom:892.320000px;}
.y36{bottom:893.670000px;}
.y108{bottom:898.814766px;}
.y7{bottom:898.980000px;}
.yb4{bottom:901.950000px;}
.y5f{bottom:906.270000px;}
.y35{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.y84{bottom:918.690000px;}
.y118{bottom:919.230000px;}
.yb3{bottom:919.500000px;}
.y106{bottom:926.343130px;}
.y34{bottom:928.860000px;}
.yb2{bottom:937.140000px;}
.y5e{bottom:941.820000px;}
.y86{bottom:946.050000px;}
.y33{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yb1{bottom:954.690000px;}
.y32{bottom:963.960000px;}
.y104{bottom:966.902672px;}
.y117{bottom:967.560000px;}
.yb0{bottom:972.240000px;}
.y100{bottom:975.698648px;}
.y5d{bottom:977.370000px;}
.y31{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yaf{bottom:989.880000px;}
.y116{bottom:994.380000px;}
.y83{bottom:994.740000px;}
.y5c{bottom:995.820000px;}
.yfe{bottom:998.496492px;}
.y30{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y82{bottom:1021.680000px;}
.yae{bottom:1024.740000px;}
.yfc{bottom:1026.024855px;}
.y115{bottom:1031.400000px;}
.y5b{bottom:1032.300000px;}
.yab{bottom:1036.890000px;}
.y114{bottom:1049.850000px;}
.y2e{bottom:1052.370000px;}
.yfa{bottom:1053.227440px;}
.y5a{bottom:1058.850000px;}
.yaa{bottom:1064.250000px;}
.y113{bottom:1067.400000px;}
.y2d{bottom:1069.920000px;}
.y112{bottom:1085.850000px;}
.y2c{bottom:1087.560000px;}
.ya9{bottom:1091.610000px;}
.yf8{bottom:1091.669415px;}
.y59{bottom:1094.400000px;}
.y111{bottom:1104.300000px;}
.y2b{bottom:1105.110000px;}
.y58{bottom:1112.850000px;}
.y110{bottom:1121.850000px;}
.y2a{bottom:1122.750000px;}
.yf6{bottom:1131.577398px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h25{height:14.334308px;}
.h20{height:20.361220px;}
.h24{height:20.361233px;}
.h19{height:20.686999px;}
.h1e{height:21.827228px;}
.h22{height:22.478787px;}
.h23{height:22.967456px;}
.hf{height:26.550000px;}
.h15{height:26.580000px;}
.h10{height:26.640000px;}
.h1b{height:27.528368px;}
.h21{height:28.017037px;}
.h2{height:30.022383px;}
.h1d{height:33.229508px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h16{height:41.661211px;}
.h1c{height:45.787920px;}
.h1a{height:47.055406px;}
.he{height:50.902383px;}
.h18{height:52.157799px;}
.h7{height:52.311445px;}
.hd{height:53.910000px;}
.h14{height:53.940000px;}
.h12{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h9{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h1f{height:71.019931px;}
.h4{height:72.985430px;}
.h13{height:108.540000px;}
.h11{height:108.630000px;}
.h17{height:289.253386px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:32.040000px;}
.w1b{width:32.486973px;}
.w1c{width:32.486974px;}
.w1d{width:32.486976px;}
.w1e{width:32.486977px;}
.w20{width:32.486979px;}
.w21{width:32.486980px;}
.w22{width:36.894762px;}
.w15{width:40.410000px;}
.w9{width:60.660000px;}
.wc{width:72.360000px;}
.w1f{width:77.054552px;}
.w13{width:78.570000px;}
.wd{width:78.660000px;}
.w7{width:87.030000px;}
.w18{width:88.470000px;}
.w17{width:92.610000px;}
.w6{width:93.810000px;}
.w8{width:93.870000px;}
.we{width:94.680000px;}
.w24{width:95.012178px;}
.w19{width:123.060000px;}
.wf{width:128.460000px;}
.w14{width:128.550000px;}
.w11{width:135.540000px;}
.w16{width:136.710000px;}
.w23{width:137.783984px;}
.w12{width:145.380000px;}
.w5{width:155.250000px;}
.wb{width:173.160000px;}
.w4{width:181.560000px;}
.wa{width:243.480000px;}
.w3{width:417.450000px;}
.w1a{width:636.733959px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:3.006543px;}
.x44{left:5.387289px;}
.x27{left:7.740000px;}
.x37{left:9.180000px;}
.x35{left:10.800000px;}
.x20{left:12.870000px;}
.x32{left:14.850000px;}
.x2f{left:15.930000px;}
.x23{left:18.360000px;}
.x9{left:21.720000px;}
.x10{left:23.850000px;}
.x1d{left:26.730000px;}
.xb{left:29.430000px;}
.x22{left:32.130000px;}
.x14{left:35.190000px;}
.xe{left:37.080000px;}
.x13{left:38.550000px;}
.x3d{left:40.800000px;}
.xc{left:42.960000px;}
.x1c{left:44.550000px;}
.x2e{left:46.080000px;}
.x1b{left:47.970000px;}
.x24{left:49.770000px;}
.x1a{left:51.390000px;}
.x38{left:54.360000px;}
.x1f{left:57.780000px;}
.x19{left:60.570000px;}
.x25{left:62.010000px;}
.x17{left:63.180000px;}
.x2d{left:64.260000px;}
.x1{left:68.040000px;}
.x16{left:71.010000px;}
.x47{left:72.359987px;}
.x15{left:73.980000px;}
.x21{left:75.330000px;}
.x18{left:77.040000px;}
.x11{left:82.710000px;}
.x1e{left:85.950000px;}
.x6{left:95.039987px;}
.x4{left:99.359987px;}
.x48{left:111.419987px;}
.x5{left:126.359987px;}
.x40{left:128.212500px;}
.x7{left:132.150000px;}
.x3f{left:141.299987px;}
.x26{left:173.820000px;}
.x43{left:183.064890px;}
.x2{left:201.539987px;}
.x28{left:246.900000px;}
.x30{left:278.670000px;}
.x3a{left:293.790000px;}
.x12{left:313.050000px;}
.x29{left:326.280000px;}
.x31{left:358.050000px;}
.x3b{left:387.120000px;}
.x39{left:403.409987px;}
.x45{left:414.555042px;}
.x2a{left:421.770000px;}
.x33{left:453.450000px;}
.x3c{left:476.400000px;}
.x8{left:486.930000px;}
.x2b{left:551.040000px;}
.x41{left:569.352041px;}
.xd{left:581.460000px;}
.x34{left:582.720000px;}
.x2c{left:583.890000px;}
.x42{left:619.435248px;}
.x36{left:623.940000px;}
.xa{left:669.210000px;}
.xf{left:763.800000px;}
.x3e{left:767.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls22{letter-spacing:-0.078670pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.062933pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.043520pt;}
.ls1a{letter-spacing:-0.028160pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls17{letter-spacing:-0.011840pt;}
.ls15{letter-spacing:-0.009920pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.005760pt;}
.ls1d{letter-spacing:0.014720pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.084800pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.126933pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.154240pt;}
.ls14{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.325867pt;}
.ls24{letter-spacing:43.063680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls23{letter-spacing:72.503680pt;}
.ws9{word-spacing:-13.010133pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws13{word-spacing:-11.844267pt;}
.ws14{word-spacing:-11.841600pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.746880pt;}
.ws10{word-spacing:-11.744960pt;}
.wsf{word-spacing:-11.743680pt;}
.ws15{word-spacing:-11.713280pt;}
.ws11{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.693867pt;}
.wsc{word-spacing:-11.620267pt;}
.ws5{word-spacing:-11.590933pt;}
.ws17{word-spacing:-10.496855pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws16{word-spacing:-6.169067pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-3.800749pt;}
._2{margin-left:-2.603093pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._4{width:2.084267pt;}
._5{width:3.152532pt;}
._c{width:4.064005pt;}
._d{width:5.504534pt;}
._f{width:6.572906pt;}
._b{width:7.748800pt;}
._a{width:9.138133pt;}
._8{width:10.762133pt;}
._10{width:12.671253pt;}
._e{width:13.627200pt;}
._3{width:14.745706pt;}
._15{width:15.840646pt;}
._6{width:17.391147pt;}
._7{width:18.551040pt;}
._12{width:19.554357pt;}
._11{width:20.467520pt;}
._16{width:21.401803pt;}
._13{width:32.170880pt;}
._14{width:33.284053pt;}
._17{width:76.846720pt;}
._18{width:77.968960pt;}
.fs8{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:48.070568pt;}
.fs9{font-size:53.283039pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:0.000008pt;}
.y10f{bottom:2.924786pt;}
.y87{bottom:6.960000pt;}
.y88{bottom:7.040000pt;}
.y10d{bottom:8.282053pt;}
.y105{bottom:8.311000pt;}
.yf7{bottom:8.687456pt;}
.yad{bottom:9.360000pt;}
.yff{bottom:9.652728pt;}
.y109{bottom:10.164323pt;}
.y10b{bottom:10.599178pt;}
.y103{bottom:11.351613pt;}
.y9d{bottom:11.360000pt;}
.yfd{bottom:14.575618pt;}
.yf9{bottom:14.744540pt;}
.y107{bottom:15.116170pt;}
.y8f{bottom:19.120000pt;}
.y85{bottom:19.200000pt;}
.yfb{bottom:19.667430pt;}
.y9c{bottom:26.960000pt;}
.yac{bottom:28.960000pt;}
.y102{bottom:33.247612pt;}
.y8a{bottom:43.440000pt;}
.y101{bottom:53.228752pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yf3{bottom:99.626667pt;}
.y57{bottom:101.146667pt;}
.y13e{bottom:105.786667pt;}
.y81{bottom:110.426667pt;}
.yf2{bottom:116.026667pt;}
.y56{bottom:116.746667pt;}
.y13d{bottom:121.466667pt;}
.y26{bottom:125.546667pt;}
.y80{bottom:126.026667pt;}
.yf1{bottom:131.626667pt;}
.y55{bottom:133.146667pt;}
.ya8{bottom:139.946667pt;}
.y25{bottom:141.146667pt;}
.y7f{bottom:141.626667pt;}
.y13c{bottom:143.706667pt;}
.yf0{bottom:156.346667pt;}
.y24{bottom:156.746667pt;}
.y7e{bottom:157.306667pt;}
.y54{bottom:157.546667pt;}
.y13b{bottom:159.386667pt;}
.ya7{bottom:171.546667pt;}
.y23{bottom:172.426667pt;}
.y7d{bottom:172.906667pt;}
.y13a{bottom:174.986667pt;}
.ya3{bottom:184.826667pt;}
.y7c{bottom:188.586667pt;}
.y53{bottom:189.146667pt;}
.yef{bottom:189.226667pt;}
.y22{bottom:196.346667pt;}
.y139{bottom:197.226667pt;}
.y7b{bottom:204.186667pt;}
.y52{bottom:205.546667pt;}
.yd2{bottom:207.546667pt;}
.ya6{bottom:209.146667pt;}
.y138{bottom:212.986667pt;}
.yee{bottom:213.146667pt;}
.y7a{bottom:219.786667pt;}
.y51{bottom:221.866667pt;}
.yd1{bottom:231.866667pt;}
.ya5{bottom:233.466667pt;}
.y137{bottom:235.146667pt;}
.y79{bottom:235.466667pt;}
.y21{bottom:239.546667pt;}
.y50{bottom:246.266667pt;}
.yed{bottom:246.346667pt;}
.y136{bottom:250.906667pt;}
.y78{bottom:251.066667pt;}
.yd0{bottom:256.106667pt;}
.ya4{bottom:257.786667pt;}
.y135{bottom:266.506667pt;}
.y77{bottom:266.746667pt;}
.y20{bottom:272.426667pt;}
.y4f{bottom:277.866667pt;}
.ycf{bottom:280.426667pt;}
.y9f{bottom:282.026667pt;}
.y76{bottom:282.346667pt;}
.y1f{bottom:288.106667pt;}
.y134{bottom:288.746667pt;}
.yec{bottom:289.226667pt;}
.y4e{bottom:294.586667pt;}
.y75{bottom:297.946667pt;}
.y1e{bottom:303.706667pt;}
.y133{bottom:304.426667pt;}
.yeb{bottom:304.906667pt;}
.ya2{bottom:306.346667pt;}
.y4d{bottom:310.906667pt;}
.y1d{bottom:319.306667pt;}
.y132{bottom:320.106667pt;}
.yea{bottom:320.506667pt;}
.y74{bottom:321.626667pt;}
.yce{bottom:323.706667pt;}
.y4c{bottom:327.306667pt;}
.ya1{bottom:330.666667pt;}
.y131{bottom:335.706667pt;}
.ye9{bottom:336.186667pt;}
.ycd{bottom:339.386667pt;}
.y4b{bottom:343.626667pt;}
.y1c{bottom:350.986667pt;}
.ye8{bottom:351.786667pt;}
.y73{bottom:353.226667pt;}
.ya0{bottom:354.906667pt;}
.y130{bottom:357.946667pt;}
.y4a{bottom:359.946667pt;}
.y1b{bottom:366.586667pt;}
.ye7{bottom:367.386667pt;}
.y72{bottom:369.546667pt;}
.ycc{bottom:370.346667pt;}
.y12f{bottom:373.626667pt;}
.y49{bottom:376.026667pt;}
.y9b{bottom:379.226667pt;}
.ycb{bottom:381.146667pt;}
.y1a{bottom:382.266667pt;}
.ye6{bottom:383.066667pt;}
.y71{bottom:385.946667pt;}
.y12e{bottom:395.866667pt;}
.y19{bottom:397.866667pt;}
.y48{bottom:400.746667pt;}
.y70{bottom:402.346667pt;}
.y9e{bottom:403.546667pt;}
.yca{bottom:405.466667pt;}
.ye5{bottom:406.986667pt;}
.y12d{bottom:411.546667pt;}
.y18{bottom:413.466667pt;}
.y6f{bottom:418.693333pt;}
.y97{bottom:427.893333pt;}
.y17{bottom:429.173333pt;}
.yc9{bottom:429.813333pt;}
.y12c{bottom:433.813333pt;}
.y47{bottom:443.653333pt;}
.y16{bottom:444.773333pt;}
.y12b{bottom:449.493333pt;}
.ye4{bottom:449.893333pt;}
.y6e{bottom:451.093333pt;}
.y9a{bottom:452.133333pt;}
.y46{bottom:459.253333pt;}
.y15{bottom:460.373333pt;}
.ye3{bottom:465.573333pt;}
.y12a{bottom:471.733333pt;}
.yc8{bottom:473.093333pt;}
.y45{bottom:475.653333pt;}
.y14{bottom:476.053333pt;}
.y99{bottom:476.453333pt;}
.ye2{bottom:481.173333pt;}
.y6d{bottom:482.773333pt;}
.y129{bottom:487.493333pt;}
.y44{bottom:491.253333pt;}
.ye1{bottom:496.773333pt;}
.y6c{bottom:498.373333pt;}
.y98{bottom:500.773333pt;}
.yc7{bottom:504.693333pt;}
.y13{bottom:507.653333pt;}
.y128{bottom:509.653333pt;}
.ye0{bottom:512.453333pt;}
.yc6{bottom:520.373333pt;}
.y12{bottom:523.333333pt;}
.y93{bottom:525.093333pt;}
.y127{bottom:525.413333pt;}
.ydf{bottom:528.053333pt;}
.y6b{bottom:529.973333pt;}
.y43{bottom:532.293333pt;}
.yc5{bottom:535.973333pt;}
.y11{bottom:538.933333pt;}
.y126{bottom:541.013333pt;}
.yde{bottom:543.733333pt;}
.y6a{bottom:545.653333pt;}
.y96{bottom:549.333333pt;}
.yc4{bottom:551.653333pt;}
.ydd{bottom:559.333333pt;}
.y125{bottom:563.253333pt;}
.y42{bottom:565.253333pt;}
.yc3{bottom:567.253333pt;}
.y69{bottom:569.253333pt;}
.y10{bottom:570.533333pt;}
.y95{bottom:573.653333pt;}
.ydc{bottom:574.933333pt;}
.y124{bottom:578.933333pt;}
.yc2{bottom:582.853333pt;}
.yf{bottom:586.213333pt;}
.y41{bottom:589.173333pt;}
.ydb{bottom:590.613333pt;}
.y123{bottom:594.613333pt;}
.y94{bottom:597.973333pt;}
.yc1{bottom:598.533333pt;}
.y68{bottom:600.933333pt;}
.ye{bottom:601.813333pt;}
.yda{bottom:606.213333pt;}
.y122{bottom:610.213333pt;}
.yc0{bottom:614.133333pt;}
.y67{bottom:616.533333pt;}
.yd{bottom:617.493333pt;}
.yd9{bottom:621.813333pt;}
.y40{bottom:622.053333pt;}
.y91{bottom:622.213333pt;}
.ybf{bottom:629.733333pt;}
.y121{bottom:632.453333pt;}
.yc{bottom:633.093333pt;}
.yd8{bottom:637.493333pt;}
.y3f{bottom:637.653333pt;}
.ybe{bottom:645.413333pt;}
.y92{bottom:646.533333pt;}
.y66{bottom:648.133333pt;}
.yd7{bottom:653.093333pt;}
.y3e{bottom:653.333333pt;}
.yb{bottom:657.013333pt;}
.ybd{bottom:661.013333pt;}
.y120{bottom:663.733333pt;}
.y65{bottom:663.813333pt;}
.yd6{bottom:668.773333pt;}
.y3d{bottom:668.933333pt;}
.y8e{bottom:670.853333pt;}
.ybc{bottom:676.693333pt;}
.y3c{bottom:684.613333pt;}
.y11f{bottom:685.973333pt;}
.y64{bottom:687.413333pt;}
.ybb{bottom:692.293333pt;}
.yd5{bottom:692.693333pt;}
.y90{bottom:695.173333pt;}
.ya{bottom:699.893333pt;}
.y3b{bottom:700.213333pt;}
.y11e{bottom:701.733333pt;}
.yba{bottom:707.893333pt;}
.y3a{bottom:715.813333pt;}
.y63{bottom:719.013333pt;}
.y89{bottom:719.413333pt;}
.yb9{bottom:723.573333pt;}
.y11d{bottom:723.893333pt;}
.y39{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y62{bottom:734.693333pt;}
.yd4{bottom:735.573333pt;}
.yb8{bottom:739.173333pt;}
.y11c{bottom:739.653333pt;}
.y8d{bottom:743.733333pt;}
.yb7{bottom:754.853333pt;}
.y11b{bottom:761.813333pt;}
.y38{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.yd3{bottom:764.213333pt;}
.y61{bottom:766.293333pt;}
.yf4{bottom:767.120899pt;}
.y8c{bottom:768.053333pt;}
.y10c{bottom:768.539876pt;}
.yb6{bottom:770.453333pt;}
.y10e{bottom:771.870044pt;}
.y11a{bottom:777.573333pt;}
.y10a{bottom:778.675254pt;}
.y37{bottom:778.693333pt;}
.y60{bottom:781.973333pt;}
.yb5{bottom:786.053333pt;}
.y8b{bottom:792.373333pt;}
.y119{bottom:793.173333pt;}
.y36{bottom:794.373333pt;}
.y108{bottom:798.946458pt;}
.y7{bottom:799.093333pt;}
.yb4{bottom:801.733333pt;}
.y5f{bottom:805.573333pt;}
.y35{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.y84{bottom:816.613333pt;}
.y118{bottom:817.093333pt;}
.yb3{bottom:817.333333pt;}
.y106{bottom:823.416115pt;}
.y34{bottom:825.653333pt;}
.yb2{bottom:833.013333pt;}
.y5e{bottom:837.173333pt;}
.y86{bottom:840.933333pt;}
.y33{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yb1{bottom:848.613333pt;}
.y32{bottom:856.853333pt;}
.y104{bottom:859.469042pt;}
.y117{bottom:860.053333pt;}
.yb0{bottom:864.213333pt;}
.y100{bottom:867.287688pt;}
.y5d{bottom:868.773333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yaf{bottom:879.893333pt;}
.y116{bottom:883.893333pt;}
.y83{bottom:884.213333pt;}
.y5c{bottom:885.173333pt;}
.yfe{bottom:887.552437pt;}
.y30{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y82{bottom:908.160000pt;}
.yae{bottom:910.880000pt;}
.yfc{bottom:912.022094pt;}
.y115{bottom:916.800000pt;}
.y5b{bottom:917.600000pt;}
.yab{bottom:921.680000pt;}
.y114{bottom:933.200000pt;}
.y2e{bottom:935.440000pt;}
.yfa{bottom:936.202169pt;}
.y5a{bottom:941.200000pt;}
.yaa{bottom:946.000000pt;}
.y113{bottom:948.800000pt;}
.y2d{bottom:951.040000pt;}
.y112{bottom:965.200000pt;}
.y2c{bottom:966.720000pt;}
.ya9{bottom:970.320000pt;}
.yf8{bottom:970.372813pt;}
.y59{bottom:972.800000pt;}
.y111{bottom:981.600000pt;}
.y2b{bottom:982.320000pt;}
.y58{bottom:989.200000pt;}
.y110{bottom:997.200000pt;}
.y2a{bottom:998.000000pt;}
.yf6{bottom:1005.846576pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h25{height:12.741607pt;}
.h20{height:18.098862pt;}
.h24{height:18.098874pt;}
.h19{height:18.388444pt;}
.h1e{height:19.401980pt;}
.h22{height:19.981144pt;}
.h23{height:20.415517pt;}
.hf{height:23.600000pt;}
.h15{height:23.626667pt;}
.h10{height:23.680000pt;}
.h1b{height:24.469660pt;}
.h21{height:24.904033pt;}
.h2{height:26.686562pt;}
.h1d{height:29.537341pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h16{height:37.032187pt;}
.h1c{height:40.700374pt;}
.h1a{height:41.827028pt;}
.he{height:45.246562pt;}
.h18{height:46.362488pt;}
.h7{height:46.499062pt;}
.hd{height:47.920000pt;}
.h14{height:47.946667pt;}
.h12{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h9{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h1f{height:63.128827pt;}
.h4{height:64.875937pt;}
.h13{height:96.480000pt;}
.h11{height:96.560000pt;}
.h17{height:257.114121pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:28.480000pt;}
.w1b{width:28.877309pt;}
.w1c{width:28.877310pt;}
.w1d{width:28.877312pt;}
.w1e{width:28.877313pt;}
.w20{width:28.877314pt;}
.w21{width:28.877316pt;}
.w22{width:32.795344pt;}
.w15{width:35.920000pt;}
.w9{width:53.920000pt;}
.wc{width:64.320000pt;}
.w1f{width:68.492935pt;}
.w13{width:69.840000pt;}
.wd{width:69.920000pt;}
.w7{width:77.360000pt;}
.w18{width:78.640000pt;}
.w17{width:82.320000pt;}
.w6{width:83.386667pt;}
.w8{width:83.440000pt;}
.we{width:84.160000pt;}
.w24{width:84.455270pt;}
.w19{width:109.386667pt;}
.wf{width:114.186667pt;}
.w14{width:114.266667pt;}
.w11{width:120.480000pt;}
.w16{width:121.520000pt;}
.w23{width:122.474652pt;}
.w12{width:129.226667pt;}
.w5{width:138.000000pt;}
.wb{width:153.920000pt;}
.w4{width:161.386667pt;}
.wa{width:216.426667pt;}
.w3{width:371.066667pt;}
.w1a{width:565.985741pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:2.672482pt;}
.x44{left:4.788701pt;}
.x27{left:6.880000pt;}
.x37{left:8.160000pt;}
.x35{left:9.600000pt;}
.x20{left:11.440000pt;}
.x32{left:13.200000pt;}
.x2f{left:14.160000pt;}
.x23{left:16.320000pt;}
.x9{left:19.306667pt;}
.x10{left:21.200000pt;}
.x1d{left:23.760000pt;}
.xb{left:26.160000pt;}
.x22{left:28.560000pt;}
.x14{left:31.280000pt;}
.xe{left:32.960000pt;}
.x13{left:34.266667pt;}
.x3d{left:36.266667pt;}
.xc{left:38.186667pt;}
.x1c{left:39.600000pt;}
.x2e{left:40.960000pt;}
.x1b{left:42.640000pt;}
.x24{left:44.240000pt;}
.x1a{left:45.680000pt;}
.x38{left:48.320000pt;}
.x1f{left:51.360000pt;}
.x19{left:53.840000pt;}
.x25{left:55.120000pt;}
.x17{left:56.160000pt;}
.x2d{left:57.120000pt;}
.x1{left:60.480000pt;}
.x16{left:63.120000pt;}
.x47{left:64.319988pt;}
.x15{left:65.760000pt;}
.x21{left:66.960000pt;}
.x18{left:68.480000pt;}
.x11{left:73.520000pt;}
.x1e{left:76.400000pt;}
.x6{left:84.479988pt;}
.x4{left:88.319988pt;}
.x48{left:99.039988pt;}
.x5{left:112.319988pt;}
.x40{left:113.966667pt;}
.x7{left:117.466667pt;}
.x3f{left:125.599988pt;}
.x26{left:154.506667pt;}
.x43{left:162.724347pt;}
.x2{left:179.146655pt;}
.x28{left:219.466667pt;}
.x30{left:247.706667pt;}
.x3a{left:261.146667pt;}
.x12{left:278.266667pt;}
.x29{left:290.026667pt;}
.x31{left:318.266667pt;}
.x3b{left:344.106667pt;}
.x39{left:358.586655pt;}
.x45{left:368.493371pt;}
.x2a{left:374.906667pt;}
.x33{left:403.066667pt;}
.x3c{left:423.466667pt;}
.x8{left:432.826667pt;}
.x2b{left:489.813333pt;}
.x41{left:506.090703pt;}
.xd{left:516.853333pt;}
.x34{left:517.973333pt;}
.x2c{left:519.013333pt;}
.x42{left:550.609109pt;}
.x36{left:554.613333pt;}
.xa{left:594.853333pt;}
.xf{left:678.933333pt;}
.x3e{left:682.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; }
  