
    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_6b7edae88128b292b22a8bed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3881b11cdacc3a7b86aea268.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_c58645c02f20917904fe5fbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_229dab032d64182dd7c6972f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3a410cae58e1a8057a3944be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_578f9f4aa338381fb2eed11d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_979a734f74863175207d12bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-4.986000px;}
.lsb{letter-spacing:-4.782000px;}
.ls1b{letter-spacing:-4.680000px;}
.ls19{letter-spacing:-4.266000px;}
.ls17{letter-spacing:-3.960000px;}
.ls10{letter-spacing:-3.546000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.666000px;}
.lsa{letter-spacing:0.828000px;}
.ls18{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.170720px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.ws15{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.505760px;}
.ws9{word-spacing:-12.204000px;}
.ws12{word-spacing:-10.980000px;}
.ws14{word-spacing:-10.260000px;}
.ws13{word-spacing:-9.954000px;}
.wsf{word-spacing:-6.834240px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._9{margin-left:-1651.300320px;}
._3{margin-left:-1648.909440px;}
._4{margin-left:-1170.942000px;}
._22{margin-left:-1150.191360px;}
._5{margin-left:-1133.055360px;}
._8{margin-left:-550.920000px;}
._6{margin-left:-473.616000px;}
._7{margin-left:-33.120000px;}
._2f{margin-left:-7.983600px;}
._a{margin-left:-6.186960px;}
._c{margin-left:-4.759200px;}
._e{margin-left:-2.815920px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._d{width:2.664960px;}
._11{width:4.618560px;}
._f{width:6.326640px;}
._10{width:7.418160px;}
._14{width:8.485920px;}
._12{width:9.920160px;}
._13{width:10.936080px;}
._20{width:12.401280px;}
._17{width:13.924080px;}
._15{width:15.955920px;}
._16{width:16.957440px;}
._1b{width:18.807840px;}
._19{width:19.840320px;}
._1a{width:21.155040px;}
._2e{width:22.290480px;}
._26{width:23.306400px;}
._1f{width:25.209360px;}
._1e{width:26.832240px;}
._1c{width:28.749600px;}
._1d{width:30.042000px;}
._21{width:31.200480px;}
._28{width:32.868000px;}
._2c{width:33.883920px;}
._25{width:34.899840px;}
._18{width:36.154800px;}
._29{width:38.007360px;}
._24{width:39.740880px;}
._23{width:40.756320px;}
._2a{width:42.429600px;}
._35{width:43.624800px;}
._2d{width:44.999280px;}
._36{width:46.247040px;}
._33{width:48.037440px;}
._30{width:49.182480px;}
._39{width:50.497200px;}
._32{width:51.513120px;}
._27{width:53.186400px;}
._31{width:55.098720px;}
._38{width:56.413440px;}
._42{width:57.482400px;}
._3c{width:59.033520px;}
._3a{width:60.357600px;}
._3b{width:61.373520px;}
._40{width:62.837280px;}
._3d{width:64.720080px;}
._3e{width:66.498480px;}
._47{width:68.126400px;}
._34{width:69.498720px;}
._37{width:70.815600px;}
._56{width:74.102400px;}
._4e{width:75.690000px;}
._2b{width:81.691920px;}
._41{width:83.126160px;}
._54{width:84.161520px;}
._3f{width:93.165840px;}
._51{width:97.886880px;}
._52{width:99.029520px;}
._4d{width:101.823840px;}
._4c{width:103.026240px;}
._43{width:109.659600px;}
._57{width:112.707360px;}
._45{width:119.221200px;}
._44{width:120.286560px;}
._50{width:129.746880px;}
._4f{width:131.950080px;}
._4b{width:132.966000px;}
._46{width:138.900240px;}
._53{width:160.140720px;}
._4a{width:188.841600px;}
._49{width:193.502880px;}
._48{width:203.064480px;}
._55{width:283.104720px;}
._b{width:996.240000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.196000px;}
.y182{bottom:19.590000px;}
.y181{bottom:27.870000px;}
.y180{bottom:36.150000px;}
.ya{bottom:37.080000px;}
.y17f{bottom:44.430000px;}
.yea{bottom:52.020000px;}
.y17e{bottom:52.710000px;}
.y6{bottom:54.180000px;}
.y17d{bottom:60.810000px;}
.ye9{bottom:66.780000px;}
.ye3{bottom:68.910000px;}
.y17c{bottom:74.340000px;}
.ye8{bottom:81.540000px;}
.y17b{bottom:82.620000px;}
.y170{bottom:83.196000px;}
.ye2{bottom:83.850000px;}
.y119{bottom:85.896000px;}
.y17a{bottom:90.900000px;}
.ydf{bottom:93.096000px;}
.y184{bottom:94.536000px;}
.y11d{bottom:94.896000px;}
.ye7{bottom:96.480000px;}
.y3a{bottom:99.036000px;}
.y179{bottom:99.180000px;}
.y16f{bottom:102.996000px;}
.y109{bottom:105.696000px;}
.y178{bottom:107.280000px;}
.y154{bottom:111.996000px;}
.yde{bottom:112.896000px;}
.y11c{bottom:114.696000px;}
.y38{bottom:118.836000px;}
.y177{bottom:120.675000px;}
.y16e{bottom:122.976000px;}
.y108{bottom:125.676000px;}
.y176{bottom:128.955000px;}
.y153{bottom:131.976000px;}
.ydd{bottom:132.696000px;}
.y11b{bottom:134.676000px;}
.y175{bottom:137.235000px;}
.y37{bottom:138.636000px;}
.y16d{bottom:142.776000px;}
.y118{bottom:145.116000px;}
.y107{bottom:145.476000px;}
.y174{bottom:145.515000px;}
.y152{bottom:151.770000px;}
.y70{bottom:152.310000px;}
.ydc{bottom:152.670000px;}
.ye6{bottom:152.820000px;}
.y173{bottom:153.795000px;}
.y11a{bottom:154.470000px;}
.y36{bottom:158.610000px;}
.yec{bottom:160.950000px;}
.y172{bottom:161.895000px;}
.y16c{bottom:162.570000px;}
.ya3{bottom:165.270000px;}
.ye5{bottom:169.200000px;}
.ye1{bottom:169.275000px;}
.y151{bottom:171.570000px;}
.y6f{bottom:172.110000px;}
.ydb{bottom:172.470000px;}
.y117{bottom:174.270000px;}
.yeb{bottom:177.510000px;}
.y35{bottom:178.410000px;}
.y16b{bottom:182.370000px;}
.ya2{bottom:185.070000px;}
.ye4{bottom:185.760000px;}
.y150{bottom:191.370000px;}
.y6e{bottom:191.910000px;}
.yda{bottom:192.270000px;}
.y116{bottom:194.070000px;}
.y34{bottom:198.210000px;}
.y16a{bottom:202.170000px;}
.ya1{bottom:204.870000px;}
.y14f{bottom:211.170000px;}
.y6d{bottom:211.710000px;}
.yd9{bottom:212.070000px;}
.y115{bottom:213.870000px;}
.y33{bottom:218.010000px;}
.y169{bottom:222.150000px;}
.ya0{bottom:224.850000px;}
.y14e{bottom:231.150000px;}
.y6c{bottom:231.690000px;}
.yd8{bottom:231.870000px;}
.y114{bottom:233.850000px;}
.y32{bottom:237.810000px;}
.y168{bottom:241.950000px;}
.y9f{bottom:244.650000px;}
.y14d{bottom:250.950000px;}
.y6b{bottom:251.490000px;}
.yd7{bottom:251.850000px;}
.y113{bottom:253.650000px;}
.y31{bottom:257.790000px;}
.y167{bottom:261.750000px;}
.y9e{bottom:264.450000px;}
.y14c{bottom:270.750000px;}
.y6a{bottom:271.290000px;}
.yd6{bottom:271.650000px;}
.y112{bottom:273.450000px;}
.y30{bottom:277.590000px;}
.y166{bottom:281.550000px;}
.y9d{bottom:284.250000px;}
.y14b{bottom:290.550000px;}
.y69{bottom:291.090000px;}
.yd5{bottom:291.450000px;}
.y111{bottom:293.250000px;}
.y2f{bottom:297.390000px;}
.y165{bottom:301.350000px;}
.y9c{bottom:304.050000px;}
.y14a{bottom:310.350000px;}
.y68{bottom:310.890000px;}
.yd4{bottom:311.250000px;}
.y110{bottom:313.050000px;}
.y2e{bottom:317.190000px;}
.y164{bottom:321.330000px;}
.y9b{bottom:324.030000px;}
.y149{bottom:330.375000px;}
.y67{bottom:330.915000px;}
.yd3{bottom:331.095000px;}
.y10f{bottom:333.075000px;}
.y2d{bottom:337.035000px;}
.y163{bottom:341.175000px;}
.y9a{bottom:343.875000px;}
.y148{bottom:350.175000px;}
.y66{bottom:350.715000px;}
.yd2{bottom:351.075000px;}
.y10e{bottom:352.875000px;}
.y2c{bottom:357.015000px;}
.y162{bottom:360.975000px;}
.y99{bottom:363.675000px;}
.y147{bottom:369.975000px;}
.y65{bottom:370.515000px;}
.yd1{bottom:370.875000px;}
.y10d{bottom:372.675000px;}
.y2b{bottom:376.815000px;}
.y161{bottom:380.775000px;}
.y11e{bottom:383.115000px;}
.y98{bottom:383.475000px;}
.y146{bottom:389.775000px;}
.y64{bottom:390.315000px;}
.yd0{bottom:390.675000px;}
.y10c{bottom:392.475000px;}
.y2a{bottom:396.615000px;}
.y160{bottom:400.575000px;}
.y97{bottom:402.915000px;}
.y106{bottom:403.275000px;}
.y145{bottom:409.575000px;}
.y63{bottom:410.115000px;}
.ycf{bottom:410.475000px;}
.y10b{bottom:412.275000px;}
.y29{bottom:416.415000px;}
.y15f{bottom:420.555000px;}
.y96{bottom:422.895000px;}
.y105{bottom:423.255000px;}
.y144{bottom:429.555000px;}
.y62{bottom:430.095000px;}
.yce{bottom:430.275000px;}
.y10a{bottom:432.255000px;}
.y28{bottom:436.215000px;}
.y15e{bottom:440.355000px;}
.y104{bottom:443.055000px;}
.y143{bottom:449.355000px;}
.y61{bottom:449.895000px;}
.ycd{bottom:450.255000px;}
.y95{bottom:452.055000px;}
.y27{bottom:456.195000px;}
.y15d{bottom:460.155000px;}
.y103{bottom:462.855000px;}
.y142{bottom:469.155000px;}
.y60{bottom:469.695000px;}
.ycc{bottom:470.055000px;}
.y94{bottom:471.855000px;}
.y26{bottom:475.995000px;}
.y15c{bottom:479.955000px;}
.y102{bottom:482.655000px;}
.y141{bottom:488.955000px;}
.y5f{bottom:489.495000px;}
.ycb{bottom:489.855000px;}
.y93{bottom:491.655000px;}
.y25{bottom:495.795000px;}
.y15b{bottom:499.755000px;}
.y101{bottom:502.455000px;}
.y140{bottom:508.755000px;}
.y5e{bottom:509.295000px;}
.yca{bottom:509.655000px;}
.y92{bottom:511.455000px;}
.y24{bottom:515.235000px;}
.y39{bottom:515.595000px;}
.y15a{bottom:519.735000px;}
.y100{bottom:522.435000px;}
.y13f{bottom:528.735000px;}
.y5d{bottom:529.275000px;}
.yc9{bottom:529.455000px;}
.y91{bottom:531.435000px;}
.y23{bottom:535.395000px;}
.y159{bottom:539.535000px;}
.yff{bottom:542.235000px;}
.y13e{bottom:548.535000px;}
.y5c{bottom:548.715000px;}
.yc8{bottom:549.435000px;}
.y90{bottom:551.235000px;}
.y22{bottom:557.535000px;}
.y158{bottom:559.335000px;}
.yfe{bottom:562.035000px;}
.y13d{bottom:568.335000px;}
.y5b{bottom:568.875000px;}
.yc7{bottom:569.235000px;}
.y8f{bottom:571.035000px;}
.y21{bottom:577.335000px;}
.y157{bottom:579.135000px;}
.yfd{bottom:581.835000px;}
.y13c{bottom:588.135000px;}
.y5a{bottom:588.675000px;}
.yc6{bottom:589.035000px;}
.y8e{bottom:590.835000px;}
.y20{bottom:597.345000px;}
.y156{bottom:598.965000px;}
.yfc{bottom:601.665000px;}
.y13b{bottom:607.965000px;}
.y59{bottom:608.505000px;}
.yc5{bottom:608.865000px;}
.y8d{bottom:610.665000px;}
.y1f{bottom:617.145000px;}
.y155{bottom:618.585000px;}
.yfb{bottom:621.645000px;}
.y13a{bottom:627.945000px;}
.y58{bottom:628.485000px;}
.yc4{bottom:628.665000px;}
.y8c{bottom:630.645000px;}
.y1e{bottom:636.945000px;}
.yfa{bottom:641.445000px;}
.y139{bottom:647.745000px;}
.y57{bottom:648.285000px;}
.yc3{bottom:648.645000px;}
.y8b{bottom:650.445000px;}
.y1d{bottom:656.745000px;}
.yf9{bottom:661.245000px;}
.y138{bottom:667.545000px;}
.y56{bottom:668.085000px;}
.yc2{bottom:668.445000px;}
.y8a{bottom:670.245000px;}
.y1c{bottom:676.545000px;}
.yf8{bottom:681.045000px;}
.y137{bottom:687.345000px;}
.y55{bottom:687.885000px;}
.yc1{bottom:688.245000px;}
.y89{bottom:690.045000px;}
.y1b{bottom:696.345000px;}
.y11f{bottom:700.485000px;}
.yf7{bottom:700.845000px;}
.y136{bottom:707.145000px;}
.y54{bottom:707.685000px;}
.yc0{bottom:708.045000px;}
.y88{bottom:709.845000px;}
.y1a{bottom:716.325000px;}
.yf6{bottom:720.825000px;}
.y135{bottom:727.125000px;}
.y53{bottom:727.665000px;}
.ybf{bottom:727.845000px;}
.y87{bottom:729.825000px;}
.y19{bottom:736.125000px;}
.yf5{bottom:740.625000px;}
.y134{bottom:746.925000px;}
.y52{bottom:747.465000px;}
.ybe{bottom:747.825000px;}
.y86{bottom:749.625000px;}
.y18{bottom:755.925000px;}
.yf4{bottom:760.425000px;}
.y133{bottom:766.725000px;}
.y51{bottom:767.265000px;}
.ybd{bottom:767.625000px;}
.y85{bottom:769.425000px;}
.y17{bottom:775.725000px;}
.yf3{bottom:780.225000px;}
.y132{bottom:786.525000px;}
.y50{bottom:787.065000px;}
.ybc{bottom:787.425000px;}
.y84{bottom:789.225000px;}
.y16{bottom:795.525000px;}
.yf2{bottom:800.025000px;}
.y4f{bottom:806.865000px;}
.ybb{bottom:807.225000px;}
.y83{bottom:809.025000px;}
.y15{bottom:815.505000px;}
.yf1{bottom:820.005000px;}
.y4e{bottom:826.845000px;}
.yba{bottom:827.025000px;}
.y82{bottom:829.005000px;}
.y14{bottom:835.305000px;}
.y131{bottom:838.365000px;}
.yf0{bottom:839.805000px;}
.y4d{bottom:846.645000px;}
.yb9{bottom:847.005000px;}
.y81{bottom:848.805000px;}
.y13{bottom:855.105000px;}
.y130{bottom:858.165000px;}
.yef{bottom:859.605000px;}
.y4c{bottom:866.490000px;}
.yb8{bottom:866.850000px;}
.y80{bottom:868.650000px;}
.y12{bottom:874.950000px;}
.y12f{bottom:878.010000px;}
.yee{bottom:879.090000px;}
.y126{bottom:879.450000px;}
.y4b{bottom:886.290000px;}
.yb7{bottom:886.650000px;}
.y7f{bottom:888.450000px;}
.y11{bottom:894.930000px;}
.y12e{bottom:897.990000px;}
.yed{bottom:898.890000px;}
.ya9{bottom:899.070000px;}
.y125{bottom:899.250000px;}
.y4a{bottom:906.450000px;}
.y183{bottom:907.890000px;}
.y7e{bottom:908.250000px;}
.y10{bottom:915.630000px;}
.y12d{bottom:917.790000px;}
.ya8{bottom:918.870000px;}
.y124{bottom:919.230000px;}
.yb6{bottom:926.250000px;}
.y49{bottom:926.430000px;}
.y7d{bottom:928.230000px;}
.yf{bottom:932.730000px;}
.y12c{bottom:937.590000px;}
.ya7{bottom:938.670000px;}
.y123{bottom:939.030000px;}
.yb5{bottom:946.230000px;}
.y48{bottom:946.410000px;}
.y7c{bottom:948.030000px;}
.ye{bottom:953.070000px;}
.y12b{bottom:957.390000px;}
.ya6{bottom:958.110000px;}
.y122{bottom:958.830000px;}
.yb4{bottom:966.030000px;}
.y47{bottom:966.390000px;}
.y7b{bottom:967.830000px;}
.ye0{bottom:972.180000px;}
.yd{bottom:973.050000px;}
.ya5{bottom:974.850000px;}
.y12a{bottom:976.830000px;}
.y121{bottom:978.630000px;}
.yb3{bottom:985.830000px;}
.y46{bottom:986.370000px;}
.y7a{bottom:987.630000px;}
.y171{bottom:990.900000px;}
.yc{bottom:993.570000px;}
.y120{bottom:998.070000px;}
.y129{bottom:998.430000px;}
.yb2{bottom:1005.630000px;}
.y45{bottom:1006.350000px;}
.y79{bottom:1007.430000px;}
.y128{bottom:1018.410000px;}
.yb{bottom:1025.250000px;}
.yb1{bottom:1025.430000px;}
.y44{bottom:1026.330000px;}
.y78{bottom:1027.410000px;}
.y127{bottom:1037.850000px;}
.yb0{bottom:1045.410000px;}
.y43{bottom:1046.310000px;}
.y77{bottom:1047.210000px;}
.y5{bottom:1054.590000px;}
.yaf{bottom:1065.210000px;}
.y42{bottom:1066.290000px;}
.y76{bottom:1067.010000px;}
.yae{bottom:1085.010000px;}
.y41{bottom:1086.270000px;}
.y75{bottom:1086.810000px;}
.y4{bottom:1088.070000px;}
.yad{bottom:1104.810000px;}
.y40{bottom:1106.250000px;}
.y74{bottom:1106.610000px;}
.y3{bottom:1119.030000px;}
.yac{bottom:1124.610000px;}
.y3f{bottom:1126.230000px;}
.y73{bottom:1126.590000px;}
.yab{bottom:1144.620000px;}
.y3e{bottom:1146.240000px;}
.y72{bottom:1146.420000px;}
.y2{bottom:1149.840000px;}
.yaa{bottom:1164.420000px;}
.y3d{bottom:1166.220000px;}
.y1{bottom:1181.700000px;}
.y185{bottom:1185.660000px;}
.y71{bottom:1186.020000px;}
.y3c{bottom:1186.200000px;}
.ya4{bottom:1193.580000px;}
.y3b{bottom:1215.180000px;}
.h5{height:21.276000px;}
.h14{height:30.077578px;}
.h6{height:39.183750px;}
.hf{height:42.164648px;}
.h16{height:45.549492px;}
.hc{height:47.344922px;}
.ha{height:48.616875px;}
.hd{height:53.573906px;}
.h12{height:53.709961px;}
.hb{height:58.651172px;}
.h11{height:59.439023px;}
.he{height:60.226875px;}
.h15{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:67.565039px;}
.h7{height:71.613281px;}
.h2{height:78.367500px;}
.h9{height:96.508125px;}
.h13{height:187.200000px;}
.h10{height:205.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w5{width:446.400000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:2.700000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x20{left:64.799987px;}
.x2b{left:80.999987px;}
.x10{left:88.199993px;}
.x12{left:91.187993px;}
.x7{left:95.615987px;}
.x11{left:100.007993px;}
.xa{left:108.755987px;}
.x4{left:118.296000px;}
.xf{left:120.095987px;}
.xc{left:132.875987px;}
.x13{left:193.349993px;}
.x24{left:194.609993px;}
.x16{left:198.389993px;}
.x26{left:200.549993px;}
.x18{left:202.169993px;}
.x25{left:203.249993px;}
.x14{left:205.589993px;}
.x29{left:218.699993px;}
.x27{left:221.039993px;}
.x23{left:223.454993px;}
.x21{left:226.874993px;}
.x17{left:228.269993px;}
.x28{left:229.499993px;}
.x22{left:231.014993px;}
.x15{left:233.669993px;}
.x2a{left:240.659993px;}
.x1a{left:311.369993px;}
.x19{left:322.349993px;}
.x1d{left:327.749993px;}
.x1b{left:331.889993px;}
.x1c{left:337.829993px;}
.x1e{left:353.489993px;}
.x8{left:359.174987px;}
.x9{left:379.874987px;}
.x1f{left:405.794987px;}
.xe{left:427.574987px;}
.xd{left:428.649000px;}
.xb{left:473.504987px;}
.x2d{left:500.504987px;}
.x2c{left:527.504987px;}
.x5{left:542.769000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-4.432000pt;}
.lsb{letter-spacing:-4.250667pt;}
.ls1b{letter-spacing:-4.160000pt;}
.ls19{letter-spacing:-3.792000pt;}
.ls17{letter-spacing:-3.520000pt;}
.ls10{letter-spacing:-3.152000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.592000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls11{letter-spacing:41.040640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.240000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsb{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.096533pt;}
.ws10{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws9{word-spacing:-10.848000pt;}
.ws12{word-spacing:-9.760000pt;}
.ws14{word-spacing:-9.120000pt;}
.ws13{word-spacing:-8.848000pt;}
.wsf{word-spacing:-6.074880pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._9{margin-left:-1467.822507pt;}
._3{margin-left:-1465.697280pt;}
._4{margin-left:-1040.837333pt;}
._22{margin-left:-1022.392320pt;}
._5{margin-left:-1007.160320pt;}
._8{margin-left:-489.706667pt;}
._6{margin-left:-420.992000pt;}
._7{margin-left:-29.440000pt;}
._2f{margin-left:-7.096533pt;}
._a{margin-left:-5.499520pt;}
._c{margin-left:-4.230400pt;}
._e{margin-left:-2.503040pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._d{width:2.368853pt;}
._11{width:4.105387pt;}
._f{width:5.623680pt;}
._10{width:6.593920pt;}
._14{width:7.543040pt;}
._12{width:8.817920pt;}
._13{width:9.720960pt;}
._20{width:11.023360pt;}
._17{width:12.376960pt;}
._15{width:14.183040pt;}
._16{width:15.073280pt;}
._1b{width:16.718080pt;}
._19{width:17.635840pt;}
._1a{width:18.804480pt;}
._2e{width:19.813760pt;}
._26{width:20.716800pt;}
._1f{width:22.408320pt;}
._1e{width:23.850880pt;}
._1c{width:25.555200pt;}
._1d{width:26.704000pt;}
._21{width:27.733760pt;}
._28{width:29.216000pt;}
._2c{width:30.119040pt;}
._25{width:31.022080pt;}
._18{width:32.137600pt;}
._29{width:33.784320pt;}
._24{width:35.325227pt;}
._23{width:36.227840pt;}
._2a{width:37.715200pt;}
._35{width:38.777600pt;}
._2d{width:39.999360pt;}
._36{width:41.108480pt;}
._33{width:42.699947pt;}
._30{width:43.717760pt;}
._39{width:44.886400pt;}
._32{width:45.789440pt;}
._27{width:47.276800pt;}
._31{width:48.976640pt;}
._38{width:50.145280pt;}
._42{width:51.095467pt;}
._3c{width:52.474240pt;}
._3a{width:53.651200pt;}
._3b{width:54.554240pt;}
._40{width:55.855360pt;}
._3d{width:57.528960pt;}
._3e{width:59.109760pt;}
._47{width:60.556800pt;}
._34{width:61.776640pt;}
._37{width:62.947200pt;}
._56{width:65.868800pt;}
._4e{width:67.280000pt;}
._2b{width:72.615040pt;}
._41{width:73.889920pt;}
._54{width:74.810240pt;}
._3f{width:82.814080pt;}
._51{width:87.010560pt;}
._52{width:88.026240pt;}
._4d{width:90.510080pt;}
._4c{width:91.578880pt;}
._43{width:97.475200pt;}
._57{width:100.184320pt;}
._45{width:105.974400pt;}
._44{width:106.921387pt;}
._50{width:115.330560pt;}
._4f{width:117.288960pt;}
._4b{width:118.192000pt;}
._46{width:123.466880pt;}
._53{width:142.347307pt;}
._4a{width:167.859200pt;}
._49{width:172.002560pt;}
._48{width:180.501760pt;}
._55{width:251.648640pt;}
._b{width:885.546667pt;}
.fs8{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:9.952000pt;}
.y182{bottom:17.413333pt;}
.y181{bottom:24.773333pt;}
.y180{bottom:32.133333pt;}
.ya{bottom:32.960000pt;}
.y17f{bottom:39.493333pt;}
.yea{bottom:46.240000pt;}
.y17e{bottom:46.853333pt;}
.y6{bottom:48.160000pt;}
.y17d{bottom:54.053333pt;}
.ye9{bottom:59.360000pt;}
.ye3{bottom:61.253333pt;}
.y17c{bottom:66.080000pt;}
.ye8{bottom:72.480000pt;}
.y17b{bottom:73.440000pt;}
.y170{bottom:73.952000pt;}
.ye2{bottom:74.533333pt;}
.y119{bottom:76.352000pt;}
.y17a{bottom:80.800000pt;}
.ydf{bottom:82.752000pt;}
.y184{bottom:84.032000pt;}
.y11d{bottom:84.352000pt;}
.ye7{bottom:85.760000pt;}
.y3a{bottom:88.032000pt;}
.y179{bottom:88.160000pt;}
.y16f{bottom:91.552000pt;}
.y109{bottom:93.952000pt;}
.y178{bottom:95.360000pt;}
.y154{bottom:99.552000pt;}
.yde{bottom:100.352000pt;}
.y11c{bottom:101.952000pt;}
.y38{bottom:105.632000pt;}
.y177{bottom:107.266667pt;}
.y16e{bottom:109.312000pt;}
.y108{bottom:111.712000pt;}
.y176{bottom:114.626667pt;}
.y153{bottom:117.312000pt;}
.ydd{bottom:117.952000pt;}
.y11b{bottom:119.712000pt;}
.y175{bottom:121.986667pt;}
.y37{bottom:123.232000pt;}
.y16d{bottom:126.912000pt;}
.y118{bottom:128.992000pt;}
.y107{bottom:129.312000pt;}
.y174{bottom:129.346667pt;}
.y152{bottom:134.906667pt;}
.y70{bottom:135.386667pt;}
.ydc{bottom:135.706667pt;}
.ye6{bottom:135.840000pt;}
.y173{bottom:136.706667pt;}
.y11a{bottom:137.306667pt;}
.y36{bottom:140.986667pt;}
.yec{bottom:143.066667pt;}
.y172{bottom:143.906667pt;}
.y16c{bottom:144.506667pt;}
.ya3{bottom:146.906667pt;}
.ye5{bottom:150.400000pt;}
.ye1{bottom:150.466667pt;}
.y151{bottom:152.506667pt;}
.y6f{bottom:152.986667pt;}
.ydb{bottom:153.306667pt;}
.y117{bottom:154.906667pt;}
.yeb{bottom:157.786667pt;}
.y35{bottom:158.586667pt;}
.y16b{bottom:162.106667pt;}
.ya2{bottom:164.506667pt;}
.ye4{bottom:165.120000pt;}
.y150{bottom:170.106667pt;}
.y6e{bottom:170.586667pt;}
.yda{bottom:170.906667pt;}
.y116{bottom:172.506667pt;}
.y34{bottom:176.186667pt;}
.y16a{bottom:179.706667pt;}
.ya1{bottom:182.106667pt;}
.y14f{bottom:187.706667pt;}
.y6d{bottom:188.186667pt;}
.yd9{bottom:188.506667pt;}
.y115{bottom:190.106667pt;}
.y33{bottom:193.786667pt;}
.y169{bottom:197.466667pt;}
.ya0{bottom:199.866667pt;}
.y14e{bottom:205.466667pt;}
.y6c{bottom:205.946667pt;}
.yd8{bottom:206.106667pt;}
.y114{bottom:207.866667pt;}
.y32{bottom:211.386667pt;}
.y168{bottom:215.066667pt;}
.y9f{bottom:217.466667pt;}
.y14d{bottom:223.066667pt;}
.y6b{bottom:223.546667pt;}
.yd7{bottom:223.866667pt;}
.y113{bottom:225.466667pt;}
.y31{bottom:229.146667pt;}
.y167{bottom:232.666667pt;}
.y9e{bottom:235.066667pt;}
.y14c{bottom:240.666667pt;}
.y6a{bottom:241.146667pt;}
.yd6{bottom:241.466667pt;}
.y112{bottom:243.066667pt;}
.y30{bottom:246.746667pt;}
.y166{bottom:250.266667pt;}
.y9d{bottom:252.666667pt;}
.y14b{bottom:258.266667pt;}
.y69{bottom:258.746667pt;}
.yd5{bottom:259.066667pt;}
.y111{bottom:260.666667pt;}
.y2f{bottom:264.346667pt;}
.y165{bottom:267.866667pt;}
.y9c{bottom:270.266667pt;}
.y14a{bottom:275.866667pt;}
.y68{bottom:276.346667pt;}
.yd4{bottom:276.666667pt;}
.y110{bottom:278.266667pt;}
.y2e{bottom:281.946667pt;}
.y164{bottom:285.626667pt;}
.y9b{bottom:288.026667pt;}
.y149{bottom:293.666667pt;}
.y67{bottom:294.146667pt;}
.yd3{bottom:294.306667pt;}
.y10f{bottom:296.066667pt;}
.y2d{bottom:299.586667pt;}
.y163{bottom:303.266667pt;}
.y9a{bottom:305.666667pt;}
.y148{bottom:311.266667pt;}
.y66{bottom:311.746667pt;}
.yd2{bottom:312.066667pt;}
.y10e{bottom:313.666667pt;}
.y2c{bottom:317.346667pt;}
.y162{bottom:320.866667pt;}
.y99{bottom:323.266667pt;}
.y147{bottom:328.866667pt;}
.y65{bottom:329.346667pt;}
.yd1{bottom:329.666667pt;}
.y10d{bottom:331.266667pt;}
.y2b{bottom:334.946667pt;}
.y161{bottom:338.466667pt;}
.y11e{bottom:340.546667pt;}
.y98{bottom:340.866667pt;}
.y146{bottom:346.466667pt;}
.y64{bottom:346.946667pt;}
.yd0{bottom:347.266667pt;}
.y10c{bottom:348.866667pt;}
.y2a{bottom:352.546667pt;}
.y160{bottom:356.066667pt;}
.y97{bottom:358.146667pt;}
.y106{bottom:358.466667pt;}
.y145{bottom:364.066667pt;}
.y63{bottom:364.546667pt;}
.ycf{bottom:364.866667pt;}
.y10b{bottom:366.466667pt;}
.y29{bottom:370.146667pt;}
.y15f{bottom:373.826667pt;}
.y96{bottom:375.906667pt;}
.y105{bottom:376.226667pt;}
.y144{bottom:381.826667pt;}
.y62{bottom:382.306667pt;}
.yce{bottom:382.466667pt;}
.y10a{bottom:384.226667pt;}
.y28{bottom:387.746667pt;}
.y15e{bottom:391.426667pt;}
.y104{bottom:393.826667pt;}
.y143{bottom:399.426667pt;}
.y61{bottom:399.906667pt;}
.ycd{bottom:400.226667pt;}
.y95{bottom:401.826667pt;}
.y27{bottom:405.506667pt;}
.y15d{bottom:409.026667pt;}
.y103{bottom:411.426667pt;}
.y142{bottom:417.026667pt;}
.y60{bottom:417.506667pt;}
.ycc{bottom:417.826667pt;}
.y94{bottom:419.426667pt;}
.y26{bottom:423.106667pt;}
.y15c{bottom:426.626667pt;}
.y102{bottom:429.026667pt;}
.y141{bottom:434.626667pt;}
.y5f{bottom:435.106667pt;}
.ycb{bottom:435.426667pt;}
.y93{bottom:437.026667pt;}
.y25{bottom:440.706667pt;}
.y15b{bottom:444.226667pt;}
.y101{bottom:446.626667pt;}
.y140{bottom:452.226667pt;}
.y5e{bottom:452.706667pt;}
.yca{bottom:453.026667pt;}
.y92{bottom:454.626667pt;}
.y24{bottom:457.986667pt;}
.y39{bottom:458.306667pt;}
.y15a{bottom:461.986667pt;}
.y100{bottom:464.386667pt;}
.y13f{bottom:469.986667pt;}
.y5d{bottom:470.466667pt;}
.yc9{bottom:470.626667pt;}
.y91{bottom:472.386667pt;}
.y23{bottom:475.906667pt;}
.y159{bottom:479.586667pt;}
.yff{bottom:481.986667pt;}
.y13e{bottom:487.586667pt;}
.y5c{bottom:487.746667pt;}
.yc8{bottom:488.386667pt;}
.y90{bottom:489.986667pt;}
.y22{bottom:495.586667pt;}
.y158{bottom:497.186667pt;}
.yfe{bottom:499.586667pt;}
.y13d{bottom:505.186667pt;}
.y5b{bottom:505.666667pt;}
.yc7{bottom:505.986667pt;}
.y8f{bottom:507.586667pt;}
.y21{bottom:513.186667pt;}
.y157{bottom:514.786667pt;}
.yfd{bottom:517.186667pt;}
.y13c{bottom:522.786667pt;}
.y5a{bottom:523.266667pt;}
.yc6{bottom:523.586667pt;}
.y8e{bottom:525.186667pt;}
.y20{bottom:530.973333pt;}
.y156{bottom:532.413333pt;}
.yfc{bottom:534.813333pt;}
.y13b{bottom:540.413333pt;}
.y59{bottom:540.893333pt;}
.yc5{bottom:541.213333pt;}
.y8d{bottom:542.813333pt;}
.y1f{bottom:548.573333pt;}
.y155{bottom:549.853333pt;}
.yfb{bottom:552.573333pt;}
.y13a{bottom:558.173333pt;}
.y58{bottom:558.653333pt;}
.yc4{bottom:558.813333pt;}
.y8c{bottom:560.573333pt;}
.y1e{bottom:566.173333pt;}
.yfa{bottom:570.173333pt;}
.y139{bottom:575.773333pt;}
.y57{bottom:576.253333pt;}
.yc3{bottom:576.573333pt;}
.y8b{bottom:578.173333pt;}
.y1d{bottom:583.773333pt;}
.yf9{bottom:587.773333pt;}
.y138{bottom:593.373333pt;}
.y56{bottom:593.853333pt;}
.yc2{bottom:594.173333pt;}
.y8a{bottom:595.773333pt;}
.y1c{bottom:601.373333pt;}
.yf8{bottom:605.373333pt;}
.y137{bottom:610.973333pt;}
.y55{bottom:611.453333pt;}
.yc1{bottom:611.773333pt;}
.y89{bottom:613.373333pt;}
.y1b{bottom:618.973333pt;}
.y11f{bottom:622.653333pt;}
.yf7{bottom:622.973333pt;}
.y136{bottom:628.573333pt;}
.y54{bottom:629.053333pt;}
.yc0{bottom:629.373333pt;}
.y88{bottom:630.973333pt;}
.y1a{bottom:636.733333pt;}
.yf6{bottom:640.733333pt;}
.y135{bottom:646.333333pt;}
.y53{bottom:646.813333pt;}
.ybf{bottom:646.973333pt;}
.y87{bottom:648.733333pt;}
.y19{bottom:654.333333pt;}
.yf5{bottom:658.333333pt;}
.y134{bottom:663.933333pt;}
.y52{bottom:664.413333pt;}
.ybe{bottom:664.733333pt;}
.y86{bottom:666.333333pt;}
.y18{bottom:671.933333pt;}
.yf4{bottom:675.933333pt;}
.y133{bottom:681.533333pt;}
.y51{bottom:682.013333pt;}
.ybd{bottom:682.333333pt;}
.y85{bottom:683.933333pt;}
.y17{bottom:689.533333pt;}
.yf3{bottom:693.533333pt;}
.y132{bottom:699.133333pt;}
.y50{bottom:699.613333pt;}
.ybc{bottom:699.933333pt;}
.y84{bottom:701.533333pt;}
.y16{bottom:707.133333pt;}
.yf2{bottom:711.133333pt;}
.y4f{bottom:717.213333pt;}
.ybb{bottom:717.533333pt;}
.y83{bottom:719.133333pt;}
.y15{bottom:724.893333pt;}
.yf1{bottom:728.893333pt;}
.y4e{bottom:734.973333pt;}
.yba{bottom:735.133333pt;}
.y82{bottom:736.893333pt;}
.y14{bottom:742.493333pt;}
.y131{bottom:745.213333pt;}
.yf0{bottom:746.493333pt;}
.y4d{bottom:752.573333pt;}
.yb9{bottom:752.893333pt;}
.y81{bottom:754.493333pt;}
.y13{bottom:760.093333pt;}
.y130{bottom:762.813333pt;}
.yef{bottom:764.093333pt;}
.y4c{bottom:770.213333pt;}
.yb8{bottom:770.533333pt;}
.y80{bottom:772.133333pt;}
.y12{bottom:777.733333pt;}
.y12f{bottom:780.453333pt;}
.yee{bottom:781.413333pt;}
.y126{bottom:781.733333pt;}
.y4b{bottom:787.813333pt;}
.yb7{bottom:788.133333pt;}
.y7f{bottom:789.733333pt;}
.y11{bottom:795.493333pt;}
.y12e{bottom:798.213333pt;}
.yed{bottom:799.013333pt;}
.ya9{bottom:799.173333pt;}
.y125{bottom:799.333333pt;}
.y4a{bottom:805.733333pt;}
.y183{bottom:807.013333pt;}
.y7e{bottom:807.333333pt;}
.y10{bottom:813.893333pt;}
.y12d{bottom:815.813333pt;}
.ya8{bottom:816.773333pt;}
.y124{bottom:817.093333pt;}
.yb6{bottom:823.333333pt;}
.y49{bottom:823.493333pt;}
.y7d{bottom:825.093333pt;}
.yf{bottom:829.093333pt;}
.y12c{bottom:833.413333pt;}
.ya7{bottom:834.373333pt;}
.y123{bottom:834.693333pt;}
.yb5{bottom:841.093333pt;}
.y48{bottom:841.253333pt;}
.y7c{bottom:842.693333pt;}
.ye{bottom:847.173333pt;}
.y12b{bottom:851.013333pt;}
.ya6{bottom:851.653333pt;}
.y122{bottom:852.293333pt;}
.yb4{bottom:858.693333pt;}
.y47{bottom:859.013333pt;}
.y7b{bottom:860.293333pt;}
.ye0{bottom:864.160000pt;}
.yd{bottom:864.933333pt;}
.ya5{bottom:866.533333pt;}
.y12a{bottom:868.293333pt;}
.y121{bottom:869.893333pt;}
.yb3{bottom:876.293333pt;}
.y46{bottom:876.773333pt;}
.y7a{bottom:877.893333pt;}
.y171{bottom:880.800000pt;}
.yc{bottom:883.173333pt;}
.y120{bottom:887.173333pt;}
.y129{bottom:887.493333pt;}
.yb2{bottom:893.893333pt;}
.y45{bottom:894.533333pt;}
.y79{bottom:895.493333pt;}
.y128{bottom:905.253333pt;}
.yb{bottom:911.333333pt;}
.yb1{bottom:911.493333pt;}
.y44{bottom:912.293333pt;}
.y78{bottom:913.253333pt;}
.y127{bottom:922.533333pt;}
.yb0{bottom:929.253333pt;}
.y43{bottom:930.053333pt;}
.y77{bottom:930.853333pt;}
.y5{bottom:937.413333pt;}
.yaf{bottom:946.853333pt;}
.y42{bottom:947.813333pt;}
.y76{bottom:948.453333pt;}
.yae{bottom:964.453333pt;}
.y41{bottom:965.573333pt;}
.y75{bottom:966.053333pt;}
.y4{bottom:967.173333pt;}
.yad{bottom:982.053333pt;}
.y40{bottom:983.333333pt;}
.y74{bottom:983.653333pt;}
.y3{bottom:994.693333pt;}
.yac{bottom:999.653333pt;}
.y3f{bottom:1001.093333pt;}
.y73{bottom:1001.413333pt;}
.yab{bottom:1017.440000pt;}
.y3e{bottom:1018.880000pt;}
.y72{bottom:1019.040000pt;}
.y2{bottom:1022.080000pt;}
.yaa{bottom:1035.040000pt;}
.y3d{bottom:1036.640000pt;}
.y1{bottom:1050.400000pt;}
.y185{bottom:1053.920000pt;}
.y71{bottom:1054.240000pt;}
.y3c{bottom:1054.400000pt;}
.ya4{bottom:1060.960000pt;}
.y3b{bottom:1080.160000pt;}
.h5{height:18.912000pt;}
.h14{height:26.735625pt;}
.h6{height:34.830000pt;}
.hf{height:37.479688pt;}
.h16{height:40.488438pt;}
.hc{height:42.084375pt;}
.ha{height:43.215000pt;}
.hd{height:47.621250pt;}
.h12{height:47.742188pt;}
.hb{height:52.134375pt;}
.h11{height:52.834688pt;}
.he{height:53.535000pt;}
.h15{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:60.057813pt;}
.h7{height:63.656250pt;}
.h2{height:69.660000pt;}
.h9{height:85.785000pt;}
.h13{height:166.400000pt;}
.h10{height:183.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w5{width:396.800000pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.400000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x20{left:57.599988pt;}
.x2b{left:71.999988pt;}
.x10{left:78.399994pt;}
.x12{left:81.055994pt;}
.x7{left:84.991988pt;}
.x11{left:88.895994pt;}
.xa{left:96.671988pt;}
.x4{left:105.152000pt;}
.xf{left:106.751988pt;}
.xc{left:118.111988pt;}
.x13{left:171.866661pt;}
.x24{left:172.986661pt;}
.x16{left:176.346661pt;}
.x26{left:178.266661pt;}
.x18{left:179.706661pt;}
.x25{left:180.666661pt;}
.x14{left:182.746661pt;}
.x29{left:194.399994pt;}
.x27{left:196.479994pt;}
.x23{left:198.626661pt;}
.x21{left:201.666661pt;}
.x17{left:202.906661pt;}
.x28{left:203.999994pt;}
.x22{left:205.346661pt;}
.x15{left:207.706661pt;}
.x2a{left:213.919994pt;}
.x1a{left:276.773327pt;}
.x19{left:286.533327pt;}
.x1d{left:291.333327pt;}
.x1b{left:295.013327pt;}
.x1c{left:300.293327pt;}
.x1e{left:314.213327pt;}
.x8{left:319.266655pt;}
.x9{left:337.666655pt;}
.x1f{left:360.706655pt;}
.xe{left:380.066655pt;}
.xd{left:381.021333pt;}
.xb{left:420.893322pt;}
.x2d{left:444.893322pt;}
.x2c{left:468.893322pt;}
.x5{left:482.461333pt;}
}




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