
    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_46e4ae8cebe2220c5b34478a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_8631a51d498c934f273e4532.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b4c310e2a2d72d0325b3ac76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a039939b3424987e63e313c6.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_7bd1fd3eb09ccd5c4c91659b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_063273e14b1696fd4d37459e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e47169cc1ad728a72630c173.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_6b028c2f7e048b5806cebee0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724000;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_6f45e93ad51e59d68a79820c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_c430d1eeeb52a9505dc2a151.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_20ae0f679e0f2d3bc03272b2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_dc9ec338f5d5d76ecd825960.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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;}
.m1{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls4c{letter-spacing:-1.663200px;}
.ls26{letter-spacing:-1.632960px;}
.ls48{letter-spacing:-1.614816px;}
.ls45{letter-spacing:-1.596672px;}
.ls3e{letter-spacing:-1.584576px;}
.ls3d{letter-spacing:-1.536192px;}
.ls46{letter-spacing:-1.518048px;}
.ls44{letter-spacing:-1.499904px;}
.ls3f{letter-spacing:-1.457568px;}
.ls43{letter-spacing:-1.439424px;}
.ls40{letter-spacing:-1.421280px;}
.ls4b{letter-spacing:-1.378944px;}
.ls42{letter-spacing:-1.360800px;}
.ls27{letter-spacing:-1.344672px;}
.ls47{letter-spacing:-1.342656px;}
.ls41{letter-spacing:-1.318464px;}
.ls1c{letter-spacing:-1.209600px;}
.ls1d{letter-spacing:-1.202400px;}
.ls1b{letter-spacing:-1.188000px;}
.ls16{letter-spacing:-0.399168px;}
.ls15{letter-spacing:-0.338688px;}
.ls1a{letter-spacing:-0.241920px;}
.ls18{letter-spacing:-0.223776px;}
.ls23{letter-spacing:-0.221760px;}
.ls13{letter-spacing:-0.178848px;}
.ls24{letter-spacing:-0.177408px;}
.ls19{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.145728px;}
.ls12{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.120960px;}
.ls11{letter-spacing:-0.066240px;}
.lse{letter-spacing:-0.059616px;}
.lsf{letter-spacing:-0.052992px;}
.ls14{letter-spacing:-0.021600px;}
.ls10{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.115200px;}
.ls1e{letter-spacing:0.202752px;}
.ls39{letter-spacing:0.840960px;}
.ls6{letter-spacing:0.912960px;}
.ls1f{letter-spacing:2.658672px;}
.ls2{letter-spacing:3.316464px;}
.ls35{letter-spacing:3.414672px;}
.ls9{letter-spacing:3.711888px;}
.ls3{letter-spacing:3.752640px;}
.ls8{letter-spacing:4.862880px;}
.ls30{letter-spacing:5.597136px;}
.ls31{letter-spacing:5.597280px;}
.ls7{letter-spacing:5.667840px;}
.ls4{letter-spacing:6.322176px;}
.ls5{letter-spacing:6.323616px;}
.ls38{letter-spacing:6.629904px;}
.ls28{letter-spacing:7.666560px;}
.ls3b{letter-spacing:7.970400px;}
.ls2c{letter-spacing:8.490240px;}
.ls29{letter-spacing:8.498880px;}
.ls21{letter-spacing:10.535040px;}
.ls32{letter-spacing:10.725120px;}
.lsa{letter-spacing:11.103840px;}
.ls36{letter-spacing:11.963376px;}
.ls3a{letter-spacing:12.885120px;}
.ls2d{letter-spacing:13.916160px;}
.lsc{letter-spacing:15.060960px;}
.lsb{letter-spacing:15.061536px;}
.ls22{letter-spacing:16.644960px;}
.ls2f{letter-spacing:17.197920px;}
.ls2e{letter-spacing:17.198784px;}
.ls0{letter-spacing:18.036720px;}
.ls33{letter-spacing:18.133344px;}
.ls20{letter-spacing:18.433440px;}
.ls37{letter-spacing:20.104848px;}
.ls34{letter-spacing:20.444832px;}
.ls1{letter-spacing:24.609312px;}
.ls49{letter-spacing:24.985440px;}
.ls2a{letter-spacing:31.055040px;}
.ls4a{letter-spacing:37.488384px;}
.ls25{letter-spacing:56.066400px;}
.ls3c{letter-spacing:93.759840px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.812000px;}
.wsb{word-spacing:-16.797600px;}
.ws7{word-spacing:-16.790400px;}
.ws9{word-spacing:-15.180480px;}
.ws4{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.896224px;}
.ws3{word-spacing:-14.878080px;}
.ws13{word-spacing:-13.777344px;}
.ws10{word-spacing:-13.759200px;}
.ws14{word-spacing:-13.741056px;}
.ws11{word-spacing:-13.698720px;}
.wse{word-spacing:-13.680576px;}
.wsf{word-spacing:-13.620096px;}
.ws12{word-spacing:-13.601952px;}
.wsd{word-spacing:-13.583808px;}
.ws15{word-spacing:-13.523328px;}
.wsc{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.050400px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-2.049984px;}
._0{margin-left:-1.009872px;}
._1{width:1.057104px;}
._a{width:2.664000px;}
._6{width:3.744000px;}
._9{width:5.040000px;}
._e{width:6.264000px;}
._10{width:7.272000px;}
._12{width:8.392176px;}
._13{width:10.296000px;}
._f{width:11.736000px;}
._14{width:12.888000px;}
._3{width:14.256000px;}
._b{width:15.785280px;}
._24{width:16.803216px;}
._d{width:18.019008px;}
._2{width:19.132992px;}
._4{width:20.736000px;}
._1b{width:21.744000px;}
._18{width:22.824000px;}
._15{width:24.389712px;}
._11{width:25.866288px;}
._c{width:27.720000px;}
._5{width:29.232000px;}
._19{width:30.384000px;}
._1a{width:31.824000px;}
._1d{width:33.264000px;}
._1c{width:34.643088px;}
._16{width:36.332496px;}
._8{width:37.728000px;}
._20{width:38.808000px;}
._21{width:40.104000px;}
._23{width:41.483808px;}
._1f{width:45.359280px;}
._1e{width:46.944720px;}
._22{width:49.680000px;}
._7{width:51.624000px;}
._29{width:75.659040px;}
._28{width:76.688640px;}
._27{width:95.316480px;}
._25{width:106.202880px;}
._26{width:107.944416px;}
.fc2{color:rgb(28,30,41);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.ydd{bottom:92.880000px;}
.y93{bottom:100.080000px;}
.yab{bottom:101.880000px;}
.y115{bottom:103.680000px;}
.y35{bottom:104.400000px;}
.ydc{bottom:113.400000px;}
.y92{bottom:120.960000px;}
.yaa{bottom:122.400000px;}
.y34{bottom:125.280000px;}
.yc9{bottom:131.400000px;}
.ydb{bottom:134.280000px;}
.y114{bottom:138.240000px;}
.y91{bottom:141.480000px;}
.ya9{bottom:143.280000px;}
.y33{bottom:145.800000px;}
.yc8{bottom:152.280000px;}
.y68{bottom:152.640000px;}
.yda{bottom:154.800000px;}
.y113{bottom:155.520000px;}
.ya8{bottom:163.800000px;}
.y32{bottom:166.680000px;}
.y90{bottom:171.000000px;}
.yc7{bottom:172.800000px;}
.y67{bottom:173.160000px;}
.yd9{bottom:175.680000px;}
.ya7{bottom:184.680000px;}
.y31{bottom:187.200000px;}
.y112{bottom:190.080000px;}
.yc6{bottom:193.680000px;}
.y66{bottom:194.040000px;}
.y8f{bottom:203.760000px;}
.yd8{bottom:204.840000px;}
.ya6{bottom:205.200000px;}
.y111{bottom:207.360000px;}
.y30{bottom:208.080000px;}
.yb5{bottom:213.840000px;}
.yc5{bottom:214.200000px;}
.y65{bottom:214.560000px;}
.y8e{bottom:224.640000px;}
.ya5{bottom:226.080000px;}
.y2f{bottom:228.600000px;}
.yc4{bottom:235.080000px;}
.y64{bottom:235.440000px;}
.y110{bottom:241.920000px;}
.y8d{bottom:245.880000px;}
.yb0{bottom:246.600000px;}
.y2e{bottom:249.480000px;}
.ya4{bottom:255.240000px;}
.yc3{bottom:255.600000px;}
.y63{bottom:255.960000px;}
.y10f{bottom:258.840000px;}
.y8c{bottom:266.400000px;}
.ycd{bottom:267.480000px;}
.yb4{bottom:267.840000px;}
.y2d{bottom:270.000000px;}
.yaf{bottom:276.120000px;}
.yc2{bottom:276.480000px;}
.y62{bottom:276.840000px;}
.ya3{bottom:288.000000px;}
.y8b{bottom:288.360000px;}
.y2c{bottom:290.880000px;}
.y10e{bottom:293.400000px;}
.yc1{bottom:297.000000px;}
.y61{bottom:297.360000px;}
.yae{bottom:308.880000px;}
.ya2{bottom:309.240000px;}
.y8a{bottom:310.320000px;}
.y10d{bottom:310.680000px;}
.y2b{bottom:311.400000px;}
.yc0{bottom:317.880000px;}
.y60{bottom:318.240000px;}
.y10c{bottom:327.960000px;}
.yd7{bottom:329.400000px;}
.ya1{bottom:329.760000px;}
.y89{bottom:332.280000px;}
.ycc{bottom:338.040000px;}
.ybf{bottom:338.400000px;}
.y5f{bottom:338.760000px;}
.y2a{bottom:340.920000px;}
.y10b{bottom:345.240000px;}
.yd6{bottom:350.280000px;}
.ya0{bottom:350.640000px;}
.y88{bottom:353.160000px;}
.ybe{bottom:359.280000px;}
.y5e{bottom:359.640000px;}
.y13f{bottom:360.720000px;}
.y10a{bottom:362.520000px;}
.ycb{bottom:370.800000px;}
.y9f{bottom:371.160000px;}
.y29{bottom:373.320000px;}
.y87{bottom:375.120000px;}
.y13e{bottom:378.000000px;}
.ybd{bottom:379.800000px;}
.y5d{bottom:380.160000px;}
.yd5{bottom:391.680000px;}
.y9e{bottom:392.040000px;}
.y13d{bottom:395.280000px;}
.y86{bottom:397.080000px;}
.ye0{bottom:400.320000px;}
.ybc{bottom:400.680000px;}
.y5c{bottom:401.040000px;}
.y28{bottom:403.200000px;}
.yd4{bottom:412.200000px;}
.y9d{bottom:412.560000px;}
.y109{bottom:414.360000px;}
.y85{bottom:419.040000px;}
.ybb{bottom:421.200000px;}
.y5b{bottom:421.560000px;}
.y13c{bottom:429.840000px;}
.y108{bottom:431.640000px;}
.y27{bottom:432.720000px;}
.yd3{bottom:433.080000px;}
.y9c{bottom:433.440000px;}
.y84{bottom:441.000000px;}
.ye2{bottom:442.080000px;}
.y5a{bottom:442.440000px;}
.y13b{bottom:447.120000px;}
.y107{bottom:448.560000px;}
.yba{bottom:450.720000px;}
.yd2{bottom:453.600000px;}
.y26{bottom:453.960000px;}
.ye1{bottom:462.600000px;}
.y59{bottom:462.960000px;}
.y13a{bottom:464.040000px;}
.y106{bottom:465.840000px;}
.y25{bottom:474.480000px;}
.y9b{bottom:474.840000px;}
.y139{bottom:481.320000px;}
.yd1{bottom:483.120000px;}
.yb9{bottom:483.480000px;}
.y58{bottom:483.840000px;}
.y83{bottom:484.920000px;}
.y9a{bottom:495.360000px;}
.y138{bottom:498.600000px;}
.y105{bottom:500.400000px;}
.y24{bottom:504.000000px;}
.y57{bottom:504.360000px;}
.y82{bottom:507.240000px;}
.yd0{bottom:515.880000px;}
.y99{bottom:516.240000px;}
.y104{bottom:517.680000px;}
.y23{bottom:524.880000px;}
.yb8{bottom:525.240000px;}
.y81{bottom:527.760000px;}
.y137{bottom:533.160000px;}
.y56{bottom:533.880000px;}
.y103{bottom:534.960000px;}
.y98{bottom:536.760000px;}
.y22{bottom:545.760000px;}
.y136{bottom:550.440000px;}
.y102{bottom:552.240000px;}
.y55{bottom:554.760000px;}
.y80{bottom:557.280000px;}
.y97{bottom:557.640000px;}
.y21{bottom:566.280000px;}
.yb7{bottom:566.640000px;}
.y135{bottom:567.720000px;}
.y101{bottom:569.520000px;}
.y54{bottom:575.640000px;}
.y7f{bottom:578.160000px;}
.y134{bottom:585.000000px;}
.yb3{bottom:586.800000px;}
.y20{bottom:587.160000px;}
.y53{bottom:596.160000px;}
.y7e{bottom:599.040000px;}
.y133{bottom:602.280000px;}
.y100{bottom:604.080000px;}
.y1f{bottom:607.680000px;}
.yb2{bottom:608.040000px;}
.y52{bottom:617.040000px;}
.y7d{bottom:619.560000px;}
.yff{bottom:621.360000px;}
.y1e{bottom:628.560000px;}
.y132{bottom:636.840000px;}
.y51{bottom:637.560000px;}
.yfe{bottom:638.640000px;}
.y7c{bottom:640.440000px;}
.y1d{bottom:649.080000px;}
.yad{bottom:649.440000px;}
.y131{bottom:653.760000px;}
.yfd{bottom:655.560000px;}
.y50{bottom:658.440000px;}
.y7b{bottom:660.960000px;}
.y1c{bottom:669.960000px;}
.y130{bottom:671.040000px;}
.yfc{bottom:672.840000px;}
.y4f{bottom:678.960000px;}
.y7a{bottom:681.840000px;}
.y12f{bottom:688.320000px;}
.yfb{bottom:690.120000px;}
.y1b{bottom:690.480000px;}
.y96{bottom:690.840000px;}
.y4e{bottom:699.840000px;}
.y79{bottom:702.360000px;}
.y12e{bottom:705.600000px;}
.yfa{bottom:707.400000px;}
.ydf{bottom:711.000000px;}
.y1a{bottom:711.360000px;}
.y4d{bottom:720.360000px;}
.y12d{bottom:722.880000px;}
.y78{bottom:723.240000px;}
.yf9{bottom:724.680000px;}
.y19{bottom:731.880000px;}
.y95{bottom:732.240000px;}
.y12c{bottom:740.160000px;}
.y4c{bottom:741.240000px;}
.yf8{bottom:741.960000px;}
.y77{bottom:743.760000px;}
.y18{bottom:752.760000px;}
.y12b{bottom:757.440000px;}
.yf7{bottom:759.240000px;}
.y4b{bottom:761.760000px;}
.y76{bottom:764.280000px;}
.y17{bottom:773.280000px;}
.y12a{bottom:774.720000px;}
.yf6{bottom:776.520000px;}
.y4a{bottom:782.280000px;}
.y75{bottom:785.160000px;}
.y129{bottom:792.000000px;}
.yf5{bottom:793.800000px;}
.y16{bottom:794.160000px;}
.y49{bottom:803.160000px;}
.y74{bottom:805.680000px;}
.y128{bottom:809.280000px;}
.yf4{bottom:811.080000px;}
.y15{bottom:814.680000px;}
.y48{bottom:823.680000px;}
.y73{bottom:826.560000px;}
.yf3{bottom:828.360000px;}
.yca{bottom:835.200000px;}
.y14{bottom:835.560000px;}
.y127{bottom:843.480000px;}
.y47{bottom:844.560000px;}
.yf2{bottom:845.280000px;}
.ycf{bottom:847.080000px;}
.y72{bottom:855.720000px;}
.y13{bottom:856.080000px;}
.y126{bottom:860.760000px;}
.yf1{bottom:862.560000px;}
.yb1{bottom:864.720000px;}
.y46{bottom:865.080000px;}
.yce{bottom:876.600000px;}
.y12{bottom:876.960000px;}
.y125{bottom:878.040000px;}
.yf0{bottom:879.840000px;}
.y45{bottom:885.960000px;}
.y124{bottom:895.320000px;}
.yef{bottom:897.120000px;}
.y11{bottom:897.480000px;}
.yb6{bottom:906.120000px;}
.y44{bottom:906.480000px;}
.y123{bottom:912.600000px;}
.yee{bottom:914.400000px;}
.y10{bottom:918.360000px;}
.y43{bottom:927.360000px;}
.y122{bottom:929.880000px;}
.yed{bottom:931.680000px;}
.yf{bottom:938.880000px;}
.y121{bottom:947.160000px;}
.y94{bottom:947.520000px;}
.y42{bottom:947.880000px;}
.yec{bottom:948.960000px;}
.ye{bottom:958.680000px;}
.y71{bottom:959.760000px;}
.y120{bottom:964.440000px;}
.yeb{bottom:966.240000px;}
.y41{bottom:968.760000px;}
.yd{bottom:975.960000px;}
.y70{bottom:980.280000px;}
.y11f{bottom:981.720000px;}
.yea{bottom:983.520000px;}
.y40{bottom:989.280000px;}
.yc{bottom:993.240000px;}
.y11e{bottom:999.000000px;}
.ye9{bottom:1000.800000px;}
.y6f{bottom:1001.160000px;}
.yac{bottom:1009.800000px;}
.y3f{bottom:1010.160000px;}
.yb{bottom:1011.240000px;}
.y11d{bottom:1016.280000px;}
.ye8{bottom:1018.080000px;}
.y6e{bottom:1021.680000px;}
.yde{bottom:1030.320000px;}
.y3e{bottom:1030.680000px;}
.ya{bottom:1031.760000px;}
.y11c{bottom:1033.560000px;}
.ye7{bottom:1035.360000px;}
.y6d{bottom:1042.560000px;}
.y11b{bottom:1050.480000px;}
.y3d{bottom:1051.560000px;}
.ye6{bottom:1052.280000px;}
.y9{bottom:1054.800000px;}
.y6c{bottom:1063.080000px;}
.y11a{bottom:1067.760000px;}
.ye5{bottom:1069.560000px;}
.y3c{bottom:1072.080000px;}
.y6b{bottom:1083.960000px;}
.y119{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.ye4{bottom:1086.840000px;}
.y3b{bottom:1092.960000px;}
.y118{bottom:1102.320000px;}
.ye3{bottom:1104.120000px;}
.y6a{bottom:1104.480000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y117{bottom:1119.600000px;}
.y69{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.y116{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.h5{height:24.000000px;}
.h8{height:41.993438px;}
.h3{height:44.149219px;}
.hb{height:48.660480px;}
.ha{height:48.761719px;}
.h7{height:48.796875px;}
.hc{height:49.992188px;}
.h9{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.hd{height:53.067656px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w3{width:21.000000px;}
.w2{width:22.500000px;}
.w4{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:1.200000px;}
.x9{left:127.439928px;}
.x2{left:129.266964px;}
.xc{left:152.861220px;}
.x4{left:154.439928px;}
.xe{left:169.965072px;}
.x7{left:173.225484px;}
.x10{left:182.054088px;}
.xd{left:210.528432px;}
.x1{left:242.852076px;}
.xb{left:254.092896px;}
.x8{left:301.765500px;}
.xa{left:347.161032px;}
.x3{left:446.152320px;}
.xf{left:534.392985px;}
.x11{left:735.000000px;}
.x5{left:744.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4c{letter-spacing:-1.478400pt;}
.ls26{letter-spacing:-1.451520pt;}
.ls48{letter-spacing:-1.435392pt;}
.ls45{letter-spacing:-1.419264pt;}
.ls3e{letter-spacing:-1.408512pt;}
.ls3d{letter-spacing:-1.365504pt;}
.ls46{letter-spacing:-1.349376pt;}
.ls44{letter-spacing:-1.333248pt;}
.ls3f{letter-spacing:-1.295616pt;}
.ls43{letter-spacing:-1.279488pt;}
.ls40{letter-spacing:-1.263360pt;}
.ls4b{letter-spacing:-1.225728pt;}
.ls42{letter-spacing:-1.209600pt;}
.ls27{letter-spacing:-1.195264pt;}
.ls47{letter-spacing:-1.193472pt;}
.ls41{letter-spacing:-1.171968pt;}
.ls1c{letter-spacing:-1.075200pt;}
.ls1d{letter-spacing:-1.068800pt;}
.ls1b{letter-spacing:-1.056000pt;}
.ls16{letter-spacing:-0.354816pt;}
.ls15{letter-spacing:-0.301056pt;}
.ls1a{letter-spacing:-0.215040pt;}
.ls18{letter-spacing:-0.198912pt;}
.ls23{letter-spacing:-0.197120pt;}
.ls13{letter-spacing:-0.158976pt;}
.ls24{letter-spacing:-0.157696pt;}
.ls19{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.129536pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.107520pt;}
.ls11{letter-spacing:-0.058880pt;}
.lse{letter-spacing:-0.052992pt;}
.lsf{letter-spacing:-0.047104pt;}
.ls14{letter-spacing:-0.019200pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.102400pt;}
.ls1e{letter-spacing:0.180224pt;}
.ls39{letter-spacing:0.747520pt;}
.ls6{letter-spacing:0.811520pt;}
.ls1f{letter-spacing:2.363264pt;}
.ls2{letter-spacing:2.947968pt;}
.ls35{letter-spacing:3.035264pt;}
.ls9{letter-spacing:3.299456pt;}
.ls3{letter-spacing:3.335680pt;}
.ls8{letter-spacing:4.322560pt;}
.ls30{letter-spacing:4.975232pt;}
.ls31{letter-spacing:4.975360pt;}
.ls7{letter-spacing:5.038080pt;}
.ls4{letter-spacing:5.619712pt;}
.ls5{letter-spacing:5.620992pt;}
.ls38{letter-spacing:5.893248pt;}
.ls28{letter-spacing:6.814720pt;}
.ls3b{letter-spacing:7.084800pt;}
.ls2c{letter-spacing:7.546880pt;}
.ls29{letter-spacing:7.554560pt;}
.ls21{letter-spacing:9.364480pt;}
.ls32{letter-spacing:9.533440pt;}
.lsa{letter-spacing:9.870080pt;}
.ls36{letter-spacing:10.634112pt;}
.ls3a{letter-spacing:11.453440pt;}
.ls2d{letter-spacing:12.369920pt;}
.lsc{letter-spacing:13.387520pt;}
.lsb{letter-spacing:13.388032pt;}
.ls22{letter-spacing:14.795520pt;}
.ls2f{letter-spacing:15.287040pt;}
.ls2e{letter-spacing:15.287808pt;}
.ls0{letter-spacing:16.032640pt;}
.ls33{letter-spacing:16.118528pt;}
.ls20{letter-spacing:16.385280pt;}
.ls37{letter-spacing:17.870976pt;}
.ls34{letter-spacing:18.173184pt;}
.ls1{letter-spacing:21.874944pt;}
.ls49{letter-spacing:22.209280pt;}
.ls2a{letter-spacing:27.604480pt;}
.ls4a{letter-spacing:33.323008pt;}
.ls25{letter-spacing:49.836800pt;}
.ls3c{letter-spacing:83.342080pt;}
.ws0{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.944000pt;}
.wsb{word-spacing:-14.931200pt;}
.ws7{word-spacing:-14.924800pt;}
.ws9{word-spacing:-13.493760pt;}
.ws4{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.241088pt;}
.ws3{word-spacing:-13.224960pt;}
.ws13{word-spacing:-12.246528pt;}
.ws10{word-spacing:-12.230400pt;}
.ws14{word-spacing:-12.214272pt;}
.ws11{word-spacing:-12.176640pt;}
.wse{word-spacing:-12.160512pt;}
.wsf{word-spacing:-12.106752pt;}
.ws12{word-spacing:-12.090624pt;}
.wsd{word-spacing:-12.074496pt;}
.ws15{word-spacing:-12.020736pt;}
.wsc{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.044800pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-1.822208pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.939648pt;}
._a{width:2.368000pt;}
._6{width:3.328000pt;}
._9{width:4.480000pt;}
._e{width:5.568000pt;}
._10{width:6.464000pt;}
._12{width:7.459712pt;}
._13{width:9.152000pt;}
._f{width:10.432000pt;}
._14{width:11.456000pt;}
._3{width:12.672000pt;}
._b{width:14.031360pt;}
._24{width:14.936192pt;}
._d{width:16.016896pt;}
._2{width:17.007104pt;}
._4{width:18.432000pt;}
._1b{width:19.328000pt;}
._18{width:20.288000pt;}
._15{width:21.679744pt;}
._11{width:22.992256pt;}
._c{width:24.640000pt;}
._5{width:25.984000pt;}
._19{width:27.008000pt;}
._1a{width:28.288000pt;}
._1d{width:29.568000pt;}
._1c{width:30.793856pt;}
._16{width:32.295552pt;}
._8{width:33.536000pt;}
._20{width:34.496000pt;}
._21{width:35.648000pt;}
._23{width:36.874496pt;}
._1f{width:40.319360pt;}
._1e{width:41.728640pt;}
._22{width:44.160000pt;}
._7{width:45.888000pt;}
._29{width:67.252480pt;}
._28{width:68.167680pt;}
._27{width:84.725760pt;}
._25{width:94.402560pt;}
._26{width:95.950592pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.ydd{bottom:82.560000pt;}
.y93{bottom:88.960000pt;}
.yab{bottom:90.560000pt;}
.y115{bottom:92.160000pt;}
.y35{bottom:92.800000pt;}
.ydc{bottom:100.800000pt;}
.y92{bottom:107.520000pt;}
.yaa{bottom:108.800000pt;}
.y34{bottom:111.360000pt;}
.yc9{bottom:116.800000pt;}
.ydb{bottom:119.360000pt;}
.y114{bottom:122.880000pt;}
.y91{bottom:125.760000pt;}
.ya9{bottom:127.360000pt;}
.y33{bottom:129.600000pt;}
.yc8{bottom:135.360000pt;}
.y68{bottom:135.680000pt;}
.yda{bottom:137.600000pt;}
.y113{bottom:138.240000pt;}
.ya8{bottom:145.600000pt;}
.y32{bottom:148.160000pt;}
.y90{bottom:152.000000pt;}
.yc7{bottom:153.600000pt;}
.y67{bottom:153.920000pt;}
.yd9{bottom:156.160000pt;}
.ya7{bottom:164.160000pt;}
.y31{bottom:166.400000pt;}
.y112{bottom:168.960000pt;}
.yc6{bottom:172.160000pt;}
.y66{bottom:172.480000pt;}
.y8f{bottom:181.120000pt;}
.yd8{bottom:182.080000pt;}
.ya6{bottom:182.400000pt;}
.y111{bottom:184.320000pt;}
.y30{bottom:184.960000pt;}
.yb5{bottom:190.080000pt;}
.yc5{bottom:190.400000pt;}
.y65{bottom:190.720000pt;}
.y8e{bottom:199.680000pt;}
.ya5{bottom:200.960000pt;}
.y2f{bottom:203.200000pt;}
.yc4{bottom:208.960000pt;}
.y64{bottom:209.280000pt;}
.y110{bottom:215.040000pt;}
.y8d{bottom:218.560000pt;}
.yb0{bottom:219.200000pt;}
.y2e{bottom:221.760000pt;}
.ya4{bottom:226.880000pt;}
.yc3{bottom:227.200000pt;}
.y63{bottom:227.520000pt;}
.y10f{bottom:230.080000pt;}
.y8c{bottom:236.800000pt;}
.ycd{bottom:237.760000pt;}
.yb4{bottom:238.080000pt;}
.y2d{bottom:240.000000pt;}
.yaf{bottom:245.440000pt;}
.yc2{bottom:245.760000pt;}
.y62{bottom:246.080000pt;}
.ya3{bottom:256.000000pt;}
.y8b{bottom:256.320000pt;}
.y2c{bottom:258.560000pt;}
.y10e{bottom:260.800000pt;}
.yc1{bottom:264.000000pt;}
.y61{bottom:264.320000pt;}
.yae{bottom:274.560000pt;}
.ya2{bottom:274.880000pt;}
.y8a{bottom:275.840000pt;}
.y10d{bottom:276.160000pt;}
.y2b{bottom:276.800000pt;}
.yc0{bottom:282.560000pt;}
.y60{bottom:282.880000pt;}
.y10c{bottom:291.520000pt;}
.yd7{bottom:292.800000pt;}
.ya1{bottom:293.120000pt;}
.y89{bottom:295.360000pt;}
.ycc{bottom:300.480000pt;}
.ybf{bottom:300.800000pt;}
.y5f{bottom:301.120000pt;}
.y2a{bottom:303.040000pt;}
.y10b{bottom:306.880000pt;}
.yd6{bottom:311.360000pt;}
.ya0{bottom:311.680000pt;}
.y88{bottom:313.920000pt;}
.ybe{bottom:319.360000pt;}
.y5e{bottom:319.680000pt;}
.y13f{bottom:320.640000pt;}
.y10a{bottom:322.240000pt;}
.ycb{bottom:329.600000pt;}
.y9f{bottom:329.920000pt;}
.y29{bottom:331.840000pt;}
.y87{bottom:333.440000pt;}
.y13e{bottom:336.000000pt;}
.ybd{bottom:337.600000pt;}
.y5d{bottom:337.920000pt;}
.yd5{bottom:348.160000pt;}
.y9e{bottom:348.480000pt;}
.y13d{bottom:351.360000pt;}
.y86{bottom:352.960000pt;}
.ye0{bottom:355.840000pt;}
.ybc{bottom:356.160000pt;}
.y5c{bottom:356.480000pt;}
.y28{bottom:358.400000pt;}
.yd4{bottom:366.400000pt;}
.y9d{bottom:366.720000pt;}
.y109{bottom:368.320000pt;}
.y85{bottom:372.480000pt;}
.ybb{bottom:374.400000pt;}
.y5b{bottom:374.720000pt;}
.y13c{bottom:382.080000pt;}
.y108{bottom:383.680000pt;}
.y27{bottom:384.640000pt;}
.yd3{bottom:384.960000pt;}
.y9c{bottom:385.280000pt;}
.y84{bottom:392.000000pt;}
.ye2{bottom:392.960000pt;}
.y5a{bottom:393.280000pt;}
.y13b{bottom:397.440000pt;}
.y107{bottom:398.720000pt;}
.yba{bottom:400.640000pt;}
.yd2{bottom:403.200000pt;}
.y26{bottom:403.520000pt;}
.ye1{bottom:411.200000pt;}
.y59{bottom:411.520000pt;}
.y13a{bottom:412.480000pt;}
.y106{bottom:414.080000pt;}
.y25{bottom:421.760000pt;}
.y9b{bottom:422.080000pt;}
.y139{bottom:427.840000pt;}
.yd1{bottom:429.440000pt;}
.yb9{bottom:429.760000pt;}
.y58{bottom:430.080000pt;}
.y83{bottom:431.040000pt;}
.y9a{bottom:440.320000pt;}
.y138{bottom:443.200000pt;}
.y105{bottom:444.800000pt;}
.y24{bottom:448.000000pt;}
.y57{bottom:448.320000pt;}
.y82{bottom:450.880000pt;}
.yd0{bottom:458.560000pt;}
.y99{bottom:458.880000pt;}
.y104{bottom:460.160000pt;}
.y23{bottom:466.560000pt;}
.yb8{bottom:466.880000pt;}
.y81{bottom:469.120000pt;}
.y137{bottom:473.920000pt;}
.y56{bottom:474.560000pt;}
.y103{bottom:475.520000pt;}
.y98{bottom:477.120000pt;}
.y22{bottom:485.120000pt;}
.y136{bottom:489.280000pt;}
.y102{bottom:490.880000pt;}
.y55{bottom:493.120000pt;}
.y80{bottom:495.360000pt;}
.y97{bottom:495.680000pt;}
.y21{bottom:503.360000pt;}
.yb7{bottom:503.680000pt;}
.y135{bottom:504.640000pt;}
.y101{bottom:506.240000pt;}
.y54{bottom:511.680000pt;}
.y7f{bottom:513.920000pt;}
.y134{bottom:520.000000pt;}
.yb3{bottom:521.600000pt;}
.y20{bottom:521.920000pt;}
.y53{bottom:529.920000pt;}
.y7e{bottom:532.480000pt;}
.y133{bottom:535.360000pt;}
.y100{bottom:536.960000pt;}
.y1f{bottom:540.160000pt;}
.yb2{bottom:540.480000pt;}
.y52{bottom:548.480000pt;}
.y7d{bottom:550.720000pt;}
.yff{bottom:552.320000pt;}
.y1e{bottom:558.720000pt;}
.y132{bottom:566.080000pt;}
.y51{bottom:566.720000pt;}
.yfe{bottom:567.680000pt;}
.y7c{bottom:569.280000pt;}
.y1d{bottom:576.960000pt;}
.yad{bottom:577.280000pt;}
.y131{bottom:581.120000pt;}
.yfd{bottom:582.720000pt;}
.y50{bottom:585.280000pt;}
.y7b{bottom:587.520000pt;}
.y1c{bottom:595.520000pt;}
.y130{bottom:596.480000pt;}
.yfc{bottom:598.080000pt;}
.y4f{bottom:603.520000pt;}
.y7a{bottom:606.080000pt;}
.y12f{bottom:611.840000pt;}
.yfb{bottom:613.440000pt;}
.y1b{bottom:613.760000pt;}
.y96{bottom:614.080000pt;}
.y4e{bottom:622.080000pt;}
.y79{bottom:624.320000pt;}
.y12e{bottom:627.200000pt;}
.yfa{bottom:628.800000pt;}
.ydf{bottom:632.000000pt;}
.y1a{bottom:632.320000pt;}
.y4d{bottom:640.320000pt;}
.y12d{bottom:642.560000pt;}
.y78{bottom:642.880000pt;}
.yf9{bottom:644.160000pt;}
.y19{bottom:650.560000pt;}
.y95{bottom:650.880000pt;}
.y12c{bottom:657.920000pt;}
.y4c{bottom:658.880000pt;}
.yf8{bottom:659.520000pt;}
.y77{bottom:661.120000pt;}
.y18{bottom:669.120000pt;}
.y12b{bottom:673.280000pt;}
.yf7{bottom:674.880000pt;}
.y4b{bottom:677.120000pt;}
.y76{bottom:679.360000pt;}
.y17{bottom:687.360000pt;}
.y12a{bottom:688.640000pt;}
.yf6{bottom:690.240000pt;}
.y4a{bottom:695.360000pt;}
.y75{bottom:697.920000pt;}
.y129{bottom:704.000000pt;}
.yf5{bottom:705.600000pt;}
.y16{bottom:705.920000pt;}
.y49{bottom:713.920000pt;}
.y74{bottom:716.160000pt;}
.y128{bottom:719.360000pt;}
.yf4{bottom:720.960000pt;}
.y15{bottom:724.160000pt;}
.y48{bottom:732.160000pt;}
.y73{bottom:734.720000pt;}
.yf3{bottom:736.320000pt;}
.yca{bottom:742.400000pt;}
.y14{bottom:742.720000pt;}
.y127{bottom:749.760000pt;}
.y47{bottom:750.720000pt;}
.yf2{bottom:751.360000pt;}
.ycf{bottom:752.960000pt;}
.y72{bottom:760.640000pt;}
.y13{bottom:760.960000pt;}
.y126{bottom:765.120000pt;}
.yf1{bottom:766.720000pt;}
.yb1{bottom:768.640000pt;}
.y46{bottom:768.960000pt;}
.yce{bottom:779.200000pt;}
.y12{bottom:779.520000pt;}
.y125{bottom:780.480000pt;}
.yf0{bottom:782.080000pt;}
.y45{bottom:787.520000pt;}
.y124{bottom:795.840000pt;}
.yef{bottom:797.440000pt;}
.y11{bottom:797.760000pt;}
.yb6{bottom:805.440000pt;}
.y44{bottom:805.760000pt;}
.y123{bottom:811.200000pt;}
.yee{bottom:812.800000pt;}
.y10{bottom:816.320000pt;}
.y43{bottom:824.320000pt;}
.y122{bottom:826.560000pt;}
.yed{bottom:828.160000pt;}
.yf{bottom:834.560000pt;}
.y121{bottom:841.920000pt;}
.y94{bottom:842.240000pt;}
.y42{bottom:842.560000pt;}
.yec{bottom:843.520000pt;}
.ye{bottom:852.160000pt;}
.y71{bottom:853.120000pt;}
.y120{bottom:857.280000pt;}
.yeb{bottom:858.880000pt;}
.y41{bottom:861.120000pt;}
.yd{bottom:867.520000pt;}
.y70{bottom:871.360000pt;}
.y11f{bottom:872.640000pt;}
.yea{bottom:874.240000pt;}
.y40{bottom:879.360000pt;}
.yc{bottom:882.880000pt;}
.y11e{bottom:888.000000pt;}
.ye9{bottom:889.600000pt;}
.y6f{bottom:889.920000pt;}
.yac{bottom:897.600000pt;}
.y3f{bottom:897.920000pt;}
.yb{bottom:898.880000pt;}
.y11d{bottom:903.360000pt;}
.ye8{bottom:904.960000pt;}
.y6e{bottom:908.160000pt;}
.yde{bottom:915.840000pt;}
.y3e{bottom:916.160000pt;}
.ya{bottom:917.120000pt;}
.y11c{bottom:918.720000pt;}
.ye7{bottom:920.320000pt;}
.y6d{bottom:926.720000pt;}
.y11b{bottom:933.760000pt;}
.y3d{bottom:934.720000pt;}
.ye6{bottom:935.360000pt;}
.y9{bottom:937.600000pt;}
.y6c{bottom:944.960000pt;}
.y11a{bottom:949.120000pt;}
.ye5{bottom:950.720000pt;}
.y3c{bottom:952.960000pt;}
.y6b{bottom:963.520000pt;}
.y119{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.ye4{bottom:966.080000pt;}
.y3b{bottom:971.520000pt;}
.y118{bottom:979.840000pt;}
.ye3{bottom:981.440000pt;}
.y6a{bottom:981.760000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y117{bottom:995.200000pt;}
.y69{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.y116{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.h5{height:21.333333pt;}
.h8{height:37.327500pt;}
.h3{height:39.243750pt;}
.hb{height:43.253760pt;}
.ha{height:43.343750pt;}
.h7{height:43.375000pt;}
.hc{height:44.437500pt;}
.h9{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.hd{height:47.171250pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w3{width:18.666667pt;}
.w2{width:20.000000pt;}
.w4{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:1.066667pt;}
.x9{left:113.279936pt;}
.x2{left:114.903968pt;}
.xc{left:135.876640pt;}
.x4{left:137.279936pt;}
.xe{left:151.080064pt;}
.x7{left:153.978208pt;}
.x10{left:161.825856pt;}
.xd{left:187.136384pt;}
.x1{left:215.868512pt;}
.xb{left:225.860352pt;}
.x8{left:268.236000pt;}
.xa{left:308.587584pt;}
.x3{left:396.579840pt;}
.xf{left:475.015987pt;}
.x11{left:653.333333pt;}
.x5{left:661.333333pt;}
}




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