
    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_921818cbd88595457575b433.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_be02a380a2ec4307afbb8aa6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1aca8e02fbaa7ed272deac6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d018aa77b7fa83a4cbe76fae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a23297155fef12a433f0c4b6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_812eaf7aaab61630539dd95f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.170898;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_9034eea492f5162fc58526c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.170898;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_876cf633dd6426baccfd87b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:9.378720px;}
.lsf{letter-spacing:33.960000px;}
.ls4{letter-spacing:54.840000px;}
.ls5{letter-spacing:844.140000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws0{word-spacing:-30.060000px;}
.ws4{word-spacing:-24.300000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.328000px;}
.ws1{word-spacing:-12.060000px;}
.wse{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.274160px;}
._6{width:1.092000px;}
._14{width:2.304000px;}
._15{width:3.624000px;}
._9{width:4.788720px;}
._8{width:5.844720px;}
._7{width:7.153920px;}
._3{width:9.138240px;}
._d{width:10.296000px;}
._e{width:11.304000px;}
._a{width:13.032000px;}
._b{width:14.760000px;}
._c{width:15.912000px;}
._13{width:16.920000px;}
._11{width:19.296000px;}
._12{width:20.880000px;}
._f{width:21.960000px;}
._10{width:23.472000px;}
._1f{width:25.756560px;}
._1e{width:26.892000px;}
._23{width:28.044000px;}
._1d{width:31.194720px;}
._1c{width:32.210640px;}
._22{width:33.795360px;}
._0{width:34.869600px;}
._2{width:36.072000px;}
._24{width:39.744000px;}
._25{width:41.112000px;}
._21{width:46.911600px;}
._17{width:56.448000px;}
._18{width:57.648000px;}
._16{width:63.648000px;}
._4{width:67.752000px;}
._5{width:68.880000px;}
._20{width:87.727680px;}
._1b{width:121.968000px;}
._19{width:166.608000px;}
._1a{width:167.688000px;}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y93{bottom:5.760000px;}
.yab{bottom:5.940000px;}
.y105{bottom:11.160000px;}
.y8e{bottom:11.340000px;}
.y9b{bottom:11.385000px;}
.y103{bottom:11.514000px;}
.y88{bottom:11.520000px;}
.y10f{bottom:11.550000px;}
.y8b{bottom:11.565000px;}
.y100{bottom:17.640000px;}
.y86{bottom:17.820000px;}
.ycd{bottom:17.865000px;}
.y59{bottom:19.080000px;}
.y57{bottom:19.110000px;}
.ya1{bottom:25.554000px;}
.y92{bottom:25.560000px;}
.yb4{bottom:25.605000px;}
.y11d{bottom:25.734000px;}
.yaa{bottom:25.740000px;}
.ybe{bottom:37.620000px;}
.ycc{bottom:37.665000px;}
.ya0{bottom:45.354000px;}
.y91{bottom:45.360000px;}
.ya7{bottom:45.405000px;}
.y11c{bottom:45.534000px;}
.ya9{bottom:45.540000px;}
.y95{bottom:45.570000px;}
.y3{bottom:58.860000px;}
.y9f{bottom:65.154000px;}
.y90{bottom:65.160000px;}
.ya6{bottom:65.205000px;}
.y11b{bottom:65.334000px;}
.y98{bottom:65.340000px;}
.yb9{bottom:65.370000px;}
.yb3{bottom:65.385000px;}
.y2{bottom:80.856000px;}
.y9e{bottom:85.134000px;}
.y97{bottom:85.140000px;}
.yb8{bottom:85.170000px;}
.ya5{bottom:85.185000px;}
.ydd{bottom:105.150000px;}
.y83{bottom:113.616000px;}
.y25{bottom:116.496000px;}
.y104{bottom:119.556000px;}
.ydc{bottom:124.950000px;}
.y11a{bottom:125.136000px;}
.y4a{bottom:132.876000px;}
.y9d{bottom:134.496000px;}
.ye9{bottom:136.476000px;}
.y24{bottom:138.276000px;}
.y102{bottom:145.836000px;}
.y82{bottom:149.436000px;}
.ye8{bottom:153.930000px;}
.y49{bottom:156.630000px;}
.y101{bottom:172.110000px;}
.y23{bottom:172.830000px;}
.y81{bottom:173.190000px;}
.ye7{bottom:180.210000px;}
.y48{bottom:180.390000px;}
.y22{bottom:193.530000px;}
.yff{bottom:198.390000px;}
.ybc{bottom:202.530000px;}
.y47{bottom:204.330000px;}
.y119{bottom:205.230000px;}
.ye6{bottom:206.490000px;}
.y80{bottom:209.010000px;}
.yd0{bottom:219.270000px;}
.ybb{bottom:220.170000px;}
.y46{bottom:228.090000px;}
.y21{bottom:228.630000px;}
.ye5{bottom:232.770000px;}
.y7f{bottom:232.950000px;}
.y9c{bottom:234.390000px;}
.yb1{bottom:242.130000px;}
.y20{bottom:248.070000px;}
.yfe{bottom:250.050000px;}
.y45{bottom:251.850000px;}
.ycf{bottom:255.090000px;}
.y7e{bottom:256.530000px;}
.y118{bottom:256.890000px;}
.ye4{bottom:259.050000px;}
.yb0{bottom:259.770000px;}
.y1f{bottom:268.770000px;}
.yce{bottom:272.550000px;}
.y44{bottom:275.610000px;}
.y7d{bottom:281.550000px;}
.ye3{bottom:285.150000px;}
.yfd{bottom:285.690000px;}
.y1e{bottom:289.470000px;}
.y117{bottom:292.710000px;}
.y131{bottom:294.870000px;}
.y43{bottom:299.370000px;}
.ycb{bottom:305.130000px;}
.y7c{bottom:306.750000px;}
.yfc{bottom:309.630000px;}
.y1d{bottom:310.170000px;}
.y9a{bottom:314.490000px;}
.y130{bottom:318.675000px;}
.yaf{bottom:320.115000px;}
.y1c{bottom:330.915000px;}
.y7b{bottom:331.815000px;}
.y42{bottom:335.235000px;}
.ye2{bottom:336.855000px;}
.y99{bottom:340.815000px;}
.y12f{bottom:342.615000px;}
.yfb{bottom:345.495000px;}
.y116{bottom:350.715000px;}
.y1b{bottom:351.615000px;}
.y41{bottom:356.115000px;}
.yca{bottom:357.555000px;}
.y12e{bottom:366.375000px;}
.y7a{bottom:369.075000px;}
.y1a{bottom:372.315000px;}
.ye1{bottom:372.675000px;}
.y40{bottom:378.075000px;}
.yae{bottom:380.415000px;}
.yfa{bottom:381.135000px;}
.y5d{bottom:387.255000px;}
.y12d{bottom:390.135000px;}
.y79{bottom:392.835000px;}
.y19{bottom:393.015000px;}
.ye0{bottom:396.435000px;}
.yf9{bottom:398.775000px;}
.y3f{bottom:400.035000px;}
.y115{bottom:402.375000px;}
.y5c{bottom:404.895000px;}
.y18{bottom:413.715000px;}
.y12c{bottom:413.895000px;}
.y78{bottom:416.775000px;}
.yc9{bottom:417.855000px;}
.yba{bottom:420.015000px;}
.y3e{bottom:421.995000px;}
.ydf{bottom:432.255000px;}
.y17{bottom:434.415000px;}
.y12b{bottom:437.835000px;}
.y114{bottom:438.195000px;}
.y77{bottom:440.535000px;}
.y96{bottom:440.715000px;}
.y5b{bottom:441.435000px;}
.y3d{bottom:443.955000px;}
.y16{bottom:455.115000px;}
.y113{bottom:455.655000px;}
.y76{bottom:464.295000px;}
.y3c{bottom:465.915000px;}
.yde{bottom:468.075000px;}
.y12a{bottom:469.695000px;}
.yc8{bottom:470.235000px;}
.y5a{bottom:477.975000px;}
.yad{bottom:480.315000px;}
.y112{bottom:481.935000px;}
.ydb{bottom:485.535000px;}
.y15{bottom:487.155000px;}
.y3b{bottom:488.055000px;}
.yf8{bottom:498.675000px;}
.y111{bottom:508.035000px;}
.y3a{bottom:510.015000px;}
.y129{bottom:512.535000px;}
.y58{bottom:514.515000px;}
.yb7{bottom:519.915000px;}
.y75{bottom:523.875000px;}
.yf7{bottom:524.955000px;}
.y14{bottom:527.835000px;}
.y110{bottom:534.315000px;}
.y94{bottom:540.615000px;}
.y128{bottom:542.595000px;}
.y74{bottom:546.375000px;}
.y39{bottom:547.095000px;}
.y56{bottom:551.055000px;}
.y10e{bottom:560.595000px;}
.y13{bottom:561.675000px;}
.y73{bottom:564.555000px;}
.y127{bottom:566.175000px;}
.yc7{bottom:570.165000px;}
.y38{bottom:570.885000px;}
.yf6{bottom:577.365000px;}
.yac{bottom:580.245000px;}
.y72{bottom:582.765000px;}
.y12{bottom:583.665000px;}
.y10d{bottom:586.905000px;}
.y37{bottom:594.645000px;}
.y71{bottom:600.945000px;}
.y126{bottom:604.365000px;}
.y55{bottom:606.705000px;}
.y10c{bottom:613.185000px;}
.y11{bottom:617.325000px;}
.y70{bottom:619.125000px;}
.yb6{bottom:620.025000px;}
.yda{bottom:625.245000px;}
.y36{bottom:626.685000px;}
.yf5{bottom:629.025000px;}
.y6f{bottom:637.305000px;}
.y54{bottom:643.785000px;}
.y125{bottom:645.945000px;}
.y10{bottom:651.165000px;}
.yd9{bottom:651.525000px;}
.y6e{bottom:655.485000px;}
.yf4{bottom:664.845000px;}
.y53{bottom:667.725000px;}
.y35{bottom:668.265000px;}
.yc6{bottom:670.065000px;}
.yf{bottom:673.125000px;}
.y6d{bottom:673.665000px;}
.yd8{bottom:677.805000px;}
.ya8{bottom:680.145000px;}
.y8f{bottom:681.045000px;}
.y124{bottom:681.765000px;}
.y6c{bottom:691.845000px;}
.y34{bottom:692.025000px;}
.yf3{bottom:700.665000px;}
.y52{bottom:703.545000px;}
.yd7{bottom:703.905000px;}
.ye{bottom:706.785000px;}
.y6b{bottom:710.025000px;}
.y33{bottom:715.785000px;}
.yb5{bottom:719.925000px;}
.yf2{bottom:724.425000px;}
.y6a{bottom:728.205000px;}
.yd{bottom:728.745000px;}
.y51{bottom:735.405000px;}
.y10b{bottom:736.305000px;}
.y32{bottom:739.545000px;}
.yd6{bottom:744.405000px;}
.y69{bottom:746.385000px;}
.yf1{bottom:748.365000px;}
.y10a{bottom:760.245000px;}
.y8d{bottom:761.145000px;}
.y123{bottom:761.325000px;}
.yc{bottom:763.305000px;}
.y31{bottom:763.485000px;}
.y68{bottom:764.565000px;}
.yc5{bottom:770.145000px;}
.yd5{bottom:770.685000px;}
.ya4{bottom:780.225000px;}
.y67{bottom:782.745000px;}
.yf0{bottom:784.005000px;}
.y8c{bottom:787.245000px;}
.yd4{bottom:796.965000px;}
.y122{bottom:797.145000px;}
.yb{bottom:798.945000px;}
.y30{bottom:799.305000px;}
.yb2{bottom:800.025000px;}
.y66{bottom:800.925000px;}
.y8a{bottom:813.525000px;}
.y65{bottom:819.105000px;}
.yef{bottom:819.870000px;}
.y121{bottom:820.950000px;}
.y2f{bottom:823.110000px;}
.ya{bottom:834.810000px;}
.y64{bottom:837.330000px;}
.yee{bottom:837.510000px;}
.y89{bottom:839.850000px;}
.y109{bottom:843.630000px;}
.y2e{bottom:846.870000px;}
.yd3{bottom:848.670000px;}
.y120{bottom:852.990000px;}
.y63{bottom:855.510000px;}
.y9{bottom:858.750000px;}
.yed{bottom:863.610000px;}
.y87{bottom:866.130000px;}
.y108{bottom:867.210000px;}
.yc4{bottom:870.090000px;}
.y2d{bottom:870.630000px;}
.y62{bottom:873.690000px;}
.ya3{bottom:880.170000px;}
.yd2{bottom:884.490000px;}
.yec{bottom:889.890000px;}
.y8{bottom:890.610000px;}
.y61{bottom:891.870000px;}
.y85{bottom:892.410000px;}
.y11f{bottom:894.390000px;}
.yc3{bottom:896.370000px;}
.y2c{bottom:906.450000px;}
.yd1{bottom:908.250000px;}
.y50{bottom:908.430000px;}
.y60{bottom:910.050000px;}
.yeb{bottom:916.170000px;}
.y107{bottom:917.430000px;}
.yc2{bottom:922.470000px;}
.y5f{bottom:928.230000px;}
.y2b{bottom:930.210000px;}
.y7{bottom:932.190000px;}
.y106{bottom:942.630000px;}
.y84{bottom:944.070000px;}
.y5e{bottom:946.410000px;}
.yc1{bottom:948.750000px;}
.y2a{bottom:954.150000px;}
.y4f{bottom:955.950000px;}
.yea{bottom:967.830000px;}
.y6{bottom:972.510000px;}
.yc0{bottom:975.030000px;}
.y29{bottom:977.910000px;}
.y4e{bottom:979.890000px;}
.ya2{bottom:980.070000px;}
.ybf{bottom:1001.310000px;}
.y28{bottom:1001.670000px;}
.y4d{bottom:1003.650000px;}
.y5{bottom:1012.290000px;}
.y27{bottom:1025.430000px;}
.y4c{bottom:1027.410000px;}
.ybd{bottom:1027.590000px;}
.y4{bottom:1051.890000px;}
.y26{bottom:1057.470000px;}
.y11e{bottom:1057.650000px;}
.y4b{bottom:1063.230000px;}
.y1{bottom:1102.320000px;}
.h14{height:25.380000px;}
.h18{height:25.416000px;}
.h11{height:25.560000px;}
.h13{height:25.596000px;}
.h22{height:31.680000px;}
.hf{height:31.860000px;}
.h1f{height:31.896000px;}
.hd{height:35.820000px;}
.hc{height:35.856000px;}
.h24{height:39.636000px;}
.h20{height:39.780000px;}
.h12{height:41.726953px;}
.h10{height:42.164648px;}
.h23{height:45.316055px;}
.h7{height:46.251562px;}
.h8{height:46.736719px;}
.he{height:49.675781px;}
.h6{height:50.273438px;}
.h3{height:50.800781px;}
.h1e{height:51.660000px;}
.h1d{height:51.696000px;}
.ha{height:52.417969px;}
.hb{height:52.628906px;}
.h1b{height:59.580000px;}
.h16{height:59.616000px;}
.h5{height:61.043203px;}
.h1{height:62.402344px;}
.h4{height:67.565039px;}
.h9{height:69.715898px;}
.h15{height:79.200000px;}
.h19{height:79.380000px;}
.h1c{height:79.416000px;}
.h2{height:84.837305px;}
.h17{height:99.180000px;}
.h1a{height:99.216000px;}
.h21{height:138.996000px;}
.h0{height:1188.000000px;}
.w4{width:109.440000px;}
.w3{width:126.756000px;}
.w7{width:146.016000px;}
.w5{width:152.310000px;}
.w2{width:232.950000px;}
.w6{width:240.870000px;}
.w8{width:312.150000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.734000px;}
.xb{left:13.140000px;}
.x13{left:14.760000px;}
.x14{left:17.640000px;}
.xd{left:31.680000px;}
.x15{left:34.740000px;}
.xf{left:37.620000px;}
.x17{left:39.240000px;}
.x11{left:41.580000px;}
.x18{left:46.080000px;}
.x12{left:52.560000px;}
.x16{left:54.900000px;}
.x9{left:91.974000px;}
.x1d{left:100.296000px;}
.x3{left:108.035986px;}
.x6{left:125.135986px;}
.x4{left:135.035986px;}
.x8{left:147.276000px;}
.x1b{left:162.029986px;}
.x27{left:227.009986px;}
.x19{left:256.889986px;}
.x25{left:260.309986px;}
.x21{left:267.329986px;}
.x20{left:270.209986px;}
.x26{left:283.169986px;}
.x23{left:286.274986px;}
.x1a{left:292.214986px;}
.x24{left:295.454986px;}
.x1c{left:307.334986px;}
.x1e{left:341.895000px;}
.x7{left:361.694986px;}
.xa{left:380.955000px;}
.x22{left:449.354986px;}
.x2{left:454.214986px;}
.x1f{left:488.805000px;}
.xc{left:508.425000px;}
.x1{left:551.264986px;}
.x5{left:590.504986px;}
.xe{left:618.585000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:8.336640pt;}
.lsf{letter-spacing:30.186667pt;}
.ls4{letter-spacing:48.746667pt;}
.ls5{letter-spacing:750.346667pt;}
.ws6{word-spacing:-64.000000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws4{word-spacing:-21.600000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.736000pt;}
.ws1{word-spacing:-10.720000pt;}
.wse{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.132587pt;}
._6{width:0.970667pt;}
._14{width:2.048000pt;}
._15{width:3.221333pt;}
._9{width:4.256640pt;}
._8{width:5.195307pt;}
._7{width:6.359040pt;}
._3{width:8.122880pt;}
._d{width:9.152000pt;}
._e{width:10.048000pt;}
._a{width:11.584000pt;}
._b{width:13.120000pt;}
._c{width:14.144000pt;}
._13{width:15.040000pt;}
._11{width:17.152000pt;}
._12{width:18.560000pt;}
._f{width:19.520000pt;}
._10{width:20.864000pt;}
._1f{width:22.894720pt;}
._1e{width:23.904000pt;}
._23{width:24.928000pt;}
._1d{width:27.728640pt;}
._1c{width:28.631680pt;}
._22{width:30.040320pt;}
._0{width:30.995200pt;}
._2{width:32.064000pt;}
._24{width:35.328000pt;}
._25{width:36.544000pt;}
._21{width:41.699200pt;}
._17{width:50.176000pt;}
._18{width:51.242667pt;}
._16{width:56.576000pt;}
._4{width:60.224000pt;}
._5{width:61.226667pt;}
._20{width:77.980160pt;}
._1b{width:108.416000pt;}
._19{width:148.096000pt;}
._1a{width:149.056000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:5.120000pt;}
.yab{bottom:5.280000pt;}
.y105{bottom:9.920000pt;}
.y8e{bottom:10.080000pt;}
.y9b{bottom:10.120000pt;}
.y103{bottom:10.234667pt;}
.y88{bottom:10.240000pt;}
.y10f{bottom:10.266667pt;}
.y8b{bottom:10.280000pt;}
.y100{bottom:15.680000pt;}
.y86{bottom:15.840000pt;}
.ycd{bottom:15.880000pt;}
.y59{bottom:16.960000pt;}
.y57{bottom:16.986667pt;}
.ya1{bottom:22.714667pt;}
.y92{bottom:22.720000pt;}
.yb4{bottom:22.760000pt;}
.y11d{bottom:22.874667pt;}
.yaa{bottom:22.880000pt;}
.ybe{bottom:33.440000pt;}
.ycc{bottom:33.480000pt;}
.ya0{bottom:40.314667pt;}
.y91{bottom:40.320000pt;}
.ya7{bottom:40.360000pt;}
.y11c{bottom:40.474667pt;}
.ya9{bottom:40.480000pt;}
.y95{bottom:40.506667pt;}
.y3{bottom:52.320000pt;}
.y9f{bottom:57.914667pt;}
.y90{bottom:57.920000pt;}
.ya6{bottom:57.960000pt;}
.y11b{bottom:58.074667pt;}
.y98{bottom:58.080000pt;}
.yb9{bottom:58.106667pt;}
.yb3{bottom:58.120000pt;}
.y2{bottom:71.872000pt;}
.y9e{bottom:75.674667pt;}
.y97{bottom:75.680000pt;}
.yb8{bottom:75.706667pt;}
.ya5{bottom:75.720000pt;}
.ydd{bottom:93.466667pt;}
.y83{bottom:100.992000pt;}
.y25{bottom:103.552000pt;}
.y104{bottom:106.272000pt;}
.ydc{bottom:111.066667pt;}
.y11a{bottom:111.232000pt;}
.y4a{bottom:118.112000pt;}
.y9d{bottom:119.552000pt;}
.ye9{bottom:121.312000pt;}
.y24{bottom:122.912000pt;}
.y102{bottom:129.632000pt;}
.y82{bottom:132.832000pt;}
.ye8{bottom:136.826667pt;}
.y49{bottom:139.226667pt;}
.y101{bottom:152.986667pt;}
.y23{bottom:153.626667pt;}
.y81{bottom:153.946667pt;}
.ye7{bottom:160.186667pt;}
.y48{bottom:160.346667pt;}
.y22{bottom:172.026667pt;}
.yff{bottom:176.346667pt;}
.ybc{bottom:180.026667pt;}
.y47{bottom:181.626667pt;}
.y119{bottom:182.426667pt;}
.ye6{bottom:183.546667pt;}
.y80{bottom:185.786667pt;}
.yd0{bottom:194.906667pt;}
.ybb{bottom:195.706667pt;}
.y46{bottom:202.746667pt;}
.y21{bottom:203.226667pt;}
.ye5{bottom:206.906667pt;}
.y7f{bottom:207.066667pt;}
.y9c{bottom:208.346667pt;}
.yb1{bottom:215.226667pt;}
.y20{bottom:220.506667pt;}
.yfe{bottom:222.266667pt;}
.y45{bottom:223.866667pt;}
.ycf{bottom:226.746667pt;}
.y7e{bottom:228.026667pt;}
.y118{bottom:228.346667pt;}
.ye4{bottom:230.266667pt;}
.yb0{bottom:230.906667pt;}
.y1f{bottom:238.906667pt;}
.yce{bottom:242.266667pt;}
.y44{bottom:244.986667pt;}
.y7d{bottom:250.266667pt;}
.ye3{bottom:253.466667pt;}
.yfd{bottom:253.946667pt;}
.y1e{bottom:257.306667pt;}
.y117{bottom:260.186667pt;}
.y131{bottom:262.106667pt;}
.y43{bottom:266.106667pt;}
.ycb{bottom:271.226667pt;}
.y7c{bottom:272.666667pt;}
.yfc{bottom:275.226667pt;}
.y1d{bottom:275.706667pt;}
.y9a{bottom:279.546667pt;}
.y130{bottom:283.266667pt;}
.yaf{bottom:284.546667pt;}
.y1c{bottom:294.146667pt;}
.y7b{bottom:294.946667pt;}
.y42{bottom:297.986667pt;}
.ye2{bottom:299.426667pt;}
.y99{bottom:302.946667pt;}
.y12f{bottom:304.546667pt;}
.yfb{bottom:307.106667pt;}
.y116{bottom:311.746667pt;}
.y1b{bottom:312.546667pt;}
.y41{bottom:316.546667pt;}
.yca{bottom:317.826667pt;}
.y12e{bottom:325.666667pt;}
.y7a{bottom:328.066667pt;}
.y1a{bottom:330.946667pt;}
.ye1{bottom:331.266667pt;}
.y40{bottom:336.066667pt;}
.yae{bottom:338.146667pt;}
.yfa{bottom:338.786667pt;}
.y5d{bottom:344.226667pt;}
.y12d{bottom:346.786667pt;}
.y79{bottom:349.186667pt;}
.y19{bottom:349.346667pt;}
.ye0{bottom:352.386667pt;}
.yf9{bottom:354.466667pt;}
.y3f{bottom:355.586667pt;}
.y115{bottom:357.666667pt;}
.y5c{bottom:359.906667pt;}
.y18{bottom:367.746667pt;}
.y12c{bottom:367.906667pt;}
.y78{bottom:370.466667pt;}
.yc9{bottom:371.426667pt;}
.yba{bottom:373.346667pt;}
.y3e{bottom:375.106667pt;}
.ydf{bottom:384.226667pt;}
.y17{bottom:386.146667pt;}
.y12b{bottom:389.186667pt;}
.y114{bottom:389.506667pt;}
.y77{bottom:391.586667pt;}
.y96{bottom:391.746667pt;}
.y5b{bottom:392.386667pt;}
.y3d{bottom:394.626667pt;}
.y16{bottom:404.546667pt;}
.y113{bottom:405.026667pt;}
.y76{bottom:412.706667pt;}
.y3c{bottom:414.146667pt;}
.yde{bottom:416.066667pt;}
.y12a{bottom:417.506667pt;}
.yc8{bottom:417.986667pt;}
.y5a{bottom:424.866667pt;}
.yad{bottom:426.946667pt;}
.y112{bottom:428.386667pt;}
.ydb{bottom:431.586667pt;}
.y15{bottom:433.026667pt;}
.y3b{bottom:433.826667pt;}
.yf8{bottom:443.266667pt;}
.y111{bottom:451.586667pt;}
.y3a{bottom:453.346667pt;}
.y129{bottom:455.586667pt;}
.y58{bottom:457.346667pt;}
.yb7{bottom:462.146667pt;}
.y75{bottom:465.666667pt;}
.yf7{bottom:466.626667pt;}
.y14{bottom:469.186667pt;}
.y110{bottom:474.946667pt;}
.y94{bottom:480.546667pt;}
.y128{bottom:482.306667pt;}
.y74{bottom:485.666667pt;}
.y39{bottom:486.306667pt;}
.y56{bottom:489.826667pt;}
.y10e{bottom:498.306667pt;}
.y13{bottom:499.266667pt;}
.y73{bottom:501.826667pt;}
.y127{bottom:503.266667pt;}
.yc7{bottom:506.813333pt;}
.y38{bottom:507.453333pt;}
.yf6{bottom:513.213333pt;}
.yac{bottom:515.773333pt;}
.y72{bottom:518.013333pt;}
.y12{bottom:518.813333pt;}
.y10d{bottom:521.693333pt;}
.y37{bottom:528.573333pt;}
.y71{bottom:534.173333pt;}
.y126{bottom:537.213333pt;}
.y55{bottom:539.293333pt;}
.y10c{bottom:545.053333pt;}
.y11{bottom:548.733333pt;}
.y70{bottom:550.333333pt;}
.yb6{bottom:551.133333pt;}
.yda{bottom:555.773333pt;}
.y36{bottom:557.053333pt;}
.yf5{bottom:559.133333pt;}
.y6f{bottom:566.493333pt;}
.y54{bottom:572.253333pt;}
.y125{bottom:574.173333pt;}
.y10{bottom:578.813333pt;}
.yd9{bottom:579.133333pt;}
.y6e{bottom:582.653333pt;}
.yf4{bottom:590.973333pt;}
.y53{bottom:593.533333pt;}
.y35{bottom:594.013333pt;}
.yc6{bottom:595.613333pt;}
.yf{bottom:598.333333pt;}
.y6d{bottom:598.813333pt;}
.yd8{bottom:602.493333pt;}
.ya8{bottom:604.573333pt;}
.y8f{bottom:605.373333pt;}
.y124{bottom:606.013333pt;}
.y6c{bottom:614.973333pt;}
.y34{bottom:615.133333pt;}
.yf3{bottom:622.813333pt;}
.y52{bottom:625.373333pt;}
.yd7{bottom:625.693333pt;}
.ye{bottom:628.253333pt;}
.y6b{bottom:631.133333pt;}
.y33{bottom:636.253333pt;}
.yb5{bottom:639.933333pt;}
.yf2{bottom:643.933333pt;}
.y6a{bottom:647.293333pt;}
.yd{bottom:647.773333pt;}
.y51{bottom:653.693333pt;}
.y10b{bottom:654.493333pt;}
.y32{bottom:657.373333pt;}
.yd6{bottom:661.693333pt;}
.y69{bottom:663.453333pt;}
.yf1{bottom:665.213333pt;}
.y10a{bottom:675.773333pt;}
.y8d{bottom:676.573333pt;}
.y123{bottom:676.733333pt;}
.yc{bottom:678.493333pt;}
.y31{bottom:678.653333pt;}
.y68{bottom:679.613333pt;}
.yc5{bottom:684.573333pt;}
.yd5{bottom:685.053333pt;}
.ya4{bottom:693.533333pt;}
.y67{bottom:695.773333pt;}
.yf0{bottom:696.893333pt;}
.y8c{bottom:699.773333pt;}
.yd4{bottom:708.413333pt;}
.y122{bottom:708.573333pt;}
.yb{bottom:710.173333pt;}
.y30{bottom:710.493333pt;}
.yb2{bottom:711.133333pt;}
.y66{bottom:711.933333pt;}
.y8a{bottom:723.133333pt;}
.y65{bottom:728.093333pt;}
.yef{bottom:728.773333pt;}
.y121{bottom:729.733333pt;}
.y2f{bottom:731.653333pt;}
.ya{bottom:742.053333pt;}
.y64{bottom:744.293333pt;}
.yee{bottom:744.453333pt;}
.y89{bottom:746.533333pt;}
.y109{bottom:749.893333pt;}
.y2e{bottom:752.773333pt;}
.yd3{bottom:754.373333pt;}
.y120{bottom:758.213333pt;}
.y63{bottom:760.453333pt;}
.y9{bottom:763.333333pt;}
.yed{bottom:767.653333pt;}
.y87{bottom:769.893333pt;}
.y108{bottom:770.853333pt;}
.yc4{bottom:773.413333pt;}
.y2d{bottom:773.893333pt;}
.y62{bottom:776.613333pt;}
.ya3{bottom:782.373333pt;}
.yd2{bottom:786.213333pt;}
.yec{bottom:791.013333pt;}
.y8{bottom:791.653333pt;}
.y61{bottom:792.773333pt;}
.y85{bottom:793.253333pt;}
.y11f{bottom:795.013333pt;}
.yc3{bottom:796.773333pt;}
.y2c{bottom:805.733333pt;}
.yd1{bottom:807.333333pt;}
.y50{bottom:807.493333pt;}
.y60{bottom:808.933333pt;}
.yeb{bottom:814.373333pt;}
.y107{bottom:815.493333pt;}
.yc2{bottom:819.973333pt;}
.y5f{bottom:825.093333pt;}
.y2b{bottom:826.853333pt;}
.y7{bottom:828.613333pt;}
.y106{bottom:837.893333pt;}
.y84{bottom:839.173333pt;}
.y5e{bottom:841.253333pt;}
.yc1{bottom:843.333333pt;}
.y2a{bottom:848.133333pt;}
.y4f{bottom:849.733333pt;}
.yea{bottom:860.293333pt;}
.y6{bottom:864.453333pt;}
.yc0{bottom:866.693333pt;}
.y29{bottom:869.253333pt;}
.y4e{bottom:871.013333pt;}
.ya2{bottom:871.173333pt;}
.ybf{bottom:890.053333pt;}
.y28{bottom:890.373333pt;}
.y4d{bottom:892.133333pt;}
.y5{bottom:899.813333pt;}
.y27{bottom:911.493333pt;}
.y4c{bottom:913.253333pt;}
.ybd{bottom:913.413333pt;}
.y4{bottom:935.013333pt;}
.y26{bottom:939.973333pt;}
.y11e{bottom:940.133333pt;}
.y4b{bottom:945.093333pt;}
.y1{bottom:979.840000pt;}
.h14{height:22.560000pt;}
.h18{height:22.592000pt;}
.h11{height:22.720000pt;}
.h13{height:22.752000pt;}
.h22{height:28.160000pt;}
.hf{height:28.320000pt;}
.h1f{height:28.352000pt;}
.hd{height:31.840000pt;}
.hc{height:31.872000pt;}
.h24{height:35.232000pt;}
.h20{height:35.360000pt;}
.h12{height:37.090625pt;}
.h10{height:37.479688pt;}
.h23{height:40.280938pt;}
.h7{height:41.112500pt;}
.h8{height:41.543750pt;}
.he{height:44.156250pt;}
.h6{height:44.687500pt;}
.h3{height:45.156250pt;}
.h1e{height:45.920000pt;}
.h1d{height:45.952000pt;}
.ha{height:46.593750pt;}
.hb{height:46.781250pt;}
.h1b{height:52.960000pt;}
.h16{height:52.992000pt;}
.h5{height:54.260625pt;}
.h1{height:55.468750pt;}
.h4{height:60.057813pt;}
.h9{height:61.969687pt;}
.h15{height:70.400000pt;}
.h19{height:70.560000pt;}
.h1c{height:70.592000pt;}
.h2{height:75.410937pt;}
.h17{height:88.160000pt;}
.h1a{height:88.192000pt;}
.h21{height:123.552000pt;}
.h0{height:1056.000000pt;}
.w4{width:97.280000pt;}
.w3{width:112.672000pt;}
.w7{width:129.792000pt;}
.w5{width:135.386667pt;}
.w2{width:207.066667pt;}
.w6{width:214.106667pt;}
.w8{width:277.466667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.874667pt;}
.xb{left:11.680000pt;}
.x13{left:13.120000pt;}
.x14{left:15.680000pt;}
.xd{left:28.160000pt;}
.x15{left:30.880000pt;}
.xf{left:33.440000pt;}
.x17{left:34.880000pt;}
.x11{left:36.960000pt;}
.x18{left:40.960000pt;}
.x12{left:46.720000pt;}
.x16{left:48.800000pt;}
.x9{left:81.754667pt;}
.x1d{left:89.152000pt;}
.x3{left:96.031988pt;}
.x6{left:111.231988pt;}
.x4{left:120.031988pt;}
.x8{left:130.912000pt;}
.x1b{left:144.026655pt;}
.x27{left:201.786655pt;}
.x19{left:228.346655pt;}
.x25{left:231.386655pt;}
.x21{left:237.626655pt;}
.x20{left:240.186655pt;}
.x26{left:251.706655pt;}
.x23{left:254.466655pt;}
.x1a{left:259.746655pt;}
.x24{left:262.626655pt;}
.x1c{left:273.186655pt;}
.x1e{left:303.906667pt;}
.x7{left:321.506655pt;}
.xa{left:338.626667pt;}
.x22{left:399.426655pt;}
.x2{left:403.746655pt;}
.x1f{left:434.493333pt;}
.xc{left:451.933333pt;}
.x1{left:490.013321pt;}
.x5{left:524.893321pt;}
.xe{left:549.853333pt;}
}




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