
    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_55b4bed263aaff2a1a53aa87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_91c0b030f36b01d70710fa93.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074382;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_0306717ffe57fac3dfe78a32.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096000;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_e5879392f65a1783310b5c81.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.187012;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_b08c57612990f96407c48d8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_278895ed2867c6552245df11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.917969;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_0fe3cc02b4407f51583c152d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927000;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_41443b76752a41d3eb9f6f3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_fffcf83bbe2c115a5621269f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_5b969bc3f14ceb794176b653.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4acfafa2de2a1b57971d9213.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005859;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:ffe;src:url('chunks/assets/font_2e8e9868f8418cdc22ccb7dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.894043;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:fff;src:url('chunks/assets/font_9aff77c160b7f5158a74f144.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_a11e9f3ff69b67a9ebdab807.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.188965;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.982000px;}
.v7{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:37.899000px;}
.v5{vertical-align:43.087200px;}
.v3{vertical-align:53.883000px;}
.ls14{letter-spacing:-2.700000px;}
.ls23{letter-spacing:-1.800000px;}
.ls25{letter-spacing:-1.200000px;}
.ls27{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.686409px;}
.ls1e{letter-spacing:-0.646032px;}
.ls13{letter-spacing:-0.600000px;}
.ls1c{letter-spacing:-0.565278px;}
.lse{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.484524px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.314820px;}
.ls7{letter-spacing:0.445800px;}
.lsd{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.516000px;}
.ls6{letter-spacing:0.516600px;}
.lsa{letter-spacing:0.535800px;}
.ls2{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.563400px;}
.lsc{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.629640px;}
.ls20{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.620000px;}
.ls11{letter-spacing:1.728000px;}
.ls3{letter-spacing:2.265600px;}
.ls24{letter-spacing:2.350800px;}
.ls4{letter-spacing:3.031800px;}
.ls18{letter-spacing:3.865800px;}
.ls1{letter-spacing:4.480200px;}
.ls19{letter-spacing:6.149400px;}
.ls16{letter-spacing:6.467400px;}
.ls1b{letter-spacing:7.388400px;}
.ls15{letter-spacing:8.443800px;}
.ls8{letter-spacing:8.655000px;}
.ls1a{letter-spacing:8.832600px;}
.ls17{letter-spacing:13.080000px;}
.ls26{letter-spacing:18.901200px;}
.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;}
}
.wsa{word-spacing:-17.880000px;}
.ws3f{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.980000px;}
.ws4a{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.092000px;}
.ws26{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.580000px;}
.ws39{word-spacing:-14.310000px;}
.ws1{word-spacing:-14.040000px;}
.wsb{word-spacing:-13.932000px;}
.ws14{word-spacing:-12.480000px;}
.ws2c{word-spacing:-11.520000px;}
.ws11{word-spacing:-9.932742px;}
.ws12{word-spacing:-9.811611px;}
.ws24{word-spacing:-9.044498px;}
.ws4{word-spacing:-8.500140px;}
.wse{word-spacing:-8.185320px;}
.ws28{word-spacing:-7.275840px;}
.ws46{word-spacing:-6.102000px;}
.ws1f{word-spacing:-2.399561px;}
.ws4c{word-spacing:-1.890000px;}
.ws15{word-spacing:-1.799671px;}
.ws19{word-spacing:-1.736211px;}
.ws9{word-spacing:-1.728000px;}
.ws23{word-spacing:-1.090179px;}
.ws37{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.015199px;}
.ws17{word-spacing:-0.969048px;}
.ws1b{word-spacing:-0.928671px;}
.ws3b{word-spacing:-0.918000px;}
.ws16{word-spacing:-0.888294px;}
.ws21{word-spacing:-0.847917px;}
.ws25{word-spacing:-0.661122px;}
.ws7{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.524901px;}
.ws22{word-spacing:-0.444147px;}
.ws5{word-spacing:-0.346302px;}
.ws3a{word-spacing:-0.270000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.242262px;}
.ws8{word-spacing:0.540000px;}
.ws18{word-spacing:0.565278px;}
.ws10{word-spacing:0.600000px;}
.ws41{word-spacing:0.648000px;}
.ws38{word-spacing:0.960000px;}
.ws4b{word-spacing:1.080000px;}
.ws1c{word-spacing:1.170933px;}
.ws3e{word-spacing:1.800000px;}
.wsd{word-spacing:2.538000px;}
.ws40{word-spacing:3.348000px;}
.ws3c{word-spacing:4.860000px;}
.wsc{word-spacing:5.238000px;}
.ws44{word-spacing:5.508000px;}
.ws45{word-spacing:5.616000px;}
.ws42{word-spacing:6.588000px;}
.wsf{word-spacing:7.614000px;}
.ws47{word-spacing:9.072000px;}
.ws48{word-spacing:9.612000px;}
.ws43{word-spacing:9.828000px;}
.ws3d{word-spacing:10.098000px;}
.ws49{word-spacing:13.392000px;}
.ws1e{word-spacing:208.346481px;}
.ws27{word-spacing:210.994800px;}
.ws34{word-spacing:287.391000px;}
.ws33{word-spacing:331.968600px;}
.ws36{word-spacing:336.891000px;}
.ws32{word-spacing:338.678400px;}
.ws2d{word-spacing:338.812800px;}
.ws29{word-spacing:342.626400px;}
.ws35{word-spacing:343.600200px;}
.ws31{word-spacing:350.977800px;}
.ws2b{word-spacing:355.548000px;}
.ws2f{word-spacing:357.212400px;}
.ws2e{word-spacing:357.323400px;}
.ws30{word-spacing:357.687000px;}
.ws2a{word-spacing:362.257200px;}
.ws13{word-spacing:412.030800px;}
._13{margin-left:-14.541600px;}
._22{margin-left:-6.564600px;}
._1{margin-left:-5.040000px;}
._b{margin-left:-3.972000px;}
._3{margin-left:-2.880000px;}
._0{margin-left:-1.440000px;}
._2{width:1.432800px;}
._6{width:2.665800px;}
._5{width:4.030200px;}
._4{width:5.900400px;}
._d{width:6.987600px;}
._8{width:8.656200px;}
._a{width:9.730200px;}
._9{width:11.210400px;}
._7{width:12.727800px;}
._10{width:15.314400px;}
._12{width:16.826400px;}
._e{width:18.322200px;}
._f{width:19.818000px;}
._1e{width:21.535200px;}
._11{width:24.127200px;}
._24{width:33.129000px;}
._23{width:38.826000px;}
._25{width:39.965400px;}
._14{width:41.509800px;}
._15{width:159.090690px;}
._16{width:182.595055px;}
._1f{width:229.200000px;}
._1b{width:237.971828px;}
._19{width:239.909935px;}
._1a{width:263.351798px;}
._21{width:314.165400px;}
._20{width:343.548600px;}
._1d{width:525.381600px;}
._18{width:595.829405px;}
._17{width:655.495407px;}
._1c{width:937.748400px;}
._c{width:1587.406800px;}
.fc5{color:rgb(48,88,159);}
.fc3{color:rgb(58,60,141);}
.fc1{color:rgb(5,6,6);}
.fc6{color:rgb(51,51,51);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fsa{font-size:40.377000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:46.145400px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:56.737950px;}
.y5{bottom:66.525004px;}
.y38{bottom:89.114850px;}
.y4{bottom:97.125005px;}
.y37{bottom:113.067600px;}
.y85{bottom:115.795350px;}
.y36{bottom:128.067600px;}
.y84{bottom:133.795350px;}
.yc0{bottom:139.229400px;}
.y21{bottom:139.264499px;}
.yea{bottom:144.504000px;}
.y83{bottom:151.795350px;}
.ybe{bottom:153.629400px;}
.ye9{bottom:166.601100px;}
.ybf{bottom:168.029400px;}
.y35{bottom:169.795350px;}
.yee{bottom:175.039350px;}
.y34{bottom:187.795350px;}
.ye8{bottom:188.698350px;}
.y18{bottom:196.933500px;}
.ybd{bottom:204.105750px;}
.y33{bottom:205.795350px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ye4{bottom:210.795600px;}
.ybc{bottom:218.505750px;}
.yb2{bottom:219.775950px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y82{bottom:223.795350px;}
.yed{bottom:229.039350px;}
.ye7{bottom:232.892700px;}
.ybb{bottom:232.905750px;}
.yb1{bottom:234.175800px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y81{bottom:241.795350px;}
.yba{bottom:247.305750px;}
.ye6{bottom:254.989950px;}
.y4f{bottom:259.795200px;}
.y80{bottom:259.795350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yb9{bottom:261.705750px;}
.yb3{bottom:268.905750px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb8{bottom:276.105750px;}
.ye5{bottom:277.087050px;}
.y4e{bottom:277.795200px;}
.y7f{bottom:277.795350px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb7{bottom:290.505750px;}
.y4d{bottom:295.795200px;}
.y7e{bottom:295.795350px;}
.yec{bottom:299.365800px;}
.yb6{bottom:304.905750px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y4c{bottom:313.795200px;}
.y7d{bottom:313.795350px;}
.yeb{bottom:317.365800px;}
.yb5{bottom:319.305750px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y4b{bottom:331.795200px;}
.y7c{bottom:331.795350px;}
.yb4{bottom:333.705750px;}
.yf{bottom:348.133500px;}
.y4a{bottom:349.795200px;}
.y7b{bottom:349.795350px;}
.yb0{bottom:355.723050px;}
.y49{bottom:367.795200px;}
.y7a{bottom:367.795350px;}
.yaf{bottom:369.193950px;}
.y48{bottom:385.795200px;}
.y79{bottom:385.795350px;}
.ye{bottom:386.785499px;}
.y47{bottom:403.795200px;}
.y78{bottom:403.795350px;}
.yae{bottom:407.365800px;}
.yd{bottom:408.044999px;}
.y46{bottom:421.795200px;}
.y77{bottom:421.795350px;}
.y45{bottom:439.795200px;}
.y76{bottom:439.795350px;}
.y44{bottom:457.795200px;}
.y75{bottom:457.795350px;}
.y43{bottom:475.795200px;}
.y74{bottom:475.795350px;}
.y42{bottom:493.795200px;}
.y73{bottom:493.795350px;}
.yc{bottom:502.864502px;}
.y41{bottom:511.795200px;}
.y72{bottom:511.795350px;}
.yb{bottom:520.864502px;}
.yab{bottom:523.725300px;}
.ya7{bottom:529.781850px;}
.y40{bottom:529.795200px;}
.y71{bottom:529.795350px;}
.yaa{bottom:535.838400px;}
.ya{bottom:538.864499px;}
.ya6{bottom:541.894950px;}
.y3f{bottom:547.795200px;}
.y70{bottom:547.795350px;}
.ya9{bottom:547.951500px;}
.ya5{bottom:554.008050px;}
.y9{bottom:556.864499px;}
.ya8{bottom:560.064600px;}
.y3e{bottom:565.795200px;}
.y6f{bottom:565.795350px;}
.yac{bottom:578.941800px;}
.y3d{bottom:583.795200px;}
.y6e{bottom:583.795350px;}
.y8f{bottom:589.039500px;}
.y3c{bottom:601.795200px;}
.y6d{bottom:601.795350px;}
.ya4{bottom:604.797977px;}
.y3b{bottom:619.795200px;}
.y6c{bottom:619.795350px;}
.y3a{bottom:637.795200px;}
.y6b{bottom:637.795350px;}
.yad{bottom:641.780298px;}
.y8{bottom:645.510000px;}
.ya3{bottom:653.654419px;}
.y39{bottom:655.795200px;}
.y6a{bottom:655.795350px;}
.y7{bottom:666.771000px;}
.yc4{bottom:673.795200px;}
.y69{bottom:673.795350px;}
.yc3{bottom:691.795200px;}
.y68{bottom:691.795350px;}
.y32{bottom:694.961550px;}
.yc2{bottom:709.795200px;}
.y67{bottom:709.795350px;}
.y31{bottom:711.161550px;}
.ya2{bottom:713.216594px;}
.y6{bottom:726.298500px;}
.y30{bottom:727.361550px;}
.yc1{bottom:727.795200px;}
.y66{bottom:727.795350px;}
.y2f{bottom:743.561550px;}
.yf7{bottom:745.795200px;}
.y65{bottom:745.795350px;}
.y3{bottom:752.599495px;}
.ya1{bottom:755.220445px;}
.ye3{bottom:763.795200px;}
.y64{bottom:763.795350px;}
.y2e{bottom:764.013450px;}
.yf6{bottom:781.795200px;}
.y63{bottom:781.795350px;}
.y2d{bottom:784.465500px;}
.y90{bottom:787.039500px;}
.ye1{bottom:794.210850px;}
.ya0{bottom:798.985950px;}
.yf5{bottom:799.795200px;}
.y62{bottom:799.795350px;}
.y2c{bottom:800.665500px;}
.ydd{bottom:801.410850px;}
.ye0{bottom:808.611000px;}
.y9f{bottom:811.099050px;}
.ydc{bottom:815.811000px;}
.y2b{bottom:816.865500px;}
.yf4{bottom:817.795200px;}
.y61{bottom:817.795350px;}
.y108{bottom:820.961550px;}
.yd9{bottom:823.011000px;}
.y9e{bottom:823.212150px;}
.ydb{bottom:830.210850px;}
.y2a{bottom:833.065500px;}
.yf3{bottom:835.795200px;}
.y60{bottom:835.795350px;}
.y107{bottom:837.161550px;}
.ydf{bottom:837.410850px;}
.yda{bottom:844.611000px;}
.yde{bottom:851.811000px;}
.y106{bottom:853.361550px;}
.y29{bottom:853.517400px;}
.yf2{bottom:853.795200px;}
.y5f{bottom:853.795350px;}
.y9d{bottom:866.419050px;}
.y105{bottom:869.561550px;}
.yf1{bottom:871.795200px;}
.y5e{bottom:871.795350px;}
.y28{bottom:873.969300px;}
.y2{bottom:879.369000px;}
.yf0{bottom:889.795200px;}
.y5d{bottom:889.795350px;}
.y104{bottom:890.013450px;}
.y27{bottom:890.169300px;}
.yd6{bottom:893.886000px;}
.yd8{bottom:901.086000px;}
.y26{bottom:906.369300px;}
.yef{bottom:907.795200px;}
.y5c{bottom:907.795350px;}
.yd5{bottom:908.286000px;}
.y103{bottom:910.465500px;}
.yd2{bottom:915.486000px;}
.yc8{bottom:921.358650px;}
.y25{bottom:922.569450px;}
.yd4{bottom:922.686000px;}
.y9c{bottom:925.795200px;}
.y5b{bottom:925.795350px;}
.y102{bottom:926.665500px;}
.yd7{bottom:929.886000px;}
.yc7{bottom:935.758650px;}
.yd3{bottom:937.086000px;}
.y101{bottom:942.865500px;}
.y24{bottom:943.021350px;}
.y9b{bottom:943.795200px;}
.y5a{bottom:943.795350px;}
.y100{bottom:959.065500px;}
.y9a{bottom:961.795200px;}
.y59{bottom:961.795350px;}
.y1{bottom:966.726000px;}
.yd1{bottom:970.633650px;}
.yff{bottom:979.517400px;}
.y99{bottom:979.795200px;}
.y58{bottom:979.795350px;}
.y23{bottom:980.821350px;}
.yd0{bottom:985.033650px;}
.y98{bottom:997.795200px;}
.y8e{bottom:997.795350px;}
.ycf{bottom:999.433650px;}
.yfe{bottom:999.969300px;}
.y86{bottom:1001.365950px;}
.y22{bottom:1002.421350px;}
.yce{bottom:1013.833500px;}
.y97{bottom:1015.795200px;}
.y8d{bottom:1015.795350px;}
.yfd{bottom:1016.169300px;}
.yc9{bottom:1021.033650px;}
.ycd{bottom:1028.233650px;}
.yfc{bottom:1032.369300px;}
.y96{bottom:1033.795200px;}
.y8c{bottom:1033.795350px;}
.ycc{bottom:1042.633650px;}
.yfb{bottom:1048.569450px;}
.y95{bottom:1051.795200px;}
.y54{bottom:1051.795350px;}
.ycb{bottom:1057.033650px;}
.yfa{bottom:1069.021350px;}
.y94{bottom:1069.795200px;}
.y89{bottom:1069.795350px;}
.yca{bottom:1071.433650px;}
.y93{bottom:1087.795200px;}
.y8b{bottom:1087.795350px;}
.y53{bottom:1088.415000px;}
.yc6{bottom:1090.740450px;}
.yc5{bottom:1099.333650px;}
.y92{bottom:1105.795200px;}
.y88{bottom:1105.795350px;}
.yf9{bottom:1106.821350px;}
.y52{bottom:1107.915000px;}
.y91{bottom:1123.795200px;}
.y87{bottom:1123.795350px;}
.ye2{bottom:1127.365800px;}
.y51{bottom:1127.415000px;}
.yf8{bottom:1128.421350px;}
.y50{bottom:1154.052750px;}
.y8a{bottom:1175.269800px;}
.y57{bottom:1176.367650px;}
.y55{bottom:1186.184700px;}
.h18{height:30.893925px;}
.h7{height:32.130000px;}
.h12{height:34.560000px;}
.h17{height:35.307540px;}
.hf{height:36.726562px;}
.h13{height:38.880000px;}
.hd{height:39.408000px;}
.h14{height:41.317383px;}
.h1a{height:41.370117px;}
.h11{height:43.200000px;}
.h15{height:43.260000px;}
.hc{height:44.334000px;}
.he{height:45.375000px;}
.h1c{height:45.539062px;}
.ha{height:45.843570px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h16{height:49.260000px;}
.hb{height:51.046875px;}
.h2{height:55.080000px;}
.h9{height:59.112000px;}
.h19{height:73.206540px;}
.h5{height:78.030000px;}
.h1d{height:88.626262px;}
.h1b{height:99.422063px;}
.h10{height:111.510000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:77.479500px;}
.x5{left:85.039350px;}
.x28{left:91.655700px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:110.551200px;}
.x59{left:114.803250px;}
.xf{left:131.701350px;}
.x51{left:135.095250px;}
.x18{left:137.189100px;}
.x14{left:143.296311px;}
.x26{left:147.026550px;}
.x17{left:157.719756px;}
.x19{left:165.927430px;}
.x13{left:167.805150px;}
.x4b{left:189.287400px;}
.x49{left:197.194650px;}
.x8{left:201.889500px;}
.x4{left:203.484001px;}
.x57{left:215.377950px;}
.x16{left:218.723975px;}
.x6{left:237.742950px;}
.x7{left:241.651200px;}
.x25{left:254.958450px;}
.x56{left:260.008650px;}
.x55{left:267.555900px;}
.x53{left:271.476000px;}
.x54{left:272.498250px;}
.x15{left:285.761705px;}
.x4d{left:288.616800px;}
.x2f{left:290.692950px;}
.x40{left:292.012200px;}
.x2b{left:293.080650px;}
.x41{left:294.786600px;}
.x29{left:297.776850px;}
.x2a{left:298.989750px;}
.x2c{left:300.533700px;}
.x2d{left:301.696800px;}
.x42{left:303.634350px;}
.x2e{left:306.012150px;}
.x1b{left:310.668881px;}
.x39{left:313.107900px;}
.x4c{left:314.143050px;}
.x3f{left:316.047450px;}
.x1a{left:317.320991px;}
.x43{left:322.730100px;}
.x12{left:329.000100px;}
.x27{left:345.381300px;}
.x30{left:347.221200px;}
.x24{left:354.026250px;}
.x1c{left:356.093006px;}
.x52{left:402.738300px;}
.x3{left:454.959000px;}
.xc{left:457.086600px;}
.x33{left:461.973600px;}
.x46{left:463.498500px;}
.x31{left:467.783700px;}
.x34{left:468.908700px;}
.x45{left:470.696850px;}
.x1e{left:472.974326px;}
.x47{left:474.361800px;}
.x32{left:475.389150px;}
.x44{left:477.106950px;}
.x1d{left:478.970311px;}
.x3a{left:480.920400px;}
.xd{left:482.598450px;}
.x35{left:497.695800px;}
.x3b{left:508.277850px;}
.x1f{left:512.503409px;}
.x4e{left:521.190000px;}
.xa{left:571.609800px;}
.x21{left:633.119603px;}
.x37{left:637.810950px;}
.x48{left:639.265200px;}
.x36{left:640.380300px;}
.x3c{left:641.437950px;}
.x22{left:643.536869px;}
.x4a{left:647.439000px;}
.x3d{left:649.210350px;}
.x20{left:666.955529px;}
.x4f{left:672.728100px;}
.x3e{left:673.852050px;}
.x9{left:677.707350px;}
.x50{left:696.525450px;}
.x38{left:700.819800px;}
.x23{left:798.443727px;}
.x58{left:800.524200px;}
.x11{left:802.084200px;}
.xb{left:803.284050px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v7{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:33.688000pt;}
.v5{vertical-align:38.299733pt;}
.v3{vertical-align:47.896000pt;}
.ls14{letter-spacing:-2.400000pt;}
.ls23{letter-spacing:-1.600000pt;}
.ls25{letter-spacing:-1.066667pt;}
.ls27{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.610141pt;}
.ls1e{letter-spacing:-0.574251pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls1c{letter-spacing:-0.502469pt;}
.lse{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.430688pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.279840pt;}
.ls7{letter-spacing:0.396267pt;}
.lsd{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.458667pt;}
.ls6{letter-spacing:0.459200pt;}
.lsa{letter-spacing:0.476267pt;}
.ls2{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.500800pt;}
.lsc{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.559680pt;}
.ls20{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls11{letter-spacing:1.536000pt;}
.ls3{letter-spacing:2.013867pt;}
.ls24{letter-spacing:2.089600pt;}
.ls4{letter-spacing:2.694933pt;}
.ls18{letter-spacing:3.436267pt;}
.ls1{letter-spacing:3.982400pt;}
.ls19{letter-spacing:5.466133pt;}
.ls16{letter-spacing:5.748800pt;}
.ls1b{letter-spacing:6.567467pt;}
.ls15{letter-spacing:7.505600pt;}
.ls8{letter-spacing:7.693333pt;}
.ls1a{letter-spacing:7.851200pt;}
.ls17{letter-spacing:11.626667pt;}
.ls26{letter-spacing:16.801067pt;}
.wsa{word-spacing:-15.893333pt;}
.ws3f{word-spacing:-15.360000pt;}
.ws6{word-spacing:-15.093333pt;}
.ws4a{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.304000pt;}
.ws26{word-spacing:-13.440000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws39{word-spacing:-12.720000pt;}
.ws1{word-spacing:-12.480000pt;}
.wsb{word-spacing:-12.384000pt;}
.ws14{word-spacing:-11.093333pt;}
.ws2c{word-spacing:-10.240000pt;}
.ws11{word-spacing:-8.829104pt;}
.ws12{word-spacing:-8.721432pt;}
.ws24{word-spacing:-8.039554pt;}
.ws4{word-spacing:-7.555680pt;}
.wse{word-spacing:-7.275840pt;}
.ws28{word-spacing:-6.467413pt;}
.ws46{word-spacing:-5.424000pt;}
.ws1f{word-spacing:-2.132943pt;}
.ws4c{word-spacing:-1.680000pt;}
.ws15{word-spacing:-1.599707pt;}
.ws19{word-spacing:-1.543299pt;}
.ws9{word-spacing:-1.536000pt;}
.ws23{word-spacing:-0.969048pt;}
.ws37{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.902399pt;}
.ws17{word-spacing:-0.861376pt;}
.ws1b{word-spacing:-0.825485pt;}
.ws3b{word-spacing:-0.816000pt;}
.ws16{word-spacing:-0.789595pt;}
.ws21{word-spacing:-0.753704pt;}
.ws25{word-spacing:-0.587664pt;}
.ws7{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.466579pt;}
.ws22{word-spacing:-0.394797pt;}
.ws5{word-spacing:-0.307824pt;}
.ws3a{word-spacing:-0.240000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.215344pt;}
.ws8{word-spacing:0.480000pt;}
.ws18{word-spacing:0.502469pt;}
.ws10{word-spacing:0.533333pt;}
.ws41{word-spacing:0.576000pt;}
.ws38{word-spacing:0.853333pt;}
.ws4b{word-spacing:0.960000pt;}
.ws1c{word-spacing:1.040829pt;}
.ws3e{word-spacing:1.600000pt;}
.wsd{word-spacing:2.256000pt;}
.ws40{word-spacing:2.976000pt;}
.ws3c{word-spacing:4.320000pt;}
.wsc{word-spacing:4.656000pt;}
.ws44{word-spacing:4.896000pt;}
.ws45{word-spacing:4.992000pt;}
.ws42{word-spacing:5.856000pt;}
.wsf{word-spacing:6.768000pt;}
.ws47{word-spacing:8.064000pt;}
.ws48{word-spacing:8.544000pt;}
.ws43{word-spacing:8.736000pt;}
.ws3d{word-spacing:8.976000pt;}
.ws49{word-spacing:11.904000pt;}
.ws1e{word-spacing:185.196872pt;}
.ws27{word-spacing:187.550933pt;}
.ws34{word-spacing:255.458667pt;}
.ws33{word-spacing:295.083200pt;}
.ws36{word-spacing:299.458667pt;}
.ws32{word-spacing:301.047467pt;}
.ws2d{word-spacing:301.166933pt;}
.ws29{word-spacing:304.556800pt;}
.ws35{word-spacing:305.422400pt;}
.ws31{word-spacing:311.980267pt;}
.ws2b{word-spacing:316.042667pt;}
.ws2f{word-spacing:317.522133pt;}
.ws2e{word-spacing:317.620800pt;}
.ws30{word-spacing:317.944000pt;}
.ws2a{word-spacing:322.006400pt;}
.ws13{word-spacing:366.249600pt;}
._13{margin-left:-12.925867pt;}
._22{margin-left:-5.835200pt;}
._1{margin-left:-4.480000pt;}
._b{margin-left:-3.530667pt;}
._3{margin-left:-2.560000pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.273600pt;}
._6{width:2.369600pt;}
._5{width:3.582400pt;}
._4{width:5.244800pt;}
._d{width:6.211200pt;}
._8{width:7.694400pt;}
._a{width:8.649067pt;}
._9{width:9.964800pt;}
._7{width:11.313600pt;}
._10{width:13.612800pt;}
._12{width:14.956800pt;}
._e{width:16.286400pt;}
._f{width:17.616000pt;}
._1e{width:19.142400pt;}
._11{width:21.446400pt;}
._24{width:29.448000pt;}
._23{width:34.512000pt;}
._25{width:35.524800pt;}
._14{width:36.897600pt;}
._15{width:141.413947pt;}
._16{width:162.306716pt;}
._1f{width:203.733333pt;}
._1b{width:211.530514pt;}
._19{width:213.253275pt;}
._1a{width:234.090487pt;}
._21{width:279.258133pt;}
._20{width:305.376533pt;}
._1d{width:467.005867pt;}
._18{width:529.626138pt;}
._17{width:582.662584pt;}
._1c{width:833.554133pt;}
._c{width:1411.028267pt;}
.fsb{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fsa{font-size:35.890667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:41.018133pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:50.433733pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:79.213200pt;}
.y4{bottom:86.333337pt;}
.y37{bottom:100.504533pt;}
.y85{bottom:102.929200pt;}
.y36{bottom:113.837867pt;}
.y84{bottom:118.929200pt;}
.yc0{bottom:123.759467pt;}
.y21{bottom:123.790666pt;}
.yea{bottom:128.448000pt;}
.y83{bottom:134.929200pt;}
.ybe{bottom:136.559467pt;}
.ye9{bottom:148.089867pt;}
.ybf{bottom:149.359467pt;}
.y35{bottom:150.929200pt;}
.yee{bottom:155.590533pt;}
.y34{bottom:166.929200pt;}
.ye8{bottom:167.731867pt;}
.y18{bottom:175.052000pt;}
.ybd{bottom:181.427333pt;}
.y33{bottom:182.929200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ye4{bottom:187.373867pt;}
.ybc{bottom:194.227333pt;}
.yb2{bottom:195.356400pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y82{bottom:198.929200pt;}
.yed{bottom:203.590533pt;}
.ye7{bottom:207.015733pt;}
.ybb{bottom:207.027333pt;}
.yb1{bottom:208.156267pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y81{bottom:214.929200pt;}
.yba{bottom:219.827333pt;}
.ye6{bottom:226.657733pt;}
.y4f{bottom:230.929067pt;}
.y80{bottom:230.929200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yb9{bottom:232.627333pt;}
.yb3{bottom:239.027333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb8{bottom:245.427333pt;}
.ye5{bottom:246.299600pt;}
.y4e{bottom:246.929067pt;}
.y7f{bottom:246.929200pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb7{bottom:258.227333pt;}
.y4d{bottom:262.929067pt;}
.y7e{bottom:262.929200pt;}
.yec{bottom:266.102933pt;}
.yb6{bottom:271.027333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y4c{bottom:278.929067pt;}
.y7d{bottom:278.929200pt;}
.yeb{bottom:282.102933pt;}
.yb5{bottom:283.827333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y4b{bottom:294.929067pt;}
.y7c{bottom:294.929200pt;}
.yb4{bottom:296.627333pt;}
.yf{bottom:309.452000pt;}
.y4a{bottom:310.929067pt;}
.y7b{bottom:310.929200pt;}
.yb0{bottom:316.198267pt;}
.y49{bottom:326.929067pt;}
.y7a{bottom:326.929200pt;}
.yaf{bottom:328.172400pt;}
.y48{bottom:342.929067pt;}
.y79{bottom:342.929200pt;}
.ye{bottom:343.809333pt;}
.y47{bottom:358.929067pt;}
.y78{bottom:358.929200pt;}
.yae{bottom:362.102933pt;}
.yd{bottom:362.706666pt;}
.y46{bottom:374.929067pt;}
.y77{bottom:374.929200pt;}
.y45{bottom:390.929067pt;}
.y76{bottom:390.929200pt;}
.y44{bottom:406.929067pt;}
.y75{bottom:406.929200pt;}
.y43{bottom:422.929067pt;}
.y74{bottom:422.929200pt;}
.y42{bottom:438.929067pt;}
.y73{bottom:438.929200pt;}
.yc{bottom:446.990669pt;}
.y41{bottom:454.929067pt;}
.y72{bottom:454.929200pt;}
.yb{bottom:462.990669pt;}
.yab{bottom:465.533600pt;}
.ya7{bottom:470.917200pt;}
.y40{bottom:470.929067pt;}
.y71{bottom:470.929200pt;}
.yaa{bottom:476.300800pt;}
.ya{bottom:478.990666pt;}
.ya6{bottom:481.684400pt;}
.y3f{bottom:486.929067pt;}
.y70{bottom:486.929200pt;}
.ya9{bottom:487.068000pt;}
.ya5{bottom:492.451600pt;}
.y9{bottom:494.990666pt;}
.ya8{bottom:497.835200pt;}
.y3e{bottom:502.929067pt;}
.y6f{bottom:502.929200pt;}
.yac{bottom:514.614933pt;}
.y3d{bottom:518.929067pt;}
.y6e{bottom:518.929200pt;}
.y8f{bottom:523.590667pt;}
.y3c{bottom:534.929067pt;}
.y6d{bottom:534.929200pt;}
.ya4{bottom:537.598202pt;}
.y3b{bottom:550.929067pt;}
.y6c{bottom:550.929200pt;}
.y3a{bottom:566.929067pt;}
.y6b{bottom:566.929200pt;}
.yad{bottom:570.471376pt;}
.y8{bottom:573.786667pt;}
.ya3{bottom:581.026151pt;}
.y39{bottom:582.929067pt;}
.y6a{bottom:582.929200pt;}
.y7{bottom:592.685334pt;}
.yc4{bottom:598.929067pt;}
.y69{bottom:598.929200pt;}
.yc3{bottom:614.929067pt;}
.y68{bottom:614.929200pt;}
.y32{bottom:617.743600pt;}
.yc2{bottom:630.929067pt;}
.y67{bottom:630.929200pt;}
.y31{bottom:632.143600pt;}
.ya2{bottom:633.970306pt;}
.y6{bottom:645.598667pt;}
.y30{bottom:646.543600pt;}
.yc1{bottom:646.929067pt;}
.y66{bottom:646.929200pt;}
.y2f{bottom:660.943600pt;}
.yf7{bottom:662.929067pt;}
.y65{bottom:662.929200pt;}
.y3{bottom:668.977329pt;}
.ya1{bottom:671.307062pt;}
.ye3{bottom:678.929067pt;}
.y64{bottom:678.929200pt;}
.y2e{bottom:679.123067pt;}
.yf6{bottom:694.929067pt;}
.y63{bottom:694.929200pt;}
.y2d{bottom:697.302667pt;}
.y90{bottom:699.590667pt;}
.ye1{bottom:705.965200pt;}
.ya0{bottom:710.209733pt;}
.yf5{bottom:710.929067pt;}
.y62{bottom:710.929200pt;}
.y2c{bottom:711.702667pt;}
.ydd{bottom:712.365200pt;}
.ye0{bottom:718.765333pt;}
.y9f{bottom:720.976933pt;}
.ydc{bottom:725.165333pt;}
.y2b{bottom:726.102667pt;}
.yf4{bottom:726.929067pt;}
.y61{bottom:726.929200pt;}
.y108{bottom:729.743600pt;}
.yd9{bottom:731.565333pt;}
.y9e{bottom:731.744133pt;}
.ydb{bottom:737.965200pt;}
.y2a{bottom:740.502667pt;}
.yf3{bottom:742.929067pt;}
.y60{bottom:742.929200pt;}
.y107{bottom:744.143600pt;}
.ydf{bottom:744.365200pt;}
.yda{bottom:750.765333pt;}
.yde{bottom:757.165333pt;}
.y106{bottom:758.543600pt;}
.y29{bottom:758.682133pt;}
.yf2{bottom:758.929067pt;}
.y5f{bottom:758.929200pt;}
.y9d{bottom:770.150267pt;}
.y105{bottom:772.943600pt;}
.yf1{bottom:774.929067pt;}
.y5e{bottom:774.929200pt;}
.y28{bottom:776.861600pt;}
.y2{bottom:781.661334pt;}
.yf0{bottom:790.929067pt;}
.y5d{bottom:790.929200pt;}
.y104{bottom:791.123067pt;}
.y27{bottom:791.261600pt;}
.yd6{bottom:794.565333pt;}
.yd8{bottom:800.965333pt;}
.y26{bottom:805.661600pt;}
.yef{bottom:806.929067pt;}
.y5c{bottom:806.929200pt;}
.yd5{bottom:807.365333pt;}
.y103{bottom:809.302667pt;}
.yd2{bottom:813.765333pt;}
.yc8{bottom:818.985467pt;}
.y25{bottom:820.061733pt;}
.yd4{bottom:820.165333pt;}
.y9c{bottom:822.929067pt;}
.y5b{bottom:822.929200pt;}
.y102{bottom:823.702667pt;}
.yd7{bottom:826.565333pt;}
.yc7{bottom:831.785467pt;}
.yd3{bottom:832.965333pt;}
.y101{bottom:838.102667pt;}
.y24{bottom:838.241200pt;}
.y9b{bottom:838.929067pt;}
.y5a{bottom:838.929200pt;}
.y100{bottom:852.502667pt;}
.y9a{bottom:854.929067pt;}
.y59{bottom:854.929200pt;}
.y1{bottom:859.312000pt;}
.yd1{bottom:862.785467pt;}
.yff{bottom:870.682133pt;}
.y99{bottom:870.929067pt;}
.y58{bottom:870.929200pt;}
.y23{bottom:871.841200pt;}
.yd0{bottom:875.585467pt;}
.y98{bottom:886.929067pt;}
.y8e{bottom:886.929200pt;}
.ycf{bottom:888.385467pt;}
.yfe{bottom:888.861600pt;}
.y86{bottom:890.103067pt;}
.y22{bottom:891.041200pt;}
.yce{bottom:901.185333pt;}
.y97{bottom:902.929067pt;}
.y8d{bottom:902.929200pt;}
.yfd{bottom:903.261600pt;}
.yc9{bottom:907.585467pt;}
.ycd{bottom:913.985467pt;}
.yfc{bottom:917.661600pt;}
.y96{bottom:918.929067pt;}
.y8c{bottom:918.929200pt;}
.ycc{bottom:926.785467pt;}
.yfb{bottom:932.061733pt;}
.y95{bottom:934.929067pt;}
.y54{bottom:934.929200pt;}
.ycb{bottom:939.585467pt;}
.yfa{bottom:950.241200pt;}
.y94{bottom:950.929067pt;}
.y89{bottom:950.929200pt;}
.yca{bottom:952.385467pt;}
.y93{bottom:966.929067pt;}
.y8b{bottom:966.929200pt;}
.y53{bottom:967.480000pt;}
.yc6{bottom:969.547067pt;}
.yc5{bottom:977.185467pt;}
.y92{bottom:982.929067pt;}
.y88{bottom:982.929200pt;}
.yf9{bottom:983.841200pt;}
.y52{bottom:984.813333pt;}
.y91{bottom:998.929067pt;}
.y87{bottom:998.929200pt;}
.ye2{bottom:1002.102933pt;}
.y51{bottom:1002.146667pt;}
.yf8{bottom:1003.041200pt;}
.y50{bottom:1025.824667pt;}
.y8a{bottom:1044.684267pt;}
.y57{bottom:1045.660133pt;}
.y55{bottom:1054.386400pt;}
.h18{height:27.461267pt;}
.h7{height:28.560000pt;}
.h12{height:30.720000pt;}
.h17{height:31.384480pt;}
.hf{height:32.645833pt;}
.h13{height:34.560000pt;}
.hd{height:35.029333pt;}
.h14{height:36.726562pt;}
.h1a{height:36.773438pt;}
.h11{height:38.400000pt;}
.h15{height:38.453333pt;}
.hc{height:39.408000pt;}
.he{height:40.333333pt;}
.h1c{height:40.479167pt;}
.ha{height:40.749840pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h16{height:43.786667pt;}
.hb{height:45.375000pt;}
.h2{height:48.960000pt;}
.h9{height:52.544000pt;}
.h19{height:65.072480pt;}
.h5{height:69.360000pt;}
.h1d{height:78.778900pt;}
.h1b{height:88.375167pt;}
.h10{height:99.120000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:68.870667pt;}
.x5{left:75.590533pt;}
.x28{left:81.471733pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:98.267733pt;}
.x59{left:102.047333pt;}
.xf{left:117.067867pt;}
.x51{left:120.084667pt;}
.x18{left:121.945867pt;}
.x14{left:127.374499pt;}
.x26{left:130.690267pt;}
.x17{left:140.195339pt;}
.x19{left:147.491049pt;}
.x13{left:149.160133pt;}
.x4b{left:168.255467pt;}
.x49{left:175.284133pt;}
.x8{left:179.457333pt;}
.x4{left:180.874667pt;}
.x57{left:191.447067pt;}
.x16{left:194.421311pt;}
.x6{left:211.327067pt;}
.x7{left:214.801067pt;}
.x25{left:226.629733pt;}
.x56{left:231.118800pt;}
.x55{left:237.827467pt;}
.x53{left:241.312000pt;}
.x54{left:242.220667pt;}
.x15{left:254.010405pt;}
.x4d{left:256.548267pt;}
.x2f{left:258.393733pt;}
.x40{left:259.566400pt;}
.x2b{left:260.516133pt;}
.x41{left:262.032533pt;}
.x29{left:264.690533pt;}
.x2a{left:265.768667pt;}
.x2c{left:267.141067pt;}
.x2d{left:268.174933pt;}
.x42{left:269.897200pt;}
.x2e{left:272.010800pt;}
.x1b{left:276.150116pt;}
.x39{left:278.318133pt;}
.x4c{left:279.238267pt;}
.x3f{left:280.931067pt;}
.x1a{left:282.063103pt;}
.x43{left:286.871200pt;}
.x12{left:292.444533pt;}
.x27{left:307.005600pt;}
.x30{left:308.641067pt;}
.x24{left:314.690000pt;}
.x1c{left:316.527116pt;}
.x52{left:357.989600pt;}
.x3{left:404.408000pt;}
.xc{left:406.299200pt;}
.x33{left:410.643200pt;}
.x46{left:411.998667pt;}
.x31{left:415.807733pt;}
.x34{left:416.807733pt;}
.x45{left:418.397200pt;}
.x1e{left:420.421623pt;}
.x47{left:421.654933pt;}
.x32{left:422.568133pt;}
.x44{left:424.095067pt;}
.x1d{left:425.751387pt;}
.x3a{left:427.484800pt;}
.xd{left:428.976400pt;}
.x35{left:442.396267pt;}
.x3b{left:451.802533pt;}
.x1f{left:455.558586pt;}
.x4e{left:463.280000pt;}
.xa{left:508.097600pt;}
.x21{left:562.772980pt;}
.x37{left:566.943067pt;}
.x48{left:568.235733pt;}
.x36{left:569.226933pt;}
.x3c{left:570.167067pt;}
.x22{left:572.032772pt;}
.x4a{left:575.501333pt;}
.x3d{left:577.075867pt;}
.x20{left:592.849359pt;}
.x4f{left:597.980533pt;}
.x3e{left:598.979600pt;}
.x9{left:602.406533pt;}
.x50{left:619.133733pt;}
.x38{left:622.950933pt;}
.x23{left:709.727757pt;}
.x58{left:711.577067pt;}
.x11{left:712.963733pt;}
.xb{left:714.030267pt;}
}




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