
    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_a3c9322d3503e76d5d94e5b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928711;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_620354a98b0c557d674a9d13.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_21df5266d28d99e4bb18688c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928711;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_6923a5675325e92afdb434f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_34a4546dff835ee0df40d71a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_8a8aea3e2ebf99708e1f9339.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0090bce09a030842e872b183.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_f6b1a3648f02dead64225945.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_027fd1c6785dd2eb14ffbd4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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:ffb;src:url('chunks/assets/font_629e0e948bcb06e5f3f3459b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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:ffc;src:url('chunks/assets/font_626ce27c0d93d25e3ee24f90.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-33.120000px;}
.v3{vertical-align:-21.060000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.060000px;}
.v2{vertical-align:38.880000px;}
.ls18{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.253200px;}
.ls13{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.589760px;}
.lsa{letter-spacing:1.674000px;}
.ls1{letter-spacing:1.746000px;}
.ls2{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.100000px;}
.lsb{letter-spacing:2.394000px;}
.ls1d{letter-spacing:40.986720px;}
.ls1b{letter-spacing:56.826720px;}
.ls14{letter-spacing:64.026720px;}
.ls1a{letter-spacing:90.666720px;}
.ls19{letter-spacing:91.386720px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.665280px;}
.ws2{word-spacing:-18.359280px;}
.ws1{word-spacing:-16.613280px;}
.ws8{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.605760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.ws10{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.733600px;}
.ws11{word-spacing:-14.686800px;}
.wsf{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.220000px;}
.ws15{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.284000px;}
.wsa{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.720000px;}
.wse{word-spacing:0.000000px;}
._8{margin-left:-6.014160px;}
._7{margin-left:-4.858080px;}
._3{margin-left:-3.049200px;}
._12{margin-left:-2.045520px;}
._2{margin-left:-1.034640px;}
._0{width:1.195200px;}
._1{width:2.450160px;}
._4{width:3.742320px;}
._9{width:5.324880px;}
._b{width:7.108560px;}
._a{width:8.208000px;}
._11{width:9.325680px;}
._c{width:10.416960px;}
._d{width:11.757600px;}
._13{width:13.256640px;}
._15{width:17.533440px;}
._14{width:18.539280px;}
._e{width:19.601280px;}
._18{width:25.995600px;}
._19{width:27.250560px;}
._1a{width:28.538880px;}
._10{width:29.681040px;}
._6{width:43.070640px;}
._f{width:59.842560px;}
._16{width:116.352720px;}
._17{width:117.660000px;}
._5{width:201.056880px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fs0{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs7{font-size:108.000000px;}
.fs5{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:1.440000px;}
.yaa{bottom:1.800000px;}
.y7c{bottom:1.980000px;}
.y58{bottom:3.240000px;}
.ybf{bottom:4.500000px;}
.ybd{bottom:4.680000px;}
.ya7{bottom:6.840000px;}
.ya9{bottom:11.520000px;}
.y53{bottom:11.700000px;}
.y8{bottom:25.560000px;}
.y7{bottom:45.900000px;}
.y79{bottom:91.836000px;}
.yfb{bottom:93.276000px;}
.y3e{bottom:94.536000px;}
.y94{bottom:103.536000px;}
.yc3{bottom:108.756000px;}
.yfa{bottom:110.376000px;}
.y3d{bottom:111.636000px;}
.y78{bottom:123.696000px;}
.yc2{bottom:127.296000px;}
.yf9{bottom:127.656000px;}
.y3c{bottom:128.916000px;}
.y93{bottom:137.376000px;}
.yc1{bottom:142.056000px;}
.y77{bottom:142.776000px;}
.yf8{bottom:144.936000px;}
.y3b{bottom:146.196000px;}
.y92{bottom:156.450000px;}
.y76{bottom:160.050000px;}
.yc0{bottom:161.490000px;}
.yf7{bottom:162.210000px;}
.y3a{bottom:163.470000px;}
.y91{bottom:174.810000px;}
.y75{bottom:177.330000px;}
.yf6{bottom:179.490000px;}
.y39{bottom:180.750000px;}
.ybe{bottom:180.930000px;}
.y90{bottom:192.270000px;}
.y74{bottom:194.610000px;}
.yf5{bottom:196.770000px;}
.y38{bottom:198.030000px;}
.ybc{bottom:200.190000px;}
.y8f{bottom:209.550000px;}
.y73{bottom:211.890000px;}
.yf4{bottom:213.870000px;}
.y37{bottom:215.130000px;}
.ybb{bottom:220.890000px;}
.y8e{bottom:226.830000px;}
.y72{bottom:228.990000px;}
.yba{bottom:229.710000px;}
.yf3{bottom:231.150000px;}
.y36{bottom:232.410000px;}
.y8d{bottom:243.930000px;}
.y71{bottom:246.270000px;}
.yf2{bottom:248.430000px;}
.y35{bottom:249.690000px;}
.yb9{bottom:260.310000px;}
.y8c{bottom:261.210000px;}
.y70{bottom:263.550000px;}
.yf1{bottom:266.790000px;}
.y34{bottom:266.970000px;}
.y8b{bottom:278.490000px;}
.yb8{bottom:279.030000px;}
.y6f{bottom:280.830000px;}
.yf0{bottom:284.070000px;}
.y33{bottom:284.250000px;}
.y127{bottom:290.730000px;}
.y8a{bottom:295.770000px;}
.yb7{bottom:297.570000px;}
.y6e{bottom:298.110000px;}
.y32{bottom:301.530000px;}
.yef{bottom:302.430000px;}
.y126{bottom:308.010000px;}
.y89{bottom:313.050000px;}
.y6d{bottom:315.390000px;}
.y31{bottom:318.630000px;}
.yee{bottom:319.530000px;}
.y125{bottom:325.290000px;}
.yb6{bottom:328.170000px;}
.y88{bottom:330.330000px;}
.y6c{bottom:332.490000px;}
.y30{bottom:335.910000px;}
.yed{bottom:337.935000px;}
.y124{bottom:342.435000px;}
.yb5{bottom:346.935000px;}
.y87{bottom:347.475000px;}
.y6b{bottom:349.815000px;}
.y2f{bottom:353.235000px;}
.yec{bottom:355.215000px;}
.y123{bottom:359.715000px;}
.y86{bottom:364.755000px;}
.yb4{bottom:366.555000px;}
.y6a{bottom:367.095000px;}
.y2e{bottom:370.515000px;}
.yeb{bottom:373.575000px;}
.y122{bottom:376.995000px;}
.y85{bottom:382.035000px;}
.y69{bottom:384.375000px;}
.yb3{bottom:385.095000px;}
.y2d{bottom:387.795000px;}
.yea{bottom:390.855000px;}
.y121{bottom:394.275000px;}
.y84{bottom:399.315000px;}
.y68{bottom:401.655000px;}
.y2c{bottom:405.075000px;}
.ye9{bottom:407.955000px;}
.y120{bottom:411.555000px;}
.yb2{bottom:416.775000px;}
.y67{bottom:418.935000px;}
.y2b{bottom:422.175000px;}
.ye8{bottom:425.235000px;}
.y11f{bottom:428.655000px;}
.y83{bottom:429.735000px;}
.yb1{bottom:435.495000px;}
.y66{bottom:436.035000px;}
.y2a{bottom:439.455000px;}
.ye7{bottom:442.515000px;}
.y11e{bottom:445.935000px;}
.y82{bottom:448.275000px;}
.y65{bottom:453.315000px;}
.yb0{bottom:454.035000px;}
.y29{bottom:456.735000px;}
.ye6{bottom:459.795000px;}
.y11d{bottom:463.215000px;}
.y81{bottom:466.995000px;}
.y64{bottom:470.595000px;}
.yaf{bottom:472.755000px;}
.y28{bottom:474.015000px;}
.ye5{bottom:477.075000px;}
.y11c{bottom:480.495000px;}
.y80{bottom:485.535000px;}
.y63{bottom:487.875000px;}
.yae{bottom:490.215000px;}
.y27{bottom:491.295000px;}
.ye4{bottom:494.355000px;}
.y11b{bottom:497.775000px;}
.y7f{bottom:504.075000px;}
.y62{bottom:505.155000px;}
.yad{bottom:507.495000px;}
.y26{bottom:508.575000px;}
.ye3{bottom:511.455000px;}
.y11a{bottom:515.055000px;}
.y7e{bottom:518.115000px;}
.y61{bottom:522.435000px;}
.yac{bottom:524.595000px;}
.y25{bottom:525.675000px;}
.ye2{bottom:528.735000px;}
.y119{bottom:532.155000px;}
.y60{bottom:539.535000px;}
.y7d{bottom:542.415000px;}
.y24{bottom:542.955000px;}
.yab{bottom:543.135000px;}
.ye1{bottom:546.015000px;}
.y118{bottom:549.435000px;}
.y5f{bottom:556.815000px;}
.ya8{bottom:557.175000px;}
.y23{bottom:560.235000px;}
.ye0{bottom:563.295000px;}
.y117{bottom:566.715000px;}
.y5e{bottom:574.095000px;}
.y22{bottom:577.515000px;}
.ya6{bottom:581.295000px;}
.ydf{bottom:581.835000px;}
.y116{bottom:583.995000px;}
.y5d{bottom:591.375000px;}
.y21{bottom:594.795000px;}
.yde{bottom:600.555000px;}
.y115{bottom:601.275000px;}
.y5c{bottom:608.685000px;}
.y20{bottom:612.105000px;}
.y114{bottom:618.585000px;}
.ydd{bottom:619.125000px;}
.y5b{bottom:623.265000px;}
.y1f{bottom:629.205000px;}
.y113{bottom:635.685000px;}
.ydc{bottom:637.665000px;}
.y5a{bottom:641.265000px;}
.y1e{bottom:646.305000px;}
.y112{bottom:652.965000px;}
.ydb{bottom:656.385000px;}
.y59{bottom:659.265000px;}
.y1d{bottom:663.585000px;}
.y111{bottom:670.245000px;}
.yda{bottom:674.925000px;}
.y57{bottom:677.265000px;}
.y1c{bottom:680.865000px;}
.y110{bottom:687.525000px;}
.yd9{bottom:693.645000px;}
.y1b{bottom:697.785000px;}
.y56{bottom:699.765000px;}
.y10f{bottom:704.805000px;}
.y1a{bottom:712.005000px;}
.yd8{bottom:712.185000px;}
.y55{bottom:718.485000px;}
.y19{bottom:721.905000px;}
.yd7{bottom:730.725000px;}
.y54{bottom:733.245000px;}
.y18{bottom:737.385000px;}
.y10e{bottom:739.185000px;}
.yd6{bottom:749.445000px;}
.y17{bottom:753.045000px;}
.y10d{bottom:756.465000px;}
.y52{bottom:759.885000px;}
.ya5{bottom:766.725000px;}
.yd5{bottom:767.985000px;}
.y16{bottom:768.525000px;}
.y10c{bottom:773.745000px;}
.y15{bottom:784.005000px;}
.y7a{bottom:784.185000px;}
.ya4{bottom:785.265000px;}
.yd4{bottom:786.705000px;}
.y10b{bottom:791.025000px;}
.y14{bottom:799.485000px;}
.y51{bottom:803.085000px;}
.ya3{bottom:803.985000px;}
.yd3{bottom:805.245000px;}
.y10a{bottom:808.305000px;}
.y13{bottom:815.145000px;}
.y50{bottom:820.545000px;}
.ya2{bottom:822.525000px;}
.yd2{bottom:823.785000px;}
.y109{bottom:825.405000px;}
.y12{bottom:831.345000px;}
.y4f{bottom:837.645000px;}
.ya1{bottom:841.245000px;}
.yd1{bottom:842.505000px;}
.y108{bottom:842.685000px;}
.y4e{bottom:854.925000px;}
.y11{bottom:855.285000px;}
.ya0{bottom:859.785000px;}
.y107{bottom:859.965000px;}
.yd0{bottom:861.045000px;}
.y4d{bottom:872.250000px;}
.y10{bottom:873.510000px;}
.y106{bottom:877.290000px;}
.y9f{bottom:878.550000px;}
.ycf{bottom:879.810000px;}
.yf{bottom:886.290000px;}
.y4c{bottom:889.530000px;}
.yce{bottom:894.570000px;}
.y9e{bottom:897.090000px;}
.y4b{bottom:906.810000px;}
.ye{bottom:909.330000px;}
.y105{bottom:911.850000px;}
.ycd{bottom:913.830000px;}
.y9d{bottom:915.630000px;}
.y4a{bottom:924.090000px;}
.y104{bottom:928.950000px;}
.ycc{bottom:933.270000px;}
.yd{bottom:933.990000px;}
.y49{bottom:941.190000px;}
.y9c{bottom:946.230000px;}
.ycb{bottom:952.710000px;}
.y48{bottom:958.470000px;}
.y103{bottom:963.510000px;}
.y9b{bottom:964.950000px;}
.yc{bottom:967.470000px;}
.yca{bottom:971.970000px;}
.y47{bottom:974.670000px;}
.y102{bottom:980.070000px;}
.y9a{bottom:983.490000px;}
.y46{bottom:987.630000px;}
.yc9{bottom:991.410000px;}
.y101{bottom:994.650000px;}
.y99{bottom:1002.210000px;}
.yb{bottom:1004.730000px;}
.y45{bottom:1005.090000px;}
.y100{bottom:1011.750000px;}
.yc8{bottom:1015.350000px;}
.y98{bottom:1020.750000px;}
.y44{bottom:1022.370000px;}
.yff{bottom:1028.310000px;}
.yc7{bottom:1033.890000px;}
.y97{bottom:1039.290000px;}
.y43{bottom:1039.650000px;}
.yfe{bottom:1042.890000px;}
.ya{bottom:1046.670000px;}
.yc6{bottom:1052.610000px;}
.y42{bottom:1056.750000px;}
.yfd{bottom:1060.170000px;}
.yc5{bottom:1071.150000px;}
.y41{bottom:1074.030000px;}
.yfc{bottom:1076.550000px;}
.y9{bottom:1088.790000px;}
.yc4{bottom:1089.690000px;}
.y96{bottom:1091.130000px;}
.y40{bottom:1091.310000px;}
.y95{bottom:1108.410000px;}
.y3f{bottom:1108.590000px;}
.y6{bottom:1126.950000px;}
.y5{bottom:1147.140000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1187.280000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1223.820000px;}
.h1b{height:12.568359px;}
.h17{height:16.590234px;}
.h14{height:17.280000px;}
.h1d{height:18.540000px;}
.h1c{height:18.720000px;}
.h10{height:21.114844px;}
.h2{height:22.030313px;}
.h19{height:24.120000px;}
.h16{height:24.300000px;}
.ha{height:25.136719px;}
.h13{height:25.740000px;}
.hc{height:29.158594px;}
.h1f{height:33.683203px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h12{height:41.726953px;}
.h11{height:42.164648px;}
.h1a{height:43.506914px;}
.h1e{height:43.681992px;}
.hb{height:44.240625px;}
.h3{height:44.936719px;}
.h9{height:45.823359px;}
.hd{height:46.251562px;}
.h5{height:48.774375px;}
.h8{height:54.022500px;}
.h4{height:63.070312px;}
.h6{height:65.884219px;}
.h7{height:105.665625px;}
.h18{height:168.870000px;}
.h15{height:217.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:34.920000px;}
.w7{width:42.300000px;}
.w5{width:42.480000px;}
.w6{width:42.516000px;}
.w1a{width:49.680000px;}
.w9{width:63.756000px;}
.w3{width:77.976000px;}
.w8{width:82.116000px;}
.wb{width:86.796000px;}
.wc{width:93.240000px;}
.wa{width:105.840000px;}
.w15{width:114.840000px;}
.w19{width:132.516000px;}
.w17{width:144.216000px;}
.w16{width:162.030000px;}
.wf{width:174.810000px;}
.wd{width:178.200000px;}
.w12{width:178.230000px;}
.we{width:179.310000px;}
.w10{width:182.730000px;}
.w1b{width:209.010000px;}
.w18{width:218.910000px;}
.w14{width:232.230000px;}
.w11{width:267.330000px;}
.w13{width:269.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.280000px;}
.x18{left:9.900000px;}
.x13{left:12.240000px;}
.x1b{left:13.320000px;}
.x1f{left:14.940000px;}
.x43{left:19.080000px;}
.x41{left:20.160000px;}
.x25{left:23.985000px;}
.x21{left:33.480000px;}
.x27{left:37.080000px;}
.x26{left:45.360000px;}
.x44{left:49.320000px;}
.x45{left:50.610000px;}
.x1{left:63.899987px;}
.xd{left:68.759987px;}
.x8{left:73.619987px;}
.x47{left:74.700000px;}
.x50{left:78.479987px;}
.x7{left:81.719987px;}
.x2e{left:83.874000px;}
.x11{left:85.139987px;}
.x10{left:87.839987px;}
.x2f{left:91.305000px;}
.x28{left:94.356000px;}
.x4d{left:95.615987px;}
.x4c{left:98.855987px;}
.x36{left:103.536000px;}
.x3a{left:110.874000px;}
.x3d{left:112.175987px;}
.x3b{left:116.145000px;}
.x4e{left:117.935987px;}
.x33{left:128.334000px;}
.x34{left:134.685000px;}
.x3e{left:139.175987px;}
.x4f{left:144.935987px;}
.xe{left:147.995987px;}
.xa{left:149.435987px;}
.x3c{left:162.209987px;}
.x2b{left:166.170000px;}
.xf{left:168.329987px;}
.x29{left:170.094000px;}
.x2d{left:174.645000px;}
.x2{left:205.769987px;}
.x5{left:209.729987px;}
.x30{left:214.599000px;}
.x32{left:215.685000px;}
.x48{left:218.910000px;}
.x37{left:224.139000px;}
.xb{left:247.529987px;}
.x9{left:249.149987px;}
.x12{left:263.909987px;}
.x2a{left:272.550000px;}
.x23{left:277.050000px;}
.x14{left:283.755000px;}
.x40{left:313.455000px;}
.x16{left:318.675000px;}
.x3f{left:324.794987px;}
.x35{left:328.214987px;}
.x38{left:335.775000px;}
.x3{left:341.714987px;}
.x46{left:358.994987px;}
.x17{left:361.155000px;}
.x4{left:365.114987px;}
.x22{left:366.554987px;}
.x19{left:403.635000px;}
.x42{left:428.295000px;}
.x6{left:434.954987px;}
.x49{left:437.835000px;}
.x1a{left:446.115000px;}
.xc{left:451.874987px;}
.x1c{left:488.625000px;}
.x1d{left:530.925000px;}
.x24{left:533.445000px;}
.x31{left:539.925000px;}
.x39{left:568.005000px;}
.x4a{left:570.345000px;}
.x1e{left:573.405000px;}
.x20{left:615.885000px;}
.x4b{left:620.025000px;}
.x2c{left:626.685000px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v3{vertical-align:-18.720000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.720000pt;}
.v2{vertical-align:34.560000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.225067pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.413120pt;}
.lsa{letter-spacing:1.488000pt;}
.ls1{letter-spacing:1.552000pt;}
.ls2{letter-spacing:1.824000pt;}
.ls3{letter-spacing:1.866667pt;}
.lsb{letter-spacing:2.128000pt;}
.ls1d{letter-spacing:36.432640pt;}
.ls1b{letter-spacing:50.512640pt;}
.ls14{letter-spacing:56.912640pt;}
.ls1a{letter-spacing:80.592640pt;}
.ls19{letter-spacing:81.232640pt;}
.ws17{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.591360pt;}
.ws2{word-spacing:-16.319360pt;}
.ws1{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.871787pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.096533pt;}
.ws11{word-spacing:-13.054933pt;}
.wsf{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.640000pt;}
.ws15{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.808000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.640000pt;}
.wse{word-spacing:0.000000pt;}
._8{margin-left:-5.345920pt;}
._7{margin-left:-4.318293pt;}
._3{margin-left:-2.710400pt;}
._12{margin-left:-1.818240pt;}
._2{margin-left:-0.919680pt;}
._0{width:1.062400pt;}
._1{width:2.177920pt;}
._4{width:3.326507pt;}
._9{width:4.733227pt;}
._b{width:6.318720pt;}
._a{width:7.296000pt;}
._11{width:8.289493pt;}
._c{width:9.259520pt;}
._d{width:10.451200pt;}
._13{width:11.783680pt;}
._15{width:15.585280pt;}
._14{width:16.479360pt;}
._e{width:17.423360pt;}
._18{width:23.107200pt;}
._19{width:24.222720pt;}
._1a{width:25.367893pt;}
._10{width:26.383147pt;}
._6{width:38.285013pt;}
._f{width:53.193387pt;}
._16{width:103.424640pt;}
._17{width:104.586667pt;}
._5{width:178.717227pt;}
.fse{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fs0{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs7{font-size:96.000000pt;}
.fs5{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:1.280000pt;}
.yaa{bottom:1.600000pt;}
.y7c{bottom:1.760000pt;}
.y58{bottom:2.880000pt;}
.ybf{bottom:4.000000pt;}
.ybd{bottom:4.160000pt;}
.ya7{bottom:6.080000pt;}
.ya9{bottom:10.240000pt;}
.y53{bottom:10.400000pt;}
.y8{bottom:22.720000pt;}
.y7{bottom:40.800000pt;}
.y79{bottom:81.632000pt;}
.yfb{bottom:82.912000pt;}
.y3e{bottom:84.032000pt;}
.y94{bottom:92.032000pt;}
.yc3{bottom:96.672000pt;}
.yfa{bottom:98.112000pt;}
.y3d{bottom:99.232000pt;}
.y78{bottom:109.952000pt;}
.yc2{bottom:113.152000pt;}
.yf9{bottom:113.472000pt;}
.y3c{bottom:114.592000pt;}
.y93{bottom:122.112000pt;}
.yc1{bottom:126.272000pt;}
.y77{bottom:126.912000pt;}
.yf8{bottom:128.832000pt;}
.y3b{bottom:129.952000pt;}
.y92{bottom:139.066667pt;}
.y76{bottom:142.266667pt;}
.yc0{bottom:143.546667pt;}
.yf7{bottom:144.186667pt;}
.y3a{bottom:145.306667pt;}
.y91{bottom:155.386667pt;}
.y75{bottom:157.626667pt;}
.yf6{bottom:159.546667pt;}
.y39{bottom:160.666667pt;}
.ybe{bottom:160.826667pt;}
.y90{bottom:170.906667pt;}
.y74{bottom:172.986667pt;}
.yf5{bottom:174.906667pt;}
.y38{bottom:176.026667pt;}
.ybc{bottom:177.946667pt;}
.y8f{bottom:186.266667pt;}
.y73{bottom:188.346667pt;}
.yf4{bottom:190.106667pt;}
.y37{bottom:191.226667pt;}
.ybb{bottom:196.346667pt;}
.y8e{bottom:201.626667pt;}
.y72{bottom:203.546667pt;}
.yba{bottom:204.186667pt;}
.yf3{bottom:205.466667pt;}
.y36{bottom:206.586667pt;}
.y8d{bottom:216.826667pt;}
.y71{bottom:218.906667pt;}
.yf2{bottom:220.826667pt;}
.y35{bottom:221.946667pt;}
.yb9{bottom:231.386667pt;}
.y8c{bottom:232.186667pt;}
.y70{bottom:234.266667pt;}
.yf1{bottom:237.146667pt;}
.y34{bottom:237.306667pt;}
.y8b{bottom:247.546667pt;}
.yb8{bottom:248.026667pt;}
.y6f{bottom:249.626667pt;}
.yf0{bottom:252.506667pt;}
.y33{bottom:252.666667pt;}
.y127{bottom:258.426667pt;}
.y8a{bottom:262.906667pt;}
.yb7{bottom:264.506667pt;}
.y6e{bottom:264.986667pt;}
.y32{bottom:268.026667pt;}
.yef{bottom:268.826667pt;}
.y126{bottom:273.786667pt;}
.y89{bottom:278.266667pt;}
.y6d{bottom:280.346667pt;}
.y31{bottom:283.226667pt;}
.yee{bottom:284.026667pt;}
.y125{bottom:289.146667pt;}
.yb6{bottom:291.706667pt;}
.y88{bottom:293.626667pt;}
.y6c{bottom:295.546667pt;}
.y30{bottom:298.586667pt;}
.yed{bottom:300.386667pt;}
.y124{bottom:304.386667pt;}
.yb5{bottom:308.386667pt;}
.y87{bottom:308.866667pt;}
.y6b{bottom:310.946667pt;}
.y2f{bottom:313.986667pt;}
.yec{bottom:315.746667pt;}
.y123{bottom:319.746667pt;}
.y86{bottom:324.226667pt;}
.yb4{bottom:325.826667pt;}
.y6a{bottom:326.306667pt;}
.y2e{bottom:329.346667pt;}
.yeb{bottom:332.066667pt;}
.y122{bottom:335.106667pt;}
.y85{bottom:339.586667pt;}
.y69{bottom:341.666667pt;}
.yb3{bottom:342.306667pt;}
.y2d{bottom:344.706667pt;}
.yea{bottom:347.426667pt;}
.y121{bottom:350.466667pt;}
.y84{bottom:354.946667pt;}
.y68{bottom:357.026667pt;}
.y2c{bottom:360.066667pt;}
.ye9{bottom:362.626667pt;}
.y120{bottom:365.826667pt;}
.yb2{bottom:370.466667pt;}
.y67{bottom:372.386667pt;}
.y2b{bottom:375.266667pt;}
.ye8{bottom:377.986667pt;}
.y11f{bottom:381.026667pt;}
.y83{bottom:381.986667pt;}
.yb1{bottom:387.106667pt;}
.y66{bottom:387.586667pt;}
.y2a{bottom:390.626667pt;}
.ye7{bottom:393.346667pt;}
.y11e{bottom:396.386667pt;}
.y82{bottom:398.466667pt;}
.y65{bottom:402.946667pt;}
.yb0{bottom:403.586667pt;}
.y29{bottom:405.986667pt;}
.ye6{bottom:408.706667pt;}
.y11d{bottom:411.746667pt;}
.y81{bottom:415.106667pt;}
.y64{bottom:418.306667pt;}
.yaf{bottom:420.226667pt;}
.y28{bottom:421.346667pt;}
.ye5{bottom:424.066667pt;}
.y11c{bottom:427.106667pt;}
.y80{bottom:431.586667pt;}
.y63{bottom:433.666667pt;}
.yae{bottom:435.746667pt;}
.y27{bottom:436.706667pt;}
.ye4{bottom:439.426667pt;}
.y11b{bottom:442.466667pt;}
.y7f{bottom:448.066667pt;}
.y62{bottom:449.026667pt;}
.yad{bottom:451.106667pt;}
.y26{bottom:452.066667pt;}
.ye3{bottom:454.626667pt;}
.y11a{bottom:457.826667pt;}
.y7e{bottom:460.546667pt;}
.y61{bottom:464.386667pt;}
.yac{bottom:466.306667pt;}
.y25{bottom:467.266667pt;}
.ye2{bottom:469.986667pt;}
.y119{bottom:473.026667pt;}
.y60{bottom:479.586667pt;}
.y7d{bottom:482.146667pt;}
.y24{bottom:482.626667pt;}
.yab{bottom:482.786667pt;}
.ye1{bottom:485.346667pt;}
.y118{bottom:488.386667pt;}
.y5f{bottom:494.946667pt;}
.ya8{bottom:495.266667pt;}
.y23{bottom:497.986667pt;}
.ye0{bottom:500.706667pt;}
.y117{bottom:503.746667pt;}
.y5e{bottom:510.306667pt;}
.y22{bottom:513.346667pt;}
.ya6{bottom:516.706667pt;}
.ydf{bottom:517.186667pt;}
.y116{bottom:519.106667pt;}
.y5d{bottom:525.666667pt;}
.y21{bottom:528.706667pt;}
.yde{bottom:533.826667pt;}
.y115{bottom:534.466667pt;}
.y5c{bottom:541.053333pt;}
.y20{bottom:544.093333pt;}
.y114{bottom:549.853333pt;}
.ydd{bottom:550.333333pt;}
.y5b{bottom:554.013333pt;}
.y1f{bottom:559.293333pt;}
.y113{bottom:565.053333pt;}
.ydc{bottom:566.813333pt;}
.y5a{bottom:570.013333pt;}
.y1e{bottom:574.493333pt;}
.y112{bottom:580.413333pt;}
.ydb{bottom:583.453333pt;}
.y59{bottom:586.013333pt;}
.y1d{bottom:589.853333pt;}
.y111{bottom:595.773333pt;}
.yda{bottom:599.933333pt;}
.y57{bottom:602.013333pt;}
.y1c{bottom:605.213333pt;}
.y110{bottom:611.133333pt;}
.yd9{bottom:616.573333pt;}
.y1b{bottom:620.253333pt;}
.y56{bottom:622.013333pt;}
.y10f{bottom:626.493333pt;}
.y1a{bottom:632.893333pt;}
.yd8{bottom:633.053333pt;}
.y55{bottom:638.653333pt;}
.y19{bottom:641.693333pt;}
.yd7{bottom:649.533333pt;}
.y54{bottom:651.773333pt;}
.y18{bottom:655.453333pt;}
.y10e{bottom:657.053333pt;}
.yd6{bottom:666.173333pt;}
.y17{bottom:669.373333pt;}
.y10d{bottom:672.413333pt;}
.y52{bottom:675.453333pt;}
.ya5{bottom:681.533333pt;}
.yd5{bottom:682.653333pt;}
.y16{bottom:683.133333pt;}
.y10c{bottom:687.773333pt;}
.y15{bottom:696.893333pt;}
.y7a{bottom:697.053333pt;}
.ya4{bottom:698.013333pt;}
.yd4{bottom:699.293333pt;}
.y10b{bottom:703.133333pt;}
.y14{bottom:710.653333pt;}
.y51{bottom:713.853333pt;}
.ya3{bottom:714.653333pt;}
.yd3{bottom:715.773333pt;}
.y10a{bottom:718.493333pt;}
.y13{bottom:724.573333pt;}
.y50{bottom:729.373333pt;}
.ya2{bottom:731.133333pt;}
.yd2{bottom:732.253333pt;}
.y109{bottom:733.693333pt;}
.y12{bottom:738.973333pt;}
.y4f{bottom:744.573333pt;}
.ya1{bottom:747.773333pt;}
.yd1{bottom:748.893333pt;}
.y108{bottom:749.053333pt;}
.y4e{bottom:759.933333pt;}
.y11{bottom:760.253333pt;}
.ya0{bottom:764.253333pt;}
.y107{bottom:764.413333pt;}
.yd0{bottom:765.373333pt;}
.y4d{bottom:775.333333pt;}
.y10{bottom:776.453333pt;}
.y106{bottom:779.813333pt;}
.y9f{bottom:780.933333pt;}
.ycf{bottom:782.053333pt;}
.yf{bottom:787.813333pt;}
.y4c{bottom:790.693333pt;}
.yce{bottom:795.173333pt;}
.y9e{bottom:797.413333pt;}
.y4b{bottom:806.053333pt;}
.ye{bottom:808.293333pt;}
.y105{bottom:810.533333pt;}
.ycd{bottom:812.293333pt;}
.y9d{bottom:813.893333pt;}
.y4a{bottom:821.413333pt;}
.y104{bottom:825.733333pt;}
.ycc{bottom:829.573333pt;}
.yd{bottom:830.213333pt;}
.y49{bottom:836.613333pt;}
.y9c{bottom:841.093333pt;}
.ycb{bottom:846.853333pt;}
.y48{bottom:851.973333pt;}
.y103{bottom:856.453333pt;}
.y9b{bottom:857.733333pt;}
.yc{bottom:859.973333pt;}
.yca{bottom:863.973333pt;}
.y47{bottom:866.373333pt;}
.y102{bottom:871.173333pt;}
.y9a{bottom:874.213333pt;}
.y46{bottom:877.893333pt;}
.yc9{bottom:881.253333pt;}
.y101{bottom:884.133333pt;}
.y99{bottom:890.853333pt;}
.yb{bottom:893.093333pt;}
.y45{bottom:893.413333pt;}
.y100{bottom:899.333333pt;}
.yc8{bottom:902.533333pt;}
.y98{bottom:907.333333pt;}
.y44{bottom:908.773333pt;}
.yff{bottom:914.053333pt;}
.yc7{bottom:919.013333pt;}
.y97{bottom:923.813333pt;}
.y43{bottom:924.133333pt;}
.yfe{bottom:927.013333pt;}
.ya{bottom:930.373333pt;}
.yc6{bottom:935.653333pt;}
.y42{bottom:939.333333pt;}
.yfd{bottom:942.373333pt;}
.yc5{bottom:952.133333pt;}
.y41{bottom:954.693333pt;}
.yfc{bottom:956.933333pt;}
.y9{bottom:967.813333pt;}
.yc4{bottom:968.613333pt;}
.y96{bottom:969.893333pt;}
.y40{bottom:970.053333pt;}
.y95{bottom:985.253333pt;}
.y3f{bottom:985.413333pt;}
.y6{bottom:1001.733333pt;}
.y5{bottom:1019.680000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1055.360000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1087.840000pt;}
.h1b{height:11.171875pt;}
.h17{height:14.746875pt;}
.h14{height:15.360000pt;}
.h1d{height:16.480000pt;}
.h1c{height:16.640000pt;}
.h10{height:18.768750pt;}
.h2{height:19.582500pt;}
.h19{height:21.440000pt;}
.h16{height:21.600000pt;}
.ha{height:22.343750pt;}
.h13{height:22.880000pt;}
.hc{height:25.918750pt;}
.h1f{height:29.940625pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h12{height:37.090625pt;}
.h11{height:37.479688pt;}
.h1a{height:38.672812pt;}
.h1e{height:38.828437pt;}
.hb{height:39.325000pt;}
.h3{height:39.943750pt;}
.h9{height:40.731875pt;}
.hd{height:41.112500pt;}
.h5{height:43.355000pt;}
.h8{height:48.020000pt;}
.h4{height:56.062500pt;}
.h6{height:58.563750pt;}
.h7{height:93.925000pt;}
.h18{height:150.106667pt;}
.h15{height:193.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:31.040000pt;}
.w7{width:37.600000pt;}
.w5{width:37.760000pt;}
.w6{width:37.792000pt;}
.w1a{width:44.160000pt;}
.w9{width:56.672000pt;}
.w3{width:69.312000pt;}
.w8{width:72.992000pt;}
.wb{width:77.152000pt;}
.wc{width:82.880000pt;}
.wa{width:94.080000pt;}
.w15{width:102.080000pt;}
.w19{width:117.792000pt;}
.w17{width:128.192000pt;}
.w16{width:144.026667pt;}
.wf{width:155.386667pt;}
.wd{width:158.400000pt;}
.w12{width:158.426667pt;}
.we{width:159.386667pt;}
.w10{width:162.426667pt;}
.w1b{width:185.786667pt;}
.w18{width:194.586667pt;}
.w14{width:206.426667pt;}
.w11{width:237.626667pt;}
.w13{width:239.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.360000pt;}
.x18{left:8.800000pt;}
.x13{left:10.880000pt;}
.x1b{left:11.840000pt;}
.x1f{left:13.280000pt;}
.x43{left:16.960000pt;}
.x41{left:17.920000pt;}
.x25{left:21.320000pt;}
.x21{left:29.760000pt;}
.x27{left:32.960000pt;}
.x26{left:40.320000pt;}
.x44{left:43.840000pt;}
.x45{left:44.986667pt;}
.x1{left:56.799988pt;}
.xd{left:61.119988pt;}
.x8{left:65.439988pt;}
.x47{left:66.400000pt;}
.x50{left:69.759988pt;}
.x7{left:72.639988pt;}
.x2e{left:74.554667pt;}
.x11{left:75.679988pt;}
.x10{left:78.079988pt;}
.x2f{left:81.160000pt;}
.x28{left:83.872000pt;}
.x4d{left:84.991988pt;}
.x4c{left:87.871988pt;}
.x36{left:92.032000pt;}
.x3a{left:98.554667pt;}
.x3d{left:99.711988pt;}
.x3b{left:103.240000pt;}
.x4e{left:104.831988pt;}
.x33{left:114.074667pt;}
.x34{left:119.720000pt;}
.x3e{left:123.711988pt;}
.x4f{left:128.831988pt;}
.xe{left:131.551988pt;}
.xa{left:132.831988pt;}
.x3c{left:144.186655pt;}
.x2b{left:147.706667pt;}
.xf{left:149.626655pt;}
.x29{left:151.194667pt;}
.x2d{left:155.240000pt;}
.x2{left:182.906655pt;}
.x5{left:186.426655pt;}
.x30{left:190.754667pt;}
.x32{left:191.720000pt;}
.x48{left:194.586667pt;}
.x37{left:199.234667pt;}
.xb{left:220.026655pt;}
.x9{left:221.466655pt;}
.x12{left:234.586655pt;}
.x2a{left:242.266667pt;}
.x23{left:246.266667pt;}
.x14{left:252.226667pt;}
.x40{left:278.626667pt;}
.x16{left:283.266667pt;}
.x3f{left:288.706655pt;}
.x35{left:291.746655pt;}
.x38{left:298.466667pt;}
.x3{left:303.746655pt;}
.x46{left:319.106655pt;}
.x17{left:321.026667pt;}
.x4{left:324.546655pt;}
.x22{left:325.826655pt;}
.x19{left:358.786667pt;}
.x42{left:380.706667pt;}
.x6{left:386.626655pt;}
.x49{left:389.186667pt;}
.x1a{left:396.546667pt;}
.xc{left:401.666655pt;}
.x1c{left:434.333333pt;}
.x1d{left:471.933333pt;}
.x24{left:474.173333pt;}
.x31{left:479.933333pt;}
.x39{left:504.893333pt;}
.x4a{left:506.973333pt;}
.x1e{left:509.693333pt;}
.x20{left:547.453333pt;}
.x4b{left:551.133333pt;}
.x2c{left:557.053333pt;}
}




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