
    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_f51ff85b813a05a6fad0aa3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_6c95339b82e670e3d6d20b0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_e4d96d15674761434e7b6527.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:84.018000px;}
.ls1e{letter-spacing:-1.650000px;}
.ls1f{letter-spacing:-1.584000px;}
.ls33{letter-spacing:-1.518000px;}
.ls24{letter-spacing:-1.452000px;}
.ls34{letter-spacing:-1.386000px;}
.ls39{letter-spacing:-1.320000px;}
.ls38{letter-spacing:-1.254000px;}
.ls2d{letter-spacing:-1.188000px;}
.ls36{letter-spacing:-1.122000px;}
.ls37{letter-spacing:-1.056000px;}
.ls23{letter-spacing:-0.990000px;}
.ls45{letter-spacing:-0.924000px;}
.ls2e{letter-spacing:-0.858000px;}
.ls8{letter-spacing:-0.798000px;}
.ls15{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.726000px;}
.ls3e{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.570000px;}
.ls22{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.513000px;}
.ls2b{letter-spacing:-0.462000px;}
.ls3f{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.399000px;}
.ls2a{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.342000px;}
.ls2c{letter-spacing:-0.330000px;}
.ls19{letter-spacing:-0.285000px;}
.ls20{letter-spacing:-0.264000px;}
.ls42{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.228000px;}
.ls16{letter-spacing:-0.198000px;}
.ls26{letter-spacing:-0.132000px;}
.ls17{letter-spacing:-0.066000px;}
.ls43{letter-spacing:-0.060000px;}
.ls18{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.066000px;}
.ls3d{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.132000px;}
.ls5{letter-spacing:0.171000px;}
.lsb{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.264000px;}
.ls25{letter-spacing:0.330000px;}
.ls41{letter-spacing:0.360000px;}
.lse{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.399000px;}
.ls40{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.456000px;}
.ls31{letter-spacing:0.462000px;}
.ls1{letter-spacing:0.513000px;}
.ls10{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.594000px;}
.ls0{letter-spacing:0.627000px;}
.ls3b{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.726000px;}
.lsd{letter-spacing:0.792000px;}
.ls3a{letter-spacing:0.858000px;}
.ls29{letter-spacing:0.924000px;}
.ls30{letter-spacing:0.990000px;}
.ls1a{letter-spacing:1.056000px;}
.ls2f{letter-spacing:1.122000px;}
.ls27{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.197000px;}
.ls3c{letter-spacing:1.254000px;}
.lsc{letter-spacing:1.650000px;}
.ls21{letter-spacing:1.716000px;}
.ls35{letter-spacing:24.024000px;}
.ls44{letter-spacing:39.600000px;}
.ls46{letter-spacing:46.530000px;}
.ls28{letter-spacing:46.596000px;}
.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;}
}
.ws50{word-spacing:-18.150000px;}
.ws44{word-spacing:-17.688000px;}
.ws45{word-spacing:-17.556000px;}
.ws51{word-spacing:-17.424000px;}
.ws57{word-spacing:-17.358000px;}
.ws68{word-spacing:-17.226000px;}
.ws15{word-spacing:-17.028000px;}
.ws54{word-spacing:-16.962000px;}
.ws6c{word-spacing:-16.896000px;}
.ws65{word-spacing:-16.830000px;}
.ws14{word-spacing:-16.764000px;}
.ws58{word-spacing:-16.698000px;}
.ws4d{word-spacing:-16.632000px;}
.ws2f{word-spacing:-16.566000px;}
.ws13{word-spacing:-16.500000px;}
.ws46{word-spacing:-16.434000px;}
.ws6e{word-spacing:-16.368000px;}
.ws16{word-spacing:-16.302000px;}
.ws30{word-spacing:-16.236000px;}
.ws43{word-spacing:-16.170000px;}
.ws42{word-spacing:-16.104000px;}
.ws47{word-spacing:-16.038000px;}
.ws67{word-spacing:-15.972000px;}
.ws12{word-spacing:-15.774000px;}
.ws69{word-spacing:-15.708000px;}
.ws33{word-spacing:-15.510000px;}
.ws55{word-spacing:-15.444000px;}
.ws5f{word-spacing:-15.378000px;}
.ws4e{word-spacing:-15.312000px;}
.ws59{word-spacing:-15.246000px;}
.ws34{word-spacing:-15.048000px;}
.ws5a{word-spacing:-15.000000px;}
.ws70{word-spacing:-14.850000px;}
.ws5b{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.535000px;}
.ws11{word-spacing:-14.250000px;}
.ws10{word-spacing:-13.851000px;}
.ws18{word-spacing:-11.952000px;}
.ws6a{word-spacing:-0.858000px;}
.ws2e{word-spacing:-0.792000px;}
.ws3a{word-spacing:-0.726000px;}
.ws63{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.660000px;}
.ws38{word-spacing:-0.594000px;}
.ws4b{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.513000px;}
.ws61{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.456000px;}
.ws1a{word-spacing:-0.399000px;}
.ws48{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.342000px;}
.ws2b{word-spacing:-0.330000px;}
.ws5c{word-spacing:-0.300000px;}
.ws4{word-spacing:-0.285000px;}
.ws3d{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.228000px;}
.ws36{word-spacing:-0.198000px;}
.ws1b{word-spacing:-0.171000px;}
.ws1e{word-spacing:-0.132000px;}
.ws52{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.057000px;}
.ws4c{word-spacing:0.066000px;}
.ws5d{word-spacing:0.120000px;}
.ws3e{word-spacing:0.132000px;}
.ws22{word-spacing:0.198000px;}
.wsb{word-spacing:0.228000px;}
.ws56{word-spacing:0.264000px;}
.ws6{word-spacing:0.285000px;}
.ws1d{word-spacing:0.330000px;}
.ws49{word-spacing:0.396000px;}
.ws4a{word-spacing:0.462000px;}
.ws40{word-spacing:0.528000px;}
.ws19{word-spacing:0.570000px;}
.ws37{word-spacing:0.594000px;}
.ws20{word-spacing:0.660000px;}
.ws2c{word-spacing:0.726000px;}
.ws28{word-spacing:0.792000px;}
.ws25{word-spacing:0.858000px;}
.ws5{word-spacing:0.912000px;}
.ws41{word-spacing:0.924000px;}
.ws9{word-spacing:0.969000px;}
.ws3f{word-spacing:0.990000px;}
.wsc{word-spacing:1.026000px;}
.ws6d{word-spacing:1.056000px;}
.ws62{word-spacing:1.080000px;}
.ws32{word-spacing:1.122000px;}
.ws64{word-spacing:1.140000px;}
.ws27{word-spacing:1.188000px;}
.wse{word-spacing:1.254000px;}
.wsd{word-spacing:1.311000px;}
.ws21{word-spacing:1.320000px;}
.ws2{word-spacing:1.368000px;}
.ws5e{word-spacing:1.380000px;}
.ws1f{word-spacing:1.386000px;}
.ws1c{word-spacing:1.425000px;}
.ws23{word-spacing:1.452000px;}
.ws29{word-spacing:1.518000px;}
.ws2a{word-spacing:1.584000px;}
.ws2d{word-spacing:1.650000px;}
.ws24{word-spacing:3.366000px;}
.ws6b{word-spacing:5.412000px;}
.ws60{word-spacing:6.996000px;}
.ws66{word-spacing:7.524000px;}
.ws3b{word-spacing:11.154000px;}
.ws3c{word-spacing:11.418000px;}
.ws4f{word-spacing:12.342000px;}
.ws53{word-spacing:12.474000px;}
.ws35{word-spacing:21.582000px;}
.ws6f{word-spacing:21.648000px;}
.ws31{word-spacing:23.034000px;}
.ws71{word-spacing:24.024000px;}
.ws17{word-spacing:35.904000px;}
._6{margin-left:-10.317000px;}
._a{margin-left:-8.844000px;}
._3{margin-left:-7.353000px;}
._12{margin-left:-5.940000px;}
._4{margin-left:-4.674000px;}
._10{margin-left:-3.564000px;}
._1{margin-left:-2.508000px;}
._0{margin-left:-1.140000px;}
._2{width:1.368000px;}
._e{width:2.574000px;}
._7{width:3.696000px;}
._c{width:15.048000px;}
._b{width:16.566000px;}
._11{width:21.582000px;}
._f{width:23.034000px;}
._5{width:47.712000px;}
._9{width:108.129000px;}
._d{width:149.424000px;}
._8{width:928.032000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:49.078500px;}
.y121{bottom:49.132500px;}
.yb0{bottom:49.165500px;}
.y8f{bottom:49.182000px;}
.y9f{bottom:49.215000px;}
.y1d{bottom:52.103250px;}
.y46{bottom:52.444500px;}
.ye7{bottom:52.851000px;}
.yc1{bottom:53.145000px;}
.y72{bottom:66.321000px;}
.y120{bottom:66.375000px;}
.yaf{bottom:66.408000px;}
.y8e{bottom:66.424500px;}
.y9e{bottom:66.457500px;}
.y1c{bottom:67.108500px;}
.y45{bottom:69.687000px;}
.ye6{bottom:70.093500px;}
.yc0{bottom:70.387500px;}
.y1b{bottom:82.113750px;}
.y71{bottom:83.563500px;}
.y11f{bottom:83.617500px;}
.yef{bottom:83.650500px;}
.y8d{bottom:83.667000px;}
.y9d{bottom:83.700000px;}
.y44{bottom:86.929500px;}
.ye5{bottom:87.336000px;}
.ybf{bottom:87.630000px;}
.y105{bottom:88.930500px;}
.y70{bottom:100.806000px;}
.y11e{bottom:100.860000px;}
.yee{bottom:100.893000px;}
.y8c{bottom:100.909500px;}
.y9c{bottom:100.942500px;}
.y43{bottom:104.172000px;}
.ye4{bottom:104.578500px;}
.y104{bottom:106.173000px;}
.y1a{bottom:112.110000px;}
.y6f{bottom:118.048500px;}
.yed{bottom:118.135500px;}
.y8b{bottom:118.152000px;}
.y9b{bottom:118.185000px;}
.ye3{bottom:121.821000px;}
.y103{bottom:123.415500px;}
.ybe{bottom:126.135000px;}
.y42{bottom:134.169000px;}
.y6e{bottom:135.291000px;}
.y11d{bottom:135.361500px;}
.yec{bottom:135.378000px;}
.y8a{bottom:135.394500px;}
.yea{bottom:135.411000px;}
.y9a{bottom:135.427500px;}
.ye2{bottom:139.063500px;}
.y102{bottom:140.658000px;}
.ybd{bottom:141.885000px;}
.y19{bottom:148.073250px;}
.y6d{bottom:152.533500px;}
.y11c{bottom:152.604000px;}
.y89{bottom:152.637000px;}
.ye9{bottom:152.653500px;}
.y99{bottom:152.670000px;}
.ye1{bottom:156.306000px;}
.ybc{bottom:157.635000px;}
.y101{bottom:157.900500px;}
.yeb{bottom:161.250000px;}
.y18{bottom:163.078500px;}
.y11b{bottom:169.846500px;}
.y88{bottom:169.879500px;}
.ye8{bottom:169.896000px;}
.y98{bottom:169.912500px;}
.ybb{bottom:173.385000px;}
.ye0{bottom:173.548500px;}
.y100{bottom:175.143000px;}
.y41{bottom:177.300000px;}
.y17{bottom:186.576750px;}
.y6c{bottom:187.035000px;}
.y11a{bottom:187.089000px;}
.y87{bottom:187.122000px;}
.ya5{bottom:187.138500px;}
.y97{bottom:187.155000px;}
.ydf{bottom:190.791000px;}
.yff{bottom:192.385500px;}
.y40{bottom:194.542500px;}
.y16{bottom:201.582000px;}
.y6b{bottom:204.277500px;}
.y119{bottom:204.331500px;}
.y86{bottom:204.364500px;}
.ya4{bottom:204.381000px;}
.y96{bottom:204.397500px;}
.yfe{bottom:209.628000px;}
.y3f{bottom:211.785000px;}
.y15{bottom:216.587250px;}
.y6a{bottom:221.520000px;}
.y118{bottom:221.574000px;}
.y85{bottom:221.607000px;}
.ya3{bottom:221.623500px;}
.y95{bottom:221.640000px;}
.yde{bottom:225.292500px;}
.yfd{bottom:226.870500px;}
.y3e{bottom:229.027500px;}
.y14{bottom:231.592500px;}
.y69{bottom:238.762500px;}
.y117{bottom:238.816500px;}
.yba{bottom:238.849500px;}
.ya2{bottom:238.866000px;}
.y94{bottom:238.882500px;}
.ydd{bottom:242.535000px;}
.yfc{bottom:244.113000px;}
.y3d{bottom:246.270000px;}
.y13{bottom:246.597750px;}
.y68{bottom:256.005000px;}
.y116{bottom:256.059000px;}
.yb9{bottom:256.092000px;}
.y84{bottom:256.108500px;}
.y93{bottom:256.125000px;}
.ydc{bottom:259.777500px;}
.yfb{bottom:261.355500px;}
.y12{bottom:261.603000px;}
.y3c{bottom:263.512500px;}
.y67{bottom:273.247500px;}
.y115{bottom:273.301500px;}
.yb8{bottom:273.334500px;}
.y83{bottom:273.351000px;}
.y92{bottom:273.367500px;}
.y11{bottom:276.608250px;}
.ydb{bottom:277.020000px;}
.yfa{bottom:278.598000px;}
.y3b{bottom:280.755000px;}
.y66{bottom:290.490000px;}
.yb7{bottom:290.577000px;}
.y82{bottom:290.593500px;}
.y91{bottom:290.610000px;}
.y10{bottom:291.613500px;}
.yda{bottom:294.262500px;}
.yf9{bottom:295.840500px;}
.y3a{bottom:297.997500px;}
.y114{bottom:299.173500px;}
.yf{bottom:306.618750px;}
.y65{bottom:307.732500px;}
.yb6{bottom:307.819500px;}
.ya1{bottom:307.836000px;}
.y90{bottom:307.852500px;}
.yd9{bottom:311.505000px;}
.yf8{bottom:313.083000px;}
.y39{bottom:315.240000px;}
.y64{bottom:324.975000px;}
.yb5{bottom:325.062000px;}
.ya0{bottom:325.078500px;}
.y81{bottom:325.095000px;}
.yd8{bottom:328.747500px;}
.yf7{bottom:330.325500px;}
.y38{bottom:332.482500px;}
.ye{bottom:336.615000px;}
.y63{bottom:342.217500px;}
.yb4{bottom:342.304500px;}
.yae{bottom:342.321000px;}
.y80{bottom:342.337500px;}
.yd7{bottom:345.990000px;}
.yf6{bottom:347.568000px;}
.y37{bottom:349.725000px;}
.y62{bottom:359.460000px;}
.yb3{bottom:359.547000px;}
.yad{bottom:359.563500px;}
.y7f{bottom:359.580000px;}
.yd6{bottom:363.232500px;}
.yf5{bottom:364.810500px;}
.y36{bottom:366.967500px;}
.yd{bottom:372.569250px;}
.y61{bottom:376.702500px;}
.y134{bottom:376.773000px;}
.yb2{bottom:376.789500px;}
.yac{bottom:376.806000px;}
.y7e{bottom:376.822500px;}
.yd5{bottom:380.475000px;}
.yf4{bottom:382.053000px;}
.y35{bottom:384.210000px;}
.yc{bottom:387.574500px;}
.y60{bottom:393.945000px;}
.y133{bottom:394.015500px;}
.y113{bottom:394.032000px;}
.yab{bottom:394.048500px;}
.y7d{bottom:394.065000px;}
.yd4{bottom:397.717500px;}
.yf3{bottom:399.295500px;}
.y34{bottom:401.452500px;}
.yb1{bottom:402.661500px;}
.yb{bottom:411.072750px;}
.y5f{bottom:411.187500px;}
.y132{bottom:411.258000px;}
.y112{bottom:411.274500px;}
.yaa{bottom:411.291000px;}
.y7c{bottom:411.307500px;}
.yd3{bottom:414.960000px;}
.yf2{bottom:416.538000px;}
.y33{bottom:418.695000px;}
.ya{bottom:426.078000px;}
.y5e{bottom:428.430000px;}
.y131{bottom:428.500500px;}
.y111{bottom:428.517000px;}
.ya9{bottom:428.533500px;}
.y7b{bottom:428.550000px;}
.yd2{bottom:432.202500px;}
.yf1{bottom:433.780500px;}
.y32{bottom:435.937500px;}
.y9{bottom:441.083250px;}
.y5d{bottom:445.672500px;}
.y130{bottom:445.743000px;}
.y110{bottom:445.759500px;}
.ya8{bottom:445.776000px;}
.y7a{bottom:445.792500px;}
.yd1{bottom:449.445000px;}
.yf0{bottom:451.023000px;}
.y31{bottom:453.180000px;}
.y8{bottom:456.088500px;}
.y5c{bottom:462.915000px;}
.y12f{bottom:462.985500px;}
.y10f{bottom:463.002000px;}
.ya7{bottom:463.018500px;}
.y79{bottom:463.035000px;}
.yd0{bottom:466.687500px;}
.y30{bottom:470.422500px;}
.y7{bottom:471.093750px;}
.y5b{bottom:480.157500px;}
.y12e{bottom:480.228000px;}
.y10e{bottom:480.244500px;}
.ya6{bottom:480.261000px;}
.y78{bottom:480.277500px;}
.ycf{bottom:483.930000px;}
.y6{bottom:486.099000px;}
.y2f{bottom:487.665000px;}
.y5a{bottom:497.400000px;}
.y12d{bottom:497.470500px;}
.y10d{bottom:497.487000px;}
.y77{bottom:497.520000px;}
.y5{bottom:501.104250px;}
.yce{bottom:501.172500px;}
.y2e{bottom:504.907500px;}
.y59{bottom:514.642500px;}
.y10c{bottom:514.729500px;}
.y76{bottom:514.762500px;}
.y4{bottom:516.109500px;}
.ycd{bottom:518.415000px;}
.y2d{bottom:522.150000px;}
.y3{bottom:531.114750px;}
.y58{bottom:531.885000px;}
.y10b{bottom:531.972000px;}
.y75{bottom:532.005000px;}
.ycc{bottom:535.657500px;}
.y2c{bottom:539.392500px;}
.y2{bottom:546.120000px;}
.y10a{bottom:549.214500px;}
.y74{bottom:549.247500px;}
.ycb{bottom:552.900000px;}
.y2b{bottom:556.635000px;}
.y12c{bottom:566.457000px;}
.y57{bottom:566.490000px;}
.yca{bottom:570.142500px;}
.y1{bottom:576.120000px;}
.y12b{bottom:583.699500px;}
.y109{bottom:583.716000px;}
.y56{bottom:583.732500px;}
.yc9{bottom:587.385000px;}
.y12a{bottom:600.942000px;}
.y108{bottom:600.958500px;}
.y55{bottom:600.975000px;}
.yc8{bottom:604.627500px;}
.y48{bottom:611.785500px;}
.y129{bottom:618.184500px;}
.y107{bottom:618.201000px;}
.y54{bottom:618.217500px;}
.yc7{bottom:621.870000px;}
.y47{bottom:632.790000px;}
.y128{bottom:635.427000px;}
.y106{bottom:635.443500px;}
.y53{bottom:635.460000px;}
.y127{bottom:652.669500px;}
.y52{bottom:652.702500px;}
.y49{bottom:656.805000px;}
.yc6{bottom:660.375000px;}
.y126{bottom:669.912000px;}
.y51{bottom:669.945000px;}
.yc5{bottom:676.125000px;}
.y125{bottom:687.154500px;}
.y50{bottom:687.187500px;}
.yc4{bottom:691.875000px;}
.y23{bottom:702.849000px;}
.y124{bottom:704.397000px;}
.y4f{bottom:704.430000px;}
.yc3{bottom:707.625000px;}
.y2a{bottom:711.885000px;}
.y22{bottom:717.105000px;}
.y4e{bottom:721.672500px;}
.yc2{bottom:723.375000px;}
.y29{bottom:726.859500px;}
.y21{bottom:735.105000px;}
.y123{bottom:738.898500px;}
.y4d{bottom:738.915000px;}
.y28{bottom:747.864000px;}
.y122{bottom:756.141000px;}
.y4c{bottom:756.157500px;}
.y27{bottom:762.869250px;}
.y4b{bottom:773.400000px;}
.y26{bottom:777.874500px;}
.y20{bottom:780.105000px;}
.y4a{bottom:790.642500px;}
.y25{bottom:792.879750px;}
.y1f{bottom:804.105000px;}
.y24{bottom:807.885000px;}
.y1e{bottom:855.105000px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.h1{height:60.819000px;}
.h9{height:64.020000px;}
.h6{height:70.422000px;}
.h8{height:71.544000px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h7{height:144.837000px;}
.h0{height:901.500000px;}
.w0{width:637.500000px;}
.x0{left:0.000000px;}
.x1{left:70.200000px;}
.x3{left:71.415000px;}
.x9{left:92.700000px;}
.x4{left:93.921000px;}
.xb{left:115.195500px;}
.xa{left:116.421000px;}
.x6{left:145.305750px;}
.x5{left:167.265000px;}
.x8{left:290.745000px;}
.x7{left:327.905250px;}
.x2{left:408.735000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.682667pt;}
.ls1e{letter-spacing:-1.466667pt;}
.ls1f{letter-spacing:-1.408000pt;}
.ls33{letter-spacing:-1.349333pt;}
.ls24{letter-spacing:-1.290667pt;}
.ls34{letter-spacing:-1.232000pt;}
.ls39{letter-spacing:-1.173333pt;}
.ls38{letter-spacing:-1.114667pt;}
.ls2d{letter-spacing:-1.056000pt;}
.ls36{letter-spacing:-0.997333pt;}
.ls37{letter-spacing:-0.938667pt;}
.ls23{letter-spacing:-0.880000pt;}
.ls45{letter-spacing:-0.821333pt;}
.ls2e{letter-spacing:-0.762667pt;}
.ls8{letter-spacing:-0.709333pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.645333pt;}
.ls3e{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.506667pt;}
.ls22{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.456000pt;}
.ls2b{letter-spacing:-0.410667pt;}
.ls3f{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.354667pt;}
.ls2a{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.304000pt;}
.ls2c{letter-spacing:-0.293333pt;}
.ls19{letter-spacing:-0.253333pt;}
.ls20{letter-spacing:-0.234667pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.202667pt;}
.ls16{letter-spacing:-0.176000pt;}
.ls26{letter-spacing:-0.117333pt;}
.ls17{letter-spacing:-0.058667pt;}
.ls43{letter-spacing:-0.053333pt;}
.ls18{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls3d{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls5{letter-spacing:0.152000pt;}
.lsb{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.234667pt;}
.ls25{letter-spacing:0.293333pt;}
.ls41{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.354667pt;}
.ls40{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.405333pt;}
.ls31{letter-spacing:0.410667pt;}
.ls1{letter-spacing:0.456000pt;}
.ls10{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls0{letter-spacing:0.557333pt;}
.ls3b{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.645333pt;}
.lsd{letter-spacing:0.704000pt;}
.ls3a{letter-spacing:0.762667pt;}
.ls29{letter-spacing:0.821333pt;}
.ls30{letter-spacing:0.880000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls2f{letter-spacing:0.997333pt;}
.ls27{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.064000pt;}
.ls3c{letter-spacing:1.114667pt;}
.lsc{letter-spacing:1.466667pt;}
.ls21{letter-spacing:1.525333pt;}
.ls35{letter-spacing:21.354667pt;}
.ls44{letter-spacing:35.200000pt;}
.ls46{letter-spacing:41.360000pt;}
.ls28{letter-spacing:41.418667pt;}
.ws50{word-spacing:-16.133333pt;}
.ws44{word-spacing:-15.722667pt;}
.ws45{word-spacing:-15.605333pt;}
.ws51{word-spacing:-15.488000pt;}
.ws57{word-spacing:-15.429333pt;}
.ws68{word-spacing:-15.312000pt;}
.ws15{word-spacing:-15.136000pt;}
.ws54{word-spacing:-15.077333pt;}
.ws6c{word-spacing:-15.018667pt;}
.ws65{word-spacing:-14.960000pt;}
.ws14{word-spacing:-14.901333pt;}
.ws58{word-spacing:-14.842667pt;}
.ws4d{word-spacing:-14.784000pt;}
.ws2f{word-spacing:-14.725333pt;}
.ws13{word-spacing:-14.666667pt;}
.ws46{word-spacing:-14.608000pt;}
.ws6e{word-spacing:-14.549333pt;}
.ws16{word-spacing:-14.490667pt;}
.ws30{word-spacing:-14.432000pt;}
.ws43{word-spacing:-14.373333pt;}
.ws42{word-spacing:-14.314667pt;}
.ws47{word-spacing:-14.256000pt;}
.ws67{word-spacing:-14.197333pt;}
.ws12{word-spacing:-14.021333pt;}
.ws69{word-spacing:-13.962667pt;}
.ws33{word-spacing:-13.786667pt;}
.ws55{word-spacing:-13.728000pt;}
.ws5f{word-spacing:-13.669333pt;}
.ws4e{word-spacing:-13.610667pt;}
.ws59{word-spacing:-13.552000pt;}
.ws34{word-spacing:-13.376000pt;}
.ws5a{word-spacing:-13.333333pt;}
.ws70{word-spacing:-13.200000pt;}
.ws5b{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws11{word-spacing:-12.666667pt;}
.ws10{word-spacing:-12.312000pt;}
.ws18{word-spacing:-10.624000pt;}
.ws6a{word-spacing:-0.762667pt;}
.ws2e{word-spacing:-0.704000pt;}
.ws3a{word-spacing:-0.645333pt;}
.ws63{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.586667pt;}
.ws38{word-spacing:-0.528000pt;}
.ws4b{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.456000pt;}
.ws61{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.405333pt;}
.ws1a{word-spacing:-0.354667pt;}
.ws48{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.304000pt;}
.ws2b{word-spacing:-0.293333pt;}
.ws5c{word-spacing:-0.266667pt;}
.ws4{word-spacing:-0.253333pt;}
.ws3d{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.202667pt;}
.ws36{word-spacing:-0.176000pt;}
.ws1b{word-spacing:-0.152000pt;}
.ws1e{word-spacing:-0.117333pt;}
.ws52{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.050667pt;}
.ws4c{word-spacing:0.058667pt;}
.ws5d{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.117333pt;}
.ws22{word-spacing:0.176000pt;}
.wsb{word-spacing:0.202667pt;}
.ws56{word-spacing:0.234667pt;}
.ws6{word-spacing:0.253333pt;}
.ws1d{word-spacing:0.293333pt;}
.ws49{word-spacing:0.352000pt;}
.ws4a{word-spacing:0.410667pt;}
.ws40{word-spacing:0.469333pt;}
.ws19{word-spacing:0.506667pt;}
.ws37{word-spacing:0.528000pt;}
.ws20{word-spacing:0.586667pt;}
.ws2c{word-spacing:0.645333pt;}
.ws28{word-spacing:0.704000pt;}
.ws25{word-spacing:0.762667pt;}
.ws5{word-spacing:0.810667pt;}
.ws41{word-spacing:0.821333pt;}
.ws9{word-spacing:0.861333pt;}
.ws3f{word-spacing:0.880000pt;}
.wsc{word-spacing:0.912000pt;}
.ws6d{word-spacing:0.938667pt;}
.ws62{word-spacing:0.960000pt;}
.ws32{word-spacing:0.997333pt;}
.ws64{word-spacing:1.013333pt;}
.ws27{word-spacing:1.056000pt;}
.wse{word-spacing:1.114667pt;}
.wsd{word-spacing:1.165333pt;}
.ws21{word-spacing:1.173333pt;}
.ws2{word-spacing:1.216000pt;}
.ws5e{word-spacing:1.226667pt;}
.ws1f{word-spacing:1.232000pt;}
.ws1c{word-spacing:1.266667pt;}
.ws23{word-spacing:1.290667pt;}
.ws29{word-spacing:1.349333pt;}
.ws2a{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws24{word-spacing:2.992000pt;}
.ws6b{word-spacing:4.810667pt;}
.ws60{word-spacing:6.218667pt;}
.ws66{word-spacing:6.688000pt;}
.ws3b{word-spacing:9.914667pt;}
.ws3c{word-spacing:10.149333pt;}
.ws4f{word-spacing:10.970667pt;}
.ws53{word-spacing:11.088000pt;}
.ws35{word-spacing:19.184000pt;}
.ws6f{word-spacing:19.242667pt;}
.ws31{word-spacing:20.474667pt;}
.ws71{word-spacing:21.354667pt;}
.ws17{word-spacing:31.914667pt;}
._6{margin-left:-9.170667pt;}
._a{margin-left:-7.861333pt;}
._3{margin-left:-6.536000pt;}
._12{margin-left:-5.280000pt;}
._4{margin-left:-4.154667pt;}
._10{margin-left:-3.168000pt;}
._1{margin-left:-2.229333pt;}
._0{margin-left:-1.013333pt;}
._2{width:1.216000pt;}
._e{width:2.288000pt;}
._7{width:3.285333pt;}
._c{width:13.376000pt;}
._b{width:14.725333pt;}
._11{width:19.184000pt;}
._f{width:20.474667pt;}
._5{width:42.410667pt;}
._9{width:96.114667pt;}
._d{width:132.821333pt;}
._8{width:824.917333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:43.625333pt;}
.y121{bottom:43.673333pt;}
.yb0{bottom:43.702667pt;}
.y8f{bottom:43.717333pt;}
.y9f{bottom:43.746667pt;}
.y1d{bottom:46.314000pt;}
.y46{bottom:46.617333pt;}
.ye7{bottom:46.978667pt;}
.yc1{bottom:47.240000pt;}
.y72{bottom:58.952000pt;}
.y120{bottom:59.000000pt;}
.yaf{bottom:59.029333pt;}
.y8e{bottom:59.044000pt;}
.y9e{bottom:59.073333pt;}
.y1c{bottom:59.652000pt;}
.y45{bottom:61.944000pt;}
.ye6{bottom:62.305333pt;}
.yc0{bottom:62.566667pt;}
.y1b{bottom:72.990000pt;}
.y71{bottom:74.278667pt;}
.y11f{bottom:74.326667pt;}
.yef{bottom:74.356000pt;}
.y8d{bottom:74.370667pt;}
.y9d{bottom:74.400000pt;}
.y44{bottom:77.270667pt;}
.ye5{bottom:77.632000pt;}
.ybf{bottom:77.893333pt;}
.y105{bottom:79.049333pt;}
.y70{bottom:89.605333pt;}
.y11e{bottom:89.653333pt;}
.yee{bottom:89.682667pt;}
.y8c{bottom:89.697333pt;}
.y9c{bottom:89.726667pt;}
.y43{bottom:92.597333pt;}
.ye4{bottom:92.958667pt;}
.y104{bottom:94.376000pt;}
.y1a{bottom:99.653333pt;}
.y6f{bottom:104.932000pt;}
.yed{bottom:105.009333pt;}
.y8b{bottom:105.024000pt;}
.y9b{bottom:105.053333pt;}
.ye3{bottom:108.285333pt;}
.y103{bottom:109.702667pt;}
.ybe{bottom:112.120000pt;}
.y42{bottom:119.261333pt;}
.y6e{bottom:120.258667pt;}
.y11d{bottom:120.321333pt;}
.yec{bottom:120.336000pt;}
.y8a{bottom:120.350667pt;}
.yea{bottom:120.365333pt;}
.y9a{bottom:120.380000pt;}
.ye2{bottom:123.612000pt;}
.y102{bottom:125.029333pt;}
.ybd{bottom:126.120000pt;}
.y19{bottom:131.620667pt;}
.y6d{bottom:135.585333pt;}
.y11c{bottom:135.648000pt;}
.y89{bottom:135.677333pt;}
.ye9{bottom:135.692000pt;}
.y99{bottom:135.706667pt;}
.ye1{bottom:138.938667pt;}
.ybc{bottom:140.120000pt;}
.y101{bottom:140.356000pt;}
.yeb{bottom:143.333333pt;}
.y18{bottom:144.958667pt;}
.y11b{bottom:150.974667pt;}
.y88{bottom:151.004000pt;}
.ye8{bottom:151.018667pt;}
.y98{bottom:151.033333pt;}
.ybb{bottom:154.120000pt;}
.ye0{bottom:154.265333pt;}
.y100{bottom:155.682667pt;}
.y41{bottom:157.600000pt;}
.y17{bottom:165.846000pt;}
.y6c{bottom:166.253333pt;}
.y11a{bottom:166.301333pt;}
.y87{bottom:166.330667pt;}
.ya5{bottom:166.345333pt;}
.y97{bottom:166.360000pt;}
.ydf{bottom:169.592000pt;}
.yff{bottom:171.009333pt;}
.y40{bottom:172.926667pt;}
.y16{bottom:179.184000pt;}
.y6b{bottom:181.580000pt;}
.y119{bottom:181.628000pt;}
.y86{bottom:181.657333pt;}
.ya4{bottom:181.672000pt;}
.y96{bottom:181.686667pt;}
.yfe{bottom:186.336000pt;}
.y3f{bottom:188.253333pt;}
.y15{bottom:192.522000pt;}
.y6a{bottom:196.906667pt;}
.y118{bottom:196.954667pt;}
.y85{bottom:196.984000pt;}
.ya3{bottom:196.998667pt;}
.y95{bottom:197.013333pt;}
.yde{bottom:200.260000pt;}
.yfd{bottom:201.662667pt;}
.y3e{bottom:203.580000pt;}
.y14{bottom:205.860000pt;}
.y69{bottom:212.233333pt;}
.y117{bottom:212.281333pt;}
.yba{bottom:212.310667pt;}
.ya2{bottom:212.325333pt;}
.y94{bottom:212.340000pt;}
.ydd{bottom:215.586667pt;}
.yfc{bottom:216.989333pt;}
.y3d{bottom:218.906667pt;}
.y13{bottom:219.198000pt;}
.y68{bottom:227.560000pt;}
.y116{bottom:227.608000pt;}
.yb9{bottom:227.637333pt;}
.y84{bottom:227.652000pt;}
.y93{bottom:227.666667pt;}
.ydc{bottom:230.913333pt;}
.yfb{bottom:232.316000pt;}
.y12{bottom:232.536000pt;}
.y3c{bottom:234.233333pt;}
.y67{bottom:242.886667pt;}
.y115{bottom:242.934667pt;}
.yb8{bottom:242.964000pt;}
.y83{bottom:242.978667pt;}
.y92{bottom:242.993333pt;}
.y11{bottom:245.874000pt;}
.ydb{bottom:246.240000pt;}
.yfa{bottom:247.642667pt;}
.y3b{bottom:249.560000pt;}
.y66{bottom:258.213333pt;}
.yb7{bottom:258.290667pt;}
.y82{bottom:258.305333pt;}
.y91{bottom:258.320000pt;}
.y10{bottom:259.212000pt;}
.yda{bottom:261.566667pt;}
.yf9{bottom:262.969333pt;}
.y3a{bottom:264.886667pt;}
.y114{bottom:265.932000pt;}
.yf{bottom:272.550000pt;}
.y65{bottom:273.540000pt;}
.yb6{bottom:273.617333pt;}
.ya1{bottom:273.632000pt;}
.y90{bottom:273.646667pt;}
.yd9{bottom:276.893333pt;}
.yf8{bottom:278.296000pt;}
.y39{bottom:280.213333pt;}
.y64{bottom:288.866667pt;}
.yb5{bottom:288.944000pt;}
.ya0{bottom:288.958667pt;}
.y81{bottom:288.973333pt;}
.yd8{bottom:292.220000pt;}
.yf7{bottom:293.622667pt;}
.y38{bottom:295.540000pt;}
.ye{bottom:299.213333pt;}
.y63{bottom:304.193333pt;}
.yb4{bottom:304.270667pt;}
.yae{bottom:304.285333pt;}
.y80{bottom:304.300000pt;}
.yd7{bottom:307.546667pt;}
.yf6{bottom:308.949333pt;}
.y37{bottom:310.866667pt;}
.y62{bottom:319.520000pt;}
.yb3{bottom:319.597333pt;}
.yad{bottom:319.612000pt;}
.y7f{bottom:319.626667pt;}
.yd6{bottom:322.873333pt;}
.yf5{bottom:324.276000pt;}
.y36{bottom:326.193333pt;}
.yd{bottom:331.172667pt;}
.y61{bottom:334.846667pt;}
.y134{bottom:334.909333pt;}
.yb2{bottom:334.924000pt;}
.yac{bottom:334.938667pt;}
.y7e{bottom:334.953333pt;}
.yd5{bottom:338.200000pt;}
.yf4{bottom:339.602667pt;}
.y35{bottom:341.520000pt;}
.yc{bottom:344.510667pt;}
.y60{bottom:350.173333pt;}
.y133{bottom:350.236000pt;}
.y113{bottom:350.250667pt;}
.yab{bottom:350.265333pt;}
.y7d{bottom:350.280000pt;}
.yd4{bottom:353.526667pt;}
.yf3{bottom:354.929333pt;}
.y34{bottom:356.846667pt;}
.yb1{bottom:357.921333pt;}
.yb{bottom:365.398000pt;}
.y5f{bottom:365.500000pt;}
.y132{bottom:365.562667pt;}
.y112{bottom:365.577333pt;}
.yaa{bottom:365.592000pt;}
.y7c{bottom:365.606667pt;}
.yd3{bottom:368.853333pt;}
.yf2{bottom:370.256000pt;}
.y33{bottom:372.173333pt;}
.ya{bottom:378.736000pt;}
.y5e{bottom:380.826667pt;}
.y131{bottom:380.889333pt;}
.y111{bottom:380.904000pt;}
.ya9{bottom:380.918667pt;}
.y7b{bottom:380.933333pt;}
.yd2{bottom:384.180000pt;}
.yf1{bottom:385.582667pt;}
.y32{bottom:387.500000pt;}
.y9{bottom:392.074000pt;}
.y5d{bottom:396.153333pt;}
.y130{bottom:396.216000pt;}
.y110{bottom:396.230667pt;}
.ya8{bottom:396.245333pt;}
.y7a{bottom:396.260000pt;}
.yd1{bottom:399.506667pt;}
.yf0{bottom:400.909333pt;}
.y31{bottom:402.826667pt;}
.y8{bottom:405.412000pt;}
.y5c{bottom:411.480000pt;}
.y12f{bottom:411.542667pt;}
.y10f{bottom:411.557333pt;}
.ya7{bottom:411.572000pt;}
.y79{bottom:411.586667pt;}
.yd0{bottom:414.833333pt;}
.y30{bottom:418.153333pt;}
.y7{bottom:418.750000pt;}
.y5b{bottom:426.806667pt;}
.y12e{bottom:426.869333pt;}
.y10e{bottom:426.884000pt;}
.ya6{bottom:426.898667pt;}
.y78{bottom:426.913333pt;}
.ycf{bottom:430.160000pt;}
.y6{bottom:432.088000pt;}
.y2f{bottom:433.480000pt;}
.y5a{bottom:442.133333pt;}
.y12d{bottom:442.196000pt;}
.y10d{bottom:442.210667pt;}
.y77{bottom:442.240000pt;}
.y5{bottom:445.426000pt;}
.yce{bottom:445.486667pt;}
.y2e{bottom:448.806667pt;}
.y59{bottom:457.460000pt;}
.y10c{bottom:457.537333pt;}
.y76{bottom:457.566667pt;}
.y4{bottom:458.764000pt;}
.ycd{bottom:460.813333pt;}
.y2d{bottom:464.133333pt;}
.y3{bottom:472.102000pt;}
.y58{bottom:472.786667pt;}
.y10b{bottom:472.864000pt;}
.y75{bottom:472.893333pt;}
.ycc{bottom:476.140000pt;}
.y2c{bottom:479.460000pt;}
.y2{bottom:485.440000pt;}
.y10a{bottom:488.190667pt;}
.y74{bottom:488.220000pt;}
.ycb{bottom:491.466667pt;}
.y2b{bottom:494.786667pt;}
.y12c{bottom:503.517333pt;}
.y57{bottom:503.546667pt;}
.yca{bottom:506.793333pt;}
.y1{bottom:512.106667pt;}
.y12b{bottom:518.844000pt;}
.y109{bottom:518.858667pt;}
.y56{bottom:518.873333pt;}
.yc9{bottom:522.120000pt;}
.y12a{bottom:534.170667pt;}
.y108{bottom:534.185333pt;}
.y55{bottom:534.200000pt;}
.yc8{bottom:537.446667pt;}
.y48{bottom:543.809333pt;}
.y129{bottom:549.497333pt;}
.y107{bottom:549.512000pt;}
.y54{bottom:549.526667pt;}
.yc7{bottom:552.773333pt;}
.y47{bottom:562.480000pt;}
.y128{bottom:564.824000pt;}
.y106{bottom:564.838667pt;}
.y53{bottom:564.853333pt;}
.y127{bottom:580.150667pt;}
.y52{bottom:580.180000pt;}
.y49{bottom:583.826667pt;}
.yc6{bottom:587.000000pt;}
.y126{bottom:595.477333pt;}
.y51{bottom:595.506667pt;}
.yc5{bottom:601.000000pt;}
.y125{bottom:610.804000pt;}
.y50{bottom:610.833333pt;}
.yc4{bottom:615.000000pt;}
.y23{bottom:624.754667pt;}
.y124{bottom:626.130667pt;}
.y4f{bottom:626.160000pt;}
.yc3{bottom:629.000000pt;}
.y2a{bottom:632.786667pt;}
.y22{bottom:637.426667pt;}
.y4e{bottom:641.486667pt;}
.yc2{bottom:643.000000pt;}
.y29{bottom:646.097333pt;}
.y21{bottom:653.426667pt;}
.y123{bottom:656.798667pt;}
.y4d{bottom:656.813333pt;}
.y28{bottom:664.768000pt;}
.y122{bottom:672.125333pt;}
.y4c{bottom:672.140000pt;}
.y27{bottom:678.106000pt;}
.y4b{bottom:687.466667pt;}
.y26{bottom:691.444000pt;}
.y20{bottom:693.426667pt;}
.y4a{bottom:702.793333pt;}
.y25{bottom:704.782000pt;}
.y1f{bottom:714.760000pt;}
.y24{bottom:718.120000pt;}
.y1e{bottom:760.093333pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.h1{height:54.061333pt;}
.h9{height:56.906667pt;}
.h6{height:62.597333pt;}
.h8{height:63.594667pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h7{height:128.744000pt;}
.h0{height:801.333333pt;}
.w0{width:566.666667pt;}
.x0{left:0.000000pt;}
.x1{left:62.400000pt;}
.x3{left:63.480000pt;}
.x9{left:82.400000pt;}
.x4{left:83.485333pt;}
.xb{left:102.396000pt;}
.xa{left:103.485333pt;}
.x6{left:129.160667pt;}
.x5{left:148.680000pt;}
.x8{left:258.440000pt;}
.x7{left:291.471333pt;}
.x2{left:363.320000pt;}
}




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