
    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_419cc3e2050aac22912de452.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_1a0277179a5a2e8b96e8ea02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_05e4d325e64395df8efcfcc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_846fd1183e275bd853f6c48e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_a0f850c72d05b54858ca697d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_5d57e106f5fc61c1bc215578.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a0277179a5a2e8b96e8ea02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_12d40b156d265cca3dc9beb6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_8eacfb88b3be4d31aff5f8c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_a7428c78f8a4c05a6d142ac2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859000;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_25195015fca9747c07d3e7fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_930d49ae08cfe462bef54be1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;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);}
.v3{vertical-align:-19.800000px;}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.020800px;}
.lsd{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004800px;}
.ls1b{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.264000px;}
.ls27{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.429000px;}
.lsa{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.561000px;}
.lsc{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.660000px;}
.ls29{letter-spacing:0.693000px;}
.ls1c{letter-spacing:0.726000px;}
.ls17{letter-spacing:0.759000px;}
.ls8{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.858000px;}
.ls1f{letter-spacing:0.924000px;}
.ls4{letter-spacing:0.957000px;}
.ls2a{letter-spacing:0.990000px;}
.ls2c{letter-spacing:1.056000px;}
.ls23{letter-spacing:1.122000px;}
.ls5{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.221000px;}
.ls14{letter-spacing:1.254000px;}
.ls12{letter-spacing:1.320000px;}
.ls21{letter-spacing:1.386000px;}
.lsf{letter-spacing:1.518000px;}
.ls1e{letter-spacing:1.584000px;}
.ls25{letter-spacing:1.650000px;}
.ls9{letter-spacing:1.716000px;}
.lsb{letter-spacing:1.782000px;}
.ls10{letter-spacing:1.815000px;}
.ls2d{letter-spacing:2.046000px;}
.ls24{letter-spacing:2.112000px;}
.ls7{letter-spacing:2.244000px;}
.ls16{letter-spacing:2.310000px;}
.ls20{letter-spacing:2.442000px;}
.ls2e{letter-spacing:2.574000px;}
.ls15{letter-spacing:3.234000px;}
.ls2b{letter-spacing:4.880400px;}
.ls1a{letter-spacing:2071.568400px;}
.lse{letter-spacing:2192.518800px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.wsc{word-spacing:-16.500000px;}
.ws66{word-spacing:-16.434000px;}
.ws51{word-spacing:-14.520000px;}
.ws21{word-spacing:-12.750000px;}
.wsd{word-spacing:-9.009000px;}
.wse{word-spacing:-7.371000px;}
.ws5d{word-spacing:-1.782000px;}
.ws13{word-spacing:-1.320000px;}
.ws62{word-spacing:-1.254000px;}
.ws5b{word-spacing:-1.056000px;}
.ws61{word-spacing:-0.990000px;}
.ws64{word-spacing:-0.792000px;}
.ws40{word-spacing:-0.660000px;}
.ws53{word-spacing:-0.594000px;}
.ws5a{word-spacing:-0.528000px;}
.ws4{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.396000px;}
.ws5c{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.264000px;}
.wsb{word-spacing:-0.198000px;}
.ws5f{word-spacing:-0.132000px;}
.ws5e{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws58{word-spacing:0.132000px;}
.ws63{word-spacing:0.396000px;}
.ws1e{word-spacing:0.432000px;}
.ws2b{word-spacing:0.594000px;}
.ws32{word-spacing:0.858000px;}
.ws2e{word-spacing:0.924000px;}
.ws30{word-spacing:0.990000px;}
.ws3b{word-spacing:1.056000px;}
.ws2a{word-spacing:1.122000px;}
.ws43{word-spacing:1.320000px;}
.ws4d{word-spacing:1.386000px;}
.ws57{word-spacing:1.452000px;}
.ws4c{word-spacing:1.518000px;}
.ws35{word-spacing:1.584000px;}
.ws20{word-spacing:1.620000px;}
.ws3e{word-spacing:1.782000px;}
.ws4f{word-spacing:2.046000px;}
.ws1f{word-spacing:2.106000px;}
.ws15{word-spacing:2.112000px;}
.ws49{word-spacing:2.178000px;}
.ws45{word-spacing:2.310000px;}
.ws3c{word-spacing:2.442000px;}
.ws60{word-spacing:2.508000px;}
.ws56{word-spacing:2.706000px;}
.ws28{word-spacing:2.772000px;}
.ws24{word-spacing:2.838000px;}
.ws44{word-spacing:2.970000px;}
.ws1d{word-spacing:3.024000px;}
.ws25{word-spacing:3.234000px;}
.ws22{word-spacing:3.300000px;}
.ws38{word-spacing:3.366000px;}
.ws1c{word-spacing:3.402000px;}
.ws10{word-spacing:3.432000px;}
.ws33{word-spacing:3.498000px;}
.ws59{word-spacing:3.762000px;}
.ws3f{word-spacing:3.960000px;}
.ws1b{word-spacing:4.092000px;}
.ws23{word-spacing:4.224000px;}
.ws36{word-spacing:4.290000px;}
.ws55{word-spacing:4.356000px;}
.ws9{word-spacing:4.422000px;}
.ws11{word-spacing:4.620000px;}
.ws12{word-spacing:4.686000px;}
.ws37{word-spacing:4.752000px;}
.ws4b{word-spacing:4.818000px;}
.ws31{word-spacing:4.950000px;}
.ws4e{word-spacing:5.016000px;}
.ws39{word-spacing:5.148000px;}
.ws41{word-spacing:5.214000px;}
.ws52{word-spacing:5.280000px;}
.ws5{word-spacing:5.328000px;}
.ws46{word-spacing:5.346000px;}
.ws8{word-spacing:5.412000px;}
.ws4a{word-spacing:5.478000px;}
.ws42{word-spacing:5.610000px;}
.ws29{word-spacing:5.676000px;}
.ws3a{word-spacing:5.742000px;}
.ws16{word-spacing:5.874000px;}
.ws14{word-spacing:5.940000px;}
.ws54{word-spacing:6.006000px;}
.ws65{word-spacing:6.138000px;}
.ws26{word-spacing:6.270000px;}
.ws3d{word-spacing:6.336000px;}
.ws34{word-spacing:6.534000px;}
.ws2d{word-spacing:6.600000px;}
.ws47{word-spacing:6.666000px;}
.ws50{word-spacing:6.732000px;}
.ws27{word-spacing:6.798000px;}
.ws1a{word-spacing:6.864000px;}
.ws7{word-spacing:6.930000px;}
.ws48{word-spacing:6.996000px;}
.wsa{word-spacing:7.458000px;}
.ws19{word-spacing:7.722000px;}
.ws2f{word-spacing:8.052000px;}
.ws6{word-spacing:10.656000px;}
.ws18{word-spacing:10.692000px;}
.wsf{word-spacing:12.750000px;}
.ws3{word-spacing:13.344000px;}
._2{margin-left:-24.000000px;}
._4{margin-left:-2.626800px;}
._3{margin-left:-1.194600px;}
._7{width:1.023000px;}
._8{width:6.402000px;}
._1{width:8.112000px;}
._0{width:13.824000px;}
._5{width:50.381400px;}
._6{width:53.405400px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.100000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y109{bottom:138.053850px;}
.y50{bottom:138.198000px;}
.y7a{bottom:138.646200px;}
.ya5{bottom:139.784850px;}
.ye4{bottom:140.207850px;}
.y7{bottom:140.316450px;}
.yc3{bottom:140.692200px;}
.y6{bottom:153.108450px;}
.y4f{bottom:154.182000px;}
.y108{bottom:158.926350px;}
.y79{bottom:159.436200px;}
.ya4{bottom:160.574850px;}
.yc2{bottom:161.482200px;}
.y4e{bottom:170.166000px;}
.ye3{bottom:171.392850px;}
.y5{bottom:172.276800px;}
.y107{bottom:179.798850px;}
.y78{bottom:180.152100px;}
.ya3{bottom:181.364850px;}
.yc1{bottom:182.272200px;}
.y4d{bottom:190.200000px;}
.y4{bottom:191.452800px;}
.ye2{bottom:192.182850px;}
.y77{bottom:200.942100px;}
.y4c{bottom:202.146000px;}
.ya2{bottom:202.154850px;}
.yc0{bottom:203.062200px;}
.y3{bottom:204.244800px;}
.y106{bottom:212.155350px;}
.ye1{bottom:212.972850px;}
.y4b{bottom:218.130000px;}
.y76{bottom:221.732100px;}
.ya1{bottom:222.944850px;}
.ybf{bottom:223.852200px;}
.y105{bottom:233.027850px;}
.y4a{bottom:234.114000px;}
.ya0{bottom:243.734850px;}
.ye0{bottom:244.157850px;}
.ybe{bottom:244.642200px;}
.y75{bottom:252.917100px;}
.y49{bottom:254.148000px;}
.y25{bottom:256.372650px;}
.y9f{bottom:264.524850px;}
.ydf{bottom:264.947850px;}
.y104{bottom:265.384350px;}
.ybd{bottom:265.432200px;}
.y74{bottom:273.707100px;}
.y24{bottom:277.162650px;}
.y9e{bottom:285.314850px;}
.yde{bottom:285.737850px;}
.ybc{bottom:286.222200px;}
.y103{bottom:286.256850px;}
.y73{bottom:294.497100px;}
.y23{bottom:297.952650px;}
.y9d{bottom:306.104850px;}
.ybb{bottom:307.012200px;}
.y48{bottom:309.197700px;}
.y72{bottom:315.287100px;}
.y102{bottom:318.613350px;}
.y22{bottom:318.742650px;}
.y9c{bottom:326.894850px;}
.yba{bottom:327.802200px;}
.y47{bottom:329.959650px;}
.ydd{bottom:331.800600px;}
.y71{bottom:336.077100px;}
.y101{bottom:339.485850px;}
.y21{bottom:339.532650px;}
.yb9{bottom:348.592200px;}
.y46{bottom:350.749650px;}
.y70{bottom:356.867100px;}
.y20{bottom:360.322650px;}
.y9b{bottom:360.439350px;}
.y45{bottom:371.539650px;}
.y100{bottom:371.842350px;}
.y6f{bottom:377.657100px;}
.yb8{bottom:379.777200px;}
.y1f{bottom:381.112650px;}
.y9a{bottom:381.229350px;}
.y44{bottom:392.329650px;}
.yb7{bottom:400.567200px;}
.y1e{bottom:401.902650px;}
.y99{bottom:402.019350px;}
.yff{bottom:404.198850px;}
.y6e{bottom:408.842100px;}
.y43{bottom:413.119650px;}
.yb6{bottom:421.357200px;}
.y1d{bottom:422.692650px;}
.y98{bottom:422.809350px;}
.yfe{bottom:425.071350px;}
.ydc{bottom:425.389200px;}
.y6d{bottom:429.632100px;}
.y42{bottom:433.909650px;}
.yb5{bottom:442.147200px;}
.y1c{bottom:443.482650px;}
.y97{bottom:443.599350px;}
.ydb{bottom:446.179200px;}
.y6c{bottom:450.422100px;}
.y41{bottom:454.699650px;}
.yfd{bottom:457.427850px;}
.yb4{bottom:462.937200px;}
.y1b{bottom:464.272650px;}
.y96{bottom:464.389350px;}
.yda{bottom:466.969200px;}
.y6b{bottom:471.212100px;}
.yb3{bottom:483.727200px;}
.y1a{bottom:485.062650px;}
.y95{bottom:485.179350px;}
.y40{bottom:485.884650px;}
.yd9{bottom:487.759200px;}
.yfc{bottom:489.784350px;}
.y6a{bottom:492.002100px;}
.yb2{bottom:504.517200px;}
.y19{bottom:505.852650px;}
.y94{bottom:505.969350px;}
.y3f{bottom:506.674650px;}
.yd8{bottom:508.549200px;}
.yfb{bottom:510.656850px;}
.y69{bottom:512.792100px;}
.yb1{bottom:525.307200px;}
.y18{bottom:526.642650px;}
.y93{bottom:526.759350px;}
.y3e{bottom:527.409450px;}
.yd7{bottom:529.339200px;}
.yfa{bottom:531.529350px;}
.y68{bottom:533.582100px;}
.y17{bottom:547.432650px;}
.y92{bottom:547.549350px;}
.y3d{bottom:548.199450px;}
.yd6{bottom:550.129200px;}
.y67{bottom:554.372100px;}
.yb0{bottom:556.492200px;}
.yf9{bottom:563.885850px;}
.y16{bottom:568.222650px;}
.y91{bottom:568.339350px;}
.y3c{bottom:568.989450px;}
.yd5{bottom:570.919200px;}
.y66{bottom:575.162100px;}
.yaf{bottom:577.282200px;}
.yf8{bottom:584.758350px;}
.y15{bottom:589.012650px;}
.y90{bottom:589.129350px;}
.y3b{bottom:589.779450px;}
.yd4{bottom:591.709200px;}
.y65{bottom:595.952100px;}
.yae{bottom:598.072200px;}
.yf7{bottom:605.630850px;}
.y8f{bottom:609.919350px;}
.y3a{bottom:610.569450px;}
.yd3{bottom:612.499200px;}
.y64{bottom:616.742100px;}
.yad{bottom:618.862200px;}
.y8e{bottom:630.709350px;}
.y39{bottom:631.359450px;}
.yd2{bottom:633.289200px;}
.y14{bottom:635.075550px;}
.y63{bottom:637.532100px;}
.yf6{bottom:637.987350px;}
.yac{bottom:639.652200px;}
.y8d{bottom:651.499350px;}
.y38{bottom:652.149450px;}
.y62{bottom:658.322100px;}
.yf5{bottom:658.859850px;}
.yab{bottom:660.442200px;}
.y61{bottom:679.112100px;}
.yd1{bottom:679.351950px;}
.yaa{bottom:681.232200px;}
.y37{bottom:683.334450px;}
.y8c{bottom:685.043850px;}
.yf4{bottom:691.216350px;}
.y60{bottom:699.902100px;}
.ya9{bottom:702.022200px;}
.y36{bottom:704.124450px;}
.y8b{bottom:705.833850px;}
.yf3{bottom:712.088850px;}
.ya8{bottom:722.812200px;}
.y35{bottom:724.914450px;}
.y8a{bottom:726.623850px;}
.y13{bottom:726.931050px;}
.yf2{bottom:732.961350px;}
.ya7{bottom:743.602200px;}
.y34{bottom:745.704450px;}
.y5f{bottom:745.965000px;}
.y89{bottom:747.413850px;}
.y12{bottom:747.721050px;}
.yf1{bottom:765.317850px;}
.y33{bottom:766.494450px;}
.y88{bottom:768.203850px;}
.y11{bottom:768.511050px;}
.yd0{bottom:772.937700px;}
.yf0{bottom:786.190350px;}
.y32{bottom:787.284450px;}
.y87{bottom:788.993850px;}
.y10{bottom:789.301050px;}
.ya6{bottom:789.665100px;}
.ycf{bottom:793.727700px;}
.yef{bottom:807.062850px;}
.y31{bottom:808.074450px;}
.y86{bottom:809.783850px;}
.yf{bottom:810.091050px;}
.yce{bottom:814.517700px;}
.y30{bottom:828.864450px;}
.y85{bottom:830.573850px;}
.ye{bottom:830.881050px;}
.y5e{bottom:835.294350px;}
.ycd{bottom:835.307700px;}
.yee{bottom:839.419350px;}
.y2f{bottom:849.654450px;}
.y84{bottom:851.363850px;}
.y5d{bottom:856.084350px;}
.ycc{bottom:856.097700px;}
.yd{bottom:870.062100px;}
.y2e{bottom:870.444450px;}
.yed{bottom:871.775850px;}
.y83{bottom:872.153850px;}
.y5c{bottom:876.874350px;}
.ycb{bottom:876.887700px;}
.y2d{bottom:891.234450px;}
.yec{bottom:892.648350px;}
.y82{bottom:892.943850px;}
.y5b{bottom:897.664350px;}
.yca{bottom:897.677700px;}
.y2c{bottom:912.024450px;}
.yeb{bottom:913.520850px;}
.y5a{bottom:918.454350px;}
.yc9{bottom:918.467700px;}
.y81{bottom:926.488350px;}
.y59{bottom:939.244350px;}
.yc8{bottom:939.257700px;}
.yea{bottom:945.877350px;}
.y80{bottom:947.278350px;}
.y2b{bottom:958.087350px;}
.y10d{bottom:960.032850px;}
.y58{bottom:960.034350px;}
.yc7{bottom:960.047700px;}
.y7f{bottom:968.068350px;}
.ye9{bottom:978.233850px;}
.y10c{bottom:980.822850px;}
.y57{bottom:980.824350px;}
.yc6{bottom:980.837700px;}
.yc{bottom:987.921150px;}
.y7e{bottom:988.858350px;}
.ye8{bottom:999.106350px;}
.yc5{bottom:1001.612850px;}
.y56{bottom:1001.614350px;}
.yb{bottom:1008.708150px;}
.y7d{bottom:1009.648350px;}
.y10b{bottom:1012.007850px;}
.yc4{bottom:1022.402850px;}
.y55{bottom:1022.404350px;}
.y7c{bottom:1030.438350px;}
.ye7{bottom:1031.462850px;}
.y10a{bottom:1032.797850px;}
.y2a{bottom:1043.192850px;}
.y54{bottom:1043.194350px;}
.y7b{bottom:1051.228350px;}
.ye6{bottom:1063.819350px;}
.y29{bottom:1063.982850px;}
.y53{bottom:1063.984350px;}
.ye5{bottom:1084.691850px;}
.y28{bottom:1084.772850px;}
.y52{bottom:1084.774350px;}
.ya{bottom:1097.478000px;}
.y27{bottom:1105.562850px;}
.y51{bottom:1105.564350px;}
.y2{bottom:1162.729350px;}
.y26{bottom:1172.229900px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.he{height:27.904500px;}
.h3{height:35.328000px;}
.h4{height:35.664000px;}
.hb{height:40.545000px;}
.hf{height:42.930000px;}
.h2{height:45.342773px;}
.h7{height:47.700000px;}
.h8{height:52.416000px;}
.h9{height:52.470000px;}
.h11{height:53.964900px;}
.hd{height:54.017700px;}
.hc{height:54.126300px;}
.h10{height:54.201900px;}
.ha{height:56.784000px;}
.h6{height:66.780000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.x3{left:110.551350px;}
.xb{left:136.057350px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x8{left:500.962650px;}
.x7{left:556.528350px;}
.x6{left:612.241950px;}
.x2{left:733.917900px;}
.xa{left:762.586350px;}
@media print{
.v3{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.796267pt;}
.lsd{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.004267pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.234667pt;}
.ls27{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.381333pt;}
.lsa{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.498667pt;}
.lsc{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls29{letter-spacing:0.616000pt;}
.ls1c{letter-spacing:0.645333pt;}
.ls17{letter-spacing:0.674667pt;}
.ls8{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.762667pt;}
.ls1f{letter-spacing:0.821333pt;}
.ls4{letter-spacing:0.850667pt;}
.ls2a{letter-spacing:0.880000pt;}
.ls2c{letter-spacing:0.938667pt;}
.ls23{letter-spacing:0.997333pt;}
.ls5{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.085333pt;}
.ls14{letter-spacing:1.114667pt;}
.ls12{letter-spacing:1.173333pt;}
.ls21{letter-spacing:1.232000pt;}
.lsf{letter-spacing:1.349333pt;}
.ls1e{letter-spacing:1.408000pt;}
.ls25{letter-spacing:1.466667pt;}
.ls9{letter-spacing:1.525333pt;}
.lsb{letter-spacing:1.584000pt;}
.ls10{letter-spacing:1.613333pt;}
.ls2d{letter-spacing:1.818667pt;}
.ls24{letter-spacing:1.877333pt;}
.ls7{letter-spacing:1.994667pt;}
.ls16{letter-spacing:2.053333pt;}
.ls20{letter-spacing:2.170667pt;}
.ls2e{letter-spacing:2.288000pt;}
.ls15{letter-spacing:2.874667pt;}
.ls2b{letter-spacing:4.338133pt;}
.ls1a{letter-spacing:1841.394133pt;}
.lse{letter-spacing:1948.905600pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.wsc{word-spacing:-14.666667pt;}
.ws66{word-spacing:-14.608000pt;}
.ws51{word-spacing:-12.906667pt;}
.ws21{word-spacing:-11.333333pt;}
.wsd{word-spacing:-8.008000pt;}
.wse{word-spacing:-6.552000pt;}
.ws5d{word-spacing:-1.584000pt;}
.ws13{word-spacing:-1.173333pt;}
.ws62{word-spacing:-1.114667pt;}
.ws5b{word-spacing:-0.938667pt;}
.ws61{word-spacing:-0.880000pt;}
.ws64{word-spacing:-0.704000pt;}
.ws40{word-spacing:-0.586667pt;}
.ws53{word-spacing:-0.528000pt;}
.ws5a{word-spacing:-0.469333pt;}
.ws4{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.352000pt;}
.ws5c{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.234667pt;}
.wsb{word-spacing:-0.176000pt;}
.ws5f{word-spacing:-0.117333pt;}
.ws5e{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws58{word-spacing:0.117333pt;}
.ws63{word-spacing:0.352000pt;}
.ws1e{word-spacing:0.384000pt;}
.ws2b{word-spacing:0.528000pt;}
.ws32{word-spacing:0.762667pt;}
.ws2e{word-spacing:0.821333pt;}
.ws30{word-spacing:0.880000pt;}
.ws3b{word-spacing:0.938667pt;}
.ws2a{word-spacing:0.997333pt;}
.ws43{word-spacing:1.173333pt;}
.ws4d{word-spacing:1.232000pt;}
.ws57{word-spacing:1.290667pt;}
.ws4c{word-spacing:1.349333pt;}
.ws35{word-spacing:1.408000pt;}
.ws20{word-spacing:1.440000pt;}
.ws3e{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.818667pt;}
.ws1f{word-spacing:1.872000pt;}
.ws15{word-spacing:1.877333pt;}
.ws49{word-spacing:1.936000pt;}
.ws45{word-spacing:2.053333pt;}
.ws3c{word-spacing:2.170667pt;}
.ws60{word-spacing:2.229333pt;}
.ws56{word-spacing:2.405333pt;}
.ws28{word-spacing:2.464000pt;}
.ws24{word-spacing:2.522667pt;}
.ws44{word-spacing:2.640000pt;}
.ws1d{word-spacing:2.688000pt;}
.ws25{word-spacing:2.874667pt;}
.ws22{word-spacing:2.933333pt;}
.ws38{word-spacing:2.992000pt;}
.ws1c{word-spacing:3.024000pt;}
.ws10{word-spacing:3.050667pt;}
.ws33{word-spacing:3.109333pt;}
.ws59{word-spacing:3.344000pt;}
.ws3f{word-spacing:3.520000pt;}
.ws1b{word-spacing:3.637333pt;}
.ws23{word-spacing:3.754667pt;}
.ws36{word-spacing:3.813333pt;}
.ws55{word-spacing:3.872000pt;}
.ws9{word-spacing:3.930667pt;}
.ws11{word-spacing:4.106667pt;}
.ws12{word-spacing:4.165333pt;}
.ws37{word-spacing:4.224000pt;}
.ws4b{word-spacing:4.282667pt;}
.ws31{word-spacing:4.400000pt;}
.ws4e{word-spacing:4.458667pt;}
.ws39{word-spacing:4.576000pt;}
.ws41{word-spacing:4.634667pt;}
.ws52{word-spacing:4.693333pt;}
.ws5{word-spacing:4.736000pt;}
.ws46{word-spacing:4.752000pt;}
.ws8{word-spacing:4.810667pt;}
.ws4a{word-spacing:4.869333pt;}
.ws42{word-spacing:4.986667pt;}
.ws29{word-spacing:5.045333pt;}
.ws3a{word-spacing:5.104000pt;}
.ws16{word-spacing:5.221333pt;}
.ws14{word-spacing:5.280000pt;}
.ws54{word-spacing:5.338667pt;}
.ws65{word-spacing:5.456000pt;}
.ws26{word-spacing:5.573333pt;}
.ws3d{word-spacing:5.632000pt;}
.ws34{word-spacing:5.808000pt;}
.ws2d{word-spacing:5.866667pt;}
.ws47{word-spacing:5.925333pt;}
.ws50{word-spacing:5.984000pt;}
.ws27{word-spacing:6.042667pt;}
.ws1a{word-spacing:6.101333pt;}
.ws7{word-spacing:6.160000pt;}
.ws48{word-spacing:6.218667pt;}
.wsa{word-spacing:6.629333pt;}
.ws19{word-spacing:6.864000pt;}
.ws2f{word-spacing:7.157333pt;}
.ws6{word-spacing:9.472000pt;}
.ws18{word-spacing:9.504000pt;}
.wsf{word-spacing:11.333333pt;}
.ws3{word-spacing:11.861333pt;}
._2{margin-left:-21.333333pt;}
._4{margin-left:-2.334933pt;}
._3{margin-left:-1.061867pt;}
._7{width:0.909333pt;}
._8{width:5.690667pt;}
._1{width:7.210667pt;}
._0{width:12.288000pt;}
._5{width:44.783467pt;}
._6{width:47.471467pt;}
.fsb{font-size:31.200000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y109{bottom:122.714533pt;}
.y50{bottom:122.842667pt;}
.y7a{bottom:123.241067pt;}
.ya5{bottom:124.253200pt;}
.ye4{bottom:124.629200pt;}
.y7{bottom:124.725733pt;}
.yc3{bottom:125.059733pt;}
.y6{bottom:136.096400pt;}
.y4f{bottom:137.050667pt;}
.y108{bottom:141.267867pt;}
.y79{bottom:141.721067pt;}
.ya4{bottom:142.733200pt;}
.yc2{bottom:143.539733pt;}
.y4e{bottom:151.258667pt;}
.ye3{bottom:152.349200pt;}
.y5{bottom:153.134933pt;}
.y107{bottom:159.821200pt;}
.y78{bottom:160.135200pt;}
.ya3{bottom:161.213200pt;}
.yc1{bottom:162.019733pt;}
.y4d{bottom:169.066667pt;}
.y4{bottom:170.180267pt;}
.ye2{bottom:170.829200pt;}
.y77{bottom:178.615200pt;}
.y4c{bottom:179.685333pt;}
.ya2{bottom:179.693200pt;}
.yc0{bottom:180.499733pt;}
.y3{bottom:181.550933pt;}
.y106{bottom:188.582533pt;}
.ye1{bottom:189.309200pt;}
.y4b{bottom:193.893333pt;}
.y76{bottom:197.095200pt;}
.ya1{bottom:198.173200pt;}
.ybf{bottom:198.979733pt;}
.y105{bottom:207.135867pt;}
.y4a{bottom:208.101333pt;}
.ya0{bottom:216.653200pt;}
.ye0{bottom:217.029200pt;}
.ybe{bottom:217.459733pt;}
.y75{bottom:224.815200pt;}
.y49{bottom:225.909333pt;}
.y25{bottom:227.886800pt;}
.y9f{bottom:235.133200pt;}
.ydf{bottom:235.509200pt;}
.y104{bottom:235.897200pt;}
.ybd{bottom:235.939733pt;}
.y74{bottom:243.295200pt;}
.y24{bottom:246.366800pt;}
.y9e{bottom:253.613200pt;}
.yde{bottom:253.989200pt;}
.ybc{bottom:254.419733pt;}
.y103{bottom:254.450533pt;}
.y73{bottom:261.775200pt;}
.y23{bottom:264.846800pt;}
.y9d{bottom:272.093200pt;}
.ybb{bottom:272.899733pt;}
.y48{bottom:274.842400pt;}
.y72{bottom:280.255200pt;}
.y102{bottom:283.211867pt;}
.y22{bottom:283.326800pt;}
.y9c{bottom:290.573200pt;}
.yba{bottom:291.379733pt;}
.y47{bottom:293.297467pt;}
.ydd{bottom:294.933867pt;}
.y71{bottom:298.735200pt;}
.y101{bottom:301.765200pt;}
.y21{bottom:301.806800pt;}
.yb9{bottom:309.859733pt;}
.y46{bottom:311.777467pt;}
.y70{bottom:317.215200pt;}
.y20{bottom:320.286800pt;}
.y9b{bottom:320.390533pt;}
.y45{bottom:330.257467pt;}
.y100{bottom:330.526533pt;}
.y6f{bottom:335.695200pt;}
.yb8{bottom:337.579733pt;}
.y1f{bottom:338.766800pt;}
.y9a{bottom:338.870533pt;}
.y44{bottom:348.737467pt;}
.yb7{bottom:356.059733pt;}
.y1e{bottom:357.246800pt;}
.y99{bottom:357.350533pt;}
.yff{bottom:359.287867pt;}
.y6e{bottom:363.415200pt;}
.y43{bottom:367.217467pt;}
.yb6{bottom:374.539733pt;}
.y1d{bottom:375.726800pt;}
.y98{bottom:375.830533pt;}
.yfe{bottom:377.841200pt;}
.ydc{bottom:378.123733pt;}
.y6d{bottom:381.895200pt;}
.y42{bottom:385.697467pt;}
.yb5{bottom:393.019733pt;}
.y1c{bottom:394.206800pt;}
.y97{bottom:394.310533pt;}
.ydb{bottom:396.603733pt;}
.y6c{bottom:400.375200pt;}
.y41{bottom:404.177467pt;}
.yfd{bottom:406.602533pt;}
.yb4{bottom:411.499733pt;}
.y1b{bottom:412.686800pt;}
.y96{bottom:412.790533pt;}
.yda{bottom:415.083733pt;}
.y6b{bottom:418.855200pt;}
.yb3{bottom:429.979733pt;}
.y1a{bottom:431.166800pt;}
.y95{bottom:431.270533pt;}
.y40{bottom:431.897467pt;}
.yd9{bottom:433.563733pt;}
.yfc{bottom:435.363867pt;}
.y6a{bottom:437.335200pt;}
.yb2{bottom:448.459733pt;}
.y19{bottom:449.646800pt;}
.y94{bottom:449.750533pt;}
.y3f{bottom:450.377467pt;}
.yd8{bottom:452.043733pt;}
.yfb{bottom:453.917200pt;}
.y69{bottom:455.815200pt;}
.yb1{bottom:466.939733pt;}
.y18{bottom:468.126800pt;}
.y93{bottom:468.230533pt;}
.y3e{bottom:468.808400pt;}
.yd7{bottom:470.523733pt;}
.yfa{bottom:472.470533pt;}
.y68{bottom:474.295200pt;}
.y17{bottom:486.606800pt;}
.y92{bottom:486.710533pt;}
.y3d{bottom:487.288400pt;}
.yd6{bottom:489.003733pt;}
.y67{bottom:492.775200pt;}
.yb0{bottom:494.659733pt;}
.yf9{bottom:501.231867pt;}
.y16{bottom:505.086800pt;}
.y91{bottom:505.190533pt;}
.y3c{bottom:505.768400pt;}
.yd5{bottom:507.483733pt;}
.y66{bottom:511.255200pt;}
.yaf{bottom:513.139733pt;}
.yf8{bottom:519.785200pt;}
.y15{bottom:523.566800pt;}
.y90{bottom:523.670533pt;}
.y3b{bottom:524.248400pt;}
.yd4{bottom:525.963733pt;}
.y65{bottom:529.735200pt;}
.yae{bottom:531.619733pt;}
.yf7{bottom:538.338533pt;}
.y8f{bottom:542.150533pt;}
.y3a{bottom:542.728400pt;}
.yd3{bottom:544.443733pt;}
.y64{bottom:548.215200pt;}
.yad{bottom:550.099733pt;}
.y8e{bottom:560.630533pt;}
.y39{bottom:561.208400pt;}
.yd2{bottom:562.923733pt;}
.y14{bottom:564.511600pt;}
.y63{bottom:566.695200pt;}
.yf6{bottom:567.099867pt;}
.yac{bottom:568.579733pt;}
.y8d{bottom:579.110533pt;}
.y38{bottom:579.688400pt;}
.y62{bottom:585.175200pt;}
.yf5{bottom:585.653200pt;}
.yab{bottom:587.059733pt;}
.y61{bottom:603.655200pt;}
.yd1{bottom:603.868400pt;}
.yaa{bottom:605.539733pt;}
.y37{bottom:607.408400pt;}
.y8c{bottom:608.927867pt;}
.yf4{bottom:614.414533pt;}
.y60{bottom:622.135200pt;}
.ya9{bottom:624.019733pt;}
.y36{bottom:625.888400pt;}
.y8b{bottom:627.407867pt;}
.yf3{bottom:632.967867pt;}
.ya8{bottom:642.499733pt;}
.y35{bottom:644.368400pt;}
.y8a{bottom:645.887867pt;}
.y13{bottom:646.160933pt;}
.yf2{bottom:651.521200pt;}
.ya7{bottom:660.979733pt;}
.y34{bottom:662.848400pt;}
.y5f{bottom:663.080000pt;}
.y89{bottom:664.367867pt;}
.y12{bottom:664.640933pt;}
.yf1{bottom:680.282533pt;}
.y33{bottom:681.328400pt;}
.y88{bottom:682.847867pt;}
.y11{bottom:683.120933pt;}
.yd0{bottom:687.055733pt;}
.yf0{bottom:698.835867pt;}
.y32{bottom:699.808400pt;}
.y87{bottom:701.327867pt;}
.y10{bottom:701.600933pt;}
.ya6{bottom:701.924533pt;}
.ycf{bottom:705.535733pt;}
.yef{bottom:717.389200pt;}
.y31{bottom:718.288400pt;}
.y86{bottom:719.807867pt;}
.yf{bottom:720.080933pt;}
.yce{bottom:724.015733pt;}
.y30{bottom:736.768400pt;}
.y85{bottom:738.287867pt;}
.ye{bottom:738.560933pt;}
.y5e{bottom:742.483867pt;}
.ycd{bottom:742.495733pt;}
.yee{bottom:746.150533pt;}
.y2f{bottom:755.248400pt;}
.y84{bottom:756.767867pt;}
.y5d{bottom:760.963867pt;}
.ycc{bottom:760.975733pt;}
.yd{bottom:773.388533pt;}
.y2e{bottom:773.728400pt;}
.yed{bottom:774.911867pt;}
.y83{bottom:775.247867pt;}
.y5c{bottom:779.443867pt;}
.ycb{bottom:779.455733pt;}
.y2d{bottom:792.208400pt;}
.yec{bottom:793.465200pt;}
.y82{bottom:793.727867pt;}
.y5b{bottom:797.923867pt;}
.yca{bottom:797.935733pt;}
.y2c{bottom:810.688400pt;}
.yeb{bottom:812.018533pt;}
.y5a{bottom:816.403867pt;}
.yc9{bottom:816.415733pt;}
.y81{bottom:823.545200pt;}
.y59{bottom:834.883867pt;}
.yc8{bottom:834.895733pt;}
.yea{bottom:840.779867pt;}
.y80{bottom:842.025200pt;}
.y2b{bottom:851.633200pt;}
.y10d{bottom:853.362533pt;}
.y58{bottom:853.363867pt;}
.yc7{bottom:853.375733pt;}
.y7f{bottom:860.505200pt;}
.ye9{bottom:869.541200pt;}
.y10c{bottom:871.842533pt;}
.y57{bottom:871.843867pt;}
.yc6{bottom:871.855733pt;}
.yc{bottom:878.152133pt;}
.y7e{bottom:878.985200pt;}
.ye8{bottom:888.094533pt;}
.yc5{bottom:890.322533pt;}
.y56{bottom:890.323867pt;}
.yb{bottom:896.629467pt;}
.y7d{bottom:897.465200pt;}
.y10b{bottom:899.562533pt;}
.yc4{bottom:908.802533pt;}
.y55{bottom:908.803867pt;}
.y7c{bottom:915.945200pt;}
.ye7{bottom:916.855867pt;}
.y10a{bottom:918.042533pt;}
.y2a{bottom:927.282533pt;}
.y54{bottom:927.283867pt;}
.y7b{bottom:934.425200pt;}
.ye6{bottom:945.617200pt;}
.y29{bottom:945.762533pt;}
.y53{bottom:945.763867pt;}
.ye5{bottom:964.170533pt;}
.y28{bottom:964.242533pt;}
.y52{bottom:964.243867pt;}
.ya{bottom:975.536000pt;}
.y27{bottom:982.722533pt;}
.y51{bottom:982.723867pt;}
.y2{bottom:1033.537200pt;}
.y26{bottom:1041.982133pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.he{height:24.804000pt;}
.h3{height:31.402667pt;}
.h4{height:31.701333pt;}
.hb{height:36.040000pt;}
.hf{height:38.160000pt;}
.h2{height:40.304688pt;}
.h7{height:42.400000pt;}
.h8{height:46.592000pt;}
.h9{height:46.640000pt;}
.h11{height:47.968800pt;}
.hd{height:48.015733pt;}
.hc{height:48.112267pt;}
.h10{height:48.179467pt;}
.ha{height:50.474667pt;}
.h6{height:59.360000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.x3{left:98.267867pt;}
.xb{left:120.939867pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x8{left:445.300133pt;}
.x7{left:494.691867pt;}
.x6{left:544.215067pt;}
.x2{left:652.371467pt;}
.xa{left:677.854533pt;}
}




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