
    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_41e33702a3916ab6579bc8b5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25927c01e5db1ee6126836d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_40c5448549d9c821b8415d3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0103f0c94301a00f7066d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_aa2f0ad69abd5a8b9ffc0715.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6e46786eef222705f8309ce.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1aaa0c9b05ecf00a9f9e746d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls11{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.306600px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.300000px;}
.ls4{letter-spacing:6.210000px;}
.ls9{letter-spacing:41.246640px;}
.lsf{letter-spacing:46.286640px;}
.lsb{letter-spacing:63.566640px;}
.lse{letter-spacing:70.406640px;}
.ls1{letter-spacing:672.690000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws6{word-spacing:-27.072000px;}
.ws5{word-spacing:-26.856000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.210000px;}
.ws7{word-spacing:-15.030000px;}
.ws0{word-spacing:-14.850000px;}
.wsb{word-spacing:-14.723400px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.150000px;}
.ws2{word-spacing:-11.970000px;}
.wsa{word-spacing:0.000000px;}
._d{margin-left:-6.372000px;}
._0{margin-left:-1.128960px;}
._3{width:1.493040px;}
._4{width:2.595120px;}
._12{width:3.797880px;}
._10{width:5.076000px;}
._11{width:6.176640px;}
._5{width:7.695360px;}
._15{width:8.944560px;}
._b{width:10.100160px;}
._6{width:11.543040px;}
._13{width:12.565080px;}
._14{width:13.587120px;}
._7{width:16.232400px;}
._8{width:17.314560px;}
._a{width:18.516960px;}
._9{width:19.599120px;}
._16{width:20.633880px;}
._c{width:22.124160px;}
._1c{width:23.567040px;}
._20{width:24.649200px;}
._18{width:25.791480px;}
._1b{width:26.875800px;}
._f{width:27.918000px;}
._e{width:29.052000px;}
._17{width:30.143880px;}
._23{width:31.305360px;}
._19{width:32.585040px;}
._1a{width:33.667200px;}
._1d{width:36.072000px;}
._25{width:37.635120px;}
._29{width:39.198240px;}
._26{width:41.229000px;}
._1f{width:42.324480px;}
._28{width:43.947720px;}
._21{width:46.593000px;}
._22{width:47.675160px;}
._27{width:50.079960px;}
._2a{width:51.480360px;}
._24{width:55.130040px;}
._1e{width:58.496760px;}
._2b{width:162.023400px;}
._1{width:302.788920px;}
._2{width:372.032040px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.120000px;}
.fsb{font-size:11.880000px;}
.fs3{font-size:29.880000px;}
.fsa{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:132.120000px;}
.fs7{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.360000px;}
.y7{bottom:2.610000px;}
.y111{bottom:2.700000px;}
.y3a{bottom:2.880000px;}
.y3c{bottom:2.970000px;}
.y21{bottom:3.240000px;}
.y10{bottom:3.870000px;}
.y22{bottom:4.680000px;}
.y5{bottom:8.370000px;}
.y1d3{bottom:16.380000px;}
.y6{bottom:16.470000px;}
.y39{bottom:18.450000px;}
.y31{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.y1d2{bottom:30.240000px;}
.ye{bottom:33.210000px;}
.y38{bottom:33.930000px;}
.y52{bottom:35.640000px;}
.y30{bottom:37.710000px;}
.y1d1{bottom:44.010000px;}
.y8{bottom:49.140000px;}
.y37{bottom:49.530000px;}
.yd{bottom:51.690000px;}
.y2f{bottom:54.990000px;}
.y40{bottom:58.320000px;}
.y51{bottom:60.030000px;}
.y36{bottom:65.010000px;}
.yc{bottom:65.820000px;}
.y2e{bottom:72.270000px;}
.y4{bottom:73.530000px;}
.y3f{bottom:73.890000px;}
.y35{bottom:80.580000px;}
.y3e{bottom:89.370000px;}
.y2d{bottom:89.460000px;}
.y34{bottom:96.060000px;}
.yb{bottom:103.710000px;}
.y11{bottom:103.980000px;}
.y3d{bottom:104.940000px;}
.y2c{bottom:106.740000px;}
.y33{bottom:111.630000px;}
.yf6{bottom:113.220000px;}
.ya2{bottom:114.300000px;}
.y131{bottom:121.140000px;}
.yd7{bottom:121.860000px;}
.y140{bottom:122.220000px;}
.y2b{bottom:124.020000px;}
.y1ce{bottom:125.100000px;}
.y18b{bottom:126.180000px;}
.y15d{bottom:128.340000px;}
.yf5{bottom:130.500000px;}
.y50{bottom:131.400000px;}
.ya1{bottom:131.580000px;}
.ya{bottom:136.200000px;}
.y130{bottom:138.420000px;}
.yd6{bottom:139.050000px;}
.y13f{bottom:139.500000px;}
.y2a{bottom:141.210000px;}
.y1cd{bottom:142.290000px;}
.y18a{bottom:143.370000px;}
.y15c{bottom:145.530000px;}
.yf4{bottom:147.690000px;}
.y4f{bottom:148.680000px;}
.ya0{bottom:148.770000px;}
.yd5{bottom:156.360000px;}
.y12f{bottom:156.720000px;}
.y29{bottom:158.490000px;}
.y84{bottom:158.520000px;}
.y1cc{bottom:159.600000px;}
.y189{bottom:160.680000px;}
.y15b{bottom:162.840000px;}
.yf3{bottom:165.000000px;}
.y4e{bottom:165.900000px;}
.y9f{bottom:166.080000px;}
.yd4{bottom:173.640000px;}
.y12e{bottom:174.000000px;}
.y13e{bottom:175.080000px;}
.y28{bottom:175.800000px;}
.y1cb{bottom:176.880000px;}
.y188{bottom:177.960000px;}
.y15a{bottom:180.120000px;}
.yf2{bottom:182.280000px;}
.y4d{bottom:183.180000px;}
.y9e{bottom:184.350000px;}
.yd3{bottom:190.830000px;}
.y12d{bottom:192.270000px;}
.y27{bottom:192.990000px;}
.y1ca{bottom:194.070000px;}
.y187{bottom:195.150000px;}
.y1a8{bottom:196.230000px;}
.y159{bottom:197.310000px;}
.yf1{bottom:199.470000px;}
.y4c{bottom:200.460000px;}
.y9d{bottom:201.630000px;}
.yd2{bottom:208.110000px;}
.y12c{bottom:209.550000px;}
.y26{bottom:210.270000px;}
.y1c9{bottom:211.350000px;}
.y186{bottom:212.430000px;}
.y1a7{bottom:213.510000px;}
.y158{bottom:215.670000px;}
.y4b{bottom:217.650000px;}
.yf0{bottom:217.830000px;}
.y9c{bottom:218.910000px;}
.yd1{bottom:225.390000px;}
.y12b{bottom:226.830000px;}
.y83{bottom:227.460000px;}
.y25{bottom:227.550000px;}
.y1c8{bottom:228.630000px;}
.y185{bottom:230.790000px;}
.y1a6{bottom:231.870000px;}
.y157{bottom:232.950000px;}
.y4a{bottom:234.930000px;}
.yef{bottom:235.020000px;}
.y9b{bottom:237.180000px;}
.yd0{bottom:242.580000px;}
.y12a{bottom:244.020000px;}
.y24{bottom:244.740000px;}
.y1c7{bottom:245.820000px;}
.y184{bottom:247.980000px;}
.y1a5{bottom:249.060000px;}
.y156{bottom:251.220000px;}
.y49{bottom:252.210000px;}
.yee{bottom:253.380000px;}
.y9a{bottom:254.460000px;}
.y1d4{bottom:259.770000px;}
.ycf{bottom:259.860000px;}
.y129{bottom:261.300000px;}
.y82{bottom:262.020000px;}
.y13d{bottom:262.380000px;}
.y1c6{bottom:263.100000px;}
.y183{bottom:266.340000px;}
.y1a4{bottom:267.420000px;}
.y155{bottom:268.500000px;}
.y48{bottom:269.400000px;}
.yed{bottom:270.660000px;}
.y99{bottom:271.740000px;}
.y1d0{bottom:274.530000px;}
.yce{bottom:277.140000px;}
.y81{bottom:279.210000px;}
.y128{bottom:279.660000px;}
.y1c5{bottom:280.380000px;}
.y182{bottom:283.620000px;}
.y1a3{bottom:284.610000px;}
.y47{bottom:286.680000px;}
.y154{bottom:286.770000px;}
.yec{bottom:287.850000px;}
.y98{bottom:288.930000px;}
.ycd{bottom:294.330000px;}
.y80{bottom:296.490000px;}
.y127{bottom:296.850000px;}
.y1c4{bottom:297.570000px;}
.y13c{bottom:297.930000px;}
.y181{bottom:300.810000px;}
.y1a2{bottom:301.890000px;}
.y46{bottom:303.960000px;}
.y153{bottom:304.050000px;}
.yeb{bottom:305.130000px;}
.y97{bottom:307.290000px;}
.ycc{bottom:311.610000px;}
.y7f{bottom:313.770000px;}
.y126{bottom:314.130000px;}
.y1c3{bottom:314.850000px;}
.y13b{bottom:315.210000px;}
.y180{bottom:318.090000px;}
.y1a1{bottom:319.170000px;}
.y45{bottom:321.150000px;}
.y152{bottom:321.330000px;}
.yea{bottom:322.410000px;}
.y96{bottom:324.570000px;}
.ycb{bottom:328.800000px;}
.y1cf{bottom:330.420000px;}
.y7e{bottom:330.960000px;}
.y125{bottom:331.410000px;}
.y1c2{bottom:333.210000px;}
.y13a{bottom:333.570000px;}
.y17f{bottom:335.280000px;}
.y1a0{bottom:337.440000px;}
.y44{bottom:338.430000px;}
.y151{bottom:338.520000px;}
.ye9{bottom:340.680000px;}
.y95{bottom:341.760000px;}
.yca{bottom:346.080000px;}
.y7d{bottom:348.240000px;}
.y124{bottom:349.680000px;}
.y1c1{bottom:350.400000px;}
.y139{bottom:350.760000px;}
.y17e{bottom:353.640000px;}
.y19f{bottom:354.720000px;}
.y43{bottom:355.710000px;}
.y150{bottom:356.880000px;}
.ye8{bottom:357.960000px;}
.y94{bottom:360.120000px;}
.yc9{bottom:363.360000px;}
.y7c{bottom:365.520000px;}
.y123{bottom:366.960000px;}
.y1c0{bottom:367.680000px;}
.y138{bottom:368.040000px;}
.y17d{bottom:370.920000px;}
.y42{bottom:372.900000px;}
.y19e{bottom:373.080000px;}
.y14f{bottom:375.240000px;}
.ye7{bottom:376.320000px;}
.y93{bottom:377.400000px;}
.yc8{bottom:380.550000px;}
.y7b{bottom:382.710000px;}
.y1bf{bottom:384.960000px;}
.y122{bottom:385.320000px;}
.y17c{bottom:389.190000px;}
.y41{bottom:389.730000px;}
.y19d{bottom:390.270000px;}
.y14e{bottom:392.430000px;}
.ye6{bottom:393.510000px;}
.y92{bottom:394.590000px;}
.yc7{bottom:397.830000px;}
.y7a{bottom:399.990000px;}
.y23{bottom:402.330000px;}
.y121{bottom:402.510000px;}
.y1be{bottom:403.230000px;}
.y17b{bottom:406.470000px;}
.y19c{bottom:407.550000px;}
.y14d{bottom:409.710000px;}
.ye5{bottom:410.790000px;}
.y91{bottom:411.870000px;}
.yc6{bottom:415.110000px;}
.y79{bottom:417.270000px;}
.y120{bottom:419.790000px;}
.y1bd{bottom:420.510000px;}
.y17a{bottom:423.750000px;}
.y19b{bottom:425.910000px;}
.y14c{bottom:428.070000px;}
.y90{bottom:429.060000px;}
.yc5{bottom:432.300000px;}
.y78{bottom:434.460000px;}
.y11f{bottom:436.980000px;}
.y1bc{bottom:437.700000px;}
.y137{bottom:438.060000px;}
.y179{bottom:440.940000px;}
.y19a{bottom:443.100000px;}
.y14b{bottom:445.260000px;}
.y8f{bottom:446.340000px;}
.yc4{bottom:449.580000px;}
.y77{bottom:451.740000px;}
.y11e{bottom:454.260000px;}
.y1bb{bottom:454.980000px;}
.y136{bottom:455.340000px;}
.y178{bottom:459.300000px;}
.y199{bottom:460.380000px;}
.y14a{bottom:462.540000px;}
.ye4{bottom:463.620000px;}
.y8e{bottom:464.700000px;}
.yc3{bottom:466.860000px;}
.y76{bottom:469.020000px;}
.y11d{bottom:472.620000px;}
.y1ba{bottom:473.340000px;}
.y135{bottom:473.700000px;}
.y177{bottom:476.580000px;}
.y198{bottom:477.660000px;}
.y149{bottom:479.730000px;}
.ye3{bottom:480.810000px;}
.y8d{bottom:481.890000px;}
.yc2{bottom:484.050000px;}
.y75{bottom:486.210000px;}
.y11c{bottom:489.810000px;}
.y1b9{bottom:490.530000px;}
.y134{bottom:490.890000px;}
.y176{bottom:494.850000px;}
.ye2{bottom:498.090000px;}
.y8c{bottom:499.170000px;}
.yc1{bottom:501.330000px;}
.y74{bottom:503.490000px;}
.y11b{bottom:508.170000px;}
.y1b8{bottom:508.890000px;}
.y175{bottom:512.130000px;}
.y148{bottom:515.370000px;}
.ye1{bottom:516.450000px;}
.y8b{bottom:517.530000px;}
.yc0{bottom:518.610000px;}
.y3b{bottom:520.590000px;}
.y73{bottom:520.770000px;}
.y133{bottom:525.450000px;}
.y1b7{bottom:526.170000px;}
.y11a{bottom:526.530000px;}
.y174{bottom:529.320000px;}
.y147{bottom:532.560000px;}
.ye0{bottom:533.640000px;}
.y8a{bottom:534.720000px;}
.ybf{bottom:535.800000px;}
.y32{bottom:536.880000px;}
.y72{bottom:537.960000px;}
.y132{bottom:542.640000px;}
.y119{bottom:543.720000px;}
.y1b6{bottom:544.440000px;}
.y173{bottom:546.600000px;}
.ydf{bottom:550.920000px;}
.y89{bottom:552.000000px;}
.ybe{bottom:553.080000px;}
.y71{bottom:555.240000px;}
.y118{bottom:561.000000px;}
.y1b5{bottom:561.720000px;}
.y197{bottom:563.880000px;}
.y172{bottom:564.960000px;}
.y146{bottom:568.200000px;}
.y88{bottom:569.280000px;}
.ybd{bottom:570.360000px;}
.y70{bottom:572.430000px;}
.y117{bottom:575.790000px;}
.y1b4{bottom:579.030000px;}
.y196{bottom:581.100000px;}
.y171{bottom:582.180000px;}
.y145{bottom:585.420000px;}
.yde{bottom:586.500000px;}
.y87{bottom:587.580000px;}
.y6f{bottom:589.740000px;}
.y116{bottom:590.370000px;}
.y1b3{bottom:596.220000px;}
.y195{bottom:599.460000px;}
.y170{bottom:600.540000px;}
.ydd{bottom:603.780000px;}
.y86{bottom:604.860000px;}
.y6e{bottom:607.020000px;}
.y1b2{bottom:614.580000px;}
.y194{bottom:616.740000px;}
.y16f{bottom:617.820000px;}
.y115{bottom:619.440000px;}
.ydc{bottom:621.060000px;}
.ybc{bottom:622.140000px;}
.y85{bottom:623.130000px;}
.y6d{bottom:624.210000px;}
.y1b1{bottom:631.770000px;}
.y193{bottom:633.930000px;}
.y114{bottom:634.020000px;}
.y16e{bottom:635.010000px;}
.y144{bottom:638.250000px;}
.ybb{bottom:639.330000px;}
.y6c{bottom:641.490000px;}
.y113{bottom:648.510000px;}
.y1b0{bottom:649.050000px;}
.y192{bottom:651.210000px;}
.y16d{bottom:652.290000px;}
.y143{bottom:655.530000px;}
.yba{bottom:656.610000px;}
.ydb{bottom:657.690000px;}
.y6b{bottom:658.770000px;}
.y20{bottom:661.830000px;}
.y112{bottom:663.090000px;}
.y1af{bottom:667.410000px;}
.y191{bottom:668.490000px;}
.y16c{bottom:669.570000px;}
.yb9{bottom:673.800000px;}
.yda{bottom:674.880000px;}
.y6a{bottom:675.960000px;}
.y110{bottom:677.580000px;}
.y1ae{bottom:684.600000px;}
.y16b{bottom:686.760000px;}
.yb8{bottom:691.080000px;}
.yd9{bottom:692.160000px;}
.y1f{bottom:692.700000px;}
.y69{bottom:693.240000px;}
.y1d{bottom:695.580000px;}
.y1c{bottom:701.250000px;}
.y1ad{bottom:702.960000px;}
.y16a{bottom:704.040000px;}
.y10f{bottom:706.740000px;}
.yb7{bottom:708.360000px;}
.yd8{bottom:709.440000px;}
.y68{bottom:710.520000px;}
.y1b{bottom:718.530000px;}
.y1ac{bottom:720.240000px;}
.y169{bottom:721.320000px;}
.y10e{bottom:724.470000px;}
.yb6{bottom:725.550000px;}
.y142{bottom:726.630000px;}
.y67{bottom:727.710000px;}
.y1ab{bottom:737.430000px;}
.y1a{bottom:738.420000px;}
.y168{bottom:738.510000px;}
.y100{bottom:739.590000px;}
.y10d{bottom:741.750000px;}
.yb5{bottom:742.830000px;}
.y141{bottom:743.910000px;}
.y66{bottom:744.990000px;}
.y1aa{bottom:754.710000px;}
.y167{bottom:755.790000px;}
.yff{bottom:756.870000px;}
.y10c{bottom:759.030000px;}
.yb4{bottom:760.110000px;}
.y65{bottom:762.270000px;}
.y19{bottom:766.860000px;}
.y166{bottom:773.070000px;}
.y190{bottom:774.060000px;}
.yfe{bottom:775.140000px;}
.y10b{bottom:776.220000px;}
.yb3{bottom:777.300000px;}
.y64{bottom:779.460000px;}
.y18{bottom:784.410000px;}
.y165{bottom:790.260000px;}
.y18f{bottom:791.340000px;}
.yfd{bottom:792.420000px;}
.y10a{bottom:793.500000px;}
.yb2{bottom:794.580000px;}
.y63{bottom:796.740000px;}
.y17{bottom:805.650000px;}
.y164{bottom:807.540000px;}
.y18e{bottom:808.620000px;}
.yfc{bottom:809.700000px;}
.y109{bottom:810.780000px;}
.yb1{bottom:811.860000px;}
.y62{bottom:814.020000px;}
.y163{bottom:825.810000px;}
.yfb{bottom:826.890000px;}
.y108{bottom:827.970000px;}
.yb0{bottom:829.050000px;}
.y61{bottom:831.210000px;}
.y16{bottom:836.700000px;}
.y162{bottom:843.090000px;}
.y18d{bottom:844.170000px;}
.yfa{bottom:845.250000px;}
.yaf{bottom:846.330000px;}
.y60{bottom:848.490000px;}
.y161{bottom:860.370000px;}
.y18c{bottom:861.450000px;}
.yf9{bottom:862.530000px;}
.yae{bottom:863.610000px;}
.y5f{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y160{bottom:878.640000px;}
.y107{bottom:879.720000px;}
.yad{bottom:880.800000px;}
.y5e{bottom:882.960000px;}
.y15f{bottom:895.920000px;}
.y106{bottom:897.000000px;}
.yac{bottom:898.080000px;}
.y14{bottom:898.800000px;}
.y5d{bottom:900.240000px;}
.y1a9{bottom:913.200000px;}
.y105{bottom:914.280000px;}
.yab{bottom:915.360000px;}
.y5c{bottom:917.430000px;}
.y13{bottom:927.240000px;}
.y104{bottom:931.470000px;}
.yaa{bottom:932.550000px;}
.y5b{bottom:934.710000px;}
.y103{bottom:948.750000px;}
.ya9{bottom:949.830000px;}
.yf8{bottom:950.910000px;}
.y5a{bottom:951.990000px;}
.y12{bottom:953.700000px;}
.y9{bottom:955.860000px;}
.y15e{bottom:966.030000px;}
.ya8{bottom:967.110000px;}
.yf7{bottom:968.100000px;}
.y59{bottom:969.180000px;}
.ya7{bottom:984.300000px;}
.y58{bottom:986.460000px;}
.ya6{bottom:1001.610000px;}
.y57{bottom:1003.770000px;}
.y102{bottom:1018.800000px;}
.ya5{bottom:1019.880000px;}
.y56{bottom:1020.960000px;}
.ya4{bottom:1037.160000px;}
.y55{bottom:1038.240000px;}
.ya3{bottom:1054.440000px;}
.y54{bottom:1055.520000px;}
.y101{bottom:1071.630000px;}
.y53{bottom:1072.710000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.510000px;}
.y1{bottom:1137.420000px;}
.h12{height:1.710000px;}
.h13{height:4.273242px;}
.hf{height:4.318066px;}
.h14{height:8.382129px;}
.h1f{height:13.770000px;}
.h21{height:13.860000px;}
.h1a{height:15.570000px;}
.h15{height:17.280000px;}
.hc{height:20.863477px;}
.ha{height:21.082324px;}
.h4{height:27.630000px;}
.h6{height:33.431836px;}
.h20{height:33.782520px;}
.h1d{height:36.068555px;}
.h1c{height:37.705078px;}
.h16{height:38.100586px;}
.h7{height:39.082324px;}
.h19{height:41.343750px;}
.h5{height:41.978320px;}
.h3{height:42.418652px;}
.h22{height:42.536074px;}
.h1e{height:43.769004px;}
.h2{height:45.295488px;}
.h1{height:50.800781px;}
.h11{height:53.838457px;}
.h23{height:55.170000px;}
.h8{height:65.526152px;}
.hd{height:72.418535px;}
.h10{height:76.201172px;}
.hb{height:93.219434px;}
.h1b{height:117.540000px;}
.he{height:118.619824px;}
.h18{height:124.230000px;}
.h9{height:143.220000px;}
.h17{height:258.780000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w9{width:132.780000px;}
.w5{width:165.900000px;}
.wb{width:199.800000px;}
.w8{width:228.270000px;}
.wa{width:331.590000px;}
.wc{width:372.270000px;}
.w7{width:592.530000px;}
.w4{width:648.060000px;}
.w3{width:745.470000px;}
.w6{width:901.530000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x13{left:3.150000px;}
.x4{left:4.320000px;}
.x1b{left:6.749986px;}
.x14{left:8.100000px;}
.x24{left:41.400000px;}
.x18{left:43.650000px;}
.x6{left:45.540000px;}
.x15{left:46.710000px;}
.x1d{left:52.110000px;}
.x1{left:53.999986px;}
.x19{left:56.429986px;}
.x1c{left:60.749986px;}
.x17{left:65.070000px;}
.x28{left:69.390000px;}
.xa{left:70.470000px;}
.x27{left:72.450000px;}
.x22{left:80.100000px;}
.x29{left:83.340000px;}
.x1e{left:87.210000px;}
.x2b{left:92.069986px;}
.x3{left:99.360000px;}
.x9{left:105.480000px;}
.x2{left:107.999986px;}
.x30{left:114.330000px;}
.x5{left:134.460000px;}
.x2a{left:144.720000px;}
.x26{left:149.220000px;}
.x21{left:186.600000px;}
.x8{left:200.190000px;}
.xb{left:231.780000px;}
.x7{left:324.030000px;}
.x10{left:348.419986px;}
.x11{left:370.019986px;}
.xe{left:419.789986px;}
.xf{left:464.159986px;}
.x12{left:466.139986px;}
.x1a{left:481.739986px;}
.x1f{left:486.059986px;}
.x2d{left:490.379986px;}
.x2e{left:511.529986px;}
.x20{left:513.059986px;}
.x2c{left:517.379986px;}
.x23{left:518.910000px;}
.x2f{left:540.059986px;}
.x16{left:640.050000px;}
.xc{left:693.600000px;}
.x25{left:719.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls11{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.272533pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls4{letter-spacing:5.520000pt;}
.ls9{letter-spacing:36.663680pt;}
.lsf{letter-spacing:41.143680pt;}
.lsb{letter-spacing:56.503680pt;}
.lse{letter-spacing:62.583680pt;}
.ls1{letter-spacing:597.946667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6{word-spacing:-24.064000pt;}
.ws5{word-spacing:-23.872000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.520000pt;}
.ws7{word-spacing:-13.360000pt;}
.ws0{word-spacing:-13.200000pt;}
.wsb{word-spacing:-13.087467pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws2{word-spacing:-10.640000pt;}
.wsa{word-spacing:0.000000pt;}
._d{margin-left:-5.664000pt;}
._0{margin-left:-1.003520pt;}
._3{width:1.327147pt;}
._4{width:2.306773pt;}
._12{width:3.375893pt;}
._10{width:4.512000pt;}
._11{width:5.490347pt;}
._5{width:6.840320pt;}
._15{width:7.950720pt;}
._b{width:8.977920pt;}
._6{width:10.260480pt;}
._13{width:11.168960pt;}
._14{width:12.077440pt;}
._7{width:14.428800pt;}
._8{width:15.390720pt;}
._a{width:16.459520pt;}
._9{width:17.421440pt;}
._16{width:18.341227pt;}
._c{width:19.665920pt;}
._1c{width:20.948480pt;}
._20{width:21.910400pt;}
._18{width:22.925760pt;}
._1b{width:23.889600pt;}
._f{width:24.816000pt;}
._e{width:25.824000pt;}
._17{width:26.794560pt;}
._23{width:27.826987pt;}
._19{width:28.964480pt;}
._1a{width:29.926400pt;}
._1d{width:32.064000pt;}
._25{width:33.453440pt;}
._29{width:34.842880pt;}
._26{width:36.648000pt;}
._1f{width:37.621760pt;}
._28{width:39.064640pt;}
._21{width:41.416000pt;}
._22{width:42.377920pt;}
._27{width:44.515520pt;}
._2a{width:45.760320pt;}
._24{width:49.004480pt;}
._1e{width:51.997120pt;}
._2b{width:144.020800pt;}
._1{width:269.145707pt;}
._2{width:330.695147pt;}
.fs8{font-size:5.440000pt;}
.fsb{font-size:10.560000pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.440000pt;}
.fs7{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.320000pt;}
.y7{bottom:2.320000pt;}
.y111{bottom:2.400000pt;}
.y3a{bottom:2.560000pt;}
.y3c{bottom:2.640000pt;}
.y21{bottom:2.880000pt;}
.y10{bottom:3.440000pt;}
.y22{bottom:4.160000pt;}
.y5{bottom:7.440000pt;}
.y1d3{bottom:14.560000pt;}
.y6{bottom:14.640000pt;}
.y39{bottom:16.400000pt;}
.y31{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.y1d2{bottom:26.880000pt;}
.ye{bottom:29.520000pt;}
.y38{bottom:30.160000pt;}
.y52{bottom:31.680000pt;}
.y30{bottom:33.520000pt;}
.y1d1{bottom:39.120000pt;}
.y8{bottom:43.680000pt;}
.y37{bottom:44.026667pt;}
.yd{bottom:45.946667pt;}
.y2f{bottom:48.880000pt;}
.y40{bottom:51.840000pt;}
.y51{bottom:53.360000pt;}
.y36{bottom:57.786667pt;}
.yc{bottom:58.506667pt;}
.y2e{bottom:64.240000pt;}
.y4{bottom:65.360000pt;}
.y3f{bottom:65.680000pt;}
.y35{bottom:71.626667pt;}
.y3e{bottom:79.440000pt;}
.y2d{bottom:79.520000pt;}
.y34{bottom:85.386667pt;}
.yb{bottom:92.186667pt;}
.y11{bottom:92.426667pt;}
.y3d{bottom:93.280000pt;}
.y2c{bottom:94.880000pt;}
.y33{bottom:99.226667pt;}
.yf6{bottom:100.640000pt;}
.ya2{bottom:101.600000pt;}
.y131{bottom:107.680000pt;}
.yd7{bottom:108.320000pt;}
.y140{bottom:108.640000pt;}
.y2b{bottom:110.240000pt;}
.y1ce{bottom:111.200000pt;}
.y18b{bottom:112.160000pt;}
.y15d{bottom:114.080000pt;}
.yf5{bottom:116.000000pt;}
.y50{bottom:116.800000pt;}
.ya1{bottom:116.960000pt;}
.ya{bottom:121.066667pt;}
.y130{bottom:123.040000pt;}
.yd6{bottom:123.600000pt;}
.y13f{bottom:124.000000pt;}
.y2a{bottom:125.520000pt;}
.y1cd{bottom:126.480000pt;}
.y18a{bottom:127.440000pt;}
.y15c{bottom:129.360000pt;}
.yf4{bottom:131.280000pt;}
.y4f{bottom:132.160000pt;}
.ya0{bottom:132.240000pt;}
.yd5{bottom:138.986667pt;}
.y12f{bottom:139.306667pt;}
.y29{bottom:140.880000pt;}
.y84{bottom:140.906667pt;}
.y1cc{bottom:141.866667pt;}
.y189{bottom:142.826667pt;}
.y15b{bottom:144.746667pt;}
.yf3{bottom:146.666667pt;}
.y4e{bottom:147.466667pt;}
.y9f{bottom:147.626667pt;}
.yd4{bottom:154.346667pt;}
.y12e{bottom:154.666667pt;}
.y13e{bottom:155.626667pt;}
.y28{bottom:156.266667pt;}
.y1cb{bottom:157.226667pt;}
.y188{bottom:158.186667pt;}
.y15a{bottom:160.106667pt;}
.yf2{bottom:162.026667pt;}
.y4d{bottom:162.826667pt;}
.y9e{bottom:163.866667pt;}
.yd3{bottom:169.626667pt;}
.y12d{bottom:170.906667pt;}
.y27{bottom:171.546667pt;}
.y1ca{bottom:172.506667pt;}
.y187{bottom:173.466667pt;}
.y1a8{bottom:174.426667pt;}
.y159{bottom:175.386667pt;}
.yf1{bottom:177.306667pt;}
.y4c{bottom:178.186667pt;}
.y9d{bottom:179.226667pt;}
.yd2{bottom:184.986667pt;}
.y12c{bottom:186.266667pt;}
.y26{bottom:186.906667pt;}
.y1c9{bottom:187.866667pt;}
.y186{bottom:188.826667pt;}
.y1a7{bottom:189.786667pt;}
.y158{bottom:191.706667pt;}
.y4b{bottom:193.466667pt;}
.yf0{bottom:193.626667pt;}
.y9c{bottom:194.586667pt;}
.yd1{bottom:200.346667pt;}
.y12b{bottom:201.626667pt;}
.y83{bottom:202.186667pt;}
.y25{bottom:202.266667pt;}
.y1c8{bottom:203.226667pt;}
.y185{bottom:205.146667pt;}
.y1a6{bottom:206.106667pt;}
.y157{bottom:207.066667pt;}
.y4a{bottom:208.826667pt;}
.yef{bottom:208.906667pt;}
.y9b{bottom:210.826667pt;}
.yd0{bottom:215.626667pt;}
.y12a{bottom:216.906667pt;}
.y24{bottom:217.546667pt;}
.y1c7{bottom:218.506667pt;}
.y184{bottom:220.426667pt;}
.y1a5{bottom:221.386667pt;}
.y156{bottom:223.306667pt;}
.y49{bottom:224.186667pt;}
.yee{bottom:225.226667pt;}
.y9a{bottom:226.186667pt;}
.y1d4{bottom:230.906667pt;}
.ycf{bottom:230.986667pt;}
.y129{bottom:232.266667pt;}
.y82{bottom:232.906667pt;}
.y13d{bottom:233.226667pt;}
.y1c6{bottom:233.866667pt;}
.y183{bottom:236.746667pt;}
.y1a4{bottom:237.706667pt;}
.y155{bottom:238.666667pt;}
.y48{bottom:239.466667pt;}
.yed{bottom:240.586667pt;}
.y99{bottom:241.546667pt;}
.y1d0{bottom:244.026667pt;}
.yce{bottom:246.346667pt;}
.y81{bottom:248.186667pt;}
.y128{bottom:248.586667pt;}
.y1c5{bottom:249.226667pt;}
.y182{bottom:252.106667pt;}
.y1a3{bottom:252.986667pt;}
.y47{bottom:254.826667pt;}
.y154{bottom:254.906667pt;}
.yec{bottom:255.866667pt;}
.y98{bottom:256.826667pt;}
.ycd{bottom:261.626667pt;}
.y80{bottom:263.546667pt;}
.y127{bottom:263.866667pt;}
.y1c4{bottom:264.506667pt;}
.y13c{bottom:264.826667pt;}
.y181{bottom:267.386667pt;}
.y1a2{bottom:268.346667pt;}
.y46{bottom:270.186667pt;}
.y153{bottom:270.266667pt;}
.yeb{bottom:271.226667pt;}
.y97{bottom:273.146667pt;}
.ycc{bottom:276.986667pt;}
.y7f{bottom:278.906667pt;}
.y126{bottom:279.226667pt;}
.y1c3{bottom:279.866667pt;}
.y13b{bottom:280.186667pt;}
.y180{bottom:282.746667pt;}
.y1a1{bottom:283.706667pt;}
.y45{bottom:285.466667pt;}
.y152{bottom:285.626667pt;}
.yea{bottom:286.586667pt;}
.y96{bottom:288.506667pt;}
.ycb{bottom:292.266667pt;}
.y1cf{bottom:293.706667pt;}
.y7e{bottom:294.186667pt;}
.y125{bottom:294.586667pt;}
.y1c2{bottom:296.186667pt;}
.y13a{bottom:296.506667pt;}
.y17f{bottom:298.026667pt;}
.y1a0{bottom:299.946667pt;}
.y44{bottom:300.826667pt;}
.y151{bottom:300.906667pt;}
.ye9{bottom:302.826667pt;}
.y95{bottom:303.786667pt;}
.yca{bottom:307.626667pt;}
.y7d{bottom:309.546667pt;}
.y124{bottom:310.826667pt;}
.y1c1{bottom:311.466667pt;}
.y139{bottom:311.786667pt;}
.y17e{bottom:314.346667pt;}
.y19f{bottom:315.306667pt;}
.y43{bottom:316.186667pt;}
.y150{bottom:317.226667pt;}
.ye8{bottom:318.186667pt;}
.y94{bottom:320.106667pt;}
.yc9{bottom:322.986667pt;}
.y7c{bottom:324.906667pt;}
.y123{bottom:326.186667pt;}
.y1c0{bottom:326.826667pt;}
.y138{bottom:327.146667pt;}
.y17d{bottom:329.706667pt;}
.y42{bottom:331.466667pt;}
.y19e{bottom:331.626667pt;}
.y14f{bottom:333.546667pt;}
.ye7{bottom:334.506667pt;}
.y93{bottom:335.466667pt;}
.yc8{bottom:338.266667pt;}
.y7b{bottom:340.186667pt;}
.y1bf{bottom:342.186667pt;}
.y122{bottom:342.506667pt;}
.y17c{bottom:345.946667pt;}
.y41{bottom:346.426667pt;}
.y19d{bottom:346.906667pt;}
.y14e{bottom:348.826667pt;}
.ye6{bottom:349.786667pt;}
.y92{bottom:350.746667pt;}
.yc7{bottom:353.626667pt;}
.y7a{bottom:355.546667pt;}
.y23{bottom:357.626667pt;}
.y121{bottom:357.786667pt;}
.y1be{bottom:358.426667pt;}
.y17b{bottom:361.306667pt;}
.y19c{bottom:362.266667pt;}
.y14d{bottom:364.186667pt;}
.ye5{bottom:365.146667pt;}
.y91{bottom:366.106667pt;}
.yc6{bottom:368.986667pt;}
.y79{bottom:370.906667pt;}
.y120{bottom:373.146667pt;}
.y1bd{bottom:373.786667pt;}
.y17a{bottom:376.666667pt;}
.y19b{bottom:378.586667pt;}
.y14c{bottom:380.506667pt;}
.y90{bottom:381.386667pt;}
.yc5{bottom:384.266667pt;}
.y78{bottom:386.186667pt;}
.y11f{bottom:388.426667pt;}
.y1bc{bottom:389.066667pt;}
.y137{bottom:389.386667pt;}
.y179{bottom:391.946667pt;}
.y19a{bottom:393.866667pt;}
.y14b{bottom:395.786667pt;}
.y8f{bottom:396.746667pt;}
.yc4{bottom:399.626667pt;}
.y77{bottom:401.546667pt;}
.y11e{bottom:403.786667pt;}
.y1bb{bottom:404.426667pt;}
.y136{bottom:404.746667pt;}
.y178{bottom:408.266667pt;}
.y199{bottom:409.226667pt;}
.y14a{bottom:411.146667pt;}
.ye4{bottom:412.106667pt;}
.y8e{bottom:413.066667pt;}
.yc3{bottom:414.986667pt;}
.y76{bottom:416.906667pt;}
.y11d{bottom:420.106667pt;}
.y1ba{bottom:420.746667pt;}
.y135{bottom:421.066667pt;}
.y177{bottom:423.626667pt;}
.y198{bottom:424.586667pt;}
.y149{bottom:426.426667pt;}
.ye3{bottom:427.386667pt;}
.y8d{bottom:428.346667pt;}
.yc2{bottom:430.266667pt;}
.y75{bottom:432.186667pt;}
.y11c{bottom:435.386667pt;}
.y1b9{bottom:436.026667pt;}
.y134{bottom:436.346667pt;}
.y176{bottom:439.866667pt;}
.ye2{bottom:442.746667pt;}
.y8c{bottom:443.706667pt;}
.yc1{bottom:445.626667pt;}
.y74{bottom:447.546667pt;}
.y11b{bottom:451.706667pt;}
.y1b8{bottom:452.346667pt;}
.y175{bottom:455.226667pt;}
.y148{bottom:458.106667pt;}
.ye1{bottom:459.066667pt;}
.y8b{bottom:460.026667pt;}
.yc0{bottom:460.986667pt;}
.y3b{bottom:462.746667pt;}
.y73{bottom:462.906667pt;}
.y133{bottom:467.066667pt;}
.y1b7{bottom:467.706667pt;}
.y11a{bottom:468.026667pt;}
.y174{bottom:470.506667pt;}
.y147{bottom:473.386667pt;}
.ye0{bottom:474.346667pt;}
.y8a{bottom:475.306667pt;}
.ybf{bottom:476.266667pt;}
.y32{bottom:477.226667pt;}
.y72{bottom:478.186667pt;}
.y132{bottom:482.346667pt;}
.y119{bottom:483.306667pt;}
.y1b6{bottom:483.946667pt;}
.y173{bottom:485.866667pt;}
.ydf{bottom:489.706667pt;}
.y89{bottom:490.666667pt;}
.ybe{bottom:491.626667pt;}
.y71{bottom:493.546667pt;}
.y118{bottom:498.666667pt;}
.y1b5{bottom:499.306667pt;}
.y197{bottom:501.226667pt;}
.y172{bottom:502.186667pt;}
.y146{bottom:505.066667pt;}
.y88{bottom:506.026667pt;}
.ybd{bottom:506.986667pt;}
.y70{bottom:508.826667pt;}
.y117{bottom:511.813333pt;}
.y1b4{bottom:514.693333pt;}
.y196{bottom:516.533333pt;}
.y171{bottom:517.493333pt;}
.y145{bottom:520.373333pt;}
.yde{bottom:521.333333pt;}
.y87{bottom:522.293333pt;}
.y6f{bottom:524.213333pt;}
.y116{bottom:524.773333pt;}
.y1b3{bottom:529.973333pt;}
.y195{bottom:532.853333pt;}
.y170{bottom:533.813333pt;}
.ydd{bottom:536.693333pt;}
.y86{bottom:537.653333pt;}
.y6e{bottom:539.573333pt;}
.y1b2{bottom:546.293333pt;}
.y194{bottom:548.213333pt;}
.y16f{bottom:549.173333pt;}
.y115{bottom:550.613333pt;}
.ydc{bottom:552.053333pt;}
.ybc{bottom:553.013333pt;}
.y85{bottom:553.893333pt;}
.y6d{bottom:554.853333pt;}
.y1b1{bottom:561.573333pt;}
.y193{bottom:563.493333pt;}
.y114{bottom:563.573333pt;}
.y16e{bottom:564.453333pt;}
.y144{bottom:567.333333pt;}
.ybb{bottom:568.293333pt;}
.y6c{bottom:570.213333pt;}
.y113{bottom:576.453333pt;}
.y1b0{bottom:576.933333pt;}
.y192{bottom:578.853333pt;}
.y16d{bottom:579.813333pt;}
.y143{bottom:582.693333pt;}
.yba{bottom:583.653333pt;}
.ydb{bottom:584.613333pt;}
.y6b{bottom:585.573333pt;}
.y20{bottom:588.293333pt;}
.y112{bottom:589.413333pt;}
.y1af{bottom:593.253333pt;}
.y191{bottom:594.213333pt;}
.y16c{bottom:595.173333pt;}
.yb9{bottom:598.933333pt;}
.yda{bottom:599.893333pt;}
.y6a{bottom:600.853333pt;}
.y110{bottom:602.293333pt;}
.y1ae{bottom:608.533333pt;}
.y16b{bottom:610.453333pt;}
.yb8{bottom:614.293333pt;}
.yd9{bottom:615.253333pt;}
.y1f{bottom:615.733333pt;}
.y69{bottom:616.213333pt;}
.y1d{bottom:618.293333pt;}
.y1c{bottom:623.333333pt;}
.y1ad{bottom:624.853333pt;}
.y16a{bottom:625.813333pt;}
.y10f{bottom:628.213333pt;}
.yb7{bottom:629.653333pt;}
.yd8{bottom:630.613333pt;}
.y68{bottom:631.573333pt;}
.y1b{bottom:638.693333pt;}
.y1ac{bottom:640.213333pt;}
.y169{bottom:641.173333pt;}
.y10e{bottom:643.973333pt;}
.yb6{bottom:644.933333pt;}
.y142{bottom:645.893333pt;}
.y67{bottom:646.853333pt;}
.y1ab{bottom:655.493333pt;}
.y1a{bottom:656.373333pt;}
.y168{bottom:656.453333pt;}
.y100{bottom:657.413333pt;}
.y10d{bottom:659.333333pt;}
.yb5{bottom:660.293333pt;}
.y141{bottom:661.253333pt;}
.y66{bottom:662.213333pt;}
.y1aa{bottom:670.853333pt;}
.y167{bottom:671.813333pt;}
.yff{bottom:672.773333pt;}
.y10c{bottom:674.693333pt;}
.yb4{bottom:675.653333pt;}
.y65{bottom:677.573333pt;}
.y19{bottom:681.653333pt;}
.y166{bottom:687.173333pt;}
.y190{bottom:688.053333pt;}
.yfe{bottom:689.013333pt;}
.y10b{bottom:689.973333pt;}
.yb3{bottom:690.933333pt;}
.y64{bottom:692.853333pt;}
.y18{bottom:697.253333pt;}
.y165{bottom:702.453333pt;}
.y18f{bottom:703.413333pt;}
.yfd{bottom:704.373333pt;}
.y10a{bottom:705.333333pt;}
.yb2{bottom:706.293333pt;}
.y63{bottom:708.213333pt;}
.y17{bottom:716.133333pt;}
.y164{bottom:717.813333pt;}
.y18e{bottom:718.773333pt;}
.yfc{bottom:719.733333pt;}
.y109{bottom:720.693333pt;}
.yb1{bottom:721.653333pt;}
.y62{bottom:723.573333pt;}
.y163{bottom:734.053333pt;}
.yfb{bottom:735.013333pt;}
.y108{bottom:735.973333pt;}
.yb0{bottom:736.933333pt;}
.y61{bottom:738.853333pt;}
.y16{bottom:743.733333pt;}
.y162{bottom:749.413333pt;}
.y18d{bottom:750.373333pt;}
.yfa{bottom:751.333333pt;}
.yaf{bottom:752.293333pt;}
.y60{bottom:754.213333pt;}
.y161{bottom:764.773333pt;}
.y18c{bottom:765.733333pt;}
.yf9{bottom:766.693333pt;}
.yae{bottom:767.653333pt;}
.y5f{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y160{bottom:781.013333pt;}
.y107{bottom:781.973333pt;}
.yad{bottom:782.933333pt;}
.y5e{bottom:784.853333pt;}
.y15f{bottom:796.373333pt;}
.y106{bottom:797.333333pt;}
.yac{bottom:798.293333pt;}
.y14{bottom:798.933333pt;}
.y5d{bottom:800.213333pt;}
.y1a9{bottom:811.733333pt;}
.y105{bottom:812.693333pt;}
.yab{bottom:813.653333pt;}
.y5c{bottom:815.493333pt;}
.y13{bottom:824.213333pt;}
.y104{bottom:827.973333pt;}
.yaa{bottom:828.933333pt;}
.y5b{bottom:830.853333pt;}
.y103{bottom:843.333333pt;}
.ya9{bottom:844.293333pt;}
.yf8{bottom:845.253333pt;}
.y5a{bottom:846.213333pt;}
.y12{bottom:847.733333pt;}
.y9{bottom:849.653333pt;}
.y15e{bottom:858.693333pt;}
.ya8{bottom:859.653333pt;}
.yf7{bottom:860.533333pt;}
.y59{bottom:861.493333pt;}
.ya7{bottom:874.933333pt;}
.y58{bottom:876.853333pt;}
.ya6{bottom:890.320000pt;}
.y57{bottom:892.240000pt;}
.y102{bottom:905.600000pt;}
.ya5{bottom:906.560000pt;}
.y56{bottom:907.520000pt;}
.ya4{bottom:921.920000pt;}
.y55{bottom:922.880000pt;}
.ya3{bottom:937.280000pt;}
.y54{bottom:938.240000pt;}
.y101{bottom:952.560000pt;}
.y53{bottom:953.520000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.120000pt;}
.y1{bottom:1011.040000pt;}
.h12{height:1.520000pt;}
.h13{height:3.798437pt;}
.hf{height:3.838281pt;}
.h14{height:7.450781pt;}
.h1f{height:12.240000pt;}
.h21{height:12.320000pt;}
.h1a{height:13.840000pt;}
.h15{height:15.360000pt;}
.hc{height:18.545312pt;}
.ha{height:18.739844pt;}
.h4{height:24.560000pt;}
.h6{height:29.717188pt;}
.h20{height:30.028906pt;}
.h1d{height:32.060937pt;}
.h1c{height:33.515625pt;}
.h16{height:33.867188pt;}
.h7{height:34.739844pt;}
.h19{height:36.750000pt;}
.h5{height:37.314062pt;}
.h3{height:37.705469pt;}
.h22{height:37.809844pt;}
.h1e{height:38.905781pt;}
.h2{height:40.262656pt;}
.h1{height:45.156250pt;}
.h11{height:47.856406pt;}
.h23{height:49.040000pt;}
.h8{height:58.245469pt;}
.hd{height:64.372031pt;}
.h10{height:67.734375pt;}
.hb{height:82.861719pt;}
.h1b{height:104.480000pt;}
.he{height:105.439844pt;}
.h18{height:110.426667pt;}
.h9{height:127.306667pt;}
.h17{height:230.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w9{width:118.026667pt;}
.w5{width:147.466667pt;}
.wb{width:177.600000pt;}
.w8{width:202.906667pt;}
.wa{width:294.746667pt;}
.wc{width:330.906667pt;}
.w7{width:526.693333pt;}
.w4{width:576.053333pt;}
.w3{width:662.640000pt;}
.w6{width:801.360000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.800000pt;}
.x4{left:3.840000pt;}
.x1b{left:5.999988pt;}
.x14{left:7.200000pt;}
.x24{left:36.800000pt;}
.x18{left:38.800000pt;}
.x6{left:40.480000pt;}
.x15{left:41.520000pt;}
.x1d{left:46.320000pt;}
.x1{left:47.999988pt;}
.x19{left:50.159988pt;}
.x1c{left:53.999988pt;}
.x17{left:57.840000pt;}
.x28{left:61.680000pt;}
.xa{left:62.640000pt;}
.x27{left:64.400000pt;}
.x22{left:71.200000pt;}
.x29{left:74.080000pt;}
.x1e{left:77.520000pt;}
.x2b{left:81.839988pt;}
.x3{left:88.320000pt;}
.x9{left:93.760000pt;}
.x2{left:95.999988pt;}
.x30{left:101.626667pt;}
.x5{left:119.520000pt;}
.x2a{left:128.640000pt;}
.x26{left:132.640000pt;}
.x21{left:165.866667pt;}
.x8{left:177.946667pt;}
.xb{left:206.026667pt;}
.x7{left:288.026667pt;}
.x10{left:309.706655pt;}
.x11{left:328.906655pt;}
.xe{left:373.146655pt;}
.xf{left:412.586655pt;}
.x12{left:414.346655pt;}
.x1a{left:428.213321pt;}
.x1f{left:432.053321pt;}
.x2d{left:435.893321pt;}
.x2e{left:454.693321pt;}
.x20{left:456.053321pt;}
.x2c{left:459.893321pt;}
.x23{left:461.253333pt;}
.x2f{left:480.053321pt;}
.x16{left:568.933333pt;}
.xc{left:616.533333pt;}
.x25{left:639.493333pt;}
}




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