
    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_59fab3ae1800d0acaf708eca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3702d67d462c05953a78a348.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1099242fe4359afd1b1fa38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_7211a405f81a83031107cc8e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_38ae6f639aa66f8ef7d2d78b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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_93fb5b06033b24bbc35d5229.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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: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;}
.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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:25.308000px;}
.lsd{letter-spacing:52.668000px;}
.lse{letter-spacing:52.812000px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws5{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws9{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-3.033600px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._a{width:3.045840px;}
._e{width:4.171920px;}
._d{width:5.564160px;}
._1a{width:6.858000px;}
._12{width:7.914240px;}
._c{width:8.933760px;}
._b{width:10.218960px;}
._16{width:11.435040px;}
._9{width:12.551520px;}
._8{width:13.654800px;}
._11{width:15.282000px;}
._10{width:16.416000px;}
._1c{width:17.838000px;}
._17{width:18.954000px;}
._20{width:20.160000px;}
._15{width:21.366000px;}
._14{width:22.464000px;}
._1b{width:24.030000px;}
._f{width:25.596000px;}
._13{width:26.640000px;}
._26{width:28.404000px;}
._1d{width:30.402000px;}
._22{width:31.644000px;}
._21{width:32.670000px;}
._1f{width:34.452000px;}
._1e{width:35.748000px;}
._19{width:37.260000px;}
._18{width:38.394000px;}
._28{width:42.336000px;}
._27{width:43.524000px;}
._3{width:73.884000px;}
._4{width:76.500000px;}
._2e{width:90.750000px;}
._2d{width:108.594000px;}
._2c{width:109.944000px;}
._29{width:118.746000px;}
._25{width:121.068000px;}
._24{width:142.020000px;}
._23{width:180.414000px;}
._31{width:191.214000px;}
._30{width:192.360000px;}
._5{width:202.500000px;}
._2f{width:340.254000px;}
._2a{width:763.560000px;}
._2b{width:898.614000px;}
._2{width:1038.000000px;}
._7{width:1661.340000px;}
.fc5{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y42{bottom:3.060000px;}
.y3f{bottom:7.200000px;}
.ycb{bottom:9.720000px;}
.y102{bottom:9.765000px;}
.yca{bottom:9.900000px;}
.y4{bottom:15.480000px;}
.y2{bottom:18.360000px;}
.y41{bottom:18.540000px;}
.yc9{bottom:27.720000px;}
.y3e{bottom:36.000000px;}
.y5{bottom:36.540000px;}
.yf0{bottom:37.260000px;}
.ydf{bottom:37.440000px;}
.y43{bottom:39.600000px;}
.yff{bottom:47.025000px;}
.y3d{bottom:55.830000px;}
.y1{bottom:57.600000px;}
.y40{bottom:60.660000px;}
.y104{bottom:64.800000px;}
.yfe{bottom:64.845000px;}
.ydb{bottom:65.010000px;}
.yf4{bottom:74.730000px;}
.y3c{bottom:84.630000px;}
.yf3{bottom:92.730000px;}
.yf9{bottom:102.240000px;}
.y3b{bottom:104.610000px;}
.y10f{bottom:105.120000px;}
.y18c{bottom:106.920000px;}
.y160{bottom:108.720000px;}
.y13f{bottom:115.740000px;}
.y7d{bottom:116.640000px;}
.yd9{bottom:120.060000px;}
.y2d{bottom:122.400000px;}
.y10e{bottom:122.940000px;}
.y2e{bottom:123.840000px;}
.y3a{bottom:124.410000px;}
.y15f{bottom:126.540000px;}
.y13e{bottom:133.560000px;}
.y18b{bottom:133.740000px;}
.yab{bottom:134.280000px;}
.y7c{bottom:134.640000px;}
.y10d{bottom:143.100000px;}
.y39{bottom:144.210000px;}
.y15e{bottom:144.360000px;}
.y13d{bottom:151.380000px;}
.y2c{bottom:152.100000px;}
.y7b{bottom:152.460000px;}
.yd8{bottom:152.820000px;}
.y18a{bottom:160.740000px;}
.yaa{bottom:161.100000px;}
.y15d{bottom:162.180000px;}
.y38{bottom:164.010000px;}
.y7a{bottom:170.280000px;}
.yd7{bottom:170.820000px;}
.y10c{bottom:175.530000px;}
.y13c{bottom:178.230000px;}
.y189{bottom:178.590000px;}
.ya9{bottom:178.950000px;}
.y15c{bottom:180.030000px;}
.y79{bottom:188.130000px;}
.y37{bottom:192.810000px;}
.y10b{bottom:193.350000px;}
.y13b{bottom:196.050000px;}
.y188{bottom:196.410000px;}
.ya8{bottom:196.770000px;}
.yd6{bottom:197.670000px;}
.y15b{bottom:197.850000px;}
.y2b{bottom:198.210000px;}
.y78{bottom:205.950000px;}
.y10a{bottom:211.350000px;}
.y36{bottom:212.790000px;}
.y13a{bottom:213.870000px;}
.y187{bottom:214.230000px;}
.ya7{bottom:214.590000px;}
.yd5{bottom:215.490000px;}
.y15a{bottom:215.850000px;}
.y77{bottom:223.950000px;}
.y109{bottom:229.170000px;}
.y139{bottom:231.870000px;}
.y186{bottom:232.050000px;}
.ya6{bottom:232.410000px;}
.y35{bottom:232.590000px;}
.yd4{bottom:233.310000px;}
.y159{bottom:233.670000px;}
.y76{bottom:241.770000px;}
.y2a{bottom:246.990000px;}
.y138{bottom:249.690000px;}
.y185{bottom:249.870000px;}
.ya5{bottom:250.410000px;}
.yd3{bottom:251.130000px;}
.y158{bottom:251.490000px;}
.y34{bottom:252.390000px;}
.y75{bottom:259.590000px;}
.y108{bottom:264.810000px;}
.y137{bottom:267.510000px;}
.y184{bottom:267.870000px;}
.yd2{bottom:269.130000px;}
.y157{bottom:269.310000px;}
.ya4{bottom:277.230000px;}
.y74{bottom:277.410000px;}
.y33{bottom:281.190000px;}
.y107{bottom:282.630000px;}
.y136{bottom:285.330000px;}
.y183{bottom:285.690000px;}
.y156{bottom:287.130000px;}
.yd1{bottom:291.450000px;}
.ya3{bottom:295.050000px;}
.y29{bottom:295.770000px;}
.y32{bottom:301.035000px;}
.y135{bottom:303.150000px;}
.y182{bottom:303.510000px;}
.y73{bottom:304.230000px;}
.y103{bottom:305.130000px;}
.y155{bottom:307.470000px;}
.yd0{bottom:318.990000px;}
.y134{bottom:321.150000px;}
.y181{bottom:321.330000px;}
.y72{bottom:322.050000px;}
.ya2{bottom:324.390000px;}
.y28{bottom:326.550000px;}
.y31{bottom:330.015000px;}
.y106{bottom:332.670000px;}
.y133{bottom:338.970000px;}
.y180{bottom:339.150000px;}
.y154{bottom:339.870000px;}
.y71{bottom:340.050000px;}
.ya1{bottom:342.210000px;}
.ycf{bottom:346.530000px;}
.y30{bottom:349.815000px;}
.y27{bottom:352.830000px;}
.y17f{bottom:357.150000px;}
.y153{bottom:357.690000px;}
.y70{bottom:357.870000px;}
.ya0{bottom:360.030000px;}
.y105{bottom:360.210000px;}
.y132{bottom:365.790000px;}
.yce{bottom:374.250000px;}
.y17e{bottom:374.970000px;}
.y152{bottom:375.510000px;}
.y6f{bottom:375.690000px;}
.y26{bottom:379.290000px;}
.y2f{bottom:380.415000px;}
.y131{bottom:383.610000px;}
.yfd{bottom:387.930000px;}
.y9f{bottom:389.370000px;}
.y17d{bottom:392.790000px;}
.y151{bottom:393.330000px;}
.y6e{bottom:393.510000px;}
.y130{bottom:401.430000px;}
.ycd{bottom:401.790000px;}
.y25{bottom:405.570000px;}
.y17c{bottom:410.610000px;}
.y6d{bottom:411.330000px;}
.y101{bottom:415.470000px;}
.y9e{bottom:418.755000px;}
.y12f{bottom:419.295000px;}
.y17b{bottom:428.475000px;}
.y150{bottom:429.195000px;}
.y6c{bottom:429.375000px;}
.y24{bottom:431.895000px;}
.y12e{bottom:437.295000px;}
.y100{bottom:443.055000px;}
.y9d{bottom:445.575000px;}
.y17a{bottom:446.295000px;}
.y14f{bottom:447.015000px;}
.y6b{bottom:447.195000px;}
.y12d{bottom:455.115000px;}
.ycc{bottom:457.095000px;}
.y23{bottom:458.175000px;}
.y9c{bottom:463.575000px;}
.y179{bottom:464.295000px;}
.y14e{bottom:464.835000px;}
.y6a{bottom:465.015000px;}
.yf8{bottom:470.775000px;}
.y12c{bottom:472.935000px;}
.y9b{bottom:481.395000px;}
.y178{bottom:482.115000px;}
.y69{bottom:482.835000px;}
.y22{bottom:484.635000px;}
.y12b{bottom:490.755000px;}
.y14d{bottom:491.655000px;}
.yfc{bottom:498.315000px;}
.y9a{bottom:499.215000px;}
.y177{bottom:499.935000px;}
.y68{bottom:500.655000px;}
.y12a{bottom:508.575000px;}
.y14c{bottom:509.475000px;}
.y21{bottom:510.915000px;}
.yc8{bottom:512.175000px;}
.y176{bottom:517.755000px;}
.y67{bottom:518.475000px;}
.yfb{bottom:525.855000px;}
.y99{bottom:526.035000px;}
.y129{bottom:526.575000px;}
.y14b{bottom:527.475000px;}
.y175{bottom:535.575000px;}
.y66{bottom:536.475000px;}
.y20{bottom:537.195000px;}
.y128{bottom:544.395000px;}
.y14a{bottom:545.295000px;}
.yfa{bottom:553.575000px;}
.y98{bottom:555.375000px;}
.y127{bottom:562.215000px;}
.yc7{bottom:562.935000px;}
.y149{bottom:563.115000px;}
.y65{bottom:563.295000px;}
.y1f{bottom:563.475000px;}
.y174{bottom:571.395000px;}
.y126{bottom:580.035000px;}
.yc6{bottom:580.755000px;}
.y64{bottom:581.115000px;}
.y97{bottom:584.715000px;}
.y173{bottom:589.215000px;}
.y1e{bottom:589.755000px;}
.y148{bottom:589.935000px;}
.y125{bottom:597.855000px;}
.y63{bottom:598.935000px;}
.y172{bottom:607.035000px;}
.yc5{bottom:607.755000px;}
.yf2{bottom:608.655000px;}
.y96{bottom:611.535000px;}
.y62{bottom:616.755000px;}
.y1d{bottom:620.715000px;}
.y124{bottom:624.675000px;}
.y171{bottom:624.855000px;}
.yc4{bottom:625.575000px;}
.y147{bottom:625.755000px;}
.y95{bottom:629.355000px;}
.y61{bottom:634.755000px;}
.yf7{bottom:636.375000px;}
.y1c{bottom:642.495000px;}
.y123{bottom:642.675000px;}
.yc3{bottom:643.395000px;}
.y146{bottom:643.575000px;}
.y60{bottom:652.575000px;}
.y94{bottom:658.695000px;}
.y122{bottom:660.525000px;}
.y170{bottom:660.705000px;}
.yc2{bottom:661.245000px;}
.y145{bottom:661.425000px;}
.yf6{bottom:663.945000px;}
.y1b{bottom:670.245000px;}
.y5f{bottom:670.425000px;}
.y121{bottom:678.345000px;}
.y16f{bottom:678.525000px;}
.yc1{bottom:679.065000px;}
.y144{bottom:679.245000px;}
.y93{bottom:688.065000px;}
.y5e{bottom:688.245000px;}
.yf5{bottom:691.485000px;}
.y120{bottom:696.165000px;}
.y16e{bottom:696.345000px;}
.yc0{bottom:696.885000px;}
.y143{bottom:697.065000px;}
.y1a{bottom:701.025000px;}
.y92{bottom:705.885000px;}
.y5d{bottom:706.065000px;}
.y11f{bottom:713.985000px;}
.y16d{bottom:714.165000px;}
.ybf{bottom:714.885000px;}
.y19{bottom:717.045000px;}
.y142{bottom:717.225000px;}
.yef{bottom:719.205000px;}
.y5c{bottom:723.885000px;}
.y11e{bottom:731.805000px;}
.y16c{bottom:731.985000px;}
.y91{bottom:732.885000px;}
.y18{bottom:738.825000px;}
.ybe{bottom:741.705000px;}
.y5b{bottom:741.885000px;}
.yf1{bottom:746.745000px;}
.y11d{bottom:749.805000px;}
.y90{bottom:750.705000px;}
.ybd{bottom:759.525000px;}
.y5a{bottom:759.705000px;}
.y11c{bottom:767.625000px;}
.y16b{bottom:767.805000px;}
.y8f{bottom:768.525000px;}
.yee{bottom:774.285000px;}
.ybc{bottom:777.345000px;}
.y59{bottom:777.525000px;}
.y11b{bottom:785.445000px;}
.y16a{bottom:785.625000px;}
.y8e{bottom:786.345000px;}
.y17{bottom:789.405000px;}
.ybb{bottom:797.505000px;}
.y11a{bottom:803.265000px;}
.y169{bottom:803.445000px;}
.y8d{bottom:804.165000px;}
.y58{bottom:804.345000px;}
.yed{bottom:807.225000px;}
.y16{bottom:817.125000px;}
.y119{bottom:821.085000px;}
.y168{bottom:821.265000px;}
.y57{bottom:822.165000px;}
.yec{bottom:825.045000px;}
.yba{bottom:830.085000px;}
.y8c{bottom:830.985000px;}
.y118{bottom:839.085000px;}
.y56{bottom:839.985000px;}
.y15{bottom:845.025000px;}
.yb9{bottom:847.905000px;}
.y8b{bottom:848.985000px;}
.yeb{bottom:851.865000px;}
.y141{bottom:856.905000px;}
.y167{bottom:857.085000px;}
.y55{bottom:857.985000px;}
.yb8{bottom:865.725000px;}
.y117{bottom:865.905000px;}
.y8a{bottom:866.805000px;}
.yea{bottom:869.685000px;}
.y14{bottom:870.405000px;}
.y140{bottom:874.725000px;}
.y166{bottom:874.905000px;}
.y54{bottom:875.805000px;}
.yb7{bottom:883.545000px;}
.y116{bottom:883.725000px;}
.y13{bottom:890.205000px;}
.y165{bottom:892.725000px;}
.y53{bottom:893.625000px;}
.ye9{bottom:896.685000px;}
.yb6{bottom:901.410000px;}
.y115{bottom:901.590000px;}
.y12{bottom:910.590000px;}
.y52{bottom:911.490000px;}
.ye8{bottom:914.550000px;}
.yb5{bottom:919.230000px;}
.y114{bottom:919.410000px;}
.y164{bottom:928.410000px;}
.y51{bottom:929.310000px;}
.y11{bottom:931.830000px;}
.ye7{bottom:932.370000px;}
.y113{bottom:937.230000px;}
.yb4{bottom:946.230000px;}
.y50{bottom:947.310000px;}
.ye6{bottom:950.190000px;}
.y10{bottom:951.810000px;}
.y112{bottom:955.230000px;}
.yb3{bottom:964.050000px;}
.y163{bottom:964.230000px;}
.y4f{bottom:965.130000px;}
.yf{bottom:972.870000px;}
.y111{bottom:973.050000px;}
.ye5{bottom:977.010000px;}
.yb2{bottom:981.870000px;}
.y162{bottom:982.050000px;}
.y89{bottom:985.290000px;}
.y110{bottom:990.870000px;}
.y4e{bottom:991.950000px;}
.ye{bottom:993.750000px;}
.ye4{bottom:995.010000px;}
.y161{bottom:999.870000px;}
.yd{bottom:1007.610000px;}
.yb1{bottom:1008.690000px;}
.y4d{bottom:1009.770000px;}
.ye3{bottom:1012.830000px;}
.y88{bottom:1017.690000px;}
.yc{bottom:1021.470000px;}
.yb0{bottom:1026.510000px;}
.y4c{bottom:1027.590000px;}
.ye2{bottom:1030.650000px;}
.yb{bottom:1035.330000px;}
.y87{bottom:1035.510000px;}
.yaf{bottom:1044.510000px;}
.y4b{bottom:1045.410000px;}
.ye1{bottom:1048.470000px;}
.y86{bottom:1053.510000px;}
.ya{bottom:1053.870000px;}
.yae{bottom:1062.330000px;}
.y4a{bottom:1063.410000px;}
.yde{bottom:1070.790000px;}
.y85{bottom:1071.330000px;}
.yad{bottom:1080.150000px;}
.y49{bottom:1081.230000px;}
.y9{bottom:1083.030000px;}
.y84{bottom:1089.150000px;}
.yac{bottom:1097.970000px;}
.ye0{bottom:1098.510000px;}
.y48{bottom:1099.050000px;}
.y83{bottom:1106.970000px;}
.y8{bottom:1110.750000px;}
.y47{bottom:1116.870000px;}
.y82{bottom:1124.790000px;}
.yda{bottom:1126.050000px;}
.y46{bottom:1134.690000px;}
.y7{bottom:1138.650000px;}
.y81{bottom:1142.640000px;}
.y45{bottom:1152.720000px;}
.ydd{bottom:1153.620000px;}
.y80{bottom:1160.640000px;}
.y6{bottom:1170.540000px;}
.y7f{bottom:1178.460000px;}
.ydc{bottom:1181.340000px;}
.y44{bottom:1190.700000px;}
.y18d{bottom:1193.400000px;}
.y7e{bottom:1196.280000px;}
.h17{height:26.820000px;}
.h19{height:26.856000px;}
.h18{height:27.000000px;}
.h9{height:29.158594px;}
.h2{height:30.960000px;}
.h14{height:31.140000px;}
.h3{height:37.705078px;}
.h4{height:38.100586px;}
.h22{height:39.313477px;}
.hb{height:41.726953px;}
.hc{height:42.164648px;}
.h15{height:43.506914px;}
.h21{height:44.507812px;}
.h16{height:44.820000px;}
.hd{height:46.251562px;}
.h10{height:46.736719px;}
.h13{height:49.255313px;}
.ha{height:50.800781px;}
.hf{height:53.224453px;}
.h1c{height:54.360000px;}
.h1b{height:54.540000px;}
.h12{height:54.864844px;}
.he{height:58.819922px;}
.h7{height:59.436914px;}
.h8{height:63.500977px;}
.h5{height:65.884219px;}
.h20{height:81.900000px;}
.h1f{height:81.936000px;}
.h1a{height:82.116000px;}
.h6{height:88.901367px;}
.h1d{height:109.836000px;}
.h1e{height:137.160000px;}
.h11{height:407.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:72.360000px;}
.wf{width:77.400000px;}
.w3{width:78.480000px;}
.w7{width:79.956000px;}
.w9{width:83.556000px;}
.wa{width:86.940000px;}
.w10{width:86.976000px;}
.w11{width:91.980000px;}
.wb{width:96.336000px;}
.wd{width:102.060000px;}
.wc{width:102.240000px;}
.we{width:114.156000px;}
.w6{width:215.850000px;}
.w2{width:706.650000px;}
.w5{width:811.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.560000px;}
.x3{left:8.640000px;}
.x12{left:10.800000px;}
.x27{left:11.880000px;}
.x1b{left:14.040000px;}
.x18{left:15.840000px;}
.x1c{left:24.840000px;}
.x25{left:26.490000px;}
.x19{left:31.725000px;}
.x11{left:40.140000px;}
.x16{left:52.020000px;}
.x1{left:54.000000px;}
.x2b{left:80.999987px;}
.xb{left:91.979987px;}
.x2a{left:108.035987px;}
.x1e{left:135.396000px;}
.x2{left:214.590000px;}
.x1f{left:223.230000px;}
.xd{left:247.169987px;}
.x17{left:268.590000px;}
.x7{left:270.569987px;}
.x8{left:272.549987px;}
.xf{left:274.709987px;}
.xc{left:277.049987px;}
.xe{left:285.329987px;}
.x9{left:287.669987px;}
.x20{left:320.295000px;}
.x10{left:324.074987px;}
.x1a{left:349.275000px;}
.x6{left:365.294987px;}
.xa{left:378.794987px;}
.x5{left:446.474987px;}
.x21{left:470.595000px;}
.x13{left:473.474987px;}
.x14{left:500.504987px;}
.x15{left:527.504987px;}
.x22{left:555.045000px;}
.x26{left:584.925000px;}
.x23{left:642.705000px;}
.x28{left:663.045000px;}
.x24{left:739.950000px;}
.x29{left:750.750000px;}
.x4{left:760.650000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:22.496000pt;}
.lsd{letter-spacing:46.816000pt;}
.lse{letter-spacing:46.944000pt;}
.lsa{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-2.696533pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._a{width:2.707413pt;}
._e{width:3.708373pt;}
._d{width:4.945920pt;}
._1a{width:6.096000pt;}
._12{width:7.034880pt;}
._c{width:7.941120pt;}
._b{width:9.083520pt;}
._16{width:10.164480pt;}
._9{width:11.156907pt;}
._8{width:12.137600pt;}
._11{width:13.584000pt;}
._10{width:14.592000pt;}
._1c{width:15.856000pt;}
._17{width:16.848000pt;}
._20{width:17.920000pt;}
._15{width:18.992000pt;}
._14{width:19.968000pt;}
._1b{width:21.360000pt;}
._f{width:22.752000pt;}
._13{width:23.680000pt;}
._26{width:25.248000pt;}
._1d{width:27.024000pt;}
._22{width:28.128000pt;}
._21{width:29.040000pt;}
._1f{width:30.624000pt;}
._1e{width:31.776000pt;}
._19{width:33.120000pt;}
._18{width:34.128000pt;}
._28{width:37.632000pt;}
._27{width:38.688000pt;}
._3{width:65.674667pt;}
._4{width:68.000000pt;}
._2e{width:80.666667pt;}
._2d{width:96.528000pt;}
._2c{width:97.728000pt;}
._29{width:105.552000pt;}
._25{width:107.616000pt;}
._24{width:126.240000pt;}
._23{width:160.368000pt;}
._31{width:169.968000pt;}
._30{width:170.986667pt;}
._5{width:180.000000pt;}
._2f{width:302.448000pt;}
._2a{width:678.720000pt;}
._2b{width:798.768000pt;}
._2{width:922.666667pt;}
._7{width:1476.746667pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y42{bottom:2.720000pt;}
.y3f{bottom:6.400000pt;}
.ycb{bottom:8.640000pt;}
.y102{bottom:8.680000pt;}
.yca{bottom:8.800000pt;}
.y4{bottom:13.760000pt;}
.y2{bottom:16.320000pt;}
.y41{bottom:16.480000pt;}
.yc9{bottom:24.640000pt;}
.y3e{bottom:32.000000pt;}
.y5{bottom:32.480000pt;}
.yf0{bottom:33.120000pt;}
.ydf{bottom:33.280000pt;}
.y43{bottom:35.200000pt;}
.yff{bottom:41.800000pt;}
.y3d{bottom:49.626667pt;}
.y1{bottom:51.200000pt;}
.y40{bottom:53.920000pt;}
.y104{bottom:57.600000pt;}
.yfe{bottom:57.640000pt;}
.ydb{bottom:57.786667pt;}
.yf4{bottom:66.426667pt;}
.y3c{bottom:75.226667pt;}
.yf3{bottom:82.426667pt;}
.yf9{bottom:90.880000pt;}
.y3b{bottom:92.986667pt;}
.y10f{bottom:93.440000pt;}
.y18c{bottom:95.040000pt;}
.y160{bottom:96.640000pt;}
.y13f{bottom:102.880000pt;}
.y7d{bottom:103.680000pt;}
.yd9{bottom:106.720000pt;}
.y2d{bottom:108.800000pt;}
.y10e{bottom:109.280000pt;}
.y2e{bottom:110.080000pt;}
.y3a{bottom:110.586667pt;}
.y15f{bottom:112.480000pt;}
.y13e{bottom:118.720000pt;}
.y18b{bottom:118.880000pt;}
.yab{bottom:119.360000pt;}
.y7c{bottom:119.680000pt;}
.y10d{bottom:127.200000pt;}
.y39{bottom:128.186667pt;}
.y15e{bottom:128.320000pt;}
.y13d{bottom:134.560000pt;}
.y2c{bottom:135.200000pt;}
.y7b{bottom:135.520000pt;}
.yd8{bottom:135.840000pt;}
.y18a{bottom:142.880000pt;}
.yaa{bottom:143.200000pt;}
.y15d{bottom:144.160000pt;}
.y38{bottom:145.786667pt;}
.y7a{bottom:151.360000pt;}
.yd7{bottom:151.840000pt;}
.y10c{bottom:156.026667pt;}
.y13c{bottom:158.426667pt;}
.y189{bottom:158.746667pt;}
.ya9{bottom:159.066667pt;}
.y15c{bottom:160.026667pt;}
.y79{bottom:167.226667pt;}
.y37{bottom:171.386667pt;}
.y10b{bottom:171.866667pt;}
.y13b{bottom:174.266667pt;}
.y188{bottom:174.586667pt;}
.ya8{bottom:174.906667pt;}
.yd6{bottom:175.706667pt;}
.y15b{bottom:175.866667pt;}
.y2b{bottom:176.186667pt;}
.y78{bottom:183.066667pt;}
.y10a{bottom:187.866667pt;}
.y36{bottom:189.146667pt;}
.y13a{bottom:190.106667pt;}
.y187{bottom:190.426667pt;}
.ya7{bottom:190.746667pt;}
.yd5{bottom:191.546667pt;}
.y15a{bottom:191.866667pt;}
.y77{bottom:199.066667pt;}
.y109{bottom:203.706667pt;}
.y139{bottom:206.106667pt;}
.y186{bottom:206.266667pt;}
.ya6{bottom:206.586667pt;}
.y35{bottom:206.746667pt;}
.yd4{bottom:207.386667pt;}
.y159{bottom:207.706667pt;}
.y76{bottom:214.906667pt;}
.y2a{bottom:219.546667pt;}
.y138{bottom:221.946667pt;}
.y185{bottom:222.106667pt;}
.ya5{bottom:222.586667pt;}
.yd3{bottom:223.226667pt;}
.y158{bottom:223.546667pt;}
.y34{bottom:224.346667pt;}
.y75{bottom:230.746667pt;}
.y108{bottom:235.386667pt;}
.y137{bottom:237.786667pt;}
.y184{bottom:238.106667pt;}
.yd2{bottom:239.226667pt;}
.y157{bottom:239.386667pt;}
.ya4{bottom:246.426667pt;}
.y74{bottom:246.586667pt;}
.y33{bottom:249.946667pt;}
.y107{bottom:251.226667pt;}
.y136{bottom:253.626667pt;}
.y183{bottom:253.946667pt;}
.y156{bottom:255.226667pt;}
.yd1{bottom:259.066667pt;}
.ya3{bottom:262.266667pt;}
.y29{bottom:262.906667pt;}
.y32{bottom:267.586667pt;}
.y135{bottom:269.466667pt;}
.y182{bottom:269.786667pt;}
.y73{bottom:270.426667pt;}
.y103{bottom:271.226667pt;}
.y155{bottom:273.306667pt;}
.yd0{bottom:283.546667pt;}
.y134{bottom:285.466667pt;}
.y181{bottom:285.626667pt;}
.y72{bottom:286.266667pt;}
.ya2{bottom:288.346667pt;}
.y28{bottom:290.266667pt;}
.y31{bottom:293.346667pt;}
.y106{bottom:295.706667pt;}
.y133{bottom:301.306667pt;}
.y180{bottom:301.466667pt;}
.y154{bottom:302.106667pt;}
.y71{bottom:302.266667pt;}
.ya1{bottom:304.186667pt;}
.ycf{bottom:308.026667pt;}
.y30{bottom:310.946667pt;}
.y27{bottom:313.626667pt;}
.y17f{bottom:317.466667pt;}
.y153{bottom:317.946667pt;}
.y70{bottom:318.106667pt;}
.ya0{bottom:320.026667pt;}
.y105{bottom:320.186667pt;}
.y132{bottom:325.146667pt;}
.yce{bottom:332.666667pt;}
.y17e{bottom:333.306667pt;}
.y152{bottom:333.786667pt;}
.y6f{bottom:333.946667pt;}
.y26{bottom:337.146667pt;}
.y2f{bottom:338.146667pt;}
.y131{bottom:340.986667pt;}
.yfd{bottom:344.826667pt;}
.y9f{bottom:346.106667pt;}
.y17d{bottom:349.146667pt;}
.y151{bottom:349.626667pt;}
.y6e{bottom:349.786667pt;}
.y130{bottom:356.826667pt;}
.ycd{bottom:357.146667pt;}
.y25{bottom:360.506667pt;}
.y17c{bottom:364.986667pt;}
.y6d{bottom:365.626667pt;}
.y101{bottom:369.306667pt;}
.y9e{bottom:372.226667pt;}
.y12f{bottom:372.706667pt;}
.y17b{bottom:380.866667pt;}
.y150{bottom:381.506667pt;}
.y6c{bottom:381.666667pt;}
.y24{bottom:383.906667pt;}
.y12e{bottom:388.706667pt;}
.y100{bottom:393.826667pt;}
.y9d{bottom:396.066667pt;}
.y17a{bottom:396.706667pt;}
.y14f{bottom:397.346667pt;}
.y6b{bottom:397.506667pt;}
.y12d{bottom:404.546667pt;}
.ycc{bottom:406.306667pt;}
.y23{bottom:407.266667pt;}
.y9c{bottom:412.066667pt;}
.y179{bottom:412.706667pt;}
.y14e{bottom:413.186667pt;}
.y6a{bottom:413.346667pt;}
.yf8{bottom:418.466667pt;}
.y12c{bottom:420.386667pt;}
.y9b{bottom:427.906667pt;}
.y178{bottom:428.546667pt;}
.y69{bottom:429.186667pt;}
.y22{bottom:430.786667pt;}
.y12b{bottom:436.226667pt;}
.y14d{bottom:437.026667pt;}
.yfc{bottom:442.946667pt;}
.y9a{bottom:443.746667pt;}
.y177{bottom:444.386667pt;}
.y68{bottom:445.026667pt;}
.y12a{bottom:452.066667pt;}
.y14c{bottom:452.866667pt;}
.y21{bottom:454.146667pt;}
.yc8{bottom:455.266667pt;}
.y176{bottom:460.226667pt;}
.y67{bottom:460.866667pt;}
.yfb{bottom:467.426667pt;}
.y99{bottom:467.586667pt;}
.y129{bottom:468.066667pt;}
.y14b{bottom:468.866667pt;}
.y175{bottom:476.066667pt;}
.y66{bottom:476.866667pt;}
.y20{bottom:477.506667pt;}
.y128{bottom:483.906667pt;}
.y14a{bottom:484.706667pt;}
.yfa{bottom:492.066667pt;}
.y98{bottom:493.666667pt;}
.y127{bottom:499.746667pt;}
.yc7{bottom:500.386667pt;}
.y149{bottom:500.546667pt;}
.y65{bottom:500.706667pt;}
.y1f{bottom:500.866667pt;}
.y174{bottom:507.906667pt;}
.y126{bottom:515.586667pt;}
.yc6{bottom:516.226667pt;}
.y64{bottom:516.546667pt;}
.y97{bottom:519.746667pt;}
.y173{bottom:523.746667pt;}
.y1e{bottom:524.226667pt;}
.y148{bottom:524.386667pt;}
.y125{bottom:531.426667pt;}
.y63{bottom:532.386667pt;}
.y172{bottom:539.586667pt;}
.yc5{bottom:540.226667pt;}
.yf2{bottom:541.026667pt;}
.y96{bottom:543.586667pt;}
.y62{bottom:548.226667pt;}
.y1d{bottom:551.746667pt;}
.y124{bottom:555.266667pt;}
.y171{bottom:555.426667pt;}
.yc4{bottom:556.066667pt;}
.y147{bottom:556.226667pt;}
.y95{bottom:559.426667pt;}
.y61{bottom:564.226667pt;}
.yf7{bottom:565.666667pt;}
.y1c{bottom:571.106667pt;}
.y123{bottom:571.266667pt;}
.yc3{bottom:571.906667pt;}
.y146{bottom:572.066667pt;}
.y60{bottom:580.066667pt;}
.y94{bottom:585.506667pt;}
.y122{bottom:587.133333pt;}
.y170{bottom:587.293333pt;}
.yc2{bottom:587.773333pt;}
.y145{bottom:587.933333pt;}
.yf6{bottom:590.173333pt;}
.y1b{bottom:595.773333pt;}
.y5f{bottom:595.933333pt;}
.y121{bottom:602.973333pt;}
.y16f{bottom:603.133333pt;}
.yc1{bottom:603.613333pt;}
.y144{bottom:603.773333pt;}
.y93{bottom:611.613333pt;}
.y5e{bottom:611.773333pt;}
.yf5{bottom:614.653333pt;}
.y120{bottom:618.813333pt;}
.y16e{bottom:618.973333pt;}
.yc0{bottom:619.453333pt;}
.y143{bottom:619.613333pt;}
.y1a{bottom:623.133333pt;}
.y92{bottom:627.453333pt;}
.y5d{bottom:627.613333pt;}
.y11f{bottom:634.653333pt;}
.y16d{bottom:634.813333pt;}
.ybf{bottom:635.453333pt;}
.y19{bottom:637.373333pt;}
.y142{bottom:637.533333pt;}
.yef{bottom:639.293333pt;}
.y5c{bottom:643.453333pt;}
.y11e{bottom:650.493333pt;}
.y16c{bottom:650.653333pt;}
.y91{bottom:651.453333pt;}
.y18{bottom:656.733333pt;}
.ybe{bottom:659.293333pt;}
.y5b{bottom:659.453333pt;}
.yf1{bottom:663.773333pt;}
.y11d{bottom:666.493333pt;}
.y90{bottom:667.293333pt;}
.ybd{bottom:675.133333pt;}
.y5a{bottom:675.293333pt;}
.y11c{bottom:682.333333pt;}
.y16b{bottom:682.493333pt;}
.y8f{bottom:683.133333pt;}
.yee{bottom:688.253333pt;}
.ybc{bottom:690.973333pt;}
.y59{bottom:691.133333pt;}
.y11b{bottom:698.173333pt;}
.y16a{bottom:698.333333pt;}
.y8e{bottom:698.973333pt;}
.y17{bottom:701.693333pt;}
.ybb{bottom:708.893333pt;}
.y11a{bottom:714.013333pt;}
.y169{bottom:714.173333pt;}
.y8d{bottom:714.813333pt;}
.y58{bottom:714.973333pt;}
.yed{bottom:717.533333pt;}
.y16{bottom:726.333333pt;}
.y119{bottom:729.853333pt;}
.y168{bottom:730.013333pt;}
.y57{bottom:730.813333pt;}
.yec{bottom:733.373333pt;}
.yba{bottom:737.853333pt;}
.y8c{bottom:738.653333pt;}
.y118{bottom:745.853333pt;}
.y56{bottom:746.653333pt;}
.y15{bottom:751.133333pt;}
.yb9{bottom:753.693333pt;}
.y8b{bottom:754.653333pt;}
.yeb{bottom:757.213333pt;}
.y141{bottom:761.693333pt;}
.y167{bottom:761.853333pt;}
.y55{bottom:762.653333pt;}
.yb8{bottom:769.533333pt;}
.y117{bottom:769.693333pt;}
.y8a{bottom:770.493333pt;}
.yea{bottom:773.053333pt;}
.y14{bottom:773.693333pt;}
.y140{bottom:777.533333pt;}
.y166{bottom:777.693333pt;}
.y54{bottom:778.493333pt;}
.yb7{bottom:785.373333pt;}
.y116{bottom:785.533333pt;}
.y13{bottom:791.293333pt;}
.y165{bottom:793.533333pt;}
.y53{bottom:794.333333pt;}
.ye9{bottom:797.053333pt;}
.yb6{bottom:801.253333pt;}
.y115{bottom:801.413333pt;}
.y12{bottom:809.413333pt;}
.y52{bottom:810.213333pt;}
.ye8{bottom:812.933333pt;}
.yb5{bottom:817.093333pt;}
.y114{bottom:817.253333pt;}
.y164{bottom:825.253333pt;}
.y51{bottom:826.053333pt;}
.y11{bottom:828.293333pt;}
.ye7{bottom:828.773333pt;}
.y113{bottom:833.093333pt;}
.yb4{bottom:841.093333pt;}
.y50{bottom:842.053333pt;}
.ye6{bottom:844.613333pt;}
.y10{bottom:846.053333pt;}
.y112{bottom:849.093333pt;}
.yb3{bottom:856.933333pt;}
.y163{bottom:857.093333pt;}
.y4f{bottom:857.893333pt;}
.yf{bottom:864.773333pt;}
.y111{bottom:864.933333pt;}
.ye5{bottom:868.453333pt;}
.yb2{bottom:872.773333pt;}
.y162{bottom:872.933333pt;}
.y89{bottom:875.813333pt;}
.y110{bottom:880.773333pt;}
.y4e{bottom:881.733333pt;}
.ye{bottom:883.333333pt;}
.ye4{bottom:884.453333pt;}
.y161{bottom:888.773333pt;}
.yd{bottom:895.653333pt;}
.yb1{bottom:896.613333pt;}
.y4d{bottom:897.573333pt;}
.ye3{bottom:900.293333pt;}
.y88{bottom:904.613333pt;}
.yc{bottom:907.973333pt;}
.yb0{bottom:912.453333pt;}
.y4c{bottom:913.413333pt;}
.ye2{bottom:916.133333pt;}
.yb{bottom:920.293333pt;}
.y87{bottom:920.453333pt;}
.yaf{bottom:928.453333pt;}
.y4b{bottom:929.253333pt;}
.ye1{bottom:931.973333pt;}
.y86{bottom:936.453333pt;}
.ya{bottom:936.773333pt;}
.yae{bottom:944.293333pt;}
.y4a{bottom:945.253333pt;}
.yde{bottom:951.813333pt;}
.y85{bottom:952.293333pt;}
.yad{bottom:960.133333pt;}
.y49{bottom:961.093333pt;}
.y9{bottom:962.693333pt;}
.y84{bottom:968.133333pt;}
.yac{bottom:975.973333pt;}
.ye0{bottom:976.453333pt;}
.y48{bottom:976.933333pt;}
.y83{bottom:983.973333pt;}
.y8{bottom:987.333333pt;}
.y47{bottom:992.773333pt;}
.y82{bottom:999.813333pt;}
.yda{bottom:1000.933333pt;}
.y46{bottom:1008.613333pt;}
.y7{bottom:1012.133333pt;}
.y81{bottom:1015.680000pt;}
.y45{bottom:1024.640000pt;}
.ydd{bottom:1025.440000pt;}
.y80{bottom:1031.680000pt;}
.y6{bottom:1040.480000pt;}
.y7f{bottom:1047.520000pt;}
.ydc{bottom:1050.080000pt;}
.y44{bottom:1058.400000pt;}
.y18d{bottom:1060.800000pt;}
.y7e{bottom:1063.360000pt;}
.h17{height:23.840000pt;}
.h19{height:23.872000pt;}
.h18{height:24.000000pt;}
.h9{height:25.918750pt;}
.h2{height:27.520000pt;}
.h14{height:27.680000pt;}
.h3{height:33.515625pt;}
.h4{height:33.867188pt;}
.h22{height:34.945312pt;}
.hb{height:37.090625pt;}
.hc{height:37.479688pt;}
.h15{height:38.672812pt;}
.h21{height:39.562500pt;}
.h16{height:39.840000pt;}
.hd{height:41.112500pt;}
.h10{height:41.543750pt;}
.h13{height:43.782500pt;}
.ha{height:45.156250pt;}
.hf{height:47.310625pt;}
.h1c{height:48.320000pt;}
.h1b{height:48.480000pt;}
.h12{height:48.768750pt;}
.he{height:52.284375pt;}
.h7{height:52.832812pt;}
.h8{height:56.445312pt;}
.h5{height:58.563750pt;}
.h20{height:72.800000pt;}
.h1f{height:72.832000pt;}
.h1a{height:72.992000pt;}
.h6{height:79.023438pt;}
.h1d{height:97.632000pt;}
.h1e{height:121.920000pt;}
.h11{height:362.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:64.320000pt;}
.wf{width:68.800000pt;}
.w3{width:69.760000pt;}
.w7{width:71.072000pt;}
.w9{width:74.272000pt;}
.wa{width:77.280000pt;}
.w10{width:77.312000pt;}
.w11{width:81.760000pt;}
.wb{width:85.632000pt;}
.wd{width:90.720000pt;}
.wc{width:90.880000pt;}
.we{width:101.472000pt;}
.w6{width:191.866667pt;}
.w2{width:628.133333pt;}
.w5{width:721.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720000pt;}
.x3{left:7.680000pt;}
.x12{left:9.600000pt;}
.x27{left:10.560000pt;}
.x1b{left:12.480000pt;}
.x18{left:14.080000pt;}
.x1c{left:22.080000pt;}
.x25{left:23.546667pt;}
.x19{left:28.200000pt;}
.x11{left:35.680000pt;}
.x16{left:46.240000pt;}
.x1{left:48.000000pt;}
.x2b{left:71.999988pt;}
.xb{left:81.759988pt;}
.x2a{left:96.031988pt;}
.x1e{left:120.352000pt;}
.x2{left:190.746667pt;}
.x1f{left:198.426667pt;}
.xd{left:219.706655pt;}
.x17{left:238.746667pt;}
.x7{left:240.506655pt;}
.x8{left:242.266655pt;}
.xf{left:244.186655pt;}
.xc{left:246.266655pt;}
.xe{left:253.626655pt;}
.x9{left:255.706655pt;}
.x20{left:284.706667pt;}
.x10{left:288.066655pt;}
.x1a{left:310.466667pt;}
.x6{left:324.706655pt;}
.xa{left:336.706655pt;}
.x5{left:396.866655pt;}
.x21{left:418.306667pt;}
.x13{left:420.866655pt;}
.x14{left:444.893322pt;}
.x15{left:468.893322pt;}
.x22{left:493.373333pt;}
.x26{left:519.933333pt;}
.x23{left:571.293333pt;}
.x28{left:589.373333pt;}
.x24{left:657.733333pt;}
.x29{left:667.333333pt;}
.x4{left:676.133333pt;}
}




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