
    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_b5e0ac214a1550fd72c1127f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_feb10d6abc61e84c501c1373.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_f1bf4659cc084f5cc04351fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_ba97241fe1deaa223dc88ece.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_ced077e24cac559d5679f150.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_0b8c217016cfd9798b344089.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5e063ce69b4e8f15297c2c11.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.709473;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_fe44d8dd6c837397126b051a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_12b056ebc57869b512740e94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-0.336960px;}
.ls11{letter-spacing:-0.331200px;}
.ls33{letter-spacing:-0.298800px;}
.ls13{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.252720px;}
.ls32{letter-spacing:-0.239040px;}
.ls1e{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.132480px;}
.ls31{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.084240px;}
.ls10{letter-spacing:-0.077760px;}
.ls24{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.059760px;}
.ls6{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.054000px;}
.ls30{letter-spacing:0.059760px;}
.ls19{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.077760px;}
.ls0{letter-spacing:0.132480px;}
.ls14{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.179280px;}
.lse{letter-spacing:0.233280px;}
.ls2a{letter-spacing:0.239040px;}
.ls1a{letter-spacing:0.269280px;}
.ls25{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.289440px;}
.ls2c{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.324000px;}
.ls2d{letter-spacing:0.346608px;}
.ls1f{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.385920px;}
.ls2b{letter-spacing:0.388440px;}
.ls36{letter-spacing:0.501984px;}
.ls37{letter-spacing:0.507960px;}
.lsf{letter-spacing:0.544320px;}
.ls28{letter-spacing:0.561744px;}
.ls34{letter-spacing:0.597600px;}
.ls2f{letter-spacing:0.627480px;}
.ls18{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.956160px;}
.ls38{letter-spacing:1.015920px;}
.ls20{letter-spacing:1.440000px;}
.ls4{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls15{letter-spacing:4.320000px;}
.ls29{letter-spacing:7.888320px;}
.ls1b{letter-spacing:7.920000px;}
.ls21{letter-spacing:8.640000px;}
.ls2e{letter-spacing:13.248792px;}
.ls35{letter-spacing:15.059520px;}
.ls39{letter-spacing:19.362240px;}
.ls22{letter-spacing:33.984000px;}
.ls5{letter-spacing:846.000000px;}
.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:-27.138240px;}
.ws5{word-spacing:-26.827200px;}
.ws8{word-spacing:-26.671680px;}
.ws7{word-spacing:-26.516160px;}
.ws1a{word-spacing:-23.081760px;}
.ws3c{word-spacing:-20.304000px;}
.ws3d{word-spacing:-19.944000px;}
.ws1c{word-spacing:-18.144000px;}
.ws41{word-spacing:-18.000000px;}
.ws2d{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws46{word-spacing:-17.210880px;}
.ws58{word-spacing:-16.852320px;}
.ws56{word-spacing:-16.553520px;}
.ws43{word-spacing:-16.493760px;}
.ws57{word-spacing:-16.374240px;}
.ws45{word-spacing:-16.314480px;}
.ws1{word-spacing:-13.446000px;}
.ws4{word-spacing:-12.528000px;}
.ws3b{word-spacing:-12.445920px;}
.ws2e{word-spacing:-12.349440px;}
.ws0{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.096000px;}
.ws2{word-spacing:-11.934000px;}
.ws42{word-spacing:-10.808640px;}
.ws51{word-spacing:-4.422240px;}
.ws31{word-spacing:-4.320000px;}
.ws53{word-spacing:-4.242960px;}
.ws5f{word-spacing:-3.705120px;}
.ws16{word-spacing:-3.600000px;}
.ws60{word-spacing:-3.525840px;}
.ws52{word-spacing:-3.406320px;}
.ws30{word-spacing:-2.880000px;}
.ws6a{word-spacing:-2.808720px;}
.ws29{word-spacing:-2.592000px;}
.ws19{word-spacing:-2.160000px;}
.ws5b{word-spacing:-2.091600px;}
.ws32{word-spacing:-1.872000px;}
.ws21{word-spacing:-1.440000px;}
.ws4e{word-spacing:-1.374480px;}
.ws35{word-spacing:-1.152000px;}
.ws1e{word-spacing:-0.720000px;}
.wse{word-spacing:-0.673920px;}
.ws47{word-spacing:-0.657360px;}
.ws1f{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.252720px;}
.wsf{word-spacing:-0.198720px;}
.ws10{word-spacing:-0.179280px;}
.ws15{word-spacing:-0.144000px;}
.ws49{word-spacing:-0.119520px;}
.ws1b{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws44{word-spacing:0.059760px;}
.ws40{word-spacing:0.072000px;}
.wsc{word-spacing:0.108000px;}
.ws4d{word-spacing:0.119520px;}
.ws62{word-spacing:0.179280px;}
.ws3f{word-spacing:0.216000px;}
.wsd{word-spacing:0.252720px;}
.wsb{word-spacing:0.264960px;}
.ws1d{word-spacing:0.288000px;}
.ws33{word-spacing:0.421200px;}
.ws24{word-spacing:0.720000px;}
.ws4a{word-spacing:0.776880px;}
.ws39{word-spacing:1.008000px;}
.ws2a{word-spacing:1.296000px;}
.ws23{word-spacing:1.440000px;}
.ws61{word-spacing:1.494000px;}
.ws2f{word-spacing:1.728000px;}
.ws26{word-spacing:2.016000px;}
.ws11{word-spacing:2.160000px;}
.ws27{word-spacing:2.448000px;}
.ws17{word-spacing:2.880000px;}
.ws37{word-spacing:3.456000px;}
.ws2c{word-spacing:3.600000px;}
.ws55{word-spacing:3.705120px;}
.ws38{word-spacing:3.888000px;}
.ws13{word-spacing:4.320000px;}
.ws65{word-spacing:4.422240px;}
.ws22{word-spacing:4.608000px;}
.ws28{word-spacing:4.896000px;}
.ws3a{word-spacing:5.040000px;}
.ws12{word-spacing:5.328000px;}
.ws18{word-spacing:5.616000px;}
.ws2b{word-spacing:5.760000px;}
.ws14{word-spacing:6.480000px;}
.ws5e{word-spacing:6.573600px;}
.ws34{word-spacing:7.200000px;}
.ws64{word-spacing:7.290720px;}
.ws20{word-spacing:7.920000px;}
.ws4c{word-spacing:8.007840px;}
.ws4b{word-spacing:8.127360px;}
.ws36{word-spacing:8.208000px;}
.ws3e{word-spacing:8.640000px;}
.ws5d{word-spacing:9.262800px;}
.ws4f{word-spacing:9.442080px;}
.ws63{word-spacing:10.159200px;}
.ws48{word-spacing:12.240000px;}
.ws54{word-spacing:12.310560px;}
.ws69{word-spacing:13.744800px;}
.ws59{word-spacing:14.999760px;}
.ws5a{word-spacing:15.179040px;}
.ws68{word-spacing:19.541520px;}
.ws67{word-spacing:19.661040px;}
.ws66{word-spacing:25.995600px;}
.ws5c{word-spacing:41.832000px;}
.ws50{word-spacing:74.221920px;}
._8{margin-left:-4.353840px;}
._9{margin-left:-2.188080px;}
._2{margin-left:-1.063800px;}
._3{width:1.037880px;}
._4{width:2.075400px;}
._5{width:3.279600px;}
._6{width:4.537440px;}
._7{width:7.344000px;}
._a{width:42.875136px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
.fc3{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:16.200000px;}
.y8{bottom:79.920000px;}
.y9{bottom:110.340000px;}
.y7{bottom:112.680000px;}
.y6{bottom:145.440000px;}
.y5{bottom:178.380000px;}
.y4e{bottom:214.200000px;}
.yb4{bottom:215.976960px;}
.y8f{bottom:220.680000px;}
.y72{bottom:226.800000px;}
.yb3{bottom:233.262540px;}
.y4d{bottom:238.140000px;}
.y2c{bottom:241.200000px;}
.y8e{bottom:244.440000px;}
.yb2{bottom:250.368840px;}
.y71{bottom:250.560000px;}
.y4c{bottom:261.900000px;}
.ydc{bottom:266.918220px;}
.yb1{bottom:267.654420px;}
.y8d{bottom:268.200000px;}
.y2b{bottom:273.780000px;}
.y70{bottom:274.500000px;}
.y4b{bottom:285.660000px;}
.yb0{bottom:289.440000px;}
.y8c{bottom:291.960000px;}
.ydb{bottom:293.197680px;}
.y6f{bottom:298.260000px;}
.y2a{bottom:303.480000px;}
.yda{bottom:310.483260px;}
.yaf{bottom:311.196960px;}
.y4a{bottom:318.420000px;}
.y6e{bottom:322.020000px;}
.y8b{bottom:324.900000px;}
.yd9{bottom:327.768840px;}
.yae{bottom:328.482540px;}
.y29{bottom:333.180000px;}
.y49{bottom:342.360000px;}
.yd8{bottom:345.054420px;}
.yad{bottom:345.768120px;}
.y6d{bottom:345.780000px;}
.y28{bottom:353.880000px;}
.y8a{bottom:354.240000px;}
.yac{bottom:362.874420px;}
.y48{bottom:366.120000px;}
.yd7{bottom:366.840000px;}
.y6c{bottom:369.720000px;}
.y27{bottom:374.580000px;}
.yab{bottom:384.660000px;}
.yd6{bottom:388.410300px;}
.y26{bottom:395.280000px;}
.y47{bottom:398.880000px;}
.y89{bottom:399.420000px;}
.y6b{bottom:402.480000px;}
.yd5{bottom:405.695880px;}
.yaa{bottom:406.428840px;}
.y25{bottom:415.980000px;}
.y46{bottom:422.640000px;}
.y88{bottom:423.180000px;}
.ya9{bottom:423.714420px;}
.y6a{bottom:426.240000px;}
.yd4{bottom:431.975340px;}
.ya8{bottom:445.500000px;}
.y24{bottom:445.680000px;}
.y45{bottom:446.580000px;}
.y87{bottom:446.940000px;}
.y69{bottom:450.000000px;}
.yd3{bottom:458.254800px;}
.y23{bottom:466.380000px;}
.ya7{bottom:467.094420px;}
.y68{bottom:473.940000px;}
.y44{bottom:479.340000px;}
.y86{bottom:479.700000px;}
.yd2{bottom:484.534260px;}
.ya6{bottom:488.880000px;}
.y22{bottom:496.080000px;}
.y67{bottom:497.700000px;}
.yd1{bottom:501.819840px;}
.y43{bottom:503.100000px;}
.y85{bottom:503.640000px;}
.ya5{bottom:518.940000px;}
.y66{bottom:521.460000px;}
.y21{bottom:525.780000px;}
.y42{bottom:526.860000px;}
.y84{bottom:527.400000px;}
.yd0{bottom:527.920020px;}
.ya4{bottom:539.640000px;}
.ycf{bottom:545.205600px;}
.y65{bottom:545.220000px;}
.y41{bottom:550.800000px;}
.y83{bottom:551.160000px;}
.y20{bottom:555.480000px;}
.y64{bottom:568.980000px;}
.yce{bottom:571.485060px;}
.ya3{bottom:572.580000px;}
.y40{bottom:574.560000px;}
.y82{bottom:583.920000px;}
.y1f{bottom:585.180000px;}
.ycd{bottom:588.770640px;}
.y63{bottom:592.920000px;}
.ya2{bottom:596.340000px;}
.y3f{bottom:604.800000px;}
.y1e{bottom:605.880000px;}
.y81{bottom:607.860000px;}
.ycc{bottom:615.050100px;}
.y62{bottom:616.680000px;}
.ya1{bottom:620.100000px;}
.y1d{bottom:626.580000px;}
.y80{bottom:631.620000px;}
.ycb{bottom:632.335680px;}
.y61{bottom:640.440000px;}
.y1c{bottom:647.280000px;}
.y3e{bottom:652.500000px;}
.ya0{bottom:652.860000px;}
.y7f{bottom:655.380000px;}
.yca{bottom:658.435860px;}
.y60{bottom:664.200000px;}
.y1b{bottom:667.980000px;}
.y3d{bottom:676.260000px;}
.y9f{bottom:676.800000px;}
.y7e{bottom:679.140000px;}
.yc9{bottom:684.715320px;}
.y5f{bottom:688.140000px;}
.y1a{bottom:697.680000px;}
.y3c{bottom:700.020000px;}
.y9e{bottom:700.560000px;}
.y7d{bottom:702.900000px;}
.yc8{bottom:710.994780px;}
.y19{bottom:718.380000px;}
.y5e{bottom:720.900000px;}
.y9d{bottom:724.320000px;}
.y7c{bottom:726.840000px;}
.yc7{bottom:728.280360px;}
.y3b{bottom:732.960000px;}
.y18{bottom:739.080000px;}
.y5d{bottom:744.660000px;}
.yc6{bottom:754.559820px;}
.y7b{bottom:756.180000px;}
.y3a{bottom:756.720000px;}
.y9c{bottom:757.080000px;}
.y17{bottom:768.780000px;}
.y5c{bottom:774.900000px;}
.y9b{bottom:781.020000px;}
.yc5{bottom:785.160000px;}
.y39{bottom:789.480000px;}
.y16{bottom:798.480000px;}
.y7a{bottom:801.360000px;}
.y9a{bottom:804.780000px;}
.yc4{bottom:806.928840px;}
.y38{bottom:813.240000px;}
.y5b{bottom:822.600000px;}
.yc3{bottom:824.214420px;}
.y79{bottom:825.120000px;}
.y15{bottom:828.180000px;}
.y37{bottom:837.180000px;}
.y99{bottom:837.540000px;}
.yc2{bottom:846.000000px;}
.y5a{bottom:846.360000px;}
.y78{bottom:855.360000px;}
.y14{bottom:857.880000px;}
.y98{bottom:861.300000px;}
.yc1{bottom:867.735540px;}
.y36{bottom:869.940000px;}
.y59{bottom:870.300000px;}
.yc0{bottom:885.021120px;}
.y13{bottom:887.580000px;}
.y58{bottom:894.060000px;}
.y97{bottom:894.240000px;}
.y35{bottom:902.700000px;}
.y77{bottom:903.060000px;}
.ybf{bottom:911.121300px;}
.y12{bottom:917.280000px;}
.y57{bottom:917.820000px;}
.y96{bottom:918.000000px;}
.y34{bottom:926.460000px;}
.y76{bottom:926.820000px;}
.ybe{bottom:928.406880px;}
.y11{bottom:937.620000px;}
.y56{bottom:941.580000px;}
.y95{bottom:941.760000px;}
.ybd{bottom:945.692460px;}
.y33{bottom:950.220000px;}
.y75{bottom:950.580000px;}
.y10{bottom:967.680000px;}
.y94{bottom:971.280000px;}
.ybc{bottom:971.971920px;}
.y55{bottom:974.520000px;}
.y32{bottom:983.160000px;}
.y74{bottom:983.520000px;}
.ybb{bottom:989.257500px;}
.yf{bottom:989.460000px;}
.y54{bottom:998.280000px;}
.yba{bottom:1006.543080px;}
.y31{bottom:1006.920000px;}
.y73{bottom:1007.280000px;}
.y93{bottom:1016.280000px;}
.y30{bottom:1030.680000px;}
.ye{bottom:1030.684320px;}
.y53{bottom:1031.040000px;}
.yb9{bottom:1032.643260px;}
.y92{bottom:1040.040000px;}
.yb8{bottom:1049.928840px;}
.yd{bottom:1054.440000px;}
.y52{bottom:1054.800000px;}
.y91{bottom:1063.800000px;}
.yb7{bottom:1067.214420px;}
.y2f{bottom:1078.380000px;}
.y51{bottom:1078.740000px;}
.y90{bottom:1087.740000px;}
.yb6{bottom:1089.000000px;}
.y2e{bottom:1102.140000px;}
.yc{bottom:1105.382700px;}
.y50{bottom:1111.500000px;}
.yb5{bottom:1114.560000px;}
.yb{bottom:1130.760000px;}
.y2d{bottom:1132.380000px;}
.y4f{bottom:1135.260000px;}
.y4{bottom:1168.020000px;}
.y3{bottom:1189.260000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h6{height:32.940000px;}
.h11{height:35.573906px;}
.h3{height:38.759766px;}
.h4{height:47.545312px;}
.hc{height:48.656250px;}
.ha{height:48.905156px;}
.hf{height:52.417969px;}
.h12{height:53.573906px;}
.h9{height:54.208125px;}
.hb{height:58.121719px;}
.hd{height:61.329023px;}
.h5{height:63.175781px;}
.h8{height:63.635625px;}
.h10{height:64.546875px;}
.h7{height:68.938594px;}
.he{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:21.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.620000px;}
.xf{left:148.860000px;}
.x1{left:152.820000px;}
.xd{left:154.620000px;}
.xa{left:272.520000px;}
.x4{left:294.660000px;}
.xe{left:343.620000px;}
.x7{left:411.490800px;}
.x5{left:461.700000px;}
.x9{left:473.746320px;}
.x8{left:484.380000px;}
.x6{left:513.000000px;}
.x2{left:533.344500px;}
.xb{left:642.420000px;}
.xc{left:829.080000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-0.299520pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls33{letter-spacing:-0.265600pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.224640pt;}
.ls32{letter-spacing:-0.212480pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls31{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.074880pt;}
.ls10{letter-spacing:-0.069120pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.053120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.048000pt;}
.ls30{letter-spacing:0.053120pt;}
.ls19{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.069120pt;}
.ls0{letter-spacing:0.117760pt;}
.ls14{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.207360pt;}
.ls2a{letter-spacing:0.212480pt;}
.ls1a{letter-spacing:0.239360pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.257280pt;}
.ls2c{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.288000pt;}
.ls2d{letter-spacing:0.308096pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.343040pt;}
.ls2b{letter-spacing:0.345280pt;}
.ls36{letter-spacing:0.446208pt;}
.ls37{letter-spacing:0.451520pt;}
.lsf{letter-spacing:0.483840pt;}
.ls28{letter-spacing:0.499328pt;}
.ls34{letter-spacing:0.531200pt;}
.ls2f{letter-spacing:0.557760pt;}
.ls18{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.849920pt;}
.ls38{letter-spacing:0.903040pt;}
.ls20{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls29{letter-spacing:7.011840pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls21{letter-spacing:7.680000pt;}
.ls2e{letter-spacing:11.776704pt;}
.ls35{letter-spacing:13.386240pt;}
.ls39{letter-spacing:17.210880pt;}
.ls22{letter-spacing:30.208000pt;}
.ls5{letter-spacing:752.000000pt;}
.ws6{word-spacing:-24.122880pt;}
.ws5{word-spacing:-23.846400pt;}
.ws8{word-spacing:-23.708160pt;}
.ws7{word-spacing:-23.569920pt;}
.ws1a{word-spacing:-20.517120pt;}
.ws3c{word-spacing:-18.048000pt;}
.ws3d{word-spacing:-17.728000pt;}
.ws1c{word-spacing:-16.128000pt;}
.ws41{word-spacing:-16.000000pt;}
.ws2d{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws46{word-spacing:-15.298560pt;}
.ws58{word-spacing:-14.979840pt;}
.ws56{word-spacing:-14.714240pt;}
.ws43{word-spacing:-14.661120pt;}
.ws57{word-spacing:-14.554880pt;}
.ws45{word-spacing:-14.501760pt;}
.ws1{word-spacing:-11.952000pt;}
.ws4{word-spacing:-11.136000pt;}
.ws3b{word-spacing:-11.063040pt;}
.ws2e{word-spacing:-10.977280pt;}
.ws0{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.752000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws42{word-spacing:-9.607680pt;}
.ws51{word-spacing:-3.930880pt;}
.ws31{word-spacing:-3.840000pt;}
.ws53{word-spacing:-3.771520pt;}
.ws5f{word-spacing:-3.293440pt;}
.ws16{word-spacing:-3.200000pt;}
.ws60{word-spacing:-3.134080pt;}
.ws52{word-spacing:-3.027840pt;}
.ws30{word-spacing:-2.560000pt;}
.ws6a{word-spacing:-2.496640pt;}
.ws29{word-spacing:-2.304000pt;}
.ws19{word-spacing:-1.920000pt;}
.ws5b{word-spacing:-1.859200pt;}
.ws32{word-spacing:-1.664000pt;}
.ws21{word-spacing:-1.280000pt;}
.ws4e{word-spacing:-1.221760pt;}
.ws35{word-spacing:-1.024000pt;}
.ws1e{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.599040pt;}
.ws47{word-spacing:-0.584320pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.224640pt;}
.wsf{word-spacing:-0.176640pt;}
.ws10{word-spacing:-0.159360pt;}
.ws15{word-spacing:-0.128000pt;}
.ws49{word-spacing:-0.106240pt;}
.ws1b{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws44{word-spacing:0.053120pt;}
.ws40{word-spacing:0.064000pt;}
.wsc{word-spacing:0.096000pt;}
.ws4d{word-spacing:0.106240pt;}
.ws62{word-spacing:0.159360pt;}
.ws3f{word-spacing:0.192000pt;}
.wsd{word-spacing:0.224640pt;}
.wsb{word-spacing:0.235520pt;}
.ws1d{word-spacing:0.256000pt;}
.ws33{word-spacing:0.374400pt;}
.ws24{word-spacing:0.640000pt;}
.ws4a{word-spacing:0.690560pt;}
.ws39{word-spacing:0.896000pt;}
.ws2a{word-spacing:1.152000pt;}
.ws23{word-spacing:1.280000pt;}
.ws61{word-spacing:1.328000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws26{word-spacing:1.792000pt;}
.ws11{word-spacing:1.920000pt;}
.ws27{word-spacing:2.176000pt;}
.ws17{word-spacing:2.560000pt;}
.ws37{word-spacing:3.072000pt;}
.ws2c{word-spacing:3.200000pt;}
.ws55{word-spacing:3.293440pt;}
.ws38{word-spacing:3.456000pt;}
.ws13{word-spacing:3.840000pt;}
.ws65{word-spacing:3.930880pt;}
.ws22{word-spacing:4.096000pt;}
.ws28{word-spacing:4.352000pt;}
.ws3a{word-spacing:4.480000pt;}
.ws12{word-spacing:4.736000pt;}
.ws18{word-spacing:4.992000pt;}
.ws2b{word-spacing:5.120000pt;}
.ws14{word-spacing:5.760000pt;}
.ws5e{word-spacing:5.843200pt;}
.ws34{word-spacing:6.400000pt;}
.ws64{word-spacing:6.480640pt;}
.ws20{word-spacing:7.040000pt;}
.ws4c{word-spacing:7.118080pt;}
.ws4b{word-spacing:7.224320pt;}
.ws36{word-spacing:7.296000pt;}
.ws3e{word-spacing:7.680000pt;}
.ws5d{word-spacing:8.233600pt;}
.ws4f{word-spacing:8.392960pt;}
.ws63{word-spacing:9.030400pt;}
.ws48{word-spacing:10.880000pt;}
.ws54{word-spacing:10.942720pt;}
.ws69{word-spacing:12.217600pt;}
.ws59{word-spacing:13.333120pt;}
.ws5a{word-spacing:13.492480pt;}
.ws68{word-spacing:17.370240pt;}
.ws67{word-spacing:17.476480pt;}
.ws66{word-spacing:23.107200pt;}
.ws5c{word-spacing:37.184000pt;}
.ws50{word-spacing:65.975040pt;}
._8{margin-left:-3.870080pt;}
._9{margin-left:-1.944960pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.922560pt;}
._4{width:1.844800pt;}
._5{width:2.915200pt;}
._6{width:4.033280pt;}
._7{width:6.528000pt;}
._a{width:38.111232pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:14.400000pt;}
.y8{bottom:71.040000pt;}
.y9{bottom:98.080000pt;}
.y7{bottom:100.160000pt;}
.y6{bottom:129.280000pt;}
.y5{bottom:158.560000pt;}
.y4e{bottom:190.400000pt;}
.yb4{bottom:191.979520pt;}
.y8f{bottom:196.160000pt;}
.y72{bottom:201.600000pt;}
.yb3{bottom:207.344480pt;}
.y4d{bottom:211.680000pt;}
.y2c{bottom:214.400000pt;}
.y8e{bottom:217.280000pt;}
.yb2{bottom:222.550080pt;}
.y71{bottom:222.720000pt;}
.y4c{bottom:232.800000pt;}
.ydc{bottom:237.260640pt;}
.yb1{bottom:237.915040pt;}
.y8d{bottom:238.400000pt;}
.y2b{bottom:243.360000pt;}
.y70{bottom:244.000000pt;}
.y4b{bottom:253.920000pt;}
.yb0{bottom:257.280000pt;}
.y8c{bottom:259.520000pt;}
.ydb{bottom:260.620160pt;}
.y6f{bottom:265.120000pt;}
.y2a{bottom:269.760000pt;}
.yda{bottom:275.985120pt;}
.yaf{bottom:276.619520pt;}
.y4a{bottom:283.040000pt;}
.y6e{bottom:286.240000pt;}
.y8b{bottom:288.800000pt;}
.yd9{bottom:291.350080pt;}
.yae{bottom:291.984480pt;}
.y29{bottom:296.160000pt;}
.y49{bottom:304.320000pt;}
.yd8{bottom:306.715040pt;}
.yad{bottom:307.349440pt;}
.y6d{bottom:307.360000pt;}
.y28{bottom:314.560000pt;}
.y8a{bottom:314.880000pt;}
.yac{bottom:322.555040pt;}
.y48{bottom:325.440000pt;}
.yd7{bottom:326.080000pt;}
.y6c{bottom:328.640000pt;}
.y27{bottom:332.960000pt;}
.yab{bottom:341.920000pt;}
.yd6{bottom:345.253600pt;}
.y26{bottom:351.360000pt;}
.y47{bottom:354.560000pt;}
.y89{bottom:355.040000pt;}
.y6b{bottom:357.760000pt;}
.yd5{bottom:360.618560pt;}
.yaa{bottom:361.270080pt;}
.y25{bottom:369.760000pt;}
.y46{bottom:375.680000pt;}
.y88{bottom:376.160000pt;}
.ya9{bottom:376.635040pt;}
.y6a{bottom:378.880000pt;}
.yd4{bottom:383.978080pt;}
.ya8{bottom:396.000000pt;}
.y24{bottom:396.160000pt;}
.y45{bottom:396.960000pt;}
.y87{bottom:397.280000pt;}
.y69{bottom:400.000000pt;}
.yd3{bottom:407.337600pt;}
.y23{bottom:414.560000pt;}
.ya7{bottom:415.195040pt;}
.y68{bottom:421.280000pt;}
.y44{bottom:426.080000pt;}
.y86{bottom:426.400000pt;}
.yd2{bottom:430.697120pt;}
.ya6{bottom:434.560000pt;}
.y22{bottom:440.960000pt;}
.y67{bottom:442.400000pt;}
.yd1{bottom:446.062080pt;}
.y43{bottom:447.200000pt;}
.y85{bottom:447.680000pt;}
.ya5{bottom:461.280000pt;}
.y66{bottom:463.520000pt;}
.y21{bottom:467.360000pt;}
.y42{bottom:468.320000pt;}
.y84{bottom:468.800000pt;}
.yd0{bottom:469.262240pt;}
.ya4{bottom:479.680000pt;}
.ycf{bottom:484.627200pt;}
.y65{bottom:484.640000pt;}
.y41{bottom:489.600000pt;}
.y83{bottom:489.920000pt;}
.y20{bottom:493.760000pt;}
.y64{bottom:505.760000pt;}
.yce{bottom:507.986720pt;}
.ya3{bottom:508.960000pt;}
.y40{bottom:510.720000pt;}
.y82{bottom:519.040000pt;}
.y1f{bottom:520.160000pt;}
.ycd{bottom:523.351680pt;}
.y63{bottom:527.040000pt;}
.ya2{bottom:530.080000pt;}
.y3f{bottom:537.600000pt;}
.y1e{bottom:538.560000pt;}
.y81{bottom:540.320000pt;}
.ycc{bottom:546.711200pt;}
.y62{bottom:548.160000pt;}
.ya1{bottom:551.200000pt;}
.y1d{bottom:556.960000pt;}
.y80{bottom:561.440000pt;}
.ycb{bottom:562.076160pt;}
.y61{bottom:569.280000pt;}
.y1c{bottom:575.360000pt;}
.y3e{bottom:580.000000pt;}
.ya0{bottom:580.320000pt;}
.y7f{bottom:582.560000pt;}
.yca{bottom:585.276320pt;}
.y60{bottom:590.400000pt;}
.y1b{bottom:593.760000pt;}
.y3d{bottom:601.120000pt;}
.y9f{bottom:601.600000pt;}
.y7e{bottom:603.680000pt;}
.yc9{bottom:608.635840pt;}
.y5f{bottom:611.680000pt;}
.y1a{bottom:620.160000pt;}
.y3c{bottom:622.240000pt;}
.y9e{bottom:622.720000pt;}
.y7d{bottom:624.800000pt;}
.yc8{bottom:631.995360pt;}
.y19{bottom:638.560000pt;}
.y5e{bottom:640.800000pt;}
.y9d{bottom:643.840000pt;}
.y7c{bottom:646.080000pt;}
.yc7{bottom:647.360320pt;}
.y3b{bottom:651.520000pt;}
.y18{bottom:656.960000pt;}
.y5d{bottom:661.920000pt;}
.yc6{bottom:670.719840pt;}
.y7b{bottom:672.160000pt;}
.y3a{bottom:672.640000pt;}
.y9c{bottom:672.960000pt;}
.y17{bottom:683.360000pt;}
.y5c{bottom:688.800000pt;}
.y9b{bottom:694.240000pt;}
.yc5{bottom:697.920000pt;}
.y39{bottom:701.760000pt;}
.y16{bottom:709.760000pt;}
.y7a{bottom:712.320000pt;}
.y9a{bottom:715.360000pt;}
.yc4{bottom:717.270080pt;}
.y38{bottom:722.880000pt;}
.y5b{bottom:731.200000pt;}
.yc3{bottom:732.635040pt;}
.y79{bottom:733.440000pt;}
.y15{bottom:736.160000pt;}
.y37{bottom:744.160000pt;}
.y99{bottom:744.480000pt;}
.yc2{bottom:752.000000pt;}
.y5a{bottom:752.320000pt;}
.y78{bottom:760.320000pt;}
.y14{bottom:762.560000pt;}
.y98{bottom:765.600000pt;}
.yc1{bottom:771.320480pt;}
.y36{bottom:773.280000pt;}
.y59{bottom:773.600000pt;}
.yc0{bottom:786.685440pt;}
.y13{bottom:788.960000pt;}
.y58{bottom:794.720000pt;}
.y97{bottom:794.880000pt;}
.y35{bottom:802.400000pt;}
.y77{bottom:802.720000pt;}
.ybf{bottom:809.885600pt;}
.y12{bottom:815.360000pt;}
.y57{bottom:815.840000pt;}
.y96{bottom:816.000000pt;}
.y34{bottom:823.520000pt;}
.y76{bottom:823.840000pt;}
.ybe{bottom:825.250560pt;}
.y11{bottom:833.440000pt;}
.y56{bottom:836.960000pt;}
.y95{bottom:837.120000pt;}
.ybd{bottom:840.615520pt;}
.y33{bottom:844.640000pt;}
.y75{bottom:844.960000pt;}
.y10{bottom:860.160000pt;}
.y94{bottom:863.360000pt;}
.ybc{bottom:863.975040pt;}
.y55{bottom:866.240000pt;}
.y32{bottom:873.920000pt;}
.y74{bottom:874.240000pt;}
.ybb{bottom:879.340000pt;}
.yf{bottom:879.520000pt;}
.y54{bottom:887.360000pt;}
.yba{bottom:894.704960pt;}
.y31{bottom:895.040000pt;}
.y73{bottom:895.360000pt;}
.y93{bottom:903.360000pt;}
.y30{bottom:916.160000pt;}
.ye{bottom:916.163840pt;}
.y53{bottom:916.480000pt;}
.yb9{bottom:917.905120pt;}
.y92{bottom:924.480000pt;}
.yb8{bottom:933.270080pt;}
.yd{bottom:937.280000pt;}
.y52{bottom:937.600000pt;}
.y91{bottom:945.600000pt;}
.yb7{bottom:948.635040pt;}
.y2f{bottom:958.560000pt;}
.y51{bottom:958.880000pt;}
.y90{bottom:966.880000pt;}
.yb6{bottom:968.000000pt;}
.y2e{bottom:979.680000pt;}
.yc{bottom:982.562400pt;}
.y50{bottom:988.000000pt;}
.yb5{bottom:990.720000pt;}
.yb{bottom:1005.120000pt;}
.y2d{bottom:1006.560000pt;}
.y4f{bottom:1009.120000pt;}
.y4{bottom:1038.240000pt;}
.y3{bottom:1057.120000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h6{height:29.280000pt;}
.h11{height:31.621250pt;}
.h3{height:34.453125pt;}
.h4{height:42.262500pt;}
.hc{height:43.250000pt;}
.ha{height:43.471250pt;}
.hf{height:46.593750pt;}
.h12{height:47.621250pt;}
.h9{height:48.185000pt;}
.hb{height:51.663750pt;}
.hd{height:54.514687pt;}
.h5{height:56.156250pt;}
.h8{height:56.565000pt;}
.h10{height:57.375000pt;}
.h7{height:61.278750pt;}
.he{height:61.944688pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:18.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.440000pt;}
.xf{left:132.320000pt;}
.x1{left:135.840000pt;}
.xd{left:137.440000pt;}
.xa{left:242.240000pt;}
.x4{left:261.920000pt;}
.xe{left:305.440000pt;}
.x7{left:365.769600pt;}
.x5{left:410.400000pt;}
.x9{left:421.107840pt;}
.x8{left:430.560000pt;}
.x6{left:456.000000pt;}
.x2{left:474.084000pt;}
.xb{left:571.040000pt;}
.xc{left:736.960000pt;}
}




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