
    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_c224b32fc3e4755b7d3a167d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_54aa7f984a8e849033afcea9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e870e744d2026616a3c246be.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_bfb959ee33e18524af4ae9f2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be135d0c8bfaefc3bc99e08a.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_bc9937782dfd06e468ac03e6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82a8c44c3753d41c89937d18.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_18f8ed405d4425db820e8787.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);}
.v3{vertical-align:-72.144000px;}
.v5{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:27.360000px;}
.ls15{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls22{letter-spacing:2.856000px;}
.ls13{letter-spacing:2.880000px;}
.ls1e{letter-spacing:3.600000px;}
.ls10{letter-spacing:4.320000px;}
.ls11{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.760000px;}
.lse{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.200000px;}
.ls26{letter-spacing:7.920000px;}
.ls24{letter-spacing:8.640000px;}
.ls1c{letter-spacing:9.360000px;}
.lsf{letter-spacing:10.080000px;}
.ls14{letter-spacing:11.520000px;}
.ls9{letter-spacing:12.240000px;}
.ls2{letter-spacing:13.140000px;}
.ls25{letter-spacing:13.680000px;}
.ls1b{letter-spacing:15.120000px;}
.lsa{letter-spacing:15.840000px;}
.ls1a{letter-spacing:16.560000px;}
.ls21{letter-spacing:17.280000px;}
.ls16{letter-spacing:18.000000px;}
.ls18{letter-spacing:18.720000px;}
.ls27{letter-spacing:24.480000px;}
.ls3{letter-spacing:39.780000px;}
.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;}
}
.wsc{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.447440px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-12.060000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-5.292000px;}
._14{margin-left:-3.640560px;}
._13{margin-left:-2.557920px;}
._1{margin-left:-1.152000px;}
._0{width:1.085520px;}
._15{width:2.213040px;}
._3{width:3.225840px;}
._a{width:4.422240px;}
._d{width:5.677200px;}
._c{width:6.693120px;}
._e{width:8.243760px;}
._8{width:10.149360px;}
._9{width:11.175120px;}
._5{width:12.250800px;}
._4{width:13.634160px;}
._18{width:14.825280px;}
._b{width:16.105680px;}
._1b{width:19.584000px;}
._12{width:20.736720px;}
._17{width:22.299840px;}
._21{width:23.328000px;}
._19{width:24.768000px;}
._1a{width:25.770480px;}
._1d{width:27.005520px;}
._20{width:28.152000px;}
._f{width:30.417840px;}
._10{width:31.782480px;}
._11{width:32.920800px;}
._22{width:35.208000px;}
._1f{width:36.432000px;}
._1e{width:37.512000px;}
._6{width:39.501360px;}
._7{width:40.557360px;}
._2{width:59.282400px;}
._23{width:846.156000px;}
._16{width:1294.860000px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.240000px;}
.yd{bottom:3.960000px;}
.y2e{bottom:5.040000px;}
.y9{bottom:5.220000px;}
.y10{bottom:9.900000px;}
.y4a{bottom:12.234000px;}
.y29{bottom:12.240000px;}
.y36{bottom:12.960000px;}
.y7{bottom:17.100000px;}
.y2c{bottom:20.520000px;}
.yf{bottom:23.940000px;}
.yc{bottom:24.660000px;}
.y13{bottom:25.740000px;}
.y49{bottom:29.514000px;}
.y28{bottom:29.520000px;}
.y35{bottom:33.660000px;}
.y2b{bottom:37.620000px;}
.y6{bottom:37.800000px;}
.y12{bottom:43.020000px;}
.yb{bottom:45.360000px;}
.y27{bottom:46.620000px;}
.y48{bottom:46.794000px;}
.y3{bottom:56.700000px;}
.y5{bottom:59.760000px;}
.y26{bottom:63.900000px;}
.y47{bottom:64.074000px;}
.y56{bottom:75.096000px;}
.y2{bottom:75.636000px;}
.y25{bottom:81.210000px;}
.y46{bottom:81.354000px;}
.y45{bottom:98.454000px;}
.y24{bottom:98.490000px;}
.y53{bottom:112.536000px;}
.yab{bottom:114.696000px;}
.yc7{bottom:115.056000px;}
.y44{bottom:115.734000px;}
.y23{bottom:115.770000px;}
.y85{bottom:119.196000px;}
.yf3{bottom:128.196000px;}
.y135{bottom:129.096000px;}
.y43{bottom:133.014000px;}
.y22{bottom:133.050000px;}
.yaa{bottom:135.396000px;}
.yc6{bottom:135.756000px;}
.y52{bottom:137.154000px;}
.y38{bottom:138.996000px;}
.y84{bottom:139.896000px;}
.y111{bottom:145.296000px;}
.yf2{bottom:148.896000px;}
.y134{bottom:149.796000px;}
.y21{bottom:150.150000px;}
.y42{bottom:150.294000px;}
.y51{bottom:154.434000px;}
.y33{bottom:154.830000px;}
.ya9{bottom:156.090000px;}
.yc5{bottom:156.450000px;}
.y97{bottom:157.890000px;}
.y83{bottom:160.590000px;}
.y20{bottom:167.430000px;}
.y41{bottom:167.574000px;}
.yf1{bottom:169.590000px;}
.y133{bottom:170.490000px;}
.y50{bottom:171.714000px;}
.y32{bottom:172.110000px;}
.y110{bottom:174.990000px;}
.ya8{bottom:176.790000px;}
.yc4{bottom:177.150000px;}
.y96{bottom:178.590000px;}
.y82{bottom:181.290000px;}
.y1f{bottom:184.710000px;}
.y40{bottom:184.854000px;}
.y4f{bottom:188.994000px;}
.y31{bottom:189.210000px;}
.yf0{bottom:190.290000px;}
.y132{bottom:191.190000px;}
.y10f{bottom:195.690000px;}
.ya7{bottom:197.490000px;}
.yc3{bottom:197.850000px;}
.y95{bottom:199.290000px;}
.y1e{bottom:201.990000px;}
.y3f{bottom:201.999000px;}
.y4e{bottom:206.139000px;}
.y30{bottom:206.490000px;}
.yef{bottom:210.990000px;}
.ya6{bottom:218.190000px;}
.yc2{bottom:218.550000px;}
.y1d{bottom:219.270000px;}
.y3e{bottom:219.279000px;}
.y94{bottom:219.990000px;}
.y131{bottom:220.890000px;}
.y81{bottom:222.690000px;}
.y4d{bottom:223.419000px;}
.y2f{bottom:223.770000px;}
.y10e{bottom:225.390000px;}
.yee{bottom:231.690000px;}
.y1c{bottom:236.550000px;}
.y3d{bottom:236.559000px;}
.ya5{bottom:238.890000px;}
.y93{bottom:240.690000px;}
.y130{bottom:241.590000px;}
.y80{bottom:243.390000px;}
.yc1{bottom:246.090000px;}
.yed{bottom:252.390000px;}
.y1b{bottom:253.650000px;}
.y3c{bottom:253.839000px;}
.y10d{bottom:255.090000px;}
.ya4{bottom:259.590000px;}
.yc0{bottom:259.950000px;}
.y92{bottom:261.390000px;}
.y12f{bottom:262.290000px;}
.y7f{bottom:264.090000px;}
.y1a{bottom:270.930000px;}
.y3b{bottom:271.119000px;}
.yec{bottom:273.090000px;}
.y10c{bottom:275.790000px;}
.ya3{bottom:280.290000px;}
.ybf{bottom:280.650000px;}
.y91{bottom:282.090000px;}
.y7e{bottom:284.790000px;}
.y19{bottom:288.210000px;}
.y3a{bottom:288.399000px;}
.y12e{bottom:291.810000px;}
.yeb{bottom:293.790000px;}
.ya2{bottom:300.990000px;}
.ybe{bottom:301.350000px;}
.y90{bottom:302.790000px;}
.y18{bottom:305.490000px;}
.y39{bottom:305.499000px;}
.yea{bottom:314.490000px;}
.y12d{bottom:321.510000px;}
.ya1{bottom:321.690000px;}
.ybd{bottom:322.050000px;}
.y17{bottom:322.770000px;}
.y8f{bottom:323.490000px;}
.y7d{bottom:326.190000px;}
.ye9{bottom:335.190000px;}
.ya0{bottom:342.435000px;}
.ybc{bottom:342.795000px;}
.y8e{bottom:344.235000px;}
.y7c{bottom:346.935000px;}
.y12c{bottom:351.255000px;}
.ye8{bottom:355.935000px;}
.y9f{bottom:363.135000px;}
.ybb{bottom:363.495000px;}
.y8d{bottom:364.935000px;}
.y7b{bottom:367.635000px;}
.y12b{bottom:371.955000px;}
.ye7{bottom:376.635000px;}
.y4c{bottom:378.615000px;}
.y9e{bottom:383.835000px;}
.yba{bottom:384.195000px;}
.y8c{bottom:385.635000px;}
.y7a{bottom:388.335000px;}
.y12a{bottom:392.655000px;}
.ye6{bottom:397.335000px;}
.y4b{bottom:398.235000px;}
.y9d{bottom:404.535000px;}
.yb9{bottom:404.895000px;}
.y8b{bottom:406.335000px;}
.y79{bottom:409.035000px;}
.ye5{bottom:418.035000px;}
.y129{bottom:422.355000px;}
.y9c{bottom:425.235000px;}
.yb8{bottom:425.595000px;}
.y8a{bottom:427.035000px;}
.y78{bottom:429.555000px;}
.ye4{bottom:438.555000px;}
.y37{bottom:441.255000px;}
.y128{bottom:443.055000px;}
.y9b{bottom:445.935000px;}
.yb7{bottom:446.295000px;}
.y89{bottom:447.555000px;}
.y77{bottom:450.255000px;}
.ye3{bottom:459.255000px;}
.y127{bottom:463.755000px;}
.y88{bottom:468.255000px;}
.y76{bottom:470.955000px;}
.yb6{bottom:473.835000px;}
.y34{bottom:474.015000px;}
.y9a{bottom:475.095000px;}
.ye2{bottom:479.955000px;}
.yb5{bottom:487.695000px;}
.y87{bottom:488.955000px;}
.y126{bottom:493.455000px;}
.y99{bottom:494.175000px;}
.y75{bottom:500.655000px;}
.yb4{bottom:508.395000px;}
.y86{bottom:509.655000px;}
.y125{bottom:514.155000px;}
.y98{bottom:518.475000px;}
.y10b{bottom:518.655000px;}
.ye1{bottom:521.355000px;}
.yb3{bottom:529.095000px;}
.y74{bottom:530.355000px;}
.y16{bottom:534.135000px;}
.y124{bottom:534.855000px;}
.y10a{bottom:539.355000px;}
.ye0{bottom:542.055000px;}
.yb2{bottom:549.795000px;}
.y73{bottom:551.055000px;}
.y109{bottom:560.055000px;}
.ydf{bottom:562.755000px;}
.y123{bottom:564.555000px;}
.yb1{bottom:570.495000px;}
.y72{bottom:571.755000px;}
.y108{bottom:580.755000px;}
.yde{bottom:583.455000px;}
.y122{bottom:585.255000px;}
.y71{bottom:592.455000px;}
.yb0{bottom:599.835000px;}
.y107{bottom:601.455000px;}
.ydd{bottom:604.185000px;}
.y70{bottom:613.185000px;}
.y121{bottom:614.985000px;}
.yaf{bottom:618.945000px;}
.y106{bottom:622.185000px;}
.ydc{bottom:624.885000px;}
.y6f{bottom:633.885000px;}
.y120{bottom:635.685000px;}
.y105{bottom:642.885000px;}
.yae{bottom:643.245000px;}
.ydb{bottom:645.585000px;}
.y6e{bottom:654.585000px;}
.y104{bottom:663.585000px;}
.y11f{bottom:665.385000px;}
.yda{bottom:666.285000px;}
.y6d{bottom:675.285000px;}
.y103{bottom:684.285000px;}
.y11e{bottom:686.085000px;}
.yd9{bottom:686.985000px;}
.y6c{bottom:695.985000px;}
.y102{bottom:704.985000px;}
.yd8{bottom:707.685000px;}
.y11d{bottom:715.785000px;}
.y6b{bottom:716.685000px;}
.y101{bottom:725.685000px;}
.yd7{bottom:728.385000px;}
.y6a{bottom:737.385000px;}
.y11c{bottom:745.485000px;}
.y100{bottom:746.385000px;}
.yd6{bottom:749.085000px;}
.y69{bottom:758.085000px;}
.y11b{bottom:766.185000px;}
.yff{bottom:767.085000px;}
.yd5{bottom:769.785000px;}
.y2d{bottom:774.105000px;}
.y68{bottom:778.785000px;}
.y11a{bottom:786.885000px;}
.yfe{bottom:787.785000px;}
.yd4{bottom:790.485000px;}
.y2a{bottom:795.525000px;}
.y67{bottom:799.485000px;}
.yfd{bottom:808.485000px;}
.yd3{bottom:811.185000px;}
.y119{bottom:816.585000px;}
.y66{bottom:820.185000px;}
.yfc{bottom:829.185000px;}
.yd2{bottom:831.885000px;}
.y65{bottom:840.885000px;}
.y118{bottom:846.285000px;}
.yfb{bottom:849.885000px;}
.yd1{bottom:852.585000px;}
.y15{bottom:853.665000px;}
.y64{bottom:861.585000px;}
.y117{bottom:866.985000px;}
.yfa{bottom:870.630000px;}
.yd0{bottom:873.330000px;}
.y63{bottom:882.330000px;}
.y11{bottom:887.010000px;}
.yf9{bottom:891.330000px;}
.ycf{bottom:894.030000px;}
.y116{bottom:896.730000px;}
.y62{bottom:903.030000px;}
.yf8{bottom:912.030000px;}
.yce{bottom:914.730000px;}
.y115{bottom:917.430000px;}
.y61{bottom:923.730000px;}
.yf7{bottom:932.730000px;}
.ycd{bottom:935.430000px;}
.ye{bottom:938.850000px;}
.y60{bottom:944.430000px;}
.y114{bottom:947.130000px;}
.yf6{bottom:953.430000px;}
.ycc{bottom:956.130000px;}
.y5f{bottom:965.130000px;}
.y113{bottom:967.830000px;}
.yf5{bottom:974.130000px;}
.ya{bottom:977.190000px;}
.y5e{bottom:985.830000px;}
.yf4{bottom:994.830000px;}
.y112{bottom:997.530000px;}
.y5d{bottom:1006.530000px;}
.ycb{bottom:1015.530000px;}
.y137{bottom:1018.230000px;}
.y5c{bottom:1027.230000px;}
.yca{bottom:1036.230000px;}
.y136{bottom:1038.930000px;}
.y8{bottom:1040.010000px;}
.y5b{bottom:1047.930000px;}
.yc9{bottom:1056.930000px;}
.y4{bottom:1061.250000px;}
.y5a{bottom:1068.630000px;}
.yc8{bottom:1077.630000px;}
.y59{bottom:1089.330000px;}
.yad{bottom:1098.330000px;}
.y58{bottom:1110.030000px;}
.yac{bottom:1119.030000px;}
.y57{bottom:1139.760000px;}
.y55{bottom:1175.940000px;}
.y54{bottom:1195.380000px;}
.y1{bottom:1196.820000px;}
.h1b{height:17.280000px;}
.h15{height:19.080000px;}
.h7{height:21.240000px;}
.h11{height:26.136000px;}
.h18{height:26.280000px;}
.h1a{height:34.380000px;}
.h10{height:38.158594px;}
.hc{height:38.340000px;}
.h21{height:47.344922px;}
.h1d{height:48.088125px;}
.he{height:48.616875px;}
.h13{height:49.868086px;}
.h14{height:51.660000px;}
.hf{height:51.840000px;}
.h2{height:55.291992px;}
.h8{height:58.651172px;}
.h17{height:59.400000px;}
.h1e{height:60.082031px;}
.hd{height:60.226875px;}
.h23{height:61.171875px;}
.ha{height:61.734375px;}
.h9{height:62.100000px;}
.h3{height:65.010937px;}
.h20{height:66.757500px;}
.h22{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h1f{height:74.704922px;}
.h4{height:95.256000px;}
.h5{height:96.508125px;}
.h1c{height:237.450000px;}
.h16{height:237.810000px;}
.h19{height:328.530000px;}
.h12{height:345.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:148.860000px;}
.w5{width:206.670000px;}
.w4{width:208.650000px;}
.w6{width:264.990000px;}
.w9{width:531.645000px;}
.w3{width:680.325000px;}
.w7{width:680.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.300000px;}
.xc{left:8.100000px;}
.xd{left:23.220000px;}
.x13{left:26.460000px;}
.xa{left:41.040000px;}
.x8{left:53.994000px;}
.x7{left:82.254000px;}
.x4{left:106.416000px;}
.x6{left:109.434000px;}
.x1b{left:119.195987px;}
.x18{left:124.235987px;}
.x10{left:143.814000px;}
.x16{left:148.895987px;}
.x3{left:159.509987px;}
.x19{left:175.169987px;}
.x11{left:255.270000px;}
.x1c{left:276.149987px;}
.x14{left:279.219000px;}
.xe{left:292.179000px;}
.x5{left:301.359000px;}
.x9{left:315.075000px;}
.xf{left:340.239000px;}
.x15{left:367.454987px;}
.x1{left:372.494987px;}
.x2{left:434.054987px;}
.xb{left:521.745000px;}
.x17{left:785.129987px;}
.x1a{left:788.189987px;}
@media print{
.v3{vertical-align:-64.128000pt;}
.v5{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls17{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls22{letter-spacing:2.538667pt;}
.ls13{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls26{letter-spacing:7.040000pt;}
.ls24{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:8.320000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls14{letter-spacing:10.240000pt;}
.ls9{letter-spacing:10.880000pt;}
.ls2{letter-spacing:11.680000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:13.440000pt;}
.lsa{letter-spacing:14.080000pt;}
.ls1a{letter-spacing:14.720000pt;}
.ls21{letter-spacing:15.360000pt;}
.ls16{letter-spacing:16.000000pt;}
.ls18{letter-spacing:16.640000pt;}
.ls27{letter-spacing:21.760000pt;}
.ls3{letter-spacing:35.360000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-11.953280pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-4.704000pt;}
._14{margin-left:-3.236053pt;}
._13{margin-left:-2.273707pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.964907pt;}
._15{width:1.967147pt;}
._3{width:2.867413pt;}
._a{width:3.930880pt;}
._d{width:5.046400pt;}
._c{width:5.949440pt;}
._e{width:7.327787pt;}
._8{width:9.021653pt;}
._9{width:9.933440pt;}
._5{width:10.889600pt;}
._4{width:12.119253pt;}
._18{width:13.178027pt;}
._b{width:14.316160pt;}
._1b{width:17.408000pt;}
._12{width:18.432640pt;}
._17{width:19.822080pt;}
._21{width:20.736000pt;}
._19{width:22.016000pt;}
._1a{width:22.907093pt;}
._1d{width:24.004907pt;}
._20{width:25.024000pt;}
._f{width:27.038080pt;}
._10{width:28.251093pt;}
._11{width:29.262933pt;}
._22{width:31.296000pt;}
._1f{width:32.384000pt;}
._1e{width:33.344000pt;}
._6{width:35.112320pt;}
._7{width:36.050987pt;}
._2{width:52.695467pt;}
._23{width:752.138667pt;}
._16{width:1150.986667pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.880000pt;}
.yd{bottom:3.520000pt;}
.y2e{bottom:4.480000pt;}
.y9{bottom:4.640000pt;}
.y10{bottom:8.800000pt;}
.y4a{bottom:10.874667pt;}
.y29{bottom:10.880000pt;}
.y36{bottom:11.520000pt;}
.y7{bottom:15.200000pt;}
.y2c{bottom:18.240000pt;}
.yf{bottom:21.280000pt;}
.yc{bottom:21.920000pt;}
.y13{bottom:22.880000pt;}
.y49{bottom:26.234667pt;}
.y28{bottom:26.240000pt;}
.y35{bottom:29.920000pt;}
.y2b{bottom:33.440000pt;}
.y6{bottom:33.600000pt;}
.y12{bottom:38.240000pt;}
.yb{bottom:40.320000pt;}
.y27{bottom:41.440000pt;}
.y48{bottom:41.594667pt;}
.y3{bottom:50.400000pt;}
.y5{bottom:53.120000pt;}
.y26{bottom:56.800000pt;}
.y47{bottom:56.954667pt;}
.y56{bottom:66.752000pt;}
.y2{bottom:67.232000pt;}
.y25{bottom:72.186667pt;}
.y46{bottom:72.314667pt;}
.y45{bottom:87.514667pt;}
.y24{bottom:87.546667pt;}
.y53{bottom:100.032000pt;}
.yab{bottom:101.952000pt;}
.yc7{bottom:102.272000pt;}
.y44{bottom:102.874667pt;}
.y23{bottom:102.906667pt;}
.y85{bottom:105.952000pt;}
.yf3{bottom:113.952000pt;}
.y135{bottom:114.752000pt;}
.y43{bottom:118.234667pt;}
.y22{bottom:118.266667pt;}
.yaa{bottom:120.352000pt;}
.yc6{bottom:120.672000pt;}
.y52{bottom:121.914667pt;}
.y38{bottom:123.552000pt;}
.y84{bottom:124.352000pt;}
.y111{bottom:129.152000pt;}
.yf2{bottom:132.352000pt;}
.y134{bottom:133.152000pt;}
.y21{bottom:133.466667pt;}
.y42{bottom:133.594667pt;}
.y51{bottom:137.274667pt;}
.y33{bottom:137.626667pt;}
.ya9{bottom:138.746667pt;}
.yc5{bottom:139.066667pt;}
.y97{bottom:140.346667pt;}
.y83{bottom:142.746667pt;}
.y20{bottom:148.826667pt;}
.y41{bottom:148.954667pt;}
.yf1{bottom:150.746667pt;}
.y133{bottom:151.546667pt;}
.y50{bottom:152.634667pt;}
.y32{bottom:152.986667pt;}
.y110{bottom:155.546667pt;}
.ya8{bottom:157.146667pt;}
.yc4{bottom:157.466667pt;}
.y96{bottom:158.746667pt;}
.y82{bottom:161.146667pt;}
.y1f{bottom:164.186667pt;}
.y40{bottom:164.314667pt;}
.y4f{bottom:167.994667pt;}
.y31{bottom:168.186667pt;}
.yf0{bottom:169.146667pt;}
.y132{bottom:169.946667pt;}
.y10f{bottom:173.946667pt;}
.ya7{bottom:175.546667pt;}
.yc3{bottom:175.866667pt;}
.y95{bottom:177.146667pt;}
.y1e{bottom:179.546667pt;}
.y3f{bottom:179.554667pt;}
.y4e{bottom:183.234667pt;}
.y30{bottom:183.546667pt;}
.yef{bottom:187.546667pt;}
.ya6{bottom:193.946667pt;}
.yc2{bottom:194.266667pt;}
.y1d{bottom:194.906667pt;}
.y3e{bottom:194.914667pt;}
.y94{bottom:195.546667pt;}
.y131{bottom:196.346667pt;}
.y81{bottom:197.946667pt;}
.y4d{bottom:198.594667pt;}
.y2f{bottom:198.906667pt;}
.y10e{bottom:200.346667pt;}
.yee{bottom:205.946667pt;}
.y1c{bottom:210.266667pt;}
.y3d{bottom:210.274667pt;}
.ya5{bottom:212.346667pt;}
.y93{bottom:213.946667pt;}
.y130{bottom:214.746667pt;}
.y80{bottom:216.346667pt;}
.yc1{bottom:218.746667pt;}
.yed{bottom:224.346667pt;}
.y1b{bottom:225.466667pt;}
.y3c{bottom:225.634667pt;}
.y10d{bottom:226.746667pt;}
.ya4{bottom:230.746667pt;}
.yc0{bottom:231.066667pt;}
.y92{bottom:232.346667pt;}
.y12f{bottom:233.146667pt;}
.y7f{bottom:234.746667pt;}
.y1a{bottom:240.826667pt;}
.y3b{bottom:240.994667pt;}
.yec{bottom:242.746667pt;}
.y10c{bottom:245.146667pt;}
.ya3{bottom:249.146667pt;}
.ybf{bottom:249.466667pt;}
.y91{bottom:250.746667pt;}
.y7e{bottom:253.146667pt;}
.y19{bottom:256.186667pt;}
.y3a{bottom:256.354667pt;}
.y12e{bottom:259.386667pt;}
.yeb{bottom:261.146667pt;}
.ya2{bottom:267.546667pt;}
.ybe{bottom:267.866667pt;}
.y90{bottom:269.146667pt;}
.y18{bottom:271.546667pt;}
.y39{bottom:271.554667pt;}
.yea{bottom:279.546667pt;}
.y12d{bottom:285.786667pt;}
.ya1{bottom:285.946667pt;}
.ybd{bottom:286.266667pt;}
.y17{bottom:286.906667pt;}
.y8f{bottom:287.546667pt;}
.y7d{bottom:289.946667pt;}
.ye9{bottom:297.946667pt;}
.ya0{bottom:304.386667pt;}
.ybc{bottom:304.706667pt;}
.y8e{bottom:305.986667pt;}
.y7c{bottom:308.386667pt;}
.y12c{bottom:312.226667pt;}
.ye8{bottom:316.386667pt;}
.y9f{bottom:322.786667pt;}
.ybb{bottom:323.106667pt;}
.y8d{bottom:324.386667pt;}
.y7b{bottom:326.786667pt;}
.y12b{bottom:330.626667pt;}
.ye7{bottom:334.786667pt;}
.y4c{bottom:336.546667pt;}
.y9e{bottom:341.186667pt;}
.yba{bottom:341.506667pt;}
.y8c{bottom:342.786667pt;}
.y7a{bottom:345.186667pt;}
.y12a{bottom:349.026667pt;}
.ye6{bottom:353.186667pt;}
.y4b{bottom:353.986667pt;}
.y9d{bottom:359.586667pt;}
.yb9{bottom:359.906667pt;}
.y8b{bottom:361.186667pt;}
.y79{bottom:363.586667pt;}
.ye5{bottom:371.586667pt;}
.y129{bottom:375.426667pt;}
.y9c{bottom:377.986667pt;}
.yb8{bottom:378.306667pt;}
.y8a{bottom:379.586667pt;}
.y78{bottom:381.826667pt;}
.ye4{bottom:389.826667pt;}
.y37{bottom:392.226667pt;}
.y128{bottom:393.826667pt;}
.y9b{bottom:396.386667pt;}
.yb7{bottom:396.706667pt;}
.y89{bottom:397.826667pt;}
.y77{bottom:400.226667pt;}
.ye3{bottom:408.226667pt;}
.y127{bottom:412.226667pt;}
.y88{bottom:416.226667pt;}
.y76{bottom:418.626667pt;}
.yb6{bottom:421.186667pt;}
.y34{bottom:421.346667pt;}
.y9a{bottom:422.306667pt;}
.ye2{bottom:426.626667pt;}
.yb5{bottom:433.506667pt;}
.y87{bottom:434.626667pt;}
.y126{bottom:438.626667pt;}
.y99{bottom:439.266667pt;}
.y75{bottom:445.026667pt;}
.yb4{bottom:451.906667pt;}
.y86{bottom:453.026667pt;}
.y125{bottom:457.026667pt;}
.y98{bottom:460.866667pt;}
.y10b{bottom:461.026667pt;}
.ye1{bottom:463.426667pt;}
.yb3{bottom:470.306667pt;}
.y74{bottom:471.426667pt;}
.y16{bottom:474.786667pt;}
.y124{bottom:475.426667pt;}
.y10a{bottom:479.426667pt;}
.ye0{bottom:481.826667pt;}
.yb2{bottom:488.706667pt;}
.y73{bottom:489.826667pt;}
.y109{bottom:497.826667pt;}
.ydf{bottom:500.226667pt;}
.y123{bottom:501.826667pt;}
.yb1{bottom:507.106667pt;}
.y72{bottom:508.226667pt;}
.y108{bottom:516.226667pt;}
.yde{bottom:518.626667pt;}
.y122{bottom:520.226667pt;}
.y71{bottom:526.626667pt;}
.yb0{bottom:533.186667pt;}
.y107{bottom:534.626667pt;}
.ydd{bottom:537.053333pt;}
.y70{bottom:545.053333pt;}
.y121{bottom:546.653333pt;}
.yaf{bottom:550.173333pt;}
.y106{bottom:553.053333pt;}
.ydc{bottom:555.453333pt;}
.y6f{bottom:563.453333pt;}
.y120{bottom:565.053333pt;}
.y105{bottom:571.453333pt;}
.yae{bottom:571.773333pt;}
.ydb{bottom:573.853333pt;}
.y6e{bottom:581.853333pt;}
.y104{bottom:589.853333pt;}
.y11f{bottom:591.453333pt;}
.yda{bottom:592.253333pt;}
.y6d{bottom:600.253333pt;}
.y103{bottom:608.253333pt;}
.y11e{bottom:609.853333pt;}
.yd9{bottom:610.653333pt;}
.y6c{bottom:618.653333pt;}
.y102{bottom:626.653333pt;}
.yd8{bottom:629.053333pt;}
.y11d{bottom:636.253333pt;}
.y6b{bottom:637.053333pt;}
.y101{bottom:645.053333pt;}
.yd7{bottom:647.453333pt;}
.y6a{bottom:655.453333pt;}
.y11c{bottom:662.653333pt;}
.y100{bottom:663.453333pt;}
.yd6{bottom:665.853333pt;}
.y69{bottom:673.853333pt;}
.y11b{bottom:681.053333pt;}
.yff{bottom:681.853333pt;}
.yd5{bottom:684.253333pt;}
.y2d{bottom:688.093333pt;}
.y68{bottom:692.253333pt;}
.y11a{bottom:699.453333pt;}
.yfe{bottom:700.253333pt;}
.yd4{bottom:702.653333pt;}
.y2a{bottom:707.133333pt;}
.y67{bottom:710.653333pt;}
.yfd{bottom:718.653333pt;}
.yd3{bottom:721.053333pt;}
.y119{bottom:725.853333pt;}
.y66{bottom:729.053333pt;}
.yfc{bottom:737.053333pt;}
.yd2{bottom:739.453333pt;}
.y65{bottom:747.453333pt;}
.y118{bottom:752.253333pt;}
.yfb{bottom:755.453333pt;}
.yd1{bottom:757.853333pt;}
.y15{bottom:758.813333pt;}
.y64{bottom:765.853333pt;}
.y117{bottom:770.653333pt;}
.yfa{bottom:773.893333pt;}
.yd0{bottom:776.293333pt;}
.y63{bottom:784.293333pt;}
.y11{bottom:788.453333pt;}
.yf9{bottom:792.293333pt;}
.ycf{bottom:794.693333pt;}
.y116{bottom:797.093333pt;}
.y62{bottom:802.693333pt;}
.yf8{bottom:810.693333pt;}
.yce{bottom:813.093333pt;}
.y115{bottom:815.493333pt;}
.y61{bottom:821.093333pt;}
.yf7{bottom:829.093333pt;}
.ycd{bottom:831.493333pt;}
.ye{bottom:834.533333pt;}
.y60{bottom:839.493333pt;}
.y114{bottom:841.893333pt;}
.yf6{bottom:847.493333pt;}
.ycc{bottom:849.893333pt;}
.y5f{bottom:857.893333pt;}
.y113{bottom:860.293333pt;}
.yf5{bottom:865.893333pt;}
.ya{bottom:868.613333pt;}
.y5e{bottom:876.293333pt;}
.yf4{bottom:884.293333pt;}
.y112{bottom:886.693333pt;}
.y5d{bottom:894.693333pt;}
.ycb{bottom:902.693333pt;}
.y137{bottom:905.093333pt;}
.y5c{bottom:913.093333pt;}
.yca{bottom:921.093333pt;}
.y136{bottom:923.493333pt;}
.y8{bottom:924.453333pt;}
.y5b{bottom:931.493333pt;}
.yc9{bottom:939.493333pt;}
.y4{bottom:943.333333pt;}
.y5a{bottom:949.893333pt;}
.yc8{bottom:957.893333pt;}
.y59{bottom:968.293333pt;}
.yad{bottom:976.293333pt;}
.y58{bottom:986.693333pt;}
.yac{bottom:994.693333pt;}
.y57{bottom:1013.120000pt;}
.y55{bottom:1045.280000pt;}
.y54{bottom:1062.560000pt;}
.y1{bottom:1063.840000pt;}
.h1b{height:15.360000pt;}
.h15{height:16.960000pt;}
.h7{height:18.880000pt;}
.h11{height:23.232000pt;}
.h18{height:23.360000pt;}
.h1a{height:30.560000pt;}
.h10{height:33.918750pt;}
.hc{height:34.080000pt;}
.h21{height:42.084375pt;}
.h1d{height:42.745000pt;}
.he{height:43.215000pt;}
.h13{height:44.327188pt;}
.h14{height:45.920000pt;}
.hf{height:46.080000pt;}
.h2{height:49.148438pt;}
.h8{height:52.134375pt;}
.h17{height:52.800000pt;}
.h1e{height:53.406250pt;}
.hd{height:53.535000pt;}
.h23{height:54.375000pt;}
.ha{height:54.875000pt;}
.h9{height:55.200000pt;}
.h3{height:57.787500pt;}
.h20{height:59.340000pt;}
.h22{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h1f{height:66.404375pt;}
.h4{height:84.672000pt;}
.h5{height:85.785000pt;}
.h1c{height:211.066667pt;}
.h16{height:211.386667pt;}
.h19{height:292.026667pt;}
.h12{height:307.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:132.320000pt;}
.w5{width:183.706667pt;}
.w4{width:185.466667pt;}
.w6{width:235.546667pt;}
.w9{width:472.573333pt;}
.w3{width:604.733333pt;}
.w7{width:604.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.600000pt;}
.xc{left:7.200000pt;}
.xd{left:20.640000pt;}
.x13{left:23.520000pt;}
.xa{left:36.480000pt;}
.x8{left:47.994667pt;}
.x7{left:73.114667pt;}
.x4{left:94.592000pt;}
.x6{left:97.274667pt;}
.x1b{left:105.951988pt;}
.x18{left:110.431988pt;}
.x10{left:127.834667pt;}
.x16{left:132.351988pt;}
.x3{left:141.786655pt;}
.x19{left:155.706655pt;}
.x11{left:226.906667pt;}
.x1c{left:245.466655pt;}
.x14{left:248.194667pt;}
.xe{left:259.714667pt;}
.x5{left:267.874667pt;}
.x9{left:280.066667pt;}
.xf{left:302.434667pt;}
.x15{left:326.626655pt;}
.x1{left:331.106655pt;}
.x2{left:385.826655pt;}
.xb{left:463.773333pt;}
.x17{left:697.893322pt;}
.x1a{left:700.613322pt;}
}




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