
    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_93727e466fa9fec2d966607d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2383a27be9dfef616b4ae527.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_5689c59931aec1d18016f2cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2bc8a0f982d8431fa53428b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6262e56b9cc67cdbc9998e28.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01309dc348e589635849dc66.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-65.520000px;}
.v7{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-60.480000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.lse{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.220800px;}
.lsf{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.738000px;}
.ls6{letter-spacing:1.620000px;}
.ls4{letter-spacing:2.340000px;}
.ls1c{letter-spacing:22.572000px;}
.ls17{letter-spacing:23.706720px;}
.ls1b{letter-spacing:49.932000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls15{letter-spacing:59.940000px;}
.ls3{letter-spacing:66.420000px;}
.ls12{letter-spacing:68.652000px;}
.ls0{letter-spacing:154.980000px;}
.ls13{letter-spacing:1268.400000px;}
.ls8{letter-spacing:1367.040000px;}
.ls1a{letter-spacing:1412.520000px;}
.ls14{letter-spacing:1593.960000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.wsf{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws13{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.146400px;}
.ws11{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.680200px;}
.ws3{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.wsc{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.374000px;}
.wsb{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._e{margin-left:-7.740000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.584240px;}
._6{width:3.113760px;}
._7{width:4.736160px;}
._c{width:5.846880px;}
._8{width:6.858000px;}
._9{width:8.719440px;}
._5{width:10.152000px;}
._a{width:11.164560px;}
._d{width:12.176880px;}
._1d{width:13.565520px;}
._14{width:16.135200px;}
._13{width:18.107280px;}
._10{width:19.493280px;}
._1b{width:24.516960px;}
._15{width:25.696800px;}
._f{width:28.386000px;}
._17{width:31.613040px;}
._11{width:33.585120px;}
._12{width:34.601040px;}
._16{width:38.365920px;}
._18{width:39.381840px;}
._19{width:45.051120px;}
._1a{width:46.321920px;}
._1c{width:113.902560px;}
._b{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.600000px;}
.y8d{bottom:3.765000px;}
.y13f{bottom:3.772500px;}
.y76{bottom:3.780000px;}
.y101{bottom:5.220000px;}
.y6a{bottom:6.660000px;}
.y69{bottom:7.020000px;}
.yc6{bottom:8.100000px;}
.yd0{bottom:9.000000px;}
.y120{bottom:14.040000px;}
.y117{bottom:14.400000px;}
.y9a{bottom:14.580000px;}
.y71{bottom:16.785000px;}
.yac{bottom:17.100000px;}
.y10c{bottom:17.280000px;}
.yf7{bottom:17.640000px;}
.y143{bottom:18.000000px;}
.ya8{bottom:19.260000px;}
.y10d{bottom:19.440000px;}
.y130{bottom:20.685000px;}
.y83{bottom:20.880000px;}
.y8c{bottom:21.045000px;}
.y13e{bottom:21.052500px;}
.y75{bottom:21.060000px;}
.ye0{bottom:22.125000px;}
.ycb{bottom:22.140000px;}
.y100{bottom:22.545000px;}
.y127{bottom:22.680000px;}
.yd2{bottom:23.040000px;}
.y104{bottom:24.120000px;}
.ybb{bottom:24.660000px;}
.y124{bottom:24.840000px;}
.y139{bottom:25.372500px;}
.yc5{bottom:25.380000px;}
.ycf{bottom:26.280000px;}
.ya3{bottom:28.080000px;}
.yea{bottom:28.440000px;}
.yb4{bottom:28.980000px;}
.y114{bottom:29.340000px;}
.y11c{bottom:31.320000px;}
.y116{bottom:31.500000px;}
.y146{bottom:31.860000px;}
.yef{bottom:32.760000px;}
.y70{bottom:34.065000px;}
.yab{bottom:34.380000px;}
.y133{bottom:34.725000px;}
.yf6{bottom:34.920000px;}
.ybf{bottom:35.100000px;}
.y10b{bottom:35.640000px;}
.ya7{bottom:36.540000px;}
.y108{bottom:36.720000px;}
.yf3{bottom:37.080000px;}
.y12f{bottom:37.965000px;}
.y7e{bottom:38.160000px;}
.y8b{bottom:38.325000px;}
.y74{bottom:38.340000px;}
.y14f{bottom:39.240000px;}
.ydf{bottom:39.405000px;}
.y13d{bottom:39.412500px;}
.yff{bottom:39.825000px;}
.yca{bottom:40.500000px;}
.y126{bottom:41.040000px;}
.yd1{bottom:41.400000px;}
.yb8{bottom:41.940000px;}
.y123{bottom:42.120000px;}
.y103{bottom:42.480000px;}
.y138{bottom:42.652500px;}
.yc4{bottom:42.660000px;}
.yce{bottom:43.560000px;}
.y9f{bottom:45.360000px;}
.yb3{bottom:46.080000px;}
.y11f{bottom:46.440000px;}
.ye9{bottom:46.800000px;}
.y113{bottom:47.700000px;}
.y11b{bottom:48.600000px;}
.y115{bottom:48.780000px;}
.yee{bottom:50.040000px;}
.y145{bottom:50.250000px;}
.y6f{bottom:51.345000px;}
.yaa{bottom:51.480000px;}
.y142{bottom:52.410000px;}
.y10a{bottom:52.920000px;}
.y132{bottom:53.085000px;}
.yf5{bottom:53.100000px;}
.ybe{bottom:53.280000px;}
.ya6{bottom:53.640000px;}
.y107{bottom:54.000000px;}
.yf2{bottom:54.180000px;}
.y2f{bottom:54.216000px;}
.yfe{bottom:54.945000px;}
.y12e{bottom:55.065000px;}
.y8a{bottom:55.425000px;}
.y7d{bottom:55.440000px;}
.y82{bottom:55.470000px;}
.y73{bottom:55.620000px;}
.yde{bottom:56.505000px;}
.y14e{bottom:56.520000px;}
.yba{bottom:57.060000px;}
.yfb{bottom:57.105000px;}
.y13c{bottom:57.586500px;}
.y2{bottom:57.996000px;}
.y125{bottom:58.320000px;}
.yc9{bottom:58.680000px;}
.y2e{bottom:58.896000px;}
.yb7{bottom:59.220000px;}
.y122{bottom:59.400000px;}
.y137{bottom:59.746500px;}
.yc3{bottom:59.760000px;}
.ya2{bottom:60.480000px;}
.ycd{bottom:60.840000px;}
.y9e{bottom:62.640000px;}
.yb2{bottom:63.360000px;}
.y11e{bottom:64.800000px;}
.y112{bottom:64.980000px;}
.ye8{bottom:65.160000px;}
.y11a{bottom:65.880000px;}
.y110{bottom:66.060000px;}
.yed{bottom:67.320000px;}
.y144{bottom:68.610000px;}
.y6e{bottom:68.625000px;}
.y141{bottom:69.690000px;}
.ya9{bottom:69.840000px;}
.y109{bottom:70.200000px;}
.yf4{bottom:70.380000px;}
.y12b{bottom:70.740000px;}
.ya5{bottom:70.920000px;}
.y131{bottom:71.265000px;}
.y106{bottom:71.280000px;}
.yf1{bottom:71.460000px;}
.ybd{bottom:71.640000px;}
.y12d{bottom:72.345000px;}
.y89{bottom:72.390000px;}
.y7c{bottom:72.720000px;}
.y81{bottom:72.750000px;}
.y155{bottom:72.765000px;}
.y129{bottom:72.900000px;}
.yfd{bottom:73.305000px;}
.yfa{bottom:74.385000px;}
.y14d{bottom:74.880000px;}
.ydd{bottom:74.910000px;}
.yb9{bottom:75.420000px;}
.y13b{bottom:75.946500px;}
.yc8{bottom:75.960000px;}
.yb6{bottom:76.500000px;}
.y1{bottom:76.896000px;}
.y136{bottom:77.026500px;}
.yc2{bottom:77.040000px;}
.yb1{bottom:78.480000px;}
.ya1{bottom:78.840000px;}
.y9d{bottom:79.920000px;}
.yaf{bottom:80.640000px;}
.y96{bottom:81.216000px;}
.y11d{bottom:81.900000px;}
.y111{bottom:82.260000px;}
.ye7{bottom:82.440000px;}
.y119{bottom:82.980000px;}
.y10f{bottom:83.340000px;}
.yec{bottom:84.600000px;}
.y6d{bottom:85.905000px;}
.y12a{bottom:88.920000px;}
.y5d{bottom:89.496000px;}
.y7b{bottom:90.000000px;}
.y80{bottom:90.030000px;}
.y154{bottom:90.045000px;}
.yfc{bottom:90.585000px;}
.yf9{bottom:91.665000px;}
.y14c{bottom:92.160000px;}
.ydc{bottom:92.190000px;}
.y17d{bottom:93.096000px;}
.y13a{bottom:93.226500px;}
.yc7{bottom:93.240000px;}
.y135{bottom:94.306500px;}
.yc1{bottom:94.320000px;}
.ya0{bottom:96.120000px;}
.y95{bottom:96.696000px;}
.yb0{bottom:96.885000px;}
.y9c{bottom:97.200000px;}
.yae{bottom:97.965000px;}
.ye6{bottom:99.540000px;}
.y134{bottom:100.303500px;}
.yeb{bottom:101.700000px;}
.y5c{bottom:101.916000px;}
.y6c{bottom:103.005000px;}
.y153{bottom:107.145000px;}
.y7a{bottom:107.280000px;}
.y14b{bottom:109.260000px;}
.y2b{bottom:110.016000px;}
.y149{bottom:110.340000px;}
.ydb{bottom:110.550000px;}
.y17c{bottom:111.096000px;}
.y94{bottom:112.356000px;}
.yd7{bottom:112.710000px;}
.ye5{bottom:117.930000px;}
.ye3{bottom:119.010000px;}
.y2a{bottom:122.256000px;}
.y79{bottom:124.380000px;}
.y152{bottom:124.425000px;}
.y14a{bottom:126.540000px;}
.y148{bottom:127.620000px;}
.yda{bottom:127.830000px;}
.y93{bottom:128.016000px;}
.y17b{bottom:128.916000px;}
.yd6{bottom:129.990000px;}
.ye4{bottom:135.210000px;}
.ye2{bottom:136.290000px;}
.y151{bottom:141.525000px;}
.y78{bottom:141.660000px;}
.y92{bottom:143.496000px;}
.yd9{bottom:146.010000px;}
.y17a{bottom:146.916000px;}
.yd5{bottom:147.090000px;}
.y91{bottom:159.150000px;}
.yd8{bottom:163.290000px;}
.yd4{bottom:164.370000px;}
.y179{bottom:164.910000px;}
.y90{bottom:174.810000px;}
.y178{bottom:182.730000px;}
.y8f{bottom:190.290000px;}
.y177{bottom:200.730000px;}
.y8e{bottom:206.310000px;}
.y12c{bottom:208.845000px;}
.yd3{bottom:215.325000px;}
.y176{bottom:218.550000px;}
.y88{bottom:219.285000px;}
.y175{bottom:236.550000px;}
.y174{bottom:254.550000px;}
.y173{bottom:272.370000px;}
.y172{bottom:290.415000px;}
.y128{bottom:295.455000px;}
.y87{bottom:306.255000px;}
.y171{bottom:308.235000px;}
.y170{bottom:326.235000px;}
.y16f{bottom:344.235000px;}
.y16e{bottom:362.055000px;}
.y29{bottom:364.215000px;}
.y28{bottom:379.695000px;}
.y16d{bottom:380.055000px;}
.y85{bottom:393.375000px;}
.ycc{bottom:393.915000px;}
.y27{bottom:395.355000px;}
.y16c{bottom:397.875000px;}
.y121{bottom:399.855000px;}
.y26{bottom:410.835000px;}
.y16b{bottom:415.875000px;}
.y25{bottom:426.315000px;}
.y16a{bottom:433.875000px;}
.y24{bottom:441.795000px;}
.y169{bottom:449.355000px;}
.y23{bottom:457.455000px;}
.y84{bottom:463.035000px;}
.yc0{bottom:468.975000px;}
.y5b{bottom:470.415000px;}
.y22{bottom:472.935000px;}
.y118{bottom:473.475000px;}
.y168{bottom:480.675000px;}
.y5a{bottom:485.895000px;}
.y21{bottom:488.415000px;}
.y167{bottom:496.155000px;}
.y59{bottom:501.375000px;}
.y166{bottom:511.635000px;}
.y7f{bottom:515.595000px;}
.y58{bottom:516.855000px;}
.y20{bottom:519.195000px;}
.y165{bottom:527.295000px;}
.y57{bottom:532.515000px;}
.y164{bottom:542.775000px;}
.y56{bottom:547.995000px;}
.y1f{bottom:550.335000px;}
.y163{bottom:558.435000px;}
.y55{bottom:563.475000px;}
.y1e{bottom:568.545000px;}
.y10e{bottom:570.885000px;}
.y162{bottom:573.945000px;}
.ybc{bottom:577.545000px;}
.y54{bottom:579.165000px;}
.y161{bottom:589.425000px;}
.y53{bottom:594.285000px;}
.y1d{bottom:597.525000px;}
.y160{bottom:605.085000px;}
.y52{bottom:609.945000px;}
.y1c{bottom:615.705000px;}
.y77{bottom:619.845000px;}
.y15f{bottom:620.565000px;}
.y51{bottom:625.965000px;}
.y1b{bottom:631.185000px;}
.y15e{bottom:636.045000px;}
.y50{bottom:641.445000px;}
.y1a{bottom:646.845000px;}
.y15d{bottom:651.525000px;}
.y4f{bottom:656.925000px;}
.y19{bottom:662.325000px;}
.yb5{bottom:664.485000px;}
.y15c{bottom:667.185000px;}
.y105{bottom:668.445000px;}
.y4e{bottom:672.405000px;}
.y18{bottom:677.805000px;}
.y15b{bottom:682.665000px;}
.y4d{bottom:688.065000px;}
.y17{bottom:693.465000px;}
.y15a{bottom:698.145000px;}
.y4c{bottom:703.545000px;}
.y159{bottom:713.805000px;}
.y16{bottom:715.605000px;}
.y4b{bottom:719.025000px;}
.y158{bottom:728.925000px;}
.y4a{bottom:734.505000px;}
.y15{bottom:742.425000px;}
.y157{bottom:744.585000px;}
.y49{bottom:750.165000px;}
.y102{bottom:753.945000px;}
.yad{bottom:755.205000px;}
.y14{bottom:757.905000px;}
.y156{bottom:760.245000px;}
.y48{bottom:765.645000px;}
.y13{bottom:773.385000px;}
.y72{bottom:775.725000px;}
.y47{bottom:781.305000px;}
.y150{bottom:789.225000px;}
.y46{bottom:796.785000px;}
.y12{bottom:808.125000px;}
.y45{bottom:812.265000px;}
.y44{bottom:827.745000px;}
.yf8{bottom:829.005000px;}
.y11{bottom:829.545000px;}
.y43{bottom:843.405000px;}
.y6b{bottom:845.565000px;}
.y10{bottom:858.390000px;}
.y42{bottom:858.750000px;}
.ya4{bottom:867.390000px;}
.y41{bottom:874.230000px;}
.y40{bottom:889.890000px;}
.yf{bottom:893.310000px;}
.y3f{bottom:905.730000px;}
.y3e{bottom:921.210000px;}
.ye{bottom:932.370000px;}
.yf0{bottom:934.890000px;}
.y3d{bottom:936.870000px;}
.y147{bottom:945.330000px;}
.y3c{bottom:952.350000px;}
.y9b{bottom:952.530000px;}
.yd{bottom:956.670000px;}
.y68{bottom:962.970000px;}
.y3b{bottom:967.830000px;}
.y3a{bottom:983.490000px;}
.y67{bottom:987.630000px;}
.y39{bottom:998.970000px;}
.y66{bottom:1003.110000px;}
.y38{bottom:1014.630000px;}
.yc{bottom:1016.070000px;}
.ye1{bottom:1020.570000px;}
.y37{bottom:1029.930000px;}
.y9{bottom:1034.070000px;}
.y65{bottom:1034.430000px;}
.yb{bottom:1039.290000px;}
.y64{bottom:1049.910000px;}
.y8{bottom:1057.290000px;}
.y36{bottom:1061.430000px;}
.y99{bottom:1063.950000px;}
.y63{bottom:1065.390000px;}
.ya{bottom:1071.330000px;}
.y35{bottom:1076.910000px;}
.y62{bottom:1080.870000px;}
.y7{bottom:1086.630000px;}
.y140{bottom:1087.170000px;}
.y34{bottom:1093.470000px;}
.y98{bottom:1096.170000px;}
.y61{bottom:1096.530000px;}
.y6{bottom:1105.710000px;}
.y33{bottom:1110.030000px;}
.y60{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y32{bottom:1126.590000px;}
.y5f{bottom:1127.310000px;}
.y4{bottom:1140.300000px;}
.y5e{bottom:1143.000000px;}
.y31{bottom:1143.360000px;}
.y3{bottom:1158.300000px;}
.y97{bottom:1158.660000px;}
.y30{bottom:1159.020000px;}
.y2d{bottom:1175.220000px;}
.y2c{bottom:1193.760000px;}
.h15{height:20.505000px;}
.h1f{height:28.425000px;}
.hd{height:35.314453px;}
.h10{height:38.158594px;}
.h2e{height:43.215117px;}
.h11{height:47.344922px;}
.h7{height:48.616875px;}
.h1b{height:51.825000px;}
.hc{height:52.971680px;}
.h12{height:52.998047px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h8{height:55.796836px;}
.h13{height:55.824609px;}
.h9{height:58.621992px;}
.h16{height:58.651172px;}
.h4{height:60.226875px;}
.h21{height:61.423863px;}
.hf{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h1c{height:68.925000px;}
.h18{height:69.120000px;}
.hb{height:72.326250px;}
.h3{height:72.562500px;}
.h31{height:72.885000px;}
.h27{height:74.325000px;}
.h2c{height:74.340000px;}
.h6{height:81.995625px;}
.h35{height:83.190000px;}
.h22{height:84.405000px;}
.h2d{height:84.780000px;}
.ha{height:84.898125px;}
.h2a{height:84.945000px;}
.h33{height:85.881000px;}
.h1d{height:86.205000px;}
.h25{height:86.220000px;}
.h1e{height:86.241000px;}
.h24{height:90.000000px;}
.h30{height:96.510000px;}
.h2f{height:96.840000px;}
.h32{height:103.485000px;}
.h1a{height:103.530000px;}
.h2b{height:105.142500px;}
.h34{height:107.812500px;}
.h26{height:107.850000px;}
.h20{height:110.685000px;}
.h23{height:111.442500px;}
.h17{height:116.482500px;}
.h36{height:141.105000px;}
.h29{height:149.790000px;}
.h19{height:155.160000px;}
.h37{height:155.190000px;}
.h28{height:177.855000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:71.629500px;}
.w7{width:75.049500px;}
.w8{width:126.741000px;}
.w5{width:180.210000px;}
.w3{width:186.855000px;}
.w4{width:201.315000px;}
.w9{width:222.330000px;}
.wa{width:254.400000px;}
.w6{width:642.195000px;}
.wb{width:680.895000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x17{left:7.729500px;}
.x2b{left:8.805000px;}
.x37{left:10.065000px;}
.x25{left:11.370000px;}
.x2a{left:12.409500px;}
.x20{left:13.485000px;}
.x30{left:15.660000px;}
.x31{left:16.740000px;}
.x34{left:18.030000px;}
.x24{left:19.470000px;}
.x22{left:20.505000px;}
.x2d{left:22.485000px;}
.x29{left:23.580000px;}
.x33{left:25.905000px;}
.x21{left:27.165000px;}
.x2c{left:28.965000px;}
.x2{left:30.060000px;}
.x19{left:34.410000px;}
.x1e{left:35.803500px;}
.x27{left:37.980000px;}
.x36{left:41.610000px;}
.xb{left:46.800000px;}
.x32{left:47.880000px;}
.xd{left:50.400000px;}
.x3f{left:51.660000px;}
.x1d{left:54.720000px;}
.x11{left:57.060000px;}
.x2e{left:59.790000px;}
.x35{left:64.800000px;}
.x2f{left:66.990000px;}
.x28{left:69.510000px;}
.x8{left:82.476000px;}
.x3c{left:83.910000px;}
.x26{left:90.000000px;}
.x1b{left:91.110000px;}
.x1f{left:93.450000px;}
.x23{left:100.650000px;}
.x3e{left:103.890000px;}
.x39{left:114.346500px;}
.x16{left:131.986500px;}
.x3a{left:190.305000px;}
.x18{left:204.345000px;}
.xa{left:211.890000px;}
.x38{left:226.830000px;}
.x5{left:244.155000px;}
.x13{left:249.015000px;}
.x3{left:270.255000px;}
.x15{left:274.395000px;}
.xf{left:276.375000px;}
.x4{left:290.595000px;}
.x3b{left:317.775000px;}
.x9{left:389.055000px;}
.x1a{left:391.935000px;}
.x40{left:403.485000px;}
.x14{left:407.805000px;}
.xc{left:412.485000px;}
.x1{left:440.745000px;}
.x10{left:449.205000px;}
.x6{left:478.905000px;}
.x7{left:506.445000px;}
.x3d{left:540.840000px;}
.x1c{left:593.970000px;}
.xe{left:620.250000px;}
.x12{left:634.830000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.240000pt;}
.v7{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-53.760000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.196267pt;}
.lsf{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls1c{letter-spacing:20.064000pt;}
.ls17{letter-spacing:21.072640pt;}
.ls1b{letter-spacing:44.384000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls15{letter-spacing:53.280000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls12{letter-spacing:61.024000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls13{letter-spacing:1127.466667pt;}
.ls8{letter-spacing:1215.146667pt;}
.ls1a{letter-spacing:1255.573333pt;}
.ls14{letter-spacing:1416.853333pt;}
.ws12{word-spacing:-53.120000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.049067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.wsc{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.888000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._e{margin-left:-6.880000pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.408213pt;}
._6{width:2.767787pt;}
._7{width:4.209920pt;}
._c{width:5.197227pt;}
._8{width:6.096000pt;}
._9{width:7.750613pt;}
._5{width:9.024000pt;}
._a{width:9.924053pt;}
._d{width:10.823893pt;}
._1d{width:12.058240pt;}
._14{width:14.342400pt;}
._13{width:16.095360pt;}
._10{width:17.327360pt;}
._1b{width:21.792853pt;}
._15{width:22.841600pt;}
._f{width:25.232000pt;}
._17{width:28.100480pt;}
._11{width:29.853440pt;}
._12{width:30.756480pt;}
._16{width:34.103040pt;}
._18{width:35.006080pt;}
._19{width:40.045440pt;}
._1a{width:41.175040pt;}
._1c{width:101.246720pt;}
._b{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:3.200000pt;}
.y8d{bottom:3.346667pt;}
.y13f{bottom:3.353333pt;}
.y76{bottom:3.360000pt;}
.y101{bottom:4.640000pt;}
.y6a{bottom:5.920000pt;}
.y69{bottom:6.240000pt;}
.yc6{bottom:7.200000pt;}
.yd0{bottom:8.000000pt;}
.y120{bottom:12.480000pt;}
.y117{bottom:12.800000pt;}
.y9a{bottom:12.960000pt;}
.y71{bottom:14.920000pt;}
.yac{bottom:15.200000pt;}
.y10c{bottom:15.360000pt;}
.yf7{bottom:15.680000pt;}
.y143{bottom:16.000000pt;}
.ya8{bottom:17.120000pt;}
.y10d{bottom:17.280000pt;}
.y130{bottom:18.386667pt;}
.y83{bottom:18.560000pt;}
.y8c{bottom:18.706667pt;}
.y13e{bottom:18.713333pt;}
.y75{bottom:18.720000pt;}
.ye0{bottom:19.666667pt;}
.ycb{bottom:19.680000pt;}
.y100{bottom:20.040000pt;}
.y127{bottom:20.160000pt;}
.yd2{bottom:20.480000pt;}
.y104{bottom:21.440000pt;}
.ybb{bottom:21.920000pt;}
.y124{bottom:22.080000pt;}
.y139{bottom:22.553333pt;}
.yc5{bottom:22.560000pt;}
.ycf{bottom:23.360000pt;}
.ya3{bottom:24.960000pt;}
.yea{bottom:25.280000pt;}
.yb4{bottom:25.760000pt;}
.y114{bottom:26.080000pt;}
.y11c{bottom:27.840000pt;}
.y116{bottom:28.000000pt;}
.y146{bottom:28.320000pt;}
.yef{bottom:29.120000pt;}
.y70{bottom:30.280000pt;}
.yab{bottom:30.560000pt;}
.y133{bottom:30.866667pt;}
.yf6{bottom:31.040000pt;}
.ybf{bottom:31.200000pt;}
.y10b{bottom:31.680000pt;}
.ya7{bottom:32.480000pt;}
.y108{bottom:32.640000pt;}
.yf3{bottom:32.960000pt;}
.y12f{bottom:33.746667pt;}
.y7e{bottom:33.920000pt;}
.y8b{bottom:34.066667pt;}
.y74{bottom:34.080000pt;}
.y14f{bottom:34.880000pt;}
.ydf{bottom:35.026667pt;}
.y13d{bottom:35.033333pt;}
.yff{bottom:35.400000pt;}
.yca{bottom:36.000000pt;}
.y126{bottom:36.480000pt;}
.yd1{bottom:36.800000pt;}
.yb8{bottom:37.280000pt;}
.y123{bottom:37.440000pt;}
.y103{bottom:37.760000pt;}
.y138{bottom:37.913333pt;}
.yc4{bottom:37.920000pt;}
.yce{bottom:38.720000pt;}
.y9f{bottom:40.320000pt;}
.yb3{bottom:40.960000pt;}
.y11f{bottom:41.280000pt;}
.ye9{bottom:41.600000pt;}
.y113{bottom:42.400000pt;}
.y11b{bottom:43.200000pt;}
.y115{bottom:43.360000pt;}
.yee{bottom:44.480000pt;}
.y145{bottom:44.666667pt;}
.y6f{bottom:45.640000pt;}
.yaa{bottom:45.760000pt;}
.y142{bottom:46.586667pt;}
.y10a{bottom:47.040000pt;}
.y132{bottom:47.186667pt;}
.yf5{bottom:47.200000pt;}
.ybe{bottom:47.360000pt;}
.ya6{bottom:47.680000pt;}
.y107{bottom:48.000000pt;}
.yf2{bottom:48.160000pt;}
.y2f{bottom:48.192000pt;}
.yfe{bottom:48.840000pt;}
.y12e{bottom:48.946667pt;}
.y8a{bottom:49.266667pt;}
.y7d{bottom:49.280000pt;}
.y82{bottom:49.306667pt;}
.y73{bottom:49.440000pt;}
.yde{bottom:50.226667pt;}
.y14e{bottom:50.240000pt;}
.yba{bottom:50.720000pt;}
.yfb{bottom:50.760000pt;}
.y13c{bottom:51.188000pt;}
.y2{bottom:51.552000pt;}
.y125{bottom:51.840000pt;}
.yc9{bottom:52.160000pt;}
.y2e{bottom:52.352000pt;}
.yb7{bottom:52.640000pt;}
.y122{bottom:52.800000pt;}
.y137{bottom:53.108000pt;}
.yc3{bottom:53.120000pt;}
.ya2{bottom:53.760000pt;}
.ycd{bottom:54.080000pt;}
.y9e{bottom:55.680000pt;}
.yb2{bottom:56.320000pt;}
.y11e{bottom:57.600000pt;}
.y112{bottom:57.760000pt;}
.ye8{bottom:57.920000pt;}
.y11a{bottom:58.560000pt;}
.y110{bottom:58.720000pt;}
.yed{bottom:59.840000pt;}
.y144{bottom:60.986667pt;}
.y6e{bottom:61.000000pt;}
.y141{bottom:61.946667pt;}
.ya9{bottom:62.080000pt;}
.y109{bottom:62.400000pt;}
.yf4{bottom:62.560000pt;}
.y12b{bottom:62.880000pt;}
.ya5{bottom:63.040000pt;}
.y131{bottom:63.346667pt;}
.y106{bottom:63.360000pt;}
.yf1{bottom:63.520000pt;}
.ybd{bottom:63.680000pt;}
.y12d{bottom:64.306667pt;}
.y89{bottom:64.346667pt;}
.y7c{bottom:64.640000pt;}
.y81{bottom:64.666667pt;}
.y155{bottom:64.680000pt;}
.y129{bottom:64.800000pt;}
.yfd{bottom:65.160000pt;}
.yfa{bottom:66.120000pt;}
.y14d{bottom:66.560000pt;}
.ydd{bottom:66.586667pt;}
.yb9{bottom:67.040000pt;}
.y13b{bottom:67.508000pt;}
.yc8{bottom:67.520000pt;}
.yb6{bottom:68.000000pt;}
.y1{bottom:68.352000pt;}
.y136{bottom:68.468000pt;}
.yc2{bottom:68.480000pt;}
.yb1{bottom:69.760000pt;}
.ya1{bottom:70.080000pt;}
.y9d{bottom:71.040000pt;}
.yaf{bottom:71.680000pt;}
.y96{bottom:72.192000pt;}
.y11d{bottom:72.800000pt;}
.y111{bottom:73.120000pt;}
.ye7{bottom:73.280000pt;}
.y119{bottom:73.760000pt;}
.y10f{bottom:74.080000pt;}
.yec{bottom:75.200000pt;}
.y6d{bottom:76.360000pt;}
.y12a{bottom:79.040000pt;}
.y5d{bottom:79.552000pt;}
.y7b{bottom:80.000000pt;}
.y80{bottom:80.026667pt;}
.y154{bottom:80.040000pt;}
.yfc{bottom:80.520000pt;}
.yf9{bottom:81.480000pt;}
.y14c{bottom:81.920000pt;}
.ydc{bottom:81.946667pt;}
.y17d{bottom:82.752000pt;}
.y13a{bottom:82.868000pt;}
.yc7{bottom:82.880000pt;}
.y135{bottom:83.828000pt;}
.yc1{bottom:83.840000pt;}
.ya0{bottom:85.440000pt;}
.y95{bottom:85.952000pt;}
.yb0{bottom:86.120000pt;}
.y9c{bottom:86.400000pt;}
.yae{bottom:87.080000pt;}
.ye6{bottom:88.480000pt;}
.y134{bottom:89.158667pt;}
.yeb{bottom:90.400000pt;}
.y5c{bottom:90.592000pt;}
.y6c{bottom:91.560000pt;}
.y153{bottom:95.240000pt;}
.y7a{bottom:95.360000pt;}
.y14b{bottom:97.120000pt;}
.y2b{bottom:97.792000pt;}
.y149{bottom:98.080000pt;}
.ydb{bottom:98.266667pt;}
.y17c{bottom:98.752000pt;}
.y94{bottom:99.872000pt;}
.yd7{bottom:100.186667pt;}
.ye5{bottom:104.826667pt;}
.ye3{bottom:105.786667pt;}
.y2a{bottom:108.672000pt;}
.y79{bottom:110.560000pt;}
.y152{bottom:110.600000pt;}
.y14a{bottom:112.480000pt;}
.y148{bottom:113.440000pt;}
.yda{bottom:113.626667pt;}
.y93{bottom:113.792000pt;}
.y17b{bottom:114.592000pt;}
.yd6{bottom:115.546667pt;}
.ye4{bottom:120.186667pt;}
.ye2{bottom:121.146667pt;}
.y151{bottom:125.800000pt;}
.y78{bottom:125.920000pt;}
.y92{bottom:127.552000pt;}
.yd9{bottom:129.786667pt;}
.y17a{bottom:130.592000pt;}
.yd5{bottom:130.746667pt;}
.y91{bottom:141.466667pt;}
.yd8{bottom:145.146667pt;}
.yd4{bottom:146.106667pt;}
.y179{bottom:146.586667pt;}
.y90{bottom:155.386667pt;}
.y178{bottom:162.426667pt;}
.y8f{bottom:169.146667pt;}
.y177{bottom:178.426667pt;}
.y8e{bottom:183.386667pt;}
.y12c{bottom:185.640000pt;}
.yd3{bottom:191.400000pt;}
.y176{bottom:194.266667pt;}
.y88{bottom:194.920000pt;}
.y175{bottom:210.266667pt;}
.y174{bottom:226.266667pt;}
.y173{bottom:242.106667pt;}
.y172{bottom:258.146667pt;}
.y128{bottom:262.626667pt;}
.y87{bottom:272.226667pt;}
.y171{bottom:273.986667pt;}
.y170{bottom:289.986667pt;}
.y16f{bottom:305.986667pt;}
.y16e{bottom:321.826667pt;}
.y29{bottom:323.746667pt;}
.y28{bottom:337.506667pt;}
.y16d{bottom:337.826667pt;}
.y85{bottom:349.666667pt;}
.ycc{bottom:350.146667pt;}
.y27{bottom:351.426667pt;}
.y16c{bottom:353.666667pt;}
.y121{bottom:355.426667pt;}
.y26{bottom:365.186667pt;}
.y16b{bottom:369.666667pt;}
.y25{bottom:378.946667pt;}
.y16a{bottom:385.666667pt;}
.y24{bottom:392.706667pt;}
.y169{bottom:399.426667pt;}
.y23{bottom:406.626667pt;}
.y84{bottom:411.586667pt;}
.yc0{bottom:416.866667pt;}
.y5b{bottom:418.146667pt;}
.y22{bottom:420.386667pt;}
.y118{bottom:420.866667pt;}
.y168{bottom:427.266667pt;}
.y5a{bottom:431.906667pt;}
.y21{bottom:434.146667pt;}
.y167{bottom:441.026667pt;}
.y59{bottom:445.666667pt;}
.y166{bottom:454.786667pt;}
.y7f{bottom:458.306667pt;}
.y58{bottom:459.426667pt;}
.y20{bottom:461.506667pt;}
.y165{bottom:468.706667pt;}
.y57{bottom:473.346667pt;}
.y164{bottom:482.466667pt;}
.y56{bottom:487.106667pt;}
.y1f{bottom:489.186667pt;}
.y163{bottom:496.386667pt;}
.y55{bottom:500.866667pt;}
.y1e{bottom:505.373333pt;}
.y10e{bottom:507.453333pt;}
.y162{bottom:510.173333pt;}
.ybc{bottom:513.373333pt;}
.y54{bottom:514.813333pt;}
.y161{bottom:523.933333pt;}
.y53{bottom:528.253333pt;}
.y1d{bottom:531.133333pt;}
.y160{bottom:537.853333pt;}
.y52{bottom:542.173333pt;}
.y1c{bottom:547.293333pt;}
.y77{bottom:550.973333pt;}
.y15f{bottom:551.613333pt;}
.y51{bottom:556.413333pt;}
.y1b{bottom:561.053333pt;}
.y15e{bottom:565.373333pt;}
.y50{bottom:570.173333pt;}
.y1a{bottom:574.973333pt;}
.y15d{bottom:579.133333pt;}
.y4f{bottom:583.933333pt;}
.y19{bottom:588.733333pt;}
.yb5{bottom:590.653333pt;}
.y15c{bottom:593.053333pt;}
.y105{bottom:594.173333pt;}
.y4e{bottom:597.693333pt;}
.y18{bottom:602.493333pt;}
.y15b{bottom:606.813333pt;}
.y4d{bottom:611.613333pt;}
.y17{bottom:616.413333pt;}
.y15a{bottom:620.573333pt;}
.y4c{bottom:625.373333pt;}
.y159{bottom:634.493333pt;}
.y16{bottom:636.093333pt;}
.y4b{bottom:639.133333pt;}
.y158{bottom:647.933333pt;}
.y4a{bottom:652.893333pt;}
.y15{bottom:659.933333pt;}
.y157{bottom:661.853333pt;}
.y49{bottom:666.813333pt;}
.y102{bottom:670.173333pt;}
.yad{bottom:671.293333pt;}
.y14{bottom:673.693333pt;}
.y156{bottom:675.773333pt;}
.y48{bottom:680.573333pt;}
.y13{bottom:687.453333pt;}
.y72{bottom:689.533333pt;}
.y47{bottom:694.493333pt;}
.y150{bottom:701.533333pt;}
.y46{bottom:708.253333pt;}
.y12{bottom:718.333333pt;}
.y45{bottom:722.013333pt;}
.y44{bottom:735.773333pt;}
.yf8{bottom:736.893333pt;}
.y11{bottom:737.373333pt;}
.y43{bottom:749.693333pt;}
.y6b{bottom:751.613333pt;}
.y10{bottom:763.013333pt;}
.y42{bottom:763.333333pt;}
.ya4{bottom:771.013333pt;}
.y41{bottom:777.093333pt;}
.y40{bottom:791.013333pt;}
.yf{bottom:794.053333pt;}
.y3f{bottom:805.093333pt;}
.y3e{bottom:818.853333pt;}
.ye{bottom:828.773333pt;}
.yf0{bottom:831.013333pt;}
.y3d{bottom:832.773333pt;}
.y147{bottom:840.293333pt;}
.y3c{bottom:846.533333pt;}
.y9b{bottom:846.693333pt;}
.yd{bottom:850.373333pt;}
.y68{bottom:855.973333pt;}
.y3b{bottom:860.293333pt;}
.y3a{bottom:874.213333pt;}
.y67{bottom:877.893333pt;}
.y39{bottom:887.973333pt;}
.y66{bottom:891.653333pt;}
.y38{bottom:901.893333pt;}
.yc{bottom:903.173333pt;}
.ye1{bottom:907.173333pt;}
.y37{bottom:915.493333pt;}
.y9{bottom:919.173333pt;}
.y65{bottom:919.493333pt;}
.yb{bottom:923.813333pt;}
.y64{bottom:933.253333pt;}
.y8{bottom:939.813333pt;}
.y36{bottom:943.493333pt;}
.y99{bottom:945.733333pt;}
.y63{bottom:947.013333pt;}
.ya{bottom:952.293333pt;}
.y35{bottom:957.253333pt;}
.y62{bottom:960.773333pt;}
.y7{bottom:965.893333pt;}
.y140{bottom:966.373333pt;}
.y34{bottom:971.973333pt;}
.y98{bottom:974.373333pt;}
.y61{bottom:974.693333pt;}
.y6{bottom:982.853333pt;}
.y33{bottom:986.693333pt;}
.y60{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y32{bottom:1001.413333pt;}
.y5f{bottom:1002.053333pt;}
.y4{bottom:1013.600000pt;}
.y5e{bottom:1016.000000pt;}
.y31{bottom:1016.320000pt;}
.y3{bottom:1029.600000pt;}
.y97{bottom:1029.920000pt;}
.y30{bottom:1030.240000pt;}
.y2d{bottom:1044.640000pt;}
.y2c{bottom:1061.120000pt;}
.h15{height:18.226667pt;}
.h1f{height:25.266667pt;}
.hd{height:31.390625pt;}
.h10{height:33.918750pt;}
.h2e{height:38.413438pt;}
.h11{height:42.084375pt;}
.h7{height:43.215000pt;}
.h1b{height:46.066667pt;}
.hc{height:47.085938pt;}
.h12{height:47.109375pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h8{height:49.597187pt;}
.h13{height:49.621875pt;}
.h9{height:52.108438pt;}
.h16{height:52.134375pt;}
.h4{height:53.535000pt;}
.h21{height:54.598989pt;}
.hf{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h1c{height:61.266667pt;}
.h18{height:61.440000pt;}
.hb{height:64.290000pt;}
.h3{height:64.500000pt;}
.h31{height:64.786667pt;}
.h27{height:66.066667pt;}
.h2c{height:66.080000pt;}
.h6{height:72.885000pt;}
.h35{height:73.946667pt;}
.h22{height:75.026667pt;}
.h2d{height:75.360000pt;}
.ha{height:75.465000pt;}
.h2a{height:75.506667pt;}
.h33{height:76.338667pt;}
.h1d{height:76.626667pt;}
.h25{height:76.640000pt;}
.h1e{height:76.658667pt;}
.h24{height:80.000000pt;}
.h30{height:85.786667pt;}
.h2f{height:86.080000pt;}
.h32{height:91.986667pt;}
.h1a{height:92.026667pt;}
.h2b{height:93.460000pt;}
.h34{height:95.833333pt;}
.h26{height:95.866667pt;}
.h20{height:98.386667pt;}
.h23{height:99.060000pt;}
.h17{height:103.540000pt;}
.h36{height:125.426667pt;}
.h29{height:133.146667pt;}
.h19{height:137.920000pt;}
.h37{height:137.946667pt;}
.h28{height:158.093333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:63.670667pt;}
.w7{width:66.710667pt;}
.w8{width:112.658667pt;}
.w5{width:160.186667pt;}
.w3{width:166.093333pt;}
.w4{width:178.946667pt;}
.w9{width:197.626667pt;}
.wa{width:226.133333pt;}
.w6{width:570.840000pt;}
.wb{width:605.240000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x17{left:6.870667pt;}
.x2b{left:7.826667pt;}
.x37{left:8.946667pt;}
.x25{left:10.106667pt;}
.x2a{left:11.030667pt;}
.x20{left:11.986667pt;}
.x30{left:13.920000pt;}
.x31{left:14.880000pt;}
.x34{left:16.026667pt;}
.x24{left:17.306667pt;}
.x22{left:18.226667pt;}
.x2d{left:19.986667pt;}
.x29{left:20.960000pt;}
.x33{left:23.026667pt;}
.x21{left:24.146667pt;}
.x2c{left:25.746667pt;}
.x2{left:26.720000pt;}
.x19{left:30.586667pt;}
.x1e{left:31.825333pt;}
.x27{left:33.760000pt;}
.x36{left:36.986667pt;}
.xb{left:41.600000pt;}
.x32{left:42.560000pt;}
.xd{left:44.800000pt;}
.x3f{left:45.920000pt;}
.x1d{left:48.640000pt;}
.x11{left:50.720000pt;}
.x2e{left:53.146667pt;}
.x35{left:57.600000pt;}
.x2f{left:59.546667pt;}
.x28{left:61.786667pt;}
.x8{left:73.312000pt;}
.x3c{left:74.586667pt;}
.x26{left:80.000000pt;}
.x1b{left:80.986667pt;}
.x1f{left:83.066667pt;}
.x23{left:89.466667pt;}
.x3e{left:92.346667pt;}
.x39{left:101.641333pt;}
.x16{left:117.321333pt;}
.x3a{left:169.160000pt;}
.x18{left:181.640000pt;}
.xa{left:188.346667pt;}
.x38{left:201.626667pt;}
.x5{left:217.026667pt;}
.x13{left:221.346667pt;}
.x3{left:240.226667pt;}
.x15{left:243.906667pt;}
.xf{left:245.666667pt;}
.x4{left:258.306667pt;}
.x3b{left:282.466667pt;}
.x9{left:345.826667pt;}
.x1a{left:348.386667pt;}
.x40{left:358.653333pt;}
.x14{left:362.493333pt;}
.xc{left:366.653333pt;}
.x1{left:391.773333pt;}
.x10{left:399.293333pt;}
.x6{left:425.693333pt;}
.x7{left:450.173333pt;}
.x3d{left:480.746667pt;}
.x1c{left:527.973333pt;}
.xe{left:551.333333pt;}
.x12{left:564.293333pt;}
}




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