
    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_49139a91b3e4bbd35b741bbf.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_42aceb70f72f19647589df2e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9ce2a812ccea66f0b9453335.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c687480e182574da777b1cd9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d404f25c1ccda8a684b56825.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27af5dd2931e26ed02f7e14b.woff')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_47874521a62decbcc76faea8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63a094a67296103b5d6c1cbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.855957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0c6afd1f90041cde7598592c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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);}
.vd{vertical-align:-91.800000px;}
.v5{vertical-align:-88.560000px;}
.v2{vertical-align:-82.920000px;}
.v4{vertical-align:-71.760000px;}
.v10{vertical-align:-69.120000px;}
.ve{vertical-align:-49.680000px;}
.v3{vertical-align:-33.120000px;}
.vf{vertical-align:-27.000000px;}
.v6{vertical-align:-14.760000px;}
.v9{vertical-align:-10.440000px;}
.vb{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.000000px;}
.v7{vertical-align:14.760000px;}
.v1{vertical-align:33.120000px;}
.va{vertical-align:46.800000px;}
.v8{vertical-align:56.880000px;}
.ls17{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.373200px;}
.ls8{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.153600px;}
.lsc{letter-spacing:-0.078600px;}
.ls16{letter-spacing:-0.039960px;}
.ls12{letter-spacing:-0.013320px;}
.lsb{letter-spacing:-0.004320px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.096600px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.540000px;}
.lsd{letter-spacing:20.016000px;}
.ls3{letter-spacing:54.984000px;}
.ls2{letter-spacing:92.970000px;}
.lse{letter-spacing:198.000000px;}
.ls4{letter-spacing:309.090000px;}
.ls5{letter-spacing:849.090000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.wsc{word-spacing:-55.944000px;}
.ws8{word-spacing:-52.344000px;}
.ws7{word-spacing:-51.216600px;}
.wsa{word-spacing:-51.120000px;}
.ws9{word-spacing:-51.041400px;}
.wse{word-spacing:-42.120000px;}
.wsb{word-spacing:-31.960920px;}
.wsd{word-spacing:-27.660000px;}
.ws0{word-spacing:-20.970000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws11{word-spacing:-15.930000px;}
.ws10{word-spacing:-15.750000px;}
.ws14{word-spacing:-15.210000px;}
.ws12{word-spacing:-15.030000px;}
.ws15{word-spacing:-15.016680px;}
.ws18{word-spacing:-14.990040px;}
.ws17{word-spacing:-14.876400px;}
.ws13{word-spacing:-14.850000px;}
.ws16{word-spacing:-14.656800px;}
.ws19{word-spacing:-14.516400px;}
.ws1{word-spacing:-11.970000px;}
.ws6{word-spacing:-11.965680px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-197.880000px;}
._8{margin-left:-91.992000px;}
._2{margin-left:-8.323080px;}
._3{margin-left:-4.226040px;}
._1{margin-left:-3.019680px;}
._0{margin-left:-1.142280px;}
._4{width:1.046280px;}
._a{width:2.108280px;}
._5{width:3.684600px;}
._6{width:102.769560px;}
._7{width:198.120000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,176,240);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:60.120000px;}
.fs9{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:9.900000px;}
.yb8{bottom:9.990000px;}
.yb6{bottom:26.910000px;}
.y2{bottom:57.420000px;}
.yd8{bottom:113.130000px;}
.y162{bottom:114.030000px;}
.y19a{bottom:117.450000px;}
.y134{bottom:127.980000px;}
.yaf{bottom:129.060000px;}
.y44{bottom:131.040000px;}
.y161{bottom:131.310000px;}
.y11c{bottom:131.580000px;}
.y148{bottom:131.760000px;}
.y10a{bottom:132.210000px;}
.yd7{bottom:133.830000px;}
.y199{bottom:134.730000px;}
.ye4{bottom:142.680000px;}
.y160{bottom:148.530000px;}
.y133{bottom:148.710000px;}
.yae{bottom:149.700000px;}
.y43{bottom:151.770000px;}
.y198{bottom:152.040000px;}
.y11b{bottom:152.310000px;}
.y109{bottom:152.940000px;}
.y83{bottom:153.030000px;}
.yd6{bottom:154.560000px;}
.ye3{bottom:163.380000px;}
.y15f{bottom:165.810000px;}
.y197{bottom:169.230000px;}
.y132{bottom:169.410000px;}
.yad{bottom:170.400000px;}
.y42{bottom:172.470000px;}
.y11a{bottom:173.010000px;}
.y147{bottom:173.190000px;}
.y108{bottom:173.640000px;}
.yd5{bottom:175.260000px;}
.y82{bottom:183.180000px;}
.ye2{bottom:184.080000px;}
.y196{bottom:186.510000px;}
.y131{bottom:190.110000px;}
.yac{bottom:191.100000px;}
.y41{bottom:193.170000px;}
.y119{bottom:193.710000px;}
.y107{bottom:194.340000px;}
.yd4{bottom:195.960000px;}
.y195{bottom:203.700000px;}
.y81{bottom:203.880000px;}
.y15e{bottom:204.240000px;}
.ye1{bottom:204.780000px;}
.y130{bottom:210.810000px;}
.yab{bottom:211.800000px;}
.y40{bottom:213.870000px;}
.y118{bottom:214.410000px;}
.y146{bottom:214.590000px;}
.y106{bottom:215.040000px;}
.yd3{bottom:216.660000px;}
.y194{bottom:220.980000px;}
.y80{bottom:224.580000px;}
.y12f{bottom:231.510000px;}
.yaa{bottom:232.500000px;}
.ye0{bottom:234.480000px;}
.y3f{bottom:234.570000px;}
.y117{bottom:235.110000px;}
.y105{bottom:235.740000px;}
.yd2{bottom:237.360000px;}
.y193{bottom:238.260000px;}
.y7f{bottom:245.280000px;}
.y15d{bottom:245.640000px;}
.y12e{bottom:252.210000px;}
.ya9{bottom:253.200000px;}
.ydf{bottom:255.180000px;}
.y3e{bottom:255.270000px;}
.y192{bottom:255.450000px;}
.y145{bottom:255.990000px;}
.y104{bottom:256.440000px;}
.yd1{bottom:258.060000px;}
.yc8{bottom:259.320000px;}
.y116{bottom:264.810000px;}
.y7e{bottom:265.980000px;}
.y191{bottom:272.730000px;}
.y12d{bottom:272.910000px;}
.yde{bottom:275.880000px;}
.y3d{bottom:275.970000px;}
.y103{bottom:277.140000px;}
.yd0{bottom:278.760000px;}
.ya8{bottom:282.900000px;}
.y5c{bottom:284.970000px;}
.y115{bottom:285.510000px;}
.y7d{bottom:286.680000px;}
.y15c{bottom:287.040000px;}
.yc7{bottom:288.300000px;}
.y190{bottom:290.010000px;}
.y12c{bottom:293.610000px;}
.yc6{bottom:295.050000px;}
.ydd{bottom:296.580000px;}
.y3c{bottom:296.670000px;}
.y144{bottom:297.390000px;}
.y102{bottom:297.840000px;}
.ycf{bottom:299.460000px;}
.y5b{bottom:305.670000px;}
.y114{bottom:306.210000px;}
.yc5{bottom:306.570000px;}
.y18f{bottom:307.200000px;}
.y7c{bottom:307.290000px;}
.ya7{bottom:312.420000px;}
.y12b{bottom:314.310000px;}
.ydc{bottom:317.280000px;}
.y3b{bottom:317.370000px;}
.y101{bottom:318.540000px;}
.y18e{bottom:324.480000px;}
.y5a{bottom:326.370000px;}
.y113{bottom:326.910000px;}
.y7b{bottom:327.990000px;}
.y15b{bottom:328.620000px;}
.yce{bottom:329.160000px;}
.y12a{bottom:335.010000px;}
.ydb{bottom:337.980000px;}
.y3a{bottom:338.070000px;}
.y143{bottom:338.790000px;}
.yc4{bottom:338.970000px;}
.y100{bottom:339.240000px;}
.y18d{bottom:341.760000px;}
.y59{bottom:347.070000px;}
.y112{bottom:347.610000px;}
.y7a{bottom:348.690000px;}
.ya6{bottom:351.300000px;}
.y129{bottom:355.710000px;}
.yda{bottom:358.680000px;}
.y39{bottom:358.770000px;}
.ycd{bottom:358.860000px;}
.y18c{bottom:358.950000px;}
.yff{bottom:359.940000px;}
.y58{bottom:367.770000px;}
.y111{bottom:368.310000px;}
.y79{bottom:369.390000px;}
.y15a{bottom:370.020000px;}
.yc3{bottom:371.370000px;}
.ya5{bottom:372.000000px;}
.y18b{bottom:376.230000px;}
.y128{bottom:376.410000px;}
.y38{bottom:379.470000px;}
.ycc{bottom:379.560000px;}
.y142{bottom:380.190000px;}
.yfe{bottom:380.640000px;}
.y69{bottom:381.720000px;}
.y57{bottom:388.470000px;}
.y78{bottom:390.090000px;}
.ya4{bottom:392.700000px;}
.yd9{bottom:393.240000px;}
.y18a{bottom:393.510000px;}
.y127{bottom:397.110000px;}
.y110{bottom:398.010000px;}
.ycb{bottom:400.260000px;}
.yfd{bottom:401.250000px;}
.yc2{bottom:403.770000px;}
.y159{bottom:408.180000px;}
.y37{bottom:409.170000px;}
.y189{bottom:410.700000px;}
.y77{bottom:410.790000px;}
.y68{bottom:411.420000px;}
.ya3{bottom:413.400000px;}
.y126{bottom:417.810000px;}
.yca{bottom:420.960000px;}
.y141{bottom:421.590000px;}
.yfc{bottom:421.950000px;}
.y10f{bottom:427.710000px;}
.y188{bottom:427.980000px;}
.y36{bottom:429.870000px;}
.y76{bottom:431.490000px;}
.y67{bottom:432.120000px;}
.ya2{bottom:434.100000px;}
.yc1{bottom:436.290000px;}
.y125{bottom:438.510000px;}
.y158{bottom:444.450000px;}
.y187{bottom:445.260000px;}
.y35{bottom:450.570000px;}
.yfb{bottom:451.650000px;}
.y75{bottom:452.190000px;}
.y66{bottom:452.820000px;}
.ya1{bottom:454.800000px;}
.yc9{bottom:455.520000px;}
.y124{bottom:459.210000px;}
.y10e{bottom:462.270000px;}
.y186{bottom:462.450000px;}
.y140{bottom:462.990000px;}
.yf3{bottom:468.570000px;}
.yc0{bottom:468.690000px;}
.y34{bottom:471.270000px;}
.y74{bottom:472.890000px;}
.y65{bottom:473.520000px;}
.ya0{bottom:475.500000px;}
.y185{bottom:479.730000px;}
.y123{bottom:479.910000px;}
.y157{bottom:480.630000px;}
.yf2{bottom:489.270000px;}
.yfa{bottom:490.350000px;}
.y33{bottom:491.880000px;}
.y73{bottom:493.590000px;}
.y64{bottom:494.130000px;}
.y9f{bottom:496.200000px;}
.y184{bottom:497.010000px;}
.y122{bottom:500.610000px;}
.ybf{bottom:501.090000px;}
.y13f{bottom:504.390000px;}
.yf1{bottom:509.880000px;}
.yf9{bottom:511.050000px;}
.y32{bottom:512.580000px;}
.y183{bottom:514.200000px;}
.y72{bottom:514.290000px;}
.y63{bottom:514.830000px;}
.y9e{bottom:516.900000px;}
.y121{bottom:530.130000px;}
.yf0{bottom:530.580000px;}
.y182{bottom:531.480000px;}
.yf8{bottom:531.750000px;}
.y31{bottom:533.280000px;}
.ybe{bottom:533.490000px;}
.y71{bottom:534.990000px;}
.y62{bottom:535.530000px;}
.y9d{bottom:537.600000px;}
.y56{bottom:542.280000px;}
.y13e{bottom:545.790000px;}
.y181{bottom:548.670000px;}
.y19{bottom:549.210000px;}
.yf7{bottom:552.450000px;}
.y156{bottom:553.080000px;}
.y70{bottom:555.690000px;}
.y61{bottom:556.230000px;}
.y9c{bottom:558.300000px;}
.yef{bottom:560.280000px;}
.y30{bottom:562.830000px;}
.ybc{bottom:565.890000px;}
.y180{bottom:565.980000px;}
.y18{bottom:567.150000px;}
.y120{bottom:569.040000px;}
.yb2{bottom:569.310000px;}
.yf6{bottom:573.180000px;}
.y60{bottom:576.870000px;}
.y9b{bottom:579.030000px;}
.y55{bottom:580.830000px;}
.yee{bottom:581.010000px;}
.y17f{bottom:583.260000px;}
.y6f{bottom:585.420000px;}
.y13d{bottom:587.220000px;}
.y17{bottom:587.760000px;}
.y155{bottom:589.290000px;}
.y11f{bottom:589.740000px;}
.yb1{bottom:590.010000px;}
.yf5{bottom:593.880000px;}
.ybb{bottom:598.290000px;}
.y5f{bottom:599.010000px;}
.y9a{bottom:599.730000px;}
.y17e{bottom:600.450000px;}
.y2f{bottom:601.710000px;}
.y11e{bottom:610.440000px;}
.yb0{bottom:610.710000px;}
.y17d{bottom:617.730000px;}
.y16{bottom:618.810000px;}
.y54{bottom:619.710000px;}
.y2e{bottom:622.410000px;}
.y6e{bottom:624.120000px;}
.y154{bottom:625.560000px;}
.yf4{bottom:628.530000px;}
.y13c{bottom:628.620000px;}
.y99{bottom:629.430000px;}
.yba{bottom:630.690000px;}
.yed{bottom:631.410000px;}
.y17c{bottom:635.010000px;}
.y11d{bottom:636.000000px;}
.y15{bottom:639.420000px;}
.y53{bottom:640.410000px;}
.y2d{bottom:643.110000px;}
.y6d{bottom:644.820000px;}
.y98{bottom:650.130000px;}
.yec{bottom:652.110000px;}
.y17b{bottom:652.200000px;}
.y52{bottom:661.110000px;}
.y153{bottom:661.740000px;}
.yb9{bottom:663.090000px;}
.y2c{bottom:663.810000px;}
.y6c{bottom:665.520000px;}
.y17a{bottom:669.480000px;}
.y13b{bottom:670.020000px;}
.y14{bottom:670.470000px;}
.y97{bottom:670.830000px;}
.yeb{bottom:672.810000px;}
.y51{bottom:681.810000px;}
.y2b{bottom:684.510000px;}
.y6b{bottom:686.220000px;}
.y179{bottom:686.760000px;}
.y13{bottom:691.170000px;}
.y96{bottom:691.530000px;}
.yea{bottom:693.510000px;}
.yb5{bottom:697.740000px;}
.y152{bottom:698.010000px;}
.y50{bottom:702.510000px;}
.y178{bottom:703.950000px;}
.y2a{bottom:705.210000px;}
.y13a{bottom:711.420000px;}
.y95{bottom:712.230000px;}
.ye9{bottom:714.210000px;}
.y6a{bottom:720.870000px;}
.y177{bottom:721.230000px;}
.y12{bottom:722.040000px;}
.y4f{bottom:723.210000px;}
.y29{bottom:725.910000px;}
.yb7{bottom:731.580000px;}
.y94{bottom:732.930000px;}
.y151{bottom:734.190000px;}
.ye8{bottom:734.910000px;}
.y176{bottom:738.510000px;}
.y4e{bottom:743.910000px;}
.y28{bottom:746.610000px;}
.y139{bottom:752.820000px;}
.y93{bottom:753.630000px;}
.ye7{bottom:755.610000px;}
.y175{bottom:755.700000px;}
.y11{bottom:760.920000px;}
.y4d{bottom:764.610000px;}
.y27{bottom:767.310000px;}
.y150{bottom:770.460000px;}
.y174{bottom:772.980000px;}
.y92{bottom:774.330000px;}
.ye6{bottom:776.310000px;}
.yb4{bottom:776.790000px;}
.y4c{bottom:785.310000px;}
.y173{bottom:790.260000px;}
.y10{bottom:790.620000px;}
.y138{bottom:794.220000px;}
.y91{bottom:795.030000px;}
.y26{bottom:796.830000px;}
.ye5{bottom:797.010000px;}
.y4b{bottom:806.010000px;}
.y14f{bottom:806.640000px;}
.y172{bottom:807.450000px;}
.yf{bottom:811.320000px;}
.y90{bottom:815.730000px;}
.ye{bottom:819.600000px;}
.y171{bottom:824.730000px;}
.y25{bottom:826.710000px;}
.y137{bottom:835.620000px;}
.y8f{bottom:836.430000px;}
.yd{bottom:841.020000px;}
.y170{bottom:842.010000px;}
.y14e{bottom:842.910000px;}
.y24{bottom:847.410000px;}
.y10d{bottom:856.410000px;}
.y8e{bottom:857.130000px;}
.y16f{bottom:859.200000px;}
.yc{bottom:861.720000px;}
.y23{bottom:868.110000px;}
.yb{bottom:870.000000px;}
.yb3{bottom:871.830000px;}
.y16e{bottom:876.480000px;}
.y10c{bottom:877.110000px;}
.y8d{bottom:877.830000px;}
.y14d{bottom:879.090000px;}
.y136{bottom:885.750000px;}
.y22{bottom:888.810000px;}
.ya{bottom:891.420000px;}
.y16d{bottom:893.670000px;}
.y10b{bottom:897.810000px;}
.y8c{bottom:898.530000px;}
.y19b{bottom:907.620000px;}
.y21{bottom:909.510000px;}
.y16c{bottom:910.950000px;}
.y9{bottom:912.120000px;}
.y14c{bottom:915.360000px;}
.y5e{bottom:918.510000px;}
.y8b{bottom:919.230000px;}
.y8{bottom:920.400000px;}
.y135{bottom:924.000000px;}
.y16b{bottom:928.230000px;}
.y20{bottom:930.210000px;}
.y5d{bottom:939.210000px;}
.y16a{bottom:945.420000px;}
.y8a{bottom:948.930000px;}
.y1f{bottom:950.910000px;}
.y14b{bottom:951.540000px;}
.y7{bottom:959.640000px;}
.y4a{bottom:959.910000px;}
.y169{bottom:962.700000px;}
.y1e{bottom:971.610000px;}
.y89{bottom:978.630000px;}
.y168{bottom:980.010000px;}
.y6{bottom:980.370000px;}
.y49{bottom:980.640000px;}
.y14a{bottom:987.840000px;}
.y1d{bottom:992.340000px;}
.y88{bottom:997.020000px;}
.y167{bottom:997.200000px;}
.y87{bottom:999.270000px;}
.y48{bottom:1001.340000px;}
.y5{bottom:1010.610000px;}
.y1c{bottom:1013.040000px;}
.y166{bottom:1014.480000px;}
.y86{bottom:1021.410000px;}
.y47{bottom:1022.040000px;}
.y149{bottom:1024.020000px;}
.y165{bottom:1031.760000px;}
.y1b{bottom:1033.740000px;}
.y4{bottom:1034.730000px;}
.y46{bottom:1042.740000px;}
.y164{bottom:1048.950000px;}
.y85{bottom:1049.760000px;}
.y84{bottom:1058.850000px;}
.y3{bottom:1060.110000px;}
.y1a{bottom:1063.260000px;}
.y45{bottom:1063.440000px;}
.y163{bottom:1066.230000px;}
.y1{bottom:1141.830000px;}
.h14{height:32.400000px;}
.h13{height:32.422500px;}
.h15{height:32.520000px;}
.h16{height:38.158594px;}
.h18{height:43.475449px;}
.h6{height:46.991602px;}
.ha{height:52.066406px;}
.hd{height:52.695866px;}
.h19{height:58.975137px;}
.h1{height:59.004492px;}
.h3{height:59.182910px;}
.h17{height:61.831055px;}
.h12{height:66.262500px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h9{height:74.004654px;}
.he{height:79.664062px;}
.hf{height:80.111602px;}
.h5{height:81.374062px;}
.h4{height:84.535312px;}
.hb{height:85.202578px;}
.hc{height:107.024063px;}
.h11{height:917.997990px;}
.h10{height:918.000000px;}
.h2{height:1187.997990px;}
.h0{height:1188.000000px;}
.w9{width:93.690000px;}
.wc{width:93.720000px;}
.wa{width:93.780000px;}
.wb{width:94.500000px;}
.w8{width:94.530000px;}
.w7{width:108.000000px;}
.w6{width:282.000000px;}
.w5{width:296.220000px;}
.w4{width:390.808500px;}
.w1{width:917.998125px;}
.w0{width:918.000000px;}
.w3{width:1187.998125px;}
.w2{width:1188.000000px;}
.x0{left:0.000000px;}
.x28{left:18.000000px;}
.x23{left:21.780000px;}
.x1a{left:24.210000px;}
.x1c{left:27.270000px;}
.x25{left:28.440000px;}
.x1d{left:32.040000px;}
.x2a{left:33.780000px;}
.x26{left:35.280000px;}
.x22{left:38.280000px;}
.x18{left:39.510000px;}
.x2f{left:42.750000px;}
.x21{left:45.000000px;}
.x2e{left:47.878500px;}
.x30{left:51.388500px;}
.xb{left:58.318125px;}
.x8{left:65.878125px;}
.x31{left:72.358500px;}
.x3{left:73.438125px;}
.x4{left:81.000000px;}
.x13{left:87.658500px;}
.x29{left:95.128500px;}
.x12{left:99.901500px;}
.x2c{left:102.058500px;}
.x2d{left:105.388500px;}
.x7{left:108.000000px;}
.x5{left:110.610000px;}
.x2b{left:121.888500px;}
.x17{left:125.190000px;}
.x15{left:129.510000px;}
.x9{left:135.000000px;}
.x27{left:139.708500px;}
.x20{left:144.658500px;}
.x24{left:152.938500px;}
.xa{left:162.030000px;}
.x6{left:203.970000px;}
.xd{left:226.740000px;}
.x1{left:241.320000px;}
.x10{left:376.320000px;}
.x2{left:459.030000px;}
.x14{left:490.710000px;}
.x11{left:594.030000px;}
.x19{left:598.710000px;}
.x34{left:620.430000px;}
.xe{left:648.510000px;}
.xf{left:659.490000px;}
.x1b{left:693.240000px;}
.xc{left:700.080000px;}
.x35{left:713.310000px;}
.x33{left:726.000000px;}
.x16{left:788.460000px;}
.x32{left:810.090000px;}
.x1e{left:882.240000px;}
.x1f{left:976.740000px;}
@media print{
.vd{vertical-align:-81.600000pt;}
.v5{vertical-align:-78.720000pt;}
.v2{vertical-align:-73.706667pt;}
.v4{vertical-align:-63.786667pt;}
.v10{vertical-align:-61.440000pt;}
.ve{vertical-align:-44.160000pt;}
.v3{vertical-align:-29.440000pt;}
.vf{vertical-align:-24.000000pt;}
.v6{vertical-align:-13.120000pt;}
.v9{vertical-align:-9.280000pt;}
.vb{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.000000pt;}
.v7{vertical-align:13.120000pt;}
.v1{vertical-align:29.440000pt;}
.va{vertical-align:41.600000pt;}
.v8{vertical-align:50.560000pt;}
.ls17{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.331733pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.136533pt;}
.lsc{letter-spacing:-0.069867pt;}
.ls16{letter-spacing:-0.035520pt;}
.ls12{letter-spacing:-0.011840pt;}
.lsb{letter-spacing:-0.003840pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.085867pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.480000pt;}
.lsd{letter-spacing:17.792000pt;}
.ls3{letter-spacing:48.874667pt;}
.ls2{letter-spacing:82.640000pt;}
.lse{letter-spacing:176.000000pt;}
.ls4{letter-spacing:274.746667pt;}
.ls5{letter-spacing:754.746667pt;}
.ws2{word-spacing:-64.000000pt;}
.wsc{word-spacing:-49.728000pt;}
.ws8{word-spacing:-46.528000pt;}
.ws7{word-spacing:-45.525867pt;}
.wsa{word-spacing:-45.440000pt;}
.ws9{word-spacing:-45.370133pt;}
.wse{word-spacing:-37.440000pt;}
.wsb{word-spacing:-28.409707pt;}
.wsd{word-spacing:-24.586667pt;}
.ws0{word-spacing:-18.640000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.160000pt;}
.ws10{word-spacing:-14.000000pt;}
.ws14{word-spacing:-13.520000pt;}
.ws12{word-spacing:-13.360000pt;}
.ws15{word-spacing:-13.348160pt;}
.ws18{word-spacing:-13.324480pt;}
.ws17{word-spacing:-13.223467pt;}
.ws13{word-spacing:-13.200000pt;}
.ws16{word-spacing:-13.028267pt;}
.ws19{word-spacing:-12.903467pt;}
.ws1{word-spacing:-10.640000pt;}
.ws6{word-spacing:-10.636160pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-175.893333pt;}
._8{margin-left:-81.770667pt;}
._2{margin-left:-7.398293pt;}
._3{margin-left:-3.756480pt;}
._1{margin-left:-2.684160pt;}
._0{margin-left:-1.015360pt;}
._4{width:0.930027pt;}
._a{width:1.874027pt;}
._5{width:3.275200pt;}
._6{width:91.350720pt;}
._7{width:176.106667pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:53.440000pt;}
.fs9{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:8.800000pt;}
.yb8{bottom:8.880000pt;}
.yb6{bottom:23.920000pt;}
.y2{bottom:51.040000pt;}
.yd8{bottom:100.560000pt;}
.y162{bottom:101.360000pt;}
.y19a{bottom:104.400000pt;}
.y134{bottom:113.760000pt;}
.yaf{bottom:114.720000pt;}
.y44{bottom:116.480000pt;}
.y161{bottom:116.720000pt;}
.y11c{bottom:116.960000pt;}
.y148{bottom:117.120000pt;}
.y10a{bottom:117.520000pt;}
.yd7{bottom:118.960000pt;}
.y199{bottom:119.760000pt;}
.ye4{bottom:126.826667pt;}
.y160{bottom:132.026667pt;}
.y133{bottom:132.186667pt;}
.yae{bottom:133.066667pt;}
.y43{bottom:134.906667pt;}
.y198{bottom:135.146667pt;}
.y11b{bottom:135.386667pt;}
.y109{bottom:135.946667pt;}
.y83{bottom:136.026667pt;}
.yd6{bottom:137.386667pt;}
.ye3{bottom:145.226667pt;}
.y15f{bottom:147.386667pt;}
.y197{bottom:150.426667pt;}
.y132{bottom:150.586667pt;}
.yad{bottom:151.466667pt;}
.y42{bottom:153.306667pt;}
.y11a{bottom:153.786667pt;}
.y147{bottom:153.946667pt;}
.y108{bottom:154.346667pt;}
.yd5{bottom:155.786667pt;}
.y82{bottom:162.826667pt;}
.ye2{bottom:163.626667pt;}
.y196{bottom:165.786667pt;}
.y131{bottom:168.986667pt;}
.yac{bottom:169.866667pt;}
.y41{bottom:171.706667pt;}
.y119{bottom:172.186667pt;}
.y107{bottom:172.746667pt;}
.yd4{bottom:174.186667pt;}
.y195{bottom:181.066667pt;}
.y81{bottom:181.226667pt;}
.y15e{bottom:181.546667pt;}
.ye1{bottom:182.026667pt;}
.y130{bottom:187.386667pt;}
.yab{bottom:188.266667pt;}
.y40{bottom:190.106667pt;}
.y118{bottom:190.586667pt;}
.y146{bottom:190.746667pt;}
.y106{bottom:191.146667pt;}
.yd3{bottom:192.586667pt;}
.y194{bottom:196.426667pt;}
.y80{bottom:199.626667pt;}
.y12f{bottom:205.786667pt;}
.yaa{bottom:206.666667pt;}
.ye0{bottom:208.426667pt;}
.y3f{bottom:208.506667pt;}
.y117{bottom:208.986667pt;}
.y105{bottom:209.546667pt;}
.yd2{bottom:210.986667pt;}
.y193{bottom:211.786667pt;}
.y7f{bottom:218.026667pt;}
.y15d{bottom:218.346667pt;}
.y12e{bottom:224.186667pt;}
.ya9{bottom:225.066667pt;}
.ydf{bottom:226.826667pt;}
.y3e{bottom:226.906667pt;}
.y192{bottom:227.066667pt;}
.y145{bottom:227.546667pt;}
.y104{bottom:227.946667pt;}
.yd1{bottom:229.386667pt;}
.yc8{bottom:230.506667pt;}
.y116{bottom:235.386667pt;}
.y7e{bottom:236.426667pt;}
.y191{bottom:242.426667pt;}
.y12d{bottom:242.586667pt;}
.yde{bottom:245.226667pt;}
.y3d{bottom:245.306667pt;}
.y103{bottom:246.346667pt;}
.yd0{bottom:247.786667pt;}
.ya8{bottom:251.466667pt;}
.y5c{bottom:253.306667pt;}
.y115{bottom:253.786667pt;}
.y7d{bottom:254.826667pt;}
.y15c{bottom:255.146667pt;}
.yc7{bottom:256.266667pt;}
.y190{bottom:257.786667pt;}
.y12c{bottom:260.986667pt;}
.yc6{bottom:262.266667pt;}
.ydd{bottom:263.626667pt;}
.y3c{bottom:263.706667pt;}
.y144{bottom:264.346667pt;}
.y102{bottom:264.746667pt;}
.ycf{bottom:266.186667pt;}
.y5b{bottom:271.706667pt;}
.y114{bottom:272.186667pt;}
.yc5{bottom:272.506667pt;}
.y18f{bottom:273.066667pt;}
.y7c{bottom:273.146667pt;}
.ya7{bottom:277.706667pt;}
.y12b{bottom:279.386667pt;}
.ydc{bottom:282.026667pt;}
.y3b{bottom:282.106667pt;}
.y101{bottom:283.146667pt;}
.y18e{bottom:288.426667pt;}
.y5a{bottom:290.106667pt;}
.y113{bottom:290.586667pt;}
.y7b{bottom:291.546667pt;}
.y15b{bottom:292.106667pt;}
.yce{bottom:292.586667pt;}
.y12a{bottom:297.786667pt;}
.ydb{bottom:300.426667pt;}
.y3a{bottom:300.506667pt;}
.y143{bottom:301.146667pt;}
.yc4{bottom:301.306667pt;}
.y100{bottom:301.546667pt;}
.y18d{bottom:303.786667pt;}
.y59{bottom:308.506667pt;}
.y112{bottom:308.986667pt;}
.y7a{bottom:309.946667pt;}
.ya6{bottom:312.266667pt;}
.y129{bottom:316.186667pt;}
.yda{bottom:318.826667pt;}
.y39{bottom:318.906667pt;}
.ycd{bottom:318.986667pt;}
.y18c{bottom:319.066667pt;}
.yff{bottom:319.946667pt;}
.y58{bottom:326.906667pt;}
.y111{bottom:327.386667pt;}
.y79{bottom:328.346667pt;}
.y15a{bottom:328.906667pt;}
.yc3{bottom:330.106667pt;}
.ya5{bottom:330.666667pt;}
.y18b{bottom:334.426667pt;}
.y128{bottom:334.586667pt;}
.y38{bottom:337.306667pt;}
.ycc{bottom:337.386667pt;}
.y142{bottom:337.946667pt;}
.yfe{bottom:338.346667pt;}
.y69{bottom:339.306667pt;}
.y57{bottom:345.306667pt;}
.y78{bottom:346.746667pt;}
.ya4{bottom:349.066667pt;}
.yd9{bottom:349.546667pt;}
.y18a{bottom:349.786667pt;}
.y127{bottom:352.986667pt;}
.y110{bottom:353.786667pt;}
.ycb{bottom:355.786667pt;}
.yfd{bottom:356.666667pt;}
.yc2{bottom:358.906667pt;}
.y159{bottom:362.826667pt;}
.y37{bottom:363.706667pt;}
.y189{bottom:365.066667pt;}
.y77{bottom:365.146667pt;}
.y68{bottom:365.706667pt;}
.ya3{bottom:367.466667pt;}
.y126{bottom:371.386667pt;}
.yca{bottom:374.186667pt;}
.y141{bottom:374.746667pt;}
.yfc{bottom:375.066667pt;}
.y10f{bottom:380.186667pt;}
.y188{bottom:380.426667pt;}
.y36{bottom:382.106667pt;}
.y76{bottom:383.546667pt;}
.y67{bottom:384.106667pt;}
.ya2{bottom:385.866667pt;}
.yc1{bottom:387.813333pt;}
.y125{bottom:389.786667pt;}
.y158{bottom:395.066667pt;}
.y187{bottom:395.786667pt;}
.y35{bottom:400.506667pt;}
.yfb{bottom:401.466667pt;}
.y75{bottom:401.946667pt;}
.y66{bottom:402.506667pt;}
.ya1{bottom:404.266667pt;}
.yc9{bottom:404.906667pt;}
.y124{bottom:408.186667pt;}
.y10e{bottom:410.906667pt;}
.y186{bottom:411.066667pt;}
.y140{bottom:411.546667pt;}
.yf3{bottom:416.506667pt;}
.yc0{bottom:416.613333pt;}
.y34{bottom:418.906667pt;}
.y74{bottom:420.346667pt;}
.y65{bottom:420.906667pt;}
.ya0{bottom:422.666667pt;}
.y185{bottom:426.426667pt;}
.y123{bottom:426.586667pt;}
.y157{bottom:427.226667pt;}
.yf2{bottom:434.906667pt;}
.yfa{bottom:435.866667pt;}
.y33{bottom:437.226667pt;}
.y73{bottom:438.746667pt;}
.y64{bottom:439.226667pt;}
.y9f{bottom:441.066667pt;}
.y184{bottom:441.786667pt;}
.y122{bottom:444.986667pt;}
.ybf{bottom:445.413333pt;}
.y13f{bottom:448.346667pt;}
.yf1{bottom:453.226667pt;}
.yf9{bottom:454.266667pt;}
.y32{bottom:455.626667pt;}
.y183{bottom:457.066667pt;}
.y72{bottom:457.146667pt;}
.y63{bottom:457.626667pt;}
.y9e{bottom:459.466667pt;}
.y121{bottom:471.226667pt;}
.yf0{bottom:471.626667pt;}
.y182{bottom:472.426667pt;}
.yf8{bottom:472.666667pt;}
.y31{bottom:474.026667pt;}
.ybe{bottom:474.213333pt;}
.y71{bottom:475.546667pt;}
.y62{bottom:476.026667pt;}
.y9d{bottom:477.866667pt;}
.y56{bottom:482.026667pt;}
.y13e{bottom:485.146667pt;}
.y181{bottom:487.706667pt;}
.y19{bottom:488.186667pt;}
.yf7{bottom:491.066667pt;}
.y156{bottom:491.626667pt;}
.y70{bottom:493.946667pt;}
.y61{bottom:494.426667pt;}
.y9c{bottom:496.266667pt;}
.yef{bottom:498.026667pt;}
.y30{bottom:500.293333pt;}
.ybc{bottom:503.013333pt;}
.y180{bottom:503.093333pt;}
.y18{bottom:504.133333pt;}
.y120{bottom:505.813333pt;}
.yb2{bottom:506.053333pt;}
.yf6{bottom:509.493333pt;}
.y60{bottom:512.773333pt;}
.y9b{bottom:514.693333pt;}
.y55{bottom:516.293333pt;}
.yee{bottom:516.453333pt;}
.y17f{bottom:518.453333pt;}
.y6f{bottom:520.373333pt;}
.y13d{bottom:521.973333pt;}
.y17{bottom:522.453333pt;}
.y155{bottom:523.813333pt;}
.y11f{bottom:524.213333pt;}
.yb1{bottom:524.453333pt;}
.yf5{bottom:527.893333pt;}
.ybb{bottom:531.813333pt;}
.y5f{bottom:532.453333pt;}
.y9a{bottom:533.093333pt;}
.y17e{bottom:533.733333pt;}
.y2f{bottom:534.853333pt;}
.y11e{bottom:542.613333pt;}
.yb0{bottom:542.853333pt;}
.y17d{bottom:549.093333pt;}
.y16{bottom:550.053333pt;}
.y54{bottom:550.853333pt;}
.y2e{bottom:553.253333pt;}
.y6e{bottom:554.773333pt;}
.y154{bottom:556.053333pt;}
.yf4{bottom:558.693333pt;}
.y13c{bottom:558.773333pt;}
.y99{bottom:559.493333pt;}
.yba{bottom:560.613333pt;}
.yed{bottom:561.253333pt;}
.y17c{bottom:564.453333pt;}
.y11d{bottom:565.333333pt;}
.y15{bottom:568.373333pt;}
.y53{bottom:569.253333pt;}
.y2d{bottom:571.653333pt;}
.y6d{bottom:573.173333pt;}
.y98{bottom:577.893333pt;}
.yec{bottom:579.653333pt;}
.y17b{bottom:579.733333pt;}
.y52{bottom:587.653333pt;}
.y153{bottom:588.213333pt;}
.yb9{bottom:589.413333pt;}
.y2c{bottom:590.053333pt;}
.y6c{bottom:591.573333pt;}
.y17a{bottom:595.093333pt;}
.y13b{bottom:595.573333pt;}
.y14{bottom:595.973333pt;}
.y97{bottom:596.293333pt;}
.yeb{bottom:598.053333pt;}
.y51{bottom:606.053333pt;}
.y2b{bottom:608.453333pt;}
.y6b{bottom:609.973333pt;}
.y179{bottom:610.453333pt;}
.y13{bottom:614.373333pt;}
.y96{bottom:614.693333pt;}
.yea{bottom:616.453333pt;}
.yb5{bottom:620.213333pt;}
.y152{bottom:620.453333pt;}
.y50{bottom:624.453333pt;}
.y178{bottom:625.733333pt;}
.y2a{bottom:626.853333pt;}
.y13a{bottom:632.373333pt;}
.y95{bottom:633.093333pt;}
.ye9{bottom:634.853333pt;}
.y6a{bottom:640.773333pt;}
.y177{bottom:641.093333pt;}
.y12{bottom:641.813333pt;}
.y4f{bottom:642.853333pt;}
.y29{bottom:645.253333pt;}
.yb7{bottom:650.293333pt;}
.y94{bottom:651.493333pt;}
.y151{bottom:652.613333pt;}
.ye8{bottom:653.253333pt;}
.y176{bottom:656.453333pt;}
.y4e{bottom:661.253333pt;}
.y28{bottom:663.653333pt;}
.y139{bottom:669.173333pt;}
.y93{bottom:669.893333pt;}
.ye7{bottom:671.653333pt;}
.y175{bottom:671.733333pt;}
.y11{bottom:676.373333pt;}
.y4d{bottom:679.653333pt;}
.y27{bottom:682.053333pt;}
.y150{bottom:684.853333pt;}
.y174{bottom:687.093333pt;}
.y92{bottom:688.293333pt;}
.ye6{bottom:690.053333pt;}
.yb4{bottom:690.480000pt;}
.y4c{bottom:698.053333pt;}
.y173{bottom:702.453333pt;}
.y10{bottom:702.773333pt;}
.y138{bottom:705.973333pt;}
.y91{bottom:706.693333pt;}
.y26{bottom:708.293333pt;}
.ye5{bottom:708.453333pt;}
.y4b{bottom:716.453333pt;}
.y14f{bottom:717.013333pt;}
.y172{bottom:717.733333pt;}
.yf{bottom:721.173333pt;}
.y90{bottom:725.093333pt;}
.ye{bottom:728.533333pt;}
.y171{bottom:733.093333pt;}
.y25{bottom:734.853333pt;}
.y137{bottom:742.773333pt;}
.y8f{bottom:743.493333pt;}
.yd{bottom:747.573333pt;}
.y170{bottom:748.453333pt;}
.y14e{bottom:749.253333pt;}
.y24{bottom:753.253333pt;}
.y10d{bottom:761.253333pt;}
.y8e{bottom:761.893333pt;}
.y16f{bottom:763.733333pt;}
.yc{bottom:765.973333pt;}
.y23{bottom:771.653333pt;}
.yb{bottom:773.333333pt;}
.yb3{bottom:774.960000pt;}
.y16e{bottom:779.093333pt;}
.y10c{bottom:779.653333pt;}
.y8d{bottom:780.293333pt;}
.y14d{bottom:781.413333pt;}
.y136{bottom:787.333333pt;}
.y22{bottom:790.053333pt;}
.ya{bottom:792.373333pt;}
.y16d{bottom:794.373333pt;}
.y10b{bottom:798.053333pt;}
.y8c{bottom:798.693333pt;}
.y19b{bottom:806.773333pt;}
.y21{bottom:808.453333pt;}
.y16c{bottom:809.733333pt;}
.y9{bottom:810.773333pt;}
.y14c{bottom:813.653333pt;}
.y5e{bottom:816.453333pt;}
.y8b{bottom:817.093333pt;}
.y8{bottom:818.133333pt;}
.y135{bottom:821.333333pt;}
.y16b{bottom:825.093333pt;}
.y20{bottom:826.853333pt;}
.y5d{bottom:834.853333pt;}
.y16a{bottom:840.373333pt;}
.y8a{bottom:843.493333pt;}
.y1f{bottom:845.253333pt;}
.y14b{bottom:845.813333pt;}
.y7{bottom:853.013333pt;}
.y4a{bottom:853.253333pt;}
.y169{bottom:855.733333pt;}
.y1e{bottom:863.653333pt;}
.y89{bottom:869.893333pt;}
.y168{bottom:871.120000pt;}
.y6{bottom:871.440000pt;}
.y49{bottom:871.680000pt;}
.y14a{bottom:878.080000pt;}
.y1d{bottom:882.080000pt;}
.y88{bottom:886.240000pt;}
.y167{bottom:886.400000pt;}
.y87{bottom:888.240000pt;}
.y48{bottom:890.080000pt;}
.y5{bottom:898.320000pt;}
.y1c{bottom:900.480000pt;}
.y166{bottom:901.760000pt;}
.y86{bottom:907.920000pt;}
.y47{bottom:908.480000pt;}
.y149{bottom:910.240000pt;}
.y165{bottom:917.120000pt;}
.y1b{bottom:918.880000pt;}
.y4{bottom:919.760000pt;}
.y46{bottom:926.880000pt;}
.y164{bottom:932.400000pt;}
.y85{bottom:933.120000pt;}
.y84{bottom:941.200000pt;}
.y3{bottom:942.320000pt;}
.y1a{bottom:945.120000pt;}
.y45{bottom:945.280000pt;}
.y163{bottom:947.760000pt;}
.y1{bottom:1014.960000pt;}
.h14{height:28.800000pt;}
.h13{height:28.820000pt;}
.h15{height:28.906667pt;}
.h16{height:33.918750pt;}
.h18{height:38.644844pt;}
.h6{height:41.770312pt;}
.ha{height:46.281250pt;}
.hd{height:46.840769pt;}
.h19{height:52.422344pt;}
.h1{height:52.448437pt;}
.h3{height:52.607031pt;}
.h17{height:54.960938pt;}
.h12{height:58.900000pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h9{height:65.781915pt;}
.he{height:70.812500pt;}
.hf{height:71.210313pt;}
.h5{height:72.332500pt;}
.h4{height:75.142500pt;}
.hb{height:75.735625pt;}
.hc{height:95.132500pt;}
.h11{height:815.998213pt;}
.h10{height:816.000000pt;}
.h2{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w9{width:83.280000pt;}
.wc{width:83.306667pt;}
.wa{width:83.360000pt;}
.wb{width:84.000000pt;}
.w8{width:84.026667pt;}
.w7{width:96.000000pt;}
.w6{width:250.666667pt;}
.w5{width:263.306667pt;}
.w4{width:347.385333pt;}
.w1{width:815.998333pt;}
.w0{width:816.000000pt;}
.w3{width:1055.998333pt;}
.w2{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x28{left:16.000000pt;}
.x23{left:19.360000pt;}
.x1a{left:21.520000pt;}
.x1c{left:24.240000pt;}
.x25{left:25.280000pt;}
.x1d{left:28.480000pt;}
.x2a{left:30.026667pt;}
.x26{left:31.360000pt;}
.x22{left:34.026667pt;}
.x18{left:35.120000pt;}
.x2f{left:38.000000pt;}
.x21{left:40.000000pt;}
.x2e{left:42.558667pt;}
.x30{left:45.678667pt;}
.xb{left:51.838333pt;}
.x8{left:58.558333pt;}
.x31{left:64.318667pt;}
.x3{left:65.278333pt;}
.x4{left:72.000000pt;}
.x13{left:77.918667pt;}
.x29{left:84.558667pt;}
.x12{left:88.801333pt;}
.x2c{left:90.718667pt;}
.x2d{left:93.678667pt;}
.x7{left:96.000000pt;}
.x5{left:98.320000pt;}
.x2b{left:108.345333pt;}
.x17{left:111.280000pt;}
.x15{left:115.120000pt;}
.x9{left:120.000000pt;}
.x27{left:124.185333pt;}
.x20{left:128.585333pt;}
.x24{left:135.945333pt;}
.xa{left:144.026667pt;}
.x6{left:181.306667pt;}
.xd{left:201.546667pt;}
.x1{left:214.506667pt;}
.x10{left:334.506667pt;}
.x2{left:408.026667pt;}
.x14{left:436.186667pt;}
.x11{left:528.026667pt;}
.x19{left:532.186667pt;}
.x34{left:551.493333pt;}
.xe{left:576.453333pt;}
.xf{left:586.213333pt;}
.x1b{left:616.213333pt;}
.xc{left:622.293333pt;}
.x35{left:634.053333pt;}
.x33{left:645.333333pt;}
.x16{left:700.853333pt;}
.x32{left:720.080000pt;}
.x1e{left:784.213333pt;}
.x1f{left:868.213333pt;}
}




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