
    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_c6aaae486c7a211663fd4294.woff')format("woff");}.ff1{font-family:ff1;line-height:1.213379;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_97f595f1f1fcb47d303686cb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.213379;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_8d8ffbeca8bb1462045d6584.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e4d184b2240a32c62cad6aa1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_056028555d2ee3fec4326efc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_b12cfb5517aca6a7ab82ccf0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_386d44d73c743f76bc6a611c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.060059;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_994a369bd5c26c9e39d7a08d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_6fe4a2a59b4be21ec18cda1a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_7f18c4806e7fe9cfcf499aa3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_227aa3d0fc39c386edb21044.woff')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:21.600000px;}
.ls22{letter-spacing:-1.764000px;}
.ls26{letter-spacing:-1.656000px;}
.ls27{letter-spacing:-1.560000px;}
.ls21{letter-spacing:-1.530000px;}
.ls29{letter-spacing:-1.488000px;}
.ls25{letter-spacing:-1.464000px;}
.ls1b{letter-spacing:-0.840000px;}
.ls28{letter-spacing:-0.816000px;}
.ls23{letter-spacing:-0.624000px;}
.ls5{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.564000px;}
.ls17{letter-spacing:-0.456000px;}
.ls20{letter-spacing:-0.348000px;}
.ls19{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.246000px;}
.ls7{letter-spacing:-0.228000px;}
.ls1c{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.030000px;}
.ls10{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.192000px;}
.lsa{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.414000px;}
.ls24{letter-spacing:0.450000px;}
.lse{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.552000px;}
.ls11{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.684000px;}
.ls1a{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.870000px;}
.lsf{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.392000px;}
.lsc{letter-spacing:848.490000px;}
.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;}
}
.ws2{word-spacing:-16.500000px;}
.wsd{word-spacing:-16.416000px;}
.wsc{word-spacing:-15.936000px;}
.ws1{word-spacing:-15.900000px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.552000px;}
.ws10{word-spacing:-15.384000px;}
.ws19{word-spacing:-15.024000px;}
.ws0{word-spacing:-14.520000px;}
.ws13{word-spacing:-14.472000px;}
.ws16{word-spacing:-14.376000px;}
.ws1a{word-spacing:-14.352000px;}
.ws18{word-spacing:-14.280000px;}
.ws1b{word-spacing:-14.274000px;}
.ws17{word-spacing:-14.184000px;}
.ws14{word-spacing:-14.172000px;}
.wsf{word-spacing:-13.956000px;}
.ws8{word-spacing:-13.800000px;}
.ws9{word-spacing:-13.560000px;}
.wsa{word-spacing:-13.200000px;}
.ws15{word-spacing:-12.756000px;}
.wse{word-spacing:-12.672000px;}
.ws12{word-spacing:-12.360000px;}
.ws11{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.652000px;}
.ws6{word-spacing:-10.560000px;}
.ws7{word-spacing:-8.712000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-5.272800px;}
._24{margin-left:-4.225200px;}
._23{margin-left:-3.144000px;}
._1c{margin-left:-2.064000px;}
._0{margin-left:-1.056000px;}
._1{width:1.056000px;}
._3{width:2.766000px;}
._a{width:3.816000px;}
._9{width:5.442000px;}
._20{width:6.840000px;}
._12{width:8.760000px;}
._13{width:9.864000px;}
._e{width:10.944000px;}
._f{width:12.240000px;}
._8{width:13.296000px;}
._25{width:14.430000px;}
._34{width:15.552000px;}
._21{width:16.944000px;}
._10{width:17.952000px;}
._d{width:19.368000px;}
._b{width:20.664000px;}
._c{width:21.720000px;}
._29{width:22.752000px;}
._19{width:23.784000px;}
._28{width:25.416000px;}
._1a{width:26.880000px;}
._15{width:28.236000px;}
._6{width:29.352000px;}
._7{width:30.636000px;}
._1b{width:32.076000px;}
._1f{width:33.480000px;}
._26{width:34.920000px;}
._27{width:36.240000px;}
._2b{width:37.536000px;}
._22{width:39.240000px;}
._2c{width:40.410000px;}
._2f{width:41.832000px;}
._2a{width:43.200000px;}
._2e{width:44.496000px;}
._18{width:46.368000px;}
._14{width:47.688000px;}
._31{width:50.856000px;}
._11{width:52.128000px;}
._33{width:53.424000px;}
._32{width:54.480000px;}
._2d{width:55.872000px;}
._1d{width:57.432000px;}
._5{width:60.840000px;}
._1e{width:63.336000px;}
._4{width:74.196000px;}
._3a{width:86.328000px;}
._38{width:106.656000px;}
._35{width:113.982000px;}
._36{width:115.434000px;}
._30{width:295.080000px;}
._2{width:315.180000px;}
._17{width:332.376000px;}
._39{width:410.784000px;}
._37{width:515.064000px;}
.fca{color:rgb(0,0,255);}
.fc7{color:rgb(5,99,193);}
.fc8{color:rgb(0,51,0);}
.fc4{color:rgb(31,73,125);}
.fc9{color:rgb(127,127,127);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(204,102,0);}
.fc1{color:rgb(196,89,17);}
.fc0{color:rgb(56,86,35);}
.fs6{font-size:39.600000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:57.600000px;}
.fs7{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.600000px;}
.y28{bottom:3.300000px;}
.y6{bottom:3.915000px;}
.y8{bottom:4.815000px;}
.y27{bottom:21.000000px;}
.y5{bottom:34.200000px;}
.y7{bottom:34.815000px;}
.y2{bottom:58.537500px;}
.y4{bottom:65.100000px;}
.y1{bottom:86.437500px;}
.y2d{bottom:131.737500px;}
.y7a{bottom:134.437500px;}
.ye2{bottom:136.537500px;}
.y112{bottom:141.337500px;}
.yb2{bottom:146.737500px;}
.ya1{bottom:147.337500px;}
.y79{bottom:155.745000px;}
.y2c{bottom:158.430000px;}
.y111{bottom:160.830000px;}
.yb1{bottom:165.930000px;}
.ya0{bottom:168.330000px;}
.ye1{bottom:175.275000px;}
.y78{bottom:176.775000px;}
.y110{bottom:180.075000px;}
.y2b{bottom:184.875000px;}
.yb0{bottom:185.475000px;}
.y13c{bottom:185.775000px;}
.y9f{bottom:189.375000px;}
.ye0{bottom:194.475000px;}
.y77{bottom:198.075000px;}
.y10f{bottom:199.575000px;}
.yaf{bottom:204.675000px;}
.y13b{bottom:204.975000px;}
.y2a{bottom:206.475000px;}
.y9e{bottom:210.675000px;}
.ydf{bottom:213.975000px;}
.y59{bottom:215.475000px;}
.y10e{bottom:218.775000px;}
.y76{bottom:219.075000px;}
.yae{bottom:224.175000px;}
.y13a{bottom:224.475000px;}
.y29{bottom:228.975000px;}
.y9d{bottom:231.675000px;}
.yde{bottom:233.175000px;}
.y58{bottom:236.475000px;}
.y10d{bottom:237.975000px;}
.y75{bottom:240.075000px;}
.y25{bottom:243.375000px;}
.y139{bottom:243.675000px;}
.y9c{bottom:252.675000px;}
.y10c{bottom:257.475000px;}
.y74{bottom:261.375000px;}
.yad{bottom:262.875000px;}
.y138{bottom:263.175000px;}
.y57{bottom:266.775000px;}
.ydd{bottom:271.875000px;}
.y9b{bottom:273.975000px;}
.y10b{bottom:276.675000px;}
.yac{bottom:282.075000px;}
.y73{bottom:282.375000px;}
.ydc{bottom:291.075000px;}
.y56{bottom:292.275000px;}
.y9a{bottom:294.975000px;}
.y10a{bottom:296.175000px;}
.y24{bottom:299.775000px;}
.yab{bottom:301.275000px;}
.y137{bottom:301.875000px;}
.y72{bottom:303.375000px;}
.ydb{bottom:310.575000px;}
.y109{bottom:315.375000px;}
.y99{bottom:315.975000px;}
.yaa{bottom:320.775000px;}
.y136{bottom:321.075000px;}
.y55{bottom:322.275000px;}
.y71{bottom:324.675000px;}
.yda{bottom:329.775000px;}
.y23{bottom:330.375000px;}
.y108{bottom:334.875000px;}
.y98{bottom:337.275000px;}
.ya9{bottom:340.005000px;}
.y135{bottom:340.605000px;}
.y54{bottom:343.320000px;}
.y70{bottom:345.705000px;}
.yd9{bottom:349.320000px;}
.y107{bottom:354.105000px;}
.y22{bottom:354.405000px;}
.y97{bottom:358.305000px;}
.ya8{bottom:359.505000px;}
.y134{bottom:361.920000px;}
.y6f{bottom:366.705000px;}
.yd8{bottom:368.505000px;}
.y53{bottom:373.620000px;}
.ya7{bottom:378.720000px;}
.y96{bottom:379.320000px;}
.y133{bottom:382.920000px;}
.y21{bottom:388.005000px;}
.y106{bottom:392.820000px;}
.y52{bottom:394.605000px;}
.ya6{bottom:398.205000px;}
.y95{bottom:400.620000px;}
.y132{bottom:404.205000px;}
.yd7{bottom:407.205000px;}
.y20{bottom:409.005000px;}
.y105{bottom:412.320000px;}
.y51{bottom:415.620000px;}
.ya5{bottom:417.420000px;}
.y94{bottom:421.620000px;}
.y131{bottom:424.905000px;}
.yd6{bottom:426.705000px;}
.y1f{bottom:430.005000px;}
.y104{bottom:431.505000px;}
.y50{bottom:436.905000px;}
.y93{bottom:442.620000px;}
.y130{bottom:444.105000px;}
.yd5{bottom:445.905000px;}
.y103{bottom:451.005000px;}
.y1e{bottom:451.320000px;}
.ya4{bottom:456.120000px;}
.y4f{bottom:457.920000px;}
.y12f{bottom:463.620000px;}
.y92{bottom:463.905000px;}
.yd4{bottom:465.405000px;}
.y102{bottom:470.205000px;}
.y1d{bottom:472.320000px;}
.ya3{bottom:475.620000px;}
.y4e{bottom:478.905000px;}
.y12e{bottom:482.820000px;}
.yd3{bottom:484.605000px;}
.y91{bottom:484.920000px;}
.y101{bottom:489.705000px;}
.y1c{bottom:493.320000px;}
.ya2{bottom:494.820000px;}
.y4d{bottom:500.205000px;}
.y12d{bottom:502.305000px;}
.yd2{bottom:504.120000px;}
.y90{bottom:505.905000px;}
.y100{bottom:508.950000px;}
.y1b{bottom:514.650000px;}
.y4c{bottom:521.250000px;}
.y12c{bottom:521.550000px;}
.yd1{bottom:523.350000px;}
.y8f{bottom:527.250000px;}
.yff{bottom:528.450000px;}
.y1a{bottom:535.650000px;}
.y12b{bottom:541.050000px;}
.y4b{bottom:542.550000px;}
.yd0{bottom:542.850000px;}
.yfe{bottom:547.650000px;}
.y8e{bottom:548.250000px;}
.y19{bottom:556.650000px;}
.y12a{bottom:560.250000px;}
.ycf{bottom:562.050000px;}
.y4a{bottom:563.550000px;}
.yfd{bottom:567.150000px;}
.y8d{bottom:569.550000px;}
.y18{bottom:577.950000px;}
.y129{bottom:579.750000px;}
.yce{bottom:581.550000px;}
.y49{bottom:584.550000px;}
.yfc{bottom:586.350000px;}
.y8c{bottom:590.550000px;}
.y17{bottom:598.950000px;}
.ycd{bottom:600.750000px;}
.y48{bottom:605.850000px;}
.y8b{bottom:611.550000px;}
.y128{bottom:618.450000px;}
.y16{bottom:619.950000px;}
.ycc{bottom:620.250000px;}
.yfb{bottom:625.050000px;}
.y47{bottom:626.850000px;}
.y8a{bottom:632.850000px;}
.y127{bottom:637.650000px;}
.ycb{bottom:639.450000px;}
.y15{bottom:641.250000px;}
.yfa{bottom:644.550000px;}
.y46{bottom:647.850000px;}
.y89{bottom:653.850000px;}
.y126{bottom:657.150000px;}
.yca{bottom:658.950000px;}
.y14{bottom:662.250000px;}
.yf9{bottom:663.750000px;}
.y45{bottom:669.150000px;}
.y88{bottom:674.850000px;}
.y125{bottom:676.380000px;}
.yc9{bottom:678.195000px;}
.y13{bottom:683.280000px;}
.y44{bottom:690.195000px;}
.y124{bottom:695.880000px;}
.y87{bottom:696.180000px;}
.yc8{bottom:697.680000px;}
.yf8{bottom:702.480000px;}
.y12{bottom:704.580000px;}
.y43{bottom:711.180000px;}
.y123{bottom:715.080000px;}
.yc7{bottom:716.880000px;}
.y86{bottom:717.195000px;}
.yf7{bottom:721.680000px;}
.y11{bottom:725.595000px;}
.y42{bottom:732.480000px;}
.y122{bottom:734.580000px;}
.yc6{bottom:736.380000px;}
.y85{bottom:738.180000px;}
.yf6{bottom:741.195000px;}
.y6e{bottom:746.580000px;}
.y41{bottom:753.480000px;}
.y121{bottom:753.780000px;}
.y10{bottom:755.580000px;}
.y84{bottom:759.480000px;}
.yf5{bottom:760.380000px;}
.y6d{bottom:767.880000px;}
.y120{bottom:773.295000px;}
.y40{bottom:774.495000px;}
.yc5{bottom:774.795000px;}
.y13d{bottom:778.380000px;}
.yf4{bottom:779.880000px;}
.y83{bottom:780.480000px;}
.yf{bottom:786.195000px;}
.y6c{bottom:788.880000px;}
.y11f{bottom:792.480000px;}
.yc4{bottom:794.280000px;}
.y3f{bottom:795.780000px;}
.yf3{bottom:799.080000px;}
.y82{bottom:801.495000px;}
.y6b{bottom:809.880000px;}
.y11e{bottom:811.980000px;}
.yc3{bottom:813.480000px;}
.y3e{bottom:816.795000px;}
.yf2{bottom:818.580000px;}
.y81{bottom:822.780000px;}
.ye{bottom:829.695000px;}
.y6a{bottom:831.195000px;}
.yc2{bottom:832.980000px;}
.y3d{bottom:837.795000px;}
.y80{bottom:843.795000px;}
.y11d{bottom:850.725000px;}
.y69{bottom:852.225000px;}
.yf1{bottom:857.325000px;}
.y7f{bottom:864.825000px;}
.y3c{bottom:868.125000px;}
.y11c{bottom:869.925000px;}
.yc1{bottom:871.725000px;}
.y68{bottom:873.225000px;}
.yf0{bottom:876.525000px;}
.yd{bottom:881.625000px;}
.y7e{bottom:886.125000px;}
.y11b{bottom:889.425000px;}
.yc0{bottom:890.925000px;}
.y67{bottom:894.525000px;}
.yef{bottom:896.025000px;}
.y3b{bottom:898.125000px;}
.y7d{bottom:907.125000px;}
.y11a{bottom:908.625000px;}
.ybf{bottom:910.425000px;}
.yee{bottom:915.225000px;}
.y66{bottom:915.525000px;}
.yc{bottom:918.525000px;}
.y3a{bottom:919.125000px;}
.y119{bottom:927.825000px;}
.y7c{bottom:928.125000px;}
.ybe{bottom:929.625000px;}
.yed{bottom:934.725000px;}
.y65{bottom:936.525000px;}
.y39{bottom:940.425000px;}
.y118{bottom:947.325000px;}
.ybd{bottom:949.125000px;}
.y7b{bottom:949.425000px;}
.yec{bottom:953.925000px;}
.yb{bottom:957.825000px;}
.y117{bottom:966.525000px;}
.ybc{bottom:968.325000px;}
.y38{bottom:970.425000px;}
.yeb{bottom:973.425000px;}
.y64{bottom:978.825000px;}
.y116{bottom:986.025000px;}
.ybb{bottom:987.825000px;}
.y37{bottom:991.425000px;}
.yea{bottom:992.625000px;}
.y63{bottom:999.825000px;}
.ya{bottom:1000.125000px;}
.y115{bottom:1005.225000px;}
.yba{bottom:1007.025000px;}
.ye9{bottom:1012.125000px;}
.y36{bottom:1012.725000px;}
.y62{bottom:1021.170000px;}
.y114{bottom:1024.755000px;}
.yb9{bottom:1026.570000px;}
.ye8{bottom:1031.370000px;}
.y35{bottom:1033.755000px;}
.y61{bottom:1042.170000px;}
.y9{bottom:1042.455000px;}
.y113{bottom:1043.955000px;}
.yb8{bottom:1045.755000px;}
.ye7{bottom:1050.855000px;}
.y34{bottom:1054.755000px;}
.y60{bottom:1063.455000px;}
.yb7{bottom:1064.670000px;}
.y3{bottom:1065.255000px;}
.ye6{bottom:1070.070000px;}
.y33{bottom:1076.070000px;}
.yb6{bottom:1082.655000px;}
.y5f{bottom:1084.455000px;}
.ye5{bottom:1089.570000px;}
.y32{bottom:1097.070000px;}
.yb5{bottom:1102.170000px;}
.y5e{bottom:1105.455000px;}
.ye4{bottom:1108.755000px;}
.y31{bottom:1118.070000px;}
.yb4{bottom:1121.370000px;}
.y5d{bottom:1126.755000px;}
.ye3{bottom:1128.255000px;}
.y30{bottom:1139.370000px;}
.yb3{bottom:1140.870000px;}
.y5c{bottom:1148.370000px;}
.y2f{bottom:1166.070000px;}
.y5b{bottom:1170.255000px;}
.y2e{bottom:1187.700000px;}
.y5a{bottom:1188.900000px;}
.ha{height:36.607031px;}
.hc{height:44.100000px;}
.hb{height:52.207031px;}
.hf{height:57.427734px;}
.h10{height:57.943359px;}
.hd{height:59.677734px;}
.h2{height:60.070312px;}
.he{height:60.960938px;}
.h6{height:62.648438px;}
.h9{height:63.210938px;}
.h3{height:65.645508px;}
.h5{height:71.613281px;}
.h8{height:73.746094px;}
.h7{height:84.281250px;}
.h4{height:91.200000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:148.537500px;}
.w3{width:297.405000px;}
.w4{width:339.975000px;}
.w6{width:478.050000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:127.537487px;}
.xb{left:130.837487px;}
.x8{left:139.237487px;}
.xf{left:148.837487px;}
.x14{left:159.629987px;}
.x16{left:170.129987px;}
.xa{left:186.674987px;}
.x7{left:200.474987px;}
.xd{left:212.474987px;}
.x5{left:238.275000px;}
.x9{left:269.174987px;}
.x10{left:286.875000px;}
.x6{left:331.575000px;}
.xe{left:343.619987px;}
.x13{left:355.319987px;}
.x11{left:363.719987px;}
.x15{left:399.719987px;}
.x2{left:405.404987px;}
.x4{left:424.950000px;}
.x12{left:446.549987px;}
.xc{left:765.524987px;}
@media print{
.v3{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls22{letter-spacing:-1.568000pt;}
.ls26{letter-spacing:-1.472000pt;}
.ls27{letter-spacing:-1.386667pt;}
.ls21{letter-spacing:-1.360000pt;}
.ls29{letter-spacing:-1.322667pt;}
.ls25{letter-spacing:-1.301333pt;}
.ls1b{letter-spacing:-0.746667pt;}
.ls28{letter-spacing:-0.725333pt;}
.ls23{letter-spacing:-0.554667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.501333pt;}
.ls17{letter-spacing:-0.405333pt;}
.ls20{letter-spacing:-0.309333pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.218667pt;}
.ls7{letter-spacing:-0.202667pt;}
.ls1c{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.026667pt;}
.ls10{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.170667pt;}
.lsa{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.368000pt;}
.ls24{letter-spacing:0.400000pt;}
.lse{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.490667pt;}
.ls11{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.608000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.773333pt;}
.lsf{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.237333pt;}
.lsc{letter-spacing:754.213333pt;}
.ws2{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.165333pt;}
.ws1{word-spacing:-14.133333pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.674667pt;}
.ws19{word-spacing:-13.354667pt;}
.ws0{word-spacing:-12.906667pt;}
.ws13{word-spacing:-12.864000pt;}
.ws16{word-spacing:-12.778667pt;}
.ws1a{word-spacing:-12.757333pt;}
.ws18{word-spacing:-12.693333pt;}
.ws1b{word-spacing:-12.688000pt;}
.ws17{word-spacing:-12.608000pt;}
.ws14{word-spacing:-12.597333pt;}
.wsf{word-spacing:-12.405333pt;}
.ws8{word-spacing:-12.266667pt;}
.ws9{word-spacing:-12.053333pt;}
.wsa{word-spacing:-11.733333pt;}
.ws15{word-spacing:-11.338667pt;}
.wse{word-spacing:-11.264000pt;}
.ws12{word-spacing:-10.986667pt;}
.ws11{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.357333pt;}
.ws6{word-spacing:-9.386667pt;}
.ws7{word-spacing:-7.744000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-4.686933pt;}
._24{margin-left:-3.755733pt;}
._23{margin-left:-2.794667pt;}
._1c{margin-left:-1.834667pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.938667pt;}
._3{width:2.458667pt;}
._a{width:3.392000pt;}
._9{width:4.837333pt;}
._20{width:6.080000pt;}
._12{width:7.786667pt;}
._13{width:8.768000pt;}
._e{width:9.728000pt;}
._f{width:10.880000pt;}
._8{width:11.818667pt;}
._25{width:12.826667pt;}
._34{width:13.824000pt;}
._21{width:15.061333pt;}
._10{width:15.957333pt;}
._d{width:17.216000pt;}
._b{width:18.368000pt;}
._c{width:19.306667pt;}
._29{width:20.224000pt;}
._19{width:21.141333pt;}
._28{width:22.592000pt;}
._1a{width:23.893333pt;}
._15{width:25.098667pt;}
._6{width:26.090667pt;}
._7{width:27.232000pt;}
._1b{width:28.512000pt;}
._1f{width:29.760000pt;}
._26{width:31.040000pt;}
._27{width:32.213333pt;}
._2b{width:33.365333pt;}
._22{width:34.880000pt;}
._2c{width:35.920000pt;}
._2f{width:37.184000pt;}
._2a{width:38.400000pt;}
._2e{width:39.552000pt;}
._18{width:41.216000pt;}
._14{width:42.389333pt;}
._31{width:45.205333pt;}
._11{width:46.336000pt;}
._33{width:47.488000pt;}
._32{width:48.426667pt;}
._2d{width:49.664000pt;}
._1d{width:51.050667pt;}
._5{width:54.080000pt;}
._1e{width:56.298667pt;}
._4{width:65.952000pt;}
._3a{width:76.736000pt;}
._38{width:94.805333pt;}
._35{width:101.317333pt;}
._36{width:102.608000pt;}
._30{width:262.293333pt;}
._2{width:280.160000pt;}
._17{width:295.445333pt;}
._39{width:365.141333pt;}
._37{width:457.834667pt;}
.fs6{font-size:35.200000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:51.200000pt;}
.fs7{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.533333pt;}
.y28{bottom:2.933333pt;}
.y6{bottom:3.480000pt;}
.y8{bottom:4.280000pt;}
.y27{bottom:18.666667pt;}
.y5{bottom:30.400000pt;}
.y7{bottom:30.946667pt;}
.y2{bottom:52.033333pt;}
.y4{bottom:57.866667pt;}
.y1{bottom:76.833333pt;}
.y2d{bottom:117.100000pt;}
.y7a{bottom:119.500000pt;}
.ye2{bottom:121.366667pt;}
.y112{bottom:125.633333pt;}
.yb2{bottom:130.433333pt;}
.ya1{bottom:130.966667pt;}
.y79{bottom:138.440000pt;}
.y2c{bottom:140.826667pt;}
.y111{bottom:142.960000pt;}
.yb1{bottom:147.493333pt;}
.ya0{bottom:149.626667pt;}
.ye1{bottom:155.800000pt;}
.y78{bottom:157.133333pt;}
.y110{bottom:160.066667pt;}
.y2b{bottom:164.333333pt;}
.yb0{bottom:164.866667pt;}
.y13c{bottom:165.133333pt;}
.y9f{bottom:168.333333pt;}
.ye0{bottom:172.866667pt;}
.y77{bottom:176.066667pt;}
.y10f{bottom:177.400000pt;}
.yaf{bottom:181.933333pt;}
.y13b{bottom:182.200000pt;}
.y2a{bottom:183.533333pt;}
.y9e{bottom:187.266667pt;}
.ydf{bottom:190.200000pt;}
.y59{bottom:191.533333pt;}
.y10e{bottom:194.466667pt;}
.y76{bottom:194.733333pt;}
.yae{bottom:199.266667pt;}
.y13a{bottom:199.533333pt;}
.y29{bottom:203.533333pt;}
.y9d{bottom:205.933333pt;}
.yde{bottom:207.266667pt;}
.y58{bottom:210.200000pt;}
.y10d{bottom:211.533333pt;}
.y75{bottom:213.400000pt;}
.y25{bottom:216.333333pt;}
.y139{bottom:216.600000pt;}
.y9c{bottom:224.600000pt;}
.y10c{bottom:228.866667pt;}
.y74{bottom:232.333333pt;}
.yad{bottom:233.666667pt;}
.y138{bottom:233.933333pt;}
.y57{bottom:237.133333pt;}
.ydd{bottom:241.666667pt;}
.y9b{bottom:243.533333pt;}
.y10b{bottom:245.933333pt;}
.yac{bottom:250.733333pt;}
.y73{bottom:251.000000pt;}
.ydc{bottom:258.733333pt;}
.y56{bottom:259.800000pt;}
.y9a{bottom:262.200000pt;}
.y10a{bottom:263.266667pt;}
.y24{bottom:266.466667pt;}
.yab{bottom:267.800000pt;}
.y137{bottom:268.333333pt;}
.y72{bottom:269.666667pt;}
.ydb{bottom:276.066667pt;}
.y109{bottom:280.333333pt;}
.y99{bottom:280.866667pt;}
.yaa{bottom:285.133333pt;}
.y136{bottom:285.400000pt;}
.y55{bottom:286.466667pt;}
.y71{bottom:288.600000pt;}
.yda{bottom:293.133333pt;}
.y23{bottom:293.666667pt;}
.y108{bottom:297.666667pt;}
.y98{bottom:299.800000pt;}
.ya9{bottom:302.226667pt;}
.y135{bottom:302.760000pt;}
.y54{bottom:305.173333pt;}
.y70{bottom:307.293333pt;}
.yd9{bottom:310.506667pt;}
.y107{bottom:314.760000pt;}
.y22{bottom:315.026667pt;}
.y97{bottom:318.493333pt;}
.ya8{bottom:319.560000pt;}
.y134{bottom:321.706667pt;}
.y6f{bottom:325.960000pt;}
.yd8{bottom:327.560000pt;}
.y53{bottom:332.106667pt;}
.ya7{bottom:336.640000pt;}
.y96{bottom:337.173333pt;}
.y133{bottom:340.373333pt;}
.y21{bottom:344.893333pt;}
.y106{bottom:349.173333pt;}
.y52{bottom:350.760000pt;}
.ya6{bottom:353.960000pt;}
.y95{bottom:356.106667pt;}
.y132{bottom:359.293333pt;}
.yd7{bottom:361.960000pt;}
.y20{bottom:363.560000pt;}
.y105{bottom:366.506667pt;}
.y51{bottom:369.440000pt;}
.ya5{bottom:371.040000pt;}
.y94{bottom:374.773333pt;}
.y131{bottom:377.693333pt;}
.yd6{bottom:379.293333pt;}
.y1f{bottom:382.226667pt;}
.y104{bottom:383.560000pt;}
.y50{bottom:388.360000pt;}
.y93{bottom:393.440000pt;}
.y130{bottom:394.760000pt;}
.yd5{bottom:396.360000pt;}
.y103{bottom:400.893333pt;}
.y1e{bottom:401.173333pt;}
.ya4{bottom:405.440000pt;}
.y4f{bottom:407.040000pt;}
.y12f{bottom:412.106667pt;}
.y92{bottom:412.360000pt;}
.yd4{bottom:413.693333pt;}
.y102{bottom:417.960000pt;}
.y1d{bottom:419.840000pt;}
.ya3{bottom:422.773333pt;}
.y4e{bottom:425.693333pt;}
.y12e{bottom:429.173333pt;}
.yd3{bottom:430.760000pt;}
.y91{bottom:431.040000pt;}
.y101{bottom:435.293333pt;}
.y1c{bottom:438.506667pt;}
.ya2{bottom:439.840000pt;}
.y4d{bottom:444.626667pt;}
.y12d{bottom:446.493333pt;}
.yd2{bottom:448.106667pt;}
.y90{bottom:449.693333pt;}
.y100{bottom:452.400000pt;}
.y1b{bottom:457.466667pt;}
.y4c{bottom:463.333333pt;}
.y12c{bottom:463.600000pt;}
.yd1{bottom:465.200000pt;}
.y8f{bottom:468.666667pt;}
.yff{bottom:469.733333pt;}
.y1a{bottom:476.133333pt;}
.y12b{bottom:480.933333pt;}
.y4b{bottom:482.266667pt;}
.yd0{bottom:482.533333pt;}
.yfe{bottom:486.800000pt;}
.y8e{bottom:487.333333pt;}
.y19{bottom:494.800000pt;}
.y12a{bottom:498.000000pt;}
.ycf{bottom:499.600000pt;}
.y4a{bottom:500.933333pt;}
.yfd{bottom:504.133333pt;}
.y8d{bottom:506.266667pt;}
.y18{bottom:513.733333pt;}
.y129{bottom:515.333333pt;}
.yce{bottom:516.933333pt;}
.y49{bottom:519.600000pt;}
.yfc{bottom:521.200000pt;}
.y8c{bottom:524.933333pt;}
.y17{bottom:532.400000pt;}
.ycd{bottom:534.000000pt;}
.y48{bottom:538.533333pt;}
.y8b{bottom:543.600000pt;}
.y128{bottom:549.733333pt;}
.y16{bottom:551.066667pt;}
.ycc{bottom:551.333333pt;}
.yfb{bottom:555.600000pt;}
.y47{bottom:557.200000pt;}
.y8a{bottom:562.533333pt;}
.y127{bottom:566.800000pt;}
.ycb{bottom:568.400000pt;}
.y15{bottom:570.000000pt;}
.yfa{bottom:572.933333pt;}
.y46{bottom:575.866667pt;}
.y89{bottom:581.200000pt;}
.y126{bottom:584.133333pt;}
.yca{bottom:585.733333pt;}
.y14{bottom:588.666667pt;}
.yf9{bottom:590.000000pt;}
.y45{bottom:594.800000pt;}
.y88{bottom:599.866667pt;}
.y125{bottom:601.226667pt;}
.yc9{bottom:602.840000pt;}
.y13{bottom:607.360000pt;}
.y44{bottom:613.506667pt;}
.y124{bottom:618.560000pt;}
.y87{bottom:618.826667pt;}
.yc8{bottom:620.160000pt;}
.yf8{bottom:624.426667pt;}
.y12{bottom:626.293333pt;}
.y43{bottom:632.160000pt;}
.y123{bottom:635.626667pt;}
.yc7{bottom:637.226667pt;}
.y86{bottom:637.506667pt;}
.yf7{bottom:641.493333pt;}
.y11{bottom:644.973333pt;}
.y42{bottom:651.093333pt;}
.y122{bottom:652.960000pt;}
.yc6{bottom:654.560000pt;}
.y85{bottom:656.160000pt;}
.yf6{bottom:658.840000pt;}
.y6e{bottom:663.626667pt;}
.y41{bottom:669.760000pt;}
.y121{bottom:670.026667pt;}
.y10{bottom:671.626667pt;}
.y84{bottom:675.093333pt;}
.yf5{bottom:675.893333pt;}
.y6d{bottom:682.560000pt;}
.y120{bottom:687.373333pt;}
.y40{bottom:688.440000pt;}
.yc5{bottom:688.706667pt;}
.y13d{bottom:691.893333pt;}
.yf4{bottom:693.226667pt;}
.y83{bottom:693.760000pt;}
.yf{bottom:698.840000pt;}
.y6c{bottom:701.226667pt;}
.y11f{bottom:704.426667pt;}
.yc4{bottom:706.026667pt;}
.y3f{bottom:707.360000pt;}
.yf3{bottom:710.293333pt;}
.y82{bottom:712.440000pt;}
.y6b{bottom:719.893333pt;}
.y11e{bottom:721.760000pt;}
.yc3{bottom:723.093333pt;}
.y3e{bottom:726.040000pt;}
.yf2{bottom:727.626667pt;}
.y81{bottom:731.360000pt;}
.ye{bottom:737.506667pt;}
.y6a{bottom:738.840000pt;}
.yc2{bottom:740.426667pt;}
.y3d{bottom:744.706667pt;}
.y80{bottom:750.040000pt;}
.y11d{bottom:756.200000pt;}
.y69{bottom:757.533333pt;}
.yf1{bottom:762.066667pt;}
.y7f{bottom:768.733333pt;}
.y3c{bottom:771.666667pt;}
.y11c{bottom:773.266667pt;}
.yc1{bottom:774.866667pt;}
.y68{bottom:776.200000pt;}
.yf0{bottom:779.133333pt;}
.yd{bottom:783.666667pt;}
.y7e{bottom:787.666667pt;}
.y11b{bottom:790.600000pt;}
.yc0{bottom:791.933333pt;}
.y67{bottom:795.133333pt;}
.yef{bottom:796.466667pt;}
.y3b{bottom:798.333333pt;}
.y7d{bottom:806.333333pt;}
.y11a{bottom:807.666667pt;}
.ybf{bottom:809.266667pt;}
.yee{bottom:813.533333pt;}
.y66{bottom:813.800000pt;}
.yc{bottom:816.466667pt;}
.y3a{bottom:817.000000pt;}
.y119{bottom:824.733333pt;}
.y7c{bottom:825.000000pt;}
.ybe{bottom:826.333333pt;}
.yed{bottom:830.866667pt;}
.y65{bottom:832.466667pt;}
.y39{bottom:835.933333pt;}
.y118{bottom:842.066667pt;}
.ybd{bottom:843.666667pt;}
.y7b{bottom:843.933333pt;}
.yec{bottom:847.933333pt;}
.yb{bottom:851.400000pt;}
.y117{bottom:859.133333pt;}
.ybc{bottom:860.733333pt;}
.y38{bottom:862.600000pt;}
.yeb{bottom:865.266667pt;}
.y64{bottom:870.066667pt;}
.y116{bottom:876.466667pt;}
.ybb{bottom:878.066667pt;}
.y37{bottom:881.266667pt;}
.yea{bottom:882.333333pt;}
.y63{bottom:888.733333pt;}
.ya{bottom:889.000000pt;}
.y115{bottom:893.533333pt;}
.yba{bottom:895.133333pt;}
.ye9{bottom:899.666667pt;}
.y36{bottom:900.200000pt;}
.y62{bottom:907.706667pt;}
.y114{bottom:910.893333pt;}
.yb9{bottom:912.506667pt;}
.ye8{bottom:916.773333pt;}
.y35{bottom:918.893333pt;}
.y61{bottom:926.373333pt;}
.y9{bottom:926.626667pt;}
.y113{bottom:927.960000pt;}
.yb8{bottom:929.560000pt;}
.ye7{bottom:934.093333pt;}
.y34{bottom:937.560000pt;}
.y60{bottom:945.293333pt;}
.yb7{bottom:946.373333pt;}
.y3{bottom:946.893333pt;}
.ye6{bottom:951.173333pt;}
.y33{bottom:956.506667pt;}
.yb6{bottom:962.360000pt;}
.y5f{bottom:963.960000pt;}
.ye5{bottom:968.506667pt;}
.y32{bottom:975.173333pt;}
.yb5{bottom:979.706667pt;}
.y5e{bottom:982.626667pt;}
.ye4{bottom:985.560000pt;}
.y31{bottom:993.840000pt;}
.yb4{bottom:996.773333pt;}
.y5d{bottom:1001.560000pt;}
.ye3{bottom:1002.893333pt;}
.y30{bottom:1012.773333pt;}
.yb3{bottom:1014.106667pt;}
.y5c{bottom:1020.773333pt;}
.y2f{bottom:1036.506667pt;}
.y5b{bottom:1040.226667pt;}
.y2e{bottom:1055.733333pt;}
.y5a{bottom:1056.800000pt;}
.ha{height:32.539583pt;}
.hc{height:39.200000pt;}
.hb{height:46.406250pt;}
.hf{height:51.046875pt;}
.h10{height:51.505208pt;}
.hd{height:53.046875pt;}
.h2{height:53.395833pt;}
.he{height:54.187500pt;}
.h6{height:55.687500pt;}
.h9{height:56.187500pt;}
.h3{height:58.351562pt;}
.h5{height:63.656250pt;}
.h8{height:65.552083pt;}
.h7{height:74.916667pt;}
.h4{height:81.066667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.033333pt;}
.w3{width:264.360000pt;}
.w4{width:302.200000pt;}
.w6{width:424.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:113.366655pt;}
.xb{left:116.299988pt;}
.x8{left:123.766655pt;}
.xf{left:132.299988pt;}
.x14{left:141.893322pt;}
.x16{left:151.226655pt;}
.xa{left:165.933322pt;}
.x7{left:178.199988pt;}
.xd{left:188.866655pt;}
.x5{left:211.800000pt;}
.x9{left:239.266655pt;}
.x10{left:255.000000pt;}
.x6{left:294.733333pt;}
.xe{left:305.439988pt;}
.x13{left:315.839988pt;}
.x11{left:323.306655pt;}
.x15{left:355.306655pt;}
.x2{left:360.359988pt;}
.x4{left:377.733333pt;}
.x12{left:396.933322pt;}
.xc{left:680.466655pt;}
}




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