
    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_982e97e41f3e3b6ab5466556.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.740723;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_fef3237855ab77aaf1ef2b9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_aab50979ba35b9849cffb83d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_6829083e8aa882a3abd916cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892578;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_81cc5f78c86f90a21c1c3026.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104492;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01cdaea14c1736cfb61e2576.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.584000px;}
.ls1e{letter-spacing:-1.152000px;}
.ls12{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.189600px;}
.ls10{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.018720px;}
.ls31{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.054720px;}
.ls23{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174240px;}
.ls2c{letter-spacing:0.208200px;}
.ls5{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.413400px;}
.ls2b{letter-spacing:0.530400px;}
.ls32{letter-spacing:0.612000px;}
.ls27{letter-spacing:0.613440px;}
.ls30{letter-spacing:0.666720px;}
.ls29{letter-spacing:0.702000px;}
.ls1{letter-spacing:0.979920px;}
.ls24{letter-spacing:1.421280px;}
.lse{letter-spacing:1.584000px;}
.ls15{letter-spacing:3.024000px;}
.ls1b{letter-spacing:3.864000px;}
.ls2e{letter-spacing:4.266720px;}
.ls17{letter-spacing:5.184000px;}
.lsb{letter-spacing:5.904000px;}
.lsc{letter-spacing:7.344000px;}
.ls2f{letter-spacing:7.986720px;}
.ls25{letter-spacing:10.200000px;}
.ls19{letter-spacing:10.224000px;}
.ls1c{letter-spacing:15.384000px;}
.ls18{letter-spacing:18.864000px;}
.ls1d{letter-spacing:21.744000px;}
.ls16{letter-spacing:22.464000px;}
.ls14{letter-spacing:25.344000px;}
.lsd{letter-spacing:33.264000px;}
.ls1a{letter-spacing:36.144000px;}
.ls20{letter-spacing:47.604000px;}
.ls22{letter-spacing:48.348000px;}
.ls21{letter-spacing:68.508000px;}
.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;}
}
.ws14{word-spacing:-54.000000px;}
.ws16{word-spacing:-27.323280px;}
.ws18{word-spacing:-27.151680px;}
.ws4{word-spacing:-27.000000px;}
.ws19{word-spacing:-26.829480px;}
.ws17{word-spacing:-26.640000px;}
.ws0{word-spacing:-26.621280px;}
.ws1{word-spacing:-26.602560px;}
.ws15{word-spacing:-26.431680px;}
.wsc{word-spacing:-20.304000px;}
.ws11{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.ws1a{word-spacing:-19.800000px;}
.wsb{word-spacing:-19.584000px;}
.ws8{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.296000px;}
.wsf{word-spacing:-19.152000px;}
.ws12{word-spacing:-18.864000px;}
.wse{word-spacing:-18.432000px;}
.ws1c{word-spacing:-17.225280px;}
.ws1d{word-spacing:-17.026680px;}
.ws1b{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.506480px;}
.ws13{word-spacing:-15.867360px;}
.ws9{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.012000px;}
.wsa{word-spacing:0.000000px;}
._22{margin-left:-20.892000px;}
._1b{margin-left:-4.856160px;}
._d{margin-left:-3.736800px;}
._c{margin-left:-2.268000px;}
._1{margin-left:-1.138320px;}
._0{width:1.792800px;}
._2{width:2.850000px;}
._3{width:3.952080px;}
._10{width:5.036640px;}
._5{width:6.214320px;}
._4{width:7.398000px;}
._6{width:8.698560px;}
._16{width:9.736320px;}
._8{width:10.746000px;}
._9{width:11.921040px;}
._1e{width:13.087200px;}
._17{width:14.527200px;}
._15{width:15.895200px;}
._7{width:17.226000px;}
._b{width:18.360000px;}
._24{width:20.328480px;}
._11{width:22.032000px;}
._f{width:23.952000px;}
._e{width:25.056000px;}
._18{width:26.112000px;}
._1d{width:27.475200px;}
._1c{width:28.560000px;}
._21{width:29.640000px;}
._23{width:30.953520px;}
._12{width:32.232000px;}
._13{width:34.116000px;}
._20{width:35.856000px;}
._1f{width:36.876000px;}
._27{width:37.908000px;}
._28{width:47.304000px;}
._14{width:51.636000px;}
._1a{width:55.368000px;}
._19{width:56.520000px;}
._25{width:60.008400px;}
._37{width:62.332560px;}
._36{width:63.405360px;}
._26{width:68.148000px;}
._35{width:71.771760px;}
._31{width:85.729440px;}
._30{width:87.428880px;}
._2b{width:124.375680px;}
._2a{width:125.376480px;}
._2f{width:158.328960px;}
._33{width:211.980240px;}
._34{width:213.462720px;}
._32{width:214.526880px;}
._2e{width:250.573680px;}
._2d{width:251.709120px;}
._29{width:452.144160px;}
._a{width:844.140000px;}
._2c{width:939.486960px;}
.fc5{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:2.880000px;}
.yb6{bottom:3.060000px;}
.yec{bottom:4.005000px;}
.yf5{bottom:7.740000px;}
.ybc{bottom:11.160000px;}
.yc5{bottom:11.340000px;}
.ye4{bottom:18.360000px;}
.y11d{bottom:18.540000px;}
.yf3{bottom:19.434000px;}
.yb5{bottom:19.440000px;}
.yc8{bottom:19.470000px;}
.yc3{bottom:19.620000px;}
.ybb{bottom:27.540000px;}
.yc0{bottom:27.720000px;}
.ye3{bottom:34.020000px;}
.yea{bottom:34.740000px;}
.yf2{bottom:34.914000px;}
.ybe{bottom:35.820000px;}
.yc7{bottom:35.850000px;}
.yd2{bottom:35.865000px;}
.yc2{bottom:36.000000px;}
.yba{bottom:43.920000px;}
.ycb{bottom:49.140000px;}
.ye2{bottom:49.500000px;}
.yf1{bottom:51.294000px;}
.ye9{bottom:51.300000px;}
.ybd{bottom:52.200000px;}
.yc9{bottom:52.230000px;}
.yc1{bottom:52.380000px;}
.ye1{bottom:64.980000px;}
.y11c{bottom:65.880000px;}
.yf0{bottom:67.854000px;}
.yce{bottom:77.985000px;}
.y9{bottom:78.336000px;}
.y11b{bottom:81.585000px;}
.ycd{bottom:94.365000px;}
.y11a{bottom:97.065000px;}
.ycc{bottom:110.745000px;}
.y119{bottom:112.545000px;}
.y118{bottom:128.925000px;}
.y30{bottom:130.356000px;}
.yef{bottom:141.516000px;}
.yb8{bottom:143.850000px;}
.y117{bottom:144.585000px;}
.y97{bottom:145.656000px;}
.y2f{bottom:145.836000px;}
.y139{bottom:152.850000px;}
.y75{bottom:156.630000px;}
.y116{bottom:160.065000px;}
.yae{bottom:160.230000px;}
.y2e{bottom:161.310000px;}
.yd4{bottom:162.390000px;}
.y15b{bottom:162.750000px;}
.y2d{bottom:165.810000px;}
.y96{bottom:166.350000px;}
.y11f{bottom:167.610000px;}
.y138{bottom:170.130000px;}
.y115{bottom:175.545000px;}
.y74{bottom:177.330000px;}
.y2c{bottom:178.410000px;}
.y15a{bottom:180.030000px;}
.y52{bottom:180.930000px;}
.y137{bottom:187.230000px;}
.y114{bottom:191.925000px;}
.y159{bottom:197.310000px;}
.y73{bottom:198.030000px;}
.y11e{bottom:198.570000px;}
.yd3{bottom:201.090000px;}
.yad{bottom:201.630000px;}
.y136{bottom:204.510000px;}
.y95{bottom:205.050000px;}
.y113{bottom:207.585000px;}
.yf8{bottom:216.210000px;}
.y72{bottom:218.730000px;}
.y51{bottom:219.630000px;}
.yac{bottom:222.330000px;}
.y112{bottom:223.065000px;}
.yee{bottom:223.590000px;}
.y94{bottom:225.750000px;}
.y158{bottom:232.410000px;}
.y111{bottom:238.545000px;}
.y71{bottom:239.430000px;}
.y135{bottom:239.790000px;}
.yed{bottom:239.970000px;}
.y50{bottom:240.330000px;}
.yab{bottom:243.030000px;}
.y93{bottom:246.450000px;}
.y2b{bottom:248.250000px;}
.y157{bottom:249.690000px;}
.y110{bottom:255.105000px;}
.y134{bottom:257.070000px;}
.y4f{bottom:261.030000px;}
.yaa{bottom:263.730000px;}
.y156{bottom:266.970000px;}
.y92{bottom:267.150000px;}
.yd1{bottom:268.770000px;}
.y2a{bottom:268.950000px;}
.y10f{bottom:271.485000px;}
.y133{bottom:274.350000px;}
.y70{bottom:278.130000px;}
.y4e{bottom:281.730000px;}
.ya9{bottom:284.430000px;}
.y10e{bottom:286.965000px;}
.y91{bottom:287.850000px;}
.y29{bottom:289.650000px;}
.yeb{bottom:290.190000px;}
.y132{bottom:291.675000px;}
.y6f{bottom:298.875000px;}
.y155{bottom:302.295000px;}
.y10d{bottom:302.445000px;}
.y4d{bottom:302.475000px;}
.ya8{bottom:305.175000px;}
.ye8{bottom:307.695000px;}
.y90{bottom:308.595000px;}
.y28{bottom:310.395000px;}
.yd0{bottom:318.675000px;}
.y10c{bottom:319.005000px;}
.y6e{bottom:319.575000px;}
.y4c{bottom:323.175000px;}
.ya7{bottom:325.695000px;}
.y131{bottom:326.775000px;}
.y8f{bottom:329.295000px;}
.y27{bottom:331.095000px;}
.y10b{bottom:334.515000px;}
.y154{bottom:336.855000px;}
.y6d{bottom:340.275000px;}
.y4b{bottom:343.695000px;}
.y130{bottom:344.055000px;}
.y10a{bottom:349.995000px;}
.y26{bottom:350.895000px;}
.y153{bottom:353.955000px;}
.y6c{bottom:360.975000px;}
.y12f{bottom:361.335000px;}
.ya6{bottom:364.395000px;}
.y109{bottom:365.475000px;}
.y25{bottom:366.375000px;}
.y8e{bottom:367.995000px;}
.ycf{bottom:368.535000px;}
.ye7{bottom:373.215000px;}
.y12e{bottom:378.615000px;}
.y108{bottom:381.135000px;}
.y6b{bottom:381.675000px;}
.y24{bottom:382.035000px;}
.y4a{bottom:382.395000px;}
.ya5{bottom:385.095000px;}
.y8d{bottom:388.695000px;}
.y152{bottom:389.235000px;}
.ye6{bottom:389.415000px;}
.y12d{bottom:395.895000px;}
.y107{bottom:396.615000px;}
.y23{bottom:397.515000px;}
.y6a{bottom:402.375000px;}
.y49{bottom:403.095000px;}
.ya4{bottom:405.795000px;}
.y151{bottom:406.515000px;}
.y8c{bottom:409.395000px;}
.y106{bottom:412.095000px;}
.y22{bottom:412.995000px;}
.yca{bottom:418.395000px;}
.y69{bottom:423.075000px;}
.y48{bottom:423.795000px;}
.ya3{bottom:426.495000px;}
.y21{bottom:428.475000px;}
.y8b{bottom:430.095000px;}
.y12c{bottom:430.995000px;}
.ye5{bottom:439.455000px;}
.y150{bottom:441.075000px;}
.y68{bottom:443.775000px;}
.y20{bottom:443.955000px;}
.y47{bottom:444.495000px;}
.y105{bottom:445.035000px;}
.ya2{bottom:447.195000px;}
.y12b{bottom:448.275000px;}
.y8a{bottom:450.795000px;}
.ye0{bottom:455.835000px;}
.y1f{bottom:459.615000px;}
.y104{bottom:461.415000px;}
.y67{bottom:464.475000px;}
.y46{bottom:465.195000px;}
.y12a{bottom:465.555000px;}
.ya1{bottom:467.895000px;}
.yb7{bottom:468.435000px;}
.y89{bottom:471.495000px;}
.y1e{bottom:475.095000px;}
.y14f{bottom:476.175000px;}
.y103{bottom:477.795000px;}
.y45{bottom:485.895000px;}
.ya0{bottom:488.595000px;}
.y1d{bottom:490.575000px;}
.y88{bottom:492.195000px;}
.y14e{bottom:493.455000px;}
.y102{bottom:494.355000px;}
.y129{bottom:502.635000px;}
.y66{bottom:503.175000px;}
.y1c{bottom:506.055000px;}
.y44{bottom:506.595000px;}
.y9f{bottom:509.295000px;}
.y101{bottom:510.735000px;}
.y87{bottom:512.895000px;}
.y1b{bottom:521.715000px;}
.y65{bottom:523.875000px;}
.y100{bottom:527.115000px;}
.y43{bottom:527.295000px;}
.y86{bottom:533.595000px;}
.ydf{bottom:534.135000px;}
.yc6{bottom:534.675000px;}
.y1a{bottom:537.195000px;}
.yff{bottom:543.495000px;}
.y64{bottom:544.575000px;}
.y14d{bottom:546.015000px;}
.y42{bottom:547.995000px;}
.y128{bottom:550.185000px;}
.yde{bottom:550.545000px;}
.y19{bottom:552.705000px;}
.yfe{bottom:560.055000px;}
.y14c{bottom:563.325000px;}
.y63{bottom:565.305000px;}
.ydc{bottom:566.745000px;}
.y18{bottom:568.185000px;}
.y41{bottom:568.725000px;}
.y85{bottom:572.325000px;}
.y127{bottom:573.945000px;}
.yfd{bottom:576.435000px;}
.y14b{bottom:580.605000px;}
.y17{bottom:583.845000px;}
.y62{bottom:586.005000px;}
.ydb{bottom:586.725000px;}
.y9e{bottom:589.425000px;}
.yfc{bottom:591.915000px;}
.y84{bottom:593.025000px;}
.y14a{bottom:597.885000px;}
.y16{bottom:599.325000px;}
.yc4{bottom:600.945000px;}
.y61{bottom:606.705000px;}
.y40{bottom:607.425000px;}
.yfb{bottom:607.620000px;}
.y9d{bottom:610.125000px;}
.y83{bottom:613.725000px;}
.y15{bottom:614.805000px;}
.y126{bottom:618.045000px;}
.yfa{bottom:623.100000px;}
.y60{bottom:627.405000px;}
.y3f{bottom:628.125000px;}
.y9c{bottom:630.825000px;}
.y149{bottom:632.985000px;}
.y82{bottom:634.425000px;}
.yf9{bottom:638.580000px;}
.y13{bottom:641.625000px;}
.y14{bottom:647.565000px;}
.y5f{bottom:648.105000px;}
.y3e{bottom:648.825000px;}
.y148{bottom:650.265000px;}
.ybf{bottom:650.805000px;}
.y9b{bottom:651.525000px;}
.y81{bottom:655.125000px;}
.y125{bottom:665.385000px;}
.yda{bottom:666.825000px;}
.y147{bottom:667.545000px;}
.y5e{bottom:668.805000px;}
.y3d{bottom:669.525000px;}
.y12{bottom:672.585000px;}
.y146{bottom:684.825000px;}
.yd9{bottom:687.525000px;}
.y5d{bottom:689.505000px;}
.y3c{bottom:690.225000px;}
.y9a{bottom:691.665000px;}
.y80{bottom:694.545000px;}
.yd8{bottom:708.225000px;}
.y124{bottom:709.665000px;}
.y3b{bottom:710.925000px;}
.y11{bottom:712.005000px;}
.yb9{bottom:717.225000px;}
.y145{bottom:719.925000px;}
.y5c{bottom:728.205000px;}
.yd7{bottom:728.925000px;}
.y3a{bottom:731.625000px;}
.y7f{bottom:735.945000px;}
.y144{bottom:737.205000px;}
.y5b{bottom:748.905000px;}
.yd6{bottom:749.625000px;}
.y10{bottom:750.165000px;}
.y39{bottom:752.325000px;}
.y123{bottom:753.945000px;}
.y143{bottom:754.485000px;}
.y7e{bottom:756.645000px;}
.y5a{bottom:769.605000px;}
.yd5{bottom:770.325000px;}
.y142{bottom:771.765000px;}
.y122{bottom:774.645000px;}
.y7d{bottom:777.345000px;}
.yb4{bottom:783.465000px;}
.yf{bottom:788.865000px;}
.y141{bottom:789.045000px;}
.y59{bottom:790.305000px;}
.y38{bottom:791.025000px;}
.y121{bottom:795.345000px;}
.y7c{bottom:798.045000px;}
.y58{bottom:811.050000px;}
.y37{bottom:811.770000px;}
.y120{bottom:816.090000px;}
.ye{bottom:816.630000px;}
.y99{bottom:818.790000px;}
.yb3{bottom:820.770000px;}
.y140{bottom:824.370000px;}
.y57{bottom:831.750000px;}
.y36{bottom:832.470000px;}
.y7b{bottom:836.790000px;}
.y98{bottom:839.490000px;}
.yb2{bottom:841.470000px;}
.y13f{bottom:841.650000px;}
.yd{bottom:844.170000px;}
.y56{bottom:852.450000px;}
.y35{bottom:853.170000px;}
.y7a{bottom:857.490000px;}
.yf7{bottom:868.110000px;}
.yb1{bottom:871.170000px;}
.y34{bottom:873.870000px;}
.y13e{bottom:876.750000px;}
.y79{bottom:878.190000px;}
.yc{bottom:890.610000px;}
.y55{bottom:891.870000px;}
.y13d{bottom:894.030000px;}
.y33{bottom:894.570000px;}
.y78{bottom:898.890000px;}
.yf6{bottom:901.770000px;}
.yb0{bottom:912.570000px;}
.y32{bottom:915.270000px;}
.yf4{bottom:917.970000px;}
.y77{bottom:919.590000px;}
.yb{bottom:921.570000px;}
.y13c{bottom:929.310000px;}
.yaf{bottom:933.270000px;}
.y54{bottom:934.710000px;}
.y76{bottom:940.290000px;}
.y13b{bottom:946.590000px;}
.ya{bottom:952.710000px;}
.y31{bottom:955.410000px;}
.y53{bottom:960.990000px;}
.y13a{bottom:963.870000px;}
.y8{bottom:989.610000px;}
.y7{bottom:1006.890000px;}
.y6{bottom:1024.170000px;}
.y5{bottom:1041.450000px;}
.y4{bottom:1058.730000px;}
.y3{bottom:1076.040000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1112.400000px;}
.h9{height:5.163750px;}
.h1a{height:15.480000px;}
.h1c{height:15.660000px;}
.h1f{height:16.596000px;}
.h21{height:20.340000px;}
.he{height:32.273438px;}
.h10{height:32.796000px;}
.h22{height:32.940000px;}
.ha{height:43.246406px;}
.hc{height:48.410156px;}
.hb{height:48.858398px;}
.h16{height:49.140000px;}
.h19{height:49.176000px;}
.h1d{height:49.320000px;}
.h13{height:50.992031px;}
.h11{height:51.464180px;}
.h3{height:53.573906px;}
.h2{height:54.069961px;}
.h4{height:59.439023px;}
.h8{height:64.546875px;}
.h1e{height:64.800000px;}
.hd{height:65.144531px;}
.h14{height:65.520000px;}
.h17{height:65.556000px;}
.h15{height:65.700000px;}
.h7{height:65.884219px;}
.h1{height:69.715898px;}
.h5{height:74.408203px;}
.hf{height:76.219102px;}
.h1b{height:77.580000px;}
.h20{height:81.360000px;}
.h6{height:86.642227px;}
.h18{height:198.930000px;}
.h12{height:314.310000px;}
.h23{height:651.165000px;}
.h0{height:1188.000000px;}
.w3{width:146.016000px;}
.w4{width:178.050000px;}
.w5{width:338.835000px;}
.w6{width:679.830000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x21{left:10.260000px;}
.x20{left:12.060000px;}
.x17{left:13.140000px;}
.xf{left:14.760000px;}
.x1a{left:16.740000px;}
.x15{left:18.000000px;}
.x26{left:20.880000px;}
.x18{left:22.680000px;}
.x1c{left:23.940000px;}
.x1d{left:27.714000px;}
.x14{left:34.380000px;}
.x16{left:36.174000px;}
.x22{left:37.254000px;}
.x1b{left:40.140000px;}
.x24{left:42.294000px;}
.x12{left:45.000000px;}
.x11{left:52.920000px;}
.x1f{left:55.620000px;}
.x1e{left:62.280000px;}
.x25{left:64.254000px;}
.x23{left:66.234000px;}
.x1{left:127.655986px;}
.xe{left:132.695986px;}
.x3{left:142.415986px;}
.x27{left:170.129986px;}
.x7{left:186.329986px;}
.x6{left:209.009986px;}
.x4{left:210.269986px;}
.x5{left:228.269986px;}
.x8{left:232.229986px;}
.x9{left:260.894986px;}
.x10{left:273.675000px;}
.xd{left:343.694986px;}
.xa{left:396.074986px;}
.xc{left:418.394986px;}
.x2{left:428.294986px;}
.x13{left:451.725000px;}
.xb{left:521.204973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.408000pt;}
.ls1e{letter-spacing:-1.024000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.168533pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.016640pt;}
.ls31{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.048640pt;}
.ls23{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154880pt;}
.ls2c{letter-spacing:0.185067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.367467pt;}
.ls2b{letter-spacing:0.471467pt;}
.ls32{letter-spacing:0.544000pt;}
.ls27{letter-spacing:0.545280pt;}
.ls30{letter-spacing:0.592640pt;}
.ls29{letter-spacing:0.624000pt;}
.ls1{letter-spacing:0.871040pt;}
.ls24{letter-spacing:1.263360pt;}
.lse{letter-spacing:1.408000pt;}
.ls15{letter-spacing:2.688000pt;}
.ls1b{letter-spacing:3.434667pt;}
.ls2e{letter-spacing:3.792640pt;}
.ls17{letter-spacing:4.608000pt;}
.lsb{letter-spacing:5.248000pt;}
.lsc{letter-spacing:6.528000pt;}
.ls2f{letter-spacing:7.099307pt;}
.ls25{letter-spacing:9.066667pt;}
.ls19{letter-spacing:9.088000pt;}
.ls1c{letter-spacing:13.674667pt;}
.ls18{letter-spacing:16.768000pt;}
.ls1d{letter-spacing:19.328000pt;}
.ls16{letter-spacing:19.968000pt;}
.ls14{letter-spacing:22.528000pt;}
.lsd{letter-spacing:29.568000pt;}
.ls1a{letter-spacing:32.128000pt;}
.ls20{letter-spacing:42.314667pt;}
.ls22{letter-spacing:42.976000pt;}
.ls21{letter-spacing:60.896000pt;}
.ws14{word-spacing:-48.000000pt;}
.ws16{word-spacing:-24.287360pt;}
.ws18{word-spacing:-24.134827pt;}
.ws4{word-spacing:-24.000000pt;}
.ws19{word-spacing:-23.848427pt;}
.ws17{word-spacing:-23.680000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws1{word-spacing:-23.646720pt;}
.ws15{word-spacing:-23.494827pt;}
.wsc{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.ws1a{word-spacing:-17.600000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.152000pt;}
.wsf{word-spacing:-17.024000pt;}
.ws12{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.384000pt;}
.ws1c{word-spacing:-15.311360pt;}
.ws1d{word-spacing:-15.134827pt;}
.ws1b{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.672427pt;}
.ws13{word-spacing:-14.104320pt;}
.ws9{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.344000pt;}
.wsa{word-spacing:0.000000pt;}
._22{margin-left:-18.570667pt;}
._1b{margin-left:-4.316587pt;}
._d{margin-left:-3.321600pt;}
._c{margin-left:-2.016000pt;}
._1{margin-left:-1.011840pt;}
._0{width:1.593600pt;}
._2{width:2.533333pt;}
._3{width:3.512960pt;}
._10{width:4.477013pt;}
._5{width:5.523840pt;}
._4{width:6.576000pt;}
._6{width:7.732053pt;}
._16{width:8.654507pt;}
._8{width:9.552000pt;}
._9{width:10.596480pt;}
._1e{width:11.633067pt;}
._17{width:12.913067pt;}
._15{width:14.129067pt;}
._7{width:15.312000pt;}
._b{width:16.320000pt;}
._24{width:18.069760pt;}
._11{width:19.584000pt;}
._f{width:21.290667pt;}
._e{width:22.272000pt;}
._18{width:23.210667pt;}
._1d{width:24.422400pt;}
._1c{width:25.386667pt;}
._21{width:26.346667pt;}
._23{width:27.514240pt;}
._12{width:28.650667pt;}
._13{width:30.325333pt;}
._20{width:31.872000pt;}
._1f{width:32.778667pt;}
._27{width:33.696000pt;}
._28{width:42.048000pt;}
._14{width:45.898667pt;}
._1a{width:49.216000pt;}
._19{width:50.240000pt;}
._25{width:53.340800pt;}
._37{width:55.406720pt;}
._36{width:56.360320pt;}
._26{width:60.576000pt;}
._35{width:63.797120pt;}
._31{width:76.203947pt;}
._30{width:77.714560pt;}
._2b{width:110.556160pt;}
._2a{width:111.445760pt;}
._2f{width:140.736853pt;}
._33{width:188.426880pt;}
._34{width:189.744640pt;}
._32{width:190.690560pt;}
._2e{width:222.732160pt;}
._2d{width:223.741440pt;}
._29{width:401.905920pt;}
._a{width:750.346667pt;}
._2c{width:835.099520pt;}
.fs5{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:2.560000pt;}
.yb6{bottom:2.720000pt;}
.yec{bottom:3.560000pt;}
.yf5{bottom:6.880000pt;}
.ybc{bottom:9.920000pt;}
.yc5{bottom:10.080000pt;}
.ye4{bottom:16.320000pt;}
.y11d{bottom:16.480000pt;}
.yf3{bottom:17.274667pt;}
.yb5{bottom:17.280000pt;}
.yc8{bottom:17.306667pt;}
.yc3{bottom:17.440000pt;}
.ybb{bottom:24.480000pt;}
.yc0{bottom:24.640000pt;}
.ye3{bottom:30.240000pt;}
.yea{bottom:30.880000pt;}
.yf2{bottom:31.034667pt;}
.ybe{bottom:31.840000pt;}
.yc7{bottom:31.866667pt;}
.yd2{bottom:31.880000pt;}
.yc2{bottom:32.000000pt;}
.yba{bottom:39.040000pt;}
.ycb{bottom:43.680000pt;}
.ye2{bottom:44.000000pt;}
.yf1{bottom:45.594667pt;}
.ye9{bottom:45.600000pt;}
.ybd{bottom:46.400000pt;}
.yc9{bottom:46.426667pt;}
.yc1{bottom:46.560000pt;}
.ye1{bottom:57.760000pt;}
.y11c{bottom:58.560000pt;}
.yf0{bottom:60.314667pt;}
.yce{bottom:69.320000pt;}
.y9{bottom:69.632000pt;}
.y11b{bottom:72.520000pt;}
.ycd{bottom:83.880000pt;}
.y11a{bottom:86.280000pt;}
.ycc{bottom:98.440000pt;}
.y119{bottom:100.040000pt;}
.y118{bottom:114.600000pt;}
.y30{bottom:115.872000pt;}
.yef{bottom:125.792000pt;}
.yb8{bottom:127.866667pt;}
.y117{bottom:128.520000pt;}
.y97{bottom:129.472000pt;}
.y2f{bottom:129.632000pt;}
.y139{bottom:135.866667pt;}
.y75{bottom:139.226667pt;}
.y116{bottom:142.280000pt;}
.yae{bottom:142.426667pt;}
.y2e{bottom:143.386667pt;}
.yd4{bottom:144.346667pt;}
.y15b{bottom:144.666667pt;}
.y2d{bottom:147.386667pt;}
.y96{bottom:147.866667pt;}
.y11f{bottom:148.986667pt;}
.y138{bottom:151.226667pt;}
.y115{bottom:156.040000pt;}
.y74{bottom:157.626667pt;}
.y2c{bottom:158.586667pt;}
.y15a{bottom:160.026667pt;}
.y52{bottom:160.826667pt;}
.y137{bottom:166.426667pt;}
.y114{bottom:170.600000pt;}
.y159{bottom:175.386667pt;}
.y73{bottom:176.026667pt;}
.y11e{bottom:176.506667pt;}
.yd3{bottom:178.746667pt;}
.yad{bottom:179.226667pt;}
.y136{bottom:181.786667pt;}
.y95{bottom:182.266667pt;}
.y113{bottom:184.520000pt;}
.yf8{bottom:192.186667pt;}
.y72{bottom:194.426667pt;}
.y51{bottom:195.226667pt;}
.yac{bottom:197.626667pt;}
.y112{bottom:198.280000pt;}
.yee{bottom:198.746667pt;}
.y94{bottom:200.666667pt;}
.y158{bottom:206.586667pt;}
.y111{bottom:212.040000pt;}
.y71{bottom:212.826667pt;}
.y135{bottom:213.146667pt;}
.yed{bottom:213.306667pt;}
.y50{bottom:213.626667pt;}
.yab{bottom:216.026667pt;}
.y93{bottom:219.066667pt;}
.y2b{bottom:220.666667pt;}
.y157{bottom:221.946667pt;}
.y110{bottom:226.760000pt;}
.y134{bottom:228.506667pt;}
.y4f{bottom:232.026667pt;}
.yaa{bottom:234.426667pt;}
.y156{bottom:237.306667pt;}
.y92{bottom:237.466667pt;}
.yd1{bottom:238.906667pt;}
.y2a{bottom:239.066667pt;}
.y10f{bottom:241.320000pt;}
.y133{bottom:243.866667pt;}
.y70{bottom:247.226667pt;}
.y4e{bottom:250.426667pt;}
.ya9{bottom:252.826667pt;}
.y10e{bottom:255.080000pt;}
.y91{bottom:255.866667pt;}
.y29{bottom:257.466667pt;}
.yeb{bottom:257.946667pt;}
.y132{bottom:259.266667pt;}
.y6f{bottom:265.666667pt;}
.y155{bottom:268.706667pt;}
.y10d{bottom:268.840000pt;}
.y4d{bottom:268.866667pt;}
.ya8{bottom:271.266667pt;}
.ye8{bottom:273.506667pt;}
.y90{bottom:274.306667pt;}
.y28{bottom:275.906667pt;}
.yd0{bottom:283.266667pt;}
.y10c{bottom:283.560000pt;}
.y6e{bottom:284.066667pt;}
.y4c{bottom:287.266667pt;}
.ya7{bottom:289.506667pt;}
.y131{bottom:290.466667pt;}
.y8f{bottom:292.706667pt;}
.y27{bottom:294.306667pt;}
.y10b{bottom:297.346667pt;}
.y154{bottom:299.426667pt;}
.y6d{bottom:302.466667pt;}
.y4b{bottom:305.506667pt;}
.y130{bottom:305.826667pt;}
.y10a{bottom:311.106667pt;}
.y26{bottom:311.906667pt;}
.y153{bottom:314.626667pt;}
.y6c{bottom:320.866667pt;}
.y12f{bottom:321.186667pt;}
.ya6{bottom:323.906667pt;}
.y109{bottom:324.866667pt;}
.y25{bottom:325.666667pt;}
.y8e{bottom:327.106667pt;}
.ycf{bottom:327.586667pt;}
.ye7{bottom:331.746667pt;}
.y12e{bottom:336.546667pt;}
.y108{bottom:338.786667pt;}
.y6b{bottom:339.266667pt;}
.y24{bottom:339.586667pt;}
.y4a{bottom:339.906667pt;}
.ya5{bottom:342.306667pt;}
.y8d{bottom:345.506667pt;}
.y152{bottom:345.986667pt;}
.ye6{bottom:346.146667pt;}
.y12d{bottom:351.906667pt;}
.y107{bottom:352.546667pt;}
.y23{bottom:353.346667pt;}
.y6a{bottom:357.666667pt;}
.y49{bottom:358.306667pt;}
.ya4{bottom:360.706667pt;}
.y151{bottom:361.346667pt;}
.y8c{bottom:363.906667pt;}
.y106{bottom:366.306667pt;}
.y22{bottom:367.106667pt;}
.yca{bottom:371.906667pt;}
.y69{bottom:376.066667pt;}
.y48{bottom:376.706667pt;}
.ya3{bottom:379.106667pt;}
.y21{bottom:380.866667pt;}
.y8b{bottom:382.306667pt;}
.y12c{bottom:383.106667pt;}
.ye5{bottom:390.626667pt;}
.y150{bottom:392.066667pt;}
.y68{bottom:394.466667pt;}
.y20{bottom:394.626667pt;}
.y47{bottom:395.106667pt;}
.y105{bottom:395.586667pt;}
.ya2{bottom:397.506667pt;}
.y12b{bottom:398.466667pt;}
.y8a{bottom:400.706667pt;}
.ye0{bottom:405.186667pt;}
.y1f{bottom:408.546667pt;}
.y104{bottom:410.146667pt;}
.y67{bottom:412.866667pt;}
.y46{bottom:413.506667pt;}
.y12a{bottom:413.826667pt;}
.ya1{bottom:415.906667pt;}
.yb7{bottom:416.386667pt;}
.y89{bottom:419.106667pt;}
.y1e{bottom:422.306667pt;}
.y14f{bottom:423.266667pt;}
.y103{bottom:424.706667pt;}
.y45{bottom:431.906667pt;}
.ya0{bottom:434.306667pt;}
.y1d{bottom:436.066667pt;}
.y88{bottom:437.506667pt;}
.y14e{bottom:438.626667pt;}
.y102{bottom:439.426667pt;}
.y129{bottom:446.786667pt;}
.y66{bottom:447.266667pt;}
.y1c{bottom:449.826667pt;}
.y44{bottom:450.306667pt;}
.y9f{bottom:452.706667pt;}
.y101{bottom:453.986667pt;}
.y87{bottom:455.906667pt;}
.y1b{bottom:463.746667pt;}
.y65{bottom:465.666667pt;}
.y100{bottom:468.546667pt;}
.y43{bottom:468.706667pt;}
.y86{bottom:474.306667pt;}
.ydf{bottom:474.786667pt;}
.yc6{bottom:475.266667pt;}
.y1a{bottom:477.506667pt;}
.yff{bottom:483.106667pt;}
.y64{bottom:484.066667pt;}
.y14d{bottom:485.346667pt;}
.y42{bottom:487.106667pt;}
.y128{bottom:489.053333pt;}
.yde{bottom:489.373333pt;}
.y19{bottom:491.293333pt;}
.yfe{bottom:497.826667pt;}
.y14c{bottom:500.733333pt;}
.y63{bottom:502.493333pt;}
.ydc{bottom:503.773333pt;}
.y18{bottom:505.053333pt;}
.y41{bottom:505.533333pt;}
.y85{bottom:508.733333pt;}
.y127{bottom:510.173333pt;}
.yfd{bottom:512.386667pt;}
.y14b{bottom:516.093333pt;}
.y17{bottom:518.973333pt;}
.y62{bottom:520.893333pt;}
.ydb{bottom:521.533333pt;}
.y9e{bottom:523.933333pt;}
.yfc{bottom:526.146667pt;}
.y84{bottom:527.133333pt;}
.y14a{bottom:531.453333pt;}
.y16{bottom:532.733333pt;}
.yc4{bottom:534.173333pt;}
.y61{bottom:539.293333pt;}
.y40{bottom:539.933333pt;}
.yfb{bottom:540.106667pt;}
.y9d{bottom:542.333333pt;}
.y83{bottom:545.533333pt;}
.y15{bottom:546.493333pt;}
.y126{bottom:549.373333pt;}
.yfa{bottom:553.866667pt;}
.y60{bottom:557.693333pt;}
.y3f{bottom:558.333333pt;}
.y9c{bottom:560.733333pt;}
.y149{bottom:562.653333pt;}
.y82{bottom:563.933333pt;}
.yf9{bottom:567.626667pt;}
.y13{bottom:570.333333pt;}
.y14{bottom:575.613333pt;}
.y5f{bottom:576.093333pt;}
.y3e{bottom:576.733333pt;}
.y148{bottom:578.013333pt;}
.ybf{bottom:578.493333pt;}
.y9b{bottom:579.133333pt;}
.y81{bottom:582.333333pt;}
.y125{bottom:591.453333pt;}
.yda{bottom:592.733333pt;}
.y147{bottom:593.373333pt;}
.y5e{bottom:594.493333pt;}
.y3d{bottom:595.133333pt;}
.y12{bottom:597.853333pt;}
.y146{bottom:608.733333pt;}
.yd9{bottom:611.133333pt;}
.y5d{bottom:612.893333pt;}
.y3c{bottom:613.533333pt;}
.y9a{bottom:614.813333pt;}
.y80{bottom:617.373333pt;}
.yd8{bottom:629.533333pt;}
.y124{bottom:630.813333pt;}
.y3b{bottom:631.933333pt;}
.y11{bottom:632.893333pt;}
.yb9{bottom:637.533333pt;}
.y145{bottom:639.933333pt;}
.y5c{bottom:647.293333pt;}
.yd7{bottom:647.933333pt;}
.y3a{bottom:650.333333pt;}
.y7f{bottom:654.173333pt;}
.y144{bottom:655.293333pt;}
.y5b{bottom:665.693333pt;}
.yd6{bottom:666.333333pt;}
.y10{bottom:666.813333pt;}
.y39{bottom:668.733333pt;}
.y123{bottom:670.173333pt;}
.y143{bottom:670.653333pt;}
.y7e{bottom:672.573333pt;}
.y5a{bottom:684.093333pt;}
.yd5{bottom:684.733333pt;}
.y142{bottom:686.013333pt;}
.y122{bottom:688.573333pt;}
.y7d{bottom:690.973333pt;}
.yb4{bottom:696.413333pt;}
.yf{bottom:701.213333pt;}
.y141{bottom:701.373333pt;}
.y59{bottom:702.493333pt;}
.y38{bottom:703.133333pt;}
.y121{bottom:706.973333pt;}
.y7c{bottom:709.373333pt;}
.y58{bottom:720.933333pt;}
.y37{bottom:721.573333pt;}
.y120{bottom:725.413333pt;}
.ye{bottom:725.893333pt;}
.y99{bottom:727.813333pt;}
.yb3{bottom:729.573333pt;}
.y140{bottom:732.773333pt;}
.y57{bottom:739.333333pt;}
.y36{bottom:739.973333pt;}
.y7b{bottom:743.813333pt;}
.y98{bottom:746.213333pt;}
.yb2{bottom:747.973333pt;}
.y13f{bottom:748.133333pt;}
.yd{bottom:750.373333pt;}
.y56{bottom:757.733333pt;}
.y35{bottom:758.373333pt;}
.y7a{bottom:762.213333pt;}
.yf7{bottom:771.653333pt;}
.yb1{bottom:774.373333pt;}
.y34{bottom:776.773333pt;}
.y13e{bottom:779.333333pt;}
.y79{bottom:780.613333pt;}
.yc{bottom:791.653333pt;}
.y55{bottom:792.773333pt;}
.y13d{bottom:794.693333pt;}
.y33{bottom:795.173333pt;}
.y78{bottom:799.013333pt;}
.yf6{bottom:801.573333pt;}
.yb0{bottom:811.173333pt;}
.y32{bottom:813.573333pt;}
.yf4{bottom:815.973333pt;}
.y77{bottom:817.413333pt;}
.yb{bottom:819.173333pt;}
.y13c{bottom:826.053333pt;}
.yaf{bottom:829.573333pt;}
.y54{bottom:830.853333pt;}
.y76{bottom:835.813333pt;}
.y13b{bottom:841.413333pt;}
.ya{bottom:846.853333pt;}
.y31{bottom:849.253333pt;}
.y53{bottom:854.213333pt;}
.y13a{bottom:856.773333pt;}
.y8{bottom:879.653333pt;}
.y7{bottom:895.013333pt;}
.y6{bottom:910.373333pt;}
.y5{bottom:925.733333pt;}
.y4{bottom:941.093333pt;}
.y3{bottom:956.480000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:988.800000pt;}
.h9{height:4.590000pt;}
.h1a{height:13.760000pt;}
.h1c{height:13.920000pt;}
.h1f{height:14.752000pt;}
.h21{height:18.080000pt;}
.he{height:28.687500pt;}
.h10{height:29.152000pt;}
.h22{height:29.280000pt;}
.ha{height:38.441250pt;}
.hc{height:43.031250pt;}
.hb{height:43.429688pt;}
.h16{height:43.680000pt;}
.h19{height:43.712000pt;}
.h1d{height:43.840000pt;}
.h13{height:45.326250pt;}
.h11{height:45.745937pt;}
.h3{height:47.621250pt;}
.h2{height:48.062188pt;}
.h4{height:52.834688pt;}
.h8{height:57.375000pt;}
.h1e{height:57.600000pt;}
.hd{height:57.906250pt;}
.h14{height:58.240000pt;}
.h17{height:58.272000pt;}
.h15{height:58.400000pt;}
.h7{height:58.563750pt;}
.h1{height:61.969687pt;}
.h5{height:66.140625pt;}
.hf{height:67.750312pt;}
.h1b{height:68.960000pt;}
.h20{height:72.320000pt;}
.h6{height:77.015312pt;}
.h18{height:176.826667pt;}
.h12{height:279.386667pt;}
.h23{height:578.813333pt;}
.h0{height:1056.000000pt;}
.w3{width:129.792000pt;}
.w4{width:158.266667pt;}
.w5{width:301.186667pt;}
.w6{width:604.293333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x21{left:9.120000pt;}
.x20{left:10.720000pt;}
.x17{left:11.680000pt;}
.xf{left:13.120000pt;}
.x1a{left:14.880000pt;}
.x15{left:16.000000pt;}
.x26{left:18.560000pt;}
.x18{left:20.160000pt;}
.x1c{left:21.280000pt;}
.x1d{left:24.634667pt;}
.x14{left:30.560000pt;}
.x16{left:32.154667pt;}
.x22{left:33.114667pt;}
.x1b{left:35.680000pt;}
.x24{left:37.594667pt;}
.x12{left:40.000000pt;}
.x11{left:47.040000pt;}
.x1f{left:49.440000pt;}
.x1e{left:55.360000pt;}
.x25{left:57.114667pt;}
.x23{left:58.874667pt;}
.x1{left:113.471988pt;}
.xe{left:117.951988pt;}
.x3{left:126.591988pt;}
.x27{left:151.226655pt;}
.x7{left:165.626655pt;}
.x6{left:185.786655pt;}
.x4{left:186.906655pt;}
.x5{left:202.906655pt;}
.x8{left:206.426655pt;}
.x9{left:231.906655pt;}
.x10{left:243.266667pt;}
.xd{left:305.506655pt;}
.xa{left:352.066655pt;}
.xc{left:371.906655pt;}
.x2{left:380.706655pt;}
.x13{left:401.533333pt;}
.xb{left:463.293309pt;}
}




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