
    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_8158ed49816dc29c669b6e2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c69da9a6adb1583edbae9fcc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_370e6051eface18e28cd2ce3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_713b3255c0e600a9c5d4052b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6fae9a4b474ff3d5be781788.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_80ce994da0590f862ee6fb9d.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_c89e5042d89ac0dce3b85bc7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_7f568a97587284fd363833c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_1a5a1c34b6def1e84657722c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.066406;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_32885690e6e691e5a754b91d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_b1d0ce67feb85192df41fc42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-19.800000px;}
.v7{vertical-align:-14.460000px;}
.v4{vertical-align:-2.400000px;}
.v6{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.400000px;}
.v2{vertical-align:14.400000px;}
.v1{vertical-align:26.400000px;}
.v8{vertical-align:45.000000px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls2e{letter-spacing:-0.168000px;}
.ls2c{letter-spacing:-0.096000px;}
.ls2f{letter-spacing:-0.024000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.090000px;}
.ls24{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.168000px;}
.ls1b{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.282000px;}
.ls25{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.336000px;}
.ls27{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.600000px;}
.ls12{letter-spacing:2.436000px;}
.ls1e{letter-spacing:2.502000px;}
.ls28{letter-spacing:2.610000px;}
.ls10{letter-spacing:2.736000px;}
.ls21{letter-spacing:2.811000px;}
.ls1f{letter-spacing:2.871000px;}
.ls1a{letter-spacing:3.102000px;}
.ls18{letter-spacing:3.321000px;}
.ls14{letter-spacing:3.480000px;}
.ls23{letter-spacing:3.561000px;}
.ls29{letter-spacing:4.041000px;}
.ls2b{letter-spacing:4.101000px;}
.ls22{letter-spacing:4.161000px;}
.lsf{letter-spacing:4.671000px;}
.lse{letter-spacing:4.758000px;}
.ls1d{letter-spacing:4.884000px;}
.ls17{letter-spacing:15.876000px;}
.ls16{letter-spacing:18.471000px;}
.ls20{letter-spacing:20.745000px;}
.ls15{letter-spacing:23.271000px;}
.ls11{letter-spacing:24.459000px;}
.ls5{letter-spacing:48.384000px;}
.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;}
}
.ws20{word-spacing:-72.000000px;}
.wse{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.976000px;}
.ws11{word-spacing:-16.128000px;}
.wsd{word-spacing:-15.864000px;}
.ws12{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.744000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws17{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws16{word-spacing:-3.732000px;}
.wsa{word-spacing:0.000000px;}
.ws1a{word-spacing:0.012000px;}
.ws10{word-spacing:0.516000px;}
.ws14{word-spacing:0.576000px;}
.ws1e{word-spacing:1.848000px;}
.wsf{word-spacing:2.064000px;}
.ws1d{word-spacing:4.044000px;}
.ws18{word-spacing:4.116000px;}
.ws1b{word-spacing:4.140000px;}
.wsb{word-spacing:4.146000px;}
.wsc{word-spacing:4.176000px;}
.ws1c{word-spacing:5.520000px;}
.ws15{word-spacing:7.851000px;}
.ws13{word-spacing:11.451000px;}
._1e{margin-left:-4.680000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._12{width:2.160000px;}
._5{width:3.240000px;}
._4{width:4.830000px;}
._9{width:6.840000px;}
._a{width:8.094000px;}
._e{width:9.096000px;}
._13{width:10.704000px;}
._d{width:11.880000px;}
._c{width:13.332000px;}
._b{width:14.892000px;}
._8{width:16.632000px;}
._27{width:19.728000px;}
._6{width:20.880000px;}
._7{width:21.960000px;}
._30{width:23.016000px;}
._31{width:24.408000px;}
._32{width:25.476000px;}
._14{width:26.496000px;}
._f{width:28.284000px;}
._21{width:29.562000px;}
._40{width:31.494000px;}
._3f{width:34.056000px;}
._48{width:35.598000px;}
._2a{width:36.648000px;}
._23{width:38.304000px;}
._24{width:40.032000px;}
._1a{width:41.760000px;}
._1b{width:43.056000px;}
._38{width:44.928000px;}
._22{width:46.152000px;}
._1c{width:47.448000px;}
._1d{width:48.816000px;}
._47{width:50.040000px;}
._15{width:51.120000px;}
._2c{width:52.158000px;}
._37{width:54.432000px;}
._2b{width:55.512000px;}
._36{width:57.024000px;}
._33{width:58.824000px;}
._34{width:59.988000px;}
._3d{width:62.520000px;}
._41{width:63.636000px;}
._3b{width:65.760000px;}
._1f{width:67.536000px;}
._18{width:69.336000px;}
._19{width:70.392000px;}
._25{width:72.504000px;}
._10{width:77.904000px;}
._11{width:79.200000px;}
._26{width:80.388000px;}
._2e{width:84.888000px;}
._16{width:87.552000px;}
._17{width:88.560000px;}
._2d{width:91.152000px;}
._20{width:92.736000px;}
._46{width:94.362000px;}
._45{width:96.336000px;}
._3c{width:97.680000px;}
._42{width:99.144000px;}
._43{width:100.296000px;}
._44{width:101.448000px;}
._2f{width:117.432000px;}
._3e{width:122.700000px;}
._35{width:128.304000px;}
._28{width:167.832000px;}
._29{width:168.840000px;}
._39{width:196.656000px;}
._3a{width:197.952000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.ye8{bottom:3.600000px;}
.ydb{bottom:3.750000px;}
.y1e{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ye5{bottom:12.300000px;}
.yd9{bottom:12.450000px;}
.ye2{bottom:12.615000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.ye7{bottom:20.850000px;}
.yda{bottom:21.000000px;}
.ydf{bottom:21.150000px;}
.y1d{bottom:24.600000px;}
.y23{bottom:24.645000px;}
.ye4{bottom:29.550000px;}
.ydd{bottom:29.700000px;}
.ye1{bottom:29.865000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.ye6{bottom:38.100000px;}
.yde{bottom:38.400000px;}
.yea{bottom:38.445000px;}
.y1c{bottom:45.300000px;}
.y22{bottom:45.345000px;}
.y3{bottom:57.637500px;}
.y1b{bottom:66.000000px;}
.y21{bottom:66.045000px;}
.y2{bottom:81.637500px;}
.y1a{bottom:86.700000px;}
.y19{bottom:107.400000px;}
.y52{bottom:117.337500px;}
.y102{bottom:123.637500px;}
.y3c{bottom:125.137500px;}
.y119{bottom:126.637500px;}
.y18{bottom:128.100000px;}
.yd0{bottom:129.637500px;}
.ya8{bottom:136.537500px;}
.y51{bottom:141.187500px;}
.y7c{bottom:141.337500px;}
.y101{bottom:147.337500px;}
.y17{bottom:148.800000px;}
.y3b{bottom:148.987500px;}
.y118{bottom:150.495000px;}
.ycf{bottom:154.680000px;}
.ya7{bottom:160.680000px;}
.y50{bottom:165.045000px;}
.y7b{bottom:166.080000px;}
.y16{bottom:169.500000px;}
.y100{bottom:171.180000px;}
.y3a{bottom:172.680000px;}
.y117{bottom:174.345000px;}
.yce{bottom:179.745000px;}
.ya6{bottom:184.395000px;}
.y4f{bottom:188.745000px;}
.y7a{bottom:189.945000px;}
.yff{bottom:195.045000px;}
.y39{bottom:196.545000px;}
.y116{bottom:198.195000px;}
.ycd{bottom:204.945000px;}
.ya5{bottom:208.245000px;}
.y4e{bottom:212.580000px;}
.y79{bottom:213.945000px;}
.yfe{bottom:218.745000px;}
.y38{bottom:220.395000px;}
.y115{bottom:221.895000px;}
.ycc{bottom:229.995000px;}
.ya4{bottom:232.095000px;}
.y4d{bottom:236.445000px;}
.y78{bottom:237.945000px;}
.yfd{bottom:242.595000px;}
.y37{bottom:244.095000px;}
.y114{bottom:245.745000px;}
.ycb{bottom:253.830000px;}
.ya3{bottom:255.795000px;}
.y4c{bottom:260.130000px;}
.y77{bottom:261.795000px;}
.yfc{bottom:266.445000px;}
.y36{bottom:267.945000px;}
.y113{bottom:269.595000px;}
.yca{bottom:277.695000px;}
.ya2{bottom:279.630000px;}
.y4b{bottom:283.995000px;}
.y76{bottom:285.645000px;}
.yfb{bottom:290.130000px;}
.y35{bottom:291.795000px;}
.y112{bottom:293.295000px;}
.yc9{bottom:301.395000px;}
.ya1{bottom:303.630000px;}
.y4a{bottom:307.695000px;}
.y75{bottom:309.345000px;}
.yfa{bottom:313.995000px;}
.y34{bottom:315.495000px;}
.y111{bottom:317.130000px;}
.yc8{bottom:325.245000px;}
.ya0{bottom:327.945000px;}
.y49{bottom:332.895000px;}
.y74{bottom:333.195000px;}
.yf9{bottom:337.830000px;}
.y33{bottom:339.345000px;}
.y110{bottom:340.995000px;}
.yc7{bottom:350.295000px;}
.y9f{bottom:351.945000px;}
.y48{bottom:356.595000px;}
.y73{bottom:357.045000px;}
.yf8{bottom:361.545000px;}
.y32{bottom:363.195000px;}
.y10f{bottom:364.695000px;}
.yc6{bottom:375.330000px;}
.y9e{bottom:375.795000px;}
.y72{bottom:380.775000px;}
.y47{bottom:381.825000px;}
.yf7{bottom:385.425000px;}
.y31{bottom:387.075000px;}
.y10e{bottom:388.575000px;}
.yc5{bottom:400.575000px;}
.y9d{bottom:400.875000px;}
.y71{bottom:404.625000px;}
.y46{bottom:405.675000px;}
.yf6{bottom:409.275000px;}
.y30{bottom:410.775000px;}
.y10d{bottom:412.425000px;}
.yc4{bottom:424.425000px;}
.y9c{bottom:425.025000px;}
.y45{bottom:429.375000px;}
.y70{bottom:429.675000px;}
.yf5{bottom:433.125000px;}
.y2f{bottom:434.625000px;}
.y10c{bottom:436.125000px;}
.yc3{bottom:448.125000px;}
.y9b{bottom:448.725000px;}
.y6f{bottom:453.525000px;}
.y44{bottom:454.575000px;}
.yf4{bottom:456.825000px;}
.y2e{bottom:458.475000px;}
.y10b{bottom:459.975000px;}
.yc2{bottom:472.125000px;}
.y9a{bottom:472.575000px;}
.y43{bottom:478.275000px;}
.y6e{bottom:478.575000px;}
.yf3{bottom:480.675000px;}
.y2d{bottom:482.175000px;}
.y10a{bottom:483.825000px;}
.yc1{bottom:496.275000px;}
.y99{bottom:496.425000px;}
.y42{bottom:502.125000px;}
.y6d{bottom:502.425000px;}
.yf2{bottom:504.525000px;}
.y2c{bottom:506.025000px;}
.y109{bottom:507.525000px;}
.y98{bottom:520.125000px;}
.y41{bottom:527.175000px;}
.y6c{bottom:527.475000px;}
.yf1{bottom:528.225000px;}
.y2b{bottom:529.875000px;}
.y108{bottom:531.375000px;}
.yc0{bottom:543.825000px;}
.y97{bottom:543.975000px;}
.y40{bottom:551.025000px;}
.y6b{bottom:551.325000px;}
.yf0{bottom:552.075000px;}
.y2a{bottom:553.575000px;}
.y107{bottom:555.225000px;}
.ybf{bottom:567.825000px;}
.y96{bottom:569.025000px;}
.y3f{bottom:574.725000px;}
.yef{bottom:575.925000px;}
.y6a{bottom:576.375000px;}
.y29{bottom:577.425000px;}
.y106{bottom:579.075000px;}
.ybe{bottom:591.975000px;}
.y95{bottom:593.325000px;}
.yee{bottom:599.625000px;}
.y3e{bottom:599.925000px;}
.y69{bottom:600.225000px;}
.y28{bottom:601.275000px;}
.y105{bottom:602.775000px;}
.ybd{bottom:615.675000px;}
.y94{bottom:618.075000px;}
.yed{bottom:623.475000px;}
.y3d{bottom:623.625000px;}
.y27{bottom:624.975000px;}
.y68{bottom:625.275000px;}
.y104{bottom:626.625000px;}
.ybc{bottom:639.525000px;}
.y93{bottom:641.925000px;}
.yec{bottom:647.325000px;}
.y26{bottom:648.825000px;}
.y67{bottom:649.125000px;}
.y103{bottom:650.475000px;}
.ybb{bottom:663.375000px;}
.yeb{bottom:664.875000px;}
.y92{bottom:665.625000px;}
.y25{bottom:672.675000px;}
.y66{bottom:674.175000px;}
.yba{bottom:687.075000px;}
.y91{bottom:690.825000px;}
.y65{bottom:698.025000px;}
.ye9{bottom:701.025000px;}
.y24{bottom:705.375000px;}
.yb9{bottom:710.925000px;}
.y90{bottom:715.875000px;}
.y64{bottom:721.875000px;}
.y20{bottom:722.175000px;}
.yb8{bottom:735.975000px;}
.y8f{bottom:739.770000px;}
.y8e{bottom:743.370000px;}
.y63{bottom:745.620000px;}
.ye3{bottom:754.770000px;}
.yb7{bottom:759.870000px;}
.y8d{bottom:767.370000px;}
.y62{bottom:769.470000px;}
.yb6{bottom:784.920000px;}
.y8c{bottom:791.370000px;}
.y61{bottom:793.320000px;}
.y1f{bottom:805.020000px;}
.ye0{bottom:807.855000px;}
.yb5{bottom:808.770000px;}
.y8b{bottom:815.670000px;}
.y60{bottom:817.020000px;}
.y15{bottom:825.720000px;}
.yb4{bottom:833.820000px;}
.y8a{bottom:839.520000px;}
.y5f{bottom:840.870000px;}
.yb3{bottom:857.670000px;}
.ydc{bottom:861.720000px;}
.y89{bottom:863.220000px;}
.y5e{bottom:864.720000px;}
.yb2{bottom:882.720000px;}
.y88{bottom:887.070000px;}
.y5d{bottom:888.420000px;}
.yb1{bottom:906.570000px;}
.y87{bottom:910.920000px;}
.y5c{bottom:912.270000px;}
.yd8{bottom:915.420000px;}
.yb0{bottom:930.420000px;}
.y86{bottom:934.770000px;}
.y5b{bottom:936.120000px;}
.yaf{bottom:954.120000px;}
.y85{bottom:958.470000px;}
.yd7{bottom:958.620000px;}
.y5a{bottom:959.970000px;}
.yae{bottom:977.970000px;}
.y84{bottom:982.320000px;}
.yd6{bottom:982.470000px;}
.y59{bottom:983.670000px;}
.yad{bottom:1001.970000px;}
.y83{bottom:1006.170000px;}
.y58{bottom:1007.520000px;}
.y14{bottom:1015.620000px;}
.yac{bottom:1027.320000px;}
.y82{bottom:1030.020000px;}
.y57{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yd5{bottom:1053.870000px;}
.y81{bottom:1054.320000px;}
.yab{bottom:1054.470000px;}
.y56{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.yd4{bottom:1077.570000px;}
.yaa{bottom:1078.320000px;}
.y80{bottom:1078.470000px;}
.y55{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.yd3{bottom:1101.450000px;}
.ya9{bottom:1102.200000px;}
.y7f{bottom:1102.350000px;}
.y54{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.yd2{bottom:1125.300000px;}
.y7e{bottom:1126.050000px;}
.y53{bottom:1126.500000px;}
.yd1{bottom:1149.000000px;}
.y7d{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.685000px;}
.h16{height:35.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hb{height:50.484375px;}
.h1a{height:52.350000px;}
.h18{height:52.935000px;}
.h1b{height:52.987500px;}
.h7{height:52.998047px;}
.h19{height:53.100000px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h17{height:60.468750px;}
.h13{height:60.679688px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hc{height:70.664062px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h15{height:80.396484px;}
.h2{height:82.441406px;}
.h10{height:82.837500px;}
.h14{height:85.064063px;}
.he{height:186.285000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wc{width:79.050000px;}
.w9{width:90.000000px;}
.wb{width:113.250000px;}
.wa{width:113.287500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x1f{left:122.737487px;}
.x22{left:125.437487px;}
.xa{left:128.130000px;}
.x10{left:138.637487px;}
.x20{left:149.737487px;}
.x28{left:157.679987px;}
.x29{left:163.379987px;}
.x21{left:185.279987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x1b{left:457.274987px;}
.x25{left:464.774987px;}
.x1e{left:510.374987px;}
.x26{left:516.224987px;}
.x12{left:521.774987px;}
.x1c{left:537.374987px;}
.x2a{left:548.775000px;}
.x1d{left:564.374987px;}
.x11{left:565.574987px;}
.x24{left:586.724987px;}
.x15{left:588.224987px;}
.x23{left:594.974987px;}
.x27{left:618.674987px;}
.xc{left:625.425000px;}
.x2b{left:662.820000px;}
.x14{left:697.154987px;}
.xf{left:713.655000px;}
.x13{left:760.169987px;}
.x2c{left:776.820000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v5{vertical-align:-17.600000pt;}
.v7{vertical-align:-12.853333pt;}
.v4{vertical-align:-2.133333pt;}
.v6{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.133333pt;}
.v2{vertical-align:12.800000pt;}
.v1{vertical-align:23.466667pt;}
.v8{vertical-align:40.000000pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls2e{letter-spacing:-0.149333pt;}
.ls2c{letter-spacing:-0.085333pt;}
.ls2f{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.080000pt;}
.ls24{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.149333pt;}
.ls1b{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.250667pt;}
.ls25{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.298667pt;}
.ls27{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls12{letter-spacing:2.165333pt;}
.ls1e{letter-spacing:2.224000pt;}
.ls28{letter-spacing:2.320000pt;}
.ls10{letter-spacing:2.432000pt;}
.ls21{letter-spacing:2.498667pt;}
.ls1f{letter-spacing:2.552000pt;}
.ls1a{letter-spacing:2.757333pt;}
.ls18{letter-spacing:2.952000pt;}
.ls14{letter-spacing:3.093333pt;}
.ls23{letter-spacing:3.165333pt;}
.ls29{letter-spacing:3.592000pt;}
.ls2b{letter-spacing:3.645333pt;}
.ls22{letter-spacing:3.698667pt;}
.lsf{letter-spacing:4.152000pt;}
.lse{letter-spacing:4.229333pt;}
.ls1d{letter-spacing:4.341333pt;}
.ls17{letter-spacing:14.112000pt;}
.ls16{letter-spacing:16.418667pt;}
.ls20{letter-spacing:18.440000pt;}
.ls15{letter-spacing:20.685333pt;}
.ls11{letter-spacing:21.741333pt;}
.ls5{letter-spacing:43.008000pt;}
.ws20{word-spacing:-64.000000pt;}
.wse{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.978667pt;}
.ws11{word-spacing:-14.336000pt;}
.wsd{word-spacing:-14.101333pt;}
.ws12{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.994667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws17{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws16{word-spacing:-3.317333pt;}
.wsa{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.010667pt;}
.ws10{word-spacing:0.458667pt;}
.ws14{word-spacing:0.512000pt;}
.ws1e{word-spacing:1.642667pt;}
.wsf{word-spacing:1.834667pt;}
.ws1d{word-spacing:3.594667pt;}
.ws18{word-spacing:3.658667pt;}
.ws1b{word-spacing:3.680000pt;}
.wsb{word-spacing:3.685333pt;}
.wsc{word-spacing:3.712000pt;}
.ws1c{word-spacing:4.906667pt;}
.ws15{word-spacing:6.978667pt;}
.ws13{word-spacing:10.178667pt;}
._1e{margin-left:-4.160000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._12{width:1.920000pt;}
._5{width:2.880000pt;}
._4{width:4.293333pt;}
._9{width:6.080000pt;}
._a{width:7.194667pt;}
._e{width:8.085333pt;}
._13{width:9.514667pt;}
._d{width:10.560000pt;}
._c{width:11.850667pt;}
._b{width:13.237333pt;}
._8{width:14.784000pt;}
._27{width:17.536000pt;}
._6{width:18.560000pt;}
._7{width:19.520000pt;}
._30{width:20.458667pt;}
._31{width:21.696000pt;}
._32{width:22.645333pt;}
._14{width:23.552000pt;}
._f{width:25.141333pt;}
._21{width:26.277333pt;}
._40{width:27.994667pt;}
._3f{width:30.272000pt;}
._48{width:31.642667pt;}
._2a{width:32.576000pt;}
._23{width:34.048000pt;}
._24{width:35.584000pt;}
._1a{width:37.120000pt;}
._1b{width:38.272000pt;}
._38{width:39.936000pt;}
._22{width:41.024000pt;}
._1c{width:42.176000pt;}
._1d{width:43.392000pt;}
._47{width:44.480000pt;}
._15{width:45.440000pt;}
._2c{width:46.362667pt;}
._37{width:48.384000pt;}
._2b{width:49.344000pt;}
._36{width:50.688000pt;}
._33{width:52.288000pt;}
._34{width:53.322667pt;}
._3d{width:55.573333pt;}
._41{width:56.565333pt;}
._3b{width:58.453333pt;}
._1f{width:60.032000pt;}
._18{width:61.632000pt;}
._19{width:62.570667pt;}
._25{width:64.448000pt;}
._10{width:69.248000pt;}
._11{width:70.400000pt;}
._26{width:71.456000pt;}
._2e{width:75.456000pt;}
._16{width:77.824000pt;}
._17{width:78.720000pt;}
._2d{width:81.024000pt;}
._20{width:82.432000pt;}
._46{width:83.877333pt;}
._45{width:85.632000pt;}
._3c{width:86.826667pt;}
._42{width:88.128000pt;}
._43{width:89.152000pt;}
._44{width:90.176000pt;}
._2f{width:104.384000pt;}
._3e{width:109.066667pt;}
._35{width:114.048000pt;}
._28{width:149.184000pt;}
._29{width:150.080000pt;}
._39{width:174.805333pt;}
._3a{width:175.957333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.ye8{bottom:3.200000pt;}
.ydb{bottom:3.333333pt;}
.y1e{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ye5{bottom:10.933333pt;}
.yd9{bottom:11.066667pt;}
.ye2{bottom:11.213333pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.ye7{bottom:18.533333pt;}
.yda{bottom:18.666667pt;}
.ydf{bottom:18.800000pt;}
.y1d{bottom:21.866667pt;}
.y23{bottom:21.906667pt;}
.ye4{bottom:26.266667pt;}
.ydd{bottom:26.400000pt;}
.ye1{bottom:26.546667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.ye6{bottom:33.866667pt;}
.yde{bottom:34.133333pt;}
.yea{bottom:34.173333pt;}
.y1c{bottom:40.266667pt;}
.y22{bottom:40.306667pt;}
.y3{bottom:51.233333pt;}
.y1b{bottom:58.666667pt;}
.y21{bottom:58.706667pt;}
.y2{bottom:72.566667pt;}
.y1a{bottom:77.066667pt;}
.y19{bottom:95.466667pt;}
.y52{bottom:104.300000pt;}
.y102{bottom:109.900000pt;}
.y3c{bottom:111.233333pt;}
.y119{bottom:112.566667pt;}
.y18{bottom:113.866667pt;}
.yd0{bottom:115.233333pt;}
.ya8{bottom:121.366667pt;}
.y51{bottom:125.500000pt;}
.y7c{bottom:125.633333pt;}
.y101{bottom:130.966667pt;}
.y17{bottom:132.266667pt;}
.y3b{bottom:132.433333pt;}
.y118{bottom:133.773333pt;}
.ycf{bottom:137.493333pt;}
.ya7{bottom:142.826667pt;}
.y50{bottom:146.706667pt;}
.y7b{bottom:147.626667pt;}
.y16{bottom:150.666667pt;}
.y100{bottom:152.160000pt;}
.y3a{bottom:153.493333pt;}
.y117{bottom:154.973333pt;}
.yce{bottom:159.773333pt;}
.ya6{bottom:163.906667pt;}
.y4f{bottom:167.773333pt;}
.y7a{bottom:168.840000pt;}
.yff{bottom:173.373333pt;}
.y39{bottom:174.706667pt;}
.y116{bottom:176.173333pt;}
.ycd{bottom:182.173333pt;}
.ya5{bottom:185.106667pt;}
.y4e{bottom:188.960000pt;}
.y79{bottom:190.173333pt;}
.yfe{bottom:194.440000pt;}
.y38{bottom:195.906667pt;}
.y115{bottom:197.240000pt;}
.ycc{bottom:204.440000pt;}
.ya4{bottom:206.306667pt;}
.y4d{bottom:210.173333pt;}
.y78{bottom:211.506667pt;}
.yfd{bottom:215.640000pt;}
.y37{bottom:216.973333pt;}
.y114{bottom:218.440000pt;}
.ycb{bottom:225.626667pt;}
.ya3{bottom:227.373333pt;}
.y4c{bottom:231.226667pt;}
.y77{bottom:232.706667pt;}
.yfc{bottom:236.840000pt;}
.y36{bottom:238.173333pt;}
.y113{bottom:239.640000pt;}
.yca{bottom:246.840000pt;}
.ya2{bottom:248.560000pt;}
.y4b{bottom:252.440000pt;}
.y76{bottom:253.906667pt;}
.yfb{bottom:257.893333pt;}
.y35{bottom:259.373333pt;}
.y112{bottom:260.706667pt;}
.yc9{bottom:267.906667pt;}
.ya1{bottom:269.893333pt;}
.y4a{bottom:273.506667pt;}
.y75{bottom:274.973333pt;}
.yfa{bottom:279.106667pt;}
.y34{bottom:280.440000pt;}
.y111{bottom:281.893333pt;}
.yc8{bottom:289.106667pt;}
.ya0{bottom:291.506667pt;}
.y49{bottom:295.906667pt;}
.y74{bottom:296.173333pt;}
.yf9{bottom:300.293333pt;}
.y33{bottom:301.640000pt;}
.y110{bottom:303.106667pt;}
.yc7{bottom:311.373333pt;}
.y9f{bottom:312.840000pt;}
.y48{bottom:316.973333pt;}
.y73{bottom:317.373333pt;}
.yf8{bottom:321.373333pt;}
.y32{bottom:322.840000pt;}
.y10f{bottom:324.173333pt;}
.yc6{bottom:333.626667pt;}
.y9e{bottom:334.040000pt;}
.y72{bottom:338.466667pt;}
.y47{bottom:339.400000pt;}
.yf7{bottom:342.600000pt;}
.y31{bottom:344.066667pt;}
.y10e{bottom:345.400000pt;}
.yc5{bottom:356.066667pt;}
.y9d{bottom:356.333333pt;}
.y71{bottom:359.666667pt;}
.y46{bottom:360.600000pt;}
.yf6{bottom:363.800000pt;}
.y30{bottom:365.133333pt;}
.y10d{bottom:366.600000pt;}
.yc4{bottom:377.266667pt;}
.y9c{bottom:377.800000pt;}
.y45{bottom:381.666667pt;}
.y70{bottom:381.933333pt;}
.yf5{bottom:385.000000pt;}
.y2f{bottom:386.333333pt;}
.y10c{bottom:387.666667pt;}
.yc3{bottom:398.333333pt;}
.y9b{bottom:398.866667pt;}
.y6f{bottom:403.133333pt;}
.y44{bottom:404.066667pt;}
.yf4{bottom:406.066667pt;}
.y2e{bottom:407.533333pt;}
.y10b{bottom:408.866667pt;}
.yc2{bottom:419.666667pt;}
.y9a{bottom:420.066667pt;}
.y43{bottom:425.133333pt;}
.y6e{bottom:425.400000pt;}
.yf3{bottom:427.266667pt;}
.y2d{bottom:428.600000pt;}
.y10a{bottom:430.066667pt;}
.yc1{bottom:441.133333pt;}
.y99{bottom:441.266667pt;}
.y42{bottom:446.333333pt;}
.y6d{bottom:446.600000pt;}
.yf2{bottom:448.466667pt;}
.y2c{bottom:449.800000pt;}
.y109{bottom:451.133333pt;}
.y98{bottom:462.333333pt;}
.y41{bottom:468.600000pt;}
.y6c{bottom:468.866667pt;}
.yf1{bottom:469.533333pt;}
.y2b{bottom:471.000000pt;}
.y108{bottom:472.333333pt;}
.yc0{bottom:483.400000pt;}
.y97{bottom:483.533333pt;}
.y40{bottom:489.800000pt;}
.y6b{bottom:490.066667pt;}
.yf0{bottom:490.733333pt;}
.y2a{bottom:492.066667pt;}
.y107{bottom:493.533333pt;}
.ybf{bottom:504.733333pt;}
.y96{bottom:505.800000pt;}
.y3f{bottom:510.866667pt;}
.yef{bottom:511.933333pt;}
.y6a{bottom:512.333333pt;}
.y29{bottom:513.266667pt;}
.y106{bottom:514.733333pt;}
.ybe{bottom:526.200000pt;}
.y95{bottom:527.400000pt;}
.yee{bottom:533.000000pt;}
.y3e{bottom:533.266667pt;}
.y69{bottom:533.533333pt;}
.y28{bottom:534.466667pt;}
.y105{bottom:535.800000pt;}
.ybd{bottom:547.266667pt;}
.y94{bottom:549.400000pt;}
.yed{bottom:554.200000pt;}
.y3d{bottom:554.333333pt;}
.y27{bottom:555.533333pt;}
.y68{bottom:555.800000pt;}
.y104{bottom:557.000000pt;}
.ybc{bottom:568.466667pt;}
.y93{bottom:570.600000pt;}
.yec{bottom:575.400000pt;}
.y26{bottom:576.733333pt;}
.y67{bottom:577.000000pt;}
.y103{bottom:578.200000pt;}
.ybb{bottom:589.666667pt;}
.yeb{bottom:591.000000pt;}
.y92{bottom:591.666667pt;}
.y25{bottom:597.933333pt;}
.y66{bottom:599.266667pt;}
.yba{bottom:610.733333pt;}
.y91{bottom:614.066667pt;}
.y65{bottom:620.466667pt;}
.ye9{bottom:623.133333pt;}
.y24{bottom:627.000000pt;}
.yb9{bottom:631.933333pt;}
.y90{bottom:636.333333pt;}
.y64{bottom:641.666667pt;}
.y20{bottom:641.933333pt;}
.yb8{bottom:654.200000pt;}
.y8f{bottom:657.573333pt;}
.y8e{bottom:660.773333pt;}
.y63{bottom:662.773333pt;}
.ye3{bottom:670.906667pt;}
.yb7{bottom:675.440000pt;}
.y8d{bottom:682.106667pt;}
.y62{bottom:683.973333pt;}
.yb6{bottom:697.706667pt;}
.y8c{bottom:703.440000pt;}
.y61{bottom:705.173333pt;}
.y1f{bottom:715.573333pt;}
.ye0{bottom:718.093333pt;}
.yb5{bottom:718.906667pt;}
.y8b{bottom:725.040000pt;}
.y60{bottom:726.240000pt;}
.y15{bottom:733.973333pt;}
.yb4{bottom:741.173333pt;}
.y8a{bottom:746.240000pt;}
.y5f{bottom:747.440000pt;}
.yb3{bottom:762.373333pt;}
.ydc{bottom:765.973333pt;}
.y89{bottom:767.306667pt;}
.y5e{bottom:768.640000pt;}
.yb2{bottom:784.640000pt;}
.y88{bottom:788.506667pt;}
.y5d{bottom:789.706667pt;}
.yb1{bottom:805.840000pt;}
.y87{bottom:809.706667pt;}
.y5c{bottom:810.906667pt;}
.yd8{bottom:813.706667pt;}
.yb0{bottom:827.040000pt;}
.y86{bottom:830.906667pt;}
.y5b{bottom:832.106667pt;}
.yaf{bottom:848.106667pt;}
.y85{bottom:851.973333pt;}
.yd7{bottom:852.106667pt;}
.y5a{bottom:853.306667pt;}
.yae{bottom:869.306667pt;}
.y84{bottom:873.173333pt;}
.yd6{bottom:873.306667pt;}
.y59{bottom:874.373333pt;}
.yad{bottom:890.640000pt;}
.y83{bottom:894.373333pt;}
.y58{bottom:895.573333pt;}
.y14{bottom:902.773333pt;}
.yac{bottom:913.173333pt;}
.y82{bottom:915.573333pt;}
.y57{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yd5{bottom:936.773333pt;}
.y81{bottom:937.173333pt;}
.yab{bottom:937.306667pt;}
.y56{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.yd4{bottom:957.840000pt;}
.yaa{bottom:958.506667pt;}
.y80{bottom:958.640000pt;}
.y55{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.yd3{bottom:979.066667pt;}
.ya9{bottom:979.733333pt;}
.y7f{bottom:979.866667pt;}
.y54{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.yd2{bottom:1000.266667pt;}
.y7e{bottom:1000.933333pt;}
.y53{bottom:1001.333333pt;}
.yd1{bottom:1021.333333pt;}
.y7d{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.386667pt;}
.h16{height:31.466667pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hb{height:44.875000pt;}
.h1a{height:46.533333pt;}
.h18{height:47.053333pt;}
.h1b{height:47.100000pt;}
.h7{height:47.109375pt;}
.h19{height:47.200000pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h17{height:53.750000pt;}
.h13{height:53.937500pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hc{height:62.812500pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h15{height:71.463542pt;}
.h2{height:73.281250pt;}
.h10{height:73.633333pt;}
.h14{height:75.612500pt;}
.he{height:165.586667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wc{width:70.266667pt;}
.w9{width:80.000000pt;}
.wb{width:100.666667pt;}
.wa{width:100.700000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x1f{left:109.099988pt;}
.x22{left:111.499988pt;}
.xa{left:113.893333pt;}
.x10{left:123.233322pt;}
.x20{left:133.099988pt;}
.x28{left:140.159988pt;}
.x29{left:145.226655pt;}
.x21{left:164.693322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x1b{left:406.466655pt;}
.x25{left:413.133322pt;}
.x1e{left:453.666655pt;}
.x26{left:458.866655pt;}
.x12{left:463.799988pt;}
.x1c{left:477.666655pt;}
.x2a{left:487.800000pt;}
.x1d{left:501.666655pt;}
.x11{left:502.733322pt;}
.x24{left:521.533322pt;}
.x15{left:522.866655pt;}
.x23{left:528.866655pt;}
.x27{left:549.933322pt;}
.xc{left:555.933333pt;}
.x2b{left:589.173333pt;}
.x14{left:619.693322pt;}
.xf{left:634.360000pt;}
.x13{left:675.706655pt;}
.x2c{left:690.506667pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




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