
    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_69b6b48068c83908c48340fd.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_3265a8cbde725853120f2dd6.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_d177e65e4ca0ee8f7ff5f575.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_7f44d70e1729747406429c4c.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_01db0c21f5276acc427327df.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_618f2daef1e6a3ffd09925ba.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ac8644aef9b35bb5a307b8c8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_78fc42a536fe539e50ad2c25.woff2')format("woff");}.ffa{font-family:ffa;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.800000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-9.240000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.lsf{letter-spacing:5.040000px;}
.ls10{letter-spacing:8.640000px;}
.ls11{letter-spacing:9.360000px;}
.lsb{letter-spacing:10.056000px;}
.ls9{letter-spacing:10.080000px;}
.lsc{letter-spacing:10.260000px;}
.ls13{letter-spacing:10.800000px;}
.ls5{letter-spacing:10.944000px;}
.ls16{letter-spacing:11.520000px;}
.ls12{letter-spacing:24.480000px;}
.ls7{letter-spacing:33.984000px;}
.ls6{letter-spacing:41.904000px;}
.ls4{letter-spacing:84.360000px;}
.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;}
}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:9.864000px;}
._29{margin-left:-10.440000px;}
._28{margin-left:-9.219360px;}
._f{margin-left:-4.823760px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._a{width:3.960000px;}
._b{width:5.904000px;}
._12{width:7.272000px;}
._13{width:8.496000px;}
._1a{width:9.864000px;}
._15{width:10.927680px;}
._14{width:11.968320px;}
._17{width:13.526880px;}
._8{width:14.872320px;}
._7{width:16.056000px;}
._c{width:19.080000px;}
._1b{width:20.232000px;}
._10{width:22.104000px;}
._11{width:23.376000px;}
._20{width:24.424080px;}
._23{width:25.824000px;}
._1c{width:27.144000px;}
._18{width:28.512000px;}
._19{width:29.520000px;}
._d{width:30.888000px;}
._e{width:32.296080px;}
._1f{width:34.352640px;}
._1e{width:35.424000px;}
._21{width:37.008000px;}
._26{width:38.160000px;}
._9{width:39.384000px;}
._1d{width:40.392000px;}
._22{width:41.760000px;}
._24{width:43.488000px;}
._27{width:46.728000px;}
._16{width:48.504000px;}
._25{width:58.752000px;}
._2a{width:130.680000px;}
._3{width:194.376000px;}
._6{width:1864.536000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.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;}
.ye7{bottom:12.060000px;}
.yaf{bottom:12.240000px;}
.yeb{bottom:12.285000px;}
.y14{bottom:12.600000px;}
.y44{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.ydd{bottom:29.520000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.ydf{bottom:48.240000px;}
.yf5{bottom:48.960000px;}
.ye9{bottom:49.005000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.y42{bottom:109.440000px;}
.yd7{bottom:110.340000px;}
.y41{bottom:114.660000px;}
.y10e{bottom:115.560000px;}
.y72{bottom:118.260000px;}
.y98{bottom:123.660000px;}
.y133{bottom:126.360000px;}
.y40{bottom:127.080000px;}
.yf4{bottom:131.760000px;}
.yad{bottom:132.660000px;}
.y10d{bottom:136.260000px;}
.y149{bottom:138.060000px;}
.y71{bottom:138.960000px;}
.yd6{bottom:140.040000px;}
.y97{bottom:144.360000px;}
.y3f{bottom:147.060000px;}
.y10c{bottom:156.960000px;}
.yac{bottom:162.360000px;}
.y3e{bottom:167.760000px;}
.yf6{bottom:168.480000px;}
.y70{bottom:168.660000px;}
.yd5{bottom:169.740000px;}
.y96{bottom:174.060000px;}
.y132{bottom:176.760000px;}
.y10b{bottom:177.660000px;}
.y3d{bottom:188.460000px;}
.y6f{bottom:189.360000px;}
.yd4{bottom:190.440000px;}
.yab{bottom:192.060000px;}
.y131{bottom:197.490000px;}
.y10a{bottom:198.390000px;}
.y95{bottom:203.790000px;}
.yf3{bottom:205.230000px;}
.y3c{bottom:209.190000px;}
.y6e{bottom:210.090000px;}
.yd3{bottom:211.170000px;}
.y130{bottom:218.190000px;}
.y109{bottom:219.090000px;}
.yaa{bottom:221.790000px;}
.y94{bottom:224.490000px;}
.y3b{bottom:229.890000px;}
.y6d{bottom:230.790000px;}
.yd2{bottom:231.870000px;}
.y12f{bottom:238.890000px;}
.y148{bottom:247.890000px;}
.y108{bottom:248.790000px;}
.y3a{bottom:250.590000px;}
.y6c{bottom:251.490000px;}
.yd1{bottom:252.570000px;}
.y93{bottom:254.190000px;}
.yf2{bottom:254.910000px;}
.y12e{bottom:268.590000px;}
.y107{bottom:269.490000px;}
.y39{bottom:271.290000px;}
.y6b{bottom:272.190000px;}
.y92{bottom:274.890000px;}
.yd0{bottom:282.270000px;}
.yf1{bottom:284.610000px;}
.y12d{bottom:289.290000px;}
.y106{bottom:290.190000px;}
.y38{bottom:291.990000px;}
.y6a{bottom:292.890000px;}
.y147{bottom:298.290000px;}
.ycf{bottom:302.970000px;}
.y91{bottom:304.590000px;}
.y12c{bottom:309.990000px;}
.y105{bottom:310.890000px;}
.y37{bottom:312.690000px;}
.y69{bottom:313.590000px;}
.yf0{bottom:314.310000px;}
.y146{bottom:318.990000px;}
.yce{bottom:323.670000px;}
.y90{bottom:325.290000px;}
.y104{bottom:331.590000px;}
.y36{bottom:333.390000px;}
.y68{bottom:334.290000px;}
.yef{bottom:335.010000px;}
.y12b{bottom:339.690000px;}
.ycd{bottom:344.370000px;}
.y145{bottom:348.690000px;}
.y103{bottom:352.290000px;}
.y8f{bottom:354.990000px;}
.yee{bottom:355.710000px;}
.y12a{bottom:360.390000px;}
.y35{bottom:363.090000px;}
.y67{bottom:363.990000px;}
.y144{bottom:369.390000px;}
.y102{bottom:372.990000px;}
.ycc{bottom:374.070000px;}
.y8e{bottom:375.690000px;}
.yed{bottom:376.410000px;}
.y129{bottom:381.090000px;}
.y66{bottom:384.690000px;}
.y34{bottom:392.790000px;}
.y101{bottom:393.690000px;}
.yec{bottom:397.110000px;}
.y143{bottom:399.090000px;}
.ycb{bottom:403.770000px;}
.y8d{bottom:405.390000px;}
.y128{bottom:410.790000px;}
.y65{bottom:414.390000px;}
.y142{bottom:419.790000px;}
.y33{bottom:422.490000px;}
.y100{bottom:423.390000px;}
.ye8{bottom:424.290000px;}
.yca{bottom:424.470000px;}
.y8c{bottom:426.090000px;}
.y127{bottom:431.490000px;}
.y64{bottom:435.090000px;}
.y141{bottom:440.535000px;}
.y32{bottom:443.235000px;}
.yff{bottom:444.135000px;}
.yc9{bottom:445.215000px;}
.ya9{bottom:446.835000px;}
.y63{bottom:455.835000px;}
.yea{bottom:461.055000px;}
.y126{bottom:461.235000px;}
.yfe{bottom:464.835000px;}
.yc8{bottom:465.915000px;}
.ya8{bottom:467.535000px;}
.y140{bottom:470.235000px;}
.y31{bottom:472.935000px;}
.y62{bottom:476.535000px;}
.y125{bottom:481.935000px;}
.y8b{bottom:485.535000px;}
.yc7{bottom:486.615000px;}
.ya7{bottom:488.235000px;}
.y13f{bottom:490.935000px;}
.y30{bottom:493.635000px;}
.y61{bottom:497.235000px;}
.ye6{bottom:497.955000px;}
.y124{bottom:502.635000px;}
.y8a{bottom:506.235000px;}
.ya6{bottom:508.935000px;}
.y2f{bottom:514.335000px;}
.yc6{bottom:516.315000px;}
.y60{bottom:517.935000px;}
.y13e{bottom:520.635000px;}
.y89{bottom:526.935000px;}
.y123{bottom:532.335000px;}
.y2e{bottom:535.035000px;}
.yc5{bottom:537.015000px;}
.ya5{bottom:538.635000px;}
.y13d{bottom:541.335000px;}
.y5f{bottom:547.635000px;}
.y122{bottom:553.035000px;}
.y2d{bottom:555.735000px;}
.y88{bottom:556.635000px;}
.yc4{bottom:557.715000px;}
.y13c{bottom:562.035000px;}
.y5e{bottom:568.335000px;}
.y121{bottom:573.735000px;}
.y2c{bottom:576.435000px;}
.ye5{bottom:577.335000px;}
.yc3{bottom:578.415000px;}
.y87{bottom:586.335000px;}
.y5d{bottom:589.035000px;}
.y13b{bottom:591.735000px;}
.y120{bottom:594.435000px;}
.y2b{bottom:597.135000px;}
.ya4{bottom:598.035000px;}
.yc2{bottom:599.115000px;}
.y86{bottom:607.035000px;}
.y5c{bottom:609.735000px;}
.y13a{bottom:612.435000px;}
.y43{bottom:617.475000px;}
.y2a{bottom:617.835000px;}
.ya3{bottom:618.735000px;}
.y11f{bottom:624.135000px;}
.y85{bottom:627.735000px;}
.yc1{bottom:628.815000px;}
.y5b{bottom:630.435000px;}
.y13{bottom:635.655000px;}
.y29{bottom:638.535000px;}
.ya2{bottom:639.435000px;}
.y139{bottom:642.135000px;}
.y11e{bottom:644.835000px;}
.y84{bottom:648.435000px;}
.y5a{bottom:651.135000px;}
.yc0{bottom:658.515000px;}
.y28{bottom:659.235000px;}
.ya1{bottom:660.135000px;}
.y138{bottom:662.835000px;}
.y11d{bottom:665.535000px;}
.y83{bottom:669.135000px;}
.y59{bottom:671.835000px;}
.ybf{bottom:679.245000px;}
.y27{bottom:679.965000px;}
.ya0{bottom:680.865000px;}
.ye4{bottom:689.865000px;}
.y58{bottom:692.565000px;}
.y11c{bottom:695.265000px;}
.y82{bottom:698.865000px;}
.ybe{bottom:699.945000px;}
.y26{bottom:700.665000px;}
.y9f{bottom:701.565000px;}
.ye3{bottom:710.565000px;}
.y57{bottom:713.265000px;}
.y11b{bottom:715.965000px;}
.y81{bottom:719.565000px;}
.ybd{bottom:720.645000px;}
.y25{bottom:721.365000px;}
.y9e{bottom:731.265000px;}
.y137{bottom:733.965000px;}
.ye1{bottom:737.025000px;}
.y80{bottom:740.265000px;}
.ybc{bottom:741.345000px;}
.y24{bottom:742.065000px;}
.y56{bottom:742.965000px;}
.y11a{bottom:745.665000px;}
.yfd{bottom:751.965000px;}
.y7f{bottom:760.965000px;}
.y23{bottom:762.765000px;}
.y55{bottom:763.665000px;}
.y119{bottom:766.365000px;}
.ybb{bottom:771.045000px;}
.yfc{bottom:772.665000px;}
.ye2{bottom:773.025000px;}
.y7e{bottom:781.665000px;}
.y54{bottom:784.365000px;}
.yba{bottom:791.745000px;}
.y22{bottom:792.465000px;}
.yfb{bottom:793.365000px;}
.y118{bottom:796.065000px;}
.y7d{bottom:802.365000px;}
.y53{bottom:805.065000px;}
.yde{bottom:809.025000px;}
.yb9{bottom:812.445000px;}
.y136{bottom:814.065000px;}
.y117{bottom:816.765000px;}
.y21{bottom:822.165000px;}
.y7c{bottom:823.065000px;}
.y52{bottom:825.765000px;}
.yb8{bottom:833.145000px;}
.y135{bottom:834.765000px;}
.y9d{bottom:843.765000px;}
.ye0{bottom:845.025000px;}
.y116{bottom:846.465000px;}
.y7b{bottom:852.765000px;}
.yb7{bottom:853.845000px;}
.y51{bottom:855.465000px;}
.y20{bottom:858.705000px;}
.y9c{bottom:864.465000px;}
.y115{bottom:867.165000px;}
.y7a{bottom:873.465000px;}
.yb6{bottom:874.365000px;}
.y50{bottom:876.165000px;}
.y1f{bottom:879.405000px;}
.ydc{bottom:881.025000px;}
.yfa{bottom:885.165000px;}
.y114{bottom:887.865000px;}
.y79{bottom:894.165000px;}
.yb5{bottom:895.065000px;}
.y4f{bottom:896.865000px;}
.y1e{bottom:900.105000px;}
.yf9{bottom:905.865000px;}
.y113{bottom:908.565000px;}
.y78{bottom:914.910000px;}
.y4e{bottom:917.610000px;}
.y1d{bottom:923.010000px;}
.y9b{bottom:923.910000px;}
.yb4{bottom:924.810000px;}
.yf8{bottom:926.610000px;}
.y77{bottom:935.610000px;}
.y4d{bottom:938.310000px;}
.y9a{bottom:944.610000px;}
.ydb{bottom:947.310000px;}
.yb3{bottom:950.550000px;}
.y1c{bottom:952.710000px;}
.y112{bottom:959.010000px;}
.y76{bottom:965.310000px;}
.y4c{bottom:968.010000px;}
.yda{bottom:977.010000px;}
.y1b{bottom:982.410000px;}
.yb2{bottom:985.830000px;}
.y75{bottom:986.010000px;}
.y111{bottom:988.710000px;}
.y4b{bottom:997.710000px;}
.y74{bottom:1006.710000px;}
.y110{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.y1a{bottom:1018.050000px;}
.y134{bottom:1018.410000px;}
.yb1{bottom:1021.110000px;}
.y4a{bottom:1027.410000px;}
.yf7{bottom:1036.410000px;}
.y10f{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y49{bottom:1048.110000px;}
.yb0{bottom:1056.390000px;}
.y99{bottom:1057.110000px;}
.y73{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y48{bottom:1077.810000px;}
.yd9{bottom:1089.510000px;}
.yae{bottom:1091.670000px;}
.y47{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.yd8{bottom:1110.210000px;}
.y46{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y45{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.080000px;}
.h13{height:28.260000px;}
.h12{height:32.444297px;}
.h17{height:35.100000px;}
.h14{height:35.280000px;}
.h19{height:35.316000px;}
.h11{height:40.254961px;}
.hf{height:41.362031px;}
.ha{height:49.868086px;}
.h5{height:52.020000px;}
.h15{height:52.596000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.hd{height:60.082031px;}
.h1a{height:61.171875px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.h10{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h1b{height:70.882031px;}
.h16{height:71.280000px;}
.h18{height:72.036000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:61.740000px;}
.w1a{width:63.540000px;}
.w14{width:63.720000px;}
.w1d{width:63.900000px;}
.w1b{width:64.440000px;}
.w20{width:64.620000px;}
.w1c{width:68.760000px;}
.w1f{width:70.380000px;}
.w19{width:70.740000px;}
.w3{width:75.060000px;}
.w16{width:75.780000px;}
.w15{width:76.536000px;}
.w11{width:78.840000px;}
.w12{width:78.876000px;}
.w8{width:84.990000px;}
.we{width:90.936000px;}
.wd{width:91.260000px;}
.w10{width:93.096000px;}
.wf{width:94.320000px;}
.w1e{width:106.920000px;}
.w18{width:107.100000px;}
.w17{width:107.136000px;}
.wb{width:144.036000px;}
.wa{width:145.620000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.wc{width:224.130000px;}
.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;}
.x16{left:5.400000px;}
.x1b{left:7.740000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x19{left:78.330000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x15{left:111.095987px;}
.x2{left:148.005000px;}
.x1{left:165.270000px;}
.x21{left:169.770000px;}
.x28{left:176.610000px;}
.x1a{left:180.930000px;}
.xd{left:220.529987px;}
.x10{left:222.689987px;}
.x22{left:234.210000px;}
.x29{left:241.230000px;}
.x11{left:251.669987px;}
.x13{left:255.989987px;}
.x12{left:257.429987px;}
.x1c{left:272.910000px;}
.x23{left:312.375000px;}
.x2a{left:319.395000px;}
.x14{left:322.274987px;}
.x1d{left:364.755000px;}
.x7{left:378.075000px;}
.x24{left:389.595000px;}
.x17{left:395.895000px;}
.x1e{left:459.795000px;}
.x25{left:498.165000px;}
.x2b{left:505.185000px;}
.x1f{left:553.785000px;}
.x26{left:606.705000px;}
.x2c{left:613.545000px;}
.x18{left:620.025000px;}
.x20{left:633.345000px;}
.x8{left:662.730000px;}
.xe{left:666.149973px;}
.xf{left:672.269987px;}
.x27{left:715.290000px;}
.x2d{left:722.130000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.600000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-8.213333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsf{letter-spacing:4.480000pt;}
.ls10{letter-spacing:7.680000pt;}
.ls11{letter-spacing:8.320000pt;}
.lsb{letter-spacing:8.938667pt;}
.ls9{letter-spacing:8.960000pt;}
.lsc{letter-spacing:9.120000pt;}
.ls13{letter-spacing:9.600000pt;}
.ls5{letter-spacing:9.728000pt;}
.ls16{letter-spacing:10.240000pt;}
.ls12{letter-spacing:21.760000pt;}
.ls7{letter-spacing:30.208000pt;}
.ls6{letter-spacing:37.248000pt;}
.ls4{letter-spacing:74.986667pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:8.768000pt;}
._29{margin-left:-9.280000pt;}
._28{margin-left:-8.194987pt;}
._f{margin-left:-4.287787pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._a{width:3.520000pt;}
._b{width:5.248000pt;}
._12{width:6.464000pt;}
._13{width:7.552000pt;}
._1a{width:8.768000pt;}
._15{width:9.713493pt;}
._14{width:10.638507pt;}
._17{width:12.023893pt;}
._8{width:13.219840pt;}
._7{width:14.272000pt;}
._c{width:16.960000pt;}
._1b{width:17.984000pt;}
._10{width:19.648000pt;}
._11{width:20.778667pt;}
._20{width:21.710293pt;}
._23{width:22.954667pt;}
._1c{width:24.128000pt;}
._18{width:25.344000pt;}
._19{width:26.240000pt;}
._d{width:27.456000pt;}
._e{width:28.707627pt;}
._1f{width:30.535680pt;}
._1e{width:31.488000pt;}
._21{width:32.896000pt;}
._26{width:33.920000pt;}
._9{width:35.008000pt;}
._1d{width:35.904000pt;}
._22{width:37.120000pt;}
._24{width:38.656000pt;}
._27{width:41.536000pt;}
._16{width:43.114667pt;}
._25{width:52.224000pt;}
._2a{width:116.160000pt;}
._3{width:172.778667pt;}
._6{width:1657.365333pt;}
.fs4{font-size:34.560000pt;}
.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;}
.ye7{bottom:10.720000pt;}
.yaf{bottom:10.880000pt;}
.yeb{bottom:10.920000pt;}
.y14{bottom:11.200000pt;}
.y44{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.ydd{bottom:26.240000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.ydf{bottom:42.880000pt;}
.yf5{bottom:43.520000pt;}
.ye9{bottom:43.560000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.y42{bottom:97.280000pt;}
.yd7{bottom:98.080000pt;}
.y41{bottom:101.920000pt;}
.y10e{bottom:102.720000pt;}
.y72{bottom:105.120000pt;}
.y98{bottom:109.920000pt;}
.y133{bottom:112.320000pt;}
.y40{bottom:112.960000pt;}
.yf4{bottom:117.120000pt;}
.yad{bottom:117.920000pt;}
.y10d{bottom:121.120000pt;}
.y149{bottom:122.720000pt;}
.y71{bottom:123.520000pt;}
.yd6{bottom:124.480000pt;}
.y97{bottom:128.320000pt;}
.y3f{bottom:130.720000pt;}
.y10c{bottom:139.520000pt;}
.yac{bottom:144.320000pt;}
.y3e{bottom:149.120000pt;}
.yf6{bottom:149.760000pt;}
.y70{bottom:149.920000pt;}
.yd5{bottom:150.880000pt;}
.y96{bottom:154.720000pt;}
.y132{bottom:157.120000pt;}
.y10b{bottom:157.920000pt;}
.y3d{bottom:167.520000pt;}
.y6f{bottom:168.320000pt;}
.yd4{bottom:169.280000pt;}
.yab{bottom:170.720000pt;}
.y131{bottom:175.546667pt;}
.y10a{bottom:176.346667pt;}
.y95{bottom:181.146667pt;}
.yf3{bottom:182.426667pt;}
.y3c{bottom:185.946667pt;}
.y6e{bottom:186.746667pt;}
.yd3{bottom:187.706667pt;}
.y130{bottom:193.946667pt;}
.y109{bottom:194.746667pt;}
.yaa{bottom:197.146667pt;}
.y94{bottom:199.546667pt;}
.y3b{bottom:204.346667pt;}
.y6d{bottom:205.146667pt;}
.yd2{bottom:206.106667pt;}
.y12f{bottom:212.346667pt;}
.y148{bottom:220.346667pt;}
.y108{bottom:221.146667pt;}
.y3a{bottom:222.746667pt;}
.y6c{bottom:223.546667pt;}
.yd1{bottom:224.506667pt;}
.y93{bottom:225.946667pt;}
.yf2{bottom:226.586667pt;}
.y12e{bottom:238.746667pt;}
.y107{bottom:239.546667pt;}
.y39{bottom:241.146667pt;}
.y6b{bottom:241.946667pt;}
.y92{bottom:244.346667pt;}
.yd0{bottom:250.906667pt;}
.yf1{bottom:252.986667pt;}
.y12d{bottom:257.146667pt;}
.y106{bottom:257.946667pt;}
.y38{bottom:259.546667pt;}
.y6a{bottom:260.346667pt;}
.y147{bottom:265.146667pt;}
.ycf{bottom:269.306667pt;}
.y91{bottom:270.746667pt;}
.y12c{bottom:275.546667pt;}
.y105{bottom:276.346667pt;}
.y37{bottom:277.946667pt;}
.y69{bottom:278.746667pt;}
.yf0{bottom:279.386667pt;}
.y146{bottom:283.546667pt;}
.yce{bottom:287.706667pt;}
.y90{bottom:289.146667pt;}
.y104{bottom:294.746667pt;}
.y36{bottom:296.346667pt;}
.y68{bottom:297.146667pt;}
.yef{bottom:297.786667pt;}
.y12b{bottom:301.946667pt;}
.ycd{bottom:306.106667pt;}
.y145{bottom:309.946667pt;}
.y103{bottom:313.146667pt;}
.y8f{bottom:315.546667pt;}
.yee{bottom:316.186667pt;}
.y12a{bottom:320.346667pt;}
.y35{bottom:322.746667pt;}
.y67{bottom:323.546667pt;}
.y144{bottom:328.346667pt;}
.y102{bottom:331.546667pt;}
.ycc{bottom:332.506667pt;}
.y8e{bottom:333.946667pt;}
.yed{bottom:334.586667pt;}
.y129{bottom:338.746667pt;}
.y66{bottom:341.946667pt;}
.y34{bottom:349.146667pt;}
.y101{bottom:349.946667pt;}
.yec{bottom:352.986667pt;}
.y143{bottom:354.746667pt;}
.ycb{bottom:358.906667pt;}
.y8d{bottom:360.346667pt;}
.y128{bottom:365.146667pt;}
.y65{bottom:368.346667pt;}
.y142{bottom:373.146667pt;}
.y33{bottom:375.546667pt;}
.y100{bottom:376.346667pt;}
.ye8{bottom:377.146667pt;}
.yca{bottom:377.306667pt;}
.y8c{bottom:378.746667pt;}
.y127{bottom:383.546667pt;}
.y64{bottom:386.746667pt;}
.y141{bottom:391.586667pt;}
.y32{bottom:393.986667pt;}
.yff{bottom:394.786667pt;}
.yc9{bottom:395.746667pt;}
.ya9{bottom:397.186667pt;}
.y63{bottom:405.186667pt;}
.yea{bottom:409.826667pt;}
.y126{bottom:409.986667pt;}
.yfe{bottom:413.186667pt;}
.yc8{bottom:414.146667pt;}
.ya8{bottom:415.586667pt;}
.y140{bottom:417.986667pt;}
.y31{bottom:420.386667pt;}
.y62{bottom:423.586667pt;}
.y125{bottom:428.386667pt;}
.y8b{bottom:431.586667pt;}
.yc7{bottom:432.546667pt;}
.ya7{bottom:433.986667pt;}
.y13f{bottom:436.386667pt;}
.y30{bottom:438.786667pt;}
.y61{bottom:441.986667pt;}
.ye6{bottom:442.626667pt;}
.y124{bottom:446.786667pt;}
.y8a{bottom:449.986667pt;}
.ya6{bottom:452.386667pt;}
.y2f{bottom:457.186667pt;}
.yc6{bottom:458.946667pt;}
.y60{bottom:460.386667pt;}
.y13e{bottom:462.786667pt;}
.y89{bottom:468.386667pt;}
.y123{bottom:473.186667pt;}
.y2e{bottom:475.586667pt;}
.yc5{bottom:477.346667pt;}
.ya5{bottom:478.786667pt;}
.y13d{bottom:481.186667pt;}
.y5f{bottom:486.786667pt;}
.y122{bottom:491.586667pt;}
.y2d{bottom:493.986667pt;}
.y88{bottom:494.786667pt;}
.yc4{bottom:495.746667pt;}
.y13c{bottom:499.586667pt;}
.y5e{bottom:505.186667pt;}
.y121{bottom:509.986667pt;}
.y2c{bottom:512.386667pt;}
.ye5{bottom:513.186667pt;}
.yc3{bottom:514.146667pt;}
.y87{bottom:521.186667pt;}
.y5d{bottom:523.586667pt;}
.y13b{bottom:525.986667pt;}
.y120{bottom:528.386667pt;}
.y2b{bottom:530.786667pt;}
.ya4{bottom:531.586667pt;}
.yc2{bottom:532.546667pt;}
.y86{bottom:539.586667pt;}
.y5c{bottom:541.986667pt;}
.y13a{bottom:544.386667pt;}
.y43{bottom:548.866667pt;}
.y2a{bottom:549.186667pt;}
.ya3{bottom:549.986667pt;}
.y11f{bottom:554.786667pt;}
.y85{bottom:557.986667pt;}
.yc1{bottom:558.946667pt;}
.y5b{bottom:560.386667pt;}
.y13{bottom:565.026667pt;}
.y29{bottom:567.586667pt;}
.ya2{bottom:568.386667pt;}
.y139{bottom:570.786667pt;}
.y11e{bottom:573.186667pt;}
.y84{bottom:576.386667pt;}
.y5a{bottom:578.786667pt;}
.yc0{bottom:585.346667pt;}
.y28{bottom:585.986667pt;}
.ya1{bottom:586.786667pt;}
.y138{bottom:589.186667pt;}
.y11d{bottom:591.586667pt;}
.y83{bottom:594.786667pt;}
.y59{bottom:597.186667pt;}
.ybf{bottom:603.773333pt;}
.y27{bottom:604.413333pt;}
.ya0{bottom:605.213333pt;}
.ye4{bottom:613.213333pt;}
.y58{bottom:615.613333pt;}
.y11c{bottom:618.013333pt;}
.y82{bottom:621.213333pt;}
.ybe{bottom:622.173333pt;}
.y26{bottom:622.813333pt;}
.y9f{bottom:623.613333pt;}
.ye3{bottom:631.613333pt;}
.y57{bottom:634.013333pt;}
.y11b{bottom:636.413333pt;}
.y81{bottom:639.613333pt;}
.ybd{bottom:640.573333pt;}
.y25{bottom:641.213333pt;}
.y9e{bottom:650.013333pt;}
.y137{bottom:652.413333pt;}
.ye1{bottom:655.133333pt;}
.y80{bottom:658.013333pt;}
.ybc{bottom:658.973333pt;}
.y24{bottom:659.613333pt;}
.y56{bottom:660.413333pt;}
.y11a{bottom:662.813333pt;}
.yfd{bottom:668.413333pt;}
.y7f{bottom:676.413333pt;}
.y23{bottom:678.013333pt;}
.y55{bottom:678.813333pt;}
.y119{bottom:681.213333pt;}
.ybb{bottom:685.373333pt;}
.yfc{bottom:686.813333pt;}
.ye2{bottom:687.133333pt;}
.y7e{bottom:694.813333pt;}
.y54{bottom:697.213333pt;}
.yba{bottom:703.773333pt;}
.y22{bottom:704.413333pt;}
.yfb{bottom:705.213333pt;}
.y118{bottom:707.613333pt;}
.y7d{bottom:713.213333pt;}
.y53{bottom:715.613333pt;}
.yde{bottom:719.133333pt;}
.yb9{bottom:722.173333pt;}
.y136{bottom:723.613333pt;}
.y117{bottom:726.013333pt;}
.y21{bottom:730.813333pt;}
.y7c{bottom:731.613333pt;}
.y52{bottom:734.013333pt;}
.yb8{bottom:740.573333pt;}
.y135{bottom:742.013333pt;}
.y9d{bottom:750.013333pt;}
.ye0{bottom:751.133333pt;}
.y116{bottom:752.413333pt;}
.y7b{bottom:758.013333pt;}
.yb7{bottom:758.973333pt;}
.y51{bottom:760.413333pt;}
.y20{bottom:763.293333pt;}
.y9c{bottom:768.413333pt;}
.y115{bottom:770.813333pt;}
.y7a{bottom:776.413333pt;}
.yb6{bottom:777.213333pt;}
.y50{bottom:778.813333pt;}
.y1f{bottom:781.693333pt;}
.ydc{bottom:783.133333pt;}
.yfa{bottom:786.813333pt;}
.y114{bottom:789.213333pt;}
.y79{bottom:794.813333pt;}
.yb5{bottom:795.613333pt;}
.y4f{bottom:797.213333pt;}
.y1e{bottom:800.093333pt;}
.yf9{bottom:805.213333pt;}
.y113{bottom:807.613333pt;}
.y78{bottom:813.253333pt;}
.y4e{bottom:815.653333pt;}
.y1d{bottom:820.453333pt;}
.y9b{bottom:821.253333pt;}
.yb4{bottom:822.053333pt;}
.yf8{bottom:823.653333pt;}
.y77{bottom:831.653333pt;}
.y4d{bottom:834.053333pt;}
.y9a{bottom:839.653333pt;}
.ydb{bottom:842.053333pt;}
.yb3{bottom:844.933333pt;}
.y1c{bottom:846.853333pt;}
.y112{bottom:852.453333pt;}
.y76{bottom:858.053333pt;}
.y4c{bottom:860.453333pt;}
.yda{bottom:868.453333pt;}
.y1b{bottom:873.253333pt;}
.yb2{bottom:876.293333pt;}
.y75{bottom:876.453333pt;}
.y111{bottom:878.853333pt;}
.y4b{bottom:886.853333pt;}
.y74{bottom:894.853333pt;}
.y110{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.y1a{bottom:904.933333pt;}
.y134{bottom:905.253333pt;}
.yb1{bottom:907.653333pt;}
.y4a{bottom:913.253333pt;}
.yf7{bottom:921.253333pt;}
.y10f{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y49{bottom:931.653333pt;}
.yb0{bottom:939.013333pt;}
.y99{bottom:939.653333pt;}
.y73{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y48{bottom:958.053333pt;}
.yd9{bottom:968.453333pt;}
.yae{bottom:970.373333pt;}
.y47{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.yd8{bottom:986.853333pt;}
.y46{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y45{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:24.960000pt;}
.h13{height:25.120000pt;}
.h12{height:28.839375pt;}
.h17{height:31.200000pt;}
.h14{height:31.360000pt;}
.h19{height:31.392000pt;}
.h11{height:35.782187pt;}
.hf{height:36.766250pt;}
.ha{height:44.327188pt;}
.h5{height:46.240000pt;}
.h15{height:46.752000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.hd{height:53.406250pt;}
.h1a{height:54.375000pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.h10{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h1b{height:63.006250pt;}
.h16{height:63.360000pt;}
.h18{height:64.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:54.880000pt;}
.w1a{width:56.480000pt;}
.w14{width:56.640000pt;}
.w1d{width:56.800000pt;}
.w1b{width:57.280000pt;}
.w20{width:57.440000pt;}
.w1c{width:61.120000pt;}
.w1f{width:62.560000pt;}
.w19{width:62.880000pt;}
.w3{width:66.720000pt;}
.w16{width:67.360000pt;}
.w15{width:68.032000pt;}
.w11{width:70.080000pt;}
.w12{width:70.112000pt;}
.w8{width:75.546667pt;}
.we{width:80.832000pt;}
.wd{width:81.120000pt;}
.w10{width:82.752000pt;}
.wf{width:83.840000pt;}
.w1e{width:95.040000pt;}
.w18{width:95.200000pt;}
.w17{width:95.232000pt;}
.wb{width:128.032000pt;}
.wa{width:129.440000pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.wc{width:199.226667pt;}
.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;}
.x16{left:4.800000pt;}
.x1b{left:6.880000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x19{left:69.626667pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x15{left:98.751988pt;}
.x2{left:131.560000pt;}
.x1{left:146.906667pt;}
.x21{left:150.906667pt;}
.x28{left:156.986667pt;}
.x1a{left:160.826667pt;}
.xd{left:196.026655pt;}
.x10{left:197.946655pt;}
.x22{left:208.186667pt;}
.x29{left:214.426667pt;}
.x11{left:223.706655pt;}
.x13{left:227.546655pt;}
.x12{left:228.826655pt;}
.x1c{left:242.586667pt;}
.x23{left:277.666667pt;}
.x2a{left:283.906667pt;}
.x14{left:286.466655pt;}
.x1d{left:324.226667pt;}
.x7{left:336.066667pt;}
.x24{left:346.306667pt;}
.x17{left:351.906667pt;}
.x1e{left:408.706667pt;}
.x25{left:442.813333pt;}
.x2b{left:449.053333pt;}
.x1f{left:492.253333pt;}
.x26{left:539.293333pt;}
.x2c{left:545.373333pt;}
.x18{left:551.133333pt;}
.x20{left:562.973333pt;}
.x8{left:589.093333pt;}
.xe{left:592.133310pt;}
.xf{left:597.573322pt;}
.x27{left:635.813333pt;}
.x2d{left:641.893333pt;}
.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; }
  