
    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_b44687052d0d99b231278153.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dd1148d8dc68e72c99fac8ad.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_cac10dbbb96871ce20a5765e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_54d29e3cce589c78d263f0df.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4380bfe3f1112a1b2d30de77.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4db8d6e65223f5e303ced717.woff')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_8c064e30d6ffb4618226aa0e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.061035;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_c53d0d76d9f12dda4a9043f7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_137c6857a3f64ebcfd7496e2.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0a4498a856ab4aa42975857b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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:ffb;src:url('chunks/assets/font_ad02c212f29b1567bce2a051.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v6{vertical-align:-72.000000px;}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-53.280000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.306600px;}
.ls1b{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.017280px;}
.ls9{letter-spacing:-0.012960px;}
.lsa{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.053280px;}
.ls24{letter-spacing:0.090720px;}
.ls0{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.380400px;}
.ls13{letter-spacing:0.612000px;}
.ls21{letter-spacing:0.613440px;}
.ls8{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.666720px;}
.lsd{letter-spacing:6.426720px;}
.ls4{letter-spacing:10.188000px;}
.lse{letter-spacing:11.466720px;}
.ls23{letter-spacing:36.666720px;}
.ls25{letter-spacing:53.226720px;}
.ls20{letter-spacing:69.786720px;}
.ls22{letter-spacing:86.346720px;}
.ls16{letter-spacing:96.426720px;}
.ls18{letter-spacing:152.064000px;}
.lsc{letter-spacing:153.450720px;}
.ls1e{letter-spacing:171.504000px;}
.ls3{letter-spacing:190.047360px;}
.ls15{letter-spacing:653.886720px;}
.ls1f{letter-spacing:890.886720px;}
.ls17{letter-spacing:977.142720px;}
.ls10{letter-spacing:1219.260000px;}
.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;}
}
.wsc{word-spacing:-17.279280px;}
.wsb{word-spacing:-17.225280px;}
.wsd{word-spacing:-16.666560px;}
.ws3{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.506480px;}
.wse{word-spacing:-16.353480px;}
.ws10{word-spacing:-15.174000px;}
.wsf{word-spacing:-15.052032px;}
.ws8{word-spacing:-15.012000px;}
.ws4{word-spacing:-10.817280px;}
.ws2{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.795680px;}
.ws1{word-spacing:-10.791360px;}
.ws7{word-spacing:-10.612800px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:255.192000px;}
._1d{margin-left:-4.147920px;}
._b{margin-left:-2.916000px;}
._1{margin-left:-1.026000px;}
._0{width:1.242000px;}
._15{width:2.868480px;}
._2{width:3.917760px;}
._9{width:4.938240px;}
._8{width:5.994000px;}
._16{width:7.051680px;}
._4{width:8.056080px;}
._10{width:9.462000px;}
._f{width:10.638000px;}
._d{width:12.744000px;}
._c{width:13.986000px;}
._20{width:15.376320px;}
._3{width:16.395120px;}
._e{width:17.462880px;}
._5{width:19.440000px;}
._a{width:20.520000px;}
._22{width:22.129200px;}
._7{width:23.706000px;}
._6{width:25.218000px;}
._17{width:27.728640px;}
._13{width:31.410000px;}
._12{width:32.778000px;}
._11{width:36.936000px;}
._2c{width:38.358480px;}
._19{width:53.984640px;}
._1b{width:70.704720px;}
._25{width:73.816560px;}
._26{width:75.792720px;}
._2a{width:78.836400px;}
._2b{width:80.018640px;}
._27{width:82.349280px;}
._28{width:84.080640px;}
._1e{width:88.170000px;}
._29{width:96.094080px;}
._18{width:103.824480px;}
._14{width:120.224160px;}
._1a{width:153.450720px;}
._24{width:272.075280px;}
._23{width:273.222720px;}
._1c{width:962.113440px;}
._21{width:2041.112400px;}
._1f{width:2366.346720px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(208,206,206);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:2.700000px;}
.y79{bottom:2.874000px;}
.yb4{bottom:3.240000px;}
.y101{bottom:3.270000px;}
.yf4{bottom:3.276000px;}
.yf0{bottom:3.780000px;}
.y15{bottom:3.960000px;}
.yaf{bottom:4.140000px;}
.y12e{bottom:4.500000px;}
.yb2{bottom:4.680000px;}
.yb0{bottom:4.860000px;}
.yee{bottom:5.760000px;}
.ye9{bottom:6.120000px;}
.y158{bottom:7.200000px;}
.yd6{bottom:7.920000px;}
.ybe{bottom:8.640000px;}
.y7f{bottom:8.820000px;}
.y4{bottom:8.850000px;}
.y4d{bottom:9.534000px;}
.y16{bottom:9.540000px;}
.y82{bottom:12.780000px;}
.y11e{bottom:14.250000px;}
.yea{bottom:16.920000px;}
.y78{bottom:18.534000px;}
.yf9{bottom:20.340000px;}
.ye7{bottom:20.520000px;}
.yf2{bottom:21.240000px;}
.y130{bottom:21.780000px;}
.yec{bottom:22.860000px;}
.y156{bottom:23.220000px;}
.y155{bottom:23.400000px;}
.y4c{bottom:23.574000px;}
.ybd{bottom:24.120000px;}
.y7e{bottom:24.300000px;}
.y3{bottom:24.510000px;}
.y7{bottom:29.880000px;}
.y81{bottom:32.760000px;}
.y77{bottom:34.014000px;}
.y11c{bottom:34.170000px;}
.y128{bottom:34.560000px;}
.y4b{bottom:37.434000px;}
.yf8{bottom:37.620000px;}
.ye6{bottom:37.800000px;}
.yfb{bottom:39.240000px;}
.yff{bottom:39.270000px;}
.y76{bottom:49.494000px;}
.y6{bottom:49.860000px;}
.y4a{bottom:50.034000px;}
.y114{bottom:50.250000px;}
.y108{bottom:51.660000px;}
.y12c{bottom:56.550000px;}
.y49{bottom:64.074000px;}
.y75{bottom:64.974000px;}
.y10e{bottom:67.680000px;}
.y48{bottom:78.114000px;}
.y74{bottom:80.634000px;}
.y115{bottom:83.085000px;}
.y47{bottom:92.154000px;}
.y11d{bottom:93.705000px;}
.y73{bottom:96.114000px;}
.yf1{bottom:96.120000px;}
.y7b{bottom:99.000000px;}
.y162{bottom:101.340000px;}
.y13f{bottom:102.600000px;}
.y46{bottom:106.374000px;}
.y72{bottom:111.594000px;}
.yf5{bottom:114.120000px;}
.y116{bottom:115.920000px;}
.y7a{bottom:116.100000px;}
.y10c{bottom:116.280000px;}
.y161{bottom:118.620000px;}
.y13e{bottom:119.880000px;}
.y45{bottom:120.414000px;}
.y111{bottom:122.040000px;}
.y120{bottom:122.295000px;}
.y71{bottom:127.074000px;}
.y10f{bottom:129.990000px;}
.yf3{bottom:132.120000px;}
.y10b{bottom:133.380000px;}
.y44{bottom:134.454000px;}
.y160{bottom:135.936000px;}
.y13d{bottom:137.016000px;}
.y70{bottom:142.734000px;}
.y19{bottom:148.176000px;}
.y43{bottom:148.494000px;}
.y117{bottom:148.755000px;}
.yeb{bottom:150.150000px;}
.y10a{bottom:150.690000px;}
.y13c{bottom:155.010000px;}
.y11f{bottom:156.885000px;}
.y6f{bottom:158.214000px;}
.y42{bottom:162.534000px;}
.y109{bottom:167.970000px;}
.yef{bottom:168.690000px;}
.y15f{bottom:170.310000px;}
.y6e{bottom:173.694000px;}
.y13b{bottom:174.990000px;}
.y41{bottom:176.574000px;}
.y118{bottom:181.590000px;}
.y107{bottom:182.010000px;}
.y112{bottom:183.450000px;}
.yed{bottom:186.690000px;}
.y15e{bottom:187.590000px;}
.ybb{bottom:189.030000px;}
.y6d{bottom:189.174000px;}
.y40{bottom:190.614000px;}
.y3f{bottom:204.834000px;}
.y15d{bottom:204.870000px;}
.yba{bottom:206.310000px;}
.ye5{bottom:207.210000px;}
.y119{bottom:214.410000px;}
.y3e{bottom:218.874000px;}
.y6c{bottom:220.314000px;}
.y15c{bottom:222.150000px;}
.y110{bottom:223.125000px;}
.yb9{bottom:223.590000px;}
.y3d{bottom:232.914000px;}
.y10d{bottom:234.000000px;}
.y6b{bottom:235.794000px;}
.ye8{bottom:238.890000px;}
.y15b{bottom:239.430000px;}
.yb8{bottom:240.690000px;}
.y3c{bottom:246.999000px;}
.y11a{bottom:247.245000px;}
.y6a{bottom:251.319000px;}
.y15a{bottom:256.530000px;}
.yb7{bottom:257.970000px;}
.y113{bottom:260.130000px;}
.y3b{bottom:261.039000px;}
.y69{bottom:266.979000px;}
.y159{bottom:273.810000px;}
.y3a{bottom:275.079000px;}
.yb6{bottom:275.250000px;}
.y11b{bottom:280.080000px;}
.ye4{bottom:280.290000px;}
.y68{bottom:282.459000px;}
.y157{bottom:288.570000px;}
.y39{bottom:289.299000px;}
.yb5{bottom:292.530000px;}
.ye3{bottom:297.390000px;}
.y67{bottom:297.939000px;}
.y38{bottom:303.339000px;}
.yb3{bottom:307.290000px;}
.y154{bottom:310.530000px;}
.y18d{bottom:312.510000px;}
.y66{bottom:313.419000px;}
.ye2{bottom:314.670000px;}
.y37{bottom:317.379000px;}
.yb1{bottom:324.570000px;}
.y65{bottom:328.899000px;}
.y18c{bottom:329.790000px;}
.y36{bottom:331.419000px;}
.ye1{bottom:331.950000px;}
.yae{bottom:344.010000px;}
.y35{bottom:345.459000px;}
.y18b{bottom:347.070000px;}
.ye0{bottom:349.230000px;}
.y153{bottom:351.930000px;}
.y34{bottom:359.499000px;}
.y18a{bottom:364.350000px;}
.y64{bottom:365.259000px;}
.ydf{bottom:366.510000px;}
.y152{bottom:369.030000px;}
.y33{bottom:373.719000px;}
.y63{bottom:380.739000px;}
.y13a{bottom:381.270000px;}
.y189{bottom:381.630000px;}
.yde{bottom:383.790000px;}
.yad{bottom:384.870000px;}
.y32{bottom:387.759000px;}
.y62{bottom:396.219000px;}
.y139{bottom:398.595000px;}
.y188{bottom:398.775000px;}
.ydd{bottom:400.935000px;}
.y31{bottom:401.799000px;}
.y151{bottom:401.835000px;}
.yac{bottom:404.895000px;}
.y61{bottom:411.699000px;}
.ydc{bottom:415.695000px;}
.y30{bottom:415.839000px;}
.y138{bottom:415.875000px;}
.y187{bottom:416.055000px;}
.y150{bottom:419.835000px;}
.yab{bottom:422.175000px;}
.y60{bottom:427.359000px;}
.y2f{bottom:429.879000px;}
.y137{bottom:432.975000px;}
.y186{bottom:433.335000px;}
.ydb{bottom:434.415000px;}
.yaa{bottom:439.455000px;}
.y5f{bottom:442.839000px;}
.y2e{bottom:443.919000px;}
.y136{bottom:450.255000px;}
.y185{bottom:450.615000px;}
.yda{bottom:455.655000px;}
.ya9{bottom:456.555000px;}
.y2d{bottom:457.959000px;}
.y5e{bottom:458.319000px;}
.y14f{bottom:458.355000px;}
.y135{bottom:467.535000px;}
.y184{bottom:467.895000px;}
.y2c{bottom:472.179000px;}
.yd9{bottom:472.935000px;}
.y5d{bottom:473.799000px;}
.ya8{bottom:473.835000px;}
.y14e{bottom:475.635000px;}
.y134{bottom:482.295000px;}
.y183{bottom:485.175000px;}
.y2b{bottom:486.219000px;}
.yd8{bottom:487.695000px;}
.y5c{bottom:489.459000px;}
.ya7{bottom:491.115000px;}
.y14d{bottom:492.915000px;}
.y2a{bottom:500.289000px;}
.y182{bottom:502.275000px;}
.y5b{bottom:504.969000px;}
.yd7{bottom:504.975000px;}
.ya6{bottom:508.395000px;}
.y14c{bottom:510.195000px;}
.y29{bottom:514.329000px;}
.y181{bottom:519.555000px;}
.y5a{bottom:520.449000px;}
.yd5{bottom:522.255000px;}
.ya5{bottom:525.675000px;}
.y14b{bottom:527.475000px;}
.y28{bottom:528.369000px;}
.y131{bottom:534.855000px;}
.y59{bottom:535.929000px;}
.y106{bottom:536.835000px;}
.y27{bottom:542.409000px;}
.ya4{bottom:542.955000px;}
.yd4{bottom:544.215000px;}
.y14a{bottom:544.575000px;}
.y58{bottom:551.589000px;}
.y133{bottom:552.855000px;}
.y105{bottom:554.115000px;}
.y26{bottom:556.629000px;}
.y149{bottom:558.615000px;}
.ya3{bottom:560.055000px;}
.yd3{bottom:561.315000px;}
.y57{bottom:567.069000px;}
.y25{bottom:570.669000px;}
.y132{bottom:570.855000px;}
.y104{bottom:571.395000px;}
.ya2{bottom:577.335000px;}
.yd2{bottom:578.595000px;}
.y56{bottom:582.549000px;}
.y180{bottom:588.495000px;}
.y103{bottom:588.675000px;}
.y12b{bottom:588.855000px;}
.ya1{bottom:594.615000px;}
.yd1{bottom:596.595000px;}
.y24{bottom:598.029000px;}
.yfe{bottom:603.435000px;}
.y17f{bottom:605.775000px;}
.y23{bottom:609.189000px;}
.ya0{bottom:611.895000px;}
.y55{bottom:613.689000px;}
.y22{bottom:620.529000px;}
.y102{bottom:621.435000px;}
.y17e{bottom:623.055000px;}
.y12f{bottom:624.135000px;}
.y54{bottom:629.169000px;}
.y9f{bottom:629.175000px;}
.y21{bottom:631.689000px;}
.yd0{bottom:635.115000px;}
.y100{bottom:639.435000px;}
.y17d{bottom:640.365000px;}
.y12d{bottom:642.165000px;}
.y20{bottom:642.849000px;}
.y53{bottom:644.649000px;}
.y9e{bottom:646.485000px;}
.ycf{bottom:652.425000px;}
.y1f{bottom:654.189000px;}
.yfa{bottom:657.465000px;}
.y17c{bottom:657.645000px;}
.y52{bottom:660.129000px;}
.y12a{bottom:660.165000px;}
.y9d{bottom:663.585000px;}
.y1e{bottom:665.349000px;}
.yce{bottom:669.705000px;}
.y17b{bottom:674.925000px;}
.yfd{bottom:675.465000px;}
.y51{bottom:675.789000px;}
.y1d{bottom:676.509000px;}
.y9c{bottom:680.865000px;}
.y129{bottom:681.405000px;}
.ycd{bottom:686.985000px;}
.y1c{bottom:687.669000px;}
.y50{bottom:691.269000px;}
.y17a{bottom:692.025000px;}
.yfc{bottom:693.465000px;}
.y127{bottom:695.265000px;}
.y9b{bottom:698.145000px;}
.y1b{bottom:699.009000px;}
.ycc{bottom:704.085000px;}
.y4f{bottom:706.749000px;}
.y4e{bottom:708.009000px;}
.y179{bottom:709.305000px;}
.y1a{bottom:710.169000px;}
.yf7{bottom:711.465000px;}
.y9a{bottom:715.425000px;}
.ycb{bottom:721.365000px;}
.y178{bottom:726.585000px;}
.y99{bottom:732.705000px;}
.yca{bottom:738.645000px;}
.y177{bottom:743.865000px;}
.y98{bottom:749.805000px;}
.yc9{bottom:755.925000px;}
.y176{bottom:761.145000px;}
.y148{bottom:766.725000px;}
.y97{bottom:767.085000px;}
.yc8{bottom:773.205000px;}
.y175{bottom:778.425000px;}
.y147{bottom:784.005000px;}
.y96{bottom:784.365000px;}
.yc7{bottom:790.485000px;}
.y174{bottom:795.525000px;}
.y146{bottom:801.105000px;}
.y95{bottom:801.645000px;}
.yc6{bottom:807.585000px;}
.y173{bottom:812.805000px;}
.y145{bottom:818.385000px;}
.y94{bottom:818.925000px;}
.yc5{bottom:824.865000px;}
.y172{bottom:830.085000px;}
.y144{bottom:835.665000px;}
.y93{bottom:836.205000px;}
.yc4{bottom:842.865000px;}
.y171{bottom:847.365000px;}
.y143{bottom:852.945000px;}
.y92{bottom:853.305000px;}
.yc3{bottom:862.845000px;}
.y170{bottom:864.645000px;}
.y17{bottom:867.525000px;}
.y91{bottom:870.585000px;}
.y142{bottom:870.945000px;}
.yc2{bottom:880.845000px;}
.y16f{bottom:881.925000px;}
.y14{bottom:882.285000px;}
.y90{bottom:887.865000px;}
.y141{bottom:890.925000px;}
.y16e{bottom:899.070000px;}
.y140{bottom:904.830000px;}
.y8f{bottom:905.190000px;}
.y13{bottom:906.090000px;}
.y16d{bottom:916.350000px;}
.y12{bottom:921.570000px;}
.y8e{bottom:922.470000px;}
.y16c{bottom:933.630000px;}
.y8d{bottom:939.750000px;}
.y11{bottom:941.910000px;}
.y16b{bottom:950.910000px;}
.y10{bottom:954.690000px;}
.y8c{bottom:956.850000px;}
.y16a{bottom:968.190000px;}
.yf{bottom:971.970000px;}
.y8b{bottom:974.130000px;}
.y169{bottom:985.290000px;}
.ye{bottom:989.070000px;}
.y8a{bottom:991.410000px;}
.y168{bottom:1002.570000px;}
.y89{bottom:1008.690000px;}
.yd{bottom:1010.850000px;}
.y126{bottom:1012.110000px;}
.y167{bottom:1019.850000px;}
.yc{bottom:1023.630000px;}
.y88{bottom:1025.970000px;}
.y125{bottom:1029.390000px;}
.y166{bottom:1037.130000px;}
.yb{bottom:1040.910000px;}
.y87{bottom:1043.070000px;}
.y124{bottom:1046.670000px;}
.y165{bottom:1054.410000px;}
.ya{bottom:1058.190000px;}
.y86{bottom:1060.350000px;}
.y123{bottom:1063.770000px;}
.y164{bottom:1071.690000px;}
.y9{bottom:1076.730000px;}
.yf6{bottom:1077.630000px;}
.y122{bottom:1083.570000px;}
.y163{bottom:1088.790000px;}
.y85{bottom:1094.910000px;}
.y8{bottom:1100.850000px;}
.y121{bottom:1103.550000px;}
.yc1{bottom:1106.070000px;}
.y84{bottom:1112.190000px;}
.yc0{bottom:1123.350000px;}
.y5{bottom:1124.430000px;}
.y83{bottom:1129.470000px;}
.y2{bottom:1141.170000px;}
.ybf{bottom:1141.350000px;}
.y80{bottom:1146.600000px;}
.ybc{bottom:1158.120000px;}
.y7d{bottom:1160.640000px;}
.y1{bottom:1191.240000px;}
.y7c{bottom:1206.540000px;}
.hb{height:14.040000px;}
.h16{height:17.100000px;}
.h24{height:17.136000px;}
.h14{height:17.280000px;}
.h20{height:17.316000px;}
.h1e{height:17.640000px;}
.h18{height:18.000000px;}
.h13{height:18.720000px;}
.h12{height:18.900000px;}
.h1d{height:19.800000px;}
.h1a{height:20.160000px;}
.h8{height:20.736000px;}
.h2e{height:21.240000px;}
.h17{height:21.960000px;}
.h1b{height:30.780000px;}
.h2b{height:34.380000px;}
.hf{height:35.194219px;}
.h2d{height:37.260000px;}
.he{height:40.550625px;}
.hc{height:40.655391px;}
.h11{height:42.660000px;}
.h3{height:43.056000px;}
.h2f{height:43.681992px;}
.h7{height:44.327813px;}
.ha{height:47.321367px;}
.h21{height:51.660000px;}
.h19{height:51.840000px;}
.h22{height:53.100000px;}
.h23{height:53.136000px;}
.h2c{height:53.280000px;}
.h1f{height:53.316000px;}
.h4{height:56.320312px;}
.h1c{height:56.340000px;}
.h27{height:56.470500px;}
.h15{height:61.423863px;}
.h10{height:62.211094px;}
.h5{height:62.327813px;}
.h2a{height:70.416000px;}
.h9{height:70.628906px;}
.h2{height:74.004654px;}
.h6{height:87.859687px;}
.h28{height:112.640625px;}
.h26{height:299.700000px;}
.h29{height:313.590000px;}
.h25{height:351.570000px;}
.hd{height:719.355000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:31.860000px;}
.w8{width:38.880000px;}
.wc{width:53.676000px;}
.wf{width:58.536000px;}
.w1c{width:59.580000px;}
.w1a{width:62.136000px;}
.w16{width:63.576000px;}
.w17{width:63.900000px;}
.w1d{width:63.936000px;}
.w19{width:66.060000px;}
.w26{width:67.140000px;}
.w1b{width:69.660000px;}
.w12{width:74.340000px;}
.w18{width:74.376000px;}
.w1e{width:75.420000px;}
.w1f{width:78.876000px;}
.w28{width:84.960000px;}
.w14{width:85.356000px;}
.w11{width:86.400000px;}
.wd{width:90.000000px;}
.w27{width:92.556000px;}
.w2a{width:95.616000px;}
.w15{width:105.300000px;}
.w23{width:106.416000px;}
.w10{width:114.840000px;}
.we{width:117.000000px;}
.w2c{width:117.036000px;}
.w9{width:129.960000px;}
.w2b{width:138.240000px;}
.w25{width:138.276000px;}
.wa{width:141.696000px;}
.wb{width:148.860000px;}
.w29{width:177.510000px;}
.w5{width:215.355000px;}
.w24{width:255.270000px;}
.w13{width:329.655000px;}
.w3{width:357.915000px;}
.w22{width:360.795000px;}
.w4{width:365.115000px;}
.w7{width:446.655000px;}
.w21{width:509.400000px;}
.w20{width:536.325000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:4.500000px;}
.x2{left:8.136000px;}
.x17{left:9.720000px;}
.x3d{left:11.565000px;}
.x29{left:12.600000px;}
.x23{left:13.860000px;}
.xf{left:15.840000px;}
.x2e{left:17.640000px;}
.x22{left:19.110000px;}
.x43{left:20.160000px;}
.x27{left:21.420000px;}
.x2b{left:22.680000px;}
.x3a{left:23.760000px;}
.x2c{left:25.560000px;}
.x34{left:27.720000px;}
.x2f{left:29.160000px;}
.x36{left:30.960000px;}
.x24{left:32.400000px;}
.x4d{left:34.590000px;}
.x20{left:36.540000px;}
.x39{left:38.880000px;}
.x21{left:40.860000px;}
.x1a{left:49.170000px;}
.x62{left:50.220000px;}
.x4e{left:53.715000px;}
.x47{left:82.620000px;}
.x1{left:85.499987px;}
.x31{left:93.105000px;}
.xa{left:94.535987px;}
.x2a{left:106.056000px;}
.x11{left:107.670000px;}
.x48{left:124.050000px;}
.x14{left:128.015987px;}
.x1d{left:155.009987px;}
.x15{left:159.869987px;}
.x4b{left:167.220000px;}
.x44{left:178.230000px;}
.x4f{left:185.325000px;}
.x5{left:188.670000px;}
.x2d{left:192.450000px;}
.x4{left:205.230000px;}
.x3b{left:208.830000px;}
.x5e{left:218.010000px;}
.x49{left:219.885000px;}
.x12{left:223.230000px;}
.xb{left:245.009987px;}
.x9{left:257.069987px;}
.x4c{left:261.795000px;}
.x53{left:265.710000px;}
.x30{left:266.790000px;}
.x46{left:268.245000px;}
.xc{left:272.549987px;}
.x3c{left:274.890000px;}
.x51{left:280.515000px;}
.x16{left:291.315000px;}
.x4a{left:297.750000px;}
.xe{left:300.315000px;}
.xd{left:301.934987px;}
.x25{left:304.454987px;}
.x5f{left:313.635000px;}
.x5b{left:324.255000px;}
.x18{left:330.195000px;}
.x10{left:332.175000px;}
.x1c{left:333.974987px;}
.x3e{left:337.035000px;}
.x59{left:362.234987px;}
.x57{left:368.894987px;}
.x54{left:372.135000px;}
.x7{left:382.394987px;}
.x52{left:389.774987px;}
.x5c{left:391.395000px;}
.x35{left:394.275000px;}
.x3f{left:406.695000px;}
.x26{left:418.395000px;}
.x6{left:434.054987px;}
.x50{left:438.120000px;}
.x3{left:443.415000px;}
.x8{left:446.474987px;}
.x1e{left:449.175000px;}
.x60{left:451.875000px;}
.x19{left:460.155000px;}
.x40{left:466.275000px;}
.x37{left:468.645000px;}
.x28{left:476.925000px;}
.x5d{left:483.945000px;}
.x1b{left:494.744987px;}
.x1f{left:502.845000px;}
.x55{left:510.405000px;}
.x45{left:522.840000px;}
.x41{left:530.205000px;}
.x38{left:532.545000px;}
.x61{left:558.285000px;}
.x5a{left:581.504987px;}
.x56{left:582.584987px;}
.x58{left:587.084987px;}
.x32{left:596.445000px;}
.x42{left:605.625000px;}
.x33{left:681.810000px;}
@media print{
.v6{vertical-align:-64.000000pt;}
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-47.360000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.272533pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls9{letter-spacing:-0.011520pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.047360pt;}
.ls24{letter-spacing:0.080640pt;}
.ls0{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.338133pt;}
.ls13{letter-spacing:0.544000pt;}
.ls21{letter-spacing:0.545280pt;}
.ls8{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.592640pt;}
.lsd{letter-spacing:5.712640pt;}
.ls4{letter-spacing:9.056000pt;}
.lse{letter-spacing:10.192640pt;}
.ls23{letter-spacing:32.592640pt;}
.ls25{letter-spacing:47.312640pt;}
.ls20{letter-spacing:62.032640pt;}
.ls22{letter-spacing:76.752640pt;}
.ls16{letter-spacing:85.712640pt;}
.ls18{letter-spacing:135.168000pt;}
.lsc{letter-spacing:136.400640pt;}
.ls1e{letter-spacing:152.448000pt;}
.ls3{letter-spacing:168.930987pt;}
.ls15{letter-spacing:581.232640pt;}
.ls1f{letter-spacing:791.899307pt;}
.ls17{letter-spacing:868.571307pt;}
.ls10{letter-spacing:1083.786667pt;}
.wsc{word-spacing:-15.359360pt;}
.wsb{word-spacing:-15.311360pt;}
.wsd{word-spacing:-14.814720pt;}
.ws3{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.672427pt;}
.wse{word-spacing:-14.536427pt;}
.ws10{word-spacing:-13.488000pt;}
.wsf{word-spacing:-13.379584pt;}
.ws8{word-spacing:-13.344000pt;}
.ws4{word-spacing:-9.615360pt;}
.ws2{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.596160pt;}
.ws1{word-spacing:-9.592320pt;}
.ws7{word-spacing:-9.433600pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:226.837333pt;}
._1d{margin-left:-3.687040pt;}
._b{margin-left:-2.592000pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.104000pt;}
._15{width:2.549760pt;}
._2{width:3.482453pt;}
._9{width:4.389547pt;}
._8{width:5.328000pt;}
._16{width:6.268160pt;}
._4{width:7.160960pt;}
._10{width:8.410667pt;}
._f{width:9.456000pt;}
._d{width:11.328000pt;}
._c{width:12.432000pt;}
._20{width:13.667840pt;}
._3{width:14.573440pt;}
._e{width:15.522560pt;}
._5{width:17.280000pt;}
._a{width:18.240000pt;}
._22{width:19.670400pt;}
._7{width:21.072000pt;}
._6{width:22.416000pt;}
._17{width:24.647680pt;}
._13{width:27.920000pt;}
._12{width:29.136000pt;}
._11{width:32.832000pt;}
._2c{width:34.096427pt;}
._19{width:47.986347pt;}
._1b{width:62.848640pt;}
._25{width:65.614720pt;}
._26{width:67.371307pt;}
._2a{width:70.076800pt;}
._2b{width:71.127680pt;}
._27{width:73.199360pt;}
._28{width:74.738347pt;}
._1e{width:78.373333pt;}
._29{width:85.416960pt;}
._18{width:92.288427pt;}
._14{width:106.865920pt;}
._1a{width:136.400640pt;}
._24{width:241.844693pt;}
._23{width:242.864640pt;}
._1c{width:855.211947pt;}
._21{width:1814.322133pt;}
._1f{width:2103.419307pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.400000pt;}
.y79{bottom:2.554667pt;}
.yb4{bottom:2.880000pt;}
.y101{bottom:2.906667pt;}
.yf4{bottom:2.912000pt;}
.yf0{bottom:3.360000pt;}
.y15{bottom:3.520000pt;}
.yaf{bottom:3.680000pt;}
.y12e{bottom:4.000000pt;}
.yb2{bottom:4.160000pt;}
.yb0{bottom:4.320000pt;}
.yee{bottom:5.120000pt;}
.ye9{bottom:5.440000pt;}
.y158{bottom:6.400000pt;}
.yd6{bottom:7.040000pt;}
.ybe{bottom:7.680000pt;}
.y7f{bottom:7.840000pt;}
.y4{bottom:7.866667pt;}
.y4d{bottom:8.474667pt;}
.y16{bottom:8.480000pt;}
.y82{bottom:11.360000pt;}
.y11e{bottom:12.666667pt;}
.yea{bottom:15.040000pt;}
.y78{bottom:16.474667pt;}
.yf9{bottom:18.080000pt;}
.ye7{bottom:18.240000pt;}
.yf2{bottom:18.880000pt;}
.y130{bottom:19.360000pt;}
.yec{bottom:20.320000pt;}
.y156{bottom:20.640000pt;}
.y155{bottom:20.800000pt;}
.y4c{bottom:20.954667pt;}
.ybd{bottom:21.440000pt;}
.y7e{bottom:21.600000pt;}
.y3{bottom:21.786667pt;}
.y7{bottom:26.560000pt;}
.y81{bottom:29.120000pt;}
.y77{bottom:30.234667pt;}
.y11c{bottom:30.373333pt;}
.y128{bottom:30.720000pt;}
.y4b{bottom:33.274667pt;}
.yf8{bottom:33.440000pt;}
.ye6{bottom:33.600000pt;}
.yfb{bottom:34.880000pt;}
.yff{bottom:34.906667pt;}
.y76{bottom:43.994667pt;}
.y6{bottom:44.320000pt;}
.y4a{bottom:44.474667pt;}
.y114{bottom:44.666667pt;}
.y108{bottom:45.920000pt;}
.y12c{bottom:50.266667pt;}
.y49{bottom:56.954667pt;}
.y75{bottom:57.754667pt;}
.y10e{bottom:60.160000pt;}
.y48{bottom:69.434667pt;}
.y74{bottom:71.674667pt;}
.y115{bottom:73.853333pt;}
.y47{bottom:81.914667pt;}
.y11d{bottom:83.293333pt;}
.y73{bottom:85.434667pt;}
.yf1{bottom:85.440000pt;}
.y7b{bottom:88.000000pt;}
.y162{bottom:90.080000pt;}
.y13f{bottom:91.200000pt;}
.y46{bottom:94.554667pt;}
.y72{bottom:99.194667pt;}
.yf5{bottom:101.440000pt;}
.y116{bottom:103.040000pt;}
.y7a{bottom:103.200000pt;}
.y10c{bottom:103.360000pt;}
.y161{bottom:105.440000pt;}
.y13e{bottom:106.560000pt;}
.y45{bottom:107.034667pt;}
.y111{bottom:108.480000pt;}
.y120{bottom:108.706667pt;}
.y71{bottom:112.954667pt;}
.y10f{bottom:115.546667pt;}
.yf3{bottom:117.440000pt;}
.y10b{bottom:118.560000pt;}
.y44{bottom:119.514667pt;}
.y160{bottom:120.832000pt;}
.y13d{bottom:121.792000pt;}
.y70{bottom:126.874667pt;}
.y19{bottom:131.712000pt;}
.y43{bottom:131.994667pt;}
.y117{bottom:132.226667pt;}
.yeb{bottom:133.466667pt;}
.y10a{bottom:133.946667pt;}
.y13c{bottom:137.786667pt;}
.y11f{bottom:139.453333pt;}
.y6f{bottom:140.634667pt;}
.y42{bottom:144.474667pt;}
.y109{bottom:149.306667pt;}
.yef{bottom:149.946667pt;}
.y15f{bottom:151.386667pt;}
.y6e{bottom:154.394667pt;}
.y13b{bottom:155.546667pt;}
.y41{bottom:156.954667pt;}
.y118{bottom:161.413333pt;}
.y107{bottom:161.786667pt;}
.y112{bottom:163.066667pt;}
.yed{bottom:165.946667pt;}
.y15e{bottom:166.746667pt;}
.ybb{bottom:168.026667pt;}
.y6d{bottom:168.154667pt;}
.y40{bottom:169.434667pt;}
.y3f{bottom:182.074667pt;}
.y15d{bottom:182.106667pt;}
.yba{bottom:183.386667pt;}
.ye5{bottom:184.186667pt;}
.y119{bottom:190.586667pt;}
.y3e{bottom:194.554667pt;}
.y6c{bottom:195.834667pt;}
.y15c{bottom:197.466667pt;}
.y110{bottom:198.333333pt;}
.yb9{bottom:198.746667pt;}
.y3d{bottom:207.034667pt;}
.y10d{bottom:208.000000pt;}
.y6b{bottom:209.594667pt;}
.ye8{bottom:212.346667pt;}
.y15b{bottom:212.826667pt;}
.yb8{bottom:213.946667pt;}
.y3c{bottom:219.554667pt;}
.y11a{bottom:219.773333pt;}
.y6a{bottom:223.394667pt;}
.y15a{bottom:228.026667pt;}
.yb7{bottom:229.306667pt;}
.y113{bottom:231.226667pt;}
.y3b{bottom:232.034667pt;}
.y69{bottom:237.314667pt;}
.y159{bottom:243.386667pt;}
.y3a{bottom:244.514667pt;}
.yb6{bottom:244.666667pt;}
.y11b{bottom:248.960000pt;}
.ye4{bottom:249.146667pt;}
.y68{bottom:251.074667pt;}
.y157{bottom:256.506667pt;}
.y39{bottom:257.154667pt;}
.yb5{bottom:260.026667pt;}
.ye3{bottom:264.346667pt;}
.y67{bottom:264.834667pt;}
.y38{bottom:269.634667pt;}
.yb3{bottom:273.146667pt;}
.y154{bottom:276.026667pt;}
.y18d{bottom:277.786667pt;}
.y66{bottom:278.594667pt;}
.ye2{bottom:279.706667pt;}
.y37{bottom:282.114667pt;}
.yb1{bottom:288.506667pt;}
.y65{bottom:292.354667pt;}
.y18c{bottom:293.146667pt;}
.y36{bottom:294.594667pt;}
.ye1{bottom:295.066667pt;}
.yae{bottom:305.786667pt;}
.y35{bottom:307.074667pt;}
.y18b{bottom:308.506667pt;}
.ye0{bottom:310.426667pt;}
.y153{bottom:312.826667pt;}
.y34{bottom:319.554667pt;}
.y18a{bottom:323.866667pt;}
.y64{bottom:324.674667pt;}
.ydf{bottom:325.786667pt;}
.y152{bottom:328.026667pt;}
.y33{bottom:332.194667pt;}
.y63{bottom:338.434667pt;}
.y13a{bottom:338.906667pt;}
.y189{bottom:339.226667pt;}
.yde{bottom:341.146667pt;}
.yad{bottom:342.106667pt;}
.y32{bottom:344.674667pt;}
.y62{bottom:352.194667pt;}
.y139{bottom:354.306667pt;}
.y188{bottom:354.466667pt;}
.ydd{bottom:356.386667pt;}
.y31{bottom:357.154667pt;}
.y151{bottom:357.186667pt;}
.yac{bottom:359.906667pt;}
.y61{bottom:365.954667pt;}
.ydc{bottom:369.506667pt;}
.y30{bottom:369.634667pt;}
.y138{bottom:369.666667pt;}
.y187{bottom:369.826667pt;}
.y150{bottom:373.186667pt;}
.yab{bottom:375.266667pt;}
.y60{bottom:379.874667pt;}
.y2f{bottom:382.114667pt;}
.y137{bottom:384.866667pt;}
.y186{bottom:385.186667pt;}
.ydb{bottom:386.146667pt;}
.yaa{bottom:390.626667pt;}
.y5f{bottom:393.634667pt;}
.y2e{bottom:394.594667pt;}
.y136{bottom:400.226667pt;}
.y185{bottom:400.546667pt;}
.yda{bottom:405.026667pt;}
.ya9{bottom:405.826667pt;}
.y2d{bottom:407.074667pt;}
.y5e{bottom:407.394667pt;}
.y14f{bottom:407.426667pt;}
.y135{bottom:415.586667pt;}
.y184{bottom:415.906667pt;}
.y2c{bottom:419.714667pt;}
.yd9{bottom:420.386667pt;}
.y5d{bottom:421.154667pt;}
.ya8{bottom:421.186667pt;}
.y14e{bottom:422.786667pt;}
.y134{bottom:428.706667pt;}
.y183{bottom:431.266667pt;}
.y2b{bottom:432.194667pt;}
.yd8{bottom:433.506667pt;}
.y5c{bottom:435.074667pt;}
.ya7{bottom:436.546667pt;}
.y14d{bottom:438.146667pt;}
.y2a{bottom:444.701333pt;}
.y182{bottom:446.466667pt;}
.y5b{bottom:448.861333pt;}
.yd7{bottom:448.866667pt;}
.ya6{bottom:451.906667pt;}
.y14c{bottom:453.506667pt;}
.y29{bottom:457.181333pt;}
.y181{bottom:461.826667pt;}
.y5a{bottom:462.621333pt;}
.yd5{bottom:464.226667pt;}
.ya5{bottom:467.266667pt;}
.y14b{bottom:468.866667pt;}
.y28{bottom:469.661333pt;}
.y131{bottom:475.426667pt;}
.y59{bottom:476.381333pt;}
.y106{bottom:477.186667pt;}
.y27{bottom:482.141333pt;}
.ya4{bottom:482.626667pt;}
.yd4{bottom:483.746667pt;}
.y14a{bottom:484.066667pt;}
.y58{bottom:490.301333pt;}
.y133{bottom:491.426667pt;}
.y105{bottom:492.546667pt;}
.y26{bottom:494.781333pt;}
.y149{bottom:496.546667pt;}
.ya3{bottom:497.826667pt;}
.yd3{bottom:498.946667pt;}
.y57{bottom:504.061333pt;}
.y25{bottom:507.261333pt;}
.y132{bottom:507.426667pt;}
.y104{bottom:507.906667pt;}
.ya2{bottom:513.186667pt;}
.yd2{bottom:514.306667pt;}
.y56{bottom:517.821333pt;}
.y180{bottom:523.106667pt;}
.y103{bottom:523.266667pt;}
.y12b{bottom:523.426667pt;}
.ya1{bottom:528.546667pt;}
.yd1{bottom:530.306667pt;}
.y24{bottom:531.581333pt;}
.yfe{bottom:536.386667pt;}
.y17f{bottom:538.466667pt;}
.y23{bottom:541.501333pt;}
.ya0{bottom:543.906667pt;}
.y55{bottom:545.501333pt;}
.y22{bottom:551.581333pt;}
.y102{bottom:552.386667pt;}
.y17e{bottom:553.826667pt;}
.y12f{bottom:554.786667pt;}
.y54{bottom:559.261333pt;}
.y9f{bottom:559.266667pt;}
.y21{bottom:561.501333pt;}
.yd0{bottom:564.546667pt;}
.y100{bottom:568.386667pt;}
.y17d{bottom:569.213333pt;}
.y12d{bottom:570.813333pt;}
.y20{bottom:571.421333pt;}
.y53{bottom:573.021333pt;}
.y9e{bottom:574.653333pt;}
.ycf{bottom:579.933333pt;}
.y1f{bottom:581.501333pt;}
.yfa{bottom:584.413333pt;}
.y17c{bottom:584.573333pt;}
.y52{bottom:586.781333pt;}
.y12a{bottom:586.813333pt;}
.y9d{bottom:589.853333pt;}
.y1e{bottom:591.421333pt;}
.yce{bottom:595.293333pt;}
.y17b{bottom:599.933333pt;}
.yfd{bottom:600.413333pt;}
.y51{bottom:600.701333pt;}
.y1d{bottom:601.341333pt;}
.y9c{bottom:605.213333pt;}
.y129{bottom:605.693333pt;}
.ycd{bottom:610.653333pt;}
.y1c{bottom:611.261333pt;}
.y50{bottom:614.461333pt;}
.y17a{bottom:615.133333pt;}
.yfc{bottom:616.413333pt;}
.y127{bottom:618.013333pt;}
.y9b{bottom:620.573333pt;}
.y1b{bottom:621.341333pt;}
.ycc{bottom:625.853333pt;}
.y4f{bottom:628.221333pt;}
.y4e{bottom:629.341333pt;}
.y179{bottom:630.493333pt;}
.y1a{bottom:631.261333pt;}
.yf7{bottom:632.413333pt;}
.y9a{bottom:635.933333pt;}
.ycb{bottom:641.213333pt;}
.y178{bottom:645.853333pt;}
.y99{bottom:651.293333pt;}
.yca{bottom:656.573333pt;}
.y177{bottom:661.213333pt;}
.y98{bottom:666.493333pt;}
.yc9{bottom:671.933333pt;}
.y176{bottom:676.573333pt;}
.y148{bottom:681.533333pt;}
.y97{bottom:681.853333pt;}
.yc8{bottom:687.293333pt;}
.y175{bottom:691.933333pt;}
.y147{bottom:696.893333pt;}
.y96{bottom:697.213333pt;}
.yc7{bottom:702.653333pt;}
.y174{bottom:707.133333pt;}
.y146{bottom:712.093333pt;}
.y95{bottom:712.573333pt;}
.yc6{bottom:717.853333pt;}
.y173{bottom:722.493333pt;}
.y145{bottom:727.453333pt;}
.y94{bottom:727.933333pt;}
.yc5{bottom:733.213333pt;}
.y172{bottom:737.853333pt;}
.y144{bottom:742.813333pt;}
.y93{bottom:743.293333pt;}
.yc4{bottom:749.213333pt;}
.y171{bottom:753.213333pt;}
.y143{bottom:758.173333pt;}
.y92{bottom:758.493333pt;}
.yc3{bottom:766.973333pt;}
.y170{bottom:768.573333pt;}
.y17{bottom:771.133333pt;}
.y91{bottom:773.853333pt;}
.y142{bottom:774.173333pt;}
.yc2{bottom:782.973333pt;}
.y16f{bottom:783.933333pt;}
.y14{bottom:784.253333pt;}
.y90{bottom:789.213333pt;}
.y141{bottom:791.933333pt;}
.y16e{bottom:799.173333pt;}
.y140{bottom:804.293333pt;}
.y8f{bottom:804.613333pt;}
.y13{bottom:805.413333pt;}
.y16d{bottom:814.533333pt;}
.y12{bottom:819.173333pt;}
.y8e{bottom:819.973333pt;}
.y16c{bottom:829.893333pt;}
.y8d{bottom:835.333333pt;}
.y11{bottom:837.253333pt;}
.y16b{bottom:845.253333pt;}
.y10{bottom:848.613333pt;}
.y8c{bottom:850.533333pt;}
.y16a{bottom:860.613333pt;}
.yf{bottom:863.973333pt;}
.y8b{bottom:865.893333pt;}
.y169{bottom:875.813333pt;}
.ye{bottom:879.173333pt;}
.y8a{bottom:881.253333pt;}
.y168{bottom:891.173333pt;}
.y89{bottom:896.613333pt;}
.yd{bottom:898.533333pt;}
.y126{bottom:899.653333pt;}
.y167{bottom:906.533333pt;}
.yc{bottom:909.893333pt;}
.y88{bottom:911.973333pt;}
.y125{bottom:915.013333pt;}
.y166{bottom:921.893333pt;}
.yb{bottom:925.253333pt;}
.y87{bottom:927.173333pt;}
.y124{bottom:930.373333pt;}
.y165{bottom:937.253333pt;}
.ya{bottom:940.613333pt;}
.y86{bottom:942.533333pt;}
.y123{bottom:945.573333pt;}
.y164{bottom:952.613333pt;}
.y9{bottom:957.093333pt;}
.yf6{bottom:957.893333pt;}
.y122{bottom:963.173333pt;}
.y163{bottom:967.813333pt;}
.y85{bottom:973.253333pt;}
.y8{bottom:978.533333pt;}
.y121{bottom:980.933333pt;}
.yc1{bottom:983.173333pt;}
.y84{bottom:988.613333pt;}
.yc0{bottom:998.533333pt;}
.y5{bottom:999.493333pt;}
.y83{bottom:1003.973333pt;}
.y2{bottom:1014.373333pt;}
.ybf{bottom:1014.533333pt;}
.y80{bottom:1019.200000pt;}
.ybc{bottom:1029.440000pt;}
.y7d{bottom:1031.680000pt;}
.y1{bottom:1058.880000pt;}
.y7c{bottom:1072.480000pt;}
.hb{height:12.480000pt;}
.h16{height:15.200000pt;}
.h24{height:15.232000pt;}
.h14{height:15.360000pt;}
.h20{height:15.392000pt;}
.h1e{height:15.680000pt;}
.h18{height:16.000000pt;}
.h13{height:16.640000pt;}
.h12{height:16.800000pt;}
.h1d{height:17.600000pt;}
.h1a{height:17.920000pt;}
.h8{height:18.432000pt;}
.h2e{height:18.880000pt;}
.h17{height:19.520000pt;}
.h1b{height:27.360000pt;}
.h2b{height:30.560000pt;}
.hf{height:31.283750pt;}
.h2d{height:33.120000pt;}
.he{height:36.045000pt;}
.hc{height:36.138125pt;}
.h11{height:37.920000pt;}
.h3{height:38.272000pt;}
.h2f{height:38.828437pt;}
.h7{height:39.402500pt;}
.ha{height:42.063437pt;}
.h21{height:45.920000pt;}
.h19{height:46.080000pt;}
.h22{height:47.200000pt;}
.h23{height:47.232000pt;}
.h2c{height:47.360000pt;}
.h1f{height:47.392000pt;}
.h4{height:50.062500pt;}
.h1c{height:50.080000pt;}
.h27{height:50.196000pt;}
.h15{height:54.598989pt;}
.h10{height:55.298750pt;}
.h5{height:55.402500pt;}
.h2a{height:62.592000pt;}
.h9{height:62.781250pt;}
.h2{height:65.781915pt;}
.h6{height:78.097500pt;}
.h28{height:100.125000pt;}
.h26{height:266.400000pt;}
.h29{height:278.746667pt;}
.h25{height:312.506667pt;}
.hd{height:639.426667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:28.320000pt;}
.w8{width:34.560000pt;}
.wc{width:47.712000pt;}
.wf{width:52.032000pt;}
.w1c{width:52.960000pt;}
.w1a{width:55.232000pt;}
.w16{width:56.512000pt;}
.w17{width:56.800000pt;}
.w1d{width:56.832000pt;}
.w19{width:58.720000pt;}
.w26{width:59.680000pt;}
.w1b{width:61.920000pt;}
.w12{width:66.080000pt;}
.w18{width:66.112000pt;}
.w1e{width:67.040000pt;}
.w1f{width:70.112000pt;}
.w28{width:75.520000pt;}
.w14{width:75.872000pt;}
.w11{width:76.800000pt;}
.wd{width:80.000000pt;}
.w27{width:82.272000pt;}
.w2a{width:84.992000pt;}
.w15{width:93.600000pt;}
.w23{width:94.592000pt;}
.w10{width:102.080000pt;}
.we{width:104.000000pt;}
.w2c{width:104.032000pt;}
.w9{width:115.520000pt;}
.w2b{width:122.880000pt;}
.w25{width:122.912000pt;}
.wa{width:125.952000pt;}
.wb{width:132.320000pt;}
.w29{width:157.786667pt;}
.w5{width:191.426667pt;}
.w24{width:226.906667pt;}
.w13{width:293.026667pt;}
.w3{width:318.146667pt;}
.w22{width:320.706667pt;}
.w4{width:324.546667pt;}
.w7{width:397.026667pt;}
.w21{width:452.800000pt;}
.w20{width:476.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.000000pt;}
.x2{left:7.232000pt;}
.x17{left:8.640000pt;}
.x3d{left:10.280000pt;}
.x29{left:11.200000pt;}
.x23{left:12.320000pt;}
.xf{left:14.080000pt;}
.x2e{left:15.680000pt;}
.x22{left:16.986667pt;}
.x43{left:17.920000pt;}
.x27{left:19.040000pt;}
.x2b{left:20.160000pt;}
.x3a{left:21.120000pt;}
.x2c{left:22.720000pt;}
.x34{left:24.640000pt;}
.x2f{left:25.920000pt;}
.x36{left:27.520000pt;}
.x24{left:28.800000pt;}
.x4d{left:30.746667pt;}
.x20{left:32.480000pt;}
.x39{left:34.560000pt;}
.x21{left:36.320000pt;}
.x1a{left:43.706667pt;}
.x62{left:44.640000pt;}
.x4e{left:47.746667pt;}
.x47{left:73.440000pt;}
.x1{left:75.999988pt;}
.x31{left:82.760000pt;}
.xa{left:84.031988pt;}
.x2a{left:94.272000pt;}
.x11{left:95.706667pt;}
.x48{left:110.266667pt;}
.x14{left:113.791988pt;}
.x1d{left:137.786655pt;}
.x15{left:142.106655pt;}
.x4b{left:148.640000pt;}
.x44{left:158.426667pt;}
.x4f{left:164.733333pt;}
.x5{left:167.706667pt;}
.x2d{left:171.066667pt;}
.x4{left:182.426667pt;}
.x3b{left:185.626667pt;}
.x5e{left:193.786667pt;}
.x49{left:195.453333pt;}
.x12{left:198.426667pt;}
.xb{left:217.786655pt;}
.x9{left:228.506655pt;}
.x4c{left:232.706667pt;}
.x53{left:236.186667pt;}
.x30{left:237.146667pt;}
.x46{left:238.440000pt;}
.xc{left:242.266655pt;}
.x3c{left:244.346667pt;}
.x51{left:249.346667pt;}
.x16{left:258.946667pt;}
.x4a{left:264.666667pt;}
.xe{left:266.946667pt;}
.xd{left:268.386655pt;}
.x25{left:270.626655pt;}
.x5f{left:278.786667pt;}
.x5b{left:288.226667pt;}
.x18{left:293.506667pt;}
.x10{left:295.266667pt;}
.x1c{left:296.866655pt;}
.x3e{left:299.586667pt;}
.x59{left:321.986655pt;}
.x57{left:327.906655pt;}
.x54{left:330.786667pt;}
.x7{left:339.906655pt;}
.x52{left:346.466655pt;}
.x5c{left:347.906667pt;}
.x35{left:350.466667pt;}
.x3f{left:361.506667pt;}
.x26{left:371.906667pt;}
.x6{left:385.826655pt;}
.x50{left:389.440000pt;}
.x3{left:394.146667pt;}
.x8{left:396.866655pt;}
.x1e{left:399.266667pt;}
.x60{left:401.666667pt;}
.x19{left:409.026667pt;}
.x40{left:414.466667pt;}
.x37{left:416.573333pt;}
.x28{left:423.933333pt;}
.x5d{left:430.173333pt;}
.x1b{left:439.773322pt;}
.x1f{left:446.973333pt;}
.x55{left:453.693333pt;}
.x45{left:464.746667pt;}
.x41{left:471.293333pt;}
.x38{left:473.373333pt;}
.x61{left:496.253333pt;}
.x5a{left:516.893322pt;}
.x56{left:517.853322pt;}
.x58{left:521.853322pt;}
.x32{left:530.173333pt;}
.x42{left:538.333333pt;}
.x33{left:606.053333pt;}
}




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