
    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_6f73f5196e831886f81a57fd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f3af8a6dc07772ba9fef1da6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_e8ebb409f75245bc944a5777.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_4e04ea8097b2f5834a664858.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_1f50744fb20746c586d8b32d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_f6792a123d250133df271f9d.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_463bb01918c3a20fd5397149.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6f73f5196e831886f81a57fd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_799fa93d080c45ec5e65fd7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_ee9904868f5b4a6bad4291c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_029e01d90b53dc7282f87d21.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_75129974a6a70b5213f368a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.866699;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.152000px;}
.ls0{letter-spacing:0.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;}
}
.ws61{word-spacing:-18.000000px;}
.ws3f{word-spacing:-7.200000px;}
.ws4a{word-spacing:-7.128000px;}
.ws47{word-spacing:-6.984000px;}
.ws3d{word-spacing:-5.544000px;}
.ws18{word-spacing:-5.400000px;}
.ws2d{word-spacing:-5.040000px;}
.ws3a{word-spacing:-4.248000px;}
.ws1{word-spacing:-4.209000px;}
.ws46{word-spacing:-3.384000px;}
.ws34{word-spacing:-2.952000px;}
.ws44{word-spacing:-2.880000px;}
.ws27{word-spacing:-2.592000px;}
.ws39{word-spacing:-2.376000px;}
.ws3e{word-spacing:-2.304000px;}
.ws42{word-spacing:-2.232000px;}
.ws63{word-spacing:-2.046000px;}
.ws1c{word-spacing:-1.872000px;}
.ws28{word-spacing:-1.728000px;}
.wsa{word-spacing:-1.512000px;}
.ws5a{word-spacing:-1.296000px;}
.ws19{word-spacing:-1.224000px;}
.ws35{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.528000px;}
.ws4d{word-spacing:-0.504000px;}
.ws5f{word-spacing:-0.360000px;}
.ws68{word-spacing:-0.330000px;}
.ws5b{word-spacing:-0.288000px;}
.ws43{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws37{word-spacing:0.864000px;}
.ws13{word-spacing:0.936000px;}
.ws1f{word-spacing:1.152000px;}
.ws40{word-spacing:1.440000px;}
.ws59{word-spacing:1.728000px;}
.ws24{word-spacing:1.800000px;}
.ws58{word-spacing:1.944000px;}
.ws3b{word-spacing:2.160000px;}
.ws26{word-spacing:2.808000px;}
.ws30{word-spacing:3.240000px;}
.ws9{word-spacing:3.528000px;}
.ws32{word-spacing:3.744000px;}
.ws50{word-spacing:3.816000px;}
.ws5{word-spacing:3.888000px;}
.ws10{word-spacing:4.104000px;}
.ws3c{word-spacing:4.176000px;}
.ws22{word-spacing:4.536000px;}
.ws4c{word-spacing:4.680000px;}
.ws54{word-spacing:4.824000px;}
.ws16{word-spacing:4.896000px;}
.ws2a{word-spacing:5.040000px;}
.ws17{word-spacing:5.112000px;}
.wsc{word-spacing:5.184000px;}
.ws2b{word-spacing:5.256000px;}
.ws2f{word-spacing:5.328000px;}
.ws1e{word-spacing:5.616000px;}
.ws1b{word-spacing:5.688000px;}
.ws5d{word-spacing:5.976000px;}
.ws4e{word-spacing:6.120000px;}
.ws12{word-spacing:6.408000px;}
.ws25{word-spacing:6.624000px;}
.ws7{word-spacing:6.840000px;}
.ws45{word-spacing:6.984000px;}
.ws23{word-spacing:7.416000px;}
.ws8{word-spacing:7.560000px;}
.ws62{word-spacing:7.920000px;}
.ws2e{word-spacing:8.280000px;}
.ws66{word-spacing:8.316000px;}
.ws21{word-spacing:8.496000px;}
.wse{word-spacing:8.712000px;}
.ws11{word-spacing:8.784000px;}
.ws5c{word-spacing:9.072000px;}
.ws29{word-spacing:9.288000px;}
.ws3{word-spacing:9.360000px;}
.wsd{word-spacing:10.080000px;}
.ws33{word-spacing:10.152000px;}
.ws48{word-spacing:10.872000px;}
.ws5e{word-spacing:11.016000px;}
.ws4{word-spacing:12.528000px;}
.ws65{word-spacing:12.738000px;}
.wsb{word-spacing:12.960000px;}
.ws31{word-spacing:13.752000px;}
.wsf{word-spacing:13.968000px;}
.ws14{word-spacing:14.760000px;}
.ws64{word-spacing:15.048000px;}
.ws20{word-spacing:15.192000px;}
.ws1a{word-spacing:16.344000px;}
.ws2c{word-spacing:16.416000px;}
.ws6{word-spacing:16.488000px;}
.ws41{word-spacing:17.064000px;}
.ws1d{word-spacing:17.280000px;}
.ws60{word-spacing:17.496000px;}
.ws2{word-spacing:17.640000px;}
.ws49{word-spacing:18.144000px;}
.ws53{word-spacing:18.216000px;}
.ws4b{word-spacing:19.152000px;}
.ws38{word-spacing:20.448000px;}
.ws51{word-spacing:21.240000px;}
.ws52{word-spacing:21.672000px;}
.ws4f{word-spacing:22.896000px;}
.ws15{word-spacing:25.560000px;}
.ws56{word-spacing:30.180000px;}
.ws36{word-spacing:32.688000px;}
.ws57{word-spacing:38.580000px;}
.ws55{word-spacing:39.180000px;}
._10{margin-left:-18.147000px;}
._12{margin-left:-16.560000px;}
._6{margin-left:-8.042100px;}
._1{margin-left:-6.878400px;}
._0{margin-left:-5.352000px;}
._3{margin-left:-4.186200px;}
._4{margin-left:-2.553000px;}
._2{margin-left:-1.386000px;}
._7{width:1.890600px;}
._c{width:3.670800px;}
._8{width:4.809300px;}
._5{width:6.009900px;}
._9{width:7.217400px;}
._d{width:8.558400px;}
._e{width:9.816000px;}
._a{width:10.874400px;}
._15{width:12.916800px;}
._b{width:14.151900px;}
._16{width:15.386400px;}
._13{width:16.927200px;}
._11{width:19.296000px;}
._f{width:25.128000px;}
._14{width:31.233600px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y47{bottom:80.941800px;}
.y92{bottom:86.748600px;}
.y70{bottom:87.204600px;}
.y10c{bottom:88.993050px;}
.yd8{bottom:90.654450px;}
.y46{bottom:101.941800px;}
.y99{bottom:103.952550px;}
.y106{bottom:105.493050px;}
.y91{bottom:107.748600px;}
.y6f{bottom:108.204600px;}
.y105{bottom:121.993050px;}
.y45{bottom:122.941800px;}
.yd7{bottom:123.654450px;}
.y98{bottom:124.952550px;}
.y90{bottom:128.748600px;}
.y6e{bottom:129.204600px;}
.y104{bottom:138.493050px;}
.yd6{bottom:140.154450px;}
.y44{bottom:143.941800px;}
.y97{bottom:145.952550px;}
.y122{bottom:148.993050px;}
.y8f{bottom:149.748600px;}
.y6d{bottom:150.204600px;}
.y10b{bottom:154.993050px;}
.yd5{bottom:156.654450px;}
.y21{bottom:158.858850px;}
.y43{bottom:164.941800px;}
.y96{bottom:166.952550px;}
.y121{bottom:169.993050px;}
.y8e{bottom:170.748600px;}
.y6c{bottom:171.204600px;}
.y103{bottom:171.493050px;}
.yd4{bottom:173.154450px;}
.y20{bottom:182.610900px;}
.y42{bottom:185.941800px;}
.y95{bottom:187.952550px;}
.y102{bottom:187.993050px;}
.yd3{bottom:189.654450px;}
.y120{bottom:190.993050px;}
.y8d{bottom:191.748600px;}
.y6b{bottom:192.204600px;}
.y1f{bottom:202.110900px;}
.y101{bottom:204.493050px;}
.yd2{bottom:206.154450px;}
.y41{bottom:206.941800px;}
.y94{bottom:208.952550px;}
.y11f{bottom:211.993050px;}
.y6a{bottom:213.204600px;}
.y8c{bottom:213.498600px;}
.y100{bottom:220.993050px;}
.y1e{bottom:225.862800px;}
.y40{bottom:227.941800px;}
.y93{bottom:229.952550px;}
.y11e{bottom:232.993050px;}
.y69{bottom:234.204600px;}
.y8b{bottom:234.498600px;}
.yff{bottom:237.493050px;}
.yd1{bottom:239.154450px;}
.y1d{bottom:245.362800px;}
.y3f{bottom:248.941800px;}
.yb7{bottom:250.952550px;}
.yfe{bottom:253.993050px;}
.y68{bottom:255.204600px;}
.y8a{bottom:255.498600px;}
.yd0{bottom:255.654450px;}
.y1c{bottom:264.862800px;}
.yfd{bottom:270.493050px;}
.yb6{bottom:271.952550px;}
.ycf{bottom:272.154450px;}
.y11d{bottom:274.993050px;}
.y67{bottom:276.204600px;}
.y89{bottom:276.498600px;}
.y1b{bottom:284.362800px;}
.yfc{bottom:286.993050px;}
.yce{bottom:288.654450px;}
.y3e{bottom:290.941800px;}
.yb5{bottom:292.952550px;}
.y11c{bottom:295.993050px;}
.y66{bottom:297.204600px;}
.y88{bottom:301.750650px;}
.yfb{bottom:303.493050px;}
.y1a{bottom:303.862800px;}
.ycd{bottom:305.154450px;}
.yb4{bottom:313.952550px;}
.y11b{bottom:316.993050px;}
.y65{bottom:318.204600px;}
.yfa{bottom:319.993050px;}
.ycc{bottom:321.654450px;}
.y19{bottom:323.362800px;}
.y3d{bottom:332.941800px;}
.yb3{bottom:334.952550px;}
.yf9{bottom:336.493050px;}
.y11a{bottom:337.993050px;}
.ycb{bottom:338.154450px;}
.y64{bottom:339.204600px;}
.y18{bottom:342.862800px;}
.y87{bottom:343.750650px;}
.yf8{bottom:352.993050px;}
.y3c{bottom:353.941800px;}
.yca{bottom:354.654450px;}
.yb2{bottom:355.952550px;}
.y119{bottom:358.993050px;}
.y63{bottom:360.204600px;}
.y17{bottom:362.362800px;}
.y86{bottom:365.500650px;}
.yf7{bottom:369.493050px;}
.yc9{bottom:371.154450px;}
.y3b{bottom:374.941800px;}
.yb1{bottom:376.952550px;}
.y118{bottom:379.993050px;}
.y62{bottom:381.204600px;}
.y16{bottom:381.862800px;}
.yf6{bottom:385.993050px;}
.y85{bottom:387.250650px;}
.yc8{bottom:387.654450px;}
.y3a{bottom:395.941800px;}
.yb0{bottom:397.952550px;}
.y117{bottom:400.993050px;}
.y15{bottom:401.362800px;}
.y61{bottom:402.204600px;}
.yf5{bottom:402.493050px;}
.yc7{bottom:404.154450px;}
.y84{bottom:408.250650px;}
.y39{bottom:416.941800px;}
.yaf{bottom:418.952550px;}
.yf4{bottom:418.993050px;}
.y14{bottom:420.862800px;}
.y116{bottom:421.993050px;}
.y60{bottom:423.204600px;}
.y83{bottom:429.250650px;}
.yf3{bottom:435.493050px;}
.yc6{bottom:437.154450px;}
.y38{bottom:437.941800px;}
.yae{bottom:439.952550px;}
.y13{bottom:440.362800px;}
.y115{bottom:442.993050px;}
.y5f{bottom:444.204600px;}
.y82{bottom:450.250650px;}
.yf2{bottom:451.993050px;}
.yc5{bottom:453.654450px;}
.y37{bottom:458.941800px;}
.y12{bottom:459.862800px;}
.yad{bottom:460.952550px;}
.y5e{bottom:465.204600px;}
.yf1{bottom:468.493050px;}
.y81{bottom:471.250650px;}
.y11{bottom:479.362800px;}
.y36{bottom:479.941800px;}
.yac{bottom:481.952550px;}
.yf0{bottom:484.993050px;}
.y5d{bottom:486.204600px;}
.yc4{bottom:491.754600px;}
.y80{bottom:492.250650px;}
.y10{bottom:498.862800px;}
.y35{bottom:500.941800px;}
.yef{bottom:501.493050px;}
.yab{bottom:502.952550px;}
.y5c{bottom:507.204600px;}
.y7f{bottom:513.250650px;}
.yee{bottom:517.993050px;}
.yf{bottom:518.362800px;}
.y34{bottom:521.941800px;}
.yaa{bottom:523.952550px;}
.yc3{bottom:524.004600px;}
.y114{bottom:526.993050px;}
.y5b{bottom:528.204600px;}
.yed{bottom:534.493050px;}
.y7e{bottom:535.000650px;}
.ye{bottom:537.862800px;}
.y33{bottom:542.941800px;}
.ya9{bottom:544.952550px;}
.yc2{bottom:545.004600px;}
.y113{bottom:547.993050px;}
.y5a{bottom:549.204600px;}
.yec{bottom:550.993050px;}
.yd{bottom:557.362800px;}
.y7d{bottom:561.002550px;}
.y32{bottom:563.941800px;}
.ya8{bottom:565.952550px;}
.yc1{bottom:566.004600px;}
.y10a{bottom:567.493050px;}
.y112{bottom:568.993050px;}
.y59{bottom:570.204600px;}
.yc{bottom:576.862800px;}
.y7c{bottom:582.002550px;}
.yeb{bottom:583.993050px;}
.y31{bottom:584.941800px;}
.ya7{bottom:586.952550px;}
.yc0{bottom:587.004600px;}
.y111{bottom:589.993050px;}
.y58{bottom:591.204600px;}
.yb{bottom:596.362800px;}
.yea{bottom:600.493050px;}
.y7b{bottom:603.002550px;}
.y30{bottom:605.941800px;}
.ya6{bottom:607.952550px;}
.ybf{bottom:608.004600px;}
.y110{bottom:610.993050px;}
.y57{bottom:612.204600px;}
.ya{bottom:615.862800px;}
.ye9{bottom:616.993050px;}
.y7a{bottom:624.002550px;}
.y2f{bottom:626.941800px;}
.ya5{bottom:628.952550px;}
.ybe{bottom:629.004600px;}
.y10f{bottom:631.993050px;}
.y56{bottom:633.204600px;}
.ye8{bottom:633.493050px;}
.y9{bottom:635.362800px;}
.y2e{bottom:647.941800px;}
.ya4{bottom:649.952550px;}
.y109{bottom:649.993050px;}
.y79{bottom:650.004600px;}
.y10e{bottom:652.993050px;}
.y55{bottom:654.204600px;}
.y8{bottom:654.862800px;}
.y130{bottom:655.486650px;}
.ye7{bottom:666.493050px;}
.y2d{bottom:668.941800px;}
.ya3{bottom:670.952550px;}
.y78{bottom:671.004600px;}
.y10d{bottom:673.993050px;}
.y12f{bottom:674.986650px;}
.y54{bottom:675.204600px;}
.ye6{bottom:682.993050px;}
.y2c{bottom:689.941800px;}
.ya2{bottom:691.952550px;}
.y77{bottom:692.004600px;}
.y12e{bottom:692.986650px;}
.y53{bottom:696.204600px;}
.y108{bottom:699.493050px;}
.y7{bottom:705.862800px;}
.y2b{bottom:710.941800px;}
.ya1{bottom:712.952550px;}
.ybd{bottom:713.004600px;}
.y76{bottom:713.754600px;}
.y12d{bottom:715.238700px;}
.ye5{bottom:715.993050px;}
.y52{bottom:717.204600px;}
.y6{bottom:727.462800px;}
.y2a{bottom:731.941800px;}
.ye4{bottom:732.493050px;}
.ya0{bottom:733.952550px;}
.ybc{bottom:734.004600px;}
.y12c{bottom:734.738700px;}
.y75{bottom:735.504600px;}
.y51{bottom:738.204600px;}
.ye3{bottom:748.993050px;}
.y5{bottom:749.062800px;}
.y12b{bottom:752.738700px;}
.y29{bottom:752.941800px;}
.y9f{bottom:754.952550px;}
.ybb{bottom:755.004600px;}
.y74{bottom:757.254600px;}
.y50{bottom:759.204600px;}
.ye2{bottom:765.493050px;}
.y28{bottom:773.941800px;}
.y12a{bottom:774.990600px;}
.y9e{bottom:775.952550px;}
.yba{bottom:776.754600px;}
.y73{bottom:778.254600px;}
.y4f{bottom:780.204600px;}
.y107{bottom:781.993050px;}
.y129{bottom:792.990600px;}
.y27{bottom:794.941800px;}
.y9d{bottom:796.952550px;}
.ye1{bottom:798.493050px;}
.yb9{bottom:798.504600px;}
.y4{bottom:799.462800px;}
.y72{bottom:799.854450px;}
.y4e{bottom:801.204600px;}
.y128{bottom:810.990600px;}
.ye0{bottom:814.993050px;}
.y26{bottom:815.941800px;}
.y9c{bottom:817.952550px;}
.y71{bottom:821.454600px;}
.y4d{bottom:822.204600px;}
.y3{bottom:830.962800px;}
.ydf{bottom:831.493050px;}
.y127{bottom:833.242650px;}
.y25{bottom:836.941800px;}
.y9b{bottom:838.952550px;}
.yb8{bottom:842.004600px;}
.y4c{bottom:843.204600px;}
.yde{bottom:847.993050px;}
.y126{bottom:851.242650px;}
.y24{bottom:857.941800px;}
.y9a{bottom:859.952550px;}
.y4b{bottom:864.204600px;}
.ydd{bottom:864.493050px;}
.y125{bottom:873.494550px;}
.y23{bottom:878.941800px;}
.ydc{bottom:880.993050px;}
.y4a{bottom:885.204600px;}
.y124{bottom:891.494550px;}
.ydb{bottom:897.493050px;}
.y49{bottom:906.204600px;}
.yda{bottom:913.993050px;}
.y22{bottom:921.541800px;}
.y48{bottom:927.204600px;}
.y123{bottom:927.494550px;}
.yd9{bottom:930.493050px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.ha{height:40.693359px;}
.hb{height:45.858398px;}
.h6{height:47.909180px;}
.h9{height:48.761719px;}
.h7{height:48.796875px;}
.h8{height:49.992188px;}
.h5{height:50.027344px;}
.h3{height:51.264000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.787450px;}
.x1{left:84.330750px;}
.xa{left:110.551200px;}
.x4{left:118.507350px;}
.xb{left:123.307050px;}
.x3{left:130.150800px;}
.xd{left:131.811000px;}
.x5{left:132.852600px;}
.x9{left:134.787450px;}
.xc{left:136.063050px;}
.xe{left:144.567000px;}
.x6{left:202.792350px;}
.x7{left:280.891950px;}
.x2{left:352.068750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws61{word-spacing:-16.000000pt;}
.ws3f{word-spacing:-6.400000pt;}
.ws4a{word-spacing:-6.336000pt;}
.ws47{word-spacing:-6.208000pt;}
.ws3d{word-spacing:-4.928000pt;}
.ws18{word-spacing:-4.800000pt;}
.ws2d{word-spacing:-4.480000pt;}
.ws3a{word-spacing:-3.776000pt;}
.ws1{word-spacing:-3.741333pt;}
.ws46{word-spacing:-3.008000pt;}
.ws34{word-spacing:-2.624000pt;}
.ws44{word-spacing:-2.560000pt;}
.ws27{word-spacing:-2.304000pt;}
.ws39{word-spacing:-2.112000pt;}
.ws3e{word-spacing:-2.048000pt;}
.ws42{word-spacing:-1.984000pt;}
.ws63{word-spacing:-1.818667pt;}
.ws1c{word-spacing:-1.664000pt;}
.ws28{word-spacing:-1.536000pt;}
.wsa{word-spacing:-1.344000pt;}
.ws5a{word-spacing:-1.152000pt;}
.ws19{word-spacing:-1.088000pt;}
.ws35{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.469333pt;}
.ws4d{word-spacing:-0.448000pt;}
.ws5f{word-spacing:-0.320000pt;}
.ws68{word-spacing:-0.293333pt;}
.ws5b{word-spacing:-0.256000pt;}
.ws43{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws37{word-spacing:0.768000pt;}
.ws13{word-spacing:0.832000pt;}
.ws1f{word-spacing:1.024000pt;}
.ws40{word-spacing:1.280000pt;}
.ws59{word-spacing:1.536000pt;}
.ws24{word-spacing:1.600000pt;}
.ws58{word-spacing:1.728000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws26{word-spacing:2.496000pt;}
.ws30{word-spacing:2.880000pt;}
.ws9{word-spacing:3.136000pt;}
.ws32{word-spacing:3.328000pt;}
.ws50{word-spacing:3.392000pt;}
.ws5{word-spacing:3.456000pt;}
.ws10{word-spacing:3.648000pt;}
.ws3c{word-spacing:3.712000pt;}
.ws22{word-spacing:4.032000pt;}
.ws4c{word-spacing:4.160000pt;}
.ws54{word-spacing:4.288000pt;}
.ws16{word-spacing:4.352000pt;}
.ws2a{word-spacing:4.480000pt;}
.ws17{word-spacing:4.544000pt;}
.wsc{word-spacing:4.608000pt;}
.ws2b{word-spacing:4.672000pt;}
.ws2f{word-spacing:4.736000pt;}
.ws1e{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.056000pt;}
.ws5d{word-spacing:5.312000pt;}
.ws4e{word-spacing:5.440000pt;}
.ws12{word-spacing:5.696000pt;}
.ws25{word-spacing:5.888000pt;}
.ws7{word-spacing:6.080000pt;}
.ws45{word-spacing:6.208000pt;}
.ws23{word-spacing:6.592000pt;}
.ws8{word-spacing:6.720000pt;}
.ws62{word-spacing:7.040000pt;}
.ws2e{word-spacing:7.360000pt;}
.ws66{word-spacing:7.392000pt;}
.ws21{word-spacing:7.552000pt;}
.wse{word-spacing:7.744000pt;}
.ws11{word-spacing:7.808000pt;}
.ws5c{word-spacing:8.064000pt;}
.ws29{word-spacing:8.256000pt;}
.ws3{word-spacing:8.320000pt;}
.wsd{word-spacing:8.960000pt;}
.ws33{word-spacing:9.024000pt;}
.ws48{word-spacing:9.664000pt;}
.ws5e{word-spacing:9.792000pt;}
.ws4{word-spacing:11.136000pt;}
.ws65{word-spacing:11.322667pt;}
.wsb{word-spacing:11.520000pt;}
.ws31{word-spacing:12.224000pt;}
.wsf{word-spacing:12.416000pt;}
.ws14{word-spacing:13.120000pt;}
.ws64{word-spacing:13.376000pt;}
.ws20{word-spacing:13.504000pt;}
.ws1a{word-spacing:14.528000pt;}
.ws2c{word-spacing:14.592000pt;}
.ws6{word-spacing:14.656000pt;}
.ws41{word-spacing:15.168000pt;}
.ws1d{word-spacing:15.360000pt;}
.ws60{word-spacing:15.552000pt;}
.ws2{word-spacing:15.680000pt;}
.ws49{word-spacing:16.128000pt;}
.ws53{word-spacing:16.192000pt;}
.ws4b{word-spacing:17.024000pt;}
.ws38{word-spacing:18.176000pt;}
.ws51{word-spacing:18.880000pt;}
.ws52{word-spacing:19.264000pt;}
.ws4f{word-spacing:20.352000pt;}
.ws15{word-spacing:22.720000pt;}
.ws56{word-spacing:26.826667pt;}
.ws36{word-spacing:29.056000pt;}
.ws57{word-spacing:34.293333pt;}
.ws55{word-spacing:34.826667pt;}
._10{margin-left:-16.130667pt;}
._12{margin-left:-14.720000pt;}
._6{margin-left:-7.148533pt;}
._1{margin-left:-6.114133pt;}
._0{margin-left:-4.757333pt;}
._3{margin-left:-3.721067pt;}
._4{margin-left:-2.269333pt;}
._2{margin-left:-1.232000pt;}
._7{width:1.680533pt;}
._c{width:3.262933pt;}
._8{width:4.274933pt;}
._5{width:5.342133pt;}
._9{width:6.415467pt;}
._d{width:7.607467pt;}
._e{width:8.725333pt;}
._a{width:9.666133pt;}
._15{width:11.481600pt;}
._b{width:12.579467pt;}
._16{width:13.676800pt;}
._13{width:15.046400pt;}
._11{width:17.152000pt;}
._f{width:22.336000pt;}
._14{width:27.763200pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y47{bottom:71.948267pt;}
.y92{bottom:77.109867pt;}
.y70{bottom:77.515200pt;}
.y10c{bottom:79.104933pt;}
.yd8{bottom:80.581733pt;}
.y46{bottom:90.614933pt;}
.y99{bottom:92.402267pt;}
.y106{bottom:93.771600pt;}
.y91{bottom:95.776533pt;}
.y6f{bottom:96.181867pt;}
.y105{bottom:108.438267pt;}
.y45{bottom:109.281600pt;}
.yd7{bottom:109.915067pt;}
.y98{bottom:111.068933pt;}
.y90{bottom:114.443200pt;}
.y6e{bottom:114.848533pt;}
.y104{bottom:123.104933pt;}
.yd6{bottom:124.581733pt;}
.y44{bottom:127.948267pt;}
.y97{bottom:129.735600pt;}
.y122{bottom:132.438267pt;}
.y8f{bottom:133.109867pt;}
.y6d{bottom:133.515200pt;}
.y10b{bottom:137.771600pt;}
.yd5{bottom:139.248400pt;}
.y21{bottom:141.207867pt;}
.y43{bottom:146.614933pt;}
.y96{bottom:148.402267pt;}
.y121{bottom:151.104933pt;}
.y8e{bottom:151.776533pt;}
.y6c{bottom:152.181867pt;}
.y103{bottom:152.438267pt;}
.yd4{bottom:153.915067pt;}
.y20{bottom:162.320800pt;}
.y42{bottom:165.281600pt;}
.y95{bottom:167.068933pt;}
.y102{bottom:167.104933pt;}
.yd3{bottom:168.581733pt;}
.y120{bottom:169.771600pt;}
.y8d{bottom:170.443200pt;}
.y6b{bottom:170.848533pt;}
.y1f{bottom:179.654133pt;}
.y101{bottom:181.771600pt;}
.yd2{bottom:183.248400pt;}
.y41{bottom:183.948267pt;}
.y94{bottom:185.735600pt;}
.y11f{bottom:188.438267pt;}
.y6a{bottom:189.515200pt;}
.y8c{bottom:189.776533pt;}
.y100{bottom:196.438267pt;}
.y1e{bottom:200.766933pt;}
.y40{bottom:202.614933pt;}
.y93{bottom:204.402267pt;}
.y11e{bottom:207.104933pt;}
.y69{bottom:208.181867pt;}
.y8b{bottom:208.443200pt;}
.yff{bottom:211.104933pt;}
.yd1{bottom:212.581733pt;}
.y1d{bottom:218.100267pt;}
.y3f{bottom:221.281600pt;}
.yb7{bottom:223.068933pt;}
.yfe{bottom:225.771600pt;}
.y68{bottom:226.848533pt;}
.y8a{bottom:227.109867pt;}
.yd0{bottom:227.248400pt;}
.y1c{bottom:235.433600pt;}
.yfd{bottom:240.438267pt;}
.yb6{bottom:241.735600pt;}
.ycf{bottom:241.915067pt;}
.y11d{bottom:244.438267pt;}
.y67{bottom:245.515200pt;}
.y89{bottom:245.776533pt;}
.y1b{bottom:252.766933pt;}
.yfc{bottom:255.104933pt;}
.yce{bottom:256.581733pt;}
.y3e{bottom:258.614933pt;}
.yb5{bottom:260.402267pt;}
.y11c{bottom:263.104933pt;}
.y66{bottom:264.181867pt;}
.y88{bottom:268.222800pt;}
.yfb{bottom:269.771600pt;}
.y1a{bottom:270.100267pt;}
.ycd{bottom:271.248400pt;}
.yb4{bottom:279.068933pt;}
.y11b{bottom:281.771600pt;}
.y65{bottom:282.848533pt;}
.yfa{bottom:284.438267pt;}
.ycc{bottom:285.915067pt;}
.y19{bottom:287.433600pt;}
.y3d{bottom:295.948267pt;}
.yb3{bottom:297.735600pt;}
.yf9{bottom:299.104933pt;}
.y11a{bottom:300.438267pt;}
.ycb{bottom:300.581733pt;}
.y64{bottom:301.515200pt;}
.y18{bottom:304.766933pt;}
.y87{bottom:305.556133pt;}
.yf8{bottom:313.771600pt;}
.y3c{bottom:314.614933pt;}
.yca{bottom:315.248400pt;}
.yb2{bottom:316.402267pt;}
.y119{bottom:319.104933pt;}
.y63{bottom:320.181867pt;}
.y17{bottom:322.100267pt;}
.y86{bottom:324.889467pt;}
.yf7{bottom:328.438267pt;}
.yc9{bottom:329.915067pt;}
.y3b{bottom:333.281600pt;}
.yb1{bottom:335.068933pt;}
.y118{bottom:337.771600pt;}
.y62{bottom:338.848533pt;}
.y16{bottom:339.433600pt;}
.yf6{bottom:343.104933pt;}
.y85{bottom:344.222800pt;}
.yc8{bottom:344.581733pt;}
.y3a{bottom:351.948267pt;}
.yb0{bottom:353.735600pt;}
.y117{bottom:356.438267pt;}
.y15{bottom:356.766933pt;}
.y61{bottom:357.515200pt;}
.yf5{bottom:357.771600pt;}
.yc7{bottom:359.248400pt;}
.y84{bottom:362.889467pt;}
.y39{bottom:370.614933pt;}
.yaf{bottom:372.402267pt;}
.yf4{bottom:372.438267pt;}
.y14{bottom:374.100267pt;}
.y116{bottom:375.104933pt;}
.y60{bottom:376.181867pt;}
.y83{bottom:381.556133pt;}
.yf3{bottom:387.104933pt;}
.yc6{bottom:388.581733pt;}
.y38{bottom:389.281600pt;}
.yae{bottom:391.068933pt;}
.y13{bottom:391.433600pt;}
.y115{bottom:393.771600pt;}
.y5f{bottom:394.848533pt;}
.y82{bottom:400.222800pt;}
.yf2{bottom:401.771600pt;}
.yc5{bottom:403.248400pt;}
.y37{bottom:407.948267pt;}
.y12{bottom:408.766933pt;}
.yad{bottom:409.735600pt;}
.y5e{bottom:413.515200pt;}
.yf1{bottom:416.438267pt;}
.y81{bottom:418.889467pt;}
.y11{bottom:426.100267pt;}
.y36{bottom:426.614933pt;}
.yac{bottom:428.402267pt;}
.yf0{bottom:431.104933pt;}
.y5d{bottom:432.181867pt;}
.yc4{bottom:437.115200pt;}
.y80{bottom:437.556133pt;}
.y10{bottom:443.433600pt;}
.y35{bottom:445.281600pt;}
.yef{bottom:445.771600pt;}
.yab{bottom:447.068933pt;}
.y5c{bottom:450.848533pt;}
.y7f{bottom:456.222800pt;}
.yee{bottom:460.438267pt;}
.yf{bottom:460.766933pt;}
.y34{bottom:463.948267pt;}
.yaa{bottom:465.735600pt;}
.yc3{bottom:465.781867pt;}
.y114{bottom:468.438267pt;}
.y5b{bottom:469.515200pt;}
.yed{bottom:475.104933pt;}
.y7e{bottom:475.556133pt;}
.ye{bottom:478.100267pt;}
.y33{bottom:482.614933pt;}
.ya9{bottom:484.402267pt;}
.yc2{bottom:484.448533pt;}
.y113{bottom:487.104933pt;}
.y5a{bottom:488.181867pt;}
.yec{bottom:489.771600pt;}
.yd{bottom:495.433600pt;}
.y7d{bottom:498.668933pt;}
.y32{bottom:501.281600pt;}
.ya8{bottom:503.068933pt;}
.yc1{bottom:503.115200pt;}
.y10a{bottom:504.438267pt;}
.y112{bottom:505.771600pt;}
.y59{bottom:506.848533pt;}
.yc{bottom:512.766933pt;}
.y7c{bottom:517.335600pt;}
.yeb{bottom:519.104933pt;}
.y31{bottom:519.948267pt;}
.ya7{bottom:521.735600pt;}
.yc0{bottom:521.781867pt;}
.y111{bottom:524.438267pt;}
.y58{bottom:525.515200pt;}
.yb{bottom:530.100267pt;}
.yea{bottom:533.771600pt;}
.y7b{bottom:536.002267pt;}
.y30{bottom:538.614933pt;}
.ya6{bottom:540.402267pt;}
.ybf{bottom:540.448533pt;}
.y110{bottom:543.104933pt;}
.y57{bottom:544.181867pt;}
.ya{bottom:547.433600pt;}
.ye9{bottom:548.438267pt;}
.y7a{bottom:554.668933pt;}
.y2f{bottom:557.281600pt;}
.ya5{bottom:559.068933pt;}
.ybe{bottom:559.115200pt;}
.y10f{bottom:561.771600pt;}
.y56{bottom:562.848533pt;}
.ye8{bottom:563.104933pt;}
.y9{bottom:564.766933pt;}
.y2e{bottom:575.948267pt;}
.ya4{bottom:577.735600pt;}
.y109{bottom:577.771600pt;}
.y79{bottom:577.781867pt;}
.y10e{bottom:580.438267pt;}
.y55{bottom:581.515200pt;}
.y8{bottom:582.100267pt;}
.y130{bottom:582.654800pt;}
.ye7{bottom:592.438267pt;}
.y2d{bottom:594.614933pt;}
.ya3{bottom:596.402267pt;}
.y78{bottom:596.448533pt;}
.y10d{bottom:599.104933pt;}
.y12f{bottom:599.988133pt;}
.y54{bottom:600.181867pt;}
.ye6{bottom:607.104933pt;}
.y2c{bottom:613.281600pt;}
.ya2{bottom:615.068933pt;}
.y77{bottom:615.115200pt;}
.y12e{bottom:615.988133pt;}
.y53{bottom:618.848533pt;}
.y108{bottom:621.771600pt;}
.y7{bottom:627.433600pt;}
.y2b{bottom:631.948267pt;}
.ya1{bottom:633.735600pt;}
.ybd{bottom:633.781867pt;}
.y76{bottom:634.448533pt;}
.y12d{bottom:635.767733pt;}
.ye5{bottom:636.438267pt;}
.y52{bottom:637.515200pt;}
.y6{bottom:646.633600pt;}
.y2a{bottom:650.614933pt;}
.ye4{bottom:651.104933pt;}
.ya0{bottom:652.402267pt;}
.ybc{bottom:652.448533pt;}
.y12c{bottom:653.101067pt;}
.y75{bottom:653.781867pt;}
.y51{bottom:656.181867pt;}
.ye3{bottom:665.771600pt;}
.y5{bottom:665.833600pt;}
.y12b{bottom:669.101067pt;}
.y29{bottom:669.281600pt;}
.y9f{bottom:671.068933pt;}
.ybb{bottom:671.115200pt;}
.y74{bottom:673.115200pt;}
.y50{bottom:674.848533pt;}
.ye2{bottom:680.438267pt;}
.y28{bottom:687.948267pt;}
.y12a{bottom:688.880533pt;}
.y9e{bottom:689.735600pt;}
.yba{bottom:690.448533pt;}
.y73{bottom:691.781867pt;}
.y4f{bottom:693.515200pt;}
.y107{bottom:695.104933pt;}
.y129{bottom:704.880533pt;}
.y27{bottom:706.614933pt;}
.y9d{bottom:708.402267pt;}
.ye1{bottom:709.771600pt;}
.yb9{bottom:709.781867pt;}
.y4{bottom:710.633600pt;}
.y72{bottom:710.981733pt;}
.y4e{bottom:712.181867pt;}
.y128{bottom:720.880533pt;}
.ye0{bottom:724.438267pt;}
.y26{bottom:725.281600pt;}
.y9c{bottom:727.068933pt;}
.y71{bottom:730.181867pt;}
.y4d{bottom:730.848533pt;}
.y3{bottom:738.633600pt;}
.ydf{bottom:739.104933pt;}
.y127{bottom:740.660133pt;}
.y25{bottom:743.948267pt;}
.y9b{bottom:745.735600pt;}
.yb8{bottom:748.448533pt;}
.y4c{bottom:749.515200pt;}
.yde{bottom:753.771600pt;}
.y126{bottom:756.660133pt;}
.y24{bottom:762.614933pt;}
.y9a{bottom:764.402267pt;}
.y4b{bottom:768.181867pt;}
.ydd{bottom:768.438267pt;}
.y125{bottom:776.439600pt;}
.y23{bottom:781.281600pt;}
.ydc{bottom:783.104933pt;}
.y4a{bottom:786.848533pt;}
.y124{bottom:792.439600pt;}
.ydb{bottom:797.771600pt;}
.y49{bottom:805.515200pt;}
.yda{bottom:812.438267pt;}
.y22{bottom:819.148267pt;}
.y48{bottom:824.181867pt;}
.y123{bottom:824.439600pt;}
.yd9{bottom:827.104933pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.ha{height:36.171875pt;}
.hb{height:40.763021pt;}
.h6{height:42.585938pt;}
.h9{height:43.343750pt;}
.h7{height:43.375000pt;}
.h8{height:44.437500pt;}
.h5{height:44.468750pt;}
.h3{height:45.568000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.811067pt;}
.x1{left:74.960667pt;}
.xa{left:98.267733pt;}
.x4{left:105.339867pt;}
.xb{left:109.606267pt;}
.x3{left:115.689600pt;}
.xd{left:117.165333pt;}
.x5{left:118.091200pt;}
.x9{left:119.811067pt;}
.xc{left:120.944933pt;}
.xe{left:128.504000pt;}
.x6{left:180.259867pt;}
.x7{left:249.681733pt;}
.x2{left:312.950000pt;}
}




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