
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_ca3e5cce34ace9a2f88c1415.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_e13b4283d5297c3fb6941329.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_be4ffa147cdf6c56f122ade6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;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_4e22d8b71b3cdcc12790d52a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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);}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.161760px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.181200px;}
.ls5{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.666000px;}
.ls16{letter-spacing:20.907360px;}
.ls4{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.lse{letter-spacing:46.026720px;}
.ls15{letter-spacing:49.707360px;}
.ls17{letter-spacing:64.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws8{word-spacing:-54.000000px;}
.ws2{word-spacing:-26.712000px;}
.ws5{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.220000px;}
.wsd{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.716000px;}
.wsa{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.798000px;}
.ws12{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.878800px;}
.ws13{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.ws14{word-spacing:-9.711360px;}
.ws11{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
._4{margin-left:-1.218960px;}
._1{width:1.135440px;}
._c{width:2.147520px;}
._6{width:3.336240px;}
._d{width:4.482000px;}
._e{width:6.338880px;}
._10{width:7.465680px;}
._14{width:8.615520px;}
._11{width:9.860400px;}
._13{width:10.936080px;}
._7{width:12.011760px;}
._f{width:13.924080px;}
._20{width:15.127920px;}
._b{width:16.434000px;}
._a{width:17.569440px;}
._23{width:18.574560px;}
._12{width:19.656000px;}
._9{width:20.921040px;}
._8{width:22.703760px;}
._1f{width:24.113520px;}
._26{width:25.301280px;}
._1a{width:26.344080px;}
._17{width:27.918000px;}
._16{width:28.926000px;}
._1d{width:30.776400px;}
._1c{width:31.792320px;}
._21{width:32.808240px;}
._19{width:34.296480px;}
._18{width:35.308080px;}
._1b{width:37.339200px;}
._15{width:38.556000px;}
._1e{width:39.879840px;}
._22{width:45.417600px;}
._25{width:54.166320px;}
._24{width:55.636560px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._5{width:686.042160px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.ydd{bottom:2.550000px;}
.y4d{bottom:2.556000px;}
.y9e{bottom:2.565000px;}
.y18e{bottom:2.880000px;}
.y42{bottom:3.060000px;}
.y19{bottom:3.240000px;}
.y3b{bottom:5.940000px;}
.ye1{bottom:6.480000px;}
.y99{bottom:7.020000px;}
.y7{bottom:8.316000px;}
.y4b{bottom:8.496000px;}
.ybc{bottom:9.360000px;}
.y97{bottom:9.900000px;}
.yc{bottom:14.040000px;}
.y17e{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y4c{bottom:16.416000px;}
.y41{bottom:18.540000px;}
.y18d{bottom:18.720000px;}
.y39{bottom:19.440000px;}
.y30{bottom:20.520000px;}
.y44{bottom:24.480000px;}
.y192{bottom:30.054000px;}
.y17d{bottom:30.060000px;}
.y40{bottom:34.020000px;}
.ya{bottom:35.460000px;}
.y38{bottom:35.820000px;}
.y18c{bottom:36.000000px;}
.y2f{bottom:37.620000px;}
.y4e{bottom:41.400000px;}
.y191{bottom:43.914000px;}
.y17c{bottom:43.920000px;}
.y3f{bottom:49.500000px;}
.y37{bottom:51.300000px;}
.y18b{bottom:53.280000px;}
.y2e{bottom:54.900000px;}
.y190{bottom:57.594000px;}
.y17b{bottom:57.600000px;}
.y6{bottom:58.140000px;}
.y4a{bottom:64.080000px;}
.y3e{bottom:65.160000px;}
.y36{bottom:66.960000px;}
.y18a{bottom:70.560000px;}
.y2d{bottom:72.180000px;}
.y3d{bottom:80.640000px;}
.y35{bottom:82.440000px;}
.y189{bottom:87.840000px;}
.y2c{bottom:89.460000px;}
.y34{bottom:97.920000px;}
.y188{bottom:104.940000px;}
.y2b{bottom:106.740000px;}
.y84{bottom:112.536000px;}
.y33{bottom:113.400000px;}
.yf9{bottom:116.496000px;}
.y49{bottom:117.216000px;}
.yb8{bottom:117.396000px;}
.y193{bottom:118.836000px;}
.y11f{bottom:122.256000px;}
.y2a{bottom:123.885000px;}
.y130{bottom:126.936000px;}
.y43{bottom:127.845000px;}
.y32{bottom:129.090000px;}
.y83{bottom:129.816000px;}
.y18f{bottom:130.176000px;}
.yb7{bottom:131.076000px;}
.yf8{bottom:133.596000px;}
.y48{bottom:133.776000px;}
.y11e{bottom:139.356000px;}
.y29{bottom:141.165000px;}
.y12f{bottom:143.496000px;}
.yb6{bottom:144.936000px;}
.y82{bottom:147.096000px;}
.y47{bottom:147.636000px;}
.yf7{bottom:150.870000px;}
.y11d{bottom:156.630000px;}
.y28{bottom:158.445000px;}
.yb5{bottom:158.790000px;}
.y12e{bottom:159.870000px;}
.y46{bottom:162.570000px;}
.y81{bottom:164.190000px;}
.yf6{bottom:168.150000px;}
.yb4{bottom:172.470000px;}
.y11c{bottom:173.910000px;}
.y27{bottom:175.725000px;}
.y12d{bottom:176.250000px;}
.y80{bottom:181.470000px;}
.y45{bottom:181.830000px;}
.yf5{bottom:185.430000px;}
.yb3{bottom:186.330000px;}
.y11b{bottom:191.190000px;}
.y12c{bottom:192.630000px;}
.y26{bottom:193.005000px;}
.y1a{bottom:195.150000px;}
.y7f{bottom:198.750000px;}
.y187{bottom:199.830000px;}
.yb2{bottom:200.910000px;}
.yf4{bottom:202.710000px;}
.y11a{bottom:208.470000px;}
.y12b{bottom:209.010000px;}
.y25{bottom:210.285000px;}
.y7e{bottom:216.030000px;}
.ya5{bottom:217.290000px;}
.yf3{bottom:219.990000px;}
.yb1{bottom:221.070000px;}
.y12a{bottom:225.390000px;}
.y119{bottom:225.750000px;}
.y24{bottom:227.385000px;}
.y7d{bottom:233.310000px;}
.ya4{bottom:235.650000px;}
.yf2{bottom:237.090000px;}
.yb0{bottom:238.350000px;}
.y129{bottom:241.770000px;}
.y118{bottom:242.850000px;}
.y23{bottom:244.665000px;}
.ya3{bottom:245.010000px;}
.y7c{bottom:250.590000px;}
.yf1{bottom:254.370000px;}
.yaf{bottom:255.630000px;}
.ya2{bottom:257.070000px;}
.y128{bottom:258.150000px;}
.y117{bottom:260.130000px;}
.y22{bottom:261.945000px;}
.y7b{bottom:267.690000px;}
.ya1{bottom:271.470000px;}
.yf0{bottom:271.650000px;}
.yae{bottom:272.910000px;}
.y127{bottom:274.530000px;}
.y116{bottom:277.410000px;}
.y21{bottom:279.225000px;}
.y7a{bottom:284.970000px;}
.ya0{bottom:286.050000px;}
.yef{bottom:288.930000px;}
.yad{bottom:290.190000px;}
.y126{bottom:290.910000px;}
.y115{bottom:294.690000px;}
.y20{bottom:296.505000px;}
.y9f{bottom:300.630000px;}
.y79{bottom:302.250000px;}
.yee{bottom:306.210000px;}
.y125{bottom:307.290000px;}
.yac{bottom:307.470000px;}
.y114{bottom:311.970000px;}
.y1f{bottom:313.785000px;}
.y9d{bottom:315.210000px;}
.y78{bottom:319.575000px;}
.y15b{bottom:321.375000px;}
.yed{bottom:323.535000px;}
.y124{bottom:323.715000px;}
.yab{bottom:324.615000px;}
.y186{bottom:327.675000px;}
.y113{bottom:329.295000px;}
.y9c{bottom:329.835000px;}
.y1e{bottom:330.885000px;}
.y15a{bottom:335.955000px;}
.y3c{bottom:336.315000px;}
.y77{bottom:336.855000px;}
.y123{bottom:340.095000px;}
.yec{bottom:340.635000px;}
.yaa{bottom:341.895000px;}
.y9b{bottom:344.415000px;}
.y185{bottom:344.955000px;}
.y112{bottom:346.395000px;}
.y1d{bottom:348.165000px;}
.y159{bottom:353.235000px;}
.y76{bottom:354.135000px;}
.y122{bottom:356.475000px;}
.yeb{bottom:357.915000px;}
.y9a{bottom:358.815000px;}
.ya9{bottom:359.175000px;}
.y184{bottom:362.235000px;}
.y111{bottom:363.675000px;}
.y1c{bottom:365.445000px;}
.y158{bottom:370.515000px;}
.y75{bottom:371.235000px;}
.y121{bottom:372.855000px;}
.y96{bottom:373.395000px;}
.yea{bottom:375.195000px;}
.ya8{bottom:376.455000px;}
.y183{bottom:379.335000px;}
.y110{bottom:380.955000px;}
.y1b{bottom:382.935000px;}
.y157{bottom:387.615000px;}
.y98{bottom:387.975000px;}
.y74{bottom:388.515000px;}
.y120{bottom:389.235000px;}
.ye9{bottom:392.475000px;}
.ya7{bottom:393.735000px;}
.y182{bottom:396.615000px;}
.y10f{bottom:398.235000px;}
.y95{bottom:404.175000px;}
.y156{bottom:404.895000px;}
.y73{bottom:405.795000px;}
.ye8{bottom:409.755000px;}
.ya6{bottom:411.015000px;}
.y94{bottom:413.715000px;}
.y181{bottom:413.895000px;}
.y10e{bottom:415.515000px;}
.y155{bottom:422.175000px;}
.y72{bottom:423.075000px;}
.ye7{bottom:426.855000px;}
.y93{bottom:428.115000px;}
.y3a{bottom:430.275000px;}
.y180{bottom:431.175000px;}
.y10d{bottom:432.615000px;}
.y154{bottom:439.455000px;}
.y71{bottom:440.355000px;}
.ye6{bottom:444.135000px;}
.y92{bottom:445.395000px;}
.y17f{bottom:448.455000px;}
.y10c{bottom:449.895000px;}
.y31{bottom:450.975000px;}
.y153{bottom:456.735000px;}
.y70{bottom:457.455000px;}
.ye5{bottom:461.415000px;}
.y91{bottom:462.675000px;}
.y17a{bottom:463.215000px;}
.y10b{bottom:467.175000px;}
.y152{bottom:474.015000px;}
.y6f{bottom:474.735000px;}
.ye4{bottom:478.695000px;}
.y90{bottom:479.955000px;}
.y10a{bottom:484.455000px;}
.y151{bottom:491.115000px;}
.y6e{bottom:492.015000px;}
.ye3{bottom:495.975000px;}
.y8f{bottom:497.235000px;}
.y109{bottom:501.735000px;}
.y150{bottom:508.395000px;}
.y6d{bottom:509.295000px;}
.ye2{bottom:512.535000px;}
.y8e{bottom:514.515000px;}
.y108{bottom:519.015000px;}
.ye0{bottom:524.415000px;}
.y14f{bottom:525.675000px;}
.y6c{bottom:526.575000px;}
.y8d{bottom:531.615000px;}
.y179{bottom:532.875000px;}
.y107{bottom:536.115000px;}
.ydf{bottom:538.095000px;}
.y14e{bottom:542.955000px;}
.y6b{bottom:543.855000px;}
.y8c{bottom:548.895000px;}
.y178{bottom:550.695000px;}
.yde{bottom:551.955000px;}
.y106{bottom:553.395000px;}
.y14d{bottom:560.235000px;}
.y6a{bottom:560.955000px;}
.ydc{bottom:565.635000px;}
.y8b{bottom:566.175000px;}
.y177{bottom:567.795000px;}
.y105{bottom:570.705000px;}
.y14c{bottom:577.365000px;}
.y69{bottom:578.265000px;}
.ydb{bottom:579.345000px;}
.y8a{bottom:583.485000px;}
.y176{bottom:584.205000px;}
.y104{bottom:587.985000px;}
.yda{bottom:593.025000px;}
.y18{bottom:593.385000px;}
.y14b{bottom:594.645000px;}
.y68{bottom:595.545000px;}
.y89{bottom:599.145000px;}
.y175{bottom:600.585000px;}
.y103{bottom:605.265000px;}
.yd9{bottom:606.705000px;}
.y88{bottom:608.685000px;}
.y14a{bottom:611.925000px;}
.y67{bottom:612.825000px;}
.y174{bottom:616.965000px;}
.y87{bottom:619.845000px;}
.yd8{bottom:620.385000px;}
.y102{bottom:622.545000px;}
.y17{bottom:627.945000px;}
.y149{bottom:628.485000px;}
.y66{bottom:630.105000px;}
.y173{bottom:633.345000px;}
.yd7{bottom:634.065000px;}
.y101{bottom:639.645000px;}
.y148{bottom:643.065000px;}
.y65{bottom:647.385000px;}
.y16{bottom:647.745000px;}
.y172{bottom:649.725000px;}
.y100{bottom:656.925000px;}
.y147{bottom:660.165000px;}
.yd6{bottom:661.425000px;}
.y64{bottom:664.485000px;}
.y171{bottom:666.105000px;}
.yff{bottom:674.205000px;}
.yd4{bottom:675.105000px;}
.y146{bottom:677.445000px;}
.y15{bottom:681.405000px;}
.y63{bottom:681.765000px;}
.y170{bottom:682.485000px;}
.yd5{bottom:688.785000px;}
.yfe{bottom:691.485000px;}
.y145{bottom:694.725000px;}
.y14{bottom:698.685000px;}
.y16f{bottom:698.865000px;}
.y62{bottom:699.045000px;}
.yd3{bottom:704.085000px;}
.yfd{bottom:708.765000px;}
.y144{bottom:712.005000px;}
.yd2{bottom:713.625000px;}
.y16e{bottom:715.245000px;}
.y13{bottom:715.965000px;}
.y61{bottom:716.325000px;}
.yfc{bottom:725.865000px;}
.yd1{bottom:728.025000px;}
.y12{bottom:728.385000px;}
.y143{bottom:729.285000px;}
.y16d{bottom:731.625000px;}
.y60{bottom:733.605000px;}
.yfb{bottom:741.525000px;}
.ycc{bottom:745.125000px;}
.yd0{bottom:746.025000px;}
.y142{bottom:746.565000px;}
.y16c{bottom:748.005000px;}
.y11{bottom:749.625000px;}
.y5f{bottom:750.885000px;}
.yfa{bottom:751.065000px;}
.ycb{bottom:761.505000px;}
.ycf{bottom:762.405000px;}
.y141{bottom:763.665000px;}
.y16b{bottom:764.385000px;}
.y5e{bottom:767.985000px;}
.yca{bottom:777.885000px;}
.yce{bottom:778.785000px;}
.y10{bottom:780.585000px;}
.y16a{bottom:780.765000px;}
.y140{bottom:780.945000px;}
.y5d{bottom:785.265000px;}
.yc9{bottom:794.445000px;}
.ycd{bottom:795.165000px;}
.y169{bottom:797.145000px;}
.y13f{bottom:798.225000px;}
.y5c{bottom:802.545000px;}
.yf{bottom:811.725000px;}
.y168{bottom:813.525000px;}
.y13e{bottom:815.505000px;}
.y5b{bottom:819.870000px;}
.yc8{bottom:828.330000px;}
.y167{bottom:829.950000px;}
.y13d{bottom:832.110000px;}
.y5a{bottom:837.150000px;}
.yc7{bottom:840.390000px;}
.ye{bottom:842.730000px;}
.y166{bottom:846.330000px;}
.y13c{bottom:846.510000px;}
.yc6{bottom:854.070000px;}
.y59{bottom:854.250000px;}
.y165{bottom:862.710000px;}
.y13b{bottom:863.790000px;}
.yc5{bottom:867.750000px;}
.y58{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.y164{bottom:879.090000px;}
.y13a{bottom:881.070000px;}
.yc4{bottom:881.430000px;}
.yb{bottom:887.010000px;}
.y57{bottom:888.810000px;}
.yc3{bottom:895.110000px;}
.y163{bottom:895.470000px;}
.y139{bottom:898.350000px;}
.y56{bottom:906.090000px;}
.yc2{bottom:908.790000px;}
.y162{bottom:912.030000px;}
.y138{bottom:914.910000px;}
.yc1{bottom:922.470000px;}
.y55{bottom:923.370000px;}
.y161{bottom:928.410000px;}
.y137{bottom:929.130000px;}
.yc0{bottom:936.150000px;}
.y54{bottom:940.650000px;}
.y160{bottom:944.790000px;}
.y136{bottom:945.510000px;}
.ybf{bottom:949.830000px;}
.y53{bottom:957.750000px;}
.y15f{bottom:961.170000px;}
.y135{bottom:961.890000px;}
.ybe{bottom:963.510000px;}
.y52{bottom:975.030000px;}
.ybb{bottom:977.190000px;}
.y15e{bottom:977.550000px;}
.y134{bottom:978.270000px;}
.ybd{bottom:990.870000px;}
.y51{bottom:992.310000px;}
.y15d{bottom:993.930000px;}
.y133{bottom:994.650000px;}
.yba{bottom:1006.170000px;}
.y50{bottom:1009.590000px;}
.y15c{bottom:1010.310000px;}
.y132{bottom:1011.210000px;}
.yb9{bottom:1015.710000px;}
.y86{bottom:1018.770000px;}
.y4f{bottom:1026.870000px;}
.y131{bottom:1027.590000px;}
.y85{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h2c{height:12.780000px;}
.h2d{height:12.816000px;}
.h2a{height:12.960000px;}
.h24{height:13.680000px;}
.h23{height:13.860000px;}
.h25{height:13.896000px;}
.hf{height:17.280000px;}
.h16{height:19.980000px;}
.h20{height:21.336328px;}
.h27{height:21.867891px;}
.h1e{height:26.033203px;}
.h28{height:26.640000px;}
.h4{height:27.576000px;}
.hd{height:28.115859px;}
.h21{height:28.440000px;}
.h29{height:32.004492px;}
.h2b{height:32.801836px;}
.h22{height:34.036523px;}
.h6{height:34.884492px;}
.h1a{height:38.100586px;}
.h18{height:39.049805px;}
.h7{height:39.336328px;}
.h26{height:39.867891px;}
.h12{height:39.972656px;}
.h14{height:39.999023px;}
.h2f{height:41.132461px;}
.h2e{height:41.410195px;}
.h1f{height:41.493516px;}
.h10{height:42.164648px;}
.h5{height:43.215117px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:47.901094px;}
.h2{height:48.496641px;}
.h1d{height:48.995859px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h30{height:68.940000px;}
.hb{height:76.201172px;}
.he{height:78.099609px;}
.h17{height:93.240000px;}
.h31{height:119.016000px;}
.h19{height:140.436000px;}
.h13{height:141.696000px;}
.h8{height:153.900000px;}
.h11{height:397.515000px;}
.h0{height:1188.000000px;}
.w9{width:41.580000px;}
.wa{width:41.616000px;}
.w8{width:41.760000px;}
.w2{width:45.036000px;}
.wc{width:45.360000px;}
.wd{width:48.960000px;}
.w15{width:55.440000px;}
.w7{width:66.456000px;}
.w10{width:70.056000px;}
.w12{width:73.836000px;}
.w16{width:79.236000px;}
.w18{width:83.556000px;}
.w11{width:102.060000px;}
.w17{width:115.560000px;}
.wb{width:137.340000px;}
.w13{width:186.870000px;}
.w6{width:222.510000px;}
.we{width:229.170000px;}
.wf{width:297.075000px;}
.w19{width:329.250000px;}
.w14{width:335.955000px;}
.w5{width:586.185000px;}
.w3{width:783.510000px;}
.w1a{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:6.660000px;}
.x5{left:8.640000px;}
.x2b{left:11.160000px;}
.x22{left:12.780000px;}
.x2d{left:14.760000px;}
.x41{left:16.020000px;}
.x2c{left:17.820000px;}
.x2f{left:18.900000px;}
.x13{left:20.160000px;}
.x2e{left:21.780000px;}
.x49{left:23.220000px;}
.x30{left:24.480000px;}
.x28{left:27.180000px;}
.x17{left:28.620000px;}
.x3a{left:32.250000px;}
.x4c{left:33.840000px;}
.x15{left:35.325000px;}
.x16{left:37.125000px;}
.x4f{left:39.630000px;}
.x39{left:41.580000px;}
.x8{left:45.540000px;}
.x3e{left:48.240000px;}
.x33{left:50.220000px;}
.x3f{left:52.200000px;}
.x4{left:53.999986px;}
.xb{left:57.239986px;}
.x43{left:59.579986px;}
.x3{left:60.659986px;}
.x21{left:62.820000px;}
.x4e{left:64.260000px;}
.x18{left:65.519986px;}
.x4b{left:66.780000px;}
.x1f{left:73.619986px;}
.x4d{left:76.140000px;}
.x4a{left:77.220000px;}
.x3d{left:79.560000px;}
.x19{left:86.759986px;}
.x3c{left:88.740000px;}
.x3b{left:93.465000px;}
.x38{left:95.445000px;}
.x6{left:100.836000px;}
.x40{left:102.645000px;}
.x7{left:108.035986px;}
.x23{left:129.996000px;}
.x1e{left:137.735986px;}
.x53{left:146.375986px;}
.x1{left:150.509986px;}
.x24{left:172.470000px;}
.xf{left:179.489986px;}
.x10{left:190.829986px;}
.x42{left:192.989986px;}
.x32{left:195.510000px;}
.x44{left:197.310000px;}
.x25{left:214.770000px;}
.x2{left:220.709986px;}
.xe{left:226.649986px;}
.x20{left:252.569986px;}
.x26{left:257.070000px;}
.xd{left:271.289986px;}
.x31{left:279.929986px;}
.x57{left:295.635000px;}
.x27{left:299.415000px;}
.x50{left:306.794986px;}
.x1c{left:326.414986px;}
.x29{left:345.495000px;}
.x45{left:384.915000px;}
.x2a{left:387.795000px;}
.x34{left:425.415000px;}
.x46{left:441.075000px;}
.x51{left:456.194986px;}
.xa{left:459.074986px;}
.x1b{left:461.954986px;}
.xc{left:464.294986px;}
.x11{left:465.374986px;}
.x35{left:475.095000px;}
.x1a{left:478.334986px;}
.x56{left:503.745000px;}
.x54{left:505.364986px;}
.x47{left:521.025000px;}
.x55{left:526.604986px;}
.x36{left:545.865000px;}
.x48{left:637.305000px;}
.x12{left:640.005000px;}
.x37{left:648.645000px;}
.x52{left:779.189986px;}
.x1d{left:793.769986px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.143787pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.161067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.592000pt;}
.ls16{letter-spacing:18.584320pt;}
.ls4{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.lse{letter-spacing:40.912640pt;}
.ls15{letter-spacing:44.184320pt;}
.ls17{letter-spacing:57.040640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws2{word-spacing:-23.744000pt;}
.ws5{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws16{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.192000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.376000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.558933pt;}
.ws13{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.ws14{word-spacing:-8.632320pt;}
.ws11{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
._4{margin-left:-1.083520pt;}
._1{width:1.009280pt;}
._c{width:1.908907pt;}
._6{width:2.965547pt;}
._d{width:3.984000pt;}
._e{width:5.634560pt;}
._10{width:6.636160pt;}
._14{width:7.658240pt;}
._11{width:8.764800pt;}
._13{width:9.720960pt;}
._7{width:10.677120pt;}
._f{width:12.376960pt;}
._20{width:13.447040pt;}
._b{width:14.608000pt;}
._a{width:15.617280pt;}
._23{width:16.510720pt;}
._12{width:17.472000pt;}
._9{width:18.596480pt;}
._8{width:20.181120pt;}
._1f{width:21.434240pt;}
._26{width:22.490027pt;}
._1a{width:23.416960pt;}
._17{width:24.816000pt;}
._16{width:25.712000pt;}
._1d{width:27.356800pt;}
._1c{width:28.259840pt;}
._21{width:29.162880pt;}
._19{width:30.485760pt;}
._18{width:31.384960pt;}
._1b{width:33.190400pt;}
._15{width:34.272000pt;}
._1e{width:35.448747pt;}
._22{width:40.371200pt;}
._25{width:48.147840pt;}
._24{width:49.454720pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._5{width:609.815253pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.ydd{bottom:2.266667pt;}
.y4d{bottom:2.272000pt;}
.y9e{bottom:2.280000pt;}
.y18e{bottom:2.560000pt;}
.y42{bottom:2.720000pt;}
.y19{bottom:2.880000pt;}
.y3b{bottom:5.280000pt;}
.ye1{bottom:5.760000pt;}
.y99{bottom:6.240000pt;}
.y7{bottom:7.392000pt;}
.y4b{bottom:7.552000pt;}
.ybc{bottom:8.320000pt;}
.y97{bottom:8.800000pt;}
.yc{bottom:12.480000pt;}
.y17e{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y4c{bottom:14.592000pt;}
.y41{bottom:16.480000pt;}
.y18d{bottom:16.640000pt;}
.y39{bottom:17.280000pt;}
.y30{bottom:18.240000pt;}
.y44{bottom:21.760000pt;}
.y192{bottom:26.714667pt;}
.y17d{bottom:26.720000pt;}
.y40{bottom:30.240000pt;}
.ya{bottom:31.520000pt;}
.y38{bottom:31.840000pt;}
.y18c{bottom:32.000000pt;}
.y2f{bottom:33.440000pt;}
.y4e{bottom:36.800000pt;}
.y191{bottom:39.034667pt;}
.y17c{bottom:39.040000pt;}
.y3f{bottom:44.000000pt;}
.y37{bottom:45.600000pt;}
.y18b{bottom:47.360000pt;}
.y2e{bottom:48.800000pt;}
.y190{bottom:51.194667pt;}
.y17b{bottom:51.200000pt;}
.y6{bottom:51.680000pt;}
.y4a{bottom:56.960000pt;}
.y3e{bottom:57.920000pt;}
.y36{bottom:59.520000pt;}
.y18a{bottom:62.720000pt;}
.y2d{bottom:64.160000pt;}
.y3d{bottom:71.680000pt;}
.y35{bottom:73.280000pt;}
.y189{bottom:78.080000pt;}
.y2c{bottom:79.520000pt;}
.y34{bottom:87.040000pt;}
.y188{bottom:93.280000pt;}
.y2b{bottom:94.880000pt;}
.y84{bottom:100.032000pt;}
.y33{bottom:100.800000pt;}
.yf9{bottom:103.552000pt;}
.y49{bottom:104.192000pt;}
.yb8{bottom:104.352000pt;}
.y193{bottom:105.632000pt;}
.y11f{bottom:108.672000pt;}
.y2a{bottom:110.120000pt;}
.y130{bottom:112.832000pt;}
.y43{bottom:113.640000pt;}
.y32{bottom:114.746667pt;}
.y83{bottom:115.392000pt;}
.y18f{bottom:115.712000pt;}
.yb7{bottom:116.512000pt;}
.yf8{bottom:118.752000pt;}
.y48{bottom:118.912000pt;}
.y11e{bottom:123.872000pt;}
.y29{bottom:125.480000pt;}
.y12f{bottom:127.552000pt;}
.yb6{bottom:128.832000pt;}
.y82{bottom:130.752000pt;}
.y47{bottom:131.232000pt;}
.yf7{bottom:134.106667pt;}
.y11d{bottom:139.226667pt;}
.y28{bottom:140.840000pt;}
.yb5{bottom:141.146667pt;}
.y12e{bottom:142.106667pt;}
.y46{bottom:144.506667pt;}
.y81{bottom:145.946667pt;}
.yf6{bottom:149.466667pt;}
.yb4{bottom:153.306667pt;}
.y11c{bottom:154.586667pt;}
.y27{bottom:156.200000pt;}
.y12d{bottom:156.666667pt;}
.y80{bottom:161.306667pt;}
.y45{bottom:161.626667pt;}
.yf5{bottom:164.826667pt;}
.yb3{bottom:165.626667pt;}
.y11b{bottom:169.946667pt;}
.y12c{bottom:171.226667pt;}
.y26{bottom:171.560000pt;}
.y1a{bottom:173.466667pt;}
.y7f{bottom:176.666667pt;}
.y187{bottom:177.626667pt;}
.yb2{bottom:178.586667pt;}
.yf4{bottom:180.186667pt;}
.y11a{bottom:185.306667pt;}
.y12b{bottom:185.786667pt;}
.y25{bottom:186.920000pt;}
.y7e{bottom:192.026667pt;}
.ya5{bottom:193.146667pt;}
.yf3{bottom:195.546667pt;}
.yb1{bottom:196.506667pt;}
.y12a{bottom:200.346667pt;}
.y119{bottom:200.666667pt;}
.y24{bottom:202.120000pt;}
.y7d{bottom:207.386667pt;}
.ya4{bottom:209.466667pt;}
.yf2{bottom:210.746667pt;}
.yb0{bottom:211.866667pt;}
.y129{bottom:214.906667pt;}
.y118{bottom:215.866667pt;}
.y23{bottom:217.480000pt;}
.ya3{bottom:217.786667pt;}
.y7c{bottom:222.746667pt;}
.yf1{bottom:226.106667pt;}
.yaf{bottom:227.226667pt;}
.ya2{bottom:228.506667pt;}
.y128{bottom:229.466667pt;}
.y117{bottom:231.226667pt;}
.y22{bottom:232.840000pt;}
.y7b{bottom:237.946667pt;}
.ya1{bottom:241.306667pt;}
.yf0{bottom:241.466667pt;}
.yae{bottom:242.586667pt;}
.y127{bottom:244.026667pt;}
.y116{bottom:246.586667pt;}
.y21{bottom:248.200000pt;}
.y7a{bottom:253.306667pt;}
.ya0{bottom:254.266667pt;}
.yef{bottom:256.826667pt;}
.yad{bottom:257.946667pt;}
.y126{bottom:258.586667pt;}
.y115{bottom:261.946667pt;}
.y20{bottom:263.560000pt;}
.y9f{bottom:267.226667pt;}
.y79{bottom:268.666667pt;}
.yee{bottom:272.186667pt;}
.y125{bottom:273.146667pt;}
.yac{bottom:273.306667pt;}
.y114{bottom:277.306667pt;}
.y1f{bottom:278.920000pt;}
.y9d{bottom:280.186667pt;}
.y78{bottom:284.066667pt;}
.y15b{bottom:285.666667pt;}
.yed{bottom:287.586667pt;}
.y124{bottom:287.746667pt;}
.yab{bottom:288.546667pt;}
.y186{bottom:291.266667pt;}
.y113{bottom:292.706667pt;}
.y9c{bottom:293.186667pt;}
.y1e{bottom:294.120000pt;}
.y15a{bottom:298.626667pt;}
.y3c{bottom:298.946667pt;}
.y77{bottom:299.426667pt;}
.y123{bottom:302.306667pt;}
.yec{bottom:302.786667pt;}
.yaa{bottom:303.906667pt;}
.y9b{bottom:306.146667pt;}
.y185{bottom:306.626667pt;}
.y112{bottom:307.906667pt;}
.y1d{bottom:309.480000pt;}
.y159{bottom:313.986667pt;}
.y76{bottom:314.786667pt;}
.y122{bottom:316.866667pt;}
.yeb{bottom:318.146667pt;}
.y9a{bottom:318.946667pt;}
.ya9{bottom:319.266667pt;}
.y184{bottom:321.986667pt;}
.y111{bottom:323.266667pt;}
.y1c{bottom:324.840000pt;}
.y158{bottom:329.346667pt;}
.y75{bottom:329.986667pt;}
.y121{bottom:331.426667pt;}
.y96{bottom:331.906667pt;}
.yea{bottom:333.506667pt;}
.ya8{bottom:334.626667pt;}
.y183{bottom:337.186667pt;}
.y110{bottom:338.626667pt;}
.y1b{bottom:340.386667pt;}
.y157{bottom:344.546667pt;}
.y98{bottom:344.866667pt;}
.y74{bottom:345.346667pt;}
.y120{bottom:345.986667pt;}
.ye9{bottom:348.866667pt;}
.ya7{bottom:349.986667pt;}
.y182{bottom:352.546667pt;}
.y10f{bottom:353.986667pt;}
.y95{bottom:359.266667pt;}
.y156{bottom:359.906667pt;}
.y73{bottom:360.706667pt;}
.ye8{bottom:364.226667pt;}
.ya6{bottom:365.346667pt;}
.y94{bottom:367.746667pt;}
.y181{bottom:367.906667pt;}
.y10e{bottom:369.346667pt;}
.y155{bottom:375.266667pt;}
.y72{bottom:376.066667pt;}
.ye7{bottom:379.426667pt;}
.y93{bottom:380.546667pt;}
.y3a{bottom:382.466667pt;}
.y180{bottom:383.266667pt;}
.y10d{bottom:384.546667pt;}
.y154{bottom:390.626667pt;}
.y71{bottom:391.426667pt;}
.ye6{bottom:394.786667pt;}
.y92{bottom:395.906667pt;}
.y17f{bottom:398.626667pt;}
.y10c{bottom:399.906667pt;}
.y31{bottom:400.866667pt;}
.y153{bottom:405.986667pt;}
.y70{bottom:406.626667pt;}
.ye5{bottom:410.146667pt;}
.y91{bottom:411.266667pt;}
.y17a{bottom:411.746667pt;}
.y10b{bottom:415.266667pt;}
.y152{bottom:421.346667pt;}
.y6f{bottom:421.986667pt;}
.ye4{bottom:425.506667pt;}
.y90{bottom:426.626667pt;}
.y10a{bottom:430.626667pt;}
.y151{bottom:436.546667pt;}
.y6e{bottom:437.346667pt;}
.ye3{bottom:440.866667pt;}
.y8f{bottom:441.986667pt;}
.y109{bottom:445.986667pt;}
.y150{bottom:451.906667pt;}
.y6d{bottom:452.706667pt;}
.ye2{bottom:455.586667pt;}
.y8e{bottom:457.346667pt;}
.y108{bottom:461.346667pt;}
.ye0{bottom:466.146667pt;}
.y14f{bottom:467.266667pt;}
.y6c{bottom:468.066667pt;}
.y8d{bottom:472.546667pt;}
.y179{bottom:473.666667pt;}
.y107{bottom:476.546667pt;}
.ydf{bottom:478.306667pt;}
.y14e{bottom:482.626667pt;}
.y6b{bottom:483.426667pt;}
.y8c{bottom:487.906667pt;}
.y178{bottom:489.506667pt;}
.yde{bottom:490.626667pt;}
.y106{bottom:491.906667pt;}
.y14d{bottom:497.986667pt;}
.y6a{bottom:498.626667pt;}
.ydc{bottom:502.786667pt;}
.y8b{bottom:503.266667pt;}
.y177{bottom:504.706667pt;}
.y105{bottom:507.293333pt;}
.y14c{bottom:513.213333pt;}
.y69{bottom:514.013333pt;}
.ydb{bottom:514.973333pt;}
.y8a{bottom:518.653333pt;}
.y176{bottom:519.293333pt;}
.y104{bottom:522.653333pt;}
.yda{bottom:527.133333pt;}
.y18{bottom:527.453333pt;}
.y14b{bottom:528.573333pt;}
.y68{bottom:529.373333pt;}
.y89{bottom:532.573333pt;}
.y175{bottom:533.853333pt;}
.y103{bottom:538.013333pt;}
.yd9{bottom:539.293333pt;}
.y88{bottom:541.053333pt;}
.y14a{bottom:543.933333pt;}
.y67{bottom:544.733333pt;}
.y174{bottom:548.413333pt;}
.y87{bottom:550.973333pt;}
.yd8{bottom:551.453333pt;}
.y102{bottom:553.373333pt;}
.y17{bottom:558.173333pt;}
.y149{bottom:558.653333pt;}
.y66{bottom:560.093333pt;}
.y173{bottom:562.973333pt;}
.yd7{bottom:563.613333pt;}
.y101{bottom:568.573333pt;}
.y148{bottom:571.613333pt;}
.y65{bottom:575.453333pt;}
.y16{bottom:575.773333pt;}
.y172{bottom:577.533333pt;}
.y100{bottom:583.933333pt;}
.y147{bottom:586.813333pt;}
.yd6{bottom:587.933333pt;}
.y64{bottom:590.653333pt;}
.y171{bottom:592.093333pt;}
.yff{bottom:599.293333pt;}
.yd4{bottom:600.093333pt;}
.y146{bottom:602.173333pt;}
.y15{bottom:605.693333pt;}
.y63{bottom:606.013333pt;}
.y170{bottom:606.653333pt;}
.yd5{bottom:612.253333pt;}
.yfe{bottom:614.653333pt;}
.y145{bottom:617.533333pt;}
.y14{bottom:621.053333pt;}
.y16f{bottom:621.213333pt;}
.y62{bottom:621.373333pt;}
.yd3{bottom:625.853333pt;}
.yfd{bottom:630.013333pt;}
.y144{bottom:632.893333pt;}
.yd2{bottom:634.333333pt;}
.y16e{bottom:635.773333pt;}
.y13{bottom:636.413333pt;}
.y61{bottom:636.733333pt;}
.yfc{bottom:645.213333pt;}
.yd1{bottom:647.133333pt;}
.y12{bottom:647.453333pt;}
.y143{bottom:648.253333pt;}
.y16d{bottom:650.333333pt;}
.y60{bottom:652.093333pt;}
.yfb{bottom:659.133333pt;}
.ycc{bottom:662.333333pt;}
.yd0{bottom:663.133333pt;}
.y142{bottom:663.613333pt;}
.y16c{bottom:664.893333pt;}
.y11{bottom:666.333333pt;}
.y5f{bottom:667.453333pt;}
.yfa{bottom:667.613333pt;}
.ycb{bottom:676.893333pt;}
.ycf{bottom:677.693333pt;}
.y141{bottom:678.813333pt;}
.y16b{bottom:679.453333pt;}
.y5e{bottom:682.653333pt;}
.yca{bottom:691.453333pt;}
.yce{bottom:692.253333pt;}
.y10{bottom:693.853333pt;}
.y16a{bottom:694.013333pt;}
.y140{bottom:694.173333pt;}
.y5d{bottom:698.013333pt;}
.yc9{bottom:706.173333pt;}
.ycd{bottom:706.813333pt;}
.y169{bottom:708.573333pt;}
.y13f{bottom:709.533333pt;}
.y5c{bottom:713.373333pt;}
.yf{bottom:721.533333pt;}
.y168{bottom:723.133333pt;}
.y13e{bottom:724.893333pt;}
.y5b{bottom:728.773333pt;}
.yc8{bottom:736.293333pt;}
.y167{bottom:737.733333pt;}
.y13d{bottom:739.653333pt;}
.y5a{bottom:744.133333pt;}
.yc7{bottom:747.013333pt;}
.ye{bottom:749.093333pt;}
.y166{bottom:752.293333pt;}
.y13c{bottom:752.453333pt;}
.yc6{bottom:759.173333pt;}
.y59{bottom:759.333333pt;}
.y165{bottom:766.853333pt;}
.y13b{bottom:767.813333pt;}
.yc5{bottom:771.333333pt;}
.y58{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.y164{bottom:781.413333pt;}
.y13a{bottom:783.173333pt;}
.yc4{bottom:783.493333pt;}
.yb{bottom:788.453333pt;}
.y57{bottom:790.053333pt;}
.yc3{bottom:795.653333pt;}
.y163{bottom:795.973333pt;}
.y139{bottom:798.533333pt;}
.y56{bottom:805.413333pt;}
.yc2{bottom:807.813333pt;}
.y162{bottom:810.693333pt;}
.y138{bottom:813.253333pt;}
.yc1{bottom:819.973333pt;}
.y55{bottom:820.773333pt;}
.y161{bottom:825.253333pt;}
.y137{bottom:825.893333pt;}
.yc0{bottom:832.133333pt;}
.y54{bottom:836.133333pt;}
.y160{bottom:839.813333pt;}
.y136{bottom:840.453333pt;}
.ybf{bottom:844.293333pt;}
.y53{bottom:851.333333pt;}
.y15f{bottom:854.373333pt;}
.y135{bottom:855.013333pt;}
.ybe{bottom:856.453333pt;}
.y52{bottom:866.693333pt;}
.ybb{bottom:868.613333pt;}
.y15e{bottom:868.933333pt;}
.y134{bottom:869.573333pt;}
.ybd{bottom:880.773333pt;}
.y51{bottom:882.053333pt;}
.y15d{bottom:883.493333pt;}
.y133{bottom:884.133333pt;}
.yba{bottom:894.373333pt;}
.y50{bottom:897.413333pt;}
.y15c{bottom:898.053333pt;}
.y132{bottom:898.853333pt;}
.yb9{bottom:902.853333pt;}
.y86{bottom:905.573333pt;}
.y4f{bottom:912.773333pt;}
.y131{bottom:913.413333pt;}
.y85{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h2c{height:11.360000pt;}
.h2d{height:11.392000pt;}
.h2a{height:11.520000pt;}
.h24{height:12.160000pt;}
.h23{height:12.320000pt;}
.h25{height:12.352000pt;}
.hf{height:15.360000pt;}
.h16{height:17.760000pt;}
.h20{height:18.965625pt;}
.h27{height:19.438125pt;}
.h1e{height:23.140625pt;}
.h28{height:23.680000pt;}
.h4{height:24.512000pt;}
.hd{height:24.991875pt;}
.h21{height:25.280000pt;}
.h29{height:28.448437pt;}
.h2b{height:29.157187pt;}
.h22{height:30.254687pt;}
.h6{height:31.008437pt;}
.h1a{height:33.867188pt;}
.h18{height:34.710938pt;}
.h7{height:34.965625pt;}
.h26{height:35.438125pt;}
.h12{height:35.531250pt;}
.h14{height:35.554688pt;}
.h2f{height:36.562188pt;}
.h2e{height:36.809062pt;}
.h1f{height:36.883125pt;}
.h10{height:37.479688pt;}
.h5{height:38.413438pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:42.578750pt;}
.h2{height:43.108125pt;}
.h1d{height:43.551875pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h30{height:61.280000pt;}
.hb{height:67.734375pt;}
.he{height:69.421875pt;}
.h17{height:82.880000pt;}
.h31{height:105.792000pt;}
.h19{height:124.832000pt;}
.h13{height:125.952000pt;}
.h8{height:136.800000pt;}
.h11{height:353.346667pt;}
.h0{height:1056.000000pt;}
.w9{width:36.960000pt;}
.wa{width:36.992000pt;}
.w8{width:37.120000pt;}
.w2{width:40.032000pt;}
.wc{width:40.320000pt;}
.wd{width:43.520000pt;}
.w15{width:49.280000pt;}
.w7{width:59.072000pt;}
.w10{width:62.272000pt;}
.w12{width:65.632000pt;}
.w16{width:70.432000pt;}
.w18{width:74.272000pt;}
.w11{width:90.720000pt;}
.w17{width:102.720000pt;}
.wb{width:122.080000pt;}
.w13{width:166.106667pt;}
.w6{width:197.786667pt;}
.we{width:203.706667pt;}
.wf{width:264.066667pt;}
.w19{width:292.666667pt;}
.w14{width:298.626667pt;}
.w5{width:521.053333pt;}
.w3{width:696.453333pt;}
.w1a{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.920000pt;}
.x5{left:7.680000pt;}
.x2b{left:9.920000pt;}
.x22{left:11.360000pt;}
.x2d{left:13.120000pt;}
.x41{left:14.240000pt;}
.x2c{left:15.840000pt;}
.x2f{left:16.800000pt;}
.x13{left:17.920000pt;}
.x2e{left:19.360000pt;}
.x49{left:20.640000pt;}
.x30{left:21.760000pt;}
.x28{left:24.160000pt;}
.x17{left:25.440000pt;}
.x3a{left:28.666667pt;}
.x4c{left:30.080000pt;}
.x15{left:31.400000pt;}
.x16{left:33.000000pt;}
.x4f{left:35.226667pt;}
.x39{left:36.960000pt;}
.x8{left:40.480000pt;}
.x3e{left:42.880000pt;}
.x33{left:44.640000pt;}
.x3f{left:46.400000pt;}
.x4{left:47.999988pt;}
.xb{left:50.879988pt;}
.x43{left:52.959988pt;}
.x3{left:53.919988pt;}
.x21{left:55.840000pt;}
.x4e{left:57.120000pt;}
.x18{left:58.239988pt;}
.x4b{left:59.360000pt;}
.x1f{left:65.439988pt;}
.x4d{left:67.680000pt;}
.x4a{left:68.640000pt;}
.x3d{left:70.720000pt;}
.x19{left:77.119988pt;}
.x3c{left:78.880000pt;}
.x3b{left:83.080000pt;}
.x38{left:84.840000pt;}
.x6{left:89.632000pt;}
.x40{left:91.240000pt;}
.x7{left:96.031988pt;}
.x23{left:115.552000pt;}
.x1e{left:122.431988pt;}
.x53{left:130.111988pt;}
.x1{left:133.786655pt;}
.x24{left:153.306667pt;}
.xf{left:159.546655pt;}
.x10{left:169.626655pt;}
.x42{left:171.546655pt;}
.x32{left:173.786667pt;}
.x44{left:175.386667pt;}
.x25{left:190.906667pt;}
.x2{left:196.186655pt;}
.xe{left:201.466655pt;}
.x20{left:224.506655pt;}
.x26{left:228.506667pt;}
.xd{left:241.146655pt;}
.x31{left:248.826655pt;}
.x57{left:262.786667pt;}
.x27{left:266.146667pt;}
.x50{left:272.706655pt;}
.x1c{left:290.146655pt;}
.x29{left:307.106667pt;}
.x45{left:342.146667pt;}
.x2a{left:344.706667pt;}
.x34{left:378.146667pt;}
.x46{left:392.066667pt;}
.x51{left:405.506655pt;}
.xa{left:408.066655pt;}
.x1b{left:410.626655pt;}
.xc{left:412.706655pt;}
.x11{left:413.666655pt;}
.x35{left:422.306667pt;}
.x1a{left:425.186655pt;}
.x56{left:447.773333pt;}
.x54{left:449.213321pt;}
.x47{left:463.133333pt;}
.x55{left:468.093321pt;}
.x36{left:485.213333pt;}
.x48{left:566.493333pt;}
.x12{left:568.893333pt;}
.x37{left:576.573333pt;}
.x52{left:692.613321pt;}
.x1d{left:705.573321pt;}
.x9{left:722.213333pt;}
}




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