
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8d6149a796f5de8504221cec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c0796282a10551de756ea20a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_cf464a2afef5b3f66ea1a601.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1300d16f80d8168913b2cafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_b24d12c1de31eb63426d4b0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_30ba4a1c253e0a077123633b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_4681c807aea70a01c950a13b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.031680px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.ls13{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls1a{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:7.920000px;}
.ls18{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342200px;}
.wse{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._13{margin-left:-4.351802px;}
._d{margin-left:-3.274200px;}
._7{margin-left:-2.256600px;}
._0{margin-left:-1.110000px;}
._3{width:1.258200px;}
._2{width:2.516400px;}
._4{width:3.547200px;}
._a{width:4.638000px;}
._c{width:5.649370px;}
._b{width:6.655800px;}
._e{width:7.730561px;}
._9{width:8.764792px;}
._8{width:9.799800px;}
._f{width:11.001720px;}
._12{width:12.052802px;}
._5{width:14.488800px;}
._6{width:15.571200px;}
._14{width:16.713240px;}
._10{width:17.735400px;}
._16{width:18.971400px;}
._15{width:20.019960px;}
._11{width:21.162240px;}
._17{width:22.184280px;}
._1a{width:31.623120px;}
._1{width:53.179836px;}
._18{width:87.174000px;}
._19{width:88.496640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:7.830000px;}
.y91{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yb6{bottom:89.820000px;}
.yb1{bottom:89.850000px;}
.y95{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y70{bottom:112.800000px;}
.y9a{bottom:117.180000px;}
.ya0{bottom:117.210000px;}
.yca{bottom:117.480000px;}
.y84{bottom:118.920000px;}
.yad{bottom:126.210000px;}
.y5a{bottom:133.320000px;}
.y29{bottom:134.580000px;}
.ydb{bottom:141.690000px;}
.y131{bottom:141.870000px;}
.y8e{bottom:144.540000px;}
.y6f{bottom:148.440000px;}
.y59{bottom:150.870000px;}
.y28{bottom:152.220000px;}
.yc9{bottom:153.120000px;}
.y83{bottom:154.470000px;}
.yda{bottom:159.330000px;}
.y130{bottom:159.420000px;}
.yac{bottom:161.850000px;}
.y58{bottom:168.510000px;}
.y27{bottom:169.770000px;}
.yd9{bottom:176.880000px;}
.y106{bottom:178.500000px;}
.y82{bottom:180.300000px;}
.y6e{bottom:180.660000px;}
.yc8{bottom:185.340000px;}
.y12f{bottom:185.970000px;}
.y57{bottom:186.060000px;}
.y26{bottom:187.320000px;}
.y81{bottom:191.730000px;}
.yd8{bottom:194.520000px;}
.y105{bottom:196.050000px;}
.yab{bottom:197.400000px;}
.y12e{bottom:203.610000px;}
.yd7{bottom:212.070000px;}
.y104{bottom:213.600000px;}
.y25{bottom:214.230000px;}
.y56{bottom:221.610000px;}
.yd6{bottom:229.620000px;}
.y12d{bottom:230.160000px;}
.y103{bottom:231.240000px;}
.yaa{bottom:233.040000px;}
.y55{bottom:239.250000px;}
.y12c{bottom:247.800000px;}
.y102{bottom:248.790000px;}
.y54{bottom:256.800000px;}
.y24{bottom:262.560000px;}
.yd5{bottom:265.260000px;}
.y101{bottom:266.430000px;}
.ya9{bottom:268.590000px;}
.y12b{bottom:274.350000px;}
.y23{bottom:280.470000px;}
.ya5{bottom:283.530000px;}
.y12a{bottom:291.900000px;}
.y53{bottom:292.440000px;}
.y100{bottom:293.250000px;}
.yd4{bottom:300.090000px;}
.y52{bottom:309.990000px;}
.ya8{bottom:310.890000px;}
.yd3{bottom:311.520000px;}
.y22{bottom:317.460000px;}
.y129{bottom:318.540000px;}
.y51{bottom:327.540000px;}
.y21{bottom:335.010000px;}
.y128{bottom:336.090000px;}
.ya7{bottom:338.250000px;}
.yff{bottom:341.580000px;}
.y20{bottom:352.650000px;}
.y127{bottom:353.730000px;}
.yfe{bottom:359.130000px;}
.y50{bottom:363.180000px;}
.ya6{bottom:365.520000px;}
.y1f{bottom:370.200000px;}
.yfd{bottom:376.770000px;}
.y126{bottom:380.280000px;}
.y4f{bottom:380.730000px;}
.y1e{bottom:387.840000px;}
.y9f{bottom:392.880000px;}
.yfc{bottom:394.320000px;}
.y4e{bottom:398.370000px;}
.y1d{bottom:405.390000px;}
.y125{bottom:406.830000px;}
.y80{bottom:411.150000px;}
.yfb{bottom:411.870000px;}
.y4d{bottom:415.920000px;}
.ya4{bottom:420.240000px;}
.y1c{bottom:422.940000px;}
.y124{bottom:424.470000px;}
.y7f{bottom:428.700000px;}
.yfa{bottom:429.510000px;}
.y1b{bottom:440.580000px;}
.y123{bottom:442.020000px;}
.y7e{bottom:446.250000px;}
.ya3{bottom:447.600000px;}
.y4c{bottom:451.470000px;}
.y1a{bottom:458.130000px;}
.y122{bottom:459.660000px;}
.y7d{bottom:463.890000px;}
.yf9{bottom:465.060000px;}
.y4b{bottom:469.110000px;}
.ya2{bottom:474.900000px;}
.y19{bottom:475.800000px;}
.y7c{bottom:481.470000px;}
.yf8{bottom:482.730000px;}
.y121{bottom:486.240000px;}
.y4a{bottom:486.690000px;}
.yc7{bottom:487.950000px;}
.y18{bottom:493.350000px;}
.y7b{bottom:499.110000px;}
.yf7{bottom:500.280000px;}
.ya1{bottom:502.260000px;}
.y120{bottom:503.790000px;}
.y144{bottom:504.690000px;}
.yc6{bottom:505.590000px;}
.y17{bottom:510.900000px;}
.yf6{bottom:517.830000px;}
.y49{bottom:522.330000px;}
.yc5{bottom:523.140000px;}
.y7a{bottom:525.660000px;}
.y16{bottom:528.540000px;}
.y99{bottom:529.620000px;}
.y11f{bottom:530.430000px;}
.yf5{bottom:535.470000px;}
.y48{bottom:539.880000px;}
.y15{bottom:546.090000px;}
.y11e{bottom:547.980000px;}
.y143{bottom:548.880000px;}
.yc4{bottom:549.690000px;}
.yf4{bottom:553.020000px;}
.y9e{bottom:556.980000px;}
.y47{bottom:557.430000px;}
.y79{bottom:561.210000px;}
.y14{bottom:563.640000px;}
.y11d{bottom:565.620000px;}
.y142{bottom:566.430000px;}
.yc3{bottom:567.330000px;}
.y46{bottom:575.070000px;}
.y78{bottom:578.850000px;}
.y13{bottom:581.280000px;}
.y141{bottom:584.070000px;}
.y9d{bottom:584.250000px;}
.yf3{bottom:588.660000px;}
.y6d{bottom:589.020000px;}
.y11c{bottom:592.170000px;}
.y77{bottom:596.400000px;}
.y12{bottom:598.830000px;}
.ybe{bottom:600.270000px;}
.yf2{bottom:606.210000px;}
.y6c{bottom:606.660000px;}
.y11b{bottom:609.720000px;}
.y45{bottom:610.620000px;}
.y9c{bottom:611.610000px;}
.y76{bottom:614.040000px;}
.y11{bottom:616.470000px;}
.yf1{bottom:623.760000px;}
.y6b{bottom:624.210000px;}
.yc2{bottom:627.630000px;}
.y44{bottom:628.260000px;}
.y75{bottom:631.590000px;}
.y10{bottom:634.020000px;}
.y11a{bottom:636.630000px;}
.y9b{bottom:638.970000px;}
.yf0{bottom:641.400000px;}
.y6a{bottom:641.760000px;}
.y74{bottom:649.140000px;}
.yf{bottom:651.570000px;}
.y140{bottom:654.810000px;}
.yc1{bottom:654.990000px;}
.yef{bottom:658.950000px;}
.y43{bottom:663.810000px;}
.y94{bottom:666.240000px;}
.y73{bottom:666.780000px;}
.y13f{bottom:672.360000px;}
.y69{bottom:677.400000px;}
.ye{bottom:678.480000px;}
.y42{bottom:681.360000px;}
.yc0{bottom:682.260000px;}
.y72{bottom:684.330000px;}
.y119{bottom:684.960000px;}
.y13e{bottom:690.000000px;}
.y98{bottom:693.600000px;}
.yee{bottom:694.590000px;}
.y68{bottom:694.950000px;}
.y41{bottom:699.000000px;}
.ybf{bottom:709.620000px;}
.y118{bottom:711.870000px;}
.yed{bottom:712.140000px;}
.y67{bottom:712.590000px;}
.y13d{bottom:716.550000px;}
.y71{bottom:719.970000px;}
.y97{bottom:720.960000px;}
.yd{bottom:726.810000px;}
.yec{bottom:729.690000px;}
.y66{bottom:730.140000px;}
.y13c{bottom:734.190000px;}
.y40{bottom:734.550000px;}
.yba{bottom:736.980000px;}
.yeb{bottom:747.330000px;}
.y65{bottom:747.690000px;}
.y96{bottom:748.320000px;}
.y117{bottom:749.220000px;}
.y3f{bottom:752.190000px;}
.y13b{bottom:760.740000px;}
.yc{bottom:762.630000px;}
.ybd{bottom:764.250000px;}
.yea{bottom:764.880000px;}
.y3e{bottom:769.740000px;}
.y64{bottom:774.600000px;}
.y8d{bottom:775.590000px;}
.y13a{bottom:778.290000px;}
.y3d{bottom:787.290000px;}
.ybc{bottom:791.610000px;}
.y116{bottom:797.460000px;}
.yb{bottom:798.630000px;}
.ye9{bottom:800.520000px;}
.y93{bottom:802.950000px;}
.y3c{bottom:804.930000px;}
.y115{bottom:815.010000px;}
.ye8{bottom:818.070000px;}
.ybb{bottom:818.970000px;}
.y3b{bottom:822.480000px;}
.y63{bottom:822.930000px;}
.y92{bottom:830.310000px;}
.y114{bottom:833.460000px;}
.ya{bottom:838.410000px;}
.y3a{bottom:840.030000px;}
.y62{bottom:840.480000px;}
.yb5{bottom:846.330000px;}
.y139{bottom:849.030000px;}
.y113{bottom:851.820000px;}
.ye7{bottom:853.620000px;}
.y9{bottom:856.410000px;}
.y39{bottom:857.670000px;}
.y61{bottom:858.030000px;}
.yd2{bottom:859.380000px;}
.y138{bottom:866.670000px;}
.y112{bottom:870.270000px;}
.ye6{bottom:871.260000px;}
.yb9{bottom:873.600000px;}
.y8{bottom:874.410000px;}
.y60{bottom:875.670000px;}
.y137{bottom:884.220000px;}
.y90{bottom:884.940000px;}
.y111{bottom:887.820000px;}
.ye5{bottom:888.810000px;}
.y7{bottom:892.410000px;}
.y38{bottom:893.220000px;}
.yd1{bottom:895.020000px;}
.yb8{bottom:900.960000px;}
.y110{bottom:906.270000px;}
.ye4{bottom:906.450000px;}
.y37{bottom:910.860000px;}
.y8f{bottom:912.300000px;}
.yd0{bottom:912.570000px;}
.y10f{bottom:923.820000px;}
.ye3{bottom:924.000000px;}
.y6{bottom:924.720000px;}
.yb7{bottom:928.320000px;}
.y36{bottom:928.410000px;}
.y5f{bottom:928.860000px;}
.y8b{bottom:939.660000px;}
.y10e{bottom:942.270000px;}
.y35{bottom:945.960000px;}
.y5e{bottom:946.410000px;}
.ycf{bottom:948.210000px;}
.y136{bottom:954.960000px;}
.yb0{bottom:955.680000px;}
.ye2{bottom:959.550000px;}
.y10d{bottom:959.820000px;}
.y5{bottom:962.970000px;}
.y5d{bottom:963.960000px;}
.y135{bottom:972.600000px;}
.yce{bottom:974.760000px;}
.ye1{bottom:977.190000px;}
.y10c{bottom:978.270000px;}
.y34{bottom:981.600000px;}
.yb4{bottom:982.950000px;}
.y4{bottom:987.630000px;}
.y8a{bottom:988.350000px;}
.ye0{bottom:994.740000px;}
.y10b{bottom:995.820000px;}
.y33{bottom:999.150000px;}
.yb3{bottom:1010.340000px;}
.y3{bottom:1012.320000px;}
.y10a{bottom:1014.300000px;}
.y89{bottom:1014.930000px;}
.y32{bottom:1016.820000px;}
.ycd{bottom:1027.980000px;}
.ydf{bottom:1030.320000px;}
.y109{bottom:1032.660000px;}
.y5c{bottom:1034.370000px;}
.yb2{bottom:1037.700000px;}
.y88{bottom:1047.510000px;}
.yde{bottom:1047.960000px;}
.y108{bottom:1051.110000px;}
.y5b{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.ycc{bottom:1054.530000px;}
.y134{bottom:1060.920000px;}
.yaf{bottom:1064.970000px;}
.y87{bottom:1065.150000px;}
.ydd{bottom:1065.510000px;}
.y107{bottom:1068.660000px;}
.y30{bottom:1069.920000px;}
.y133{bottom:1078.560000px;}
.ydc{bottom:1083.150000px;}
.ycb{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y132{bottom:1096.110000px;}
.y86{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.yae{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y85{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h15{height:26.580000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hc{height:41.661211px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:59.973223px;}
.h9{height:60.960938px;}
.h18{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h17{height:108.540000px;}
.h16{height:108.570000px;}
.h12{height:108.630000px;}
.h13{height:135.900000px;}
.h14{height:135.930000px;}
.h10{height:163.260000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:90.000000px;}
.w6{width:117.180000px;}
.w8{width:117.270000px;}
.w5{width:123.030000px;}
.w4{width:179.490000px;}
.w7{width:198.390000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:69.389987px;}
.x17{left:95.039987px;}
.x19{left:111.239987px;}
.x18{left:122.039987px;}
.x2{left:211.079987px;}
.xa{left:220.529987px;}
.xf{left:229.440000px;}
.xb{left:249.600000px;}
.x7{left:250.679987px;}
.x5{left:269.759987px;}
.xd{left:340.320000px;}
.x16{left:343.919987px;}
.x10{left:347.340000px;}
.x9{left:384.869987px;}
.x15{left:386.129987px;}
.xe{left:520.620000px;}
.x11{left:546.540000px;}
.x12{left:721.139987px;}
.x6{left:740.309987px;}
.x8{left:757.139987px;}
.x4{left:767.309987px;}
.x14{left:775.139987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.028160pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.ls13{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls1a{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:7.040000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._13{margin-left:-3.868268pt;}
._d{margin-left:-2.910400pt;}
._7{margin-left:-2.005866pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.118400pt;}
._2{width:2.236800pt;}
._4{width:3.153067pt;}
._a{width:4.122667pt;}
._c{width:5.021662pt;}
._b{width:5.916266pt;}
._e{width:6.871610pt;}
._9{width:7.790927pt;}
._8{width:8.710934pt;}
._f{width:9.779306pt;}
._12{width:10.713602pt;}
._5{width:12.878933pt;}
._6{width:13.841067pt;}
._14{width:14.856213pt;}
._10{width:15.764800pt;}
._16{width:16.863467pt;}
._15{width:17.795520pt;}
._11{width:18.810880pt;}
._17{width:19.719360pt;}
._1a{width:28.109440pt;}
._1{width:47.270965pt;}
._18{width:77.488000pt;}
._19{width:78.663680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:6.960000pt;}
.y91{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yb6{bottom:79.840000pt;}
.yb1{bottom:79.866667pt;}
.y95{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y70{bottom:100.266667pt;}
.y9a{bottom:104.160000pt;}
.ya0{bottom:104.186667pt;}
.yca{bottom:104.426667pt;}
.y84{bottom:105.706667pt;}
.yad{bottom:112.186667pt;}
.y5a{bottom:118.506667pt;}
.y29{bottom:119.626667pt;}
.ydb{bottom:125.946667pt;}
.y131{bottom:126.106667pt;}
.y8e{bottom:128.480000pt;}
.y6f{bottom:131.946667pt;}
.y59{bottom:134.106667pt;}
.y28{bottom:135.306667pt;}
.yc9{bottom:136.106667pt;}
.y83{bottom:137.306667pt;}
.yda{bottom:141.626667pt;}
.y130{bottom:141.706667pt;}
.yac{bottom:143.866667pt;}
.y58{bottom:149.786667pt;}
.y27{bottom:150.906667pt;}
.yd9{bottom:157.226667pt;}
.y106{bottom:158.666667pt;}
.y82{bottom:160.266667pt;}
.y6e{bottom:160.586667pt;}
.yc8{bottom:164.746667pt;}
.y12f{bottom:165.306667pt;}
.y57{bottom:165.386667pt;}
.y26{bottom:166.506667pt;}
.y81{bottom:170.426667pt;}
.yd8{bottom:172.906667pt;}
.y105{bottom:174.266667pt;}
.yab{bottom:175.466667pt;}
.y12e{bottom:180.986667pt;}
.yd7{bottom:188.506667pt;}
.y104{bottom:189.866667pt;}
.y25{bottom:190.426667pt;}
.y56{bottom:196.986667pt;}
.yd6{bottom:204.106667pt;}
.y12d{bottom:204.586667pt;}
.y103{bottom:205.546667pt;}
.yaa{bottom:207.146667pt;}
.y55{bottom:212.666667pt;}
.y12c{bottom:220.266667pt;}
.y102{bottom:221.146667pt;}
.y54{bottom:228.266667pt;}
.y24{bottom:233.386667pt;}
.yd5{bottom:235.786667pt;}
.y101{bottom:236.826667pt;}
.ya9{bottom:238.746667pt;}
.y12b{bottom:243.866667pt;}
.y23{bottom:249.306667pt;}
.ya5{bottom:252.026667pt;}
.y12a{bottom:259.466667pt;}
.y53{bottom:259.946667pt;}
.y100{bottom:260.666667pt;}
.yd4{bottom:266.746667pt;}
.y52{bottom:275.546667pt;}
.ya8{bottom:276.346667pt;}
.yd3{bottom:276.906667pt;}
.y22{bottom:282.186667pt;}
.y129{bottom:283.146667pt;}
.y51{bottom:291.146667pt;}
.y21{bottom:297.786667pt;}
.y128{bottom:298.746667pt;}
.ya7{bottom:300.666667pt;}
.yff{bottom:303.626667pt;}
.y20{bottom:313.466667pt;}
.y127{bottom:314.426667pt;}
.yfe{bottom:319.226667pt;}
.y50{bottom:322.826667pt;}
.ya6{bottom:324.906667pt;}
.y1f{bottom:329.066667pt;}
.yfd{bottom:334.906667pt;}
.y126{bottom:338.026667pt;}
.y4f{bottom:338.426667pt;}
.y1e{bottom:344.746667pt;}
.y9f{bottom:349.226667pt;}
.yfc{bottom:350.506667pt;}
.y4e{bottom:354.106667pt;}
.y1d{bottom:360.346667pt;}
.y125{bottom:361.626667pt;}
.y80{bottom:365.466667pt;}
.yfb{bottom:366.106667pt;}
.y4d{bottom:369.706667pt;}
.ya4{bottom:373.546667pt;}
.y1c{bottom:375.946667pt;}
.y124{bottom:377.306667pt;}
.y7f{bottom:381.066667pt;}
.yfa{bottom:381.786667pt;}
.y1b{bottom:391.626667pt;}
.y123{bottom:392.906667pt;}
.y7e{bottom:396.666667pt;}
.ya3{bottom:397.866667pt;}
.y4c{bottom:401.306667pt;}
.y1a{bottom:407.226667pt;}
.y122{bottom:408.586667pt;}
.y7d{bottom:412.346667pt;}
.yf9{bottom:413.386667pt;}
.y4b{bottom:416.986667pt;}
.ya2{bottom:422.133333pt;}
.y19{bottom:422.933333pt;}
.y7c{bottom:427.973333pt;}
.yf8{bottom:429.093333pt;}
.y121{bottom:432.213333pt;}
.y4a{bottom:432.613333pt;}
.yc7{bottom:433.733333pt;}
.y18{bottom:438.533333pt;}
.y7b{bottom:443.653333pt;}
.yf7{bottom:444.693333pt;}
.ya1{bottom:446.453333pt;}
.y120{bottom:447.813333pt;}
.y144{bottom:448.613333pt;}
.yc6{bottom:449.413333pt;}
.y17{bottom:454.133333pt;}
.yf6{bottom:460.293333pt;}
.y49{bottom:464.293333pt;}
.yc5{bottom:465.013333pt;}
.y7a{bottom:467.253333pt;}
.y16{bottom:469.813333pt;}
.y99{bottom:470.773333pt;}
.y11f{bottom:471.493333pt;}
.yf5{bottom:475.973333pt;}
.y48{bottom:479.893333pt;}
.y15{bottom:485.413333pt;}
.y11e{bottom:487.093333pt;}
.y143{bottom:487.893333pt;}
.yc4{bottom:488.613333pt;}
.yf4{bottom:491.573333pt;}
.y9e{bottom:495.093333pt;}
.y47{bottom:495.493333pt;}
.y79{bottom:498.853333pt;}
.y14{bottom:501.013333pt;}
.y11d{bottom:502.773333pt;}
.y142{bottom:503.493333pt;}
.yc3{bottom:504.293333pt;}
.y46{bottom:511.173333pt;}
.y78{bottom:514.533333pt;}
.y13{bottom:516.693333pt;}
.y141{bottom:519.173333pt;}
.y9d{bottom:519.333333pt;}
.yf3{bottom:523.253333pt;}
.y6d{bottom:523.573333pt;}
.y11c{bottom:526.373333pt;}
.y77{bottom:530.133333pt;}
.y12{bottom:532.293333pt;}
.ybe{bottom:533.573333pt;}
.yf2{bottom:538.853333pt;}
.y6c{bottom:539.253333pt;}
.y11b{bottom:541.973333pt;}
.y45{bottom:542.773333pt;}
.y9c{bottom:543.653333pt;}
.y76{bottom:545.813333pt;}
.y11{bottom:547.973333pt;}
.yf1{bottom:554.453333pt;}
.y6b{bottom:554.853333pt;}
.yc2{bottom:557.893333pt;}
.y44{bottom:558.453333pt;}
.y75{bottom:561.413333pt;}
.y10{bottom:563.573333pt;}
.y11a{bottom:565.893333pt;}
.y9b{bottom:567.973333pt;}
.yf0{bottom:570.133333pt;}
.y6a{bottom:570.453333pt;}
.y74{bottom:577.013333pt;}
.yf{bottom:579.173333pt;}
.y140{bottom:582.053333pt;}
.yc1{bottom:582.213333pt;}
.yef{bottom:585.733333pt;}
.y43{bottom:590.053333pt;}
.y94{bottom:592.213333pt;}
.y73{bottom:592.693333pt;}
.y13f{bottom:597.653333pt;}
.y69{bottom:602.133333pt;}
.ye{bottom:603.093333pt;}
.y42{bottom:605.653333pt;}
.yc0{bottom:606.453333pt;}
.y72{bottom:608.293333pt;}
.y119{bottom:608.853333pt;}
.y13e{bottom:613.333333pt;}
.y98{bottom:616.533333pt;}
.yee{bottom:617.413333pt;}
.y68{bottom:617.733333pt;}
.y41{bottom:621.333333pt;}
.ybf{bottom:630.773333pt;}
.y118{bottom:632.773333pt;}
.yed{bottom:633.013333pt;}
.y67{bottom:633.413333pt;}
.y13d{bottom:636.933333pt;}
.y71{bottom:639.973333pt;}
.y97{bottom:640.853333pt;}
.yd{bottom:646.053333pt;}
.yec{bottom:648.613333pt;}
.y66{bottom:649.013333pt;}
.y13c{bottom:652.613333pt;}
.y40{bottom:652.933333pt;}
.yba{bottom:655.093333pt;}
.yeb{bottom:664.293333pt;}
.y65{bottom:664.613333pt;}
.y96{bottom:665.173333pt;}
.y117{bottom:665.973333pt;}
.y3f{bottom:668.613333pt;}
.y13b{bottom:676.213333pt;}
.yc{bottom:677.893333pt;}
.ybd{bottom:679.333333pt;}
.yea{bottom:679.893333pt;}
.y3e{bottom:684.213333pt;}
.y64{bottom:688.533333pt;}
.y8d{bottom:689.413333pt;}
.y13a{bottom:691.813333pt;}
.y3d{bottom:699.813333pt;}
.ybc{bottom:703.653333pt;}
.y116{bottom:708.853333pt;}
.yb{bottom:709.893333pt;}
.ye9{bottom:711.573333pt;}
.y93{bottom:713.733333pt;}
.y3c{bottom:715.493333pt;}
.y115{bottom:724.453333pt;}
.ye8{bottom:727.173333pt;}
.ybb{bottom:727.973333pt;}
.y3b{bottom:731.093333pt;}
.y63{bottom:731.493333pt;}
.y92{bottom:738.053333pt;}
.y114{bottom:740.853333pt;}
.ya{bottom:745.253333pt;}
.y3a{bottom:746.693333pt;}
.y62{bottom:747.093333pt;}
.yb5{bottom:752.293333pt;}
.y139{bottom:754.693333pt;}
.y113{bottom:757.173333pt;}
.ye7{bottom:758.773333pt;}
.y9{bottom:761.253333pt;}
.y39{bottom:762.373333pt;}
.y61{bottom:762.693333pt;}
.yd2{bottom:763.893333pt;}
.y138{bottom:770.373333pt;}
.y112{bottom:773.573333pt;}
.ye6{bottom:774.453333pt;}
.yb9{bottom:776.533333pt;}
.y8{bottom:777.253333pt;}
.y60{bottom:778.373333pt;}
.y137{bottom:785.973333pt;}
.y90{bottom:786.613333pt;}
.y111{bottom:789.173333pt;}
.ye5{bottom:790.053333pt;}
.y7{bottom:793.253333pt;}
.y38{bottom:793.973333pt;}
.yd1{bottom:795.573333pt;}
.yb8{bottom:800.853333pt;}
.y110{bottom:805.573333pt;}
.ye4{bottom:805.733333pt;}
.y37{bottom:809.653333pt;}
.y8f{bottom:810.933333pt;}
.yd0{bottom:811.173333pt;}
.y10f{bottom:821.173333pt;}
.ye3{bottom:821.333333pt;}
.y6{bottom:821.973333pt;}
.yb7{bottom:825.173333pt;}
.y36{bottom:825.253333pt;}
.y5f{bottom:825.653333pt;}
.y8b{bottom:835.253333pt;}
.y10e{bottom:837.573333pt;}
.y35{bottom:840.853333pt;}
.y5e{bottom:841.253333pt;}
.ycf{bottom:842.853333pt;}
.y136{bottom:848.853333pt;}
.yb0{bottom:849.493333pt;}
.ye2{bottom:852.933333pt;}
.y10d{bottom:853.173333pt;}
.y5{bottom:855.973333pt;}
.y5d{bottom:856.853333pt;}
.y135{bottom:864.533333pt;}
.yce{bottom:866.453333pt;}
.ye1{bottom:868.613333pt;}
.y10c{bottom:869.573333pt;}
.y34{bottom:872.533333pt;}
.yb4{bottom:873.733333pt;}
.y4{bottom:877.893333pt;}
.y8a{bottom:878.533333pt;}
.ye0{bottom:884.213333pt;}
.y10b{bottom:885.173333pt;}
.y33{bottom:888.133333pt;}
.yb3{bottom:898.080000pt;}
.y3{bottom:899.840000pt;}
.y10a{bottom:901.600000pt;}
.y89{bottom:902.160000pt;}
.y32{bottom:903.840000pt;}
.ycd{bottom:913.760000pt;}
.ydf{bottom:915.840000pt;}
.y109{bottom:917.920000pt;}
.y5c{bottom:919.440000pt;}
.yb2{bottom:922.400000pt;}
.y88{bottom:931.120000pt;}
.yde{bottom:931.520000pt;}
.y108{bottom:934.320000pt;}
.y5b{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.ycc{bottom:937.360000pt;}
.y134{bottom:943.040000pt;}
.yaf{bottom:946.640000pt;}
.y87{bottom:946.800000pt;}
.ydd{bottom:947.120000pt;}
.y107{bottom:949.920000pt;}
.y30{bottom:951.040000pt;}
.y133{bottom:958.720000pt;}
.ydc{bottom:962.800000pt;}
.ycb{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y132{bottom:974.320000pt;}
.y86{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.yae{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y85{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h15{height:23.626667pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hc{height:37.032187pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:53.309531pt;}
.h9{height:54.187500pt;}
.h18{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h17{height:96.480000pt;}
.h16{height:96.506667pt;}
.h12{height:96.560000pt;}
.h13{height:120.800000pt;}
.h14{height:120.826667pt;}
.h10{height:145.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:80.000000pt;}
.w6{width:104.160000pt;}
.w8{width:104.240000pt;}
.w5{width:109.360000pt;}
.w4{width:159.546667pt;}
.w7{width:176.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:61.679988pt;}
.x17{left:84.479988pt;}
.x19{left:98.879988pt;}
.x18{left:108.479988pt;}
.x2{left:187.626655pt;}
.xa{left:196.026655pt;}
.xf{left:203.946667pt;}
.xb{left:221.866667pt;}
.x7{left:222.826655pt;}
.x5{left:239.786655pt;}
.xd{left:302.506667pt;}
.x16{left:305.706655pt;}
.x10{left:308.746667pt;}
.x9{left:342.106655pt;}
.x15{left:343.226655pt;}
.xe{left:462.773333pt;}
.x11{left:485.813333pt;}
.x12{left:641.013322pt;}
.x6{left:658.053322pt;}
.x8{left:673.013322pt;}
.x4{left:682.053322pt;}
.x14{left:689.013322pt;}
.x3{left:711.413322pt;}
}




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