
    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_b0bf8db0d194df12f7af1b11.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_6723ca2f67f9d13ca1ed6b73.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a1dfddda516d12cd0b89da80.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3cc8fc7bac10258054320f3f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f78e3ce8d86f436df2642c34.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_08eff86c7e87852b2796f604.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a274f24312f289f7dafef671.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_eb2f0c4ce755e293cdabb6eb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.940000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.060000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls1f{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.135600px;}
.ls18{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.460200px;}
.ls24{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.513600px;}
.ls23{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls22{letter-spacing:16.506720px;}
.ls2{letter-spacing:23.220000px;}
.ls20{letter-spacing:46.026720px;}
.ls1{letter-spacing:93.036000px;}
.ls3{letter-spacing:154.170720px;}
.ls14{letter-spacing:201.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.400200px;}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.093600px;}
.ws10{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.wsa{word-spacing:-14.274000px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.711360px;}
.wse{word-spacing:0.000000px;}
._19{margin-left:-200.460000px;}
._16{margin-left:-3.544080px;}
._6{margin-left:-2.142000px;}
._1{margin-left:-1.059840px;}
._0{width:1.185840px;}
._2{width:2.787360px;}
._7{width:3.877200px;}
._f{width:4.900320px;}
._10{width:6.034320px;}
._4{width:7.171920px;}
._3{width:8.478720px;}
._a{width:9.491760px;}
._9{width:11.175120px;}
._b{width:12.338640px;}
._17{width:13.781040px;}
._e{width:15.979200px;}
._15{width:17.116560px;}
._11{width:18.236160px;}
._c{width:19.840320px;}
._d{width:21.086400px;}
._8{width:23.412960px;}
._24{width:24.860160px;}
._25{width:26.570400px;}
._28{width:27.701280px;}
._1c{width:29.494800px;}
._1d{width:30.553920px;}
._1e{width:33.090000px;}
._23{width:34.389840px;}
._1b{width:35.678160px;}
._26{width:38.067120px;}
._27{width:53.315280px;}
._1f{width:56.363040px;}
._20{width:57.648000px;}
._22{width:65.421360px;}
._21{width:66.512880px;}
._18{width:80.244000px;}
._14{width:81.324000px;}
._5{width:93.833280px;}
._13{width:126.504000px;}
._12{width:155.664000px;}
._1a{width:201.204000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y18{bottom:5.760000px;}
.y123{bottom:5.940000px;}
.ya8{bottom:9.360000px;}
.ya0{bottom:10.980000px;}
.ya4{bottom:14.580000px;}
.y7{bottom:14.760000px;}
.ya2{bottom:19.620000px;}
.y27{bottom:25.560000px;}
.ya7{bottom:33.120000px;}
.y6{bottom:43.920000px;}
.y26{bottom:45.360000px;}
.ya6{bottom:56.880000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y25{bottom:65.160000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y24{bottom:85.140000px;}
.y4{bottom:86.400000px;}
.y74{bottom:88.200000px;}
.y133{bottom:89.640000px;}
.ydd{bottom:95.220000px;}
.y177{bottom:97.200000px;}
.y81{bottom:99.180000px;}
.y166{bottom:100.620000px;}
.y3c{bottom:101.700000px;}
.y23{bottom:104.940000px;}
.y9{bottom:107.490000px;}
.y73{bottom:108.180000px;}
.y132{bottom:109.440000px;}
.y108{bottom:110.520000px;}
.ydc{bottom:115.200000px;}
.y176{bottom:117.180000px;}
.y80{bottom:118.980000px;}
.y165{bottom:120.420000px;}
.y3b{bottom:121.680000px;}
.y3{bottom:122.610000px;}
.y22{bottom:124.740000px;}
.y72{bottom:127.980000px;}
.y131{bottom:129.420000px;}
.y107{bottom:130.500000px;}
.ydb{bottom:135.000000px;}
.y8{bottom:136.650000px;}
.y175{bottom:136.980000px;}
.y7f{bottom:138.780000px;}
.y164{bottom:140.220000px;}
.y3a{bottom:141.480000px;}
.y21{bottom:144.570000px;}
.y71{bottom:147.780000px;}
.y130{bottom:149.220000px;}
.y106{bottom:150.300000px;}
.yda{bottom:154.830000px;}
.y174{bottom:156.810000px;}
.y7e{bottom:158.610000px;}
.y163{bottom:160.050000px;}
.y39{bottom:161.310000px;}
.y20{bottom:164.370000px;}
.y70{bottom:167.610000px;}
.y12f{bottom:169.050000px;}
.y105{bottom:170.130000px;}
.yd9{bottom:174.630000px;}
.y173{bottom:176.610000px;}
.y7d{bottom:178.410000px;}
.y162{bottom:179.850000px;}
.y38{bottom:181.110000px;}
.y1f{bottom:184.350000px;}
.y6f{bottom:187.410000px;}
.y12e{bottom:188.850000px;}
.y104{bottom:189.930000px;}
.yd8{bottom:194.430000px;}
.y172{bottom:196.410000px;}
.y97{bottom:198.390000px;}
.y161{bottom:199.830000px;}
.y37{bottom:200.910000px;}
.y1e{bottom:204.150000px;}
.y6e{bottom:207.390000px;}
.y12d{bottom:208.650000px;}
.y103{bottom:209.730000px;}
.yd7{bottom:214.410000px;}
.y171{bottom:216.390000px;}
.y96{bottom:218.190000px;}
.y160{bottom:219.630000px;}
.y36{bottom:220.890000px;}
.y1d{bottom:223.950000px;}
.y6d{bottom:227.190000px;}
.y12c{bottom:228.630000px;}
.y102{bottom:229.710000px;}
.yd6{bottom:234.210000px;}
.y170{bottom:236.190000px;}
.y95{bottom:237.990000px;}
.y15f{bottom:239.430000px;}
.y35{bottom:240.690000px;}
.y1c{bottom:243.750000px;}
.y6c{bottom:246.990000px;}
.y12b{bottom:248.430000px;}
.y101{bottom:249.510000px;}
.yd5{bottom:254.010000px;}
.y16f{bottom:255.990000px;}
.y94{bottom:257.790000px;}
.y15e{bottom:259.230000px;}
.y34{bottom:260.490000px;}
.y12a{bottom:263.190000px;}
.y1b{bottom:263.550000px;}
.y6b{bottom:266.790000px;}
.y100{bottom:269.310000px;}
.yd4{bottom:273.810000px;}
.y16e{bottom:275.790000px;}
.y93{bottom:277.590000px;}
.y15d{bottom:279.030000px;}
.y33{bottom:280.290000px;}
.y1a{bottom:283.530000px;}
.y129{bottom:284.790000px;}
.y6a{bottom:286.590000px;}
.yff{bottom:289.110000px;}
.yd3{bottom:293.610000px;}
.y16d{bottom:295.590000px;}
.y92{bottom:297.570000px;}
.y15c{bottom:299.010000px;}
.y32{bottom:300.090000px;}
.y128{bottom:306.390000px;}
.y69{bottom:306.570000px;}
.yfe{bottom:308.910000px;}
.yd2{bottom:313.590000px;}
.y16c{bottom:315.570000px;}
.y91{bottom:317.370000px;}
.y15b{bottom:318.810000px;}
.y31{bottom:320.070000px;}
.y68{bottom:326.370000px;}
.y127{bottom:327.990000px;}
.yfd{bottom:328.710000px;}
.yd1{bottom:333.390000px;}
.y16b{bottom:335.370000px;}
.y90{bottom:337.170000px;}
.y15a{bottom:338.610000px;}
.y30{bottom:339.870000px;}
.y67{bottom:346.170000px;}
.yfc{bottom:348.690000px;}
.y126{bottom:349.590000px;}
.yd0{bottom:353.190000px;}
.y16a{bottom:355.170000px;}
.y8f{bottom:356.970000px;}
.y159{bottom:358.410000px;}
.y2f{bottom:359.670000px;}
.y66{bottom:365.970000px;}
.yfb{bottom:368.490000px;}
.y125{bottom:371.190000px;}
.ycf{bottom:372.990000px;}
.y169{bottom:374.970000px;}
.y8e{bottom:376.770000px;}
.y158{bottom:378.210000px;}
.y2e{bottom:379.470000px;}
.y65{bottom:385.770000px;}
.yfa{bottom:388.290000px;}
.yce{bottom:392.790000px;}
.y168{bottom:394.770000px;}
.y8d{bottom:396.750000px;}
.y157{bottom:398.190000px;}
.y2d{bottom:399.270000px;}
.y64{bottom:405.795000px;}
.yf9{bottom:408.135000px;}
.ycd{bottom:412.815000px;}
.y156{bottom:412.995000px;}
.y167{bottom:414.795000px;}
.y124{bottom:415.155000px;}
.y8c{bottom:416.595000px;}
.y2c{bottom:419.295000px;}
.y63{bottom:425.595000px;}
.yf8{bottom:427.935000px;}
.ycc{bottom:432.615000px;}
.y9e{bottom:434.595000px;}
.y8b{bottom:436.395000px;}
.y122{bottom:437.475000px;}
.y2b{bottom:439.095000px;}
.y62{bottom:445.395000px;}
.yf7{bottom:447.915000px;}
.ycb{bottom:452.415000px;}
.y9d{bottom:454.395000px;}
.y8a{bottom:456.195000px;}
.y2a{bottom:458.895000px;}
.y121{bottom:463.215000px;}
.y61{bottom:465.195000px;}
.yf6{bottom:467.715000px;}
.yca{bottom:472.215000px;}
.y9c{bottom:474.195000px;}
.y89{bottom:475.995000px;}
.y155{bottom:477.795000px;}
.y29{bottom:478.695000px;}
.y120{bottom:483.015000px;}
.y60{bottom:484.995000px;}
.yf5{bottom:487.515000px;}
.yc9{bottom:492.015000px;}
.y9b{bottom:493.995000px;}
.y28{bottom:498.495000px;}
.y154{bottom:499.395000px;}
.y11f{bottom:502.815000px;}
.y5f{bottom:504.975000px;}
.yf4{bottom:507.315000px;}
.yc8{bottom:511.995000px;}
.y19{bottom:513.435000px;}
.y9a{bottom:513.975000px;}
.y153{bottom:520.995000px;}
.y11e{bottom:522.615000px;}
.y5e{bottom:524.775000px;}
.yf3{bottom:527.115000px;}
.yc7{bottom:531.795000px;}
.y99{bottom:533.775000px;}
.yf2{bottom:542.055000px;}
.y11d{bottom:542.595000px;}
.y152{bottom:543.315000px;}
.y5d{bottom:544.575000px;}
.yc6{bottom:551.595000px;}
.y98{bottom:553.575000px;}
.y11c{bottom:562.395000px;}
.yf1{bottom:563.655000px;}
.y5c{bottom:564.375000px;}
.y151{bottom:565.635000px;}
.yc5{bottom:571.395000px;}
.y7c{bottom:573.375000px;}
.y11b{bottom:582.195000px;}
.y5b{bottom:584.175000px;}
.yf0{bottom:587.055000px;}
.yc4{bottom:591.195000px;}
.y150{bottom:592.995000px;}
.y7b{bottom:593.175000px;}
.y11a{bottom:601.995000px;}
.y5a{bottom:604.155000px;}
.yef{bottom:610.455000px;}
.yc3{bottom:611.175000px;}
.y14f{bottom:612.795000px;}
.y7a{bottom:613.155000px;}
.y119{bottom:621.795000px;}
.y59{bottom:623.955000px;}
.yc2{bottom:630.975000px;}
.y14e{bottom:632.775000px;}
.y79{bottom:632.955000px;}
.yee{bottom:633.855000px;}
.y118{bottom:641.775000px;}
.y58{bottom:643.755000px;}
.yc1{bottom:650.805000px;}
.y14d{bottom:652.605000px;}
.y78{bottom:652.785000px;}
.yed{bottom:657.285000px;}
.y117{bottom:661.605000px;}
.y57{bottom:663.585000px;}
.yc0{bottom:670.605000px;}
.y14c{bottom:672.405000px;}
.y77{bottom:672.585000px;}
.yec{bottom:678.885000px;}
.y116{bottom:681.405000px;}
.y56{bottom:683.385000px;}
.y14b{bottom:692.205000px;}
.y76{bottom:692.385000px;}
.ybf{bottom:699.405000px;}
.y115{bottom:701.205000px;}
.yeb{bottom:702.285000px;}
.y55{bottom:703.365000px;}
.y14a{bottom:712.005000px;}
.y75{bottom:712.365000px;}
.ybe{bottom:719.205000px;}
.y114{bottom:721.005000px;}
.y88{bottom:723.165000px;}
.yea{bottom:725.685000px;}
.y149{bottom:731.985000px;}
.y54{bottom:732.165000px;}
.ybd{bottom:739.185000px;}
.y113{bottom:740.805000px;}
.y87{bottom:742.965000px;}
.ye9{bottom:749.085000px;}
.y148{bottom:751.785000px;}
.y53{bottom:751.965000px;}
.ybc{bottom:758.985000px;}
.y112{bottom:760.785000px;}
.y86{bottom:762.765000px;}
.y147{bottom:771.585000px;}
.y52{bottom:771.765000px;}
.ye8{bottom:772.485000px;}
.ybb{bottom:778.785000px;}
.y111{bottom:780.585000px;}
.y85{bottom:782.565000px;}
.y146{bottom:791.385000px;}
.y51{bottom:791.565000px;}
.ye7{bottom:794.085000px;}
.yba{bottom:798.585000px;}
.y110{bottom:800.385000px;}
.y84{bottom:802.545000px;}
.y145{bottom:811.185000px;}
.y50{bottom:811.545000px;}
.y17{bottom:811.725000px;}
.ye6{bottom:815.685000px;}
.yb9{bottom:818.385000px;}
.y10f{bottom:820.185000px;}
.y83{bottom:822.345000px;}
.y144{bottom:831.165000px;}
.y4f{bottom:831.345000px;}
.y16{bottom:837.285000px;}
.yb8{bottom:838.365000px;}
.y10e{bottom:839.985000px;}
.y82{bottom:842.145000px;}
.y143{bottom:850.965000px;}
.y4e{bottom:851.145000px;}
.y10d{bottom:854.925000px;}
.yb7{bottom:858.165000px;}
.ye5{bottom:858.885000px;}
.y15{bottom:862.305000px;}
.y142{bottom:870.765000px;}
.y4d{bottom:870.945000px;}
.y10c{bottom:876.525000px;}
.yb6{bottom:877.965000px;}
.ye4{bottom:880.485000px;}
.y14{bottom:882.285000px;}
.y141{bottom:890.565000px;}
.y4c{bottom:890.745000px;}
.y13{bottom:896.865000px;}
.yb5{bottom:897.810000px;}
.y10b{bottom:898.170000px;}
.ye3{bottom:902.130000px;}
.y140{bottom:910.410000px;}
.y4b{bottom:910.770000px;}
.yb4{bottom:917.610000px;}
.y10a{bottom:919.770000px;}
.y12{bottom:921.930000px;}
.ye2{bottom:923.730000px;}
.ya3{bottom:929.310000px;}
.y13f{bottom:930.390000px;}
.y4a{bottom:930.570000px;}
.y11{bottom:937.050000px;}
.yb3{bottom:937.590000px;}
.y109{bottom:942.090000px;}
.ye1{bottom:945.330000px;}
.y13e{bottom:950.190000px;}
.y49{bottom:950.370000px;}
.yb2{bottom:957.390000px;}
.y10{bottom:958.830000px;}
.ye0{bottom:966.930000px;}
.y13d{bottom:969.990000px;}
.y48{bottom:970.170000px;}
.yb1{bottom:977.190000px;}
.yf{bottom:980.250000px;}
.ya5{bottom:982.230000px;}
.ydf{bottom:988.530000px;}
.y13c{bottom:989.790000px;}
.y47{bottom:989.970000px;}
.yb0{bottom:996.990000px;}
.ye{bottom:1003.650000px;}
.ya1{bottom:1008.150000px;}
.y13b{bottom:1009.590000px;}
.y46{bottom:1009.950000px;}
.yde{bottom:1010.130000px;}
.yaf{bottom:1016.790000px;}
.y13a{bottom:1029.570000px;}
.y45{bottom:1029.750000px;}
.yc{bottom:1030.470000px;}
.yae{bottom:1031.730000px;}
.y139{bottom:1044.330000px;}
.y1{bottom:1046.850000px;}
.y44{bottom:1049.550000px;}
.yad{bottom:1053.330000px;}
.y138{bottom:1067.730000px;}
.y43{bottom:1069.350000px;}
.yac{bottom:1074.930000px;}
.y9f{bottom:1081.590000px;}
.y42{bottom:1089.150000px;}
.y137{bottom:1091.130000px;}
.yab{bottom:1096.530000px;}
.y41{bottom:1109.130000px;}
.y136{bottom:1114.530000px;}
.yaa{bottom:1118.130000px;}
.y40{bottom:1128.930000px;}
.y135{bottom:1138.650000px;}
.ya9{bottom:1140.450000px;}
.y3f{bottom:1148.760000px;}
.y134{bottom:1161.000000px;}
.y3e{bottom:1168.560000px;}
.y3d{bottom:1194.840000px;}
.h3{height:2.082656px;}
.he{height:19.800000px;}
.h1b{height:19.980000px;}
.h18{height:21.600000px;}
.h17{height:21.636000px;}
.h19{height:23.400000px;}
.h1a{height:23.436000px;}
.h12{height:27.720000px;}
.hb{height:28.115859px;}
.h15{height:31.320000px;}
.h14{height:36.360000px;}
.hd{height:42.164648px;}
.h9{height:43.215117px;}
.h11{height:43.506914px;}
.h7{height:47.901094px;}
.hc{height:49.175859px;}
.h10{height:49.255313px;}
.h13{height:52.066406px;}
.ha{height:53.224453px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h16{height:73.620000px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hf{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:64.296000px;}
.w1b{width:66.240000px;}
.w18{width:67.680000px;}
.wf{width:67.896000px;}
.we{width:68.040000px;}
.w2b{width:91.116000px;}
.wd{width:91.836000px;}
.w14{width:93.456000px;}
.w1e{width:93.636000px;}
.w1d{width:106.560000px;}
.w2a{width:107.640000px;}
.w19{width:111.636000px;}
.w17{width:124.956000px;}
.w16{width:133.056000px;}
.w21{width:133.776000px;}
.w20{width:148.356000px;}
.w1a{width:150.150000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.wc{width:158.790000px;}
.w26{width:159.510000px;}
.w12{width:161.310000px;}
.w10{width:163.440000px;}
.w29{width:163.650000px;}
.w11{width:164.730000px;}
.w22{width:167.610000px;}
.w15{width:171.750000px;}
.w23{width:187.050000px;}
.wa{width:204.150000px;}
.wb{width:204.510000px;}
.w9{width:204.870000px;}
.w7{width:287.895000px;}
.w27{width:297.795000px;}
.w25{width:327.855000px;}
.w13{width:386.895000px;}
.w28{width:422.745000px;}
.w3{width:472.785000px;}
.w1f{width:488.445000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w24{width:785.160000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x11{left:10.800000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x2e{left:80.999987px;}
.x10{left:90.936000px;}
.x13{left:92.376000px;}
.x12{left:93.996000px;}
.xc{left:108.035987px;}
.x8{left:109.485000px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.x2{left:136.290000px;}
.x15{left:145.836000px;}
.x1e{left:178.950000px;}
.xe{left:182.729987px;}
.x27{left:187.770000px;}
.x3{left:208.470000px;}
.x16{left:213.870000px;}
.x6{left:236.385000px;}
.x1f{left:246.630000px;}
.xd{left:249.329987px;}
.x17{left:281.775000px;}
.xb{left:343.875000px;}
.xf{left:351.974987px;}
.x28{left:355.395000px;}
.x20{left:358.275000px;}
.x29{left:381.855000px;}
.x1b{left:440.895000px;}
.x18{left:445.215000px;}
.x2b{left:476.745000px;}
.x21{left:508.425000px;}
.x1c{left:534.345000px;}
.x2a{left:541.365000px;}
.x25{left:542.445000px;}
.x22{left:574.665000px;}
.x19{left:609.945000px;}
.x14{left:625.965000px;}
.x23{left:638.970000px;}
.x2c{left:640.410000px;}
.x9{left:681.270000px;}
.x26{left:690.810000px;}
.x1d{left:706.110000px;}
.x24{left:745.530000px;}
.x2d{left:748.050000px;}
.x1a{left:771.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.720000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1f{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.120533pt;}
.ls18{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.409067pt;}
.ls24{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.456533pt;}
.ls23{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls22{letter-spacing:14.672640pt;}
.ls2{letter-spacing:20.640000pt;}
.ls20{letter-spacing:40.912640pt;}
.ls1{letter-spacing:82.698667pt;}
.ls3{letter-spacing:137.040640pt;}
.ls14{letter-spacing:178.720000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.689067pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.416533pt;}
.ws10{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.632320pt;}
.wse{word-spacing:0.000000pt;}
._19{margin-left:-178.186667pt;}
._16{margin-left:-3.150293pt;}
._6{margin-left:-1.904000pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._2{width:2.477653pt;}
._7{width:3.446400pt;}
._f{width:4.355840pt;}
._10{width:5.363840pt;}
._4{width:6.375040pt;}
._3{width:7.536640pt;}
._a{width:8.437120pt;}
._9{width:9.933440pt;}
._b{width:10.967680pt;}
._17{width:12.249813pt;}
._e{width:14.203733pt;}
._15{width:15.214720pt;}
._11{width:16.209920pt;}
._c{width:17.635840pt;}
._d{width:18.743467pt;}
._8{width:20.811520pt;}
._24{width:22.097920pt;}
._25{width:23.618133pt;}
._28{width:24.623360pt;}
._1c{width:26.217600pt;}
._1d{width:27.159040pt;}
._1e{width:29.413333pt;}
._23{width:30.568747pt;}
._1b{width:31.713920pt;}
._26{width:33.837440pt;}
._27{width:47.391360pt;}
._1f{width:50.100480pt;}
._20{width:51.242667pt;}
._22{width:58.152320pt;}
._21{width:59.122560pt;}
._18{width:71.328000pt;}
._14{width:72.288000pt;}
._5{width:83.407360pt;}
._13{width:112.448000pt;}
._12{width:138.368000pt;}
._1a{width:178.848000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y18{bottom:5.120000pt;}
.y123{bottom:5.280000pt;}
.ya8{bottom:8.320000pt;}
.ya0{bottom:9.760000pt;}
.ya4{bottom:12.960000pt;}
.y7{bottom:13.120000pt;}
.ya2{bottom:17.440000pt;}
.y27{bottom:22.720000pt;}
.ya7{bottom:29.440000pt;}
.y6{bottom:39.040000pt;}
.y26{bottom:40.320000pt;}
.ya6{bottom:50.560000pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y25{bottom:57.920000pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y24{bottom:75.680000pt;}
.y4{bottom:76.800000pt;}
.y74{bottom:78.400000pt;}
.y133{bottom:79.680000pt;}
.ydd{bottom:84.640000pt;}
.y177{bottom:86.400000pt;}
.y81{bottom:88.160000pt;}
.y166{bottom:89.440000pt;}
.y3c{bottom:90.400000pt;}
.y23{bottom:93.280000pt;}
.y9{bottom:95.546667pt;}
.y73{bottom:96.160000pt;}
.y132{bottom:97.280000pt;}
.y108{bottom:98.240000pt;}
.ydc{bottom:102.400000pt;}
.y176{bottom:104.160000pt;}
.y80{bottom:105.760000pt;}
.y165{bottom:107.040000pt;}
.y3b{bottom:108.160000pt;}
.y3{bottom:108.986667pt;}
.y22{bottom:110.880000pt;}
.y72{bottom:113.760000pt;}
.y131{bottom:115.040000pt;}
.y107{bottom:116.000000pt;}
.ydb{bottom:120.000000pt;}
.y8{bottom:121.466667pt;}
.y175{bottom:121.760000pt;}
.y7f{bottom:123.360000pt;}
.y164{bottom:124.640000pt;}
.y3a{bottom:125.760000pt;}
.y21{bottom:128.506667pt;}
.y71{bottom:131.360000pt;}
.y130{bottom:132.640000pt;}
.y106{bottom:133.600000pt;}
.yda{bottom:137.626667pt;}
.y174{bottom:139.386667pt;}
.y7e{bottom:140.986667pt;}
.y163{bottom:142.266667pt;}
.y39{bottom:143.386667pt;}
.y20{bottom:146.106667pt;}
.y70{bottom:148.986667pt;}
.y12f{bottom:150.266667pt;}
.y105{bottom:151.226667pt;}
.yd9{bottom:155.226667pt;}
.y173{bottom:156.986667pt;}
.y7d{bottom:158.586667pt;}
.y162{bottom:159.866667pt;}
.y38{bottom:160.986667pt;}
.y1f{bottom:163.866667pt;}
.y6f{bottom:166.586667pt;}
.y12e{bottom:167.866667pt;}
.y104{bottom:168.826667pt;}
.yd8{bottom:172.826667pt;}
.y172{bottom:174.586667pt;}
.y97{bottom:176.346667pt;}
.y161{bottom:177.626667pt;}
.y37{bottom:178.586667pt;}
.y1e{bottom:181.466667pt;}
.y6e{bottom:184.346667pt;}
.y12d{bottom:185.466667pt;}
.y103{bottom:186.426667pt;}
.yd7{bottom:190.586667pt;}
.y171{bottom:192.346667pt;}
.y96{bottom:193.946667pt;}
.y160{bottom:195.226667pt;}
.y36{bottom:196.346667pt;}
.y1d{bottom:199.066667pt;}
.y6d{bottom:201.946667pt;}
.y12c{bottom:203.226667pt;}
.y102{bottom:204.186667pt;}
.yd6{bottom:208.186667pt;}
.y170{bottom:209.946667pt;}
.y95{bottom:211.546667pt;}
.y15f{bottom:212.826667pt;}
.y35{bottom:213.946667pt;}
.y1c{bottom:216.666667pt;}
.y6c{bottom:219.546667pt;}
.y12b{bottom:220.826667pt;}
.y101{bottom:221.786667pt;}
.yd5{bottom:225.786667pt;}
.y16f{bottom:227.546667pt;}
.y94{bottom:229.146667pt;}
.y15e{bottom:230.426667pt;}
.y34{bottom:231.546667pt;}
.y12a{bottom:233.946667pt;}
.y1b{bottom:234.266667pt;}
.y6b{bottom:237.146667pt;}
.y100{bottom:239.386667pt;}
.yd4{bottom:243.386667pt;}
.y16e{bottom:245.146667pt;}
.y93{bottom:246.746667pt;}
.y15d{bottom:248.026667pt;}
.y33{bottom:249.146667pt;}
.y1a{bottom:252.026667pt;}
.y129{bottom:253.146667pt;}
.y6a{bottom:254.746667pt;}
.yff{bottom:256.986667pt;}
.yd3{bottom:260.986667pt;}
.y16d{bottom:262.746667pt;}
.y92{bottom:264.506667pt;}
.y15c{bottom:265.786667pt;}
.y32{bottom:266.746667pt;}
.y128{bottom:272.346667pt;}
.y69{bottom:272.506667pt;}
.yfe{bottom:274.586667pt;}
.yd2{bottom:278.746667pt;}
.y16c{bottom:280.506667pt;}
.y91{bottom:282.106667pt;}
.y15b{bottom:283.386667pt;}
.y31{bottom:284.506667pt;}
.y68{bottom:290.106667pt;}
.y127{bottom:291.546667pt;}
.yfd{bottom:292.186667pt;}
.yd1{bottom:296.346667pt;}
.y16b{bottom:298.106667pt;}
.y90{bottom:299.706667pt;}
.y15a{bottom:300.986667pt;}
.y30{bottom:302.106667pt;}
.y67{bottom:307.706667pt;}
.yfc{bottom:309.946667pt;}
.y126{bottom:310.746667pt;}
.yd0{bottom:313.946667pt;}
.y16a{bottom:315.706667pt;}
.y8f{bottom:317.306667pt;}
.y159{bottom:318.586667pt;}
.y2f{bottom:319.706667pt;}
.y66{bottom:325.306667pt;}
.yfb{bottom:327.546667pt;}
.y125{bottom:329.946667pt;}
.ycf{bottom:331.546667pt;}
.y169{bottom:333.306667pt;}
.y8e{bottom:334.906667pt;}
.y158{bottom:336.186667pt;}
.y2e{bottom:337.306667pt;}
.y65{bottom:342.906667pt;}
.yfa{bottom:345.146667pt;}
.yce{bottom:349.146667pt;}
.y168{bottom:350.906667pt;}
.y8d{bottom:352.666667pt;}
.y157{bottom:353.946667pt;}
.y2d{bottom:354.906667pt;}
.y64{bottom:360.706667pt;}
.yf9{bottom:362.786667pt;}
.ycd{bottom:366.946667pt;}
.y156{bottom:367.106667pt;}
.y167{bottom:368.706667pt;}
.y124{bottom:369.026667pt;}
.y8c{bottom:370.306667pt;}
.y2c{bottom:372.706667pt;}
.y63{bottom:378.306667pt;}
.yf8{bottom:380.386667pt;}
.ycc{bottom:384.546667pt;}
.y9e{bottom:386.306667pt;}
.y8b{bottom:387.906667pt;}
.y122{bottom:388.866667pt;}
.y2b{bottom:390.306667pt;}
.y62{bottom:395.906667pt;}
.yf7{bottom:398.146667pt;}
.ycb{bottom:402.146667pt;}
.y9d{bottom:403.906667pt;}
.y8a{bottom:405.506667pt;}
.y2a{bottom:407.906667pt;}
.y121{bottom:411.746667pt;}
.y61{bottom:413.506667pt;}
.yf6{bottom:415.746667pt;}
.yca{bottom:419.746667pt;}
.y9c{bottom:421.506667pt;}
.y89{bottom:423.106667pt;}
.y155{bottom:424.706667pt;}
.y29{bottom:425.506667pt;}
.y120{bottom:429.346667pt;}
.y60{bottom:431.106667pt;}
.yf5{bottom:433.346667pt;}
.yc9{bottom:437.346667pt;}
.y9b{bottom:439.106667pt;}
.y28{bottom:443.106667pt;}
.y154{bottom:443.906667pt;}
.y11f{bottom:446.946667pt;}
.y5f{bottom:448.866667pt;}
.yf4{bottom:450.946667pt;}
.yc8{bottom:455.106667pt;}
.y19{bottom:456.386667pt;}
.y9a{bottom:456.866667pt;}
.y153{bottom:463.106667pt;}
.y11e{bottom:464.546667pt;}
.y5e{bottom:466.466667pt;}
.yf3{bottom:468.546667pt;}
.yc7{bottom:472.706667pt;}
.y99{bottom:474.466667pt;}
.yf2{bottom:481.826667pt;}
.y11d{bottom:482.306667pt;}
.y152{bottom:482.946667pt;}
.y5d{bottom:484.066667pt;}
.yc6{bottom:490.306667pt;}
.y98{bottom:492.066667pt;}
.y11c{bottom:499.906667pt;}
.yf1{bottom:501.026667pt;}
.y5c{bottom:501.666667pt;}
.y151{bottom:502.786667pt;}
.yc5{bottom:507.906667pt;}
.y7c{bottom:509.666667pt;}
.y11b{bottom:517.506667pt;}
.y5b{bottom:519.266667pt;}
.yf0{bottom:521.826667pt;}
.yc4{bottom:525.506667pt;}
.y150{bottom:527.106667pt;}
.y7b{bottom:527.266667pt;}
.y11a{bottom:535.106667pt;}
.y5a{bottom:537.026667pt;}
.yef{bottom:542.626667pt;}
.yc3{bottom:543.266667pt;}
.y14f{bottom:544.706667pt;}
.y7a{bottom:545.026667pt;}
.y119{bottom:552.706667pt;}
.y59{bottom:554.626667pt;}
.yc2{bottom:560.866667pt;}
.y14e{bottom:562.466667pt;}
.y79{bottom:562.626667pt;}
.yee{bottom:563.426667pt;}
.y118{bottom:570.466667pt;}
.y58{bottom:572.226667pt;}
.yc1{bottom:578.493333pt;}
.y14d{bottom:580.093333pt;}
.y78{bottom:580.253333pt;}
.yed{bottom:584.253333pt;}
.y117{bottom:588.093333pt;}
.y57{bottom:589.853333pt;}
.yc0{bottom:596.093333pt;}
.y14c{bottom:597.693333pt;}
.y77{bottom:597.853333pt;}
.yec{bottom:603.453333pt;}
.y116{bottom:605.693333pt;}
.y56{bottom:607.453333pt;}
.y14b{bottom:615.293333pt;}
.y76{bottom:615.453333pt;}
.ybf{bottom:621.693333pt;}
.y115{bottom:623.293333pt;}
.yeb{bottom:624.253333pt;}
.y55{bottom:625.213333pt;}
.y14a{bottom:632.893333pt;}
.y75{bottom:633.213333pt;}
.ybe{bottom:639.293333pt;}
.y114{bottom:640.893333pt;}
.y88{bottom:642.813333pt;}
.yea{bottom:645.053333pt;}
.y149{bottom:650.653333pt;}
.y54{bottom:650.813333pt;}
.ybd{bottom:657.053333pt;}
.y113{bottom:658.493333pt;}
.y87{bottom:660.413333pt;}
.ye9{bottom:665.853333pt;}
.y148{bottom:668.253333pt;}
.y53{bottom:668.413333pt;}
.ybc{bottom:674.653333pt;}
.y112{bottom:676.253333pt;}
.y86{bottom:678.013333pt;}
.y147{bottom:685.853333pt;}
.y52{bottom:686.013333pt;}
.ye8{bottom:686.653333pt;}
.ybb{bottom:692.253333pt;}
.y111{bottom:693.853333pt;}
.y85{bottom:695.613333pt;}
.y146{bottom:703.453333pt;}
.y51{bottom:703.613333pt;}
.ye7{bottom:705.853333pt;}
.yba{bottom:709.853333pt;}
.y110{bottom:711.453333pt;}
.y84{bottom:713.373333pt;}
.y145{bottom:721.053333pt;}
.y50{bottom:721.373333pt;}
.y17{bottom:721.533333pt;}
.ye6{bottom:725.053333pt;}
.yb9{bottom:727.453333pt;}
.y10f{bottom:729.053333pt;}
.y83{bottom:730.973333pt;}
.y144{bottom:738.813333pt;}
.y4f{bottom:738.973333pt;}
.y16{bottom:744.253333pt;}
.yb8{bottom:745.213333pt;}
.y10e{bottom:746.653333pt;}
.y82{bottom:748.573333pt;}
.y143{bottom:756.413333pt;}
.y4e{bottom:756.573333pt;}
.y10d{bottom:759.933333pt;}
.yb7{bottom:762.813333pt;}
.ye5{bottom:763.453333pt;}
.y15{bottom:766.493333pt;}
.y142{bottom:774.013333pt;}
.y4d{bottom:774.173333pt;}
.y10c{bottom:779.133333pt;}
.yb6{bottom:780.413333pt;}
.ye4{bottom:782.653333pt;}
.y14{bottom:784.253333pt;}
.y141{bottom:791.613333pt;}
.y4c{bottom:791.773333pt;}
.y13{bottom:797.213333pt;}
.yb5{bottom:798.053333pt;}
.y10b{bottom:798.373333pt;}
.ye3{bottom:801.893333pt;}
.y140{bottom:809.253333pt;}
.y4b{bottom:809.573333pt;}
.yb4{bottom:815.653333pt;}
.y10a{bottom:817.573333pt;}
.y12{bottom:819.493333pt;}
.ye2{bottom:821.093333pt;}
.ya3{bottom:826.053333pt;}
.y13f{bottom:827.013333pt;}
.y4a{bottom:827.173333pt;}
.y11{bottom:832.933333pt;}
.yb3{bottom:833.413333pt;}
.y109{bottom:837.413333pt;}
.ye1{bottom:840.293333pt;}
.y13e{bottom:844.613333pt;}
.y49{bottom:844.773333pt;}
.yb2{bottom:851.013333pt;}
.y10{bottom:852.293333pt;}
.ye0{bottom:859.493333pt;}
.y13d{bottom:862.213333pt;}
.y48{bottom:862.373333pt;}
.yb1{bottom:868.613333pt;}
.yf{bottom:871.333333pt;}
.ya5{bottom:873.093333pt;}
.ydf{bottom:878.693333pt;}
.y13c{bottom:879.813333pt;}
.y47{bottom:879.973333pt;}
.yb0{bottom:886.213333pt;}
.ye{bottom:892.133333pt;}
.ya1{bottom:896.133333pt;}
.y13b{bottom:897.413333pt;}
.y46{bottom:897.733333pt;}
.yde{bottom:897.893333pt;}
.yaf{bottom:903.813333pt;}
.y13a{bottom:915.173333pt;}
.y45{bottom:915.333333pt;}
.yc{bottom:915.973333pt;}
.yae{bottom:917.093333pt;}
.y139{bottom:928.293333pt;}
.y1{bottom:930.533333pt;}
.y44{bottom:932.933333pt;}
.yad{bottom:936.293333pt;}
.y138{bottom:949.093333pt;}
.y43{bottom:950.533333pt;}
.yac{bottom:955.493333pt;}
.y9f{bottom:961.413333pt;}
.y42{bottom:968.133333pt;}
.y137{bottom:969.893333pt;}
.yab{bottom:974.693333pt;}
.y41{bottom:985.893333pt;}
.y136{bottom:990.693333pt;}
.yaa{bottom:993.893333pt;}
.y40{bottom:1003.493333pt;}
.y135{bottom:1012.133333pt;}
.ya9{bottom:1013.733333pt;}
.y3f{bottom:1021.120000pt;}
.y134{bottom:1032.000000pt;}
.y3e{bottom:1038.720000pt;}
.y3d{bottom:1062.080000pt;}
.h3{height:1.851250pt;}
.he{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h18{height:19.200000pt;}
.h17{height:19.232000pt;}
.h19{height:20.800000pt;}
.h1a{height:20.832000pt;}
.h12{height:24.640000pt;}
.hb{height:24.991875pt;}
.h15{height:27.840000pt;}
.h14{height:32.320000pt;}
.hd{height:37.479688pt;}
.h9{height:38.413438pt;}
.h11{height:38.672812pt;}
.h7{height:42.578750pt;}
.hc{height:43.711875pt;}
.h10{height:43.782500pt;}
.h13{height:46.281250pt;}
.ha{height:47.310625pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h16{height:65.440000pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hf{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:57.152000pt;}
.w1b{width:58.880000pt;}
.w18{width:60.160000pt;}
.wf{width:60.352000pt;}
.we{width:60.480000pt;}
.w2b{width:80.992000pt;}
.wd{width:81.632000pt;}
.w14{width:83.072000pt;}
.w1e{width:83.232000pt;}
.w1d{width:94.720000pt;}
.w2a{width:95.680000pt;}
.w19{width:99.232000pt;}
.w17{width:111.072000pt;}
.w16{width:118.272000pt;}
.w21{width:118.912000pt;}
.w20{width:131.872000pt;}
.w1a{width:133.466667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.wc{width:141.146667pt;}
.w26{width:141.786667pt;}
.w12{width:143.386667pt;}
.w10{width:145.280000pt;}
.w29{width:145.466667pt;}
.w11{width:146.426667pt;}
.w22{width:148.986667pt;}
.w15{width:152.666667pt;}
.w23{width:166.266667pt;}
.wa{width:181.466667pt;}
.wb{width:181.786667pt;}
.w9{width:182.106667pt;}
.w7{width:255.906667pt;}
.w27{width:264.706667pt;}
.w25{width:291.426667pt;}
.w13{width:343.906667pt;}
.w28{width:375.773333pt;}
.w3{width:420.253333pt;}
.w1f{width:434.173333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w24{width:697.920000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x11{left:9.600000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x2e{left:71.999988pt;}
.x10{left:80.832000pt;}
.x13{left:82.112000pt;}
.x12{left:83.552000pt;}
.xc{left:96.031988pt;}
.x8{left:97.320000pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.x2{left:121.146667pt;}
.x15{left:129.632000pt;}
.x1e{left:159.066667pt;}
.xe{left:162.426655pt;}
.x27{left:166.906667pt;}
.x3{left:185.306667pt;}
.x16{left:190.106667pt;}
.x6{left:210.120000pt;}
.x1f{left:219.226667pt;}
.xd{left:221.626655pt;}
.x17{left:250.466667pt;}
.xb{left:305.666667pt;}
.xf{left:312.866655pt;}
.x28{left:315.906667pt;}
.x20{left:318.466667pt;}
.x29{left:339.426667pt;}
.x1b{left:391.906667pt;}
.x18{left:395.746667pt;}
.x2b{left:423.773333pt;}
.x21{left:451.933333pt;}
.x1c{left:474.973333pt;}
.x2a{left:481.213333pt;}
.x25{left:482.173333pt;}
.x22{left:510.813333pt;}
.x19{left:542.173333pt;}
.x14{left:556.413333pt;}
.x23{left:567.973333pt;}
.x2c{left:569.253333pt;}
.x9{left:605.573333pt;}
.x26{left:614.053333pt;}
.x1d{left:627.653333pt;}
.x24{left:662.693333pt;}
.x2d{left:664.933333pt;}
.x1a{left:685.573333pt;}
}




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