
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9f494b012e7b02954185d0bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_526116f1d346fc00f43e0628.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4799e074ee125f0e502ef66a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_7fec0b5952e6679cc0fb812d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e4ca06d4f84b3d5d7d6e769a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_993b6c74e69525841e8a43b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_3836792062855a7f6a0cfba0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92779944b61bc4aca95b5f70.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_906c8655b33a764f01a9a30f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.v4{vertical-align:47.880000px;}
.ls23{letter-spacing:-0.444600px;}
.lsf{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.181200px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls24{letter-spacing:-0.096600px;}
.ls5{letter-spacing:-0.090000px;}
.ls22{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.084000px;}
.ls19{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.040320px;}
.ls1c{letter-spacing:-0.011160px;}
.ls1e{letter-spacing:-0.009360px;}
.ls7{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004680px;}
.ls14{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.030600px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls15{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.097800px;}
.ls1b{letter-spacing:0.103200px;}
.ls26{letter-spacing:0.115800px;}
.ls12{letter-spacing:0.117000px;}
.lse{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.178800px;}
.lsd{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.181200px;}
.ls20{letter-spacing:0.319800px;}
.ls28{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:2.973600px;}
.ls10{letter-spacing:9.934920px;}
.ls27{letter-spacing:47.726640px;}
.ls11{letter-spacing:61.251120px;}
.ls25{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-50.484600px;}
.ws17{word-spacing:-47.870640px;}
.wsd{word-spacing:-43.469640px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws18{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.ws19{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.329600px;}
.ws14{word-spacing:-13.324200px;}
.wsc{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.215240px;}
.ws11{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws15{word-spacing:-10.538280px;}
.ws16{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.wsf{word-spacing:-8.732400px;}
.ws3{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.372400px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._6{margin-left:-3.607200px;}
._5{margin-left:-2.065440px;}
._7{margin-left:-1.018440px;}
._1{width:1.090188px;}
._a{width:2.723760px;}
._4{width:3.764520px;}
._2{width:5.467842px;}
._3{width:6.724955px;}
._b{width:8.427218px;}
._9{width:9.561492px;}
._8{width:10.884960px;}
._c{width:12.169560px;}
._13{width:14.432760px;}
._15{width:15.811560px;}
._f{width:17.014200px;}
._e{width:18.396600px;}
._16{width:19.659240px;}
._d{width:20.727360px;}
._17{width:22.096800px;}
._19{width:23.506920px;}
._10{width:25.130400px;}
._11{width:26.210997px;}
._1a{width:34.472520px;}
._1b{width:35.779440px;}
._0{width:66.181236px;}
._18{width:97.755120px;}
._14{width:168.576480px;}
._12{width:350.742720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y79{bottom:7.830000px;}
.ycf{bottom:7.860000px;}
.y7c{bottom:7.920000px;}
.yd2{bottom:17.550000px;}
.y100{bottom:17.640000px;}
.ydb{bottom:25.380000px;}
.ye6{bottom:25.410000px;}
.yd7{bottom:25.470000px;}
.ycb{bottom:35.190000px;}
.yf6{bottom:45.000000px;}
.yf5{bottom:62.550000px;}
.yfb{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yd5{bottom:97.650000px;}
.y1{bottom:101.640000px;}
.y164{bottom:115.050000px;}
.y1a9{bottom:116.580000px;}
.y13f{bottom:118.470000px;}
.yf2{bottom:121.080000px;}
.y4e{bottom:123.870000px;}
.yb5{bottom:124.950000px;}
.y56{bottom:125.400000px;}
.yc9{bottom:127.740000px;}
.y163{bottom:132.600000px;}
.y1a8{bottom:134.130000px;}
.y13e{bottom:136.020000px;}
.y29{bottom:139.890000px;}
.y4d{bottom:141.510000px;}
.yb4{bottom:142.500000px;}
.y55{bottom:142.950000px;}
.yc8{bottom:145.290000px;}
.yf1{bottom:148.350000px;}
.y81{bottom:149.700000px;}
.y17c{bottom:151.230000px;}
.y13d{bottom:153.570000px;}
.y28{bottom:157.440000px;}
.y4c{bottom:159.060000px;}
.y162{bottom:159.510000px;}
.yb3{bottom:160.140000px;}
.y54{bottom:160.500000px;}
.y1a7{bottom:160.680000px;}
.yc7{bottom:162.840000px;}
.y17b{bottom:168.870000px;}
.y13c{bottom:171.210000px;}
.ya5{bottom:172.470000px;}
.y27{bottom:175.080000px;}
.yf0{bottom:175.710000px;}
.y4b{bottom:176.700000px;}
.y80{bottom:176.970000px;}
.yb2{bottom:177.690000px;}
.y53{bottom:178.140000px;}
.y1a6{bottom:178.320000px;}
.yc6{bottom:180.480000px;}
.y17a{bottom:186.420000px;}
.y13b{bottom:188.760000px;}
.y26{bottom:192.630000px;}
.y4a{bottom:194.250000px;}
.yb1{bottom:195.330000px;}
.y1a5{bottom:195.870000px;}
.yef{bottom:203.070000px;}
.y7f{bottom:204.330000px;}
.y13a{bottom:206.400000px;}
.ydf{bottom:207.030000px;}
.y161{bottom:207.840000px;}
.y25{bottom:210.180000px;}
.yb0{bottom:212.880000px;}
.y179{bottom:212.970000px;}
.y52{bottom:213.690000px;}
.yc5{bottom:216.030000px;}
.y1a4{bottom:222.510000px;}
.y139{bottom:223.950000px;}
.yde{bottom:224.670000px;}
.y160{bottom:225.390000px;}
.y24{bottom:227.820000px;}
.ya7{bottom:229.170000px;}
.y49{bottom:229.800000px;}
.y178{bottom:230.610000px;}
.y51{bottom:231.330000px;}
.y7e{bottom:231.690000px;}
.yc4{bottom:233.670000px;}
.y1a3{bottom:240.060000px;}
.y138{bottom:241.500000px;}
.y15f{bottom:242.940000px;}
.y23{bottom:245.370000px;}
.yee{bottom:247.980000px;}
.yaf{bottom:248.430000px;}
.y177{bottom:257.160000px;}
.y1a2{bottom:257.610000px;}
.y7d{bottom:258.960000px;}
.y137{bottom:259.140000px;}
.y15e{bottom:260.580000px;}
.y48{bottom:262.020000px;}
.y50{bottom:263.550000px;}
.yc3{bottom:265.890000px;}
.yae{bottom:266.070000px;}
.y22{bottom:272.280000px;}
.y176{bottom:274.800000px;}
.yed{bottom:275.340000px;}
.y136{bottom:276.690000px;}
.y15d{bottom:278.130000px;}
.y1a1{bottom:284.250000px;}
.y7b{bottom:286.320000px;}
.y175{bottom:292.350000px;}
.y135{bottom:294.240000px;}
.y15c{bottom:295.680000px;}
.yad{bottom:298.290000px;}
.y1c2{bottom:301.800000px;}
.yec{bottom:302.610000px;}
.y1a0{bottom:310.800000px;}
.y134{bottom:311.880000px;}
.y15b{bottom:313.320000px;}
.y7a{bottom:313.680000px;}
.y174{bottom:319.260000px;}
.y1c1{bottom:319.440000px;}
.y21{bottom:320.520000px;}
.y19f{bottom:328.440000px;}
.yea{bottom:329.970000px;}
.y15a{bottom:330.870000px;}
.y20{bottom:338.430000px;}
.y133{bottom:338.790000px;}
.y78{bottom:341.040000px;}
.y1c0{bottom:345.990000px;}
.y159{bottom:348.510000px;}
.y113{bottom:351.570000px;}
.y19e{bottom:354.990000px;}
.yeb{bottom:357.330000px;}
.y1bf{bottom:363.540000px;}
.y158{bottom:366.060000px;}
.y173{bottom:367.500000px;}
.y112{bottom:369.210000px;}
.y1f{bottom:375.510000px;}
.y1be{bottom:381.180000px;}
.y19d{bottom:381.540000px;}
.y157{bottom:383.610000px;}
.ye9{bottom:384.690000px;}
.y172{bottom:385.140000px;}
.y111{bottom:386.760000px;}
.y132{bottom:387.030000px;}
.y77{bottom:389.730000px;}
.y1e{bottom:393.060000px;}
.y11a{bottom:397.110000px;}
.y19c{bottom:399.180000px;}
.y156{bottom:401.250000px;}
.y171{bottom:402.690000px;}
.y110{bottom:404.400000px;}
.y131{bottom:404.670000px;}
.y1bd{bottom:407.730000px;}
.y1d{bottom:410.700000px;}
.ye8{bottom:411.960000px;}
.ya4{bottom:416.550000px;}
.y155{bottom:418.800000px;}
.y170{bottom:420.330000px;}
.y10f{bottom:421.950000px;}
.y130{bottom:422.220000px;}
.y76{bottom:425.280000px;}
.y1bc{bottom:425.370000px;}
.y19b{bottom:425.730000px;}
.y1c{bottom:428.250000px;}
.y119{bottom:429.330000px;}
.ya3{bottom:434.190000px;}
.y154{bottom:436.440000px;}
.y16f{bottom:437.880000px;}
.ye7{bottom:439.320000px;}
.y10e{bottom:439.500000px;}
.y12f{bottom:439.770000px;}
.y75{bottom:442.920000px;}
.y19a{bottom:443.370000px;}
.y1b{bottom:445.800000px;}
.ya2{bottom:451.740000px;}
.y153{bottom:453.990000px;}
.y10d{bottom:457.140000px;}
.y12e{bottom:457.410000px;}
.y1a{bottom:463.440000px;}
.y16e{bottom:464.790000px;}
.ydd{bottom:466.680000px;}
.ya1{bottom:469.290000px;}
.y1bb{bottom:469.470000px;}
.y199{bottom:469.950000px;}
.y152{bottom:471.570000px;}
.y10c{bottom:474.720000px;}
.y12d{bottom:474.990000px;}
.y74{bottom:475.170000px;}
.y19{bottom:481.020000px;}
.y73{bottom:485.250000px;}
.ya0{bottom:486.960000px;}
.y1ba{bottom:487.140000px;}
.y151{bottom:489.210000px;}
.y10b{bottom:492.360000px;}
.y12c{bottom:492.630000px;}
.y198{bottom:496.500000px;}
.y18{bottom:498.660000px;}
.y16d{bottom:501.810000px;}
.y9f{bottom:504.510000px;}
.y1b9{bottom:504.690000px;}
.y150{bottom:506.760000px;}
.y10a{bottom:509.910000px;}
.y12b{bottom:510.180000px;}
.ye5{bottom:511.620000px;}
.y197{bottom:514.140000px;}
.y17{bottom:516.210000px;}
.y9e{bottom:522.150000px;}
.y14f{bottom:524.400000px;}
.y12a{bottom:527.730000px;}
.y16c{bottom:528.720000px;}
.y72{bottom:531.330000px;}
.y196{bottom:531.690000px;}
.y16{bottom:533.760000px;}
.ye4{bottom:538.980000px;}
.y9d{bottom:539.700000px;}
.y14e{bottom:541.950000px;}
.y109{bottom:544.740000px;}
.y129{bottom:545.370000px;}
.y71{bottom:548.880000px;}
.y15{bottom:551.400000px;}
.y108{bottom:556.980000px;}
.y9c{bottom:557.250000px;}
.y195{bottom:558.330000px;}
.y14d{bottom:559.500000px;}
.y16b{bottom:565.800000px;}
.ye3{bottom:566.250000px;}
.y1b8{bottom:566.430000px;}
.y14{bottom:568.950000px;}
.y9b{bottom:574.890000px;}
.y194{bottom:575.880000px;}
.y14c{bottom:577.140000px;}
.y128{bottom:580.920000px;}
.y70{bottom:584.430000px;}
.y13{bottom:586.590000px;}
.y9a{bottom:592.440000px;}
.y16a{bottom:592.710000px;}
.y1b7{bottom:593.070000px;}
.y193{bottom:593.430000px;}
.y14b{bottom:594.690000px;}
.y127{bottom:598.560000px;}
.y107{bottom:601.890000px;}
.y6f{bottom:602.070000px;}
.y12{bottom:604.140000px;}
.y99{bottom:610.080000px;}
.y1b6{bottom:610.620000px;}
.y192{bottom:611.070000px;}
.ye2{bottom:611.160000px;}
.y14a{bottom:612.330000px;}
.y47{bottom:616.470000px;}
.y6e{bottom:619.620000px;}
.y11{bottom:621.690000px;}
.y98{bottom:627.630000px;}
.y1b5{bottom:628.260000px;}
.y191{bottom:628.620000px;}
.y106{bottom:629.160000px;}
.y169{bottom:629.700000px;}
.y149{bottom:629.880000px;}
.y126{bottom:633.390000px;}
.y6d{bottom:637.260000px;}
.ye1{bottom:638.520000px;}
.y10{bottom:639.330000px;}
.y97{bottom:645.180000px;}
.yc2{bottom:645.270000px;}
.y125{bottom:647.430000px;}
.y46{bottom:652.380000px;}
.y6c{bottom:654.810000px;}
.y190{bottom:655.260000px;}
.y105{bottom:656.520000px;}
.y168{bottom:656.610000px;}
.yf{bottom:656.880000px;}
.y124{bottom:661.470000px;}
.y96{bottom:662.820000px;}
.y148{bottom:665.070000px;}
.ye0{bottom:665.880000px;}
.y6b{bottom:672.360000px;}
.y18f{bottom:672.810000px;}
.y123{bottom:675.600000px;}
.y118{bottom:680.280000px;}
.y95{bottom:680.370000px;}
.yc1{bottom:680.460000px;}
.y147{bottom:682.620000px;}
.ye{bottom:683.790000px;}
.y122{bottom:689.640000px;}
.y6a{bottom:690.000000px;}
.y18e{bottom:690.360000px;}
.y167{bottom:693.600000px;}
.y117{bottom:697.830000px;}
.y94{bottom:698.010000px;}
.y1b4{bottom:699.000000px;}
.y146{bottom:700.260000px;}
.y45{bottom:700.620000px;}
.y104{bottom:701.430000px;}
.y121{bottom:703.680000px;}
.ydc{bottom:710.790000px;}
.y166{bottom:711.240000px;}
.yc0{bottom:715.290000px;}
.y93{bottom:715.560000px;}
.y69{bottom:716.550000px;}
.y18d{bottom:717.000000px;}
.y120{bottom:717.810000px;}
.y44{bottom:718.260000px;}
.y103{bottom:728.790000px;}
.ybf{bottom:729.330000px;}
.y11f{bottom:731.850000px;}
.yd{bottom:732.030000px;}
.y92{bottom:733.110000px;}
.y116{bottom:733.470000px;}
.y1b3{bottom:734.190000px;}
.y18c{bottom:734.550000px;}
.y145{bottom:735.360000px;}
.y43{bottom:735.810000px;}
.yda{bottom:738.150000px;}
.ybe{bottom:741.570000px;}
.y11e{bottom:745.890000px;}
.y91{bottom:750.750000px;}
.y115{bottom:751.020000px;}
.y68{bottom:752.190000px;}
.y144{bottom:753.000000px;}
.y42{bottom:753.360000px;}
.y102{bottom:756.150000px;}
.y11d{bottom:760.020000px;}
.y1b2{bottom:760.740000px;}
.yc{bottom:767.850000px;}
.y90{bottom:768.300000px;}
.ybd{bottom:768.840000px;}
.y67{bottom:769.740000px;}
.y143{bottom:770.550000px;}
.y41{bottom:771.000000px;}
.y11c{bottom:774.060000px;}
.y165{bottom:775.500000px;}
.y1b1{bottom:778.290000px;}
.y18b{bottom:778.740000px;}
.yd9{bottom:783.060000px;}
.y114{bottom:783.240000px;}
.y11b{bottom:785.490000px;}
.y8f{bottom:785.850000px;}
.y66{bottom:787.290000px;}
.y142{bottom:788.190000px;}
.y40{bottom:788.550000px;}
.y1b0{bottom:795.930000px;}
.ybc{bottom:796.200000px;}
.y18a{bottom:796.290000px;}
.yff{bottom:801.060000px;}
.y8e{bottom:803.490000px;}
.yb{bottom:803.850000px;}
.y65{bottom:804.930000px;}
.y141{bottom:805.740000px;}
.y3f{bottom:806.190000px;}
.yd4{bottom:810.420000px;}
.yac{bottom:814.650000px;}
.y8d{bottom:821.040000px;}
.y64{bottom:822.480000px;}
.y189{bottom:822.930000px;}
.y140{bottom:823.290000px;}
.ybb{bottom:823.560000px;}
.y3e{bottom:823.740000px;}
.y101{bottom:828.420000px;}
.y1c6{bottom:831.480000px;}
.yd8{bottom:837.690000px;}
.y8c{bottom:838.680000px;}
.y63{bottom:840.030000px;}
.y188{bottom:840.480000px;}
.y3d{bottom:841.290000px;}
.ya{bottom:843.630000px;}
.y1af{bottom:849.030000px;}
.yab{bottom:850.290000px;}
.yba{bottom:850.920000px;}
.yfe{bottom:855.690000px;}
.y8b{bottom:856.230000px;}
.y62{bottom:857.670000px;}
.y9{bottom:857.850000px;}
.y187{bottom:858.030000px;}
.y3c{bottom:858.930000px;}
.y1ae{bottom:866.670000px;}
.yaa{bottom:867.840000px;}
.y8a{bottom:873.780000px;}
.y61{bottom:875.220000px;}
.y1c5{bottom:875.670000px;}
.y3b{bottom:876.480000px;}
.yb9{bottom:878.190000px;}
.y8{bottom:879.630000px;}
.yd6{bottom:882.600000px;}
.yfd{bottom:883.050000px;}
.y1ad{bottom:884.220000px;}
.y186{bottom:884.670000px;}
.ya9{bottom:885.390000px;}
.y89{bottom:891.420000px;}
.y60{bottom:892.860000px;}
.y1c4{bottom:893.220000px;}
.y3a{bottom:894.030000px;}
.y7{bottom:897.630000px;}
.y185{bottom:902.220000px;}
.yb8{bottom:905.550000px;}
.y88{bottom:908.970000px;}
.y1ac{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.ya8{bottom:917.610000px;}
.y5f{bottom:919.410000px;}
.y184{bottom:919.860000px;}
.y87{bottom:926.610000px;}
.yd1{bottom:927.600000px;}
.yfa{bottom:927.960000px;}
.y1ab{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.yb7{bottom:932.910000px;}
.ya6{bottom:933.450000px;}
.y183{bottom:937.410000px;}
.y86{bottom:944.160000px;}
.y1aa{bottom:945.960000px;}
.y4f{bottom:946.410000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yd3{bottom:954.870000px;}
.y5e{bottom:954.960000px;}
.y85{bottom:961.710000px;}
.y182{bottom:963.960000px;}
.y36{bottom:964.410000px;}
.y5d{bottom:972.600000px;}
.yfc{bottom:972.870000px;}
.yb6{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.yd0{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y84{bottom:988.260000px;}
.y5c{bottom:990.150000px;}
.y181{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y5b{bottom:1007.790000px;}
.yce{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y180{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.yf9{bottom:1017.810000px;}
.y83{bottom:1020.960000px;}
.y5a{bottom:1025.370000px;}
.y17f{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.ycd{bottom:1036.890000px;}
.y59{bottom:1042.920000px;}
.yf4{bottom:1045.170000px;}
.y31{bottom:1052.370000px;}
.y82{bottom:1056.870000px;}
.y58{bottom:1060.560000px;}
.y17e{bottom:1060.920000px;}
.yca{bottom:1064.250000px;}
.y30{bottom:1069.920000px;}
.yf8{bottom:1072.530000px;}
.y17d{bottom:1078.560000px;}
.y57{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.ycc{bottom:1091.610000px;}
.y1c3{bottom:1096.110000px;}
.yf7{bottom:1099.890000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.yf3{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h13{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h11{height:41.661211px;}
.h16{height:44.100000px;}
.h18{height:44.130000px;}
.h15{height:44.190000px;}
.h1b{height:44.220000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h12{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:59.973223px;}
.h1c{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h19{height:81.270000px;}
.h1a{height:89.130000px;}
.hc{height:92.631445px;}
.hb{height:98.547539px;}
.h14{height:116.370000px;}
.h17{height:243.390000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:74.970000px;}
.wf{width:77.850000px;}
.w7{width:79.830000px;}
.w10{width:82.110000px;}
.w12{width:82.170000px;}
.w9{width:100.710000px;}
.w8{width:100.740000px;}
.wa{width:104.970000px;}
.w4{width:110.250000px;}
.w6{width:121.680000px;}
.we{width:150.750000px;}
.wd{width:157.860000px;}
.wc{width:160.770000px;}
.wb{width:178.380000px;}
.w3{width:180.000000px;}
.w5{width:227.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x2d{left:70.379987px;}
.x2a{left:71.459987px;}
.x18{left:73.619987px;}
.x2b{left:76.679987px;}
.x7{left:80.099987px;}
.x2e{left:81.269987px;}
.x10{left:83.789987px;}
.x2c{left:86.219987px;}
.x29{left:89.819987px;}
.xf{left:96.659987px;}
.x31{left:111.239987px;}
.x13{left:122.759987px;}
.x1c{left:174.450000px;}
.x5{left:187.859987px;}
.x2{left:211.079987px;}
.x8{left:219.179987px;}
.x27{left:220.529987px;}
.x14{left:244.020000px;}
.x19{left:273.989987px;}
.x23{left:278.939987px;}
.x30{left:281.279987px;}
.x11{left:303.689987px;}
.x1d{left:353.550000px;}
.x25{left:360.479987px;}
.x15{left:366.420000px;}
.xc{left:368.040000px;}
.x2f{left:392.429987px;}
.x9{left:404.669987px;}
.x1b{left:424.739987px;}
.x20{left:432.210000px;}
.x16{left:447.060000px;}
.xa{left:464.609987px;}
.xd{left:479.010000px;}
.x1e{left:515.130000px;}
.x17{left:548.520000px;}
.x21{left:590.820000px;}
.x1f{left:673.710000px;}
.x26{left:682.889987px;}
.x24{left:707.189987px;}
.x4{left:714.839987px;}
.x6{left:723.389987px;}
.x22{left:749.490000px;}
.x1a{left:766.859987px;}
.x28{left:769.559987px;}
.xe{left:778.559987px;}
.x3{left:800.339987px;}
.x12{left:826.349987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.v4{vertical-align:42.560000pt;}
.ls23{letter-spacing:-0.395200pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.161067pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls24{letter-spacing:-0.085867pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls22{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.074667pt;}
.ls19{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.035840pt;}
.ls1c{letter-spacing:-0.009920pt;}
.ls1e{letter-spacing:-0.008320pt;}
.ls7{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.004160pt;}
.ls14{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.027200pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls15{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.086933pt;}
.ls1b{letter-spacing:0.091733pt;}
.ls26{letter-spacing:0.102933pt;}
.ls12{letter-spacing:0.104000pt;}
.lse{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.158933pt;}
.lsd{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.161067pt;}
.ls20{letter-spacing:0.284267pt;}
.ls28{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:2.643200pt;}
.ls10{letter-spacing:8.831040pt;}
.ls27{letter-spacing:42.423680pt;}
.ls11{letter-spacing:54.445440pt;}
.ls25{letter-spacing:71.863680pt;}
.wse{word-spacing:-44.875200pt;}
.ws17{word-spacing:-42.551680pt;}
.wsd{word-spacing:-38.639680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws18{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws19{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.848533pt;}
.ws14{word-spacing:-11.843733pt;}
.wsc{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.746880pt;}
.ws11{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws15{word-spacing:-9.367360pt;}
.ws16{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.wsf{word-spacing:-7.762133pt;}
.ws3{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.442133pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._6{margin-left:-3.206400pt;}
._5{margin-left:-1.835947pt;}
._7{margin-left:-0.905280pt;}
._1{width:0.969056pt;}
._a{width:2.421120pt;}
._4{width:3.346240pt;}
._2{width:4.860304pt;}
._3{width:5.977738pt;}
._b{width:7.490860pt;}
._9{width:8.499104pt;}
._8{width:9.675520pt;}
._c{width:10.817386pt;}
._13{width:12.829120pt;}
._15{width:14.054720pt;}
._f{width:15.123734pt;}
._e{width:16.352533pt;}
._16{width:17.474880pt;}
._d{width:18.424320pt;}
._17{width:19.641600pt;}
._19{width:20.895040pt;}
._10{width:22.338134pt;}
._11{width:23.298664pt;}
._1a{width:30.642240pt;}
._1b{width:31.803946pt;}
._0{width:58.827765pt;}
._18{width:86.893440pt;}
._14{width:149.845760pt;}
._12{width:311.771307pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:6.960000pt;}
.ycf{bottom:6.986667pt;}
.y7c{bottom:7.040000pt;}
.yd2{bottom:15.600000pt;}
.y100{bottom:15.680000pt;}
.ydb{bottom:22.560000pt;}
.ye6{bottom:22.586667pt;}
.yd7{bottom:22.640000pt;}
.ycb{bottom:31.280000pt;}
.yf6{bottom:40.000000pt;}
.yf5{bottom:55.600000pt;}
.yfb{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yd5{bottom:86.800000pt;}
.y1{bottom:90.346667pt;}
.y164{bottom:102.266667pt;}
.y1a9{bottom:103.626667pt;}
.y13f{bottom:105.306667pt;}
.yf2{bottom:107.626667pt;}
.y4e{bottom:110.106667pt;}
.yb5{bottom:111.066667pt;}
.y56{bottom:111.466667pt;}
.yc9{bottom:113.546667pt;}
.y163{bottom:117.866667pt;}
.y1a8{bottom:119.226667pt;}
.y13e{bottom:120.906667pt;}
.y29{bottom:124.346667pt;}
.y4d{bottom:125.786667pt;}
.yb4{bottom:126.666667pt;}
.y55{bottom:127.066667pt;}
.yc8{bottom:129.146667pt;}
.yf1{bottom:131.866667pt;}
.y81{bottom:133.066667pt;}
.y17c{bottom:134.426667pt;}
.y13d{bottom:136.506667pt;}
.y28{bottom:139.946667pt;}
.y4c{bottom:141.386667pt;}
.y162{bottom:141.786667pt;}
.yb3{bottom:142.346667pt;}
.y54{bottom:142.666667pt;}
.y1a7{bottom:142.826667pt;}
.yc7{bottom:144.746667pt;}
.y17b{bottom:150.106667pt;}
.y13c{bottom:152.186667pt;}
.ya5{bottom:153.306667pt;}
.y27{bottom:155.626667pt;}
.yf0{bottom:156.186667pt;}
.y4b{bottom:157.066667pt;}
.y80{bottom:157.306667pt;}
.yb2{bottom:157.946667pt;}
.y53{bottom:158.346667pt;}
.y1a6{bottom:158.506667pt;}
.yc6{bottom:160.426667pt;}
.y17a{bottom:165.706667pt;}
.y13b{bottom:167.786667pt;}
.y26{bottom:171.226667pt;}
.y4a{bottom:172.666667pt;}
.yb1{bottom:173.626667pt;}
.y1a5{bottom:174.106667pt;}
.yef{bottom:180.506667pt;}
.y7f{bottom:181.626667pt;}
.y13a{bottom:183.466667pt;}
.ydf{bottom:184.026667pt;}
.y161{bottom:184.746667pt;}
.y25{bottom:186.826667pt;}
.yb0{bottom:189.226667pt;}
.y179{bottom:189.306667pt;}
.y52{bottom:189.946667pt;}
.yc5{bottom:192.026667pt;}
.y1a4{bottom:197.786667pt;}
.y139{bottom:199.066667pt;}
.yde{bottom:199.706667pt;}
.y160{bottom:200.346667pt;}
.y24{bottom:202.506667pt;}
.ya7{bottom:203.706667pt;}
.y49{bottom:204.266667pt;}
.y178{bottom:204.986667pt;}
.y51{bottom:205.626667pt;}
.y7e{bottom:205.946667pt;}
.yc4{bottom:207.706667pt;}
.y1a3{bottom:213.386667pt;}
.y138{bottom:214.666667pt;}
.y15f{bottom:215.946667pt;}
.y23{bottom:218.106667pt;}
.yee{bottom:220.426667pt;}
.yaf{bottom:220.826667pt;}
.y177{bottom:228.586667pt;}
.y1a2{bottom:228.986667pt;}
.y7d{bottom:230.186667pt;}
.y137{bottom:230.346667pt;}
.y15e{bottom:231.626667pt;}
.y48{bottom:232.906667pt;}
.y50{bottom:234.266667pt;}
.yc3{bottom:236.346667pt;}
.yae{bottom:236.506667pt;}
.y22{bottom:242.026667pt;}
.y176{bottom:244.266667pt;}
.yed{bottom:244.746667pt;}
.y136{bottom:245.946667pt;}
.y15d{bottom:247.226667pt;}
.y1a1{bottom:252.666667pt;}
.y7b{bottom:254.506667pt;}
.y175{bottom:259.866667pt;}
.y135{bottom:261.546667pt;}
.y15c{bottom:262.826667pt;}
.yad{bottom:265.146667pt;}
.y1c2{bottom:268.266667pt;}
.yec{bottom:268.986667pt;}
.y1a0{bottom:276.266667pt;}
.y134{bottom:277.226667pt;}
.y15b{bottom:278.506667pt;}
.y7a{bottom:278.826667pt;}
.y174{bottom:283.786667pt;}
.y1c1{bottom:283.946667pt;}
.y21{bottom:284.906667pt;}
.y19f{bottom:291.946667pt;}
.yea{bottom:293.306667pt;}
.y15a{bottom:294.106667pt;}
.y20{bottom:300.826667pt;}
.y133{bottom:301.146667pt;}
.y78{bottom:303.146667pt;}
.y1c0{bottom:307.546667pt;}
.y159{bottom:309.786667pt;}
.y113{bottom:312.506667pt;}
.y19e{bottom:315.546667pt;}
.yeb{bottom:317.626667pt;}
.y1bf{bottom:323.146667pt;}
.y158{bottom:325.386667pt;}
.y173{bottom:326.666667pt;}
.y112{bottom:328.186667pt;}
.y1f{bottom:333.786667pt;}
.y1be{bottom:338.826667pt;}
.y19d{bottom:339.146667pt;}
.y157{bottom:340.986667pt;}
.ye9{bottom:341.946667pt;}
.y172{bottom:342.346667pt;}
.y111{bottom:343.786667pt;}
.y132{bottom:344.026667pt;}
.y77{bottom:346.426667pt;}
.y1e{bottom:349.386667pt;}
.y11a{bottom:352.986667pt;}
.y19c{bottom:354.826667pt;}
.y156{bottom:356.666667pt;}
.y171{bottom:357.946667pt;}
.y110{bottom:359.466667pt;}
.y131{bottom:359.706667pt;}
.y1bd{bottom:362.426667pt;}
.y1d{bottom:365.066667pt;}
.ye8{bottom:366.186667pt;}
.ya4{bottom:370.266667pt;}
.y155{bottom:372.266667pt;}
.y170{bottom:373.626667pt;}
.y10f{bottom:375.066667pt;}
.y130{bottom:375.306667pt;}
.y76{bottom:378.026667pt;}
.y1bc{bottom:378.106667pt;}
.y19b{bottom:378.426667pt;}
.y1c{bottom:380.666667pt;}
.y119{bottom:381.626667pt;}
.ya3{bottom:385.946667pt;}
.y154{bottom:387.946667pt;}
.y16f{bottom:389.226667pt;}
.ye7{bottom:390.506667pt;}
.y10e{bottom:390.666667pt;}
.y12f{bottom:390.906667pt;}
.y75{bottom:393.706667pt;}
.y19a{bottom:394.106667pt;}
.y1b{bottom:396.266667pt;}
.ya2{bottom:401.546667pt;}
.y153{bottom:403.546667pt;}
.y10d{bottom:406.346667pt;}
.y12e{bottom:406.586667pt;}
.y1a{bottom:411.946667pt;}
.y16e{bottom:413.146667pt;}
.ydd{bottom:414.826667pt;}
.ya1{bottom:417.146667pt;}
.y1bb{bottom:417.306667pt;}
.y199{bottom:417.733333pt;}
.y152{bottom:419.173333pt;}
.y10c{bottom:421.973333pt;}
.y12d{bottom:422.213333pt;}
.y74{bottom:422.373333pt;}
.y19{bottom:427.573333pt;}
.y73{bottom:431.333333pt;}
.ya0{bottom:432.853333pt;}
.y1ba{bottom:433.013333pt;}
.y151{bottom:434.853333pt;}
.y10b{bottom:437.653333pt;}
.y12c{bottom:437.893333pt;}
.y198{bottom:441.333333pt;}
.y18{bottom:443.253333pt;}
.y16d{bottom:446.053333pt;}
.y9f{bottom:448.453333pt;}
.y1b9{bottom:448.613333pt;}
.y150{bottom:450.453333pt;}
.y10a{bottom:453.253333pt;}
.y12b{bottom:453.493333pt;}
.ye5{bottom:454.773333pt;}
.y197{bottom:457.013333pt;}
.y17{bottom:458.853333pt;}
.y9e{bottom:464.133333pt;}
.y14f{bottom:466.133333pt;}
.y12a{bottom:469.093333pt;}
.y16c{bottom:469.973333pt;}
.y72{bottom:472.293333pt;}
.y196{bottom:472.613333pt;}
.y16{bottom:474.453333pt;}
.ye4{bottom:479.093333pt;}
.y9d{bottom:479.733333pt;}
.y14e{bottom:481.733333pt;}
.y109{bottom:484.213333pt;}
.y129{bottom:484.773333pt;}
.y71{bottom:487.893333pt;}
.y15{bottom:490.133333pt;}
.y108{bottom:495.093333pt;}
.y9c{bottom:495.333333pt;}
.y195{bottom:496.293333pt;}
.y14d{bottom:497.333333pt;}
.y16b{bottom:502.933333pt;}
.ye3{bottom:503.333333pt;}
.y1b8{bottom:503.493333pt;}
.y14{bottom:505.733333pt;}
.y9b{bottom:511.013333pt;}
.y194{bottom:511.893333pt;}
.y14c{bottom:513.013333pt;}
.y128{bottom:516.373333pt;}
.y70{bottom:519.493333pt;}
.y13{bottom:521.413333pt;}
.y9a{bottom:526.613333pt;}
.y16a{bottom:526.853333pt;}
.y1b7{bottom:527.173333pt;}
.y193{bottom:527.493333pt;}
.y14b{bottom:528.613333pt;}
.y127{bottom:532.053333pt;}
.y107{bottom:535.013333pt;}
.y6f{bottom:535.173333pt;}
.y12{bottom:537.013333pt;}
.y99{bottom:542.293333pt;}
.y1b6{bottom:542.773333pt;}
.y192{bottom:543.173333pt;}
.ye2{bottom:543.253333pt;}
.y14a{bottom:544.293333pt;}
.y47{bottom:547.973333pt;}
.y6e{bottom:550.773333pt;}
.y11{bottom:552.613333pt;}
.y98{bottom:557.893333pt;}
.y1b5{bottom:558.453333pt;}
.y191{bottom:558.773333pt;}
.y106{bottom:559.253333pt;}
.y169{bottom:559.733333pt;}
.y149{bottom:559.893333pt;}
.y126{bottom:563.013333pt;}
.y6d{bottom:566.453333pt;}
.ye1{bottom:567.573333pt;}
.y10{bottom:568.293333pt;}
.y97{bottom:573.493333pt;}
.yc2{bottom:573.573333pt;}
.y125{bottom:575.493333pt;}
.y46{bottom:579.893333pt;}
.y6c{bottom:582.053333pt;}
.y190{bottom:582.453333pt;}
.y105{bottom:583.573333pt;}
.y168{bottom:583.653333pt;}
.yf{bottom:583.893333pt;}
.y124{bottom:587.973333pt;}
.y96{bottom:589.173333pt;}
.y148{bottom:591.173333pt;}
.ye0{bottom:591.893333pt;}
.y6b{bottom:597.653333pt;}
.y18f{bottom:598.053333pt;}
.y123{bottom:600.533333pt;}
.y118{bottom:604.693333pt;}
.y95{bottom:604.773333pt;}
.yc1{bottom:604.853333pt;}
.y147{bottom:606.773333pt;}
.ye{bottom:607.813333pt;}
.y122{bottom:613.013333pt;}
.y6a{bottom:613.333333pt;}
.y18e{bottom:613.653333pt;}
.y167{bottom:616.533333pt;}
.y117{bottom:620.293333pt;}
.y94{bottom:620.453333pt;}
.y1b4{bottom:621.333333pt;}
.y146{bottom:622.453333pt;}
.y45{bottom:622.773333pt;}
.y104{bottom:623.493333pt;}
.y121{bottom:625.493333pt;}
.ydc{bottom:631.813333pt;}
.y166{bottom:632.213333pt;}
.yc0{bottom:635.813333pt;}
.y93{bottom:636.053333pt;}
.y69{bottom:636.933333pt;}
.y18d{bottom:637.333333pt;}
.y120{bottom:638.053333pt;}
.y44{bottom:638.453333pt;}
.y103{bottom:647.813333pt;}
.ybf{bottom:648.293333pt;}
.y11f{bottom:650.533333pt;}
.yd{bottom:650.693333pt;}
.y92{bottom:651.653333pt;}
.y116{bottom:651.973333pt;}
.y1b3{bottom:652.613333pt;}
.y18c{bottom:652.933333pt;}
.y145{bottom:653.653333pt;}
.y43{bottom:654.053333pt;}
.yda{bottom:656.133333pt;}
.ybe{bottom:659.173333pt;}
.y11e{bottom:663.013333pt;}
.y91{bottom:667.333333pt;}
.y115{bottom:667.573333pt;}
.y68{bottom:668.613333pt;}
.y144{bottom:669.333333pt;}
.y42{bottom:669.653333pt;}
.y102{bottom:672.133333pt;}
.y11d{bottom:675.573333pt;}
.y1b2{bottom:676.213333pt;}
.yc{bottom:682.533333pt;}
.y90{bottom:682.933333pt;}
.ybd{bottom:683.413333pt;}
.y67{bottom:684.213333pt;}
.y143{bottom:684.933333pt;}
.y41{bottom:685.333333pt;}
.y11c{bottom:688.053333pt;}
.y165{bottom:689.333333pt;}
.y1b1{bottom:691.813333pt;}
.y18b{bottom:692.213333pt;}
.yd9{bottom:696.053333pt;}
.y114{bottom:696.213333pt;}
.y11b{bottom:698.213333pt;}
.y8f{bottom:698.533333pt;}
.y66{bottom:699.813333pt;}
.y142{bottom:700.613333pt;}
.y40{bottom:700.933333pt;}
.y1b0{bottom:707.493333pt;}
.ybc{bottom:707.733333pt;}
.y18a{bottom:707.813333pt;}
.yff{bottom:712.053333pt;}
.y8e{bottom:714.213333pt;}
.yb{bottom:714.533333pt;}
.y65{bottom:715.493333pt;}
.y141{bottom:716.213333pt;}
.y3f{bottom:716.613333pt;}
.yd4{bottom:720.373333pt;}
.yac{bottom:724.133333pt;}
.y8d{bottom:729.813333pt;}
.y64{bottom:731.093333pt;}
.y189{bottom:731.493333pt;}
.y140{bottom:731.813333pt;}
.ybb{bottom:732.053333pt;}
.y3e{bottom:732.213333pt;}
.y101{bottom:736.373333pt;}
.y1c6{bottom:739.093333pt;}
.yd8{bottom:744.613333pt;}
.y8c{bottom:745.493333pt;}
.y63{bottom:746.693333pt;}
.y188{bottom:747.093333pt;}
.y3d{bottom:747.813333pt;}
.ya{bottom:749.893333pt;}
.y1af{bottom:754.693333pt;}
.yab{bottom:755.813333pt;}
.yba{bottom:756.373333pt;}
.yfe{bottom:760.613333pt;}
.y8b{bottom:761.093333pt;}
.y62{bottom:762.373333pt;}
.y9{bottom:762.533333pt;}
.y187{bottom:762.693333pt;}
.y3c{bottom:763.493333pt;}
.y1ae{bottom:770.373333pt;}
.yaa{bottom:771.413333pt;}
.y8a{bottom:776.693333pt;}
.y61{bottom:777.973333pt;}
.y1c5{bottom:778.373333pt;}
.y3b{bottom:779.093333pt;}
.yb9{bottom:780.613333pt;}
.y8{bottom:781.893333pt;}
.yd6{bottom:784.533333pt;}
.yfd{bottom:784.933333pt;}
.y1ad{bottom:785.973333pt;}
.y186{bottom:786.373333pt;}
.ya9{bottom:787.013333pt;}
.y89{bottom:792.373333pt;}
.y60{bottom:793.653333pt;}
.y1c4{bottom:793.973333pt;}
.y3a{bottom:794.693333pt;}
.y7{bottom:797.893333pt;}
.y185{bottom:801.973333pt;}
.yb8{bottom:804.933333pt;}
.y88{bottom:807.973333pt;}
.y1ac{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.ya8{bottom:815.653333pt;}
.y5f{bottom:817.253333pt;}
.y184{bottom:817.653333pt;}
.y87{bottom:823.653333pt;}
.yd1{bottom:824.533333pt;}
.yfa{bottom:824.853333pt;}
.y1ab{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.yb7{bottom:829.253333pt;}
.ya6{bottom:829.733333pt;}
.y183{bottom:833.253333pt;}
.y86{bottom:839.253333pt;}
.y1aa{bottom:840.853333pt;}
.y4f{bottom:841.253333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yd3{bottom:848.773333pt;}
.y5e{bottom:848.853333pt;}
.y85{bottom:854.853333pt;}
.y182{bottom:856.853333pt;}
.y36{bottom:857.253333pt;}
.y5d{bottom:864.533333pt;}
.yfc{bottom:864.773333pt;}
.yb6{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.yd0{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y84{bottom:878.453333pt;}
.y5c{bottom:880.133333pt;}
.y181{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y5b{bottom:895.813333pt;}
.yce{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y180{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.yf9{bottom:904.720000pt;}
.y83{bottom:907.520000pt;}
.y5a{bottom:911.440000pt;}
.y17f{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.ycd{bottom:921.680000pt;}
.y59{bottom:927.040000pt;}
.yf4{bottom:929.040000pt;}
.y31{bottom:935.440000pt;}
.y82{bottom:939.440000pt;}
.y58{bottom:942.720000pt;}
.y17e{bottom:943.040000pt;}
.yca{bottom:946.000000pt;}
.y30{bottom:951.040000pt;}
.yf8{bottom:953.360000pt;}
.y17d{bottom:958.720000pt;}
.y57{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.ycc{bottom:970.320000pt;}
.y1c3{bottom:974.320000pt;}
.yf7{bottom:977.680000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.yf3{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h13{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h11{height:37.032187pt;}
.h16{height:39.200000pt;}
.h18{height:39.226667pt;}
.h15{height:39.280000pt;}
.h1b{height:39.306667pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h12{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:53.309531pt;}
.h1c{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h19{height:72.240000pt;}
.h1a{height:79.226667pt;}
.hc{height:82.339063pt;}
.hb{height:87.597812pt;}
.h14{height:103.440000pt;}
.h17{height:216.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:66.640000pt;}
.wf{width:69.200000pt;}
.w7{width:70.960000pt;}
.w10{width:72.986667pt;}
.w12{width:73.040000pt;}
.w9{width:89.520000pt;}
.w8{width:89.546667pt;}
.wa{width:93.306667pt;}
.w4{width:98.000000pt;}
.w6{width:108.160000pt;}
.we{width:134.000000pt;}
.wd{width:140.320000pt;}
.wc{width:142.906667pt;}
.wb{width:158.560000pt;}
.w3{width:160.000000pt;}
.w5{width:201.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2d{left:62.559988pt;}
.x2a{left:63.519988pt;}
.x18{left:65.439988pt;}
.x2b{left:68.159988pt;}
.x7{left:71.199988pt;}
.x2e{left:72.239988pt;}
.x10{left:74.479988pt;}
.x2c{left:76.639988pt;}
.x29{left:79.839988pt;}
.xf{left:85.919988pt;}
.x31{left:98.879988pt;}
.x13{left:109.119988pt;}
.x1c{left:155.066667pt;}
.x5{left:166.986655pt;}
.x2{left:187.626655pt;}
.x8{left:194.826655pt;}
.x27{left:196.026655pt;}
.x14{left:216.906667pt;}
.x19{left:243.546655pt;}
.x23{left:247.946655pt;}
.x30{left:250.026655pt;}
.x11{left:269.946655pt;}
.x1d{left:314.266667pt;}
.x25{left:320.426655pt;}
.x15{left:325.706667pt;}
.xc{left:327.146667pt;}
.x2f{left:348.826655pt;}
.x9{left:359.706655pt;}
.x1b{left:377.546655pt;}
.x20{left:384.186667pt;}
.x16{left:397.386667pt;}
.xa{left:412.986655pt;}
.xd{left:425.786667pt;}
.x1e{left:457.893333pt;}
.x17{left:487.573333pt;}
.x21{left:525.173333pt;}
.x1f{left:598.853333pt;}
.x26{left:607.013322pt;}
.x24{left:628.613322pt;}
.x4{left:635.413322pt;}
.x6{left:643.013322pt;}
.x22{left:666.213333pt;}
.x1a{left:681.653322pt;}
.x28{left:684.053322pt;}
.xe{left:692.053322pt;}
.x3{left:711.413322pt;}
.x12{left:734.533322pt;}
}




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