
    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_0cd18cf1fcbe20ae1ceee4fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_0408aa7dbf1793a56296983c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4ee2354f51a9b66540e8897c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_ca19611ac2855f40de8dd96e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_615e6e08ebdd21c2a1ec2ecd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_aa9ce0ea74400c7b54accaeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_c56de05a7052fd3cd10f79b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_0adbaefd5d136cf30d66d051.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.440000px;}
.ls5{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.ls4{letter-spacing:5.040000px;}
.ls7{letter-spacing:6.480000px;}
.lsf{letter-spacing:10.080000px;}
.ls12{letter-spacing:12.960000px;}
.ls6{letter-spacing:16.560000px;}
.ls11{letter-spacing:21.600000px;}
.ls13{letter-spacing:23.760000px;}
.lsd{letter-spacing:30.960000px;}
.lsa{letter-spacing:38.880000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-4.896000px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._c{width:3.255120px;}
._10{width:5.232960px;}
._13{width:6.287040px;}
._11{width:7.560000px;}
._17{width:8.844960px;}
._d{width:9.936000px;}
._e{width:11.520000px;}
._12{width:12.888000px;}
._8{width:14.112000px;}
._9{width:15.176160px;}
._1d{width:16.263360px;}
._7{width:19.152000px;}
._1a{width:20.592000px;}
._1f{width:22.320000px;}
._a{width:23.472000px;}
._b{width:24.480000px;}
._15{width:25.560000px;}
._16{width:26.640000px;}
._18{width:28.008000px;}
._19{width:29.892000px;}
._1b{width:31.536000px;}
._1c{width:32.644320px;}
._29{width:33.891120px;}
._f{width:34.920000px;}
._24{width:36.288000px;}
._1e{width:37.296000px;}
._22{width:39.312000px;}
._23{width:40.824000px;}
._21{width:42.264000px;}
._20{width:43.344000px;}
._26{width:47.344320px;}
._25{width:48.456000px;}
._2c{width:51.448320px;}
._2b{width:52.560000px;}
._28{width:54.175680px;}
._27{width:55.192320px;}
._2a{width:177.768000px;}
._3{width:194.376000px;}
._2d{width:274.680000px;}
._2e{width:275.832000px;}
._6{width:1864.536000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.ye5{bottom:12.060000px;}
.yd3{bottom:12.240000px;}
.ye1{bottom:12.270000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.ydb{bottom:20.700000px;}
.y118{bottom:20.730000px;}
.yd5{bottom:20.880000px;}
.ydf{bottom:20.910000px;}
.yd8{bottom:20.925000px;}
.y7{bottom:21.420000px;}
.ye4{bottom:29.340000px;}
.y115{bottom:29.370000px;}
.yd6{bottom:29.520000px;}
.ye0{bottom:29.550000px;}
.yd9{bottom:29.565000px;}
.y5{bottom:37.260000px;}
.yf9{bottom:37.980000px;}
.y117{bottom:38.010000px;}
.y10e{bottom:38.025000px;}
.yfd{bottom:38.160000px;}
.y2{bottom:39.060000px;}
.yf8{bottom:46.620000px;}
.y114{bottom:46.650000px;}
.y111{bottom:46.665000px;}
.yfb{bottom:46.800000px;}
.y109{bottom:55.260000px;}
.y105{bottom:55.290000px;}
.y10d{bottom:55.305000px;}
.yfc{bottom:55.440000px;}
.y12{bottom:57.420000px;}
.y10a{bottom:63.900000px;}
.y107{bottom:63.930000px;}
.y110{bottom:63.945000px;}
.yfe{bottom:64.080000px;}
.y116{bottom:72.570000px;}
.y100{bottom:72.720000px;}
.y11{bottom:73.260000px;}
.y10b{bottom:81.180000px;}
.y106{bottom:81.210000px;}
.y10f{bottom:81.225000px;}
.y103{bottom:81.360000px;}
.y101{bottom:81.405000px;}
.yd1{bottom:111.060000px;}
.y14d{bottom:111.960000px;}
.y97{bottom:112.860000px;}
.y6f{bottom:115.560000px;}
.y40{bottom:119.160000px;}
.y15f{bottom:120.060000px;}
.y132{bottom:121.860000px;}
.yf6{bottom:126.540000px;}
.y13c{bottom:127.260000px;}
.y96{bottom:133.560000px;}
.y6e{bottom:136.260000px;}
.y11a{bottom:137.880000px;}
.y3f{bottom:139.860000px;}
.yd0{bottom:140.760000px;}
.y14c{bottom:141.660000px;}
.y131{bottom:142.560000px;}
.y15e{bottom:149.760000px;}
.ya9{bottom:154.260000px;}
.yf5{bottom:156.240000px;}
.y6d{bottom:156.960000px;}
.y119{bottom:158.580000px;}
.y3e{bottom:160.560000px;}
.ycf{bottom:161.460000px;}
.y95{bottom:163.260000px;}
.y15d{bottom:170.460000px;}
.y14b{bottom:171.360000px;}
.ya8{bottom:174.960000px;}
.y6c{bottom:177.660000px;}
.y3d{bottom:181.260000px;}
.y94{bottom:183.960000px;}
.yf4{bottom:185.940000px;}
.y113{bottom:187.020000px;}
.yce{bottom:191.160000px;}
.y130{bottom:192.960000px;}
.y6b{bottom:198.390000px;}
.y15c{bottom:200.190000px;}
.y14a{bottom:201.090000px;}
.y3c{bottom:201.990000px;}
.y93{bottom:204.690000px;}
.y12f{bottom:213.690000px;}
.yf3{bottom:215.670000px;}
.y6a{bottom:219.090000px;}
.ycd{bottom:220.890000px;}
.y3b{bottom:222.690000px;}
.y92{bottom:225.390000px;}
.y149{bottom:230.790000px;}
.y12e{bottom:234.390000px;}
.y69{bottom:239.790000px;}
.yf2{bottom:245.370000px;}
.y91{bottom:246.090000px;}
.y13b{bottom:248.790000px;}
.ycc{bottom:250.590000px;}
.y3a{bottom:252.390000px;}
.y12d{bottom:255.090000px;}
.y68{bottom:260.490000px;}
.yf1{bottom:266.070000px;}
.y90{bottom:266.790000px;}
.y13a{bottom:269.490000px;}
.ycb{bottom:271.290000px;}
.y12c{bottom:275.790000px;}
.y39{bottom:282.090000px;}
.yf0{bottom:286.770000px;}
.y8f{bottom:287.490000px;}
.y67{bottom:290.190000px;}
.y112{bottom:295.050000px;}
.y12b{bottom:296.490000px;}
.yca{bottom:300.990000px;}
.yef{bottom:307.470000px;}
.ya7{bottom:308.190000px;}
.y66{bottom:310.890000px;}
.y38{bottom:311.610000px;}
.y8e{bottom:317.190000px;}
.y148{bottom:319.890000px;}
.yc9{bottom:321.690000px;}
.yee{bottom:328.170000px;}
.ya6{bottom:328.890000px;}
.y65{bottom:331.590000px;}
.y8d{bottom:337.890000px;}
.y139{bottom:340.590000px;}
.y37{bottom:341.310000px;}
.yed{bottom:348.870000px;}
.ya5{bottom:349.590000px;}
.yc8{bottom:351.390000px;}
.y64{bottom:352.290000px;}
.y8c{bottom:358.590000px;}
.y138{bottom:361.290000px;}
.y36{bottom:362.010000px;}
.ya4{bottom:370.290000px;}
.y15b{bottom:372.090000px;}
.y63{bottom:372.990000px;}
.yec{bottom:378.570000px;}
.y8b{bottom:379.290000px;}
.yc7{bottom:381.090000px;}
.y137{bottom:381.990000px;}
.y35{bottom:382.710000px;}
.y12a{bottom:388.290000px;}
.ya3{bottom:390.990000px;}
.y62{bottom:393.690000px;}
.y8a{bottom:399.990000px;}
.y15a{bottom:401.790000px;}
.y136{bottom:402.690000px;}
.y10c{bottom:403.050000px;}
.y34{bottom:403.410000px;}
.yeb{bottom:408.270000px;}
.y129{bottom:408.990000px;}
.yc6{bottom:410.790000px;}
.ya2{bottom:411.690000px;}
.y61{bottom:414.390000px;}
.y89{bottom:420.690000px;}
.y159{bottom:422.490000px;}
.y135{bottom:423.390000px;}
.y33{bottom:424.110000px;}
.y128{bottom:429.690000px;}
.y175{bottom:431.490000px;}
.yea{bottom:438.015000px;}
.yc5{bottom:440.535000px;}
.y88{bottom:441.435000px;}
.y60{bottom:444.135000px;}
.y32{bottom:444.855000px;}
.y127{bottom:450.435000px;}
.y158{bottom:452.235000px;}
.y147{bottom:453.135000px;}
.ye9{bottom:458.715000px;}
.y174{bottom:461.235000px;}
.ya1{bottom:462.135000px;}
.y5f{bottom:464.835000px;}
.y31{bottom:465.555000px;}
.yc4{bottom:470.235000px;}
.y87{bottom:471.135000px;}
.y134{bottom:473.835000px;}
.ye8{bottom:479.415000px;}
.y157{bottom:481.935000px;}
.ya0{bottom:482.835000px;}
.y5e{bottom:485.535000px;}
.y30{bottom:486.255000px;}
.yc3{bottom:490.935000px;}
.y86{bottom:491.835000px;}
.y146{bottom:494.535000px;}
.ye7{bottom:500.115000px;}
.y9f{bottom:503.535000px;}
.y5d{bottom:506.235000px;}
.y2f{bottom:506.955000px;}
.y108{bottom:511.095000px;}
.yc2{bottom:511.635000px;}
.y85{bottom:512.535000px;}
.y145{bottom:515.235000px;}
.y173{bottom:520.635000px;}
.ye6{bottom:520.815000px;}
.y126{bottom:521.535000px;}
.y5c{bottom:526.935000px;}
.y2e{bottom:527.655000px;}
.yc1{bottom:532.335000px;}
.y84{bottom:533.235000px;}
.y144{bottom:535.935000px;}
.y172{bottom:541.335000px;}
.y125{bottom:542.235000px;}
.y2d{bottom:548.355000px;}
.ye3{bottom:550.695000px;}
.yc0{bottom:553.035000px;}
.y83{bottom:553.935000px;}
.y5b{bottom:556.635000px;}
.y124{bottom:562.935000px;}
.y2c{bottom:569.055000px;}
.y171{bottom:571.035000px;}
.ybf{bottom:573.735000px;}
.y82{bottom:574.635000px;}
.y5a{bottom:577.335000px;}
.y123{bottom:583.635000px;}
.y2b{bottom:589.755000px;}
.y170{bottom:591.735000px;}
.y81{bottom:595.335000px;}
.y59{bottom:598.035000px;}
.ybe{bottom:603.435000px;}
.y122{bottom:604.335000px;}
.ye2{bottom:607.575000px;}
.y2a{bottom:610.455000px;}
.y16f{bottom:612.435000px;}
.y80{bottom:616.035000px;}
.y13{bottom:617.475000px;}
.y58{bottom:618.735000px;}
.y104{bottom:619.095000px;}
.y121{bottom:625.035000px;}
.y143{bottom:627.735000px;}
.y29{bottom:631.155000px;}
.ybd{bottom:633.135000px;}
.y7f{bottom:636.735000px;}
.y57{bottom:639.435000px;}
.y16e{bottom:642.135000px;}
.y120{bottom:645.735000px;}
.y142{bottom:648.435000px;}
.y28{bottom:651.855000px;}
.ybc{bottom:653.835000px;}
.y7e{bottom:657.435000px;}
.y16d{bottom:662.835000px;}
.yde{bottom:664.635000px;}
.y11f{bottom:666.435000px;}
.y56{bottom:669.135000px;}
.y27{bottom:672.555000px;}
.ybb{bottom:674.565000px;}
.y133{bottom:678.165000px;}
.y7d{bottom:687.165000px;}
.y55{bottom:689.865000px;}
.y16c{bottom:692.565000px;}
.y26{bottom:693.285000px;}
.yba{bottom:695.265000px;}
.y156{bottom:704.265000px;}
.y7c{bottom:707.865000px;}
.y54{bottom:710.565000px;}
.y16b{bottom:713.265000px;}
.y25{bottom:713.985000px;}
.yb9{bottom:715.965000px;}
.ydd{bottom:721.545000px;}
.y155{bottom:724.965000px;}
.y102{bottom:726.945000px;}
.y7b{bottom:728.565000px;}
.y53{bottom:731.265000px;}
.y16a{bottom:733.965000px;}
.y24{bottom:734.685000px;}
.yb8{bottom:736.665000px;}
.y11e{bottom:737.565000px;}
.y154{bottom:745.665000px;}
.y7a{bottom:749.265000px;}
.y52{bottom:751.965000px;}
.yb7{bottom:757.365000px;}
.y11d{bottom:758.265000px;}
.y169{bottom:763.665000px;}
.y23{bottom:764.385000px;}
.y79{bottom:769.965000px;}
.y51{bottom:772.665000px;}
.y153{bottom:775.365000px;}
.yb6{bottom:778.065000px;}
.ydc{bottom:778.605000px;}
.y11c{bottom:778.965000px;}
.y168{bottom:784.365000px;}
.y78{bottom:790.665000px;}
.y50{bottom:793.365000px;}
.y152{bottom:796.065000px;}
.y11b{bottom:799.665000px;}
.y22{bottom:800.025000px;}
.yb5{bottom:807.765000px;}
.y9e{bottom:811.365000px;}
.y167{bottom:814.065000px;}
.y77{bottom:820.365000px;}
.y4f{bottom:823.065000px;}
.y151{bottom:825.765000px;}
.y21{bottom:829.365000px;}
.y9d{bottom:832.065000px;}
.y166{bottom:834.765000px;}
.yff{bottom:834.945000px;}
.yda{bottom:835.665000px;}
.yb4{bottom:837.465000px;}
.y76{bottom:841.065000px;}
.y141{bottom:843.765000px;}
.y150{bottom:846.465000px;}
.y20{bottom:851.865000px;}
.y4e{bottom:852.765000px;}
.y165{bottom:855.465000px;}
.y1f{bottom:858.705000px;}
.y75{bottom:861.765000px;}
.y140{bottom:864.465000px;}
.yb3{bottom:867.165000px;}
.y9c{bottom:873.465000px;}
.y1e{bottom:881.565000px;}
.y4d{bottom:882.465000px;}
.y164{bottom:885.165000px;}
.yd7{bottom:892.545000px;}
.y13f{bottom:894.165000px;}
.yb2{bottom:896.865000px;}
.y74{bottom:903.165000px;}
.y163{bottom:905.865000px;}
.y1d{bottom:911.265000px;}
.y4c{bottom:912.165000px;}
.y13e{bottom:914.910000px;}
.yb1{bottom:917.610000px;}
.y73{bottom:923.910000px;}
.y162{bottom:926.610000px;}
.y4b{bottom:932.910000px;}
.y13d{bottom:935.610000px;}
.y1c{bottom:941.010000px;}
.yfa{bottom:942.990000px;}
.y72{bottom:944.610000px;}
.yb0{bottom:947.310000px;}
.yd4{bottom:949.650000px;}
.y4a{bottom:953.610000px;}
.y161{bottom:956.310000px;}
.y1b{bottom:961.710000px;}
.y71{bottom:965.310000px;}
.yaf{bottom:968.010000px;}
.y49{bottom:974.310000px;}
.y160{bottom:977.010000px;}
.y70{bottom:986.010000px;}
.y14f{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y48{bottom:995.010000px;}
.yae{bottom:997.710000px;}
.y9b{bottom:1006.710000px;}
.yd2{bottom:1007.430000px;}
.y19{bottom:1012.110000px;}
.y47{bottom:1015.710000px;}
.yad{bottom:1018.410000px;}
.y9a{bottom:1027.410000px;}
.yf7{bottom:1033.890000px;}
.y46{bottom:1036.410000px;}
.yac{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y99{bottom:1048.110000px;}
.y45{bottom:1057.110000px;}
.yab{bottom:1059.810000px;}
.y98{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y44{bottom:1077.810000px;}
.yaa{bottom:1089.510000px;}
.y43{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y14e{bottom:1110.210000px;}
.y42{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y41{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.h11{height:34.847578px;}
.h13{height:35.280000px;}
.h10{height:40.254961px;}
.h12{height:41.362031px;}
.ha{height:49.868086px;}
.h14{height:51.239531px;}
.h5{height:52.020000px;}
.h17{height:52.380000px;}
.h18{height:52.416000px;}
.h15{height:52.560000px;}
.h16{height:52.596000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.hd{height:60.082031px;}
.h1f{height:61.171875px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.hf{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h19{height:69.660000px;}
.h1a{height:87.120000px;}
.h1e{height:104.220000px;}
.h1d{height:104.256000px;}
.h1c{height:104.400000px;}
.h1b{height:104.436000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:20.700000px;}
.wf{width:71.820000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w14{width:93.960000px;}
.we{width:95.940000px;}
.wb{width:110.880000px;}
.wd{width:112.896000px;}
.w11{width:113.040000px;}
.w12{width:119.376000px;}
.w13{width:130.536000px;}
.w10{width:137.556000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.wc{width:326.775000px;}
.w2{width:383.115000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.x19{left:107.496000px;}
.xc{left:108.755987px;}
.xd{left:109.835987px;}
.x15{left:131.436000px;}
.x2{left:148.005000px;}
.x1{left:165.270000px;}
.x12{left:181.829973px;}
.x14{left:183.269987px;}
.x13{left:187.949987px;}
.x16{left:244.650000px;}
.x11{left:286.994987px;}
.xf{left:301.394987px;}
.x1a{left:321.375000px;}
.x7{left:378.075000px;}
.xe{left:381.134987px;}
.x1b{left:436.755000px;}
.x10{left:446.474987px;}
.x1c{left:558.465000px;}
.x17{left:573.585000px;}
.x8{left:662.730000px;}
.x18{left:688.650000px;}
.x1d{left:691.350000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls5{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls7{letter-spacing:5.760000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls12{letter-spacing:11.520000pt;}
.ls6{letter-spacing:14.720000pt;}
.ls11{letter-spacing:19.200000pt;}
.ls13{letter-spacing:21.120000pt;}
.lsd{letter-spacing:27.520000pt;}
.lsa{letter-spacing:34.560000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-4.352000pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._c{width:2.893440pt;}
._10{width:4.651520pt;}
._13{width:5.588480pt;}
._11{width:6.720000pt;}
._17{width:7.862187pt;}
._d{width:8.832000pt;}
._e{width:10.240000pt;}
._12{width:11.456000pt;}
._8{width:12.544000pt;}
._9{width:13.489920pt;}
._1d{width:14.456320pt;}
._7{width:17.024000pt;}
._1a{width:18.304000pt;}
._1f{width:19.840000pt;}
._a{width:20.864000pt;}
._b{width:21.760000pt;}
._15{width:22.720000pt;}
._16{width:23.680000pt;}
._18{width:24.896000pt;}
._19{width:26.570667pt;}
._1b{width:28.032000pt;}
._1c{width:29.017173pt;}
._29{width:30.125440pt;}
._f{width:31.040000pt;}
._24{width:32.256000pt;}
._1e{width:33.152000pt;}
._22{width:34.944000pt;}
._23{width:36.288000pt;}
._21{width:37.568000pt;}
._20{width:38.528000pt;}
._26{width:42.083840pt;}
._25{width:43.072000pt;}
._2c{width:45.731840pt;}
._2b{width:46.720000pt;}
._28{width:48.156160pt;}
._27{width:49.059840pt;}
._2a{width:158.016000pt;}
._3{width:172.778667pt;}
._2d{width:244.160000pt;}
._2e{width:245.184000pt;}
._6{width:1657.365333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.ye5{bottom:10.720000pt;}
.yd3{bottom:10.880000pt;}
.ye1{bottom:10.906667pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.ydb{bottom:18.400000pt;}
.y118{bottom:18.426667pt;}
.yd5{bottom:18.560000pt;}
.ydf{bottom:18.586667pt;}
.yd8{bottom:18.600000pt;}
.y7{bottom:19.040000pt;}
.ye4{bottom:26.080000pt;}
.y115{bottom:26.106667pt;}
.yd6{bottom:26.240000pt;}
.ye0{bottom:26.266667pt;}
.yd9{bottom:26.280000pt;}
.y5{bottom:33.120000pt;}
.yf9{bottom:33.760000pt;}
.y117{bottom:33.786667pt;}
.y10e{bottom:33.800000pt;}
.yfd{bottom:33.920000pt;}
.y2{bottom:34.720000pt;}
.yf8{bottom:41.440000pt;}
.y114{bottom:41.466667pt;}
.y111{bottom:41.480000pt;}
.yfb{bottom:41.600000pt;}
.y109{bottom:49.120000pt;}
.y105{bottom:49.146667pt;}
.y10d{bottom:49.160000pt;}
.yfc{bottom:49.280000pt;}
.y12{bottom:51.040000pt;}
.y10a{bottom:56.800000pt;}
.y107{bottom:56.826667pt;}
.y110{bottom:56.840000pt;}
.yfe{bottom:56.960000pt;}
.y116{bottom:64.506667pt;}
.y100{bottom:64.640000pt;}
.y11{bottom:65.120000pt;}
.y10b{bottom:72.160000pt;}
.y106{bottom:72.186667pt;}
.y10f{bottom:72.200000pt;}
.y103{bottom:72.320000pt;}
.y101{bottom:72.360000pt;}
.yd1{bottom:98.720000pt;}
.y14d{bottom:99.520000pt;}
.y97{bottom:100.320000pt;}
.y6f{bottom:102.720000pt;}
.y40{bottom:105.920000pt;}
.y15f{bottom:106.720000pt;}
.y132{bottom:108.320000pt;}
.yf6{bottom:112.480000pt;}
.y13c{bottom:113.120000pt;}
.y96{bottom:118.720000pt;}
.y6e{bottom:121.120000pt;}
.y11a{bottom:122.560000pt;}
.y3f{bottom:124.320000pt;}
.yd0{bottom:125.120000pt;}
.y14c{bottom:125.920000pt;}
.y131{bottom:126.720000pt;}
.y15e{bottom:133.120000pt;}
.ya9{bottom:137.120000pt;}
.yf5{bottom:138.880000pt;}
.y6d{bottom:139.520000pt;}
.y119{bottom:140.960000pt;}
.y3e{bottom:142.720000pt;}
.ycf{bottom:143.520000pt;}
.y95{bottom:145.120000pt;}
.y15d{bottom:151.520000pt;}
.y14b{bottom:152.320000pt;}
.ya8{bottom:155.520000pt;}
.y6c{bottom:157.920000pt;}
.y3d{bottom:161.120000pt;}
.y94{bottom:163.520000pt;}
.yf4{bottom:165.280000pt;}
.y113{bottom:166.240000pt;}
.yce{bottom:169.920000pt;}
.y130{bottom:171.520000pt;}
.y6b{bottom:176.346667pt;}
.y15c{bottom:177.946667pt;}
.y14a{bottom:178.746667pt;}
.y3c{bottom:179.546667pt;}
.y93{bottom:181.946667pt;}
.y12f{bottom:189.946667pt;}
.yf3{bottom:191.706667pt;}
.y6a{bottom:194.746667pt;}
.ycd{bottom:196.346667pt;}
.y3b{bottom:197.946667pt;}
.y92{bottom:200.346667pt;}
.y149{bottom:205.146667pt;}
.y12e{bottom:208.346667pt;}
.y69{bottom:213.146667pt;}
.yf2{bottom:218.106667pt;}
.y91{bottom:218.746667pt;}
.y13b{bottom:221.146667pt;}
.ycc{bottom:222.746667pt;}
.y3a{bottom:224.346667pt;}
.y12d{bottom:226.746667pt;}
.y68{bottom:231.546667pt;}
.yf1{bottom:236.506667pt;}
.y90{bottom:237.146667pt;}
.y13a{bottom:239.546667pt;}
.ycb{bottom:241.146667pt;}
.y12c{bottom:245.146667pt;}
.y39{bottom:250.746667pt;}
.yf0{bottom:254.906667pt;}
.y8f{bottom:255.546667pt;}
.y67{bottom:257.946667pt;}
.y112{bottom:262.266667pt;}
.y12b{bottom:263.546667pt;}
.yca{bottom:267.546667pt;}
.yef{bottom:273.306667pt;}
.ya7{bottom:273.946667pt;}
.y66{bottom:276.346667pt;}
.y38{bottom:276.986667pt;}
.y8e{bottom:281.946667pt;}
.y148{bottom:284.346667pt;}
.yc9{bottom:285.946667pt;}
.yee{bottom:291.706667pt;}
.ya6{bottom:292.346667pt;}
.y65{bottom:294.746667pt;}
.y8d{bottom:300.346667pt;}
.y139{bottom:302.746667pt;}
.y37{bottom:303.386667pt;}
.yed{bottom:310.106667pt;}
.ya5{bottom:310.746667pt;}
.yc8{bottom:312.346667pt;}
.y64{bottom:313.146667pt;}
.y8c{bottom:318.746667pt;}
.y138{bottom:321.146667pt;}
.y36{bottom:321.786667pt;}
.ya4{bottom:329.146667pt;}
.y15b{bottom:330.746667pt;}
.y63{bottom:331.546667pt;}
.yec{bottom:336.506667pt;}
.y8b{bottom:337.146667pt;}
.yc7{bottom:338.746667pt;}
.y137{bottom:339.546667pt;}
.y35{bottom:340.186667pt;}
.y12a{bottom:345.146667pt;}
.ya3{bottom:347.546667pt;}
.y62{bottom:349.946667pt;}
.y8a{bottom:355.546667pt;}
.y15a{bottom:357.146667pt;}
.y136{bottom:357.946667pt;}
.y10c{bottom:358.266667pt;}
.y34{bottom:358.586667pt;}
.yeb{bottom:362.906667pt;}
.y129{bottom:363.546667pt;}
.yc6{bottom:365.146667pt;}
.ya2{bottom:365.946667pt;}
.y61{bottom:368.346667pt;}
.y89{bottom:373.946667pt;}
.y159{bottom:375.546667pt;}
.y135{bottom:376.346667pt;}
.y33{bottom:376.986667pt;}
.y128{bottom:381.946667pt;}
.y175{bottom:383.546667pt;}
.yea{bottom:389.346667pt;}
.yc5{bottom:391.586667pt;}
.y88{bottom:392.386667pt;}
.y60{bottom:394.786667pt;}
.y32{bottom:395.426667pt;}
.y127{bottom:400.386667pt;}
.y158{bottom:401.986667pt;}
.y147{bottom:402.786667pt;}
.ye9{bottom:407.746667pt;}
.y174{bottom:409.986667pt;}
.ya1{bottom:410.786667pt;}
.y5f{bottom:413.186667pt;}
.y31{bottom:413.826667pt;}
.yc4{bottom:417.986667pt;}
.y87{bottom:418.786667pt;}
.y134{bottom:421.186667pt;}
.ye8{bottom:426.146667pt;}
.y157{bottom:428.386667pt;}
.ya0{bottom:429.186667pt;}
.y5e{bottom:431.586667pt;}
.y30{bottom:432.226667pt;}
.yc3{bottom:436.386667pt;}
.y86{bottom:437.186667pt;}
.y146{bottom:439.586667pt;}
.ye7{bottom:444.546667pt;}
.y9f{bottom:447.586667pt;}
.y5d{bottom:449.986667pt;}
.y2f{bottom:450.626667pt;}
.y108{bottom:454.306667pt;}
.yc2{bottom:454.786667pt;}
.y85{bottom:455.586667pt;}
.y145{bottom:457.986667pt;}
.y173{bottom:462.786667pt;}
.ye6{bottom:462.946667pt;}
.y126{bottom:463.586667pt;}
.y5c{bottom:468.386667pt;}
.y2e{bottom:469.026667pt;}
.yc1{bottom:473.186667pt;}
.y84{bottom:473.986667pt;}
.y144{bottom:476.386667pt;}
.y172{bottom:481.186667pt;}
.y125{bottom:481.986667pt;}
.y2d{bottom:487.426667pt;}
.ye3{bottom:489.506667pt;}
.yc0{bottom:491.586667pt;}
.y83{bottom:492.386667pt;}
.y5b{bottom:494.786667pt;}
.y124{bottom:500.386667pt;}
.y2c{bottom:505.826667pt;}
.y171{bottom:507.586667pt;}
.ybf{bottom:509.986667pt;}
.y82{bottom:510.786667pt;}
.y5a{bottom:513.186667pt;}
.y123{bottom:518.786667pt;}
.y2b{bottom:524.226667pt;}
.y170{bottom:525.986667pt;}
.y81{bottom:529.186667pt;}
.y59{bottom:531.586667pt;}
.ybe{bottom:536.386667pt;}
.y122{bottom:537.186667pt;}
.ye2{bottom:540.066667pt;}
.y2a{bottom:542.626667pt;}
.y16f{bottom:544.386667pt;}
.y80{bottom:547.586667pt;}
.y13{bottom:548.866667pt;}
.y58{bottom:549.986667pt;}
.y104{bottom:550.306667pt;}
.y121{bottom:555.586667pt;}
.y143{bottom:557.986667pt;}
.y29{bottom:561.026667pt;}
.ybd{bottom:562.786667pt;}
.y7f{bottom:565.986667pt;}
.y57{bottom:568.386667pt;}
.y16e{bottom:570.786667pt;}
.y120{bottom:573.986667pt;}
.y142{bottom:576.386667pt;}
.y28{bottom:579.426667pt;}
.ybc{bottom:581.186667pt;}
.y7e{bottom:584.386667pt;}
.y16d{bottom:589.186667pt;}
.yde{bottom:590.786667pt;}
.y11f{bottom:592.386667pt;}
.y56{bottom:594.786667pt;}
.y27{bottom:597.826667pt;}
.ybb{bottom:599.613333pt;}
.y133{bottom:602.813333pt;}
.y7d{bottom:610.813333pt;}
.y55{bottom:613.213333pt;}
.y16c{bottom:615.613333pt;}
.y26{bottom:616.253333pt;}
.yba{bottom:618.013333pt;}
.y156{bottom:626.013333pt;}
.y7c{bottom:629.213333pt;}
.y54{bottom:631.613333pt;}
.y16b{bottom:634.013333pt;}
.y25{bottom:634.653333pt;}
.yb9{bottom:636.413333pt;}
.ydd{bottom:641.373333pt;}
.y155{bottom:644.413333pt;}
.y102{bottom:646.173333pt;}
.y7b{bottom:647.613333pt;}
.y53{bottom:650.013333pt;}
.y16a{bottom:652.413333pt;}
.y24{bottom:653.053333pt;}
.yb8{bottom:654.813333pt;}
.y11e{bottom:655.613333pt;}
.y154{bottom:662.813333pt;}
.y7a{bottom:666.013333pt;}
.y52{bottom:668.413333pt;}
.yb7{bottom:673.213333pt;}
.y11d{bottom:674.013333pt;}
.y169{bottom:678.813333pt;}
.y23{bottom:679.453333pt;}
.y79{bottom:684.413333pt;}
.y51{bottom:686.813333pt;}
.y153{bottom:689.213333pt;}
.yb6{bottom:691.613333pt;}
.ydc{bottom:692.093333pt;}
.y11c{bottom:692.413333pt;}
.y168{bottom:697.213333pt;}
.y78{bottom:702.813333pt;}
.y50{bottom:705.213333pt;}
.y152{bottom:707.613333pt;}
.y11b{bottom:710.813333pt;}
.y22{bottom:711.133333pt;}
.yb5{bottom:718.013333pt;}
.y9e{bottom:721.213333pt;}
.y167{bottom:723.613333pt;}
.y77{bottom:729.213333pt;}
.y4f{bottom:731.613333pt;}
.y151{bottom:734.013333pt;}
.y21{bottom:737.213333pt;}
.y9d{bottom:739.613333pt;}
.y166{bottom:742.013333pt;}
.yff{bottom:742.173333pt;}
.yda{bottom:742.813333pt;}
.yb4{bottom:744.413333pt;}
.y76{bottom:747.613333pt;}
.y141{bottom:750.013333pt;}
.y150{bottom:752.413333pt;}
.y20{bottom:757.213333pt;}
.y4e{bottom:758.013333pt;}
.y165{bottom:760.413333pt;}
.y1f{bottom:763.293333pt;}
.y75{bottom:766.013333pt;}
.y140{bottom:768.413333pt;}
.yb3{bottom:770.813333pt;}
.y9c{bottom:776.413333pt;}
.y1e{bottom:783.613333pt;}
.y4d{bottom:784.413333pt;}
.y164{bottom:786.813333pt;}
.yd7{bottom:793.373333pt;}
.y13f{bottom:794.813333pt;}
.yb2{bottom:797.213333pt;}
.y74{bottom:802.813333pt;}
.y163{bottom:805.213333pt;}
.y1d{bottom:810.013333pt;}
.y4c{bottom:810.813333pt;}
.y13e{bottom:813.253333pt;}
.yb1{bottom:815.653333pt;}
.y73{bottom:821.253333pt;}
.y162{bottom:823.653333pt;}
.y4b{bottom:829.253333pt;}
.y13d{bottom:831.653333pt;}
.y1c{bottom:836.453333pt;}
.yfa{bottom:838.213333pt;}
.y72{bottom:839.653333pt;}
.yb0{bottom:842.053333pt;}
.yd4{bottom:844.133333pt;}
.y4a{bottom:847.653333pt;}
.y161{bottom:850.053333pt;}
.y1b{bottom:854.853333pt;}
.y71{bottom:858.053333pt;}
.yaf{bottom:860.453333pt;}
.y49{bottom:866.053333pt;}
.y160{bottom:868.453333pt;}
.y70{bottom:876.453333pt;}
.y14f{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y48{bottom:884.453333pt;}
.yae{bottom:886.853333pt;}
.y9b{bottom:894.853333pt;}
.yd2{bottom:895.493333pt;}
.y19{bottom:899.653333pt;}
.y47{bottom:902.853333pt;}
.yad{bottom:905.253333pt;}
.y9a{bottom:913.253333pt;}
.yf7{bottom:919.013333pt;}
.y46{bottom:921.253333pt;}
.yac{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y99{bottom:931.653333pt;}
.y45{bottom:939.653333pt;}
.yab{bottom:942.053333pt;}
.y98{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y44{bottom:958.053333pt;}
.yaa{bottom:968.453333pt;}
.y43{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y14e{bottom:986.853333pt;}
.y42{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y41{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.h11{height:30.975625pt;}
.h13{height:31.360000pt;}
.h10{height:35.782187pt;}
.h12{height:36.766250pt;}
.ha{height:44.327188pt;}
.h14{height:45.546250pt;}
.h5{height:46.240000pt;}
.h17{height:46.560000pt;}
.h18{height:46.592000pt;}
.h15{height:46.720000pt;}
.h16{height:46.752000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.hd{height:53.406250pt;}
.h1f{height:54.375000pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.hf{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h19{height:61.920000pt;}
.h1a{height:77.440000pt;}
.h1e{height:92.640000pt;}
.h1d{height:92.672000pt;}
.h1c{height:92.800000pt;}
.h1b{height:92.832000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.400000pt;}
.wf{width:63.840000pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w14{width:83.520000pt;}
.we{width:85.280000pt;}
.wb{width:98.560000pt;}
.wd{width:100.352000pt;}
.w11{width:100.480000pt;}
.w12{width:106.112000pt;}
.w13{width:116.032000pt;}
.w10{width:122.272000pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.wc{width:290.466667pt;}
.w2{width:340.546667pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.x19{left:95.552000pt;}
.xc{left:96.671988pt;}
.xd{left:97.631988pt;}
.x15{left:116.832000pt;}
.x2{left:131.560000pt;}
.x1{left:146.906667pt;}
.x12{left:161.626643pt;}
.x14{left:162.906655pt;}
.x13{left:167.066655pt;}
.x16{left:217.466667pt;}
.x11{left:255.106655pt;}
.xf{left:267.906655pt;}
.x1a{left:285.666667pt;}
.x7{left:336.066667pt;}
.xe{left:338.786655pt;}
.x1b{left:388.226667pt;}
.x10{left:396.866655pt;}
.x1c{left:496.413333pt;}
.x17{left:509.853333pt;}
.x8{left:589.093333pt;}
.x18{left:612.133333pt;}
.x1d{left:614.533333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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