
    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_fd1fea358b22be29bb5c561f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c129a3c5e7f15fc5eac6eba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0cc5e938561abaa181dd1306.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_22c64667152be280f0252f3f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24d2adb3c360e18aee6c486b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ba45e4cae1c1e0110cee38c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2df2c23e79e3bce10a5b8ce2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{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);}
.v5{vertical-align:-61.920000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.lsd{letter-spacing:-0.630000px;}
.ls16{letter-spacing:-0.538800px;}
.lsf{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.223920px;}
.lsb{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls19{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.493800px;}
.ls1e{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.386000px;}
.lsa{letter-spacing:3.060000px;}
.ls1b{letter-spacing:12.420000px;}
.ls9{letter-spacing:13.860000px;}
.ls5{letter-spacing:61.920000px;}
.ls7{letter-spacing:62.640000px;}
.ls4{letter-spacing:63.360000px;}
.ls6{letter-spacing:67.860000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.865400px;}
.wsf{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsd{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.836200px;}
.ws8{word-spacing:-11.700000px;}
.ws14{word-spacing:-11.521200px;}
.ws3{word-spacing:-10.933800px;}
.ws2{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.810000px;}
.ws17{word-spacing:-9.792000px;}
.wsa{word-spacing:-7.560000px;}
.ws11{word-spacing:0.000000px;}
.ws9{word-spacing:57.960000px;}
._29{margin-left:-2.376000px;}
._3{margin-left:-1.080000px;}
._2{width:1.127520px;}
._a{width:2.496480px;}
._9{width:3.564000px;}
._0{width:5.011200px;}
._1{width:6.264000px;}
._6{width:7.398000px;}
._13{width:8.411040px;}
._b{width:9.828000px;}
._e{width:11.096640px;}
._7{width:12.150000px;}
._d{width:13.750800px;}
._8{width:15.006480px;}
._12{width:16.610160px;}
._1b{width:17.827920px;}
._14{width:19.296480px;}
._11{width:20.450160px;}
._10{width:21.573360px;}
._15{width:23.250000px;}
._22{width:24.398160px;}
._f{width:25.816320px;}
._1a{width:27.668880px;}
._21{width:29.643360px;}
._19{width:30.652560px;}
._17{width:31.975920px;}
._16{width:32.987520px;}
._18{width:35.244240px;}
._28{width:36.810000px;}
._5{width:37.926000px;}
._23{width:40.620000px;}
._2f{width:47.874000px;}
._2d{width:49.896000px;}
._2e{width:51.354000px;}
._25{width:55.512000px;}
._27{width:57.654480px;}
._26{width:58.950000px;}
._20{width:69.048000px;}
._1c{width:70.092000px;}
._1d{width:71.118000px;}
._1f{width:92.886000px;}
._1e{width:93.900000px;}
._2b{width:116.640000px;}
._2a{width:117.720000px;}
._2c{width:121.878000px;}
._24{width:122.958000px;}
._c{width:1834.296000px;}
._4{width:2055.186720px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(4,50,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:95.760000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.060000px;}
.y48{bottom:4.320000px;}
.y2a{bottom:5.580000px;}
.y9f{bottom:6.300000px;}
.ya3{bottom:6.480000px;}
.y9d{bottom:15.300000px;}
.y88{bottom:17.100000px;}
.y47{bottom:18.180000px;}
.y8c{bottom:18.900000px;}
.y29{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y4c{bottom:19.980000px;}
.y9e{bottom:24.300000px;}
.ya7{bottom:26.280000px;}
.ya1{bottom:26.460000px;}
.ya9{bottom:26.640000px;}
.ya4{bottom:26.820000px;}
.y28{bottom:27.000000px;}
.y87{bottom:32.580000px;}
.y2{bottom:33.840000px;}
.y4b{bottom:39.960000px;}
.y27{bottom:42.660000px;}
.y1{bottom:46.620000px;}
.y26{bottom:58.140000px;}
.yd4{bottom:71.640000px;}
.y45{bottom:73.260000px;}
.y25{bottom:73.620000px;}
.yc9{bottom:77.760000px;}
.y16c{bottom:80.100000px;}
.yfa{bottom:86.220000px;}
.yd3{bottom:88.380000px;}
.y24{bottom:89.130000px;}
.y44{bottom:93.060000px;}
.y85{bottom:94.320000px;}
.y16b{bottom:95.580000px;}
.yc8{bottom:97.560000px;}
.y86{bottom:102.240000px;}
.yd2{bottom:103.860000px;}
.y23{bottom:104.790000px;}
.yf9{bottom:106.020000px;}
.y131{bottom:106.920000px;}
.y16a{bottom:111.240000px;}
.y84{bottom:111.600000px;}
.y43{bottom:113.040000px;}
.yd1{bottom:116.280000px;}
.yc7{bottom:117.360000px;}
.y22{bottom:120.270000px;}
.y130{bottom:122.400000px;}
.yf8{bottom:126.000000px;}
.y1a1{bottom:126.720000px;}
.y83{bottom:128.880000px;}
.y169{bottom:131.220000px;}
.y2c{bottom:131.790000px;}
.y42{bottom:132.840000px;}
.y21{bottom:135.750000px;}
.yc6{bottom:137.160000px;}
.y12f{bottom:138.060000px;}
.y1a0{bottom:142.200000px;}
.yf7{bottom:145.800000px;}
.y82{bottom:146.160000px;}
.y168{bottom:146.700000px;}
.y20{bottom:151.230000px;}
.y41{bottom:152.670000px;}
.yc5{bottom:156.990000px;}
.y19f{bottom:157.710000px;}
.y12e{bottom:158.070000px;}
.y167{bottom:162.210000px;}
.y81{bottom:163.470000px;}
.yf6{bottom:165.630000px;}
.y1f{bottom:166.890000px;}
.y40{bottom:172.470000px;}
.y19e{bottom:173.370000px;}
.y12d{bottom:173.550000px;}
.yc4{bottom:176.970000px;}
.y80{bottom:180.570000px;}
.y1e{bottom:182.370000px;}
.yf5{bottom:185.430000px;}
.y19d{bottom:188.850000px;}
.y3f{bottom:192.270000px;}
.y12c{bottom:193.530000px;}
.yc3{bottom:196.770000px;}
.y1d{bottom:197.850000px;}
.yf4{bottom:205.230000px;}
.y12b{bottom:209.190000px;}
.y3e{bottom:212.250000px;}
.y1c{bottom:213.330000px;}
.y7f{bottom:215.130000px;}
.yc2{bottom:216.570000px;}
.y19c{bottom:219.810000px;}
.y12a{bottom:224.670000px;}
.yf3{bottom:225.210000px;}
.y1b{bottom:228.990000px;}
.y3d{bottom:232.050000px;}
.y7e{bottom:232.410000px;}
.y166{bottom:233.310000px;}
.y19b{bottom:235.290000px;}
.yc1{bottom:236.370000px;}
.y129{bottom:244.650000px;}
.yf2{bottom:245.010000px;}
.y165{bottom:248.790000px;}
.y7d{bottom:249.690000px;}
.y1a{bottom:250.950000px;}
.y3c{bottom:251.850000px;}
.yc0{bottom:256.170000px;}
.y19a{bottom:256.890000px;}
.y128{bottom:260.130000px;}
.y2b{bottom:263.550000px;}
.y164{bottom:264.450000px;}
.yf1{bottom:264.810000px;}
.y7c{bottom:266.970000px;}
.y3b{bottom:271.650000px;}
.y127{bottom:275.790000px;}
.ybf{bottom:276.150000px;}
.y199{bottom:278.490000px;}
.y7b{bottom:284.070000px;}
.y163{bottom:284.430000px;}
.yf0{bottom:284.610000px;}
.y3a{bottom:291.450000px;}
.y126{bottom:295.770000px;}
.ybe{bottom:295.950000px;}
.y162{bottom:299.910000px;}
.y7a{bottom:301.350000px;}
.yef{bottom:304.410000px;}
.y125{bottom:311.250000px;}
.y39{bottom:311.430000px;}
.y161{bottom:315.390000px;}
.ybd{bottom:315.750000px;}
.y79{bottom:318.630000px;}
.y198{bottom:321.510000px;}
.yee{bottom:324.390000px;}
.y38{bottom:331.230000px;}
.ybc{bottom:335.190000px;}
.y160{bottom:335.550000px;}
.y78{bottom:335.910000px;}
.y197{bottom:342.930000px;}
.yed{bottom:344.190000px;}
.y124{bottom:346.710000px;}
.y37{bottom:351.030000px;}
.y77{bottom:353.190000px;}
.ybb{bottom:354.990000px;}
.y123{bottom:362.370000px;}
.yec{bottom:363.990000px;}
.y196{bottom:364.530000px;}
.y76{bottom:370.470000px;}
.y36{bottom:370.830000px;}
.y15f{bottom:371.010000px;}
.yba{bottom:375.330000px;}
.y122{bottom:382.350000px;}
.yeb{bottom:383.790000px;}
.y195{bottom:386.130000px;}
.y15e{bottom:386.490000px;}
.y75{bottom:387.570000px;}
.y35{bottom:390.630000px;}
.yb9{bottom:395.130000px;}
.y121{bottom:397.830000px;}
.yea{bottom:403.635000px;}
.y74{bottom:404.895000px;}
.y15d{bottom:406.695000px;}
.y194{bottom:407.595000px;}
.y34{bottom:410.655000px;}
.y120{bottom:413.355000px;}
.yb8{bottom:414.975000px;}
.y73{bottom:422.175000px;}
.ye9{bottom:423.615000px;}
.y11f{bottom:429.015000px;}
.y193{bottom:429.195000px;}
.y33{bottom:430.455000px;}
.yb7{bottom:434.415000px;}
.y15c{bottom:437.655000px;}
.y72{bottom:439.455000px;}
.ye8{bottom:443.415000px;}
.y11e{bottom:447.015000px;}
.y192{bottom:447.555000px;}
.y32{bottom:450.255000px;}
.yb6{bottom:454.215000px;}
.y15b{bottom:457.635000px;}
.y71{bottom:458.715000px;}
.ye7{bottom:463.215000px;}
.y191{bottom:467.355000px;}
.y11d{bottom:469.335000px;}
.y31{bottom:470.055000px;}
.y15a{bottom:473.295000px;}
.yb5{bottom:474.555000px;}
.y70{bottom:478.515000px;}
.yd0{bottom:479.775000px;}
.ye6{bottom:483.015000px;}
.y190{bottom:487.155000px;}
.y159{bottom:488.775000px;}
.y30{bottom:489.855000px;}
.y11c{bottom:492.555000px;}
.yb4{bottom:494.355000px;}
.y6f{bottom:496.335000px;}
.ye5{bottom:502.815000px;}
.ycf{bottom:504.615000px;}
.y18f{bottom:506.955000px;}
.y158{bottom:508.755000px;}
.y2f{bottom:509.835000px;}
.y6e{bottom:513.615000px;}
.yb3{bottom:514.155000px;}
.yce{bottom:518.475000px;}
.ye4{bottom:522.795000px;}
.y157{bottom:524.235000px;}
.y11b{bottom:526.755000px;}
.y18e{bottom:526.935000px;}
.y2e{bottom:529.275000px;}
.y6d{bottom:530.535000px;}
.ycd{bottom:532.515000px;}
.yb2{bottom:533.955000px;}
.y156{bottom:539.895000px;}
.ye3{bottom:542.595000px;}
.y11a{bottom:543.855000px;}
.y18d{bottom:546.735000px;}
.y6c{bottom:547.815000px;}
.ycc{bottom:547.995000px;}
.y2d{bottom:549.435000px;}
.yb1{bottom:553.755000px;}
.y155{bottom:559.875000px;}
.y119{bottom:561.495000px;}
.ye2{bottom:562.395000px;}
.ycb{bottom:562.935000px;}
.y19{bottom:563.115000px;}
.y6b{bottom:564.915000px;}
.y18c{bottom:566.535000px;}
.yb0{bottom:573.735000px;}
.y154{bottom:575.355000px;}
.y118{bottom:578.415000px;}
.ye1{bottom:582.195000px;}
.y6a{bottom:584.715000px;}
.y18b{bottom:586.335000px;}
.yaf{bottom:593.535000px;}
.y153{bottom:595.335000px;}
.y117{bottom:595.695000px;}
.ye0{bottom:601.995000px;}
.y69{bottom:604.875000px;}
.y18a{bottom:606.135000px;}
.y152{bottom:610.995000px;}
.yae{bottom:613.335000px;}
.ydf{bottom:621.975000px;}
.y68{bottom:624.675000px;}
.y189{bottom:626.115000px;}
.y151{bottom:626.475000px;}
.y116{bottom:630.255000px;}
.yad{bottom:632.775000px;}
.yde{bottom:641.775000px;}
.y67{bottom:644.475000px;}
.y188{bottom:645.915000px;}
.y150{bottom:646.455000px;}
.y115{bottom:647.355000px;}
.yac{bottom:653.865000px;}
.ydd{bottom:661.605000px;}
.y14f{bottom:661.965000px;}
.y66{bottom:664.305000px;}
.y114{bottom:665.025000px;}
.y187{bottom:665.745000px;}
.yab{bottom:675.645000px;}
.y14e{bottom:677.625000px;}
.ydc{bottom:681.405000px;}
.y113{bottom:682.305000px;}
.y65{bottom:684.285000px;}
.y186{bottom:685.545000px;}
.ya6{bottom:687.345000px;}
.y14d{bottom:697.605000px;}
.y112{bottom:699.585000px;}
.ydb{bottom:701.205000px;}
.y64{bottom:704.085000px;}
.y185{bottom:705.345000px;}
.yaa{bottom:707.505000px;}
.y14c{bottom:713.085000px;}
.y111{bottom:716.865000px;}
.yda{bottom:721.185000px;}
.y63{bottom:723.885000px;}
.y184{bottom:727.305000px;}
.ya8{bottom:727.845000px;}
.y14b{bottom:728.565000px;}
.y110{bottom:733.785000px;}
.yd9{bottom:740.625000px;}
.y62{bottom:743.685000px;}
.y14a{bottom:744.225000px;}
.ya0{bottom:748.005000px;}
.y183{bottom:748.725000px;}
.y10f{bottom:750.885000px;}
.yd8{bottom:762.945000px;}
.y61{bottom:763.485000px;}
.y149{bottom:764.205000px;}
.ya5{bottom:768.345000px;}
.y10e{bottom:768.525000px;}
.y148{bottom:779.685000px;}
.y60{bottom:783.465000px;}
.y182{bottom:784.185000px;}
.y10d{bottom:785.805000px;}
.yd7{bottom:787.965000px;}
.ya2{bottom:788.505000px;}
.y147{bottom:795.165000px;}
.y181{bottom:799.665000px;}
.y10c{bottom:802.725000px;}
.y5f{bottom:803.265000px;}
.yd6{bottom:805.785000px;}
.y9c{bottom:808.845000px;}
.y146{bottom:815.145000px;}
.y180{bottom:819.645000px;}
.y10b{bottom:820.005000px;}
.yd5{bottom:820.725000px;}
.y5e{bottom:823.065000px;}
.y145{bottom:830.805000px;}
.y18{bottom:832.425000px;}
.y17f{bottom:835.305000px;}
.yca{bottom:837.105000px;}
.y10a{bottom:837.645000px;}
.y5d{bottom:842.865000px;}
.y144{bottom:846.285000px;}
.y17{bottom:851.325000px;}
.y9b{bottom:853.665000px;}
.y109{bottom:854.745000px;}
.y17e{bottom:855.285000px;}
.y5c{bottom:862.665000px;}
.y16{bottom:864.825000px;}
.y143{bottom:866.265000px;}
.y17d{bottom:870.765000px;}
.y108{bottom:871.665000px;}
.y9a{bottom:873.645000px;}
.y15{bottom:878.505000px;}
.y142{bottom:881.745000px;}
.y5b{bottom:882.645000px;}
.y14{bottom:887.145000px;}
.y107{bottom:888.945000px;}
.y17c{bottom:890.745000px;}
.y99{bottom:893.085000px;}
.y141{bottom:897.450000px;}
.y5a{bottom:902.490000px;}
.y13{bottom:906.090000px;}
.y106{bottom:906.270000px;}
.y17b{bottom:906.450000px;}
.y98{bottom:913.290000px;}
.y140{bottom:917.430000px;}
.y12{bottom:919.950000px;}
.y59{bottom:922.290000px;}
.y17a{bottom:926.430000px;}
.y105{bottom:928.410000px;}
.y13f{bottom:932.910000px;}
.y97{bottom:933.090000px;}
.y11{bottom:933.630000px;}
.y179{bottom:941.910000px;}
.y58{bottom:942.090000px;}
.y10{bottom:942.270000px;}
.y13e{bottom:948.390000px;}
.y96{bottom:952.890000px;}
.y104{bottom:953.970000px;}
.y178{bottom:957.390000px;}
.yf{bottom:961.350000px;}
.y57{bottom:961.890000px;}
.y13d{bottom:968.550000px;}
.ye{bottom:970.530000px;}
.y95{bottom:972.870000px;}
.y103{bottom:973.770000px;}
.y177{bottom:977.550000px;}
.y56{bottom:981.870000px;}
.y13c{bottom:984.030000px;}
.yd{bottom:984.570000px;}
.y94{bottom:992.670000px;}
.y176{bottom:993.030000px;}
.y102{bottom:993.750000px;}
.y13b{bottom:999.510000px;}
.y55{bottom:1001.670000px;}
.yc{bottom:1008.510000px;}
.y93{bottom:1012.470000px;}
.y101{bottom:1013.550000px;}
.y13a{bottom:1019.490000px;}
.y54{bottom:1021.470000px;}
.y175{bottom:1028.490000px;}
.yb{bottom:1032.270000px;}
.y100{bottom:1033.350000px;}
.y139{bottom:1035.150000px;}
.y53{bottom:1041.270000px;}
.y174{bottom:1044.150000px;}
.y138{bottom:1050.630000px;}
.y92{bottom:1052.070000px;}
.yff{bottom:1053.150000px;}
.y173{bottom:1059.630000px;}
.y52{bottom:1061.070000px;}
.ya{bottom:1068.450000px;}
.y137{bottom:1070.610000px;}
.y91{bottom:1072.050000px;}
.yfe{bottom:1072.950000px;}
.y172{bottom:1079.610000px;}
.y51{bottom:1081.050000px;}
.y136{bottom:1086.090000px;}
.y90{bottom:1091.850000px;}
.yfd{bottom:1092.930000px;}
.y171{bottom:1095.090000px;}
.y50{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y135{bottom:1101.750000px;}
.y170{bottom:1110.750000px;}
.y8f{bottom:1111.650000px;}
.yfc{bottom:1112.370000px;}
.y46{bottom:1112.730000px;}
.y8{bottom:1117.950000px;}
.y4f{bottom:1120.650000px;}
.y134{bottom:1121.730000px;}
.y16f{bottom:1130.730000px;}
.y8e{bottom:1131.450000px;}
.yfb{bottom:1134.690000px;}
.y133{bottom:1137.210000px;}
.y4e{bottom:1140.450000px;}
.y16e{bottom:1146.240000px;}
.y8d{bottom:1150.920000px;}
.y132{bottom:1152.720000px;}
.y7{bottom:1155.960000px;}
.y4d{bottom:1160.280000px;}
.y16d{bottom:1161.720000px;}
.y6{bottom:1167.480000px;}
.y8b{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y4a{bottom:1178.460000px;}
.y8a{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y49{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h12{height:18.140625px;}
.h1d{height:19.440000px;}
.h1c{height:19.620000px;}
.hf{height:23.319141px;}
.h15{height:27.705000px;}
.hd{height:29.664141px;}
.hc{height:36.281250px;}
.h1a{height:37.980000px;}
.h3{height:40.985156px;}
.h16{height:42.922699px;}
.h19{height:44.818500px;}
.he{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2{height:52.998047px;}
.h18{height:53.573906px;}
.h8{height:54.421875px;}
.h14{height:55.503472px;}
.h21{height:58.621992px;}
.h10{height:58.651172px;}
.h22{height:59.092031px;}
.h1e{height:59.940000px;}
.h1b{height:60.120000px;}
.h9{height:60.226875px;}
.hb{height:66.543750px;}
.h13{height:66.757500px;}
.h17{height:70.664062px;}
.h5{height:72.562500px;}
.h1f{height:84.898125px;}
.h20{height:93.936445px;}
.ha{height:126.984375px;}
.h11{height:263.550000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:75.960000px;}
.w8{width:76.356000px;}
.w6{width:91.609500px;}
.w3{width:101.730000px;}
.w9{width:104.745000px;}
.wa{width:108.741000px;}
.wb{width:113.610000px;}
.w7{width:156.615000px;}
.w4{width:232.050000px;}
.w5{width:334.140000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:3.945000px;}
.x15{left:8.089500px;}
.x19{left:9.540000px;}
.x9{left:10.650000px;}
.x20{left:12.600000px;}
.x23{left:16.740000px;}
.x1b{left:17.805000px;}
.x27{left:19.440000px;}
.x18{left:21.960000px;}
.x1c{left:23.565000px;}
.x1e{left:25.725000px;}
.x8{left:26.850000px;}
.x28{left:31.320000px;}
.x24{left:34.560000px;}
.x26{left:39.240000px;}
.x7{left:42.510000px;}
.x25{left:44.085000px;}
.x21{left:45.540000px;}
.x29{left:47.505000px;}
.x6{left:58.710000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x14{left:98.856000px;}
.xd{left:108.036000px;}
.x2d{left:113.076000px;}
.x2e{left:158.250000px;}
.x16{left:172.665000px;}
.x17{left:329.295000px;}
.xf{left:359.715000px;}
.x13{left:396.435000px;}
.x1a{left:405.660000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x11{left:483.960000px;}
.x1d{left:510.420000px;}
.xe{left:590.370000px;}
.x1f{left:619.170000px;}
.x2b{left:672.810000px;}
.x2c{left:675.150000px;}
.x4{left:721.950000px;}
.x22{left:732.780000px;}
.x2a{left:815.580000px;}
@media print{
.v5{vertical-align:-55.040000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls16{letter-spacing:-0.478933pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.199040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls19{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.438933pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:1.232000pt;}
.lsa{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:11.040000pt;}
.ls9{letter-spacing:12.320000pt;}
.ls5{letter-spacing:55.040000pt;}
.ls7{letter-spacing:55.680000pt;}
.ls4{letter-spacing:56.320000pt;}
.ls6{letter-spacing:60.320000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsf{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.288000pt;}
.ws18{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.521067pt;}
.ws8{word-spacing:-10.400000pt;}
.ws14{word-spacing:-10.241067pt;}
.ws3{word-spacing:-9.718933pt;}
.ws2{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws17{word-spacing:-8.704000pt;}
.wsa{word-spacing:-6.720000pt;}
.ws11{word-spacing:0.000000pt;}
.ws9{word-spacing:51.520000pt;}
._29{margin-left:-2.112000pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.002240pt;}
._a{width:2.219093pt;}
._9{width:3.168000pt;}
._0{width:4.454400pt;}
._1{width:5.568000pt;}
._6{width:6.576000pt;}
._13{width:7.476480pt;}
._b{width:8.736000pt;}
._e{width:9.863680pt;}
._7{width:10.800000pt;}
._d{width:12.222933pt;}
._8{width:13.339093pt;}
._12{width:14.764587pt;}
._1b{width:15.847040pt;}
._14{width:17.152427pt;}
._11{width:18.177920pt;}
._10{width:19.176320pt;}
._15{width:20.666667pt;}
._22{width:21.687253pt;}
._f{width:22.947840pt;}
._1a{width:24.594560pt;}
._21{width:26.349653pt;}
._19{width:27.246720pt;}
._17{width:28.423040pt;}
._16{width:29.322240pt;}
._18{width:31.328213pt;}
._28{width:32.720000pt;}
._5{width:33.712000pt;}
._23{width:36.106667pt;}
._2f{width:42.554667pt;}
._2d{width:44.352000pt;}
._2e{width:45.648000pt;}
._25{width:49.344000pt;}
._27{width:51.248427pt;}
._26{width:52.400000pt;}
._20{width:61.376000pt;}
._1c{width:62.304000pt;}
._1d{width:63.216000pt;}
._1f{width:82.565333pt;}
._1e{width:83.466667pt;}
._2b{width:103.680000pt;}
._2a{width:104.640000pt;}
._2c{width:108.336000pt;}
._24{width:109.296000pt;}
._c{width:1630.485333pt;}
._4{width:1826.832640pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:85.120000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:2.720000pt;}
.y48{bottom:3.840000pt;}
.y2a{bottom:4.960000pt;}
.y9f{bottom:5.600000pt;}
.ya3{bottom:5.760000pt;}
.y9d{bottom:13.600000pt;}
.y88{bottom:15.200000pt;}
.y47{bottom:16.160000pt;}
.y8c{bottom:16.800000pt;}
.y29{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y4c{bottom:17.760000pt;}
.y9e{bottom:21.600000pt;}
.ya7{bottom:23.360000pt;}
.ya1{bottom:23.520000pt;}
.ya9{bottom:23.680000pt;}
.ya4{bottom:23.840000pt;}
.y28{bottom:24.000000pt;}
.y87{bottom:28.960000pt;}
.y2{bottom:30.080000pt;}
.y4b{bottom:35.520000pt;}
.y27{bottom:37.920000pt;}
.y1{bottom:41.440000pt;}
.y26{bottom:51.680000pt;}
.yd4{bottom:63.680000pt;}
.y45{bottom:65.120000pt;}
.y25{bottom:65.440000pt;}
.yc9{bottom:69.120000pt;}
.y16c{bottom:71.200000pt;}
.yfa{bottom:76.640000pt;}
.yd3{bottom:78.560000pt;}
.y24{bottom:79.226667pt;}
.y44{bottom:82.720000pt;}
.y85{bottom:83.840000pt;}
.y16b{bottom:84.960000pt;}
.yc8{bottom:86.720000pt;}
.y86{bottom:90.880000pt;}
.yd2{bottom:92.320000pt;}
.y23{bottom:93.146667pt;}
.yf9{bottom:94.240000pt;}
.y131{bottom:95.040000pt;}
.y16a{bottom:98.880000pt;}
.y84{bottom:99.200000pt;}
.y43{bottom:100.480000pt;}
.yd1{bottom:103.360000pt;}
.yc7{bottom:104.320000pt;}
.y22{bottom:106.906667pt;}
.y130{bottom:108.800000pt;}
.yf8{bottom:112.000000pt;}
.y1a1{bottom:112.640000pt;}
.y83{bottom:114.560000pt;}
.y169{bottom:116.640000pt;}
.y2c{bottom:117.146667pt;}
.y42{bottom:118.080000pt;}
.y21{bottom:120.666667pt;}
.yc6{bottom:121.920000pt;}
.y12f{bottom:122.720000pt;}
.y1a0{bottom:126.400000pt;}
.yf7{bottom:129.600000pt;}
.y82{bottom:129.920000pt;}
.y168{bottom:130.400000pt;}
.y20{bottom:134.426667pt;}
.y41{bottom:135.706667pt;}
.yc5{bottom:139.546667pt;}
.y19f{bottom:140.186667pt;}
.y12e{bottom:140.506667pt;}
.y167{bottom:144.186667pt;}
.y81{bottom:145.306667pt;}
.yf6{bottom:147.226667pt;}
.y1f{bottom:148.346667pt;}
.y40{bottom:153.306667pt;}
.y19e{bottom:154.106667pt;}
.y12d{bottom:154.266667pt;}
.yc4{bottom:157.306667pt;}
.y80{bottom:160.506667pt;}
.y1e{bottom:162.106667pt;}
.yf5{bottom:164.826667pt;}
.y19d{bottom:167.866667pt;}
.y3f{bottom:170.906667pt;}
.y12c{bottom:172.026667pt;}
.yc3{bottom:174.906667pt;}
.y1d{bottom:175.866667pt;}
.yf4{bottom:182.426667pt;}
.y12b{bottom:185.946667pt;}
.y3e{bottom:188.666667pt;}
.y1c{bottom:189.626667pt;}
.y7f{bottom:191.226667pt;}
.yc2{bottom:192.506667pt;}
.y19c{bottom:195.386667pt;}
.y12a{bottom:199.706667pt;}
.yf3{bottom:200.186667pt;}
.y1b{bottom:203.546667pt;}
.y3d{bottom:206.266667pt;}
.y7e{bottom:206.586667pt;}
.y166{bottom:207.386667pt;}
.y19b{bottom:209.146667pt;}
.yc1{bottom:210.106667pt;}
.y129{bottom:217.466667pt;}
.yf2{bottom:217.786667pt;}
.y165{bottom:221.146667pt;}
.y7d{bottom:221.946667pt;}
.y1a{bottom:223.066667pt;}
.y3c{bottom:223.866667pt;}
.yc0{bottom:227.706667pt;}
.y19a{bottom:228.346667pt;}
.y128{bottom:231.226667pt;}
.y2b{bottom:234.266667pt;}
.y164{bottom:235.066667pt;}
.yf1{bottom:235.386667pt;}
.y7c{bottom:237.306667pt;}
.y3b{bottom:241.466667pt;}
.y127{bottom:245.146667pt;}
.ybf{bottom:245.466667pt;}
.y199{bottom:247.546667pt;}
.y7b{bottom:252.506667pt;}
.y163{bottom:252.826667pt;}
.yf0{bottom:252.986667pt;}
.y3a{bottom:259.066667pt;}
.y126{bottom:262.906667pt;}
.ybe{bottom:263.066667pt;}
.y162{bottom:266.586667pt;}
.y7a{bottom:267.866667pt;}
.yef{bottom:270.586667pt;}
.y125{bottom:276.666667pt;}
.y39{bottom:276.826667pt;}
.y161{bottom:280.346667pt;}
.ybd{bottom:280.666667pt;}
.y79{bottom:283.226667pt;}
.y198{bottom:285.786667pt;}
.yee{bottom:288.346667pt;}
.y38{bottom:294.426667pt;}
.ybc{bottom:297.946667pt;}
.y160{bottom:298.266667pt;}
.y78{bottom:298.586667pt;}
.y197{bottom:304.826667pt;}
.yed{bottom:305.946667pt;}
.y124{bottom:308.186667pt;}
.y37{bottom:312.026667pt;}
.y77{bottom:313.946667pt;}
.ybb{bottom:315.546667pt;}
.y123{bottom:322.106667pt;}
.yec{bottom:323.546667pt;}
.y196{bottom:324.026667pt;}
.y76{bottom:329.306667pt;}
.y36{bottom:329.626667pt;}
.y15f{bottom:329.786667pt;}
.yba{bottom:333.626667pt;}
.y122{bottom:339.866667pt;}
.yeb{bottom:341.146667pt;}
.y195{bottom:343.226667pt;}
.y15e{bottom:343.546667pt;}
.y75{bottom:344.506667pt;}
.y35{bottom:347.226667pt;}
.yb9{bottom:351.226667pt;}
.y121{bottom:353.626667pt;}
.yea{bottom:358.786667pt;}
.y74{bottom:359.906667pt;}
.y15d{bottom:361.506667pt;}
.y194{bottom:362.306667pt;}
.y34{bottom:365.026667pt;}
.y120{bottom:367.426667pt;}
.yb8{bottom:368.866667pt;}
.y73{bottom:375.266667pt;}
.ye9{bottom:376.546667pt;}
.y11f{bottom:381.346667pt;}
.y193{bottom:381.506667pt;}
.y33{bottom:382.626667pt;}
.yb7{bottom:386.146667pt;}
.y15c{bottom:389.026667pt;}
.y72{bottom:390.626667pt;}
.ye8{bottom:394.146667pt;}
.y11e{bottom:397.346667pt;}
.y192{bottom:397.826667pt;}
.y32{bottom:400.226667pt;}
.yb6{bottom:403.746667pt;}
.y15b{bottom:406.786667pt;}
.y71{bottom:407.746667pt;}
.ye7{bottom:411.746667pt;}
.y191{bottom:415.426667pt;}
.y11d{bottom:417.186667pt;}
.y31{bottom:417.826667pt;}
.y15a{bottom:420.706667pt;}
.yb5{bottom:421.826667pt;}
.y70{bottom:425.346667pt;}
.yd0{bottom:426.466667pt;}
.ye6{bottom:429.346667pt;}
.y190{bottom:433.026667pt;}
.y159{bottom:434.466667pt;}
.y30{bottom:435.426667pt;}
.y11c{bottom:437.826667pt;}
.yb4{bottom:439.426667pt;}
.y6f{bottom:441.186667pt;}
.ye5{bottom:446.946667pt;}
.ycf{bottom:448.546667pt;}
.y18f{bottom:450.626667pt;}
.y158{bottom:452.226667pt;}
.y2f{bottom:453.186667pt;}
.y6e{bottom:456.546667pt;}
.yb3{bottom:457.026667pt;}
.yce{bottom:460.866667pt;}
.ye4{bottom:464.706667pt;}
.y157{bottom:465.986667pt;}
.y11b{bottom:468.226667pt;}
.y18e{bottom:468.386667pt;}
.y2e{bottom:470.466667pt;}
.y6d{bottom:471.586667pt;}
.ycd{bottom:473.346667pt;}
.yb2{bottom:474.626667pt;}
.y156{bottom:479.906667pt;}
.ye3{bottom:482.306667pt;}
.y11a{bottom:483.426667pt;}
.y18d{bottom:485.986667pt;}
.y6c{bottom:486.946667pt;}
.ycc{bottom:487.106667pt;}
.y2d{bottom:488.386667pt;}
.yb1{bottom:492.226667pt;}
.y155{bottom:497.666667pt;}
.y119{bottom:499.106667pt;}
.ye2{bottom:499.906667pt;}
.ycb{bottom:500.386667pt;}
.y19{bottom:500.546667pt;}
.y6b{bottom:502.146667pt;}
.y18c{bottom:503.586667pt;}
.yb0{bottom:509.986667pt;}
.y154{bottom:511.426667pt;}
.y118{bottom:514.146667pt;}
.ye1{bottom:517.506667pt;}
.y6a{bottom:519.746667pt;}
.y18b{bottom:521.186667pt;}
.yaf{bottom:527.586667pt;}
.y153{bottom:529.186667pt;}
.y117{bottom:529.506667pt;}
.ye0{bottom:535.106667pt;}
.y69{bottom:537.666667pt;}
.y18a{bottom:538.786667pt;}
.y152{bottom:543.106667pt;}
.yae{bottom:545.186667pt;}
.ydf{bottom:552.866667pt;}
.y68{bottom:555.266667pt;}
.y189{bottom:556.546667pt;}
.y151{bottom:556.866667pt;}
.y116{bottom:560.226667pt;}
.yad{bottom:562.466667pt;}
.yde{bottom:570.466667pt;}
.y67{bottom:572.866667pt;}
.y188{bottom:574.146667pt;}
.y150{bottom:574.626667pt;}
.y115{bottom:575.426667pt;}
.yac{bottom:581.213333pt;}
.ydd{bottom:588.093333pt;}
.y14f{bottom:588.413333pt;}
.y66{bottom:590.493333pt;}
.y114{bottom:591.133333pt;}
.y187{bottom:591.773333pt;}
.yab{bottom:600.573333pt;}
.y14e{bottom:602.333333pt;}
.ydc{bottom:605.693333pt;}
.y113{bottom:606.493333pt;}
.y65{bottom:608.253333pt;}
.y186{bottom:609.373333pt;}
.ya6{bottom:610.973333pt;}
.y14d{bottom:620.093333pt;}
.y112{bottom:621.853333pt;}
.ydb{bottom:623.293333pt;}
.y64{bottom:625.853333pt;}
.y185{bottom:626.973333pt;}
.yaa{bottom:628.893333pt;}
.y14c{bottom:633.853333pt;}
.y111{bottom:637.213333pt;}
.yda{bottom:641.053333pt;}
.y63{bottom:643.453333pt;}
.y184{bottom:646.493333pt;}
.ya8{bottom:646.973333pt;}
.y14b{bottom:647.613333pt;}
.y110{bottom:652.253333pt;}
.yd9{bottom:658.333333pt;}
.y62{bottom:661.053333pt;}
.y14a{bottom:661.533333pt;}
.ya0{bottom:664.893333pt;}
.y183{bottom:665.533333pt;}
.y10f{bottom:667.453333pt;}
.yd8{bottom:678.173333pt;}
.y61{bottom:678.653333pt;}
.y149{bottom:679.293333pt;}
.ya5{bottom:682.973333pt;}
.y10e{bottom:683.133333pt;}
.y148{bottom:693.053333pt;}
.y60{bottom:696.413333pt;}
.y182{bottom:697.053333pt;}
.y10d{bottom:698.493333pt;}
.yd7{bottom:700.413333pt;}
.ya2{bottom:700.893333pt;}
.y147{bottom:706.813333pt;}
.y181{bottom:710.813333pt;}
.y10c{bottom:713.533333pt;}
.y5f{bottom:714.013333pt;}
.yd6{bottom:716.253333pt;}
.y9c{bottom:718.973333pt;}
.y146{bottom:724.573333pt;}
.y180{bottom:728.573333pt;}
.y10b{bottom:728.893333pt;}
.yd5{bottom:729.533333pt;}
.y5e{bottom:731.613333pt;}
.y145{bottom:738.493333pt;}
.y18{bottom:739.933333pt;}
.y17f{bottom:742.493333pt;}
.yca{bottom:744.093333pt;}
.y10a{bottom:744.573333pt;}
.y5d{bottom:749.213333pt;}
.y144{bottom:752.253333pt;}
.y17{bottom:756.733333pt;}
.y9b{bottom:758.813333pt;}
.y109{bottom:759.773333pt;}
.y17e{bottom:760.253333pt;}
.y5c{bottom:766.813333pt;}
.y16{bottom:768.733333pt;}
.y143{bottom:770.013333pt;}
.y17d{bottom:774.013333pt;}
.y108{bottom:774.813333pt;}
.y9a{bottom:776.573333pt;}
.y15{bottom:780.893333pt;}
.y142{bottom:783.773333pt;}
.y5b{bottom:784.573333pt;}
.y14{bottom:788.573333pt;}
.y107{bottom:790.173333pt;}
.y17c{bottom:791.773333pt;}
.y99{bottom:793.853333pt;}
.y141{bottom:797.733333pt;}
.y5a{bottom:802.213333pt;}
.y13{bottom:805.413333pt;}
.y106{bottom:805.573333pt;}
.y17b{bottom:805.733333pt;}
.y98{bottom:811.813333pt;}
.y140{bottom:815.493333pt;}
.y12{bottom:817.733333pt;}
.y59{bottom:819.813333pt;}
.y17a{bottom:823.493333pt;}
.y105{bottom:825.253333pt;}
.y13f{bottom:829.253333pt;}
.y97{bottom:829.413333pt;}
.y11{bottom:829.893333pt;}
.y179{bottom:837.253333pt;}
.y58{bottom:837.413333pt;}
.y10{bottom:837.573333pt;}
.y13e{bottom:843.013333pt;}
.y96{bottom:847.013333pt;}
.y104{bottom:847.973333pt;}
.y178{bottom:851.013333pt;}
.yf{bottom:854.533333pt;}
.y57{bottom:855.013333pt;}
.y13d{bottom:860.933333pt;}
.ye{bottom:862.693333pt;}
.y95{bottom:864.773333pt;}
.y103{bottom:865.573333pt;}
.y177{bottom:868.933333pt;}
.y56{bottom:872.773333pt;}
.y13c{bottom:874.693333pt;}
.yd{bottom:875.173333pt;}
.y94{bottom:882.373333pt;}
.y176{bottom:882.693333pt;}
.y102{bottom:883.333333pt;}
.y13b{bottom:888.453333pt;}
.y55{bottom:890.373333pt;}
.yc{bottom:896.453333pt;}
.y93{bottom:899.973333pt;}
.y101{bottom:900.933333pt;}
.y13a{bottom:906.213333pt;}
.y54{bottom:907.973333pt;}
.y175{bottom:914.213333pt;}
.yb{bottom:917.573333pt;}
.y100{bottom:918.533333pt;}
.y139{bottom:920.133333pt;}
.y53{bottom:925.573333pt;}
.y174{bottom:928.133333pt;}
.y138{bottom:933.893333pt;}
.y92{bottom:935.173333pt;}
.yff{bottom:936.133333pt;}
.y173{bottom:941.893333pt;}
.y52{bottom:943.173333pt;}
.ya{bottom:949.733333pt;}
.y137{bottom:951.653333pt;}
.y91{bottom:952.933333pt;}
.yfe{bottom:953.733333pt;}
.y172{bottom:959.653333pt;}
.y51{bottom:960.933333pt;}
.y136{bottom:965.413333pt;}
.y90{bottom:970.533333pt;}
.yfd{bottom:971.493333pt;}
.y171{bottom:973.413333pt;}
.y50{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y135{bottom:979.333333pt;}
.y170{bottom:987.333333pt;}
.y8f{bottom:988.133333pt;}
.yfc{bottom:988.773333pt;}
.y46{bottom:989.093333pt;}
.y8{bottom:993.733333pt;}
.y4f{bottom:996.133333pt;}
.y134{bottom:997.093333pt;}
.y16f{bottom:1005.093333pt;}
.y8e{bottom:1005.733333pt;}
.yfb{bottom:1008.613333pt;}
.y133{bottom:1010.853333pt;}
.y4e{bottom:1013.733333pt;}
.y16e{bottom:1018.880000pt;}
.y8d{bottom:1023.040000pt;}
.y132{bottom:1024.640000pt;}
.y7{bottom:1027.520000pt;}
.y4d{bottom:1031.360000pt;}
.y16d{bottom:1032.640000pt;}
.y6{bottom:1037.760000pt;}
.y8b{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y4a{bottom:1047.520000pt;}
.y8a{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y49{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h12{height:16.125000pt;}
.h1d{height:17.280000pt;}
.h1c{height:17.440000pt;}
.hf{height:20.728125pt;}
.h15{height:24.626667pt;}
.hd{height:26.368125pt;}
.hc{height:32.250000pt;}
.h1a{height:33.760000pt;}
.h3{height:36.431250pt;}
.h16{height:38.153511pt;}
.h19{height:39.838667pt;}
.he{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2{height:47.109375pt;}
.h18{height:47.621250pt;}
.h8{height:48.375000pt;}
.h14{height:49.336419pt;}
.h21{height:52.108438pt;}
.h10{height:52.134375pt;}
.h22{height:52.526250pt;}
.h1e{height:53.280000pt;}
.h1b{height:53.440000pt;}
.h9{height:53.535000pt;}
.hb{height:59.150000pt;}
.h13{height:59.340000pt;}
.h17{height:62.812500pt;}
.h5{height:64.500000pt;}
.h1f{height:75.465000pt;}
.h20{height:83.499062pt;}
.ha{height:112.875000pt;}
.h11{height:234.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:67.520000pt;}
.w8{width:67.872000pt;}
.w6{width:81.430667pt;}
.w3{width:90.426667pt;}
.w9{width:93.106667pt;}
.wa{width:96.658667pt;}
.wb{width:100.986667pt;}
.w7{width:139.213333pt;}
.w4{width:206.266667pt;}
.w5{width:297.013333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:3.506667pt;}
.x15{left:7.190667pt;}
.x19{left:8.480000pt;}
.x9{left:9.466667pt;}
.x20{left:11.200000pt;}
.x23{left:14.880000pt;}
.x1b{left:15.826667pt;}
.x27{left:17.280000pt;}
.x18{left:19.520000pt;}
.x1c{left:20.946667pt;}
.x1e{left:22.866667pt;}
.x8{left:23.866667pt;}
.x28{left:27.840000pt;}
.x24{left:30.720000pt;}
.x26{left:34.880000pt;}
.x7{left:37.786667pt;}
.x25{left:39.186667pt;}
.x21{left:40.480000pt;}
.x29{left:42.226667pt;}
.x6{left:52.186667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x14{left:87.872000pt;}
.xd{left:96.032000pt;}
.x2d{left:100.512000pt;}
.x2e{left:140.666667pt;}
.x16{left:153.480000pt;}
.x17{left:292.706667pt;}
.xf{left:319.746667pt;}
.x13{left:352.386667pt;}
.x1a{left:360.586667pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x11{left:430.186667pt;}
.x1d{left:453.706667pt;}
.xe{left:524.773333pt;}
.x1f{left:550.373333pt;}
.x2b{left:598.053333pt;}
.x2c{left:600.133333pt;}
.x4{left:641.733333pt;}
.x22{left:651.360000pt;}
.x2a{left:724.960000pt;}
}




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