
    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_4bc5e664b8f3fc46cfc1930f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_209e716b003ce443a1a22840.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e632a9aa11b0a16b757985e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b2053b0cfc4bbb6c5070037b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7fd4f053029c1cebcc64e272.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e1cf922e4ea980f4fe98082c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_5d281d3217545272d2c0d9ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_bc62f729e4a44ecb1974c767.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.246000px;}
.ls13{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.022320px;}
.ls0{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.174000px;}
.ls4{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls18{letter-spacing:18.468000px;}
.ls9{letter-spacing:33.240000px;}
.ls14{letter-spacing:33.264000px;}
.ls19{letter-spacing:48.384000px;}
.ls10{letter-spacing:54.864000px;}
.lse{letter-spacing:65.664000px;}
.ls12{letter-spacing:80.784000px;}
.ls1a{letter-spacing:150.624000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.416000px;}
.ws5{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-16.128000px;}
.wsa{word-spacing:-16.056000px;}
.ws6{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.624000px;}
.ws9{word-spacing:-13.447440px;}
.wsb{word-spacing:-12.204000px;}
.wsc{word-spacing:-10.902240px;}
.ws0{word-spacing:0.000000px;}
._3f{margin-left:-5.255040px;}
._1e{margin-left:-3.780480px;}
._4{margin-left:-2.699520px;}
._0{margin-left:-1.179360px;}
._1{width:1.006560px;}
._6{width:2.088960px;}
._12{width:3.111840px;}
._e{width:4.392000px;}
._d{width:6.111360px;}
._c{width:7.536000px;}
._1d{width:8.771040px;}
._14{width:9.886080px;}
._13{width:11.232000px;}
._18{width:12.385440px;}
._1b{width:13.388640px;}
._9{width:14.763360px;}
._17{width:18.216000px;}
._f{width:19.416000px;}
._b{width:21.192000px;}
._a{width:22.584000px;}
._1a{width:24.336000px;}
._19{width:25.992000px;}
._16{width:27.360000px;}
._15{width:28.368000px;}
._11{width:29.443680px;}
._10{width:30.709920px;}
._8{width:32.718720px;}
._7{width:33.912000px;}
._33{width:35.163360px;}
._26{width:36.576000px;}
._27{width:37.812000px;}
._1c{width:40.176000px;}
._3a{width:41.473440px;}
._23{width:42.723360px;}
._22{width:44.064000px;}
._21{width:45.072000px;}
._28{width:46.584000px;}
._2a{width:50.112000px;}
._29{width:51.336000px;}
._2f{width:56.912160px;}
._20{width:58.068000px;}
._1f{width:59.328000px;}
._40{width:104.400000px;}
._35{width:108.288000px;}
._34{width:109.800000px;}
._36{width:112.464000px;}
._3b{width:145.152000px;}
._2c{width:174.456000px;}
._38{width:191.808000px;}
._37{width:193.248000px;}
._30{width:248.688000px;}
._3e{width:264.528000px;}
._39{width:266.616000px;}
._31{width:422.064000px;}
._2d{width:622.440000px;}
._2b{width:657.468000px;}
._3c{width:693.360000px;}
._3d{width:715.392000px;}
._24{width:766.008000px;}
._3{width:800.339520px;}
._2{width:845.117760px;}
._5{width:847.884000px;}
._2e{width:891.936000px;}
._32{width:909.792000px;}
._25{width:1891.008000px;}
.fc2{color:rgb(79,129,189);}
.fc5{color:transparent;}
.fc1{color:rgb(79,98,40);}
.fc6{color:rgb(115,115,115);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs2{font-size:167.760000px;}
.fs4{font-size:192.240000px;}
.yc{bottom:-27.900000px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.600000px;}
.y15{bottom:3.960000px;}
.yb{bottom:19.794000px;}
.y11{bottom:27.180000px;}
.y17{bottom:56.916000px;}
.y134{bottom:60.690000px;}
.y131{bottom:68.040000px;}
.y16{bottom:75.276000px;}
.y133{bottom:75.450000px;}
.y130{bottom:82.980000px;}
.y10{bottom:89.640000px;}
.y132{bottom:90.390000px;}
.ya{bottom:91.614000px;}
.y98{bottom:111.456000px;}
.y43{bottom:114.516000px;}
.y12{bottom:114.876000px;}
.y11f{bottom:115.056000px;}
.y13f{bottom:117.576000px;}
.y57{bottom:120.456000px;}
.yc4{bottom:120.636000px;}
.ya6{bottom:125.496000px;}
.y162{bottom:129.276000px;}
.y1{bottom:131.256000px;}
.y168{bottom:132.516000px;}
.yd2{bottom:134.856000px;}
.y179{bottom:135.576000px;}
.y126{bottom:136.116000px;}
.y79{bottom:138.276000px;}
.y27{bottom:139.896000px;}
.y6b{bottom:141.516000px;}
.y152{bottom:146.376000px;}
.y42{bottom:147.456000px;}
.y11e{bottom:147.996000px;}
.y13e{bottom:150.510000px;}
.yea{bottom:153.570000px;}
.ya5{bottom:158.430000px;}
.y97{bottom:159.510000px;}
.yfc{bottom:167.790000px;}
.y56{bottom:168.330000px;}
.y178{bottom:168.510000px;}
.y9{bottom:168.519000px;}
.yc3{bottom:168.690000px;}
.y125{bottom:169.050000px;}
.y6a{bottom:174.450000px;}
.y161{bottom:177.150000px;}
.yd1{bottom:177.870000px;}
.y151{bottom:179.310000px;}
.y167{bottom:180.390000px;}
.y11d{bottom:180.930000px;}
.y13d{bottom:183.630000px;}
.y127{bottom:186.300000px;}
.y8a{bottom:186.330000px;}
.ye9{bottom:186.510000px;}
.y12a{bottom:188.925000px;}
.y78{bottom:189.210000px;}
.ya4{bottom:191.550000px;}
.y96{bottom:192.450000px;}
.y26{bottom:193.170000px;}
.y41{bottom:195.330000px;}
.y124{bottom:197.130000px;}
.yfb{bottom:200.730000px;}
.y177{bottom:201.450000px;}
.y129{bottom:207.105000px;}
.y69{bottom:207.390000px;}
.y11c{bottom:209.010000px;}
.y150{bottom:212.250000px;}
.y55{bottom:216.210000px;}
.yc2{bottom:216.570000px;}
.ye8{bottom:219.450000px;}
.ya3{bottom:224.490000px;}
.y160{bottom:225.210000px;}
.y128{bottom:225.285000px;}
.y95{bottom:225.390000px;}
.y112{bottom:228.090000px;}
.y166{bottom:228.270000px;}
.yfa{bottom:233.850000px;}
.y89{bottom:234.210000px;}
.y176{bottom:234.390000px;}
.y77{bottom:237.270000px;}
.y68{bottom:240.330000px;}
.y40{bottom:243.390000px;}
.y14f{bottom:245.190000px;}
.y8{bottom:245.559000px;}
.y25{bottom:246.630000px;}
.yc1{bottom:249.510000px;}
.y12f{bottom:251.100000px;}
.ye7{bottom:252.390000px;}
.ya2{bottom:257.430000px;}
.y94{bottom:258.330000px;}
.y111{bottom:261.030000px;}
.y54{bottom:264.270000px;}
.y12e{bottom:266.040000px;}
.yf9{bottom:266.790000px;}
.y175{bottom:267.510000px;}
.y15f{bottom:273.135000px;}
.y3f{bottom:276.375000px;}
.y14e{bottom:278.175000px;}
.y88{bottom:282.135000px;}
.yc0{bottom:282.495000px;}
.y24{bottom:285.015000px;}
.y76{bottom:285.195000px;}
.ye6{bottom:285.375000px;}
.y67{bottom:288.435000px;}
.ya1{bottom:290.415000px;}
.y93{bottom:291.315000px;}
.y110{bottom:294.015000px;}
.yf8{bottom:299.775000px;}
.y174{bottom:300.495000px;}
.y14d{bottom:311.115000px;}
.y53{bottom:312.195000px;}
.ybf{bottom:315.435000px;}
.ye5{bottom:318.315000px;}
.y7{bottom:318.999000px;}
.y15e{bottom:321.195000px;}
.y66{bottom:321.375000px;}
.ya0{bottom:323.355000px;}
.y3e{bottom:324.255000px;}
.y10f{bottom:326.955000px;}
.y87{bottom:330.195000px;}
.yf7{bottom:332.715000px;}
.y75{bottom:333.255000px;}
.y173{bottom:333.435000px;}
.y23{bottom:338.655000px;}
.y14c{bottom:344.055000px;}
.ybe{bottom:348.375000px;}
.ye4{bottom:351.255000px;}
.y65{bottom:354.315000px;}
.y9f{bottom:356.295000px;}
.y12d{bottom:356.865000px;}
.y3d{bottom:357.195000px;}
.y10e{bottom:359.895000px;}
.y14{bottom:360.075000px;}
.y52{bottom:360.255000px;}
.y6{bottom:363.099000px;}
.yf6{bottom:365.655000px;}
.y172{bottom:366.375000px;}
.y15d{bottom:369.075000px;}
.y12c{bottom:371.670000px;}
.y92{bottom:372.315000px;}
.y86{bottom:378.075000px;}
.y74{bottom:381.135000px;}
.y13c{bottom:381.315000px;}
.ybd{bottom:382.395000px;}
.ye3{bottom:384.375000px;}
.y12b{bottom:386.610000px;}
.y64{bottom:387.255000px;}
.y9e{bottom:389.235000px;}
.y3c{bottom:390.135000px;}
.y22{bottom:392.115000px;}
.y10d{bottom:392.835000px;}
.yf5{bottom:398.595000px;}
.y171{bottom:399.315000px;}
.y91{bottom:405.255000px;}
.y51{bottom:408.135000px;}
.y14b{bottom:411.015000px;}
.y13b{bottom:414.255000px;}
.ybc{bottom:415.335000px;}
.y15c{bottom:417.135000px;}
.ye2{bottom:417.315000px;}
.y63{bottom:420.195000px;}
.y9d{bottom:422.175000px;}
.y3b{bottom:423.255000px;}
.y10c{bottom:425.775000px;}
.y85{bottom:426.135000px;}
.yf{bottom:426.675000px;}
.y73{bottom:429.015000px;}
.yf4{bottom:431.535000px;}
.y170{bottom:432.255000px;}
.y90{bottom:438.195000px;}
.y14a{bottom:443.955000px;}
.y21{bottom:445.575000px;}
.y13a{bottom:447.195000px;}
.ybb{bottom:448.275000px;}
.ye1{bottom:450.255000px;}
.y62{bottom:453.135000px;}
.y9c{bottom:455.115000px;}
.y3a{bottom:456.195000px;}
.y10b{bottom:458.715000px;}
.yf3{bottom:464.475000px;}
.y15b{bottom:465.015000px;}
.y16f{bottom:465.195000px;}
.y165{bottom:468.255000px;}
.y8f{bottom:471.135000px;}
.y84{bottom:474.015000px;}
.y149{bottom:476.895000px;}
.y72{bottom:477.075000px;}
.y139{bottom:480.135000px;}
.yba{bottom:481.215000px;}
.ye0{bottom:483.195000px;}
.y61{bottom:486.075000px;}
.y9b{bottom:488.055000px;}
.y39{bottom:489.135000px;}
.y10a{bottom:491.655000px;}
.yf2{bottom:497.415000px;}
.y16e{bottom:498.135000px;}
.y20{bottom:499.035000px;}
.y164{bottom:501.195000px;}
.y50{bottom:504.075000px;}
.y148{bottom:509.835000px;}
.y15a{bottom:512.895000px;}
.y138{bottom:513.255000px;}
.yb9{bottom:514.155000px;}
.ydf{bottom:516.135000px;}
.y11b{bottom:517.395000px;}
.y60{bottom:519.015000px;}
.y83{bottom:522.075000px;}
.y109{bottom:524.775000px;}
.y71{bottom:524.955000px;}
.yd0{bottom:525.315000px;}
.yf1{bottom:530.535000px;}
.y16d{bottom:531.075000px;}
.y163{bottom:534.135000px;}
.y38{bottom:537.015000px;}
.y147{bottom:543.855000px;}
.y137{bottom:546.195000px;}
.yb8{bottom:547.095000px;}
.yde{bottom:549.075000px;}
.y11a{bottom:550.335000px;}
.y4f{bottom:552.135000px;}
.y108{bottom:557.745000px;}
.ycf{bottom:558.465000px;}
.y1f{bottom:560.265000px;}
.y159{bottom:560.985000px;}
.yf0{bottom:563.505000px;}
.y16c{bottom:564.045000px;}
.y5f{bottom:567.105000px;}
.y37{bottom:569.985000px;}
.y70{bottom:573.045000px;}
.y146{bottom:576.825000px;}
.y136{bottom:579.165000px;}
.yb7{bottom:580.245000px;}
.ydd{bottom:582.045000px;}
.y119{bottom:583.485000px;}
.y8e{bottom:585.105000px;}
.y107{bottom:590.685000px;}
.yce{bottom:591.405000px;}
.yef{bottom:596.445000px;}
.y16b{bottom:597.165000px;}
.y4e{bottom:600.045000px;}
.y36{bottom:602.925000px;}
.y158{bottom:608.865000px;}
.y145{bottom:609.765000px;}
.y135{bottom:612.105000px;}
.yb6{bottom:613.185000px;}
.ydc{bottom:614.985000px;}
.y1e{bottom:615.345000px;}
.y118{bottom:616.425000px;}
.y82{bottom:618.045000px;}
.y6f{bottom:620.925000px;}
.y106{bottom:623.625000px;}
.ycd{bottom:624.345000px;}
.y16a{bottom:630.105000px;}
.y5e{bottom:632.985000px;}
.y144{bottom:642.705000px;}
.yee{bottom:644.325000px;}
.y123{bottom:645.045000px;}
.yb5{bottom:646.125000px;}
.y4d{bottom:647.925000px;}
.y117{bottom:649.365000px;}
.y35{bottom:650.985000px;}
.y105{bottom:656.565000px;}
.y157{bottom:656.925000px;}
.ycc{bottom:657.285000px;}
.y169{bottom:663.045000px;}
.y5d{bottom:665.925000px;}
.y6e{bottom:668.985000px;}
.y143{bottom:675.645000px;}
.y1d{bottom:677.445000px;}
.y122{bottom:677.985000px;}
.yb4{bottom:679.065000px;}
.y5{bottom:681.009000px;}
.ydb{bottom:681.045000px;}
.y116{bottom:682.305000px;}
.y34{bottom:683.925000px;}
.y104{bottom:689.505000px;}
.ycb{bottom:690.225000px;}
.yed{bottom:692.385000px;}
.y4c{bottom:695.985000px;}
.y5c{bottom:698.865000px;}
.y156{bottom:704.805000px;}
.y142{bottom:708.585000px;}
.y121{bottom:710.925000px;}
.yb3{bottom:712.005000px;}
.y81{bottom:713.805000px;}
.y115{bottom:715.245000px;}
.y6d{bottom:716.865000px;}
.y103{bottom:722.445000px;}
.yca{bottom:723.165000px;}
.yec{bottom:725.325000px;}
.y4b{bottom:728.925000px;}
.y1c{bottom:730.725000px;}
.y33{bottom:731.805000px;}
.y4{bottom:734.514000px;}
.y141{bottom:741.525000px;}
.y120{bottom:743.865000px;}
.yb2{bottom:744.945000px;}
.y5b{bottom:746.925000px;}
.y114{bottom:748.185000px;}
.yeb{bottom:751.605000px;}
.y155{bottom:752.865000px;}
.y102{bottom:755.385000px;}
.yc9{bottom:756.105000px;}
.y4a{bottom:761.865000px;}
.y32{bottom:764.925000px;}
.y140{bottom:769.785000px;}
.y113{bottom:776.265000px;}
.yda{bottom:776.805000px;}
.yb1{bottom:777.885000px;}
.y5a{bottom:779.865000px;}
.y3{bottom:787.974000px;}
.y101{bottom:788.325000px;}
.yc8{bottom:789.045000px;}
.y1b{bottom:789.405000px;}
.y49{bottom:794.805000px;}
.y31{bottom:797.865000px;}
.y154{bottom:800.745000px;}
.yd9{bottom:809.925000px;}
.yb0{bottom:810.825000px;}
.y59{bottom:812.805000px;}
.y100{bottom:821.445000px;}
.yc7{bottom:821.985000px;}
.y48{bottom:827.745000px;}
.y30{bottom:830.805000px;}
.y2{bottom:831.894000px;}
.yd8{bottom:842.910000px;}
.y58{bottom:845.790000px;}
.y153{bottom:848.850000px;}
.y1a{bottom:853.890000px;}
.yff{bottom:854.430000px;}
.yaf{bottom:859.830000px;}
.y47{bottom:860.730000px;}
.y8d{bottom:863.790000px;}
.yc6{bottom:870.090000px;}
.yd7{bottom:875.850000px;}
.y2f{bottom:878.730000px;}
.yfe{bottom:887.370000px;}
.yae{bottom:892.770000px;}
.y80{bottom:893.670000px;}
.y46{bottom:893.850000px;}
.y9a{bottom:896.730000px;}
.yd6{bottom:908.790000px;}
.y19{bottom:910.590000px;}
.yc5{bottom:911.310000px;}
.y2e{bottom:911.670000px;}
.yfd{bottom:913.650000px;}
.yad{bottom:925.710000px;}
.y7f{bottom:926.610000px;}
.y45{bottom:926.790000px;}
.yd5{bottom:941.730000px;}
.y2d{bottom:944.610000px;}
.y18{bottom:951.810000px;}
.yac{bottom:958.650000px;}
.y44{bottom:959.730000px;}
.y7e{bottom:974.670000px;}
.y8c{bottom:977.550000px;}
.y2c{bottom:992.670000px;}
.yab{bottom:1006.710000px;}
.y7d{bottom:1007.610000px;}
.y8b{bottom:1010.670000px;}
.y2b{bottom:1025.610000px;}
.yaa{bottom:1039.650000px;}
.yd4{bottom:1040.550000px;}
.y99{bottom:1043.610000px;}
.y7c{bottom:1055.490000px;}
.y2a{bottom:1058.550000px;}
.ya9{bottom:1072.590000px;}
.yd3{bottom:1073.490000px;}
.y7b{bottom:1088.430000px;}
.y29{bottom:1091.490000px;}
.ye{bottom:1100.490000px;}
.ya8{bottom:1105.530000px;}
.y6c{bottom:1106.430000px;}
.ya7{bottom:1138.500000px;}
.y7a{bottom:1139.400000px;}
.y28{bottom:1139.580000px;}
.yd{bottom:1142.460000px;}
.hc{height:18.360000px;}
.h16{height:47.223633px;}
.h6{height:52.260820px;}
.h13{height:54.386719px;}
.h15{height:57.927656px;}
.h11{height:57.937500px;}
.h3{height:59.378906px;}
.hf{height:62.964844px;}
.h17{height:65.946445px;}
.h4{height:69.473320px;}
.hb{height:73.668867px;}
.h10{height:74.004654px;}
.h12{height:74.953125px;}
.hd{height:89.068359px;}
.h9{height:94.447266px;}
.he{height:99.162773px;}
.ha{height:114.480000px;}
.h5{height:138.352852px;}
.h8{height:168.116133px;}
.h14{height:442.980000px;}
.h7{height:456.915000px;}
.h2{height:1018.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:839.850000px;}
.w2{width:840.570000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.800000px;}
.x1{left:26.460000px;}
.x9{left:67.500000px;}
.xd{left:127.655987px;}
.x13{left:132.155987px;}
.x8{left:140.070000px;}
.x16{left:154.649987px;}
.x1c{left:179.489987px;}
.x18{left:181.649987px;}
.x1f{left:185.969987px;}
.x17{left:187.049987px;}
.x24{left:198.569987px;}
.x37{left:207.749987px;}
.x14{left:218.909987px;}
.x3{left:232.230000px;}
.x38{left:234.749987px;}
.x21{left:262.289987px;}
.xa{left:298.875000px;}
.x34{left:306.434987px;}
.x5{left:308.235000px;}
.x4{left:310.215000px;}
.xb{left:312.015000px;}
.x33{left:320.654987px;}
.x10{left:337.934987px;}
.x26{left:339.194987px;}
.x12{left:349.634987px;}
.x15{left:353.234987px;}
.x32{left:359.969987px;}
.x31{left:365.909987px;}
.x30{left:381.599987px;}
.x36{left:396.074987px;}
.x7{left:420.195000px;}
.x19{left:438.914987px;}
.xf{left:442.694987px;}
.x11{left:446.474987px;}
.x2b{left:464.144987px;}
.x27{left:467.024987px;}
.x28{left:471.344987px;}
.x1e{left:473.474987px;}
.x2a{left:475.484987px;}
.x29{left:476.924987px;}
.x2{left:525.345000px;}
.x20{left:551.084987px;}
.x2e{left:553.169987px;}
.x2f{left:573.329987px;}
.x2d{left:623.084987px;}
.x2c{left:632.084987px;}
.x6{left:642.345000px;}
.x1a{left:654.584987px;}
.x23{left:670.424987px;}
.x1d{left:710.969987px;}
.x22{left:712.049987px;}
.xe{left:758.670000px;}
.x1b{left:792.509987px;}
.x35{left:819.509987px;}
.x25{left:821.849987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.218667pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.019840pt;}
.ls0{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.154667pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls18{letter-spacing:16.416000pt;}
.ls9{letter-spacing:29.546667pt;}
.ls14{letter-spacing:29.568000pt;}
.ls19{letter-spacing:43.008000pt;}
.ls10{letter-spacing:48.768000pt;}
.lse{letter-spacing:58.368000pt;}
.ls12{letter-spacing:71.808000pt;}
.ls1a{letter-spacing:133.888000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.592000pt;}
.ws5{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.336000pt;}
.wsa{word-spacing:-14.272000pt;}
.ws6{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.888000pt;}
.ws9{word-spacing:-11.953280pt;}
.wsb{word-spacing:-10.848000pt;}
.wsc{word-spacing:-9.690880pt;}
.ws0{word-spacing:0.000000pt;}
._3f{margin-left:-4.671147pt;}
._1e{margin-left:-3.360427pt;}
._4{margin-left:-2.399573pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.894720pt;}
._6{width:1.856853pt;}
._12{width:2.766080pt;}
._e{width:3.904000pt;}
._d{width:5.432320pt;}
._c{width:6.698667pt;}
._1d{width:7.796480pt;}
._14{width:8.787627pt;}
._13{width:9.984000pt;}
._18{width:11.009280pt;}
._1b{width:11.901013pt;}
._9{width:13.122987pt;}
._17{width:16.192000pt;}
._f{width:17.258667pt;}
._b{width:18.837333pt;}
._a{width:20.074667pt;}
._1a{width:21.632000pt;}
._19{width:23.104000pt;}
._16{width:24.320000pt;}
._15{width:25.216000pt;}
._11{width:26.172160pt;}
._10{width:27.297707pt;}
._8{width:29.083307pt;}
._7{width:30.144000pt;}
._33{width:31.256320pt;}
._26{width:32.512000pt;}
._27{width:33.610667pt;}
._1c{width:35.712000pt;}
._3a{width:36.865280pt;}
._23{width:37.976320pt;}
._22{width:39.168000pt;}
._21{width:40.064000pt;}
._28{width:41.408000pt;}
._2a{width:44.544000pt;}
._29{width:45.632000pt;}
._2f{width:50.588587pt;}
._20{width:51.616000pt;}
._1f{width:52.736000pt;}
._40{width:92.800000pt;}
._35{width:96.256000pt;}
._34{width:97.600000pt;}
._36{width:99.968000pt;}
._3b{width:129.024000pt;}
._2c{width:155.072000pt;}
._38{width:170.496000pt;}
._37{width:171.776000pt;}
._30{width:221.056000pt;}
._3e{width:235.136000pt;}
._39{width:236.992000pt;}
._31{width:375.168000pt;}
._2d{width:553.280000pt;}
._2b{width:584.416000pt;}
._3c{width:616.320000pt;}
._3d{width:635.904000pt;}
._24{width:680.896000pt;}
._3{width:711.412907pt;}
._2{width:751.215787pt;}
._5{width:753.674667pt;}
._2e{width:792.832000pt;}
._32{width:808.704000pt;}
._25{width:1680.896000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs2{font-size:149.120000pt;}
.fs4{font-size:170.880000pt;}
.yc{bottom:-24.800000pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.200000pt;}
.y15{bottom:3.520000pt;}
.yb{bottom:17.594667pt;}
.y11{bottom:24.160000pt;}
.y17{bottom:50.592000pt;}
.y134{bottom:53.946667pt;}
.y131{bottom:60.480000pt;}
.y16{bottom:66.912000pt;}
.y133{bottom:67.066667pt;}
.y130{bottom:73.760000pt;}
.y10{bottom:79.680000pt;}
.y132{bottom:80.346667pt;}
.ya{bottom:81.434667pt;}
.y98{bottom:99.072000pt;}
.y43{bottom:101.792000pt;}
.y12{bottom:102.112000pt;}
.y11f{bottom:102.272000pt;}
.y13f{bottom:104.512000pt;}
.y57{bottom:107.072000pt;}
.yc4{bottom:107.232000pt;}
.ya6{bottom:111.552000pt;}
.y162{bottom:114.912000pt;}
.y1{bottom:116.672000pt;}
.y168{bottom:117.792000pt;}
.yd2{bottom:119.872000pt;}
.y179{bottom:120.512000pt;}
.y126{bottom:120.992000pt;}
.y79{bottom:122.912000pt;}
.y27{bottom:124.352000pt;}
.y6b{bottom:125.792000pt;}
.y152{bottom:130.112000pt;}
.y42{bottom:131.072000pt;}
.y11e{bottom:131.552000pt;}
.y13e{bottom:133.786667pt;}
.yea{bottom:136.506667pt;}
.ya5{bottom:140.826667pt;}
.y97{bottom:141.786667pt;}
.yfc{bottom:149.146667pt;}
.y56{bottom:149.626667pt;}
.y178{bottom:149.786667pt;}
.y9{bottom:149.794667pt;}
.yc3{bottom:149.946667pt;}
.y125{bottom:150.266667pt;}
.y6a{bottom:155.066667pt;}
.y161{bottom:157.466667pt;}
.yd1{bottom:158.106667pt;}
.y151{bottom:159.386667pt;}
.y167{bottom:160.346667pt;}
.y11d{bottom:160.826667pt;}
.y13d{bottom:163.226667pt;}
.y127{bottom:165.600000pt;}
.y8a{bottom:165.626667pt;}
.ye9{bottom:165.786667pt;}
.y12a{bottom:167.933333pt;}
.y78{bottom:168.186667pt;}
.ya4{bottom:170.266667pt;}
.y96{bottom:171.066667pt;}
.y26{bottom:171.706667pt;}
.y41{bottom:173.626667pt;}
.y124{bottom:175.226667pt;}
.yfb{bottom:178.426667pt;}
.y177{bottom:179.066667pt;}
.y129{bottom:184.093333pt;}
.y69{bottom:184.346667pt;}
.y11c{bottom:185.786667pt;}
.y150{bottom:188.666667pt;}
.y55{bottom:192.186667pt;}
.yc2{bottom:192.506667pt;}
.ye8{bottom:195.066667pt;}
.ya3{bottom:199.546667pt;}
.y160{bottom:200.186667pt;}
.y128{bottom:200.253333pt;}
.y95{bottom:200.346667pt;}
.y112{bottom:202.746667pt;}
.y166{bottom:202.906667pt;}
.yfa{bottom:207.866667pt;}
.y89{bottom:208.186667pt;}
.y176{bottom:208.346667pt;}
.y77{bottom:210.906667pt;}
.y68{bottom:213.626667pt;}
.y40{bottom:216.346667pt;}
.y14f{bottom:217.946667pt;}
.y8{bottom:218.274667pt;}
.y25{bottom:219.226667pt;}
.yc1{bottom:221.786667pt;}
.y12f{bottom:223.200000pt;}
.ye7{bottom:224.346667pt;}
.ya2{bottom:228.826667pt;}
.y94{bottom:229.626667pt;}
.y111{bottom:232.026667pt;}
.y54{bottom:234.906667pt;}
.y12e{bottom:236.480000pt;}
.yf9{bottom:237.146667pt;}
.y175{bottom:237.786667pt;}
.y15f{bottom:242.786667pt;}
.y3f{bottom:245.666667pt;}
.y14e{bottom:247.266667pt;}
.y88{bottom:250.786667pt;}
.yc0{bottom:251.106667pt;}
.y24{bottom:253.346667pt;}
.y76{bottom:253.506667pt;}
.ye6{bottom:253.666667pt;}
.y67{bottom:256.386667pt;}
.ya1{bottom:258.146667pt;}
.y93{bottom:258.946667pt;}
.y110{bottom:261.346667pt;}
.yf8{bottom:266.466667pt;}
.y174{bottom:267.106667pt;}
.y14d{bottom:276.546667pt;}
.y53{bottom:277.506667pt;}
.ybf{bottom:280.386667pt;}
.ye5{bottom:282.946667pt;}
.y7{bottom:283.554667pt;}
.y15e{bottom:285.506667pt;}
.y66{bottom:285.666667pt;}
.ya0{bottom:287.426667pt;}
.y3e{bottom:288.226667pt;}
.y10f{bottom:290.626667pt;}
.y87{bottom:293.506667pt;}
.yf7{bottom:295.746667pt;}
.y75{bottom:296.226667pt;}
.y173{bottom:296.386667pt;}
.y23{bottom:301.026667pt;}
.y14c{bottom:305.826667pt;}
.ybe{bottom:309.666667pt;}
.ye4{bottom:312.226667pt;}
.y65{bottom:314.946667pt;}
.y9f{bottom:316.706667pt;}
.y12d{bottom:317.213333pt;}
.y3d{bottom:317.506667pt;}
.y10e{bottom:319.906667pt;}
.y14{bottom:320.066667pt;}
.y52{bottom:320.226667pt;}
.y6{bottom:322.754667pt;}
.yf6{bottom:325.026667pt;}
.y172{bottom:325.666667pt;}
.y15d{bottom:328.066667pt;}
.y12c{bottom:330.373333pt;}
.y92{bottom:330.946667pt;}
.y86{bottom:336.066667pt;}
.y74{bottom:338.786667pt;}
.y13c{bottom:338.946667pt;}
.ybd{bottom:339.906667pt;}
.ye3{bottom:341.666667pt;}
.y12b{bottom:343.653333pt;}
.y64{bottom:344.226667pt;}
.y9e{bottom:345.986667pt;}
.y3c{bottom:346.786667pt;}
.y22{bottom:348.546667pt;}
.y10d{bottom:349.186667pt;}
.yf5{bottom:354.306667pt;}
.y171{bottom:354.946667pt;}
.y91{bottom:360.226667pt;}
.y51{bottom:362.786667pt;}
.y14b{bottom:365.346667pt;}
.y13b{bottom:368.226667pt;}
.ybc{bottom:369.186667pt;}
.y15c{bottom:370.786667pt;}
.ye2{bottom:370.946667pt;}
.y63{bottom:373.506667pt;}
.y9d{bottom:375.266667pt;}
.y3b{bottom:376.226667pt;}
.y10c{bottom:378.466667pt;}
.y85{bottom:378.786667pt;}
.yf{bottom:379.266667pt;}
.y73{bottom:381.346667pt;}
.yf4{bottom:383.586667pt;}
.y170{bottom:384.226667pt;}
.y90{bottom:389.506667pt;}
.y14a{bottom:394.626667pt;}
.y21{bottom:396.066667pt;}
.y13a{bottom:397.506667pt;}
.ybb{bottom:398.466667pt;}
.ye1{bottom:400.226667pt;}
.y62{bottom:402.786667pt;}
.y9c{bottom:404.546667pt;}
.y3a{bottom:405.506667pt;}
.y10b{bottom:407.746667pt;}
.yf3{bottom:412.866667pt;}
.y15b{bottom:413.346667pt;}
.y16f{bottom:413.506667pt;}
.y165{bottom:416.226667pt;}
.y8f{bottom:418.786667pt;}
.y84{bottom:421.346667pt;}
.y149{bottom:423.906667pt;}
.y72{bottom:424.066667pt;}
.y139{bottom:426.786667pt;}
.yba{bottom:427.746667pt;}
.ye0{bottom:429.506667pt;}
.y61{bottom:432.066667pt;}
.y9b{bottom:433.826667pt;}
.y39{bottom:434.786667pt;}
.y10a{bottom:437.026667pt;}
.yf2{bottom:442.146667pt;}
.y16e{bottom:442.786667pt;}
.y20{bottom:443.586667pt;}
.y164{bottom:445.506667pt;}
.y50{bottom:448.066667pt;}
.y148{bottom:453.186667pt;}
.y15a{bottom:455.906667pt;}
.y138{bottom:456.226667pt;}
.yb9{bottom:457.026667pt;}
.ydf{bottom:458.786667pt;}
.y11b{bottom:459.906667pt;}
.y60{bottom:461.346667pt;}
.y83{bottom:464.066667pt;}
.y109{bottom:466.466667pt;}
.y71{bottom:466.626667pt;}
.yd0{bottom:466.946667pt;}
.yf1{bottom:471.586667pt;}
.y16d{bottom:472.066667pt;}
.y163{bottom:474.786667pt;}
.y38{bottom:477.346667pt;}
.y147{bottom:483.426667pt;}
.y137{bottom:485.506667pt;}
.yb8{bottom:486.306667pt;}
.yde{bottom:488.066667pt;}
.y11a{bottom:489.186667pt;}
.y4f{bottom:490.786667pt;}
.y108{bottom:495.773333pt;}
.ycf{bottom:496.413333pt;}
.y1f{bottom:498.013333pt;}
.y159{bottom:498.653333pt;}
.yf0{bottom:500.893333pt;}
.y16c{bottom:501.373333pt;}
.y5f{bottom:504.093333pt;}
.y37{bottom:506.653333pt;}
.y70{bottom:509.373333pt;}
.y146{bottom:512.733333pt;}
.y136{bottom:514.813333pt;}
.yb7{bottom:515.773333pt;}
.ydd{bottom:517.373333pt;}
.y119{bottom:518.653333pt;}
.y8e{bottom:520.093333pt;}
.y107{bottom:525.053333pt;}
.yce{bottom:525.693333pt;}
.yef{bottom:530.173333pt;}
.y16b{bottom:530.813333pt;}
.y4e{bottom:533.373333pt;}
.y36{bottom:535.933333pt;}
.y158{bottom:541.213333pt;}
.y145{bottom:542.013333pt;}
.y135{bottom:544.093333pt;}
.yb6{bottom:545.053333pt;}
.ydc{bottom:546.653333pt;}
.y1e{bottom:546.973333pt;}
.y118{bottom:547.933333pt;}
.y82{bottom:549.373333pt;}
.y6f{bottom:551.933333pt;}
.y106{bottom:554.333333pt;}
.ycd{bottom:554.973333pt;}
.y16a{bottom:560.093333pt;}
.y5e{bottom:562.653333pt;}
.y144{bottom:571.293333pt;}
.yee{bottom:572.733333pt;}
.y123{bottom:573.373333pt;}
.yb5{bottom:574.333333pt;}
.y4d{bottom:575.933333pt;}
.y117{bottom:577.213333pt;}
.y35{bottom:578.653333pt;}
.y105{bottom:583.613333pt;}
.y157{bottom:583.933333pt;}
.ycc{bottom:584.253333pt;}
.y169{bottom:589.373333pt;}
.y5d{bottom:591.933333pt;}
.y6e{bottom:594.653333pt;}
.y143{bottom:600.573333pt;}
.y1d{bottom:602.173333pt;}
.y122{bottom:602.653333pt;}
.yb4{bottom:603.613333pt;}
.y5{bottom:605.341333pt;}
.ydb{bottom:605.373333pt;}
.y116{bottom:606.493333pt;}
.y34{bottom:607.933333pt;}
.y104{bottom:612.893333pt;}
.ycb{bottom:613.533333pt;}
.yed{bottom:615.453333pt;}
.y4c{bottom:618.653333pt;}
.y5c{bottom:621.213333pt;}
.y156{bottom:626.493333pt;}
.y142{bottom:629.853333pt;}
.y121{bottom:631.933333pt;}
.yb3{bottom:632.893333pt;}
.y81{bottom:634.493333pt;}
.y115{bottom:635.773333pt;}
.y6d{bottom:637.213333pt;}
.y103{bottom:642.173333pt;}
.yca{bottom:642.813333pt;}
.yec{bottom:644.733333pt;}
.y4b{bottom:647.933333pt;}
.y1c{bottom:649.533333pt;}
.y33{bottom:650.493333pt;}
.y4{bottom:652.901333pt;}
.y141{bottom:659.133333pt;}
.y120{bottom:661.213333pt;}
.yb2{bottom:662.173333pt;}
.y5b{bottom:663.933333pt;}
.y114{bottom:665.053333pt;}
.yeb{bottom:668.093333pt;}
.y155{bottom:669.213333pt;}
.y102{bottom:671.453333pt;}
.yc9{bottom:672.093333pt;}
.y4a{bottom:677.213333pt;}
.y32{bottom:679.933333pt;}
.y140{bottom:684.253333pt;}
.y113{bottom:690.013333pt;}
.yda{bottom:690.493333pt;}
.yb1{bottom:691.453333pt;}
.y5a{bottom:693.213333pt;}
.y3{bottom:700.421333pt;}
.y101{bottom:700.733333pt;}
.yc8{bottom:701.373333pt;}
.y1b{bottom:701.693333pt;}
.y49{bottom:706.493333pt;}
.y31{bottom:709.213333pt;}
.y154{bottom:711.773333pt;}
.yd9{bottom:719.933333pt;}
.yb0{bottom:720.733333pt;}
.y59{bottom:722.493333pt;}
.y100{bottom:730.173333pt;}
.yc7{bottom:730.653333pt;}
.y48{bottom:735.773333pt;}
.y30{bottom:738.493333pt;}
.y2{bottom:739.461333pt;}
.yd8{bottom:749.253333pt;}
.y58{bottom:751.813333pt;}
.y153{bottom:754.533333pt;}
.y1a{bottom:759.013333pt;}
.yff{bottom:759.493333pt;}
.yaf{bottom:764.293333pt;}
.y47{bottom:765.093333pt;}
.y8d{bottom:767.813333pt;}
.yc6{bottom:773.413333pt;}
.yd7{bottom:778.533333pt;}
.y2f{bottom:781.093333pt;}
.yfe{bottom:788.773333pt;}
.yae{bottom:793.573333pt;}
.y80{bottom:794.373333pt;}
.y46{bottom:794.533333pt;}
.y9a{bottom:797.093333pt;}
.yd6{bottom:807.813333pt;}
.y19{bottom:809.413333pt;}
.yc5{bottom:810.053333pt;}
.y2e{bottom:810.373333pt;}
.yfd{bottom:812.133333pt;}
.yad{bottom:822.853333pt;}
.y7f{bottom:823.653333pt;}
.y45{bottom:823.813333pt;}
.yd5{bottom:837.093333pt;}
.y2d{bottom:839.653333pt;}
.y18{bottom:846.053333pt;}
.yac{bottom:852.133333pt;}
.y44{bottom:853.093333pt;}
.y7e{bottom:866.373333pt;}
.y8c{bottom:868.933333pt;}
.y2c{bottom:882.373333pt;}
.yab{bottom:894.853333pt;}
.y7d{bottom:895.653333pt;}
.y8b{bottom:898.373333pt;}
.y2b{bottom:911.653333pt;}
.yaa{bottom:924.133333pt;}
.yd4{bottom:924.933333pt;}
.y99{bottom:927.653333pt;}
.y7c{bottom:938.213333pt;}
.y2a{bottom:940.933333pt;}
.ya9{bottom:953.413333pt;}
.yd3{bottom:954.213333pt;}
.y7b{bottom:967.493333pt;}
.y29{bottom:970.213333pt;}
.ye{bottom:978.213333pt;}
.ya8{bottom:982.693333pt;}
.y6c{bottom:983.493333pt;}
.ya7{bottom:1012.000000pt;}
.y7a{bottom:1012.800000pt;}
.y28{bottom:1012.960000pt;}
.yd{bottom:1015.520000pt;}
.hc{height:16.320000pt;}
.h16{height:41.976562pt;}
.h6{height:46.454062pt;}
.h13{height:48.343750pt;}
.h15{height:51.491250pt;}
.h11{height:51.500000pt;}
.h3{height:52.781250pt;}
.hf{height:55.968750pt;}
.h17{height:58.619062pt;}
.h4{height:61.754062pt;}
.hb{height:65.483437pt;}
.h10{height:65.781915pt;}
.h12{height:66.625000pt;}
.hd{height:79.171875pt;}
.h9{height:83.953125pt;}
.he{height:88.144687pt;}
.ha{height:101.760000pt;}
.h5{height:122.980312pt;}
.h8{height:149.436563pt;}
.h14{height:393.760000pt;}
.h7{height:406.146667pt;}
.h2{height:905.573333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:746.533333pt;}
.w2{width:747.173333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.600000pt;}
.x1{left:23.520000pt;}
.x9{left:60.000000pt;}
.xd{left:113.471988pt;}
.x13{left:117.471988pt;}
.x8{left:124.506667pt;}
.x16{left:137.466655pt;}
.x1c{left:159.546655pt;}
.x18{left:161.466655pt;}
.x1f{left:165.306655pt;}
.x17{left:166.266655pt;}
.x24{left:176.506655pt;}
.x37{left:184.666655pt;}
.x14{left:194.586655pt;}
.x3{left:206.426667pt;}
.x38{left:208.666655pt;}
.x21{left:233.146655pt;}
.xa{left:265.666667pt;}
.x34{left:272.386655pt;}
.x5{left:273.986667pt;}
.x4{left:275.746667pt;}
.xb{left:277.346667pt;}
.x33{left:285.026655pt;}
.x10{left:300.386655pt;}
.x26{left:301.506655pt;}
.x12{left:310.786655pt;}
.x15{left:313.986655pt;}
.x32{left:319.973322pt;}
.x31{left:325.253322pt;}
.x30{left:339.199988pt;}
.x36{left:352.066655pt;}
.x7{left:373.506667pt;}
.x19{left:390.146655pt;}
.xf{left:393.506655pt;}
.x11{left:396.866655pt;}
.x2b{left:412.573322pt;}
.x27{left:415.133322pt;}
.x28{left:418.973322pt;}
.x1e{left:420.866655pt;}
.x2a{left:422.653322pt;}
.x29{left:423.933322pt;}
.x2{left:466.973333pt;}
.x20{left:489.853322pt;}
.x2e{left:491.706655pt;}
.x2f{left:509.626655pt;}
.x2d{left:553.853322pt;}
.x2c{left:561.853322pt;}
.x6{left:570.973333pt;}
.x1a{left:581.853322pt;}
.x23{left:595.933322pt;}
.x1d{left:631.973322pt;}
.x22{left:632.933322pt;}
.xe{left:674.373333pt;}
.x1b{left:704.453322pt;}
.x35{left:728.453322pt;}
.x25{left:730.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; }
  