
    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_ce9d5c6921192865974a7c81.woff2')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_b0d77c9625199bea166a5d8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3ec968fb9c8d34742010823f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_265bd6225557b336cf6f7fc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_180198bb8cf46783ca3bda33.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a439059fdcc22ca56928388a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c880eb8f6f44284a79cafdaf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_a34d731c5c3cd76adf66ee65.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c47961ef694b4160691411c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059082;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_1840a61f8723aa78bf5c3176.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7d767294bd2d8c8e8882c2cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921875;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:ffc;src:url('chunks/assets/font_c51e9570ca2cdc7f22eb34a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929688;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:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-2.520000px;}
.ls9{letter-spacing:-1.980000px;}
.ls6{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.804000px;}
.ls1b{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.427800px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.864000px;}
.ls18{letter-spacing:2.340000px;}
.ls16{letter-spacing:15.300000px;}
.ls2{letter-spacing:52.668000px;}
.ls12{letter-spacing:68.652000px;}
.ls0{letter-spacing:1064.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-54.720000px;}
.wse{word-spacing:-54.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws8{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.374000px;}
.ws7{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.140000px;}
.ws4{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.980000px;}
.wsa{word-spacing:-10.527600px;}
.wsb{word-spacing:-10.185000px;}
.ws2{word-spacing:-9.978240px;}
.wsc{word-spacing:-9.808800px;}
.ws9{word-spacing:0.000000px;}
._2d{margin-left:-7.020000px;}
._19{margin-left:-5.886000px;}
._1c{margin-left:-3.891600px;}
._8{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._9{width:3.770160px;}
._f{width:4.844880px;}
._7{width:5.994000px;}
._10{width:7.776000px;}
._11{width:9.262320px;}
._5{width:11.203680px;}
._e{width:12.474000px;}
._c{width:14.517360px;}
._d{width:16.470000px;}
._b{width:18.243360px;}
._a{width:19.962000px;}
._4{width:21.712320px;}
._13{width:23.328000px;}
._14{width:24.408000px;}
._16{width:25.758000px;}
._1a{width:26.758080px;}
._22{width:27.918000px;}
._12{width:29.646000px;}
._20{width:30.888000px;}
._1f{width:32.445360px;}
._23{width:33.979680px;}
._18{width:35.226720px;}
._17{width:36.526320px;}
._1d{width:37.548000px;}
._1e{width:39.366000px;}
._1b{width:40.878000px;}
._2c{width:42.631200px;}
._26{width:44.078400px;}
._15{width:45.252000px;}
._2b{width:48.096000px;}
._2a{width:49.626000px;}
._29{width:50.976000px;}
._28{width:55.149600px;}
._27{width:56.241360px;}
._21{width:58.428000px;}
._6{width:69.552000px;}
._25{width:71.010000px;}
._24{width:72.148320px;}
._3{width:432.814560px;}
.fc7{color:rgb(31,73,125);}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y27{bottom:5.760000px;}
.y2a{bottom:7.770000px;}
.y29{bottom:25.590000px;}
.y26{bottom:32.580000px;}
.y25{bottom:50.400000px;}
.y60{bottom:58.500000px;}
.y24{bottom:68.220000px;}
.y4{bottom:77.220000px;}
.y23{bottom:86.040000px;}
.yd0{bottom:102.420000px;}
.y165{bottom:102.960000px;}
.y22{bottom:103.860000px;}
.y13c{bottom:104.400000px;}
.y6{bottom:105.120000px;}
.y5e{bottom:108.720000px;}
.y48{bottom:108.900000px;}
.y16{bottom:112.500000px;}
.y198{bottom:117.900000px;}
.y1f7{bottom:118.980000px;}
.y99{bottom:119.880000px;}
.y103{bottom:121.680000px;}
.y21{bottom:121.860000px;}
.y164{bottom:122.040000px;}
.y13b{bottom:122.400000px;}
.y47{bottom:126.720000px;}
.ycf{bottom:131.580000px;}
.y197{bottom:135.720000px;}
.y1f6{bottom:136.980000px;}
.y15{bottom:139.320000px;}
.y20{bottom:139.680000px;}
.y13a{bottom:140.220000px;}
.y163{bottom:140.940000px;}
.y46{bottom:144.540000px;}
.y5d{bottom:144.720000px;}
.y98{bottom:148.500000px;}
.y196{bottom:153.540000px;}
.y1f5{bottom:154.800000px;}
.y1f{bottom:157.500000px;}
.y139{bottom:158.040000px;}
.y162{bottom:160.020000px;}
.yce{bottom:160.740000px;}
.y45{bottom:162.360000px;}
.y1c4{bottom:162.540000px;}
.y14{bottom:166.140000px;}
.y5c{bottom:171.360000px;}
.y1f4{bottom:172.620000px;}
.y1e{bottom:175.320000px;}
.y138{bottom:175.860000px;}
.y161{bottom:178.920000px;}
.y97{bottom:179.820000px;}
.y44{bottom:180.180000px;}
.y1c3{bottom:180.360000px;}
.y5b{bottom:189.180000px;}
.y195{bottom:189.360000px;}
.ycd{bottom:189.900000px;}
.y1f3{bottom:190.440000px;}
.y13{bottom:192.825000px;}
.y102{bottom:193.140000px;}
.y1d{bottom:193.185000px;}
.y160{bottom:196.740000px;}
.y96{bottom:197.640000px;}
.y43{bottom:198.180000px;}
.y137{bottom:202.680000px;}
.y5a{bottom:207.210000px;}
.y1f2{bottom:208.290000px;}
.y101{bottom:210.990000px;}
.y1c{bottom:211.185000px;}
.y15f{bottom:214.770000px;}
.y95{bottom:215.490000px;}
.y1c2{bottom:216.030000px;}
.y194{bottom:216.210000px;}
.ycc{bottom:217.470000px;}
.y12{bottom:220.005000px;}
.y136{bottom:220.710000px;}
.y42{bottom:225.030000px;}
.y1f1{bottom:226.290000px;}
.y100{bottom:228.990000px;}
.y1b{bottom:229.005000px;}
.y94{bottom:233.490000px;}
.y15e{bottom:233.670000px;}
.y193{bottom:234.030000px;}
.y11{bottom:237.825000px;}
.y135{bottom:239.610000px;}
.y41{bottom:242.850000px;}
.y1f0{bottom:244.110000px;}
.ycb{bottom:244.650000px;}
.y1a{bottom:246.825000px;}
.yff{bottom:247.890000px;}
.y93{bottom:251.310000px;}
.y192{bottom:251.850000px;}
.y10{bottom:255.645000px;}
.y134{bottom:258.690000px;}
.y40{bottom:260.670000px;}
.y15d{bottom:261.930000px;}
.yca{bottom:262.470000px;}
.y19{bottom:264.645000px;}
.yfe{bottom:266.970000px;}
.y92{bottom:269.130000px;}
.y191{bottom:269.670000px;}
.y133{bottom:276.510000px;}
.y3f{bottom:278.490000px;}
.y1c1{bottom:278.670000px;}
.y1ef{bottom:279.750000px;}
.yc9{bottom:280.470000px;}
.y15c{bottom:280.830000px;}
.yf{bottom:282.105000px;}
.y18{bottom:282.465000px;}
.yfd{bottom:284.790000px;}
.y91{bottom:286.950000px;}
.y3e{bottom:296.490000px;}
.y190{bottom:296.670000px;}
.y1ee{bottom:297.570000px;}
.yc8{bottom:298.290000px;}
.y15b{bottom:299.730000px;}
.ye{bottom:299.925000px;}
.y17{bottom:300.285000px;}
.yfc{bottom:302.610000px;}
.y132{bottom:303.330000px;}
.y90{bottom:304.770000px;}
.y3d{bottom:314.310000px;}
.y18f{bottom:314.490000px;}
.y1ed{bottom:315.390000px;}
.yc7{bottom:316.110000px;}
.y15a{bottom:318.810000px;}
.yfb{bottom:320.430000px;}
.y131{bottom:321.150000px;}
.y8f{bottom:322.590000px;}
.y3c{bottom:332.130000px;}
.y18e{bottom:332.310000px;}
.y1ec{bottom:333.390000px;}
.yc6{bottom:333.930000px;}
.y159{bottom:337.710000px;}
.yfa{bottom:338.250000px;}
.y130{bottom:338.970000px;}
.y8e{bottom:340.590000px;}
.y59{bottom:341.130000px;}
.y3b{bottom:349.950000px;}
.y1c0{bottom:350.130000px;}
.y1eb{bottom:351.210000px;}
.yc5{bottom:351.750000px;}
.y12f{bottom:356.790000px;}
.yf9{bottom:357.330000px;}
.y8d{bottom:358.410000px;}
.y18d{bottom:358.770000px;}
.y58{bottom:358.950000px;}
.y158{bottom:365.430000px;}
.y3a{bottom:367.770000px;}
.y1bf{bottom:367.950000px;}
.yc4{bottom:369.570000px;}
.y12e{bottom:374.790000px;}
.y8c{bottom:376.230000px;}
.y57{bottom:376.770000px;}
.yf8{bottom:377.490000px;}
.y1ea{bottom:378.030000px;}
.y39{bottom:385.590000px;}
.y1be{bottom:385.770000px;}
.y18c{bottom:385.950000px;}
.yc3{bottom:387.570000px;}
.y157{bottom:392.430000px;}
.y12d{bottom:392.610000px;}
.y8b{bottom:394.050000px;}
.y56{bottom:394.590000px;}
.y1e9{bottom:395.850000px;}
.yf7{bottom:397.650000px;}
.y38{bottom:403.590000px;}
.y18b{bottom:403.770000px;}
.yc2{bottom:406.470000px;}
.y12c{bottom:410.430000px;}
.y156{bottom:411.510000px;}
.y8a{bottom:411.870000px;}
.y55{bottom:412.590000px;}
.y1e8{bottom:413.670000px;}
.yf6{bottom:416.550000px;}
.y37{bottom:421.410000px;}
.y18a{bottom:421.770000px;}
.y1bd{bottom:422.670000px;}
.y12b{bottom:428.250000px;}
.y89{bottom:429.870000px;}
.y54{bottom:430.410000px;}
.y1e7{bottom:431.670000px;}
.yc1{bottom:434.550000px;}
.yf5{bottom:435.630000px;}
.y36{bottom:439.230000px;}
.y189{bottom:439.590000px;}
.y1bc{bottom:442.875000px;}
.y12a{bottom:446.115000px;}
.y88{bottom:447.735000px;}
.y53{bottom:448.275000px;}
.y155{bottom:449.355000px;}
.y1e6{bottom:449.535000px;}
.yc0{bottom:452.415000px;}
.yf4{bottom:455.835000px;}
.y35{bottom:457.095000px;}
.y188{bottom:457.455000px;}
.y1bb{bottom:461.775000px;}
.y129{bottom:465.195000px;}
.y87{bottom:465.555000px;}
.y52{bottom:466.095000px;}
.y1e5{bottom:467.355000px;}
.y154{bottom:468.255000px;}
.ybf{bottom:470.235000px;}
.y34{bottom:474.915000px;}
.y187{bottom:475.275000px;}
.y1ba{bottom:479.595000px;}
.y86{bottom:483.375000px;}
.yf3{bottom:483.735000px;}
.y51{bottom:483.915000px;}
.y128{bottom:484.095000px;}
.y1e4{bottom:485.175000px;}
.ybe{bottom:488.055000px;}
.y33{bottom:492.915000px;}
.y186{bottom:493.095000px;}
.y153{bottom:496.155000px;}
.y1b9{bottom:497.415000px;}
.y85{bottom:501.195000px;}
.y50{bottom:501.915000px;}
.y127{bottom:502.095000px;}
.yf2{bottom:502.815000px;}
.y1e3{bottom:502.995000px;}
.ybd{bottom:505.875000px;}
.y32{bottom:510.735000px;}
.y185{bottom:510.915000px;}
.y1b8{bottom:515.415000px;}
.y84{bottom:519.015000px;}
.y4f{bottom:519.735000px;}
.y1e2{bottom:520.815000px;}
.y126{bottom:520.995000px;}
.yf1{bottom:521.715000px;}
.y152{bottom:523.155000px;}
.ybc{bottom:523.875000px;}
.y31{bottom:528.555000px;}
.y184{bottom:528.915000px;}
.y1b7{bottom:533.235000px;}
.y83{bottom:537.015000px;}
.y4e{bottom:537.555000px;}
.y1e1{bottom:538.815000px;}
.yf0{bottom:539.535000px;}
.y125{bottom:540.075000px;}
.ybb{bottom:541.695000px;}
.y151{bottom:542.055000px;}
.y30{bottom:546.375000px;}
.y183{bottom:546.735000px;}
.y1b6{bottom:551.055000px;}
.y4d{bottom:555.375000px;}
.y1e0{bottom:556.635000px;}
.y124{bottom:557.895000px;}
.yef{bottom:558.615000px;}
.yba{bottom:559.515000px;}
.y150{bottom:560.955000px;}
.y82{bottom:563.835000px;}
.y2f{bottom:564.195000px;}
.y182{bottom:564.555000px;}
.y1b5{bottom:568.875000px;}
.y4c{bottom:573.195000px;}
.y1df{bottom:574.455000px;}
.y123{bottom:575.715000px;}
.yb9{bottom:577.335000px;}
.yee{bottom:577.515000px;}
.y14f{bottom:580.035000px;}
.y81{bottom:581.655000px;}
.y2e{bottom:582.015000px;}
.y181{bottom:582.375000px;}
.y1b4{bottom:586.695000px;}
.y4b{bottom:591.015000px;}
.y1de{bottom:592.275000px;}
.y122{bottom:593.535000px;}
.yed{bottom:596.595000px;}
.y14e{bottom:598.935000px;}
.y80{bottom:599.475000px;}
.y2d{bottom:600.015000px;}
.yb8{bottom:605.595000px;}
.y4a{bottom:609.015000px;}
.y180{bottom:609.195000px;}
.y1dd{bottom:610.095000px;}
.y121{bottom:611.355000px;}
.y1b3{bottom:613.875000px;}
.yec{bottom:615.495000px;}
.y7f{bottom:617.295000px;}
.y2c{bottom:617.835000px;}
.y14d{bottom:626.655000px;}
.y49{bottom:626.835000px;}
.y17f{bottom:627.195000px;}
.y1dc{bottom:628.095000px;}
.y120{bottom:630.435000px;}
.y1b2{bottom:632.775000px;}
.yeb{bottom:633.315000px;}
.y7e{bottom:635.115000px;}
.yb7{bottom:637.095000px;}
.y1db{bottom:645.915000px;}
.y2b{bottom:646.095000px;}
.y11f{bottom:650.595000px;}
.y1b1{bottom:651.675000px;}
.yea{bottom:652.395000px;}
.y7d{bottom:653.115000px;}
.y17e{bottom:654.015000px;}
.y14c{bottom:654.735000px;}
.yb6{bottom:654.915000px;}
.y1da{bottom:663.735000px;}
.y11e{bottom:669.495000px;}
.y1b0{bottom:670.575000px;}
.y7c{bottom:670.935000px;}
.ye9{bottom:671.295000px;}
.y17d{bottom:671.835000px;}
.y28{bottom:672.555000px;}
.yb5{bottom:672.735000px;}
.y1d9{bottom:681.585000px;}
.y14b{bottom:683.925000px;}
.y11d{bottom:688.605000px;}
.y7b{bottom:688.785000px;}
.ye8{bottom:689.325000px;}
.y17c{bottom:689.685000px;}
.yb4{bottom:690.585000px;}
.y1af{bottom:698.505000px;}
.y1d8{bottom:699.405000px;}
.y7a{bottom:706.605000px;}
.ye7{bottom:707.145000px;}
.y17b{bottom:707.505000px;}
.yb3{bottom:708.405000px;}
.y11c{bottom:708.765000px;}
.y14a{bottom:713.085000px;}
.y1d7{bottom:717.225000px;}
.yd{bottom:720.105000px;}
.y79{bottom:724.425000px;}
.ye6{bottom:724.965000px;}
.y17a{bottom:725.325000px;}
.y1ae{bottom:725.505000px;}
.yb2{bottom:726.225000px;}
.y11b{bottom:727.665000px;}
.y1d6{bottom:735.225000px;}
.y149{bottom:740.625000px;}
.y78{bottom:742.425000px;}
.yb1{bottom:744.225000px;}
.y1ad{bottom:744.405000px;}
.y11a{bottom:745.485000px;}
.ye5{bottom:751.965000px;}
.y179{bottom:752.325000px;}
.y1d5{bottom:753.045000px;}
.y77{bottom:760.245000px;}
.yb0{bottom:762.045000px;}
.y1ac{bottom:763.305000px;}
.y119{bottom:764.565000px;}
.y148{bottom:767.805000px;}
.y178{bottom:770.145000px;}
.y1d4{bottom:770.865000px;}
.ye4{bottom:771.045000px;}
.y76{bottom:778.065000px;}
.yaf{bottom:779.865000px;}
.y1ab{bottom:782.385000px;}
.y118{bottom:783.465000px;}
.y147{bottom:785.625000px;}
.y177{bottom:787.965000px;}
.y1d3{bottom:788.685000px;}
.ye3{bottom:789.945000px;}
.y75{bottom:795.885000px;}
.yae{bottom:797.685000px;}
.y146{bottom:803.625000px;}
.y176{bottom:805.785000px;}
.y1d2{bottom:806.505000px;}
.ye2{bottom:808.845000px;}
.y1aa{bottom:810.105000px;}
.y117{bottom:810.465000px;}
.y74{bottom:813.705000px;}
.yad{bottom:815.505000px;}
.y145{bottom:822.525000px;}
.y175{bottom:823.605000px;}
.y1d1{bottom:824.505000px;}
.ye1{bottom:827.745000px;}
.y116{bottom:828.285000px;}
.y73{bottom:831.525000px;}
.y1a9{bottom:838.185000px;}
.y144{bottom:841.605000px;}
.y1d0{bottom:842.325000px;}
.yac{bottom:843.945000px;}
.y115{bottom:846.105000px;}
.ye0{bottom:846.825000px;}
.y72{bottom:849.525000px;}
.y1a8{bottom:857.085000px;}
.y143{bottom:859.425000px;}
.y1cf{bottom:860.145000px;}
.y114{bottom:863.925000px;}
.ydf{bottom:865.725000px;}
.y71{bottom:867.345000px;}
.y1a7{bottom:874.905000px;}
.yab{bottom:875.265000px;}
.y142{bottom:877.245000px;}
.y1ce{bottom:877.965000px;}
.y113{bottom:881.745000px;}
.y70{bottom:885.165000px;}
.y1a6{bottom:892.725000px;}
.yaa{bottom:893.085000px;}
.yde{bottom:893.445000px;}
.y1fe{bottom:894.885000px;}
.y141{bottom:895.065000px;}
.y1cd{bottom:895.785000px;}
.y112{bottom:899.565000px;}
.y6f{bottom:902.985000px;}
.y1a5{bottom:910.545000px;}
.ya9{bottom:910.950000px;}
.y1fd{bottom:912.750000px;}
.y174{bottom:912.930000px;}
.y140{bottom:914.190000px;}
.y111{bottom:917.610000px;}
.ydd{bottom:920.490000px;}
.y1cc{bottom:922.650000px;}
.y1a4{bottom:928.590000px;}
.ya8{bottom:928.770000px;}
.y173{bottom:930.750000px;}
.y6e{bottom:931.290000px;}
.y13f{bottom:933.090000px;}
.y110{bottom:935.430000px;}
.ydc{bottom:939.570000px;}
.y1fc{bottom:939.930000px;}
.y1cb{bottom:940.650000px;}
.y1a3{bottom:946.410000px;}
.ya7{bottom:946.590000px;}
.y172{bottom:948.750000px;}
.y13e{bottom:952.170000px;}
.y10f{bottom:954.510000px;}
.y1fb{bottom:957.930000px;}
.ydb{bottom:958.470000px;}
.y6d{bottom:962.970000px;}
.ya6{bottom:964.590000px;}
.y171{bottom:966.570000px;}
.y13d{bottom:972.330000px;}
.y1a2{bottom:972.870000px;}
.y10e{bottom:973.410000px;}
.y1fa{bottom:975.930000px;}
.y1ca{bottom:976.290000px;}
.yda{bottom:977.370000px;}
.y6c{bottom:980.970000px;}
.ya5{bottom:982.410000px;}
.y170{bottom:984.390000px;}
.y1a1{bottom:990.690000px;}
.y10d{bottom:991.230000px;}
.y1f9{bottom:993.930000px;}
.y1c9{bottom:994.110000px;}
.yd9{bottom:996.450000px;}
.y6b{bottom:998.970000px;}
.ya4{bottom:1000.230000px;}
.y10c{bottom:1009.050000px;}
.y16f{bottom:1011.210000px;}
.y1c8{bottom:1011.930000px;}
.yd8{bottom:1015.350000px;}
.y6a{bottom:1016.970000px;}
.y1a0{bottom:1017.870000px;}
.ya3{bottom:1018.050000px;}
.y10b{bottom:1026.870000px;}
.y16e{bottom:1029.030000px;}
.y1c7{bottom:1029.930000px;}
.yd7{bottom:1034.250000px;}
.y69{bottom:1034.970000px;}
.ya2{bottom:1035.870000px;}
.y10a{bottom:1044.870000px;}
.y16d{bottom:1047.030000px;}
.y1c6{bottom:1047.750000px;}
.y1f8{bottom:1047.930000px;}
.yc{bottom:1048.110000px;}
.y68{bottom:1052.970000px;}
.y19f{bottom:1053.690000px;}
.ya1{bottom:1053.870000px;}
.yd6{bottom:1061.970000px;}
.y109{bottom:1062.690000px;}
.y16c{bottom:1065.930000px;}
.y67{bottom:1070.970000px;}
.y19e{bottom:1071.510000px;}
.ya0{bottom:1071.690000px;}
.yb{bottom:1074.570000px;}
.y1c5{bottom:1076.010000px;}
.y108{bottom:1080.510000px;}
.y16b{bottom:1085.010000px;}
.y66{bottom:1088.970000px;}
.yd5{bottom:1089.150000px;}
.y19d{bottom:1089.330000px;}
.y9f{bottom:1089.510000px;}
.y107{bottom:1098.330000px;}
.y16a{bottom:1102.830000px;}
.ya{bottom:1104.450000px;}
.y65{bottom:1106.970000px;}
.y19c{bottom:1107.150000px;}
.y9e{bottom:1107.330000px;}
.yd4{bottom:1108.950000px;}
.y5{bottom:1112.940000px;}
.y106{bottom:1116.150000px;}
.y169{bottom:1121.910000px;}
.y64{bottom:1124.790000px;}
.y19b{bottom:1124.970000px;}
.y9d{bottom:1125.150000px;}
.yd3{bottom:1129.290000px;}
.y9{bottom:1132.350000px;}
.y105{bottom:1133.970000px;}
.y168{bottom:1140.810000px;}
.y63{bottom:1142.790000px;}
.y9c{bottom:1142.970000px;}
.yd2{bottom:1149.660000px;}
.y104{bottom:1152.000000px;}
.y167{bottom:1158.660000px;}
.y62{bottom:1160.820000px;}
.y9b{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.yd1{bottom:1168.920000px;}
.y19a{bottom:1169.460000px;}
.y166{bottom:1177.740000px;}
.y61{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y7{bottom:1191.240000px;}
.y199{bottom:1196.280000px;}
.y9a{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y5f{bottom:1224.540000px;}
.h10{height:37.705078px;}
.h12{height:40.843828px;}
.h14{height:44.507812px;}
.he{height:46.830000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h13{height:52.971680px;}
.hb{height:52.998047px;}
.hd{height:54.421875px;}
.h11{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:321.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x12{left:55.440000px;}
.xa{left:69.481500px;}
.x16{left:81.000000px;}
.xd{left:95.256000px;}
.x6{left:102.816000px;}
.x15{left:108.036000px;}
.x9{left:232.590000px;}
.xc{left:282.315000px;}
.x7{left:394.095000px;}
.x8{left:402.375000px;}
.x14{left:438.195000px;}
.xe{left:473.505000px;}
.x10{left:500.505000px;}
.xf{left:514.725000px;}
.x11{left:527.505000px;}
.x13{left:668.490000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-2.240000pt;}
.ls9{letter-spacing:-1.760000pt;}
.ls6{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls1b{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.380267pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls18{letter-spacing:2.080000pt;}
.ls16{letter-spacing:13.600000pt;}
.ls2{letter-spacing:46.816000pt;}
.ls12{letter-spacing:61.024000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsf{word-spacing:-48.640000pt;}
.wse{word-spacing:-48.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.888000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.760000pt;}
.wsa{word-spacing:-9.357867pt;}
.wsb{word-spacing:-9.053333pt;}
.ws2{word-spacing:-8.869547pt;}
.wsc{word-spacing:-8.718933pt;}
.ws9{word-spacing:0.000000pt;}
._2d{margin-left:-6.240000pt;}
._19{margin-left:-5.232000pt;}
._1c{margin-left:-3.459200pt;}
._8{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._9{width:3.351253pt;}
._f{width:4.306560pt;}
._7{width:5.328000pt;}
._10{width:6.912000pt;}
._11{width:8.233173pt;}
._5{width:9.958827pt;}
._e{width:11.088000pt;}
._c{width:12.904320pt;}
._d{width:14.640000pt;}
._b{width:16.216320pt;}
._a{width:17.744000pt;}
._4{width:19.299840pt;}
._13{width:20.736000pt;}
._14{width:21.696000pt;}
._16{width:22.896000pt;}
._1a{width:23.784960pt;}
._22{width:24.816000pt;}
._12{width:26.352000pt;}
._20{width:27.456000pt;}
._1f{width:28.840320pt;}
._23{width:30.204160pt;}
._18{width:31.312640pt;}
._17{width:32.467840pt;}
._1d{width:33.376000pt;}
._1e{width:34.992000pt;}
._1b{width:36.336000pt;}
._2c{width:37.894400pt;}
._26{width:39.180800pt;}
._15{width:40.224000pt;}
._2b{width:42.752000pt;}
._2a{width:44.112000pt;}
._29{width:45.312000pt;}
._28{width:49.021867pt;}
._27{width:49.992320pt;}
._21{width:51.936000pt;}
._6{width:61.824000pt;}
._25{width:63.120000pt;}
._24{width:64.131840pt;}
._3{width:384.724053pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:5.120000pt;}
.y2a{bottom:6.906667pt;}
.y29{bottom:22.746667pt;}
.y26{bottom:28.960000pt;}
.y25{bottom:44.800000pt;}
.y60{bottom:52.000000pt;}
.y24{bottom:60.640000pt;}
.y4{bottom:68.640000pt;}
.y23{bottom:76.480000pt;}
.yd0{bottom:91.040000pt;}
.y165{bottom:91.520000pt;}
.y22{bottom:92.320000pt;}
.y13c{bottom:92.800000pt;}
.y6{bottom:93.440000pt;}
.y5e{bottom:96.640000pt;}
.y48{bottom:96.800000pt;}
.y16{bottom:100.000000pt;}
.y198{bottom:104.800000pt;}
.y1f7{bottom:105.760000pt;}
.y99{bottom:106.560000pt;}
.y103{bottom:108.160000pt;}
.y21{bottom:108.320000pt;}
.y164{bottom:108.480000pt;}
.y13b{bottom:108.800000pt;}
.y47{bottom:112.640000pt;}
.ycf{bottom:116.960000pt;}
.y197{bottom:120.640000pt;}
.y1f6{bottom:121.760000pt;}
.y15{bottom:123.840000pt;}
.y20{bottom:124.160000pt;}
.y13a{bottom:124.640000pt;}
.y163{bottom:125.280000pt;}
.y46{bottom:128.480000pt;}
.y5d{bottom:128.640000pt;}
.y98{bottom:132.000000pt;}
.y196{bottom:136.480000pt;}
.y1f5{bottom:137.600000pt;}
.y1f{bottom:140.000000pt;}
.y139{bottom:140.480000pt;}
.y162{bottom:142.240000pt;}
.yce{bottom:142.880000pt;}
.y45{bottom:144.320000pt;}
.y1c4{bottom:144.480000pt;}
.y14{bottom:147.680000pt;}
.y5c{bottom:152.320000pt;}
.y1f4{bottom:153.440000pt;}
.y1e{bottom:155.840000pt;}
.y138{bottom:156.320000pt;}
.y161{bottom:159.040000pt;}
.y97{bottom:159.840000pt;}
.y44{bottom:160.160000pt;}
.y1c3{bottom:160.320000pt;}
.y5b{bottom:168.160000pt;}
.y195{bottom:168.320000pt;}
.ycd{bottom:168.800000pt;}
.y1f3{bottom:169.280000pt;}
.y13{bottom:171.400000pt;}
.y102{bottom:171.680000pt;}
.y1d{bottom:171.720000pt;}
.y160{bottom:174.880000pt;}
.y96{bottom:175.680000pt;}
.y43{bottom:176.160000pt;}
.y137{bottom:180.160000pt;}
.y5a{bottom:184.186667pt;}
.y1f2{bottom:185.146667pt;}
.y101{bottom:187.546667pt;}
.y1c{bottom:187.720000pt;}
.y15f{bottom:190.906667pt;}
.y95{bottom:191.546667pt;}
.y1c2{bottom:192.026667pt;}
.y194{bottom:192.186667pt;}
.ycc{bottom:193.306667pt;}
.y12{bottom:195.560000pt;}
.y136{bottom:196.186667pt;}
.y42{bottom:200.026667pt;}
.y1f1{bottom:201.146667pt;}
.y100{bottom:203.546667pt;}
.y1b{bottom:203.560000pt;}
.y94{bottom:207.546667pt;}
.y15e{bottom:207.706667pt;}
.y193{bottom:208.026667pt;}
.y11{bottom:211.400000pt;}
.y135{bottom:212.986667pt;}
.y41{bottom:215.866667pt;}
.y1f0{bottom:216.986667pt;}
.ycb{bottom:217.466667pt;}
.y1a{bottom:219.400000pt;}
.yff{bottom:220.346667pt;}
.y93{bottom:223.386667pt;}
.y192{bottom:223.866667pt;}
.y10{bottom:227.240000pt;}
.y134{bottom:229.946667pt;}
.y40{bottom:231.706667pt;}
.y15d{bottom:232.826667pt;}
.yca{bottom:233.306667pt;}
.y19{bottom:235.240000pt;}
.yfe{bottom:237.306667pt;}
.y92{bottom:239.226667pt;}
.y191{bottom:239.706667pt;}
.y133{bottom:245.786667pt;}
.y3f{bottom:247.546667pt;}
.y1c1{bottom:247.706667pt;}
.y1ef{bottom:248.666667pt;}
.yc9{bottom:249.306667pt;}
.y15c{bottom:249.626667pt;}
.yf{bottom:250.760000pt;}
.y18{bottom:251.080000pt;}
.yfd{bottom:253.146667pt;}
.y91{bottom:255.066667pt;}
.y3e{bottom:263.546667pt;}
.y190{bottom:263.706667pt;}
.y1ee{bottom:264.506667pt;}
.yc8{bottom:265.146667pt;}
.y15b{bottom:266.426667pt;}
.ye{bottom:266.600000pt;}
.y17{bottom:266.920000pt;}
.yfc{bottom:268.986667pt;}
.y132{bottom:269.626667pt;}
.y90{bottom:270.906667pt;}
.y3d{bottom:279.386667pt;}
.y18f{bottom:279.546667pt;}
.y1ed{bottom:280.346667pt;}
.yc7{bottom:280.986667pt;}
.y15a{bottom:283.386667pt;}
.yfb{bottom:284.826667pt;}
.y131{bottom:285.466667pt;}
.y8f{bottom:286.746667pt;}
.y3c{bottom:295.226667pt;}
.y18e{bottom:295.386667pt;}
.y1ec{bottom:296.346667pt;}
.yc6{bottom:296.826667pt;}
.y159{bottom:300.186667pt;}
.yfa{bottom:300.666667pt;}
.y130{bottom:301.306667pt;}
.y8e{bottom:302.746667pt;}
.y59{bottom:303.226667pt;}
.y3b{bottom:311.066667pt;}
.y1c0{bottom:311.226667pt;}
.y1eb{bottom:312.186667pt;}
.yc5{bottom:312.666667pt;}
.y12f{bottom:317.146667pt;}
.yf9{bottom:317.626667pt;}
.y8d{bottom:318.586667pt;}
.y18d{bottom:318.906667pt;}
.y58{bottom:319.066667pt;}
.y158{bottom:324.826667pt;}
.y3a{bottom:326.906667pt;}
.y1bf{bottom:327.066667pt;}
.yc4{bottom:328.506667pt;}
.y12e{bottom:333.146667pt;}
.y8c{bottom:334.426667pt;}
.y57{bottom:334.906667pt;}
.yf8{bottom:335.546667pt;}
.y1ea{bottom:336.026667pt;}
.y39{bottom:342.746667pt;}
.y1be{bottom:342.906667pt;}
.y18c{bottom:343.066667pt;}
.yc3{bottom:344.506667pt;}
.y157{bottom:348.826667pt;}
.y12d{bottom:348.986667pt;}
.y8b{bottom:350.266667pt;}
.y56{bottom:350.746667pt;}
.y1e9{bottom:351.866667pt;}
.yf7{bottom:353.466667pt;}
.y38{bottom:358.746667pt;}
.y18b{bottom:358.906667pt;}
.yc2{bottom:361.306667pt;}
.y12c{bottom:364.826667pt;}
.y156{bottom:365.786667pt;}
.y8a{bottom:366.106667pt;}
.y55{bottom:366.746667pt;}
.y1e8{bottom:367.706667pt;}
.yf6{bottom:370.266667pt;}
.y37{bottom:374.586667pt;}
.y18a{bottom:374.906667pt;}
.y1bd{bottom:375.706667pt;}
.y12b{bottom:380.666667pt;}
.y89{bottom:382.106667pt;}
.y54{bottom:382.586667pt;}
.y1e7{bottom:383.706667pt;}
.yc1{bottom:386.266667pt;}
.yf5{bottom:387.226667pt;}
.y36{bottom:390.426667pt;}
.y189{bottom:390.746667pt;}
.y1bc{bottom:393.666667pt;}
.y12a{bottom:396.546667pt;}
.y88{bottom:397.986667pt;}
.y53{bottom:398.466667pt;}
.y155{bottom:399.426667pt;}
.y1e6{bottom:399.586667pt;}
.yc0{bottom:402.146667pt;}
.yf4{bottom:405.186667pt;}
.y35{bottom:406.306667pt;}
.y188{bottom:406.626667pt;}
.y1bb{bottom:410.466667pt;}
.y129{bottom:413.506667pt;}
.y87{bottom:413.826667pt;}
.y52{bottom:414.306667pt;}
.y1e5{bottom:415.426667pt;}
.y154{bottom:416.226667pt;}
.ybf{bottom:417.986667pt;}
.y34{bottom:422.146667pt;}
.y187{bottom:422.466667pt;}
.y1ba{bottom:426.306667pt;}
.y86{bottom:429.666667pt;}
.yf3{bottom:429.986667pt;}
.y51{bottom:430.146667pt;}
.y128{bottom:430.306667pt;}
.y1e4{bottom:431.266667pt;}
.ybe{bottom:433.826667pt;}
.y33{bottom:438.146667pt;}
.y186{bottom:438.306667pt;}
.y153{bottom:441.026667pt;}
.y1b9{bottom:442.146667pt;}
.y85{bottom:445.506667pt;}
.y50{bottom:446.146667pt;}
.y127{bottom:446.306667pt;}
.yf2{bottom:446.946667pt;}
.y1e3{bottom:447.106667pt;}
.ybd{bottom:449.666667pt;}
.y32{bottom:453.986667pt;}
.y185{bottom:454.146667pt;}
.y1b8{bottom:458.146667pt;}
.y84{bottom:461.346667pt;}
.y4f{bottom:461.986667pt;}
.y1e2{bottom:462.946667pt;}
.y126{bottom:463.106667pt;}
.yf1{bottom:463.746667pt;}
.y152{bottom:465.026667pt;}
.ybc{bottom:465.666667pt;}
.y31{bottom:469.826667pt;}
.y184{bottom:470.146667pt;}
.y1b7{bottom:473.986667pt;}
.y83{bottom:477.346667pt;}
.y4e{bottom:477.826667pt;}
.y1e1{bottom:478.946667pt;}
.yf0{bottom:479.586667pt;}
.y125{bottom:480.066667pt;}
.ybb{bottom:481.506667pt;}
.y151{bottom:481.826667pt;}
.y30{bottom:485.666667pt;}
.y183{bottom:485.986667pt;}
.y1b6{bottom:489.826667pt;}
.y4d{bottom:493.666667pt;}
.y1e0{bottom:494.786667pt;}
.y124{bottom:495.906667pt;}
.yef{bottom:496.546667pt;}
.yba{bottom:497.346667pt;}
.y150{bottom:498.626667pt;}
.y82{bottom:501.186667pt;}
.y2f{bottom:501.506667pt;}
.y182{bottom:501.826667pt;}
.y1b5{bottom:505.666667pt;}
.y4c{bottom:509.506667pt;}
.y1df{bottom:510.626667pt;}
.y123{bottom:511.746667pt;}
.yb9{bottom:513.186667pt;}
.yee{bottom:513.346667pt;}
.y14f{bottom:515.586667pt;}
.y81{bottom:517.026667pt;}
.y2e{bottom:517.346667pt;}
.y181{bottom:517.666667pt;}
.y1b4{bottom:521.506667pt;}
.y4b{bottom:525.346667pt;}
.y1de{bottom:526.466667pt;}
.y122{bottom:527.586667pt;}
.yed{bottom:530.306667pt;}
.y14e{bottom:532.386667pt;}
.y80{bottom:532.866667pt;}
.y2d{bottom:533.346667pt;}
.yb8{bottom:538.306667pt;}
.y4a{bottom:541.346667pt;}
.y180{bottom:541.506667pt;}
.y1dd{bottom:542.306667pt;}
.y121{bottom:543.426667pt;}
.y1b3{bottom:545.666667pt;}
.yec{bottom:547.106667pt;}
.y7f{bottom:548.706667pt;}
.y2c{bottom:549.186667pt;}
.y14d{bottom:557.026667pt;}
.y49{bottom:557.186667pt;}
.y17f{bottom:557.506667pt;}
.y1dc{bottom:558.306667pt;}
.y120{bottom:560.386667pt;}
.y1b2{bottom:562.466667pt;}
.yeb{bottom:562.946667pt;}
.y7e{bottom:564.546667pt;}
.yb7{bottom:566.306667pt;}
.y1db{bottom:574.146667pt;}
.y2b{bottom:574.306667pt;}
.y11f{bottom:578.306667pt;}
.y1b1{bottom:579.266667pt;}
.yea{bottom:579.906667pt;}
.y7d{bottom:580.546667pt;}
.y17e{bottom:581.346667pt;}
.y14c{bottom:581.986667pt;}
.yb6{bottom:582.146667pt;}
.y1da{bottom:589.986667pt;}
.y11e{bottom:595.106667pt;}
.y1b0{bottom:596.066667pt;}
.y7c{bottom:596.386667pt;}
.ye9{bottom:596.706667pt;}
.y17d{bottom:597.186667pt;}
.y28{bottom:597.826667pt;}
.yb5{bottom:597.986667pt;}
.y1d9{bottom:605.853333pt;}
.y14b{bottom:607.933333pt;}
.y11d{bottom:612.093333pt;}
.y7b{bottom:612.253333pt;}
.ye8{bottom:612.733333pt;}
.y17c{bottom:613.053333pt;}
.yb4{bottom:613.853333pt;}
.y1af{bottom:620.893333pt;}
.y1d8{bottom:621.693333pt;}
.y7a{bottom:628.093333pt;}
.ye7{bottom:628.573333pt;}
.y17b{bottom:628.893333pt;}
.yb3{bottom:629.693333pt;}
.y11c{bottom:630.013333pt;}
.y14a{bottom:633.853333pt;}
.y1d7{bottom:637.533333pt;}
.yd{bottom:640.093333pt;}
.y79{bottom:643.933333pt;}
.ye6{bottom:644.413333pt;}
.y17a{bottom:644.733333pt;}
.y1ae{bottom:644.893333pt;}
.yb2{bottom:645.533333pt;}
.y11b{bottom:646.813333pt;}
.y1d6{bottom:653.533333pt;}
.y149{bottom:658.333333pt;}
.y78{bottom:659.933333pt;}
.yb1{bottom:661.533333pt;}
.y1ad{bottom:661.693333pt;}
.y11a{bottom:662.653333pt;}
.ye5{bottom:668.413333pt;}
.y179{bottom:668.733333pt;}
.y1d5{bottom:669.373333pt;}
.y77{bottom:675.773333pt;}
.yb0{bottom:677.373333pt;}
.y1ac{bottom:678.493333pt;}
.y119{bottom:679.613333pt;}
.y148{bottom:682.493333pt;}
.y178{bottom:684.573333pt;}
.y1d4{bottom:685.213333pt;}
.ye4{bottom:685.373333pt;}
.y76{bottom:691.613333pt;}
.yaf{bottom:693.213333pt;}
.y1ab{bottom:695.453333pt;}
.y118{bottom:696.413333pt;}
.y147{bottom:698.333333pt;}
.y177{bottom:700.413333pt;}
.y1d3{bottom:701.053333pt;}
.ye3{bottom:702.173333pt;}
.y75{bottom:707.453333pt;}
.yae{bottom:709.053333pt;}
.y146{bottom:714.333333pt;}
.y176{bottom:716.253333pt;}
.y1d2{bottom:716.893333pt;}
.ye2{bottom:718.973333pt;}
.y1aa{bottom:720.093333pt;}
.y117{bottom:720.413333pt;}
.y74{bottom:723.293333pt;}
.yad{bottom:724.893333pt;}
.y145{bottom:731.133333pt;}
.y175{bottom:732.093333pt;}
.y1d1{bottom:732.893333pt;}
.ye1{bottom:735.773333pt;}
.y116{bottom:736.253333pt;}
.y73{bottom:739.133333pt;}
.y1a9{bottom:745.053333pt;}
.y144{bottom:748.093333pt;}
.y1d0{bottom:748.733333pt;}
.yac{bottom:750.173333pt;}
.y115{bottom:752.093333pt;}
.ye0{bottom:752.733333pt;}
.y72{bottom:755.133333pt;}
.y1a8{bottom:761.853333pt;}
.y143{bottom:763.933333pt;}
.y1cf{bottom:764.573333pt;}
.y114{bottom:767.933333pt;}
.ydf{bottom:769.533333pt;}
.y71{bottom:770.973333pt;}
.y1a7{bottom:777.693333pt;}
.yab{bottom:778.013333pt;}
.y142{bottom:779.773333pt;}
.y1ce{bottom:780.413333pt;}
.y113{bottom:783.773333pt;}
.y70{bottom:786.813333pt;}
.y1a6{bottom:793.533333pt;}
.yaa{bottom:793.853333pt;}
.yde{bottom:794.173333pt;}
.y1fe{bottom:795.453333pt;}
.y141{bottom:795.613333pt;}
.y1cd{bottom:796.253333pt;}
.y112{bottom:799.613333pt;}
.y6f{bottom:802.653333pt;}
.y1a5{bottom:809.373333pt;}
.ya9{bottom:809.733333pt;}
.y1fd{bottom:811.333333pt;}
.y174{bottom:811.493333pt;}
.y140{bottom:812.613333pt;}
.y111{bottom:815.653333pt;}
.ydd{bottom:818.213333pt;}
.y1cc{bottom:820.133333pt;}
.y1a4{bottom:825.413333pt;}
.ya8{bottom:825.573333pt;}
.y173{bottom:827.333333pt;}
.y6e{bottom:827.813333pt;}
.y13f{bottom:829.413333pt;}
.y110{bottom:831.493333pt;}
.ydc{bottom:835.173333pt;}
.y1fc{bottom:835.493333pt;}
.y1cb{bottom:836.133333pt;}
.y1a3{bottom:841.253333pt;}
.ya7{bottom:841.413333pt;}
.y172{bottom:843.333333pt;}
.y13e{bottom:846.373333pt;}
.y10f{bottom:848.453333pt;}
.y1fb{bottom:851.493333pt;}
.ydb{bottom:851.973333pt;}
.y6d{bottom:855.973333pt;}
.ya6{bottom:857.413333pt;}
.y171{bottom:859.173333pt;}
.y13d{bottom:864.293333pt;}
.y1a2{bottom:864.773333pt;}
.y10e{bottom:865.253333pt;}
.y1fa{bottom:867.493333pt;}
.y1ca{bottom:867.813333pt;}
.yda{bottom:868.773333pt;}
.y6c{bottom:871.973333pt;}
.ya5{bottom:873.253333pt;}
.y170{bottom:875.013333pt;}
.y1a1{bottom:880.613333pt;}
.y10d{bottom:881.093333pt;}
.y1f9{bottom:883.493333pt;}
.y1c9{bottom:883.653333pt;}
.yd9{bottom:885.733333pt;}
.y6b{bottom:887.973333pt;}
.ya4{bottom:889.093333pt;}
.y10c{bottom:896.933333pt;}
.y16f{bottom:898.853333pt;}
.y1c8{bottom:899.493333pt;}
.yd8{bottom:902.533333pt;}
.y6a{bottom:903.973333pt;}
.y1a0{bottom:904.773333pt;}
.ya3{bottom:904.933333pt;}
.y10b{bottom:912.773333pt;}
.y16e{bottom:914.693333pt;}
.y1c7{bottom:915.493333pt;}
.yd7{bottom:919.333333pt;}
.y69{bottom:919.973333pt;}
.ya2{bottom:920.773333pt;}
.y10a{bottom:928.773333pt;}
.y16d{bottom:930.693333pt;}
.y1c6{bottom:931.333333pt;}
.y1f8{bottom:931.493333pt;}
.yc{bottom:931.653333pt;}
.y68{bottom:935.973333pt;}
.y19f{bottom:936.613333pt;}
.ya1{bottom:936.773333pt;}
.yd6{bottom:943.973333pt;}
.y109{bottom:944.613333pt;}
.y16c{bottom:947.493333pt;}
.y67{bottom:951.973333pt;}
.y19e{bottom:952.453333pt;}
.ya0{bottom:952.613333pt;}
.yb{bottom:955.173333pt;}
.y1c5{bottom:956.453333pt;}
.y108{bottom:960.453333pt;}
.y16b{bottom:964.453333pt;}
.y66{bottom:967.973333pt;}
.yd5{bottom:968.133333pt;}
.y19d{bottom:968.293333pt;}
.y9f{bottom:968.453333pt;}
.y107{bottom:976.293333pt;}
.y16a{bottom:980.293333pt;}
.ya{bottom:981.733333pt;}
.y65{bottom:983.973333pt;}
.y19c{bottom:984.133333pt;}
.y9e{bottom:984.293333pt;}
.yd4{bottom:985.733333pt;}
.y5{bottom:989.280000pt;}
.y106{bottom:992.133333pt;}
.y169{bottom:997.253333pt;}
.y64{bottom:999.813333pt;}
.y19b{bottom:999.973333pt;}
.y9d{bottom:1000.133333pt;}
.yd3{bottom:1003.813333pt;}
.y9{bottom:1006.533333pt;}
.y105{bottom:1007.973333pt;}
.y168{bottom:1014.053333pt;}
.y63{bottom:1015.813333pt;}
.y9c{bottom:1015.973333pt;}
.yd2{bottom:1021.920000pt;}
.y104{bottom:1024.000000pt;}
.y167{bottom:1029.920000pt;}
.y62{bottom:1031.840000pt;}
.y9b{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.yd1{bottom:1039.040000pt;}
.y19a{bottom:1039.520000pt;}
.y166{bottom:1046.880000pt;}
.y61{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y7{bottom:1058.880000pt;}
.y199{bottom:1063.360000pt;}
.y9a{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y5f{bottom:1088.480000pt;}
.h10{height:33.515625pt;}
.h12{height:36.305625pt;}
.h14{height:39.562500pt;}
.he{height:41.626667pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h13{height:47.085938pt;}
.hb{height:47.109375pt;}
.hd{height:48.375000pt;}
.h11{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:285.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x12{left:49.280000pt;}
.xa{left:61.761333pt;}
.x16{left:72.000000pt;}
.xd{left:84.672000pt;}
.x6{left:91.392000pt;}
.x15{left:96.032000pt;}
.x9{left:206.746667pt;}
.xc{left:250.946667pt;}
.x7{left:350.306667pt;}
.x8{left:357.666667pt;}
.x14{left:389.506667pt;}
.xe{left:420.893333pt;}
.x10{left:444.893333pt;}
.xf{left:457.533333pt;}
.x11{left:468.893333pt;}
.x13{left:594.213333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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