
    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_94d9d4b6000f76394273badf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_f71fcc8b729dcad6fab89f17.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_013234be55237a0e8206de33.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8652742aa3b99b49b3e72c9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e165791c91e6617895cc9249.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_934d72d505a3ee8bff0da33f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_93b9cc355e63e714ecc7772b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_a4b57772340520efa699372c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_f2455ecadb486fd696640578.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2c5cba4c40a4dd2ca6692348.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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:-82.800000px;}
.v8{vertical-align:-81.360000px;}
.v5{vertical-align:-77.040000px;}
.v7{vertical-align:-72.000000px;}
.v3{vertical-align:-18.000000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:23.760000px;}
.ls17{letter-spacing:-2.730000px;}
.lsa{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.026000px;}
.lsb{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.414600px;}
.ls20{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.305400px;}
.ls25{letter-spacing:-0.262200px;}
.ls28{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.152400px;}
.ls2c{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls1a{letter-spacing:0.045360px;}
.ls21{letter-spacing:0.085440px;}
.ls4{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.152400px;}
.ls1d{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181200px;}
.lsd{letter-spacing:0.229440px;}
.ls1f{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.269400px;}
.ls6{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.360000px;}
.lse{letter-spacing:1.440000px;}
.ls14{letter-spacing:2.309760px;}
.ls2d{letter-spacing:4.469760px;}
.ls24{letter-spacing:5.760000px;}
.ls22{letter-spacing:15.120000px;}
.ls23{letter-spacing:15.840000px;}
.ls29{letter-spacing:26.640000px;}
.ls10{letter-spacing:31.109760px;}
.ls1e{letter-spacing:66.960000px;}
.ls26{letter-spacing:496.056000px;}
.ls2a{letter-spacing:626.400000px;}
.ls16{letter-spacing:671.916000px;}
.lsf{letter-spacing:758.316000px;}
.ls2b{letter-spacing:915.996000px;}
.ls5{letter-spacing:977.196000px;}
.ls1c{letter-spacing:983.676000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws19{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws4{word-spacing:-16.407600px;}
.ws16{word-spacing:-16.297800px;}
.ws5{word-spacing:-16.254600px;}
.ws3{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.948000px;}
.ws8{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws12{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.830000px;}
.wse{word-spacing:-12.420000px;}
.wsd{word-spacing:-12.329400px;}
.ws17{word-spacing:-12.241200px;}
.wsf{word-spacing:-12.105360px;}
.wsc{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.878800px;}
.ws11{word-spacing:-10.440000px;}
.ws10{word-spacing:-7.560000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-7.333680px;}
._15{margin-left:-6.254640px;}
._2{margin-left:-5.012640px;}
._4{margin-left:-3.908160px;}
._3{margin-left:-2.380800px;}
._0{margin-left:-1.258560px;}
._1{width:1.428240px;}
._c{width:2.466720px;}
._a{width:3.643200px;}
._f{width:5.024880px;}
._10{width:6.097920px;}
._d{width:7.216320px;}
._6{width:8.870880px;}
._5{width:10.002240px;}
._b{width:11.377680px;}
._7{width:12.455040px;}
._8{width:13.637280px;}
._9{width:14.837760px;}
._1b{width:17.664720px;}
._13{width:18.679680px;}
._14{width:20.278800px;}
._16{width:21.723600px;}
._18{width:23.739120px;}
._17{width:25.237440px;}
._21{width:26.531040px;}
._26{width:28.152000px;}
._27{width:29.202960px;}
._19{width:30.830160px;}
._1e{width:31.913520px;}
._11{width:32.958000px;}
._12{width:34.298640px;}
._1f{width:35.835840px;}
._20{width:36.936480px;}
._29{width:38.407440px;}
._e{width:41.333760px;}
._1c{width:43.320960px;}
._1d{width:44.604720px;}
._25{width:59.947200px;}
._28{width:61.358400px;}
._24{width:62.420160px;}
._22{width:77.567040px;}
._23{width:78.587040px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(33,150,209);}
.fc3{color:rgb(0,0,129);}
.fc2{color:rgb(0,0,133);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:2.520000px;}
.y111{bottom:2.700000px;}
.y104{bottom:3.240000px;}
.y106{bottom:3.420000px;}
.y137{bottom:16.200000px;}
.y13b{bottom:16.380000px;}
.y3{bottom:38.340000px;}
.y2d{bottom:57.780000px;}
.yf8{bottom:113.796000px;}
.y8e{bottom:115.056000px;}
.ya0{bottom:116.676000px;}
.y128{bottom:118.836000px;}
.yc5{bottom:119.016000px;}
.y5c{bottom:121.176000px;}
.y162{bottom:124.776000px;}
.yf7{bottom:132.876000px;}
.y183{bottom:133.236000px;}
.y8d{bottom:134.136000px;}
.y19d{bottom:134.316000px;}
.y9f{bottom:135.576000px;}
.y127{bottom:137.736000px;}
.yc4{bottom:138.096000px;}
.y5b{bottom:140.256000px;}
.y2c{bottom:142.056000px;}
.y161{bottom:143.676000px;}
.yf6{bottom:151.770000px;}
.y182{bottom:152.310000px;}
.y8c{bottom:153.030000px;}
.y19c{bottom:153.390000px;}
.y9e{bottom:154.470000px;}
.y126{bottom:156.630000px;}
.yc3{bottom:156.990000px;}
.y5a{bottom:159.150000px;}
.y2b{bottom:160.950000px;}
.y160{bottom:162.750000px;}
.yf5{bottom:170.670000px;}
.y181{bottom:171.210000px;}
.y8b{bottom:171.930000px;}
.y19b{bottom:172.290000px;}
.y9d{bottom:173.550000px;}
.y125{bottom:175.710000px;}
.yc2{bottom:176.070000px;}
.y59{bottom:178.230000px;}
.y2a{bottom:180.030000px;}
.y15f{bottom:181.650000px;}
.yf4{bottom:189.750000px;}
.y180{bottom:190.290000px;}
.y8a{bottom:191.010000px;}
.y19a{bottom:191.370000px;}
.y9c{bottom:192.450000px;}
.y124{bottom:194.610000px;}
.yc1{bottom:194.970000px;}
.y58{bottom:197.130000px;}
.y29{bottom:198.930000px;}
.y15e{bottom:200.730000px;}
.yf3{bottom:208.650000px;}
.y17f{bottom:209.190000px;}
.y89{bottom:209.910000px;}
.y199{bottom:210.270000px;}
.y9b{bottom:211.530000px;}
.y123{bottom:213.690000px;}
.yc0{bottom:213.870000px;}
.y57{bottom:216.030000px;}
.y28{bottom:218.010000px;}
.y15d{bottom:219.630000px;}
.yf2{bottom:227.730000px;}
.y88{bottom:228.990000px;}
.y198{bottom:229.350000px;}
.y9a{bottom:230.430000px;}
.y122{bottom:232.590000px;}
.ybf{bottom:232.950000px;}
.y56{bottom:235.110000px;}
.y27{bottom:236.910000px;}
.y15c{bottom:238.530000px;}
.yf1{bottom:246.630000px;}
.y87{bottom:247.890000px;}
.y197{bottom:248.250000px;}
.y99{bottom:249.330000px;}
.ybe{bottom:251.850000px;}
.y55{bottom:254.010000px;}
.y26{bottom:255.810000px;}
.y15b{bottom:257.610000px;}
.yf0{bottom:265.530000px;}
.y86{bottom:266.790000px;}
.y196{bottom:267.150000px;}
.y98{bottom:268.410000px;}
.ybd{bottom:270.930000px;}
.y54{bottom:273.090000px;}
.y25{bottom:274.890000px;}
.y15a{bottom:276.510000px;}
.yef{bottom:284.610000px;}
.y85{bottom:285.870000px;}
.y195{bottom:286.230000px;}
.y97{bottom:287.310000px;}
.y121{bottom:290.190000px;}
.y53{bottom:291.990000px;}
.y24{bottom:293.790000px;}
.y159{bottom:295.590000px;}
.y120{bottom:302.070000px;}
.yee{bottom:303.510000px;}
.y17e{bottom:303.690000px;}
.y84{bottom:304.770000px;}
.y194{bottom:305.130000px;}
.y96{bottom:306.390000px;}
.ybc{bottom:306.570000px;}
.y52{bottom:310.890000px;}
.y23{bottom:312.870000px;}
.y11f{bottom:320.070000px;}
.ybb{bottom:320.430000px;}
.yed{bottom:322.590000px;}
.y17d{bottom:322.770000px;}
.y83{bottom:323.850000px;}
.y193{bottom:324.210000px;}
.y95{bottom:325.290000px;}
.y51{bottom:329.970000px;}
.y22{bottom:331.770000px;}
.yba{bottom:332.490000px;}
.y158{bottom:333.750000px;}
.y11e{bottom:338.115000px;}
.yec{bottom:341.535000px;}
.y17c{bottom:341.895000px;}
.y82{bottom:342.795000px;}
.y192{bottom:343.155000px;}
.y94{bottom:344.235000px;}
.yb9{bottom:347.115000px;}
.y50{bottom:348.915000px;}
.y21{bottom:350.715000px;}
.y157{bottom:351.255000px;}
.y11d{bottom:356.115000px;}
.yeb{bottom:360.435000px;}
.y17b{bottom:360.795000px;}
.yb8{bottom:361.695000px;}
.ya4{bottom:361.875000px;}
.y191{bottom:362.055000px;}
.y93{bottom:363.315000px;}
.y156{bottom:365.835000px;}
.y4f{bottom:367.995000px;}
.y20{bottom:369.795000px;}
.y11c{bottom:374.115000px;}
.yb7{bottom:376.275000px;}
.yea{bottom:379.515000px;}
.y17a{bottom:379.875000px;}
.y155{bottom:380.415000px;}
.ya3{bottom:380.775000px;}
.y190{bottom:381.135000px;}
.y92{bottom:382.215000px;}
.y4e{bottom:386.895000px;}
.y1f{bottom:388.695000px;}
.yb6{bottom:390.675000px;}
.y11b{bottom:392.115000px;}
.y154{bottom:394.995000px;}
.ye9{bottom:398.415000px;}
.y179{bottom:398.775000px;}
.y18f{bottom:400.035000px;}
.y81{bottom:400.755000px;}
.y91{bottom:401.295000px;}
.yb5{bottom:405.255000px;}
.y4d{bottom:405.795000px;}
.y1e{bottom:407.775000px;}
.y153{bottom:409.395000px;}
.y11a{bottom:410.115000px;}
.ye8{bottom:417.495000px;}
.y178{bottom:417.675000px;}
.y18e{bottom:419.115000px;}
.yb4{bottom:419.835000px;}
.y90{bottom:420.195000px;}
.y152{bottom:423.975000px;}
.y4c{bottom:424.875000px;}
.y1d{bottom:426.675000px;}
.y119{bottom:428.115000px;}
.yb3{bottom:434.415000px;}
.ye7{bottom:436.395000px;}
.y177{bottom:436.755000px;}
.y18d{bottom:438.015000px;}
.y151{bottom:438.555000px;}
.ya2{bottom:438.735000px;}
.y80{bottom:438.915000px;}
.y8f{bottom:439.095000px;}
.y4b{bottom:443.775000px;}
.y1c{bottom:445.575000px;}
.y118{bottom:446.115000px;}
.yb2{bottom:448.995000px;}
.y150{bottom:453.135000px;}
.ye6{bottom:455.295000px;}
.y176{bottom:455.655000px;}
.y18c{bottom:456.915000px;}
.y7f{bottom:458.175000px;}
.y4a{bottom:462.855000px;}
.yb1{bottom:463.395000px;}
.y117{bottom:464.115000px;}
.y1b{bottom:464.655000px;}
.y14f{bottom:467.715000px;}
.ye5{bottom:474.375000px;}
.y175{bottom:474.735000px;}
.y18b{bottom:475.995000px;}
.ya1{bottom:476.895000px;}
.y7e{bottom:477.075000px;}
.yb0{bottom:477.975000px;}
.y49{bottom:481.755000px;}
.y116{bottom:482.115000px;}
.y14e{bottom:482.295000px;}
.yaf{bottom:492.555000px;}
.ye4{bottom:493.275000px;}
.y174{bottom:493.635000px;}
.y18a{bottom:494.895000px;}
.y7d{bottom:496.155000px;}
.y14d{bottom:496.695000px;}
.y115{bottom:497.415000px;}
.y1a{bottom:501.915000px;}
.yae{bottom:507.135000px;}
.y14c{bottom:511.275000px;}
.ye3{bottom:512.355000px;}
.y173{bottom:512.535000px;}
.y114{bottom:512.715000px;}
.y189{bottom:513.975000px;}
.y7c{bottom:515.055000px;}
.yad{bottom:521.715000px;}
.y14b{bottom:525.855000px;}
.y113{bottom:527.835000px;}
.ye2{bottom:531.255000px;}
.y172{bottom:531.615000px;}
.y188{bottom:532.875000px;}
.y7b{bottom:534.135000px;}
.yac{bottom:536.295000px;}
.y48{bottom:539.715000px;}
.y14a{bottom:540.435000px;}
.y112{bottom:543.135000px;}
.y19{bottom:549.615000px;}
.ye1{bottom:550.335000px;}
.y171{bottom:550.515000px;}
.yab{bottom:550.695000px;}
.y187{bottom:551.775000px;}
.y7a{bottom:553.035000px;}
.y149{bottom:555.015000px;}
.y110{bottom:558.255000px;}
.yaa{bottom:565.275000px;}
.ye0{bottom:569.235000px;}
.y148{bottom:569.595000px;}
.y18{bottom:570.315000px;}
.y186{bottom:570.855000px;}
.y79{bottom:571.935000px;}
.y10f{bottom:573.555000px;}
.y47{bottom:577.875000px;}
.ya9{bottom:579.855000px;}
.y147{bottom:583.995000px;}
.ydf{bottom:588.135000px;}
.y170{bottom:588.495000px;}
.y185{bottom:589.755000px;}
.y17{bottom:591.015000px;}
.y10e{bottom:591.555000px;}
.ya7{bottom:594.435000px;}
.y46{bottom:597.135000px;}
.y146{bottom:598.575000px;}
.yde{bottom:607.245000px;}
.y16f{bottom:607.425000px;}
.y184{bottom:609.585000px;}
.y78{bottom:609.945000px;}
.y10d{bottom:610.485000px;}
.ya6{bottom:612.285000px;}
.y45{bottom:616.065000px;}
.ydd{bottom:626.145000px;}
.y16e{bottom:626.505000px;}
.y77{bottom:629.025000px;}
.y10c{bottom:629.385000px;}
.y16{bottom:629.745000px;}
.y145{bottom:634.425000px;}
.y44{bottom:635.145000px;}
.ydc{bottom:645.225000px;}
.y16d{bottom:645.405000px;}
.ya5{bottom:647.745000px;}
.y76{bottom:647.925000px;}
.y10b{bottom:648.105000px;}
.y15{bottom:650.445000px;}
.y144{bottom:651.885000px;}
.ydb{bottom:664.125000px;}
.y16c{bottom:664.485000px;}
.y75{bottom:666.825000px;}
.y10a{bottom:667.005000px;}
.y14{bottom:671.145000px;}
.y43{bottom:671.865000px;}
.y143{bottom:680.325000px;}
.yda{bottom:683.025000px;}
.y16b{bottom:683.385000px;}
.y74{bottom:685.905000px;}
.y42{bottom:691.125000px;}
.yd9{bottom:702.105000px;}
.y16a{bottom:702.285000px;}
.y73{bottom:704.805000px;}
.y142{bottom:708.585000px;}
.y13{bottom:709.845000px;}
.y41{bottom:710.025000px;}
.yd8{bottom:721.005000px;}
.y169{bottom:721.365000px;}
.y141{bottom:723.165000px;}
.y109{bottom:723.705000px;}
.y72{bottom:723.885000px;}
.y40{bottom:728.925000px;}
.y12{bottom:730.545000px;}
.y140{bottom:737.745000px;}
.yd7{bottom:740.085000px;}
.y168{bottom:740.265000px;}
.y108{bottom:741.705000px;}
.y71{bottom:742.785000px;}
.y3f{bottom:748.005000px;}
.y11{bottom:751.245000px;}
.y13f{bottom:752.325000px;}
.yd6{bottom:758.985000px;}
.y167{bottom:759.345000px;}
.y107{bottom:760.425000px;}
.y70{bottom:761.685000px;}
.y13e{bottom:766.725000px;}
.y3e{bottom:766.905000px;}
.yd5{bottom:777.885000px;}
.y166{bottom:778.245000px;}
.y105{bottom:779.325000px;}
.y6f{bottom:780.765000px;}
.y13d{bottom:781.305000px;}
.y3d{bottom:785.985000px;}
.y10{bottom:789.945000px;}
.y13c{bottom:795.885000px;}
.yd4{bottom:796.965000px;}
.y165{bottom:797.145000px;}
.y103{bottom:798.225000px;}
.y6e{bottom:799.665000px;}
.y3c{bottom:804.885000px;}
.yf{bottom:810.645000px;}
.yd3{bottom:815.865000px;}
.y164{bottom:816.225000px;}
.y6d{bottom:818.745000px;}
.y102{bottom:819.465000px;}
.y3b{bottom:823.785000px;}
.y13a{bottom:824.145000px;}
.ye{bottom:831.345000px;}
.yd2{bottom:834.945000px;}
.y6c{bottom:837.645000px;}
.y3a{bottom:842.865000px;}
.y139{bottom:852.585000px;}
.y163{bottom:853.485000px;}
.yd1{bottom:853.845000px;}
.y101{bottom:854.925000px;}
.y6b{bottom:856.545000px;}
.y39{bottom:861.765000px;}
.y138{bottom:867.165000px;}
.yd{bottom:870.045000px;}
.yd0{bottom:872.790000px;}
.y100{bottom:874.230000px;}
.y6a{bottom:875.670000px;}
.y38{bottom:880.890000px;}
.y136{bottom:881.790000px;}
.yc{bottom:890.790000px;}
.ycf{bottom:891.870000px;}
.yff{bottom:893.130000px;}
.y69{bottom:894.570000px;}
.y37{bottom:899.790000px;}
.y135{bottom:910.050000px;}
.yce{bottom:910.770000px;}
.yb{bottom:911.490000px;}
.yfe{bottom:912.030000px;}
.y68{bottom:913.650000px;}
.y36{bottom:918.690000px;}
.y134{bottom:924.630000px;}
.ycd{bottom:929.850000px;}
.yfd{bottom:931.110000px;}
.y67{bottom:932.550000px;}
.y35{bottom:937.770000px;}
.y133{bottom:939.210000px;}
.ycc{bottom:948.750000px;}
.yfc{bottom:950.010000px;}
.y66{bottom:951.630000px;}
.y132{bottom:953.790000px;}
.y34{bottom:956.670000px;}
.ya{bottom:957.210000px;}
.ycb{bottom:967.650000px;}
.y131{bottom:968.190000px;}
.yfb{bottom:969.090000px;}
.y65{bottom:970.530000px;}
.y33{bottom:975.750000px;}
.y130{bottom:982.770000px;}
.y9{bottom:985.110000px;}
.yca{bottom:986.730000px;}
.y64{bottom:989.430000px;}
.y12f{bottom:997.350000px;}
.yc9{bottom:1005.630000px;}
.y12c{bottom:1008.330000px;}
.y63{bottom:1008.510000px;}
.y12e{bottom:1011.930000px;}
.y32{bottom:1013.010000px;}
.yc8{bottom:1024.710000px;}
.yfa{bottom:1027.050000px;}
.y12b{bottom:1027.230000px;}
.y62{bottom:1027.410000px;}
.y12d{bottom:1029.750000px;}
.y8{bottom:1040.190000px;}
.y12a{bottom:1046.310000px;}
.y61{bottom:1046.490000px;}
.y31{bottom:1051.170000px;}
.yc7{bottom:1061.970000px;}
.yf9{bottom:1065.210000px;}
.y60{bottom:1065.390000px;}
.y7{bottom:1071.330000px;}
.yc6{bottom:1083.570000px;}
.y5f{bottom:1084.290000px;}
.y30{bottom:1088.070000px;}
.y129{bottom:1103.190000px;}
.y5e{bottom:1103.370000px;}
.y6{bottom:1115.970000px;}
.y2f{bottom:1122.090000px;}
.y5d{bottom:1122.270000px;}
.y5{bottom:1130.550000px;}
.y2e{bottom:1141.380000px;}
.y4{bottom:1145.340000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1194.480000px;}
.h11{height:13.680000px;}
.h24{height:13.716000px;}
.hf{height:13.860000px;}
.h12{height:13.860150px;}
.hd{height:13.896000px;}
.h1e{height:14.400000px;}
.h1d{height:14.580000px;}
.h1b{height:17.100000px;}
.h17{height:17.280000px;}
.h20{height:17.316000px;}
.h1a{height:18.000000px;}
.h18{height:18.180000px;}
.h1c{height:18.216000px;}
.h23{height:27.540000px;}
.h25{height:27.720000px;}
.h14{height:43.246406px;}
.he{height:47.344922px;}
.h13{height:47.678906px;}
.h4{height:47.980898px;}
.h10{height:48.616875px;}
.h1f{height:58.651172px;}
.hb{height:59.383125px;}
.h22{height:60.103125px;}
.hc{height:60.226875px;}
.h15{height:61.197187px;}
.h19{height:62.184375px;}
.h26{height:64.978594px;}
.h2{height:65.010937px;}
.h21{height:65.730938px;}
.h3{height:65.884219px;}
.ha{height:70.664062px;}
.h16{height:71.613281px;}
.h9{height:72.562500px;}
.h7{height:85.052461px;}
.h5{height:95.923828px;}
.h8{height:96.508125px;}
.h6{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:37.080000px;}
.w21{width:41.616000px;}
.wf{width:42.660000px;}
.w16{width:47.340000px;}
.w19{width:47.520000px;}
.w18{width:47.556000px;}
.w22{width:51.480000px;}
.w27{width:51.516000px;}
.w25{width:51.660000px;}
.w14{width:52.200000px;}
.w17{width:56.520000px;}
.w15{width:56.736000px;}
.w13{width:57.600000px;}
.w26{width:58.680000px;}
.w24{width:58.716000px;}
.w23{width:58.860000px;}
.w7{width:66.420000px;}
.we{width:66.996000px;}
.w5{width:83.700000px;}
.w4{width:83.880000px;}
.w6{width:83.916000px;}
.w1c{width:94.176000px;}
.w20{width:95.580000px;}
.wd{width:100.620000px;}
.w12{width:104.400000px;}
.w11{width:104.436000px;}
.w1a{width:110.016000px;}
.w10{width:110.160000px;}
.w1e{width:110.556000px;}
.w1d{width:110.700000px;}
.w1f{width:110.736000px;}
.w1b{width:116.460000px;}
.w3{width:162.030000px;}
.wb{width:192.090000px;}
.wa{width:220.530000px;}
.w9{width:234.030000px;}
.wc{width:454.935000px;}
.w8{width:647.385000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:4.860000px;}
.x52{left:7.920000px;}
.x3b{left:9.540000px;}
.x4e{left:12.060000px;}
.x3f{left:13.680000px;}
.x29{left:15.150000px;}
.x26{left:16.200000px;}
.x28{left:18.210000px;}
.x2d{left:19.440000px;}
.x1d{left:21.060000px;}
.x25{left:23.400000px;}
.x2b{left:24.480000px;}
.x2e{left:25.770000px;}
.x23{left:27.000000px;}
.x2a{left:28.440000px;}
.x22{left:30.240000px;}
.x1b{left:31.860000px;}
.x2c{left:32.940000px;}
.x53{left:34.605000px;}
.x27{left:36.000000px;}
.x3c{left:39.060000px;}
.x24{left:40.680000px;}
.x37{left:41.940000px;}
.x38{left:46.260000px;}
.x33{left:48.780000px;}
.x3a{left:53.820000px;}
.x35{left:60.660000px;}
.x3e{left:69.660000px;}
.x39{left:80.280000px;}
.x41{left:82.485000px;}
.x36{left:94.185000px;}
.x2{left:127.655987px;}
.x32{left:129.594000px;}
.x44{left:137.555987px;}
.x3{left:146.555987px;}
.x14{left:148.895987px;}
.x5{left:157.169987px;}
.x4{left:173.189987px;}
.x2f{left:198.929987px;}
.x6{left:201.629987px;}
.x48{left:229.530000px;}
.x17{left:235.289987px;}
.x1{left:238.529987px;}
.x47{left:244.649987px;}
.x9{left:252.569987px;}
.x40{left:257.439000px;}
.x18{left:272.009987px;}
.x11{left:286.994987px;}
.x1a{left:290.775000px;}
.x3d{left:292.719000px;}
.x49{left:296.895000px;}
.x31{left:316.694987px;}
.xb{left:331.274987px;}
.xf{left:336.494987px;}
.x4a{left:339.915000px;}
.xc{left:355.574987px;}
.x8{left:363.674987px;}
.x30{left:367.994987px;}
.xe{left:373.214987px;}
.x1c{left:375.015000px;}
.x42{left:377.174987px;}
.x12{left:378.794987px;}
.x7{left:381.314987px;}
.x10{left:384.194987px;}
.xa{left:390.674987px;}
.xd{left:397.334987px;}
.x16{left:412.994987px;}
.x13{left:415.514987px;}
.x15{left:434.054987px;}
.x4b{left:450.435000px;}
.x1e{left:459.075000px;}
.x46{left:480.344987px;}
.x43{left:493.484987px;}
.x4f{left:507.525000px;}
.x56{left:509.145000px;}
.x1f{left:543.345000px;}
.x4c{left:555.405000px;}
.x54{left:561.705000px;}
.x34{left:583.665000px;}
.x50{left:612.285000px;}
.x57{left:620.205000px;}
.x20{left:627.405000px;}
.x4d{left:660.390000px;}
.x55{left:672.810000px;}
.x45{left:677.129987px;}
.x21{left:711.690000px;}
.x51{left:717.270000px;}
.x58{left:731.310000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v8{vertical-align:-72.320000pt;}
.v5{vertical-align:-68.480000pt;}
.v7{vertical-align:-64.000000pt;}
.v3{vertical-align:-16.000000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls17{letter-spacing:-2.426667pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.912000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls25{letter-spacing:-0.233067pt;}
.ls28{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.135467pt;}
.ls2c{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls1a{letter-spacing:0.040320pt;}
.ls21{letter-spacing:0.075947pt;}
.ls4{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.135467pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161067pt;}
.lsd{letter-spacing:0.203947pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.239467pt;}
.ls6{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.320000pt;}
.lse{letter-spacing:1.280000pt;}
.ls14{letter-spacing:2.053120pt;}
.ls2d{letter-spacing:3.973120pt;}
.ls24{letter-spacing:5.120000pt;}
.ls22{letter-spacing:13.440000pt;}
.ls23{letter-spacing:14.080000pt;}
.ls29{letter-spacing:23.680000pt;}
.ls10{letter-spacing:27.653120pt;}
.ls1e{letter-spacing:59.520000pt;}
.ls26{letter-spacing:440.938667pt;}
.ls2a{letter-spacing:556.800000pt;}
.ls16{letter-spacing:597.258667pt;}
.lsf{letter-spacing:674.058667pt;}
.ls2b{letter-spacing:814.218667pt;}
.ls5{letter-spacing:868.618667pt;}
.ls1c{letter-spacing:874.378667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws19{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws4{word-spacing:-14.584533pt;}
.ws16{word-spacing:-14.486933pt;}
.ws5{word-spacing:-14.448533pt;}
.ws3{word-spacing:-14.313067pt;}
.wsa{word-spacing:-14.176000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.293333pt;}
.wse{word-spacing:-11.040000pt;}
.wsd{word-spacing:-10.959467pt;}
.ws17{word-spacing:-10.881067pt;}
.wsf{word-spacing:-10.760320pt;}
.wsc{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.558933pt;}
.ws11{word-spacing:-9.280000pt;}
.ws10{word-spacing:-6.720000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-6.518827pt;}
._15{margin-left:-5.559680pt;}
._2{margin-left:-4.455680pt;}
._4{margin-left:-3.473920pt;}
._3{margin-left:-2.116267pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.269547pt;}
._c{width:2.192640pt;}
._a{width:3.238400pt;}
._f{width:4.466560pt;}
._10{width:5.420373pt;}
._d{width:6.414507pt;}
._6{width:7.885227pt;}
._5{width:8.890880pt;}
._b{width:10.113493pt;}
._7{width:11.071147pt;}
._8{width:12.122027pt;}
._9{width:13.189120pt;}
._1b{width:15.701973pt;}
._13{width:16.604160pt;}
._14{width:18.025600pt;}
._16{width:19.309867pt;}
._18{width:21.101440pt;}
._17{width:22.433280pt;}
._21{width:23.583147pt;}
._26{width:25.024000pt;}
._27{width:25.958187pt;}
._19{width:27.404587pt;}
._1e{width:28.367573pt;}
._11{width:29.296000pt;}
._12{width:30.487680pt;}
._1f{width:31.854080pt;}
._20{width:32.832427pt;}
._29{width:34.139947pt;}
._e{width:36.741120pt;}
._1c{width:38.507520pt;}
._1d{width:39.648640pt;}
._25{width:53.286400pt;}
._28{width:54.540800pt;}
._24{width:55.484587pt;}
._22{width:68.948480pt;}
._23{width:69.855147pt;}
.fs6{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:2.240000pt;}
.y111{bottom:2.400000pt;}
.y104{bottom:2.880000pt;}
.y106{bottom:3.040000pt;}
.y137{bottom:14.400000pt;}
.y13b{bottom:14.560000pt;}
.y3{bottom:34.080000pt;}
.y2d{bottom:51.360000pt;}
.yf8{bottom:101.152000pt;}
.y8e{bottom:102.272000pt;}
.ya0{bottom:103.712000pt;}
.y128{bottom:105.632000pt;}
.yc5{bottom:105.792000pt;}
.y5c{bottom:107.712000pt;}
.y162{bottom:110.912000pt;}
.yf7{bottom:118.112000pt;}
.y183{bottom:118.432000pt;}
.y8d{bottom:119.232000pt;}
.y19d{bottom:119.392000pt;}
.y9f{bottom:120.512000pt;}
.y127{bottom:122.432000pt;}
.yc4{bottom:122.752000pt;}
.y5b{bottom:124.672000pt;}
.y2c{bottom:126.272000pt;}
.y161{bottom:127.712000pt;}
.yf6{bottom:134.906667pt;}
.y182{bottom:135.386667pt;}
.y8c{bottom:136.026667pt;}
.y19c{bottom:136.346667pt;}
.y9e{bottom:137.306667pt;}
.y126{bottom:139.226667pt;}
.yc3{bottom:139.546667pt;}
.y5a{bottom:141.466667pt;}
.y2b{bottom:143.066667pt;}
.y160{bottom:144.666667pt;}
.yf5{bottom:151.706667pt;}
.y181{bottom:152.186667pt;}
.y8b{bottom:152.826667pt;}
.y19b{bottom:153.146667pt;}
.y9d{bottom:154.266667pt;}
.y125{bottom:156.186667pt;}
.yc2{bottom:156.506667pt;}
.y59{bottom:158.426667pt;}
.y2a{bottom:160.026667pt;}
.y15f{bottom:161.466667pt;}
.yf4{bottom:168.666667pt;}
.y180{bottom:169.146667pt;}
.y8a{bottom:169.786667pt;}
.y19a{bottom:170.106667pt;}
.y9c{bottom:171.066667pt;}
.y124{bottom:172.986667pt;}
.yc1{bottom:173.306667pt;}
.y58{bottom:175.226667pt;}
.y29{bottom:176.826667pt;}
.y15e{bottom:178.426667pt;}
.yf3{bottom:185.466667pt;}
.y17f{bottom:185.946667pt;}
.y89{bottom:186.586667pt;}
.y199{bottom:186.906667pt;}
.y9b{bottom:188.026667pt;}
.y123{bottom:189.946667pt;}
.yc0{bottom:190.106667pt;}
.y57{bottom:192.026667pt;}
.y28{bottom:193.786667pt;}
.y15d{bottom:195.226667pt;}
.yf2{bottom:202.426667pt;}
.y88{bottom:203.546667pt;}
.y198{bottom:203.866667pt;}
.y9a{bottom:204.826667pt;}
.y122{bottom:206.746667pt;}
.ybf{bottom:207.066667pt;}
.y56{bottom:208.986667pt;}
.y27{bottom:210.586667pt;}
.y15c{bottom:212.026667pt;}
.yf1{bottom:219.226667pt;}
.y87{bottom:220.346667pt;}
.y197{bottom:220.666667pt;}
.y99{bottom:221.626667pt;}
.ybe{bottom:223.866667pt;}
.y55{bottom:225.786667pt;}
.y26{bottom:227.386667pt;}
.y15b{bottom:228.986667pt;}
.yf0{bottom:236.026667pt;}
.y86{bottom:237.146667pt;}
.y196{bottom:237.466667pt;}
.y98{bottom:238.586667pt;}
.ybd{bottom:240.826667pt;}
.y54{bottom:242.746667pt;}
.y25{bottom:244.346667pt;}
.y15a{bottom:245.786667pt;}
.yef{bottom:252.986667pt;}
.y85{bottom:254.106667pt;}
.y195{bottom:254.426667pt;}
.y97{bottom:255.386667pt;}
.y121{bottom:257.946667pt;}
.y53{bottom:259.546667pt;}
.y24{bottom:261.146667pt;}
.y159{bottom:262.746667pt;}
.y120{bottom:268.506667pt;}
.yee{bottom:269.786667pt;}
.y17e{bottom:269.946667pt;}
.y84{bottom:270.906667pt;}
.y194{bottom:271.226667pt;}
.y96{bottom:272.346667pt;}
.ybc{bottom:272.506667pt;}
.y52{bottom:276.346667pt;}
.y23{bottom:278.106667pt;}
.y11f{bottom:284.506667pt;}
.ybb{bottom:284.826667pt;}
.yed{bottom:286.746667pt;}
.y17d{bottom:286.906667pt;}
.y83{bottom:287.866667pt;}
.y193{bottom:288.186667pt;}
.y95{bottom:289.146667pt;}
.y51{bottom:293.306667pt;}
.y22{bottom:294.906667pt;}
.yba{bottom:295.546667pt;}
.y158{bottom:296.666667pt;}
.y11e{bottom:300.546667pt;}
.yec{bottom:303.586667pt;}
.y17c{bottom:303.906667pt;}
.y82{bottom:304.706667pt;}
.y192{bottom:305.026667pt;}
.y94{bottom:305.986667pt;}
.yb9{bottom:308.546667pt;}
.y50{bottom:310.146667pt;}
.y21{bottom:311.746667pt;}
.y157{bottom:312.226667pt;}
.y11d{bottom:316.546667pt;}
.yeb{bottom:320.386667pt;}
.y17b{bottom:320.706667pt;}
.yb8{bottom:321.506667pt;}
.ya4{bottom:321.666667pt;}
.y191{bottom:321.826667pt;}
.y93{bottom:322.946667pt;}
.y156{bottom:325.186667pt;}
.y4f{bottom:327.106667pt;}
.y20{bottom:328.706667pt;}
.y11c{bottom:332.546667pt;}
.yb7{bottom:334.466667pt;}
.yea{bottom:337.346667pt;}
.y17a{bottom:337.666667pt;}
.y155{bottom:338.146667pt;}
.ya3{bottom:338.466667pt;}
.y190{bottom:338.786667pt;}
.y92{bottom:339.746667pt;}
.y4e{bottom:343.906667pt;}
.y1f{bottom:345.506667pt;}
.yb6{bottom:347.266667pt;}
.y11b{bottom:348.546667pt;}
.y154{bottom:351.106667pt;}
.ye9{bottom:354.146667pt;}
.y179{bottom:354.466667pt;}
.y18f{bottom:355.586667pt;}
.y81{bottom:356.226667pt;}
.y91{bottom:356.706667pt;}
.yb5{bottom:360.226667pt;}
.y4d{bottom:360.706667pt;}
.y1e{bottom:362.466667pt;}
.y153{bottom:363.906667pt;}
.y11a{bottom:364.546667pt;}
.ye8{bottom:371.106667pt;}
.y178{bottom:371.266667pt;}
.y18e{bottom:372.546667pt;}
.yb4{bottom:373.186667pt;}
.y90{bottom:373.506667pt;}
.y152{bottom:376.866667pt;}
.y4c{bottom:377.666667pt;}
.y1d{bottom:379.266667pt;}
.y119{bottom:380.546667pt;}
.yb3{bottom:386.146667pt;}
.ye7{bottom:387.906667pt;}
.y177{bottom:388.226667pt;}
.y18d{bottom:389.346667pt;}
.y151{bottom:389.826667pt;}
.ya2{bottom:389.986667pt;}
.y80{bottom:390.146667pt;}
.y8f{bottom:390.306667pt;}
.y4b{bottom:394.466667pt;}
.y1c{bottom:396.066667pt;}
.y118{bottom:396.546667pt;}
.yb2{bottom:399.106667pt;}
.y150{bottom:402.786667pt;}
.ye6{bottom:404.706667pt;}
.y176{bottom:405.026667pt;}
.y18c{bottom:406.146667pt;}
.y7f{bottom:407.266667pt;}
.y4a{bottom:411.426667pt;}
.yb1{bottom:411.906667pt;}
.y117{bottom:412.546667pt;}
.y1b{bottom:413.026667pt;}
.y14f{bottom:415.746667pt;}
.ye5{bottom:421.666667pt;}
.y175{bottom:421.986667pt;}
.y18b{bottom:423.106667pt;}
.ya1{bottom:423.906667pt;}
.y7e{bottom:424.066667pt;}
.yb0{bottom:424.866667pt;}
.y49{bottom:428.226667pt;}
.y116{bottom:428.546667pt;}
.y14e{bottom:428.706667pt;}
.yaf{bottom:437.826667pt;}
.ye4{bottom:438.466667pt;}
.y174{bottom:438.786667pt;}
.y18a{bottom:439.906667pt;}
.y7d{bottom:441.026667pt;}
.y14d{bottom:441.506667pt;}
.y115{bottom:442.146667pt;}
.y1a{bottom:446.146667pt;}
.yae{bottom:450.786667pt;}
.y14c{bottom:454.466667pt;}
.ye3{bottom:455.426667pt;}
.y173{bottom:455.586667pt;}
.y114{bottom:455.746667pt;}
.y189{bottom:456.866667pt;}
.y7c{bottom:457.826667pt;}
.yad{bottom:463.746667pt;}
.y14b{bottom:467.426667pt;}
.y113{bottom:469.186667pt;}
.ye2{bottom:472.226667pt;}
.y172{bottom:472.546667pt;}
.y188{bottom:473.666667pt;}
.y7b{bottom:474.786667pt;}
.yac{bottom:476.706667pt;}
.y48{bottom:479.746667pt;}
.y14a{bottom:480.386667pt;}
.y112{bottom:482.786667pt;}
.y19{bottom:488.546667pt;}
.ye1{bottom:489.186667pt;}
.y171{bottom:489.346667pt;}
.yab{bottom:489.506667pt;}
.y187{bottom:490.466667pt;}
.y7a{bottom:491.586667pt;}
.y149{bottom:493.346667pt;}
.y110{bottom:496.226667pt;}
.yaa{bottom:502.466667pt;}
.ye0{bottom:505.986667pt;}
.y148{bottom:506.306667pt;}
.y18{bottom:506.946667pt;}
.y186{bottom:507.426667pt;}
.y79{bottom:508.386667pt;}
.y10f{bottom:509.826667pt;}
.y47{bottom:513.666667pt;}
.ya9{bottom:515.426667pt;}
.y147{bottom:519.106667pt;}
.ydf{bottom:522.786667pt;}
.y170{bottom:523.106667pt;}
.y185{bottom:524.226667pt;}
.y17{bottom:525.346667pt;}
.y10e{bottom:525.826667pt;}
.ya7{bottom:528.386667pt;}
.y46{bottom:530.786667pt;}
.y146{bottom:532.066667pt;}
.yde{bottom:539.773333pt;}
.y16f{bottom:539.933333pt;}
.y184{bottom:541.853333pt;}
.y78{bottom:542.173333pt;}
.y10d{bottom:542.653333pt;}
.ya6{bottom:544.253333pt;}
.y45{bottom:547.613333pt;}
.ydd{bottom:556.573333pt;}
.y16e{bottom:556.893333pt;}
.y77{bottom:559.133333pt;}
.y10c{bottom:559.453333pt;}
.y16{bottom:559.773333pt;}
.y145{bottom:563.933333pt;}
.y44{bottom:564.573333pt;}
.ydc{bottom:573.533333pt;}
.y16d{bottom:573.693333pt;}
.ya5{bottom:575.773333pt;}
.y76{bottom:575.933333pt;}
.y10b{bottom:576.093333pt;}
.y15{bottom:578.173333pt;}
.y144{bottom:579.453333pt;}
.ydb{bottom:590.333333pt;}
.y16c{bottom:590.653333pt;}
.y75{bottom:592.733333pt;}
.y10a{bottom:592.893333pt;}
.y14{bottom:596.573333pt;}
.y43{bottom:597.213333pt;}
.y143{bottom:604.733333pt;}
.yda{bottom:607.133333pt;}
.y16b{bottom:607.453333pt;}
.y74{bottom:609.693333pt;}
.y42{bottom:614.333333pt;}
.yd9{bottom:624.093333pt;}
.y16a{bottom:624.253333pt;}
.y73{bottom:626.493333pt;}
.y142{bottom:629.853333pt;}
.y13{bottom:630.973333pt;}
.y41{bottom:631.133333pt;}
.yd8{bottom:640.893333pt;}
.y169{bottom:641.213333pt;}
.y141{bottom:642.813333pt;}
.y109{bottom:643.293333pt;}
.y72{bottom:643.453333pt;}
.y40{bottom:647.933333pt;}
.y12{bottom:649.373333pt;}
.y140{bottom:655.773333pt;}
.yd7{bottom:657.853333pt;}
.y168{bottom:658.013333pt;}
.y108{bottom:659.293333pt;}
.y71{bottom:660.253333pt;}
.y3f{bottom:664.893333pt;}
.y11{bottom:667.773333pt;}
.y13f{bottom:668.733333pt;}
.yd6{bottom:674.653333pt;}
.y167{bottom:674.973333pt;}
.y107{bottom:675.933333pt;}
.y70{bottom:677.053333pt;}
.y13e{bottom:681.533333pt;}
.y3e{bottom:681.693333pt;}
.yd5{bottom:691.453333pt;}
.y166{bottom:691.773333pt;}
.y105{bottom:692.733333pt;}
.y6f{bottom:694.013333pt;}
.y13d{bottom:694.493333pt;}
.y3d{bottom:698.653333pt;}
.y10{bottom:702.173333pt;}
.y13c{bottom:707.453333pt;}
.yd4{bottom:708.413333pt;}
.y165{bottom:708.573333pt;}
.y103{bottom:709.533333pt;}
.y6e{bottom:710.813333pt;}
.y3c{bottom:715.453333pt;}
.yf{bottom:720.573333pt;}
.yd3{bottom:725.213333pt;}
.y164{bottom:725.533333pt;}
.y6d{bottom:727.773333pt;}
.y102{bottom:728.413333pt;}
.y3b{bottom:732.253333pt;}
.y13a{bottom:732.573333pt;}
.ye{bottom:738.973333pt;}
.yd2{bottom:742.173333pt;}
.y6c{bottom:744.573333pt;}
.y3a{bottom:749.213333pt;}
.y139{bottom:757.853333pt;}
.y163{bottom:758.653333pt;}
.yd1{bottom:758.973333pt;}
.y101{bottom:759.933333pt;}
.y6b{bottom:761.373333pt;}
.y39{bottom:766.013333pt;}
.y138{bottom:770.813333pt;}
.yd{bottom:773.373333pt;}
.yd0{bottom:775.813333pt;}
.y100{bottom:777.093333pt;}
.y6a{bottom:778.373333pt;}
.y38{bottom:783.013333pt;}
.y136{bottom:783.813333pt;}
.yc{bottom:791.813333pt;}
.ycf{bottom:792.773333pt;}
.yff{bottom:793.893333pt;}
.y69{bottom:795.173333pt;}
.y37{bottom:799.813333pt;}
.y135{bottom:808.933333pt;}
.yce{bottom:809.573333pt;}
.yb{bottom:810.213333pt;}
.yfe{bottom:810.693333pt;}
.y68{bottom:812.133333pt;}
.y36{bottom:816.613333pt;}
.y134{bottom:821.893333pt;}
.ycd{bottom:826.533333pt;}
.yfd{bottom:827.653333pt;}
.y67{bottom:828.933333pt;}
.y35{bottom:833.573333pt;}
.y133{bottom:834.853333pt;}
.ycc{bottom:843.333333pt;}
.yfc{bottom:844.453333pt;}
.y66{bottom:845.893333pt;}
.y132{bottom:847.813333pt;}
.y34{bottom:850.373333pt;}
.ya{bottom:850.853333pt;}
.ycb{bottom:860.133333pt;}
.y131{bottom:860.613333pt;}
.yfb{bottom:861.413333pt;}
.y65{bottom:862.693333pt;}
.y33{bottom:867.333333pt;}
.y130{bottom:873.573333pt;}
.y9{bottom:875.653333pt;}
.yca{bottom:877.093333pt;}
.y64{bottom:879.493333pt;}
.y12f{bottom:886.533333pt;}
.yc9{bottom:893.893333pt;}
.y12c{bottom:896.293333pt;}
.y63{bottom:896.453333pt;}
.y12e{bottom:899.493333pt;}
.y32{bottom:900.453333pt;}
.yc8{bottom:910.853333pt;}
.yfa{bottom:912.933333pt;}
.y12b{bottom:913.093333pt;}
.y62{bottom:913.253333pt;}
.y12d{bottom:915.333333pt;}
.y8{bottom:924.613333pt;}
.y12a{bottom:930.053333pt;}
.y61{bottom:930.213333pt;}
.y31{bottom:934.373333pt;}
.yc7{bottom:943.973333pt;}
.yf9{bottom:946.853333pt;}
.y60{bottom:947.013333pt;}
.y7{bottom:952.293333pt;}
.yc6{bottom:963.173333pt;}
.y5f{bottom:963.813333pt;}
.y30{bottom:967.173333pt;}
.y129{bottom:980.613333pt;}
.y5e{bottom:980.773333pt;}
.y6{bottom:991.973333pt;}
.y2f{bottom:997.413333pt;}
.y5d{bottom:997.573333pt;}
.y5{bottom:1004.933333pt;}
.y2e{bottom:1014.560000pt;}
.y4{bottom:1018.080000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1061.760000pt;}
.h11{height:12.160000pt;}
.h24{height:12.192000pt;}
.hf{height:12.320000pt;}
.h12{height:12.320133pt;}
.hd{height:12.352000pt;}
.h1e{height:12.800000pt;}
.h1d{height:12.960000pt;}
.h1b{height:15.200000pt;}
.h17{height:15.360000pt;}
.h20{height:15.392000pt;}
.h1a{height:16.000000pt;}
.h18{height:16.160000pt;}
.h1c{height:16.192000pt;}
.h23{height:24.480000pt;}
.h25{height:24.640000pt;}
.h14{height:38.441250pt;}
.he{height:42.084375pt;}
.h13{height:42.381250pt;}
.h4{height:42.649687pt;}
.h10{height:43.215000pt;}
.h1f{height:52.134375pt;}
.hb{height:52.785000pt;}
.h22{height:53.425000pt;}
.hc{height:53.535000pt;}
.h15{height:54.397500pt;}
.h19{height:55.275000pt;}
.h26{height:57.758750pt;}
.h2{height:57.787500pt;}
.h21{height:58.427500pt;}
.h3{height:58.563750pt;}
.ha{height:62.812500pt;}
.h16{height:63.656250pt;}
.h9{height:64.500000pt;}
.h7{height:75.602187pt;}
.h5{height:85.265625pt;}
.h8{height:85.785000pt;}
.h6{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:32.960000pt;}
.w21{width:36.992000pt;}
.wf{width:37.920000pt;}
.w16{width:42.080000pt;}
.w19{width:42.240000pt;}
.w18{width:42.272000pt;}
.w22{width:45.760000pt;}
.w27{width:45.792000pt;}
.w25{width:45.920000pt;}
.w14{width:46.400000pt;}
.w17{width:50.240000pt;}
.w15{width:50.432000pt;}
.w13{width:51.200000pt;}
.w26{width:52.160000pt;}
.w24{width:52.192000pt;}
.w23{width:52.320000pt;}
.w7{width:59.040000pt;}
.we{width:59.552000pt;}
.w5{width:74.400000pt;}
.w4{width:74.560000pt;}
.w6{width:74.592000pt;}
.w1c{width:83.712000pt;}
.w20{width:84.960000pt;}
.wd{width:89.440000pt;}
.w12{width:92.800000pt;}
.w11{width:92.832000pt;}
.w1a{width:97.792000pt;}
.w10{width:97.920000pt;}
.w1e{width:98.272000pt;}
.w1d{width:98.400000pt;}
.w1f{width:98.432000pt;}
.w1b{width:103.520000pt;}
.w3{width:144.026667pt;}
.wb{width:170.746667pt;}
.wa{width:196.026667pt;}
.w9{width:208.026667pt;}
.wc{width:404.386667pt;}
.w8{width:575.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:4.320000pt;}
.x52{left:7.040000pt;}
.x3b{left:8.480000pt;}
.x4e{left:10.720000pt;}
.x3f{left:12.160000pt;}
.x29{left:13.466667pt;}
.x26{left:14.400000pt;}
.x28{left:16.186667pt;}
.x2d{left:17.280000pt;}
.x1d{left:18.720000pt;}
.x25{left:20.800000pt;}
.x2b{left:21.760000pt;}
.x2e{left:22.906667pt;}
.x23{left:24.000000pt;}
.x2a{left:25.280000pt;}
.x22{left:26.880000pt;}
.x1b{left:28.320000pt;}
.x2c{left:29.280000pt;}
.x53{left:30.760000pt;}
.x27{left:32.000000pt;}
.x3c{left:34.720000pt;}
.x24{left:36.160000pt;}
.x37{left:37.280000pt;}
.x38{left:41.120000pt;}
.x33{left:43.360000pt;}
.x3a{left:47.840000pt;}
.x35{left:53.920000pt;}
.x3e{left:61.920000pt;}
.x39{left:71.360000pt;}
.x41{left:73.320000pt;}
.x36{left:83.720000pt;}
.x2{left:113.471988pt;}
.x32{left:115.194667pt;}
.x44{left:122.271988pt;}
.x3{left:130.271988pt;}
.x14{left:132.351988pt;}
.x5{left:139.706655pt;}
.x4{left:153.946655pt;}
.x2f{left:176.826655pt;}
.x6{left:179.226655pt;}
.x48{left:204.026667pt;}
.x17{left:209.146655pt;}
.x1{left:212.026655pt;}
.x47{left:217.466655pt;}
.x9{left:224.506655pt;}
.x40{left:228.834667pt;}
.x18{left:241.786655pt;}
.x11{left:255.106655pt;}
.x1a{left:258.466667pt;}
.x3d{left:260.194667pt;}
.x49{left:263.906667pt;}
.x31{left:281.506655pt;}
.xb{left:294.466655pt;}
.xf{left:299.106655pt;}
.x4a{left:302.146667pt;}
.xc{left:316.066655pt;}
.x8{left:323.266655pt;}
.x30{left:327.106655pt;}
.xe{left:331.746655pt;}
.x1c{left:333.346667pt;}
.x42{left:335.266655pt;}
.x12{left:336.706655pt;}
.x7{left:338.946655pt;}
.x10{left:341.506655pt;}
.xa{left:347.266655pt;}
.xd{left:353.186655pt;}
.x16{left:367.106655pt;}
.x13{left:369.346655pt;}
.x15{left:385.826655pt;}
.x4b{left:400.386667pt;}
.x1e{left:408.066667pt;}
.x46{left:426.973322pt;}
.x43{left:438.653322pt;}
.x4f{left:451.133333pt;}
.x56{left:452.573333pt;}
.x1f{left:482.973333pt;}
.x4c{left:493.693333pt;}
.x54{left:499.293333pt;}
.x34{left:518.813333pt;}
.x50{left:544.253333pt;}
.x57{left:551.293333pt;}
.x20{left:557.693333pt;}
.x4d{left:587.013333pt;}
.x55{left:598.053333pt;}
.x45{left:601.893322pt;}
.x21{left:632.613333pt;}
.x51{left:637.573333pt;}
.x58{left:650.053333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  