
    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_8b0517e0c1b9255f7f5820e8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_4ef6f4e6d15bf238f5514eff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_8c8ef324a82a9c262758d22d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_52bf3d8871c887d378c6ff57.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_0daf9bd3661449e0d398e877.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769531;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_d2c104dd06b6cd0df44e8df8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.128906;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_c49c34e92f780727c05f0912.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_fbfedb4f1371a90686238942.woff')format("woff");}.ffa{font-family:ffa;line-height:0.924805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_08fc6163a4378496f4a8ab85.woff')format("woff");}.ffb{font-family:ffb;line-height:1.111816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ec1837c01af5cfeea9593d63.woff')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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;}
.m1{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.v1{vertical-align:5.760000px;}
.v2{vertical-align:12.240000px;}
.lsf{letter-spacing:-0.876000px;}
.ls23{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.624000px;}
.ls11{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.335400px;}
.ls1e{letter-spacing:-0.322800px;}
.ls1c{letter-spacing:-0.198600px;}
.ls25{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.161400px;}
.lse{letter-spacing:-0.158400px;}
.ls22{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.136800px;}
.lsc{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls17{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.226200px;}
.ls28{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.305400px;}
.ls20{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.384600px;}
.ls1d{letter-spacing:0.397200px;}
.ls18{letter-spacing:0.398400px;}
.ls0{letter-spacing:0.561600px;}
.ls27{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.610560px;}
.ls26{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.666000px;}
.ls7{letter-spacing:0.839520px;}
.ls29{letter-spacing:1.098000px;}
.ls4{letter-spacing:1.104480px;}
.ls16{letter-spacing:3.444000px;}
.ls8{letter-spacing:849.264000px;}
.ls24{letter-spacing:849.288000px;}
.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;}
}
.wsd{word-spacing:-30.240000px;}
.ws20{word-spacing:-12.960000px;}
.ws21{word-spacing:-12.888000px;}
.ws1e{word-spacing:-12.690000px;}
.ws22{word-spacing:-12.564000px;}
.ws1a{word-spacing:-12.312000px;}
.ws1f{word-spacing:-12.240000px;}
.ws1c{word-spacing:-12.168000px;}
.ws1d{word-spacing:-12.150000px;}
.ws15{word-spacing:-11.655360px;}
.ws16{word-spacing:-10.998720px;}
.ws17{word-spacing:-9.918480px;}
.ws18{word-spacing:-9.198480px;}
.wsf{word-spacing:-9.170160px;}
.ws8{word-spacing:-7.560720px;}
.ws7{word-spacing:-7.279320px;}
.ws4{word-spacing:-7.150920px;}
.ws6{word-spacing:-7.120920px;}
.ws9{word-spacing:-6.990720px;}
.ws3{word-spacing:-6.894720px;}
.ws2{word-spacing:-6.785520px;}
.ws5{word-spacing:-6.736320px;}
.wsa{word-spacing:-6.559320px;}
.wsb{word-spacing:-6.480120px;}
.ws0{word-spacing:-6.270720px;}
.ws1b{word-spacing:-6.238080px;}
.ws11{word-spacing:-6.124560px;}
.ws1{word-spacing:-6.066720px;}
.ws14{word-spacing:-6.031560px;}
.wsc{word-spacing:-6.018720px;}
.ws12{word-spacing:-5.930160px;}
.ws13{word-spacing:-5.589360px;}
.ws10{word-spacing:-3.643920px;}
.wse{word-spacing:-0.054000px;}
.ws19{word-spacing:0.000000px;}
._15{margin-left:-4.294080px;}
._2{margin-left:-3.184560px;}
._1{margin-left:-1.964160px;}
._0{width:1.713600px;}
._6{width:2.727120px;}
._4{width:3.851760px;}
._d{width:5.644080px;}
._5{width:6.875280px;}
._14{width:8.027280px;}
._9{width:9.043920px;}
._3{width:10.103520px;}
._16{width:11.174160px;}
._c{width:13.221120px;}
._8{width:14.472000px;}
._17{width:15.984000px;}
._18{width:17.172000px;}
._19{width:18.360000px;}
._f{width:19.392480px;}
._b{width:20.887920px;}
._a{width:21.900960px;}
._e{width:22.907520px;}
._10{width:23.954400px;}
._13{width:25.650000px;}
._28{width:29.880000px;}
._29{width:31.302000px;}
._12{width:35.730720px;}
._11{width:37.482480px;}
._21{width:59.634000px;}
._22{width:61.706400px;}
._26{width:67.176000px;}
._24{width:99.972000px;}
._25{width:101.210400px;}
._7{width:106.851600px;}
._1c{width:128.404560px;}
._1f{width:139.644000px;}
._20{width:140.886000px;}
._2a{width:169.578000px;}
._2b{width:171.000000px;}
._1a{width:206.460000px;}
._1b{width:208.326000px;}
._1d{width:220.158000px;}
._1e{width:221.238000px;}
._23{width:308.124000px;}
._27{width:510.408000px;}
.fc1{color:rgb(216,110,204);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:15.120000px;}
.fs6{font-size:23.760000px;}
.fs9{font-size:27.360000px;}
.fs0{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.800000px;}
.y8{bottom:4.140000px;}
.y2{bottom:10.440000px;}
.y1{bottom:45.000000px;}
.y7{bottom:47.520000px;}
.y9a{bottom:55.980000px;}
.y6{bottom:56.700000px;}
.yea{bottom:57.420000px;}
.yc7{bottom:60.660000px;}
.y99{bottom:68.040000px;}
.y5{bottom:70.560000px;}
.y98{bottom:71.100000px;}
.ye9{bottom:72.900000px;}
.yc6{bottom:76.140000px;}
.y123{bottom:80.100000px;}
.y160{bottom:82.260000px;}
.y97{bottom:82.440000px;}
.ye8{bottom:88.380000px;}
.y183{bottom:89.460000px;}
.yc5{bottom:91.620000px;}
.y69{bottom:95.580000px;}
.y15f{bottom:97.740000px;}
.y119{bottom:101.340000px;}
.ye7{bottom:103.860000px;}
.yc4{bottom:107.100000px;}
.y96{bottom:110.340000px;}
.y68{bottom:111.060000px;}
.y182{bottom:114.120000px;}
.ye6{bottom:119.340000px;}
.y141{bottom:120.060000px;}
.y15e{bottom:122.220000px;}
.yc3{bottom:122.580000px;}
.y95{bottom:125.820000px;}
.y67{bottom:126.540000px;}
.y181{bottom:129.600000px;}
.ye5{bottom:134.820000px;}
.y122{bottom:135.540000px;}
.y39{bottom:137.340000px;}
.y15d{bottom:137.700000px;}
.yc2{bottom:138.060000px;}
.y94{bottom:141.300000px;}
.yfd{bottom:142.020000px;}
.y140{bottom:144.540000px;}
.y180{bottom:145.080000px;}
.y66{bottom:151.020000px;}
.y38{bottom:153.000000px;}
.y136{bottom:154.260000px;}
.y118{bottom:156.780000px;}
.yfc{bottom:157.500000px;}
.ye4{bottom:159.300000px;}
.y13f{bottom:160.020000px;}
.y15c{bottom:162.360000px;}
.yc1{bottom:162.540000px;}
.y93{bottom:165.780000px;}
.y37{bottom:166.320000px;}
.y65{bottom:166.500000px;}
.y17f{bottom:169.590000px;}
.y117{bottom:172.290000px;}
.ye3{bottom:174.810000px;}
.y13e{bottom:175.530000px;}
.y15b{bottom:177.870000px;}
.yc0{bottom:178.050000px;}
.y135{bottom:178.770000px;}
.y92{bottom:181.290000px;}
.y64{bottom:182.010000px;}
.y17e{bottom:185.070000px;}
.y189{bottom:186.870000px;}
.y116{bottom:187.770000px;}
.ye2{bottom:190.290000px;}
.y13d{bottom:191.010000px;}
.ybf{bottom:193.530000px;}
.y91{bottom:196.770000px;}
.y36{bottom:197.130000px;}
.yfb{bottom:197.490000px;}
.y15a{bottom:202.350000px;}
.y115{bottom:203.250000px;}
.ye1{bottom:205.770000px;}
.y63{bottom:206.490000px;}
.ybe{bottom:209.010000px;}
.y17d{bottom:209.550000px;}
.y35{bottom:211.890000px;}
.y90{bottom:212.250000px;}
.yfa{bottom:213.150000px;}
.y114{bottom:218.730000px;}
.y62{bottom:222.150000px;}
.ybd{bottom:224.490000px;}
.y34{bottom:226.830000px;}
.yf9{bottom:228.630000px;}
.ye0{bottom:230.250000px;}
.y17c{bottom:234.030000px;}
.y113{bottom:234.390000px;}
.y8f{bottom:236.730000px;}
.y121{bottom:237.630000px;}
.ybc{bottom:240.150000px;}
.y33{bottom:241.590000px;}
.y159{bottom:242.310000px;}
.y134{bottom:243.390000px;}
.ydf{bottom:245.730000px;}
.y61{bottom:246.630000px;}
.y17b{bottom:249.510000px;}
.y8e{bottom:252.390000px;}
.yf8{bottom:253.110000px;}
.ybb{bottom:255.630000px;}
.y32{bottom:256.530000px;}
.y112{bottom:258.870000px;}
.yde{bottom:261.390000px;}
.y60{bottom:262.110000px;}
.y158{bottom:266.790000px;}
.y8d{bottom:267.870000px;}
.yf7{bottom:268.590000px;}
.yba{bottom:271.110000px;}
.y31{bottom:271.290000px;}
.y17a{bottom:273.990000px;}
.y111{bottom:274.350000px;}
.ydd{bottom:276.870000px;}
.y5f{bottom:277.590000px;}
.y157{bottom:282.270000px;}
.yf6{bottom:284.070000px;}
.y30{bottom:286.230000px;}
.yb9{bottom:286.590000px;}
.y110{bottom:289.830000px;}
.y8c{bottom:292.350000px;}
.y5e{bottom:293.070000px;}
.y156{bottom:297.750000px;}
.y179{bottom:298.470000px;}
.yf5{bottom:299.550000px;}
.y2f{bottom:300.990000px;}
.y8b{bottom:307.830000px;}
.y5d{bottom:308.550000px;}
.yb8{bottom:311.070000px;}
.y178{bottom:313.950000px;}
.y10f{bottom:314.310000px;}
.y2e{bottom:315.930000px;}
.ydc{bottom:316.830000px;}
.y155{bottom:322.230000px;}
.y8a{bottom:323.310000px;}
.y5c{bottom:324.030000px;}
.yb7{bottom:326.550000px;}
.y177{bottom:329.430000px;}
.y10e{bottom:329.790000px;}
.y2d{bottom:330.870000px;}
.ydb{bottom:332.310000px;}
.y13c{bottom:333.030000px;}
.y154{bottom:337.710000px;}
.y89{bottom:338.790000px;}
.y5b{bottom:339.510000px;}
.yb6{bottom:342.030000px;}
.y10d{bottom:345.270000px;}
.y2c{bottom:345.675000px;}
.yda{bottom:347.835000px;}
.y13b{bottom:348.555000px;}
.y176{bottom:353.955000px;}
.y88{bottom:354.315000px;}
.y5a{bottom:355.035000px;}
.yb5{bottom:357.555000px;}
.y2b{bottom:360.615000px;}
.y10c{bottom:360.795000px;}
.y153{bottom:362.235000px;}
.yd9{bottom:363.315000px;}
.y13a{bottom:364.035000px;}
.y175{bottom:369.435000px;}
.y87{bottom:369.795000px;}
.y59{bottom:370.515000px;}
.yb4{bottom:373.035000px;}
.y2a{bottom:375.375000px;}
.y10b{bottom:376.275000px;}
.y188{bottom:377.715000px;}
.yd8{bottom:378.795000px;}
.y120{bottom:379.515000px;}
.y86{bottom:385.275000px;}
.y58{bottom:385.995000px;}
.y152{bottom:386.715000px;}
.yb3{bottom:388.515000px;}
.y29{bottom:390.315000px;}
.y10a{bottom:391.755000px;}
.y174{bottom:393.915000px;}
.yd7{bottom:394.275000px;}
.y11f{bottom:394.995000px;}
.y133{bottom:400.755000px;}
.y57{bottom:401.475000px;}
.y187{bottom:402.195000px;}
.yb2{bottom:403.995000px;}
.y28{bottom:405.075000px;}
.y109{bottom:407.235000px;}
.y173{bottom:409.395000px;}
.y85{bottom:409.755000px;}
.yf4{bottom:410.475000px;}
.y151{bottom:411.195000px;}
.y132{bottom:416.235000px;}
.y56{bottom:416.955000px;}
.y186{bottom:417.675000px;}
.yb1{bottom:419.475000px;}
.y27{bottom:420.015000px;}
.y108{bottom:422.715000px;}
.yf3{bottom:425.955000px;}
.y150{bottom:426.675000px;}
.y131{bottom:431.715000px;}
.y172{bottom:434.055000px;}
.y84{bottom:434.235000px;}
.y26{bottom:434.775000px;}
.yb0{bottom:434.955000px;}
.y55{bottom:441.435000px;}
.y185{bottom:442.155000px;}
.y107{bottom:447.195000px;}
.y171{bottom:449.535000px;}
.y25{bottom:449.715000px;}
.y11e{bottom:450.435000px;}
.y14f{bottom:451.155000px;}
.y54{bottom:456.915000px;}
.y83{bottom:458.715000px;}
.yaf{bottom:459.435000px;}
.y106{bottom:462.675000px;}
.y24{bottom:464.655000px;}
.yd6{bottom:465.195000px;}
.y11d{bottom:465.915000px;}
.y14e{bottom:466.635000px;}
.y53{bottom:472.395000px;}
.y170{bottom:474.015000px;}
.y82{bottom:474.195000px;}
.yae{bottom:474.915000px;}
.y130{bottom:478.155000px;}
.y23{bottom:479.415000px;}
.yd5{bottom:480.675000px;}
.yf2{bottom:481.395000px;}
.y105{bottom:487.155000px;}
.y52{bottom:488.055000px;}
.y16f{bottom:489.495000px;}
.y81{bottom:489.675000px;}
.yad{bottom:490.395000px;}
.y14d{bottom:491.115000px;}
.y12f{bottom:493.635000px;}
.y22{bottom:494.355000px;}
.yd4{bottom:496.155000px;}
.yf1{bottom:497.055000px;}
.y104{bottom:502.635000px;}
.y51{bottom:503.535000px;}
.y80{bottom:505.155000px;}
.y139{bottom:506.055000px;}
.y14c{bottom:506.775000px;}
.y21{bottom:509.115000px;}
.yd3{bottom:511.635000px;}
.yf0{bottom:512.535000px;}
.y16e{bottom:513.975000px;}
.yac{bottom:515.055000px;}
.y103{bottom:518.115000px;}
.y7f{bottom:520.635000px;}
.y138{bottom:521.535000px;}
.y20{bottom:524.085000px;}
.y50{bottom:528.045000px;}
.y16d{bottom:529.485000px;}
.yab{bottom:530.565000px;}
.y14b{bottom:531.285000px;}
.y102{bottom:533.805000px;}
.y7e{bottom:536.145000px;}
.y137{bottom:537.045000px;}
.y1f{bottom:538.845000px;}
.y4f{bottom:543.525000px;}
.yaa{bottom:546.045000px;}
.y184{bottom:546.765000px;}
.y101{bottom:549.285000px;}
.y7d{bottom:551.805000px;}
.yef{bottom:552.525000px;}
.y1e{bottom:553.785000px;}
.y16c{bottom:553.965000px;}
.y14a{bottom:555.765000px;}
.y4e{bottom:559.005000px;}
.ya9{bottom:561.525000px;}
.y12e{bottom:564.765000px;}
.y7c{bottom:567.285000px;}
.yee{bottom:568.005000px;}
.y1d{bottom:568.545000px;}
.y16b{bottom:569.445000px;}
.y149{bottom:571.245000px;}
.y100{bottom:573.765000px;}
.y4d{bottom:574.485000px;}
.ya8{bottom:577.005000px;}
.y12d{bottom:580.245000px;}
.yd2{bottom:582.765000px;}
.yed{bottom:583.485000px;}
.y1c{bottom:583.665000px;}
.y148{bottom:586.725000px;}
.y7b{bottom:591.765000px;}
.ya7{bottom:592.485000px;}
.y16a{bottom:593.925000px;}
.y12c{bottom:595.725000px;}
.yd1{bottom:598.245000px;}
.y1b{bottom:598.785000px;}
.y4c{bottom:598.965000px;}
.y7a{bottom:607.245000px;}
.ya6{bottom:607.965000px;}
.y12b{bottom:611.205000px;}
.y1a{bottom:611.925000px;}
.yd0{bottom:613.725000px;}
.y4b{bottom:614.445000px;}
.y169{bottom:618.405000px;}
.y79{bottom:622.725000px;}
.ya5{bottom:623.445000px;}
.y19{bottom:624.885000px;}
.y147{bottom:626.685000px;}
.ycf{bottom:629.205000px;}
.y4a{bottom:629.925000px;}
.y12a{bottom:635.685000px;}
.y18{bottom:638.025000px;}
.yff{bottom:638.205000px;}
.yec{bottom:638.925000px;}
.y168{bottom:642.885000px;}
.yce{bottom:644.685000px;}
.y49{bottom:645.405000px;}
.y78{bottom:647.205000px;}
.ya4{bottom:647.925000px;}
.y17{bottom:650.985000px;}
.y129{bottom:651.165000px;}
.yfe{bottom:653.685000px;}
.yeb{bottom:654.405000px;}
.y167{bottom:658.365000px;}
.y77{bottom:662.685000px;}
.ya3{bottom:663.405000px;}
.y16{bottom:663.945000px;}
.y128{bottom:666.645000px;}
.ycd{bottom:669.165000px;}
.y48{bottom:669.885000px;}
.y166{bottom:673.845000px;}
.y15{bottom:677.445000px;}
.y76{bottom:678.165000px;}
.ya2{bottom:678.885000px;}
.ycc{bottom:684.645000px;}
.y47{bottom:685.365000px;}
.y127{bottom:691.125000px;}
.y14{bottom:693.465000px;}
.y75{bottom:693.645000px;}
.ya1{bottom:694.365000px;}
.y165{bottom:698.370000px;}
.y46{bottom:700.890000px;}
.y146{bottom:706.650000px;}
.y74{bottom:709.170000px;}
.ya0{bottom:709.890000px;}
.y13{bottom:711.870000px;}
.y164{bottom:713.850000px;}
.y126{bottom:715.650000px;}
.y45{bottom:716.370000px;}
.ycb{bottom:724.650000px;}
.y9f{bottom:725.370000px;}
.y12{bottom:729.870000px;}
.y145{bottom:731.130000px;}
.y11c{bottom:731.850000px;}
.y72{bottom:733.650000px;}
.y73{bottom:737.430000px;}
.y163{bottom:738.330000px;}
.yca{bottom:740.130000px;}
.y44{bottom:740.850000px;}
.y144{bottom:746.610000px;}
.y11b{bottom:747.330000px;}
.y71{bottom:749.130000px;}
.y162{bottom:753.810000px;}
.yc9{bottom:755.610000px;}
.y43{bottom:756.330000px;}
.y143{bottom:762.090000px;}
.y11a{bottom:762.810000px;}
.y11{bottom:763.710000px;}
.y70{bottom:764.610000px;}
.yc8{bottom:771.090000px;}
.y42{bottom:771.810000px;}
.y161{bottom:778.470000px;}
.y6f{bottom:780.090000px;}
.y10{bottom:780.450000px;}
.y9e{bottom:780.810000px;}
.y125{bottom:786.570000px;}
.y41{bottom:787.470000px;}
.yf{bottom:789.270000px;}
.y6e{bottom:795.570000px;}
.y9d{bottom:796.470000px;}
.ye{bottom:797.910000px;}
.y124{bottom:802.050000px;}
.y40{bottom:802.950000px;}
.yd{bottom:806.730000px;}
.y6d{bottom:811.050000px;}
.y9c{bottom:811.950000px;}
.yc{bottom:815.550000px;}
.y142{bottom:817.710000px;}
.y3f{bottom:818.430000px;}
.yb{bottom:824.370000px;}
.y6c{bottom:826.710000px;}
.y9b{bottom:827.430000px;}
.ya{bottom:837.870000px;}
.y6b{bottom:842.190000px;}
.y3e{bottom:842.910000px;}
.y6a{bottom:857.670000px;}
.y3d{bottom:857.850000px;}
.y9{bottom:867.570000px;}
.y3c{bottom:869.730000px;}
.y3b{bottom:881.820000px;}
.y4{bottom:887.040000px;}
.y3a{bottom:893.880000px;}
.h7{height:11.880000px;}
.h2{height:17.460000px;}
.hb{height:21.671719px;}
.h1b{height:24.661406px;}
.h3{height:27.257344px;}
.h16{height:28.995469px;}
.h8{height:30.077578px;}
.h15{height:30.402422px;}
.h19{height:32.158828px;}
.h1a{height:32.449219px;}
.h10{height:33.023320px;}
.h13{height:35.120039px;}
.h11{height:37.641094px;}
.he{height:39.313477px;}
.hf{height:40.886016px;}
.h6{height:41.535703px;}
.h14{height:43.481953px;}
.h12{height:46.627031px;}
.h9{height:48.224531px;}
.h18{height:48.673828px;}
.h17{height:49.253906px;}
.h5{height:49.992188px;}
.hd{height:52.417969px;}
.hc{height:59.706562px;}
.h4{height:65.884219px;}
.ha{height:98.507812px;}
.h0{height:956.880000px;}
.h1{height:957.000000px;}
.w4{width:57.816000px;}
.w2{width:389.085000px;}
.w1{width:639.000000px;}
.w5{width:639.179981px;}
.w3{width:639.179990px;}
.w0{width:639.180000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x2{left:16.020000px;}
.x11{left:53.999990px;}
.x1b{left:57.095990px;}
.x4{left:67.539000px;}
.xa{left:75.455990px;}
.x9{left:117.935990px;}
.x1{left:125.136000px;}
.xb{left:149.795990px;}
.x10{left:155.009990px;}
.xf{left:229.574990px;}
.xd{left:240.734990px;}
.xc{left:248.114990px;}
.x1a{left:270.074990px;}
.xe{left:282.854990px;}
.x18{left:293.474981px;}
.x19{left:297.614990px;}
.x14{left:300.524990px;}
.x16{left:306.824990px;}
.x6{left:319.604990px;}
.x13{left:330.944990px;}
.x3{left:338.694000px;}
.x12{left:429.449990px;}
.x17{left:454.649990px;}
.x7{left:527.010000px;}
.x1c{left:575.819990px;}
.x15{left:580.499990px;}
.x5{left:585.359990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.120000pt;}
.v2{vertical-align:10.880000pt;}
.lsf{letter-spacing:-0.778667pt;}
.ls23{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.298133pt;}
.ls1e{letter-spacing:-0.286933pt;}
.ls1c{letter-spacing:-0.176533pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.143467pt;}
.lse{letter-spacing:-0.140800pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.121600pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls17{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.201067pt;}
.ls28{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls20{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.341867pt;}
.ls1d{letter-spacing:0.353067pt;}
.ls18{letter-spacing:0.354133pt;}
.ls0{letter-spacing:0.499200pt;}
.ls27{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.542720pt;}
.ls26{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls7{letter-spacing:0.746240pt;}
.ls29{letter-spacing:0.976000pt;}
.ls4{letter-spacing:0.981760pt;}
.ls16{letter-spacing:3.061333pt;}
.ls8{letter-spacing:754.901333pt;}
.ls24{letter-spacing:754.922667pt;}
.wsd{word-spacing:-26.880000pt;}
.ws20{word-spacing:-11.520000pt;}
.ws21{word-spacing:-11.456000pt;}
.ws1e{word-spacing:-11.280000pt;}
.ws22{word-spacing:-11.168000pt;}
.ws1a{word-spacing:-10.944000pt;}
.ws1f{word-spacing:-10.880000pt;}
.ws1c{word-spacing:-10.816000pt;}
.ws1d{word-spacing:-10.800000pt;}
.ws15{word-spacing:-10.360320pt;}
.ws16{word-spacing:-9.776640pt;}
.ws17{word-spacing:-8.816427pt;}
.ws18{word-spacing:-8.176427pt;}
.wsf{word-spacing:-8.151253pt;}
.ws8{word-spacing:-6.720640pt;}
.ws7{word-spacing:-6.470507pt;}
.ws4{word-spacing:-6.356373pt;}
.ws6{word-spacing:-6.329707pt;}
.ws9{word-spacing:-6.213973pt;}
.ws3{word-spacing:-6.128640pt;}
.ws2{word-spacing:-6.031573pt;}
.ws5{word-spacing:-5.987840pt;}
.wsa{word-spacing:-5.830507pt;}
.wsb{word-spacing:-5.760107pt;}
.ws0{word-spacing:-5.573973pt;}
.ws1b{word-spacing:-5.544960pt;}
.ws11{word-spacing:-5.444053pt;}
.ws1{word-spacing:-5.392640pt;}
.ws14{word-spacing:-5.361387pt;}
.wsc{word-spacing:-5.349973pt;}
.ws12{word-spacing:-5.271253pt;}
.ws13{word-spacing:-4.968320pt;}
.ws10{word-spacing:-3.239040pt;}
.wse{word-spacing:-0.048000pt;}
.ws19{word-spacing:0.000000pt;}
._15{margin-left:-3.816960pt;}
._2{margin-left:-2.830720pt;}
._1{margin-left:-1.745920pt;}
._0{width:1.523200pt;}
._6{width:2.424107pt;}
._4{width:3.423787pt;}
._d{width:5.016960pt;}
._5{width:6.111360pt;}
._14{width:7.135360pt;}
._9{width:8.039040pt;}
._3{width:8.980907pt;}
._16{width:9.932587pt;}
._c{width:11.752107pt;}
._8{width:12.864000pt;}
._17{width:14.208000pt;}
._18{width:15.264000pt;}
._19{width:16.320000pt;}
._f{width:17.237760pt;}
._b{width:18.567040pt;}
._a{width:19.467520pt;}
._e{width:20.362240pt;}
._10{width:21.292800pt;}
._13{width:22.800000pt;}
._28{width:26.560000pt;}
._29{width:27.824000pt;}
._12{width:31.760640pt;}
._11{width:33.317760pt;}
._21{width:53.008000pt;}
._22{width:54.850133pt;}
._26{width:59.712000pt;}
._24{width:88.864000pt;}
._25{width:89.964800pt;}
._7{width:94.979200pt;}
._1c{width:114.137387pt;}
._1f{width:124.128000pt;}
._20{width:125.232000pt;}
._2a{width:150.736000pt;}
._2b{width:152.000000pt;}
._1a{width:183.520000pt;}
._1b{width:185.178667pt;}
._1d{width:195.696000pt;}
._1e{width:196.656000pt;}
._23{width:273.888000pt;}
._27{width:453.696000pt;}
.fs7{font-size:13.440000pt;}
.fs6{font-size:21.120000pt;}
.fs9{font-size:24.320000pt;}
.fs0{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.600000pt;}
.y8{bottom:3.680000pt;}
.y2{bottom:9.280000pt;}
.y1{bottom:40.000000pt;}
.y7{bottom:42.240000pt;}
.y9a{bottom:49.760000pt;}
.y6{bottom:50.400000pt;}
.yea{bottom:51.040000pt;}
.yc7{bottom:53.920000pt;}
.y99{bottom:60.480000pt;}
.y5{bottom:62.720000pt;}
.y98{bottom:63.200000pt;}
.ye9{bottom:64.800000pt;}
.yc6{bottom:67.680000pt;}
.y123{bottom:71.200000pt;}
.y160{bottom:73.120000pt;}
.y97{bottom:73.280000pt;}
.ye8{bottom:78.560000pt;}
.y183{bottom:79.520000pt;}
.yc5{bottom:81.440000pt;}
.y69{bottom:84.960000pt;}
.y15f{bottom:86.880000pt;}
.y119{bottom:90.080000pt;}
.ye7{bottom:92.320000pt;}
.yc4{bottom:95.200000pt;}
.y96{bottom:98.080000pt;}
.y68{bottom:98.720000pt;}
.y182{bottom:101.440000pt;}
.ye6{bottom:106.080000pt;}
.y141{bottom:106.720000pt;}
.y15e{bottom:108.640000pt;}
.yc3{bottom:108.960000pt;}
.y95{bottom:111.840000pt;}
.y67{bottom:112.480000pt;}
.y181{bottom:115.200000pt;}
.ye5{bottom:119.840000pt;}
.y122{bottom:120.480000pt;}
.y39{bottom:122.080000pt;}
.y15d{bottom:122.400000pt;}
.yc2{bottom:122.720000pt;}
.y94{bottom:125.600000pt;}
.yfd{bottom:126.240000pt;}
.y140{bottom:128.480000pt;}
.y180{bottom:128.960000pt;}
.y66{bottom:134.240000pt;}
.y38{bottom:136.000000pt;}
.y136{bottom:137.120000pt;}
.y118{bottom:139.360000pt;}
.yfc{bottom:140.000000pt;}
.ye4{bottom:141.600000pt;}
.y13f{bottom:142.240000pt;}
.y15c{bottom:144.320000pt;}
.yc1{bottom:144.480000pt;}
.y93{bottom:147.360000pt;}
.y37{bottom:147.840000pt;}
.y65{bottom:148.000000pt;}
.y17f{bottom:150.746667pt;}
.y117{bottom:153.146667pt;}
.ye3{bottom:155.386667pt;}
.y13e{bottom:156.026667pt;}
.y15b{bottom:158.106667pt;}
.yc0{bottom:158.266667pt;}
.y135{bottom:158.906667pt;}
.y92{bottom:161.146667pt;}
.y64{bottom:161.786667pt;}
.y17e{bottom:164.506667pt;}
.y189{bottom:166.106667pt;}
.y116{bottom:166.906667pt;}
.ye2{bottom:169.146667pt;}
.y13d{bottom:169.786667pt;}
.ybf{bottom:172.026667pt;}
.y91{bottom:174.906667pt;}
.y36{bottom:175.226667pt;}
.yfb{bottom:175.546667pt;}
.y15a{bottom:179.866667pt;}
.y115{bottom:180.666667pt;}
.ye1{bottom:182.906667pt;}
.y63{bottom:183.546667pt;}
.ybe{bottom:185.786667pt;}
.y17d{bottom:186.266667pt;}
.y35{bottom:188.346667pt;}
.y90{bottom:188.666667pt;}
.yfa{bottom:189.466667pt;}
.y114{bottom:194.426667pt;}
.y62{bottom:197.466667pt;}
.ybd{bottom:199.546667pt;}
.y34{bottom:201.626667pt;}
.yf9{bottom:203.226667pt;}
.ye0{bottom:204.666667pt;}
.y17c{bottom:208.026667pt;}
.y113{bottom:208.346667pt;}
.y8f{bottom:210.426667pt;}
.y121{bottom:211.226667pt;}
.ybc{bottom:213.466667pt;}
.y33{bottom:214.746667pt;}
.y159{bottom:215.386667pt;}
.y134{bottom:216.346667pt;}
.ydf{bottom:218.426667pt;}
.y61{bottom:219.226667pt;}
.y17b{bottom:221.786667pt;}
.y8e{bottom:224.346667pt;}
.yf8{bottom:224.986667pt;}
.ybb{bottom:227.226667pt;}
.y32{bottom:228.026667pt;}
.y112{bottom:230.106667pt;}
.yde{bottom:232.346667pt;}
.y60{bottom:232.986667pt;}
.y158{bottom:237.146667pt;}
.y8d{bottom:238.106667pt;}
.yf7{bottom:238.746667pt;}
.yba{bottom:240.986667pt;}
.y31{bottom:241.146667pt;}
.y17a{bottom:243.546667pt;}
.y111{bottom:243.866667pt;}
.ydd{bottom:246.106667pt;}
.y5f{bottom:246.746667pt;}
.y157{bottom:250.906667pt;}
.yf6{bottom:252.506667pt;}
.y30{bottom:254.426667pt;}
.yb9{bottom:254.746667pt;}
.y110{bottom:257.626667pt;}
.y8c{bottom:259.866667pt;}
.y5e{bottom:260.506667pt;}
.y156{bottom:264.666667pt;}
.y179{bottom:265.306667pt;}
.yf5{bottom:266.266667pt;}
.y2f{bottom:267.546667pt;}
.y8b{bottom:273.626667pt;}
.y5d{bottom:274.266667pt;}
.yb8{bottom:276.506667pt;}
.y178{bottom:279.066667pt;}
.y10f{bottom:279.386667pt;}
.y2e{bottom:280.826667pt;}
.ydc{bottom:281.626667pt;}
.y155{bottom:286.426667pt;}
.y8a{bottom:287.386667pt;}
.y5c{bottom:288.026667pt;}
.yb7{bottom:290.266667pt;}
.y177{bottom:292.826667pt;}
.y10e{bottom:293.146667pt;}
.y2d{bottom:294.106667pt;}
.ydb{bottom:295.386667pt;}
.y13c{bottom:296.026667pt;}
.y154{bottom:300.186667pt;}
.y89{bottom:301.146667pt;}
.y5b{bottom:301.786667pt;}
.yb6{bottom:304.026667pt;}
.y10d{bottom:306.906667pt;}
.y2c{bottom:307.266667pt;}
.yda{bottom:309.186667pt;}
.y13b{bottom:309.826667pt;}
.y176{bottom:314.626667pt;}
.y88{bottom:314.946667pt;}
.y5a{bottom:315.586667pt;}
.yb5{bottom:317.826667pt;}
.y2b{bottom:320.546667pt;}
.y10c{bottom:320.706667pt;}
.y153{bottom:321.986667pt;}
.yd9{bottom:322.946667pt;}
.y13a{bottom:323.586667pt;}
.y175{bottom:328.386667pt;}
.y87{bottom:328.706667pt;}
.y59{bottom:329.346667pt;}
.yb4{bottom:331.586667pt;}
.y2a{bottom:333.666667pt;}
.y10b{bottom:334.466667pt;}
.y188{bottom:335.746667pt;}
.yd8{bottom:336.706667pt;}
.y120{bottom:337.346667pt;}
.y86{bottom:342.466667pt;}
.y58{bottom:343.106667pt;}
.y152{bottom:343.746667pt;}
.yb3{bottom:345.346667pt;}
.y29{bottom:346.946667pt;}
.y10a{bottom:348.226667pt;}
.y174{bottom:350.146667pt;}
.yd7{bottom:350.466667pt;}
.y11f{bottom:351.106667pt;}
.y133{bottom:356.226667pt;}
.y57{bottom:356.866667pt;}
.y187{bottom:357.506667pt;}
.yb2{bottom:359.106667pt;}
.y28{bottom:360.066667pt;}
.y109{bottom:361.986667pt;}
.y173{bottom:363.906667pt;}
.y85{bottom:364.226667pt;}
.yf4{bottom:364.866667pt;}
.y151{bottom:365.506667pt;}
.y132{bottom:369.986667pt;}
.y56{bottom:370.626667pt;}
.y186{bottom:371.266667pt;}
.yb1{bottom:372.866667pt;}
.y27{bottom:373.346667pt;}
.y108{bottom:375.746667pt;}
.yf3{bottom:378.626667pt;}
.y150{bottom:379.266667pt;}
.y131{bottom:383.746667pt;}
.y172{bottom:385.826667pt;}
.y84{bottom:385.986667pt;}
.y26{bottom:386.466667pt;}
.yb0{bottom:386.626667pt;}
.y55{bottom:392.386667pt;}
.y185{bottom:393.026667pt;}
.y107{bottom:397.506667pt;}
.y171{bottom:399.586667pt;}
.y25{bottom:399.746667pt;}
.y11e{bottom:400.386667pt;}
.y14f{bottom:401.026667pt;}
.y54{bottom:406.146667pt;}
.y83{bottom:407.746667pt;}
.yaf{bottom:408.386667pt;}
.y106{bottom:411.266667pt;}
.y24{bottom:413.026667pt;}
.yd6{bottom:413.506667pt;}
.y11d{bottom:414.146667pt;}
.y14e{bottom:414.786667pt;}
.y53{bottom:419.906667pt;}
.y170{bottom:421.346667pt;}
.y82{bottom:421.506667pt;}
.yae{bottom:422.146667pt;}
.y130{bottom:425.026667pt;}
.y23{bottom:426.146667pt;}
.yd5{bottom:427.266667pt;}
.yf2{bottom:427.906667pt;}
.y105{bottom:433.026667pt;}
.y52{bottom:433.826667pt;}
.y16f{bottom:435.106667pt;}
.y81{bottom:435.266667pt;}
.yad{bottom:435.906667pt;}
.y14d{bottom:436.546667pt;}
.y12f{bottom:438.786667pt;}
.y22{bottom:439.426667pt;}
.yd4{bottom:441.026667pt;}
.yf1{bottom:441.826667pt;}
.y104{bottom:446.786667pt;}
.y51{bottom:447.586667pt;}
.y80{bottom:449.026667pt;}
.y139{bottom:449.826667pt;}
.y14c{bottom:450.466667pt;}
.y21{bottom:452.546667pt;}
.yd3{bottom:454.786667pt;}
.yf0{bottom:455.586667pt;}
.y16e{bottom:456.866667pt;}
.yac{bottom:457.826667pt;}
.y103{bottom:460.546667pt;}
.y7f{bottom:462.786667pt;}
.y138{bottom:463.586667pt;}
.y20{bottom:465.853333pt;}
.y50{bottom:469.373333pt;}
.y16d{bottom:470.653333pt;}
.yab{bottom:471.613333pt;}
.y14b{bottom:472.253333pt;}
.y102{bottom:474.493333pt;}
.y7e{bottom:476.573333pt;}
.y137{bottom:477.373333pt;}
.y1f{bottom:478.973333pt;}
.y4f{bottom:483.133333pt;}
.yaa{bottom:485.373333pt;}
.y184{bottom:486.013333pt;}
.y101{bottom:488.253333pt;}
.y7d{bottom:490.493333pt;}
.yef{bottom:491.133333pt;}
.y1e{bottom:492.253333pt;}
.y16c{bottom:492.413333pt;}
.y14a{bottom:494.013333pt;}
.y4e{bottom:496.893333pt;}
.ya9{bottom:499.133333pt;}
.y12e{bottom:502.013333pt;}
.y7c{bottom:504.253333pt;}
.yee{bottom:504.893333pt;}
.y1d{bottom:505.373333pt;}
.y16b{bottom:506.173333pt;}
.y149{bottom:507.773333pt;}
.y100{bottom:510.013333pt;}
.y4d{bottom:510.653333pt;}
.ya8{bottom:512.893333pt;}
.y12d{bottom:515.773333pt;}
.yd2{bottom:518.013333pt;}
.yed{bottom:518.653333pt;}
.y1c{bottom:518.813333pt;}
.y148{bottom:521.533333pt;}
.y7b{bottom:526.013333pt;}
.ya7{bottom:526.653333pt;}
.y16a{bottom:527.933333pt;}
.y12c{bottom:529.533333pt;}
.yd1{bottom:531.773333pt;}
.y1b{bottom:532.253333pt;}
.y4c{bottom:532.413333pt;}
.y7a{bottom:539.773333pt;}
.ya6{bottom:540.413333pt;}
.y12b{bottom:543.293333pt;}
.y1a{bottom:543.933333pt;}
.yd0{bottom:545.533333pt;}
.y4b{bottom:546.173333pt;}
.y169{bottom:549.693333pt;}
.y79{bottom:553.533333pt;}
.ya5{bottom:554.173333pt;}
.y19{bottom:555.453333pt;}
.y147{bottom:557.053333pt;}
.ycf{bottom:559.293333pt;}
.y4a{bottom:559.933333pt;}
.y12a{bottom:565.053333pt;}
.y18{bottom:567.133333pt;}
.yff{bottom:567.293333pt;}
.yec{bottom:567.933333pt;}
.y168{bottom:571.453333pt;}
.yce{bottom:573.053333pt;}
.y49{bottom:573.693333pt;}
.y78{bottom:575.293333pt;}
.ya4{bottom:575.933333pt;}
.y17{bottom:578.653333pt;}
.y129{bottom:578.813333pt;}
.yfe{bottom:581.053333pt;}
.yeb{bottom:581.693333pt;}
.y167{bottom:585.213333pt;}
.y77{bottom:589.053333pt;}
.ya3{bottom:589.693333pt;}
.y16{bottom:590.173333pt;}
.y128{bottom:592.573333pt;}
.ycd{bottom:594.813333pt;}
.y48{bottom:595.453333pt;}
.y166{bottom:598.973333pt;}
.y15{bottom:602.173333pt;}
.y76{bottom:602.813333pt;}
.ya2{bottom:603.453333pt;}
.ycc{bottom:608.573333pt;}
.y47{bottom:609.213333pt;}
.y127{bottom:614.333333pt;}
.y14{bottom:616.413333pt;}
.y75{bottom:616.573333pt;}
.ya1{bottom:617.213333pt;}
.y165{bottom:620.773333pt;}
.y46{bottom:623.013333pt;}
.y146{bottom:628.133333pt;}
.y74{bottom:630.373333pt;}
.ya0{bottom:631.013333pt;}
.y13{bottom:632.773333pt;}
.y164{bottom:634.533333pt;}
.y126{bottom:636.133333pt;}
.y45{bottom:636.773333pt;}
.ycb{bottom:644.133333pt;}
.y9f{bottom:644.773333pt;}
.y12{bottom:648.773333pt;}
.y145{bottom:649.893333pt;}
.y11c{bottom:650.533333pt;}
.y72{bottom:652.133333pt;}
.y73{bottom:655.493333pt;}
.y163{bottom:656.293333pt;}
.yca{bottom:657.893333pt;}
.y44{bottom:658.533333pt;}
.y144{bottom:663.653333pt;}
.y11b{bottom:664.293333pt;}
.y71{bottom:665.893333pt;}
.y162{bottom:670.053333pt;}
.yc9{bottom:671.653333pt;}
.y43{bottom:672.293333pt;}
.y143{bottom:677.413333pt;}
.y11a{bottom:678.053333pt;}
.y11{bottom:678.853333pt;}
.y70{bottom:679.653333pt;}
.yc8{bottom:685.413333pt;}
.y42{bottom:686.053333pt;}
.y161{bottom:691.973333pt;}
.y6f{bottom:693.413333pt;}
.y10{bottom:693.733333pt;}
.y9e{bottom:694.053333pt;}
.y125{bottom:699.173333pt;}
.y41{bottom:699.973333pt;}
.yf{bottom:701.573333pt;}
.y6e{bottom:707.173333pt;}
.y9d{bottom:707.973333pt;}
.ye{bottom:709.253333pt;}
.y124{bottom:712.933333pt;}
.y40{bottom:713.733333pt;}
.yd{bottom:717.093333pt;}
.y6d{bottom:720.933333pt;}
.y9c{bottom:721.733333pt;}
.yc{bottom:724.933333pt;}
.y142{bottom:726.853333pt;}
.y3f{bottom:727.493333pt;}
.yb{bottom:732.773333pt;}
.y6c{bottom:734.853333pt;}
.y9b{bottom:735.493333pt;}
.ya{bottom:744.773333pt;}
.y6b{bottom:748.613333pt;}
.y3e{bottom:749.253333pt;}
.y6a{bottom:762.373333pt;}
.y3d{bottom:762.533333pt;}
.y9{bottom:771.173333pt;}
.y3c{bottom:773.093333pt;}
.y3b{bottom:783.840000pt;}
.y4{bottom:788.480000pt;}
.y3a{bottom:794.560000pt;}
.h7{height:10.560000pt;}
.h2{height:15.520000pt;}
.hb{height:19.263750pt;}
.h1b{height:21.921250pt;}
.h3{height:24.228750pt;}
.h16{height:25.773750pt;}
.h8{height:26.735625pt;}
.h15{height:27.024375pt;}
.h19{height:28.585625pt;}
.h1a{height:28.843750pt;}
.h10{height:29.354062pt;}
.h13{height:31.217812pt;}
.h11{height:33.458750pt;}
.he{height:34.945312pt;}
.hf{height:36.343125pt;}
.h6{height:36.920625pt;}
.h14{height:38.650625pt;}
.h12{height:41.446250pt;}
.h9{height:42.866250pt;}
.h18{height:43.265625pt;}
.h17{height:43.781250pt;}
.h5{height:44.437500pt;}
.hd{height:46.593750pt;}
.hc{height:53.072500pt;}
.h4{height:58.563750pt;}
.ha{height:87.562500pt;}
.h0{height:850.560000pt;}
.h1{height:850.666667pt;}
.w4{width:51.392000pt;}
.w2{width:345.853333pt;}
.w1{width:568.000000pt;}
.w5{width:568.159983pt;}
.w3{width:568.159992pt;}
.w0{width:568.160000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x2{left:14.240000pt;}
.x11{left:47.999992pt;}
.x1b{left:50.751992pt;}
.x4{left:60.034667pt;}
.xa{left:67.071992pt;}
.x9{left:104.831992pt;}
.x1{left:111.232000pt;}
.xb{left:133.151992pt;}
.x10{left:137.786658pt;}
.xf{left:204.066658pt;}
.xd{left:213.986658pt;}
.xc{left:220.546658pt;}
.x1a{left:240.066658pt;}
.xe{left:251.426658pt;}
.x18{left:260.866650pt;}
.x19{left:264.546658pt;}
.x14{left:267.133325pt;}
.x16{left:272.733325pt;}
.x6{left:284.093325pt;}
.x13{left:294.173325pt;}
.x3{left:301.061333pt;}
.x12{left:381.733325pt;}
.x17{left:404.133325pt;}
.x7{left:468.453333pt;}
.x1c{left:511.839992pt;}
.x15{left:515.999992pt;}
.x5{left:520.319992pt;}
}




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