
    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_0619a939c558df8c66350c91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_02b656f9dfd0dd275f9d3858.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_192e8ebd529149441860dc41.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e5f3e1a6c2ba1a6468cd138d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b9678bf8b17bca09c60a84d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_fbfcf0109d7ec3b6a9f446bf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7a5e9deb612e8ed8579261e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892090;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_9d86d6f1ceb1f66f30f979fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eef87074f0dd061bd36fcdd0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880859;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_ea73690a73dde5a8ab2a4f5e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090820;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_55a7fa687cb5351d6e7a9038.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_c3590158fdc312923ae8f47a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954102;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:fff;src:url('chunks/assets/font_6d570b33bf38e1744ab7f47f.woff2')format("woff");}.fff{font-family:fff;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-69.240000px;}
.v2{vertical-align:-65.520000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.413400px;}
.ls18{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.058320px;}
.ls5{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.126490px;}
.lsd{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.189735px;}
.ls9{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.948674px;}
.ls14{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.340000px;}
.ls15{letter-spacing:3.060000px;}
.ls7{letter-spacing:7.380000px;}
.lse{letter-spacing:12.420000px;}
.ls10{letter-spacing:15.300000px;}
.lsa{letter-spacing:19.620000px;}
.ls17{letter-spacing:434.340000px;}
.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;}
}
.ws8{word-spacing:-75.893905px;}
.wsb{word-spacing:-62.991941px;}
.ws0{word-spacing:-59.760000px;}
.ws7{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.526600px;}
.ws1{word-spacing:-13.447440px;}
.ws5{word-spacing:0.000000px;}
._1c{margin-left:-11.033280px;}
._c{margin-left:-3.817920px;}
._a{margin-left:-2.597280px;}
._7{margin-left:-1.075680px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._4{width:4.362480px;}
._6{width:5.410800px;}
._5{width:6.769680px;}
._b{width:8.545680px;}
._8{width:9.561600px;}
._9{width:11.223120px;}
._d{width:12.728880px;}
._19{width:13.744800px;}
._18{width:16.732800px;}
._e{width:17.928000px;}
._15{width:19.003680px;}
._12{width:20.079360px;}
._17{width:21.214800px;}
._14{width:22.836960px;}
._13{width:23.904000px;}
._1b{width:31.792320px;}
._1a{width:32.987520px;}
._10{width:41.891760px;}
._f{width:42.967440px;}
._11{width:44.592480px;}
._16{width:74.819520px;}
._3{width:797.131200px;}
._1d{width:849.216000px;}
._2{width:1308.763920px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:62.991941px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.240000px;}
.y9c{bottom:4.320000px;}
.y85{bottom:19.836000px;}
.y4a{bottom:20.520000px;}
.y9b{bottom:23.760000px;}
.y9a{bottom:25.020000px;}
.y49{bottom:37.800000px;}
.y7b{bottom:42.840000px;}
.y99{bottom:43.380000px;}
.y8f{bottom:44.100000px;}
.y92{bottom:49.500000px;}
.y95{bottom:54.900000px;}
.y84{bottom:62.100000px;}
.y8e{bottom:62.460000px;}
.y98{bottom:62.820000px;}
.y9e{bottom:66.060000px;}
.y91{bottom:68.940000px;}
.y94{bottom:72.180000px;}
.y97{bottom:82.260000px;}
.y9d{bottom:83.340000px;}
.y8d{bottom:84.420000px;}
.y79{bottom:85.320000px;}
.y7a{bottom:85.500000px;}
.y90{bottom:88.380000px;}
.y93{bottom:89.460000px;}
.yb7{bottom:97.200000px;}
.y3e{bottom:103.320000px;}
.y83{bottom:107.385000px;}
.yb6{bottom:113.580000px;}
.yc6{bottom:117.720000px;}
.y3d{bottom:120.600000px;}
.yb5{bottom:133.380000px;}
.yc5{bottom:135.216000px;}
.y3c{bottom:137.736000px;}
.y82{bottom:148.470000px;}
.yc4{bottom:152.670000px;}
.yb4{bottom:154.650000px;}
.y3b{bottom:155.010000px;}
.yc3{bottom:169.050000px;}
.yb3{bottom:171.030000px;}
.y3a{bottom:172.290000px;}
.y7c{bottom:174.450000px;}
.yc2{bottom:185.430000px;}
.yb2{bottom:187.410000px;}
.y39{bottom:189.570000px;}
.y81{bottom:191.340000px;}
.yc1{bottom:201.810000px;}
.yb1{bottom:203.790000px;}
.y38{bottom:206.850000px;}
.yc0{bottom:218.190000px;}
.yb0{bottom:220.170000px;}
.y37{bottom:224.130000px;}
.y80{bottom:234.210000px;}
.ybf{bottom:234.570000px;}
.yaf{bottom:236.550000px;}
.y36{bottom:241.230000px;}
.ybe{bottom:250.950000px;}
.yae{bottom:256.350000px;}
.y35{bottom:258.510000px;}
.ybd{bottom:267.330000px;}
.y34{bottom:275.790000px;}
.y7f{bottom:277.095000px;}
.yad{bottom:277.590000px;}
.ybc{bottom:287.130000px;}
.y33{bottom:293.070000px;}
.yac{bottom:297.390000px;}
.ybb{bottom:308.370000px;}
.y32{bottom:310.350000px;}
.y7e{bottom:321.480000px;}
.yab{bottom:322.050000px;}
.yba{bottom:324.750000px;}
.y31{bottom:327.450000px;}
.yb9{bottom:341.130000px;}
.yaa{bottom:343.290000px;}
.y30{bottom:344.730000px;}
.y120{bottom:348.150000px;}
.yb8{bottom:358.590000px;}
.ya9{bottom:359.670000px;}
.y2f{bottom:362.010000px;}
.y7d{bottom:362.880000px;}
.y11f{bottom:365.430000px;}
.ya8{bottom:376.050000px;}
.y2e{bottom:379.290000px;}
.yf6{bottom:380.910000px;}
.y11e{bottom:382.710000px;}
.ya7{bottom:392.475000px;}
.y2d{bottom:396.615000px;}
.yf5{bottom:397.335000px;}
.y11d{bottom:400.215000px;}
.ya6{bottom:408.855000px;}
.yf4{bottom:413.715000px;}
.y2c{bottom:413.895000px;}
.y11c{bottom:417.495000px;}
.ya5{bottom:425.235000px;}
.yf3{bottom:430.095000px;}
.y2b{bottom:430.995000px;}
.y11b{bottom:434.775000px;}
.ya4{bottom:441.615000px;}
.yf2{bottom:446.475000px;}
.y2a{bottom:448.275000px;}
.y11a{bottom:452.235000px;}
.ya3{bottom:457.995000px;}
.yf1{bottom:462.855000px;}
.y29{bottom:465.555000px;}
.y119{bottom:469.515000px;}
.y64{bottom:473.295000px;}
.ya2{bottom:474.375000px;}
.yf0{bottom:479.235000px;}
.y28{bottom:482.835000px;}
.y118{bottom:486.795000px;}
.y63{bottom:490.575000px;}
.ya1{bottom:490.755000px;}
.yef{bottom:495.615000px;}
.y27{bottom:500.115000px;}
.y117{bottom:504.075000px;}
.ya0{bottom:507.135000px;}
.y62{bottom:507.855000px;}
.yee{bottom:511.995000px;}
.y78{bottom:512.175000px;}
.y26{bottom:517.395000px;}
.y116{bottom:521.535000px;}
.y9f{bottom:523.515000px;}
.y61{bottom:525.135000px;}
.yed{bottom:528.375000px;}
.y77{bottom:529.275000px;}
.y25{bottom:534.495000px;}
.y115{bottom:538.815000px;}
.y60{bottom:542.415000px;}
.yec{bottom:544.755000px;}
.y76{bottom:546.555000px;}
.y24{bottom:551.775000px;}
.y96{bottom:554.835000px;}
.y114{bottom:556.095000px;}
.y5f{bottom:559.515000px;}
.yeb{bottom:561.135000px;}
.y75{bottom:563.835000px;}
.y23{bottom:569.055000px;}
.y113{bottom:573.195000px;}
.y5e{bottom:576.795000px;}
.yea{bottom:577.515000px;}
.y74{bottom:581.115000px;}
.y22{bottom:586.335000px;}
.y112{bottom:590.475000px;}
.ye9{bottom:593.895000px;}
.y5d{bottom:594.075000px;}
.y73{bottom:598.395000px;}
.y21{bottom:603.615000px;}
.y111{bottom:607.755000px;}
.ye8{bottom:610.275000px;}
.y5c{bottom:611.355000px;}
.y72{bottom:615.675000px;}
.y20{bottom:620.895000px;}
.y110{bottom:625.035000px;}
.ye7{bottom:626.655000px;}
.y5b{bottom:628.635000px;}
.y71{bottom:632.775000px;}
.y1f{bottom:641.625000px;}
.y10f{bottom:642.345000px;}
.ye6{bottom:643.065000px;}
.y5a{bottom:645.765000px;}
.y70{bottom:650.085000px;}
.y8c{bottom:652.965000px;}
.ye5{bottom:659.445000px;}
.y59{bottom:663.045000px;}
.y1e{bottom:663.945000px;}
.y6f{bottom:667.365000px;}
.ye4{bottom:675.825000px;}
.y10e{bottom:676.725000px;}
.y58{bottom:680.325000px;}
.y1d{bottom:681.225000px;}
.y6e{bottom:684.645000px;}
.ye3{bottom:692.205000px;}
.y10d{bottom:694.005000px;}
.y57{bottom:697.605000px;}
.y1c{bottom:698.505000px;}
.y6d{bottom:703.005000px;}
.ye2{bottom:708.585000px;}
.y56{bottom:714.885000px;}
.y1b{bottom:715.785000px;}
.y6c{bottom:721.365000px;}
.ye1{bottom:724.965000px;}
.y10c{bottom:728.565000px;}
.y55{bottom:732.165000px;}
.y1a{bottom:736.665000px;}
.y6b{bottom:738.645000px;}
.ye0{bottom:741.345000px;}
.y10b{bottom:745.665000px;}
.y54{bottom:749.265000px;}
.y6a{bottom:755.745000px;}
.y8b{bottom:757.185000px;}
.ydf{bottom:757.725000px;}
.y19{bottom:760.065000px;}
.y10a{bottom:762.045000px;}
.y53{bottom:766.545000px;}
.y69{bottom:773.025000px;}
.yde{bottom:774.105000px;}
.y18{bottom:778.425000px;}
.y52{bottom:783.825000px;}
.y68{bottom:790.305000px;}
.ydd{bottom:790.485000px;}
.y109{bottom:794.805000px;}
.y17{bottom:795.705000px;}
.y51{bottom:804.705000px;}
.y67{bottom:807.585000px;}
.ydc{bottom:807.945000px;}
.y108{bottom:811.185000px;}
.y16{bottom:812.985000px;}
.y8a{bottom:819.285000px;}
.y66{bottom:824.865000px;}
.ydb{bottom:826.485000px;}
.y50{bottom:827.025000px;}
.y107{bottom:827.565000px;}
.y15{bottom:830.085000px;}
.y89{bottom:836.565000px;}
.y65{bottom:843.225000px;}
.yda{bottom:843.945000px;}
.y4f{bottom:844.305000px;}
.y14{bottom:847.365000px;}
.y88{bottom:853.845000px;}
.yd9{bottom:860.325000px;}
.y4e{bottom:861.585000px;}
.y13{bottom:864.645000px;}
.y87{bottom:872.025000px;}
.yd8{bottom:876.705000px;}
.y12{bottom:881.925000px;}
.yd7{bottom:893.130000px;}
.y4d{bottom:893.490000px;}
.y86{bottom:894.210000px;}
.y11{bottom:899.250000px;}
.yd6{bottom:909.510000px;}
.y106{bottom:910.590000px;}
.y10{bottom:916.530000px;}
.yd5{bottom:925.890000px;}
.y105{bottom:928.050000px;}
.y4c{bottom:928.770000px;}
.yf{bottom:933.630000px;}
.yd4{bottom:942.270000px;}
.y104{bottom:944.430000px;}
.ye{bottom:950.910000px;}
.yd3{bottom:958.650000px;}
.y103{bottom:961.890000px;}
.yd{bottom:968.190000px;}
.yd2{bottom:975.030000px;}
.y102{bottom:979.170000px;}
.y48{bottom:981.330000px;}
.yc{bottom:985.470000px;}
.yd1{bottom:991.410000px;}
.y101{bottom:995.550000px;}
.yb{bottom:1002.750000px;}
.yd0{bottom:1007.790000px;}
.y100{bottom:1011.930000px;}
.ya{bottom:1020.030000px;}
.ycf{bottom:1024.170000px;}
.yff{bottom:1028.310000px;}
.y9{bottom:1037.130000px;}
.yce{bottom:1040.550000px;}
.y47{bottom:1040.730000px;}
.yfe{bottom:1044.870000px;}
.y8{bottom:1054.410000px;}
.yfd{bottom:1061.250000px;}
.y42{bottom:1063.050000px;}
.y7{bottom:1071.690000px;}
.ycd{bottom:1073.310000px;}
.yfc{bottom:1077.630000px;}
.y41{bottom:1080.330000px;}
.y6{bottom:1088.970000px;}
.ycc{bottom:1089.690000px;}
.yfb{bottom:1094.010000px;}
.y46{bottom:1097.430000px;}
.y40{bottom:1101.030000px;}
.y5{bottom:1106.250000px;}
.ycb{bottom:1107.150000px;}
.yfa{bottom:1110.390000px;}
.y45{bottom:1114.710000px;}
.y4{bottom:1123.350000px;}
.yca{bottom:1124.610000px;}
.yf9{bottom:1126.770000px;}
.y44{bottom:1131.990000px;}
.y3f{bottom:1140.630000px;}
.yc9{bottom:1140.990000px;}
.yf8{bottom:1143.150000px;}
.y43{bottom:1152.900000px;}
.y3{bottom:1157.940000px;}
.yc8{bottom:1158.480000px;}
.yf7{bottom:1159.560000px;}
.y2{bottom:1175.220000px;}
.yc7{bottom:1175.940000px;}
.y1{bottom:1195.560000px;}
.h11{height:17.280000px;}
.hb{height:34.560000px;}
.hd{height:49.868086px;}
.h6{height:50.218242px;}
.h7{height:51.427014px;}
.h9{height:51.660000px;}
.ha{height:51.840000px;}
.hc{height:52.165201px;}
.h8{height:52.411263px;}
.h4{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h10{height:60.181495px;}
.h3{height:60.226875px;}
.h14{height:61.423863px;}
.hf{height:70.664063px;}
.h13{height:97.416000px;}
.h12{height:103.500000px;}
.he{height:384.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:99.180000px;}
.w6{width:259.275000px;}
.w7{width:318.990000px;}
.w3{width:329.070000px;}
.w4{width:349.095000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x1{left:106.415987px;}
.xf{left:121.355987px;}
.x2{left:123.155987px;}
.x2c{left:132.335987px;}
.xd{left:136.115987px;}
.x2d{left:162.209987px;}
.x29{left:207.030000px;}
.x30{left:209.729987px;}
.x28{left:215.489987px;}
.x33{left:227.189987px;}
.x14{left:234.389987px;}
.x2b{left:240.509987px;}
.x2e{left:249.869987px;}
.x10{left:252.209987px;}
.x1a{left:256.424987px;}
.x31{left:269.534987px;}
.x27{left:270.974987px;}
.x1b{left:274.964987px;}
.x11{left:282.314987px;}
.x34{left:287.354987px;}
.x3{left:309.134987px;}
.x1e{left:313.994987px;}
.x22{left:316.229987px;}
.x1c{left:318.494987px;}
.x25{left:323.174987px;}
.x2f{left:384.554987px;}
.x16{left:436.935000px;}
.x13{left:457.304987px;}
.x2a{left:467.025000px;}
.x12{left:487.004987px;}
.x1f{left:497.444987px;}
.x37{left:499.784987px;}
.x1d{left:503.564987px;}
.x8{left:508.424987px;}
.x38{left:514.724987px;}
.x6{left:517.604987px;}
.xb{left:537.944987px;}
.x21{left:553.469987px;}
.x23{left:554.759987px;}
.x20{left:556.529987px;}
.x24{left:559.229987px;}
.xa{left:560.984987px;}
.x26{left:564.629987px;}
.x35{left:626.369987px;}
.x36{left:656.249987px;}
.x5{left:667.589987px;}
.x9{left:680.009987px;}
.x4{left:703.049987px;}
.x7{left:717.629987px;}
.x17{left:721.949987px;}
.x32{left:726.989987px;}
.x19{left:770.549987px;}
.xe{left:771.629987px;}
.x18{left:781.709987px;}
.xc{left:786.749987px;}
@media print{
.v1{vertical-align:-61.546667pt;}
.v2{vertical-align:-58.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.367467pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.112435pt;}
.lsd{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.168653pt;}
.ls9{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.843266pt;}
.ls14{letter-spacing:1.440000pt;}
.lsf{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls7{letter-spacing:6.560000pt;}
.lse{letter-spacing:11.040000pt;}
.ls10{letter-spacing:13.600000pt;}
.lsa{letter-spacing:17.440000pt;}
.ls17{letter-spacing:386.080000pt;}
.ws8{word-spacing:-67.461249pt;}
.wsb{word-spacing:-55.992837pt;}
.ws0{word-spacing:-53.120000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.912533pt;}
.ws1{word-spacing:-11.953280pt;}
.ws5{word-spacing:0.000000pt;}
._1c{margin-left:-9.807360pt;}
._c{margin-left:-3.393707pt;}
._a{margin-left:-2.308693pt;}
._7{margin-left:-0.956160pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._4{width:3.877760pt;}
._6{width:4.809600pt;}
._5{width:6.017493pt;}
._b{width:7.596160pt;}
._8{width:8.499200pt;}
._9{width:9.976107pt;}
._d{width:11.314560pt;}
._19{width:12.217600pt;}
._18{width:14.873600pt;}
._e{width:15.936000pt;}
._15{width:16.892160pt;}
._12{width:17.848320pt;}
._17{width:18.857600pt;}
._14{width:20.299520pt;}
._13{width:21.248000pt;}
._1b{width:28.259840pt;}
._1a{width:29.322240pt;}
._10{width:37.237120pt;}
._f{width:38.193280pt;}
._11{width:39.637760pt;}
._16{width:66.506240pt;}
._3{width:708.561067pt;}
._1d{width:754.858667pt;}
._2{width:1163.345707pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:55.992837pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.880000pt;}
.y9c{bottom:3.840000pt;}
.y85{bottom:17.632000pt;}
.y4a{bottom:18.240000pt;}
.y9b{bottom:21.120000pt;}
.y9a{bottom:22.240000pt;}
.y49{bottom:33.600000pt;}
.y7b{bottom:38.080000pt;}
.y99{bottom:38.560000pt;}
.y8f{bottom:39.200000pt;}
.y92{bottom:44.000000pt;}
.y95{bottom:48.800000pt;}
.y84{bottom:55.200000pt;}
.y8e{bottom:55.520000pt;}
.y98{bottom:55.840000pt;}
.y9e{bottom:58.720000pt;}
.y91{bottom:61.280000pt;}
.y94{bottom:64.160000pt;}
.y97{bottom:73.120000pt;}
.y9d{bottom:74.080000pt;}
.y8d{bottom:75.040000pt;}
.y79{bottom:75.840000pt;}
.y7a{bottom:76.000000pt;}
.y90{bottom:78.560000pt;}
.y93{bottom:79.520000pt;}
.yb7{bottom:86.400000pt;}
.y3e{bottom:91.840000pt;}
.y83{bottom:95.453333pt;}
.yb6{bottom:100.960000pt;}
.yc6{bottom:104.640000pt;}
.y3d{bottom:107.200000pt;}
.yb5{bottom:118.560000pt;}
.yc5{bottom:120.192000pt;}
.y3c{bottom:122.432000pt;}
.y82{bottom:131.973333pt;}
.yc4{bottom:135.706667pt;}
.yb4{bottom:137.466667pt;}
.y3b{bottom:137.786667pt;}
.yc3{bottom:150.266667pt;}
.yb3{bottom:152.026667pt;}
.y3a{bottom:153.146667pt;}
.y7c{bottom:155.066667pt;}
.yc2{bottom:164.826667pt;}
.yb2{bottom:166.586667pt;}
.y39{bottom:168.506667pt;}
.y81{bottom:170.080000pt;}
.yc1{bottom:179.386667pt;}
.yb1{bottom:181.146667pt;}
.y38{bottom:183.866667pt;}
.yc0{bottom:193.946667pt;}
.yb0{bottom:195.706667pt;}
.y37{bottom:199.226667pt;}
.y80{bottom:208.186667pt;}
.ybf{bottom:208.506667pt;}
.yaf{bottom:210.266667pt;}
.y36{bottom:214.426667pt;}
.ybe{bottom:223.066667pt;}
.yae{bottom:227.866667pt;}
.y35{bottom:229.786667pt;}
.ybd{bottom:237.626667pt;}
.y34{bottom:245.146667pt;}
.y7f{bottom:246.306667pt;}
.yad{bottom:246.746667pt;}
.ybc{bottom:255.226667pt;}
.y33{bottom:260.506667pt;}
.yac{bottom:264.346667pt;}
.ybb{bottom:274.106667pt;}
.y32{bottom:275.866667pt;}
.y7e{bottom:285.760000pt;}
.yab{bottom:286.266667pt;}
.yba{bottom:288.666667pt;}
.y31{bottom:291.066667pt;}
.yb9{bottom:303.226667pt;}
.yaa{bottom:305.146667pt;}
.y30{bottom:306.426667pt;}
.y120{bottom:309.466667pt;}
.yb8{bottom:318.746667pt;}
.ya9{bottom:319.706667pt;}
.y2f{bottom:321.786667pt;}
.y7d{bottom:322.560000pt;}
.y11f{bottom:324.826667pt;}
.ya8{bottom:334.266667pt;}
.y2e{bottom:337.146667pt;}
.yf6{bottom:338.586667pt;}
.y11e{bottom:340.186667pt;}
.ya7{bottom:348.866667pt;}
.y2d{bottom:352.546667pt;}
.yf5{bottom:353.186667pt;}
.y11d{bottom:355.746667pt;}
.ya6{bottom:363.426667pt;}
.yf4{bottom:367.746667pt;}
.y2c{bottom:367.906667pt;}
.y11c{bottom:371.106667pt;}
.ya5{bottom:377.986667pt;}
.yf3{bottom:382.306667pt;}
.y2b{bottom:383.106667pt;}
.y11b{bottom:386.466667pt;}
.ya4{bottom:392.546667pt;}
.yf2{bottom:396.866667pt;}
.y2a{bottom:398.466667pt;}
.y11a{bottom:401.986667pt;}
.ya3{bottom:407.106667pt;}
.yf1{bottom:411.426667pt;}
.y29{bottom:413.826667pt;}
.y119{bottom:417.346667pt;}
.y64{bottom:420.706667pt;}
.ya2{bottom:421.666667pt;}
.yf0{bottom:425.986667pt;}
.y28{bottom:429.186667pt;}
.y118{bottom:432.706667pt;}
.y63{bottom:436.066667pt;}
.ya1{bottom:436.226667pt;}
.yef{bottom:440.546667pt;}
.y27{bottom:444.546667pt;}
.y117{bottom:448.066667pt;}
.ya0{bottom:450.786667pt;}
.y62{bottom:451.426667pt;}
.yee{bottom:455.106667pt;}
.y78{bottom:455.266667pt;}
.y26{bottom:459.906667pt;}
.y116{bottom:463.586667pt;}
.y9f{bottom:465.346667pt;}
.y61{bottom:466.786667pt;}
.yed{bottom:469.666667pt;}
.y77{bottom:470.466667pt;}
.y25{bottom:475.106667pt;}
.y115{bottom:478.946667pt;}
.y60{bottom:482.146667pt;}
.yec{bottom:484.226667pt;}
.y76{bottom:485.826667pt;}
.y24{bottom:490.466667pt;}
.y96{bottom:493.186667pt;}
.y114{bottom:494.306667pt;}
.y5f{bottom:497.346667pt;}
.yeb{bottom:498.786667pt;}
.y75{bottom:501.186667pt;}
.y23{bottom:505.826667pt;}
.y113{bottom:509.506667pt;}
.y5e{bottom:512.706667pt;}
.yea{bottom:513.346667pt;}
.y74{bottom:516.546667pt;}
.y22{bottom:521.186667pt;}
.y112{bottom:524.866667pt;}
.ye9{bottom:527.906667pt;}
.y5d{bottom:528.066667pt;}
.y73{bottom:531.906667pt;}
.y21{bottom:536.546667pt;}
.y111{bottom:540.226667pt;}
.ye8{bottom:542.466667pt;}
.y5c{bottom:543.426667pt;}
.y72{bottom:547.266667pt;}
.y20{bottom:551.906667pt;}
.y110{bottom:555.586667pt;}
.ye7{bottom:557.026667pt;}
.y5b{bottom:558.786667pt;}
.y71{bottom:562.466667pt;}
.y1f{bottom:570.333333pt;}
.y10f{bottom:570.973333pt;}
.ye6{bottom:571.613333pt;}
.y5a{bottom:574.013333pt;}
.y70{bottom:577.853333pt;}
.y8c{bottom:580.413333pt;}
.ye5{bottom:586.173333pt;}
.y59{bottom:589.373333pt;}
.y1e{bottom:590.173333pt;}
.y6f{bottom:593.213333pt;}
.ye4{bottom:600.733333pt;}
.y10e{bottom:601.533333pt;}
.y58{bottom:604.733333pt;}
.y1d{bottom:605.533333pt;}
.y6e{bottom:608.573333pt;}
.ye3{bottom:615.293333pt;}
.y10d{bottom:616.893333pt;}
.y57{bottom:620.093333pt;}
.y1c{bottom:620.893333pt;}
.y6d{bottom:624.893333pt;}
.ye2{bottom:629.853333pt;}
.y56{bottom:635.453333pt;}
.y1b{bottom:636.253333pt;}
.y6c{bottom:641.213333pt;}
.ye1{bottom:644.413333pt;}
.y10c{bottom:647.613333pt;}
.y55{bottom:650.813333pt;}
.y1a{bottom:654.813333pt;}
.y6b{bottom:656.573333pt;}
.ye0{bottom:658.973333pt;}
.y10b{bottom:662.813333pt;}
.y54{bottom:666.013333pt;}
.y6a{bottom:671.773333pt;}
.y8b{bottom:673.053333pt;}
.ydf{bottom:673.533333pt;}
.y19{bottom:675.613333pt;}
.y10a{bottom:677.373333pt;}
.y53{bottom:681.373333pt;}
.y69{bottom:687.133333pt;}
.yde{bottom:688.093333pt;}
.y18{bottom:691.933333pt;}
.y52{bottom:696.733333pt;}
.y68{bottom:702.493333pt;}
.ydd{bottom:702.653333pt;}
.y109{bottom:706.493333pt;}
.y17{bottom:707.293333pt;}
.y51{bottom:715.293333pt;}
.y67{bottom:717.853333pt;}
.ydc{bottom:718.173333pt;}
.y108{bottom:721.053333pt;}
.y16{bottom:722.653333pt;}
.y8a{bottom:728.253333pt;}
.y66{bottom:733.213333pt;}
.ydb{bottom:734.653333pt;}
.y50{bottom:735.133333pt;}
.y107{bottom:735.613333pt;}
.y15{bottom:737.853333pt;}
.y89{bottom:743.613333pt;}
.y65{bottom:749.533333pt;}
.yda{bottom:750.173333pt;}
.y4f{bottom:750.493333pt;}
.y14{bottom:753.213333pt;}
.y88{bottom:758.973333pt;}
.yd9{bottom:764.733333pt;}
.y4e{bottom:765.853333pt;}
.y13{bottom:768.573333pt;}
.y87{bottom:775.133333pt;}
.yd8{bottom:779.293333pt;}
.y12{bottom:783.933333pt;}
.yd7{bottom:793.893333pt;}
.y4d{bottom:794.213333pt;}
.y86{bottom:794.853333pt;}
.y11{bottom:799.333333pt;}
.yd6{bottom:808.453333pt;}
.y106{bottom:809.413333pt;}
.y10{bottom:814.693333pt;}
.yd5{bottom:823.013333pt;}
.y105{bottom:824.933333pt;}
.y4c{bottom:825.573333pt;}
.yf{bottom:829.893333pt;}
.yd4{bottom:837.573333pt;}
.y104{bottom:839.493333pt;}
.ye{bottom:845.253333pt;}
.yd3{bottom:852.133333pt;}
.y103{bottom:855.013333pt;}
.yd{bottom:860.613333pt;}
.yd2{bottom:866.693333pt;}
.y102{bottom:870.373333pt;}
.y48{bottom:872.293333pt;}
.yc{bottom:875.973333pt;}
.yd1{bottom:881.253333pt;}
.y101{bottom:884.933333pt;}
.yb{bottom:891.333333pt;}
.yd0{bottom:895.813333pt;}
.y100{bottom:899.493333pt;}
.ya{bottom:906.693333pt;}
.ycf{bottom:910.373333pt;}
.yff{bottom:914.053333pt;}
.y9{bottom:921.893333pt;}
.yce{bottom:924.933333pt;}
.y47{bottom:925.093333pt;}
.yfe{bottom:928.773333pt;}
.y8{bottom:937.253333pt;}
.yfd{bottom:943.333333pt;}
.y42{bottom:944.933333pt;}
.y7{bottom:952.613333pt;}
.ycd{bottom:954.053333pt;}
.yfc{bottom:957.893333pt;}
.y41{bottom:960.293333pt;}
.y6{bottom:967.973333pt;}
.ycc{bottom:968.613333pt;}
.yfb{bottom:972.453333pt;}
.y46{bottom:975.493333pt;}
.y40{bottom:978.693333pt;}
.y5{bottom:983.333333pt;}
.ycb{bottom:984.133333pt;}
.yfa{bottom:987.013333pt;}
.y45{bottom:990.853333pt;}
.y4{bottom:998.533333pt;}
.yca{bottom:999.653333pt;}
.yf9{bottom:1001.573333pt;}
.y44{bottom:1006.213333pt;}
.y3f{bottom:1013.893333pt;}
.yc9{bottom:1014.213333pt;}
.yf8{bottom:1016.133333pt;}
.y43{bottom:1024.800000pt;}
.y3{bottom:1029.280000pt;}
.yc8{bottom:1029.760000pt;}
.yf7{bottom:1030.720000pt;}
.y2{bottom:1044.640000pt;}
.yc7{bottom:1045.280000pt;}
.y1{bottom:1062.720000pt;}
.h11{height:15.360000pt;}
.hb{height:30.720000pt;}
.hd{height:44.327188pt;}
.h6{height:44.638438pt;}
.h7{height:45.712902pt;}
.h9{height:45.920000pt;}
.ha{height:46.080000pt;}
.hc{height:46.369068pt;}
.h8{height:46.587790pt;}
.h4{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h10{height:53.494662pt;}
.h3{height:53.535000pt;}
.h14{height:54.598989pt;}
.hf{height:62.812500pt;}
.h13{height:86.592000pt;}
.h12{height:92.000000pt;}
.he{height:341.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:88.160000pt;}
.w6{width:230.466667pt;}
.w7{width:283.546667pt;}
.w3{width:292.506667pt;}
.w4{width:310.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x1{left:94.591988pt;}
.xf{left:107.871988pt;}
.x2{left:109.471988pt;}
.x2c{left:117.631988pt;}
.xd{left:120.991988pt;}
.x2d{left:144.186655pt;}
.x29{left:184.026667pt;}
.x30{left:186.426655pt;}
.x28{left:191.546655pt;}
.x33{left:201.946655pt;}
.x14{left:208.346655pt;}
.x2b{left:213.786655pt;}
.x2e{left:222.106655pt;}
.x10{left:224.186655pt;}
.x1a{left:227.933322pt;}
.x31{left:239.586655pt;}
.x27{left:240.866655pt;}
.x1b{left:244.413322pt;}
.x11{left:250.946655pt;}
.x34{left:255.426655pt;}
.x3{left:274.786655pt;}
.x1e{left:279.106655pt;}
.x22{left:281.093322pt;}
.x1c{left:283.106655pt;}
.x25{left:287.266655pt;}
.x2f{left:341.826655pt;}
.x16{left:388.386667pt;}
.x13{left:406.493322pt;}
.x2a{left:415.133333pt;}
.x12{left:432.893322pt;}
.x1f{left:442.173322pt;}
.x37{left:444.253322pt;}
.x1d{left:447.613322pt;}
.x8{left:451.933322pt;}
.x38{left:457.533322pt;}
.x6{left:460.093322pt;}
.xb{left:478.173322pt;}
.x21{left:491.973322pt;}
.x23{left:493.119988pt;}
.x20{left:494.693322pt;}
.x24{left:497.093322pt;}
.xa{left:498.653322pt;}
.x26{left:501.893322pt;}
.x35{left:556.773322pt;}
.x36{left:583.333322pt;}
.x5{left:593.413322pt;}
.x9{left:604.453322pt;}
.x4{left:624.933322pt;}
.x7{left:637.893322pt;}
.x17{left:641.733322pt;}
.x32{left:646.213322pt;}
.x19{left:684.933322pt;}
.xe{left:685.893322pt;}
.x18{left:694.853322pt;}
.xc{left:699.333322pt;}
}




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