
    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_6dc0c8d463952ef854fa4c03.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_102c29a10c8f02af9717951c.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_f398446b7553e4d5aa24f3c6.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1a1964b4d5466b61a60d7d26.woff2')format("woff");}.ff4{font-family:ff4;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);}
.v3{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.810000px;}
.v1{vertical-align:84.018000px;}
.ls3c{letter-spacing:-1.848000px;}
.ls3b{letter-spacing:-1.782000px;}
.ls33{letter-spacing:-1.584000px;}
.ls4b{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.386000px;}
.ls27{letter-spacing:-1.320000px;}
.ls29{letter-spacing:-1.254000px;}
.ls4a{letter-spacing:-1.188000px;}
.ls2f{letter-spacing:-1.122000px;}
.ls8{letter-spacing:-1.083000px;}
.ls32{letter-spacing:-1.056000px;}
.lsc{letter-spacing:-1.026000px;}
.ls55{letter-spacing:-1.012500px;}
.ls31{letter-spacing:-0.990000px;}
.ls35{letter-spacing:-0.972000px;}
.ls4c{letter-spacing:-0.918000px;}
.ls3a{letter-spacing:-0.858000px;}
.ls4f{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.726000px;}
.lsd{letter-spacing:-0.684000px;}
.ls19{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.570000px;}
.ls2a{letter-spacing:-0.528000px;}
.ls2e{letter-spacing:-0.462000px;}
.ls2b{letter-spacing:-0.396000px;}
.ls43{letter-spacing:-0.378000px;}
.ls30{letter-spacing:-0.346500px;}
.lsa{letter-spacing:-0.342000px;}
.ls1b{letter-spacing:-0.330000px;}
.ls40{letter-spacing:-0.324000px;}
.ls49{letter-spacing:-0.297000px;}
.ls1c{letter-spacing:-0.264000px;}
.ls34{letter-spacing:-0.247500px;}
.ls41{letter-spacing:-0.243000px;}
.ls42{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.198000px;}
.ls1e{letter-spacing:-0.162000px;}
.ls3d{letter-spacing:-0.148500px;}
.ls25{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.121500px;}
.ls7{letter-spacing:-0.114000px;}
.ls53{letter-spacing:-0.081000px;}
.ls28{letter-spacing:-0.066000px;}
.lsb{letter-spacing:-0.057000px;}
.ls54{letter-spacing:-0.054000px;}
.ls18{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.030000px;}
.ls46{letter-spacing:0.040500px;}
.ls3e{letter-spacing:0.049500px;}
.ls45{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.057000px;}
.ls12{letter-spacing:0.066000px;}
.ls47{letter-spacing:0.081000px;}
.ls5{letter-spacing:0.114000px;}
.ls22{letter-spacing:0.132000px;}
.ls51{letter-spacing:0.148500px;}
.ls38{letter-spacing:0.162000px;}
.lse{letter-spacing:0.198000px;}
.ls23{letter-spacing:0.264000px;}
.ls3f{letter-spacing:0.297000px;}
.ls10{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.342000px;}
.ls2d{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.456000px;}
.ls11{letter-spacing:0.462000px;}
.ls39{letter-spacing:0.486000px;}
.ls36{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.570000px;}
.ls24{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.690000px;}
.ls20{letter-spacing:0.726000px;}
.lsf{letter-spacing:0.792000px;}
.ls48{letter-spacing:0.810000px;}
.ls4d{letter-spacing:0.850500px;}
.ls13{letter-spacing:0.858000px;}
.ls0{letter-spacing:0.912000px;}
.ls15{letter-spacing:0.924000px;}
.ls2c{letter-spacing:1.122000px;}
.ls37{letter-spacing:1.452000px;}
.ls4e{letter-spacing:1.650000px;}
.ls44{letter-spacing:1.914000px;}
.ls21{letter-spacing:18.210000px;}
.ls16{letter-spacing:18.870000px;}
.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;}
}
.ws67{word-spacing:-18.414000px;}
.ws16{word-spacing:-17.424000px;}
.ws3b{word-spacing:-17.226000px;}
.ws37{word-spacing:-16.962000px;}
.ws4a{word-spacing:-16.896000px;}
.ws3a{word-spacing:-16.698000px;}
.ws82{word-spacing:-16.632000px;}
.ws35{word-spacing:-16.566000px;}
.ws14{word-spacing:-16.500000px;}
.ws7c{word-spacing:-16.434000px;}
.ws38{word-spacing:-16.368000px;}
.ws17{word-spacing:-16.302000px;}
.ws36{word-spacing:-16.236000px;}
.ws15{word-spacing:-16.170000px;}
.ws3c{word-spacing:-16.104000px;}
.ws48{word-spacing:-16.038000px;}
.ws4b{word-spacing:-15.906000px;}
.ws39{word-spacing:-15.840000px;}
.ws47{word-spacing:-15.510000px;}
.ws49{word-spacing:-15.246000px;}
.ws7d{word-spacing:-15.114000px;}
.ws56{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.478000px;}
.ws70{word-spacing:-14.310000px;}
.ws71{word-spacing:-14.094000px;}
.ws5d{word-spacing:-13.986000px;}
.ws6a{word-spacing:-13.554000px;}
.ws5e{word-spacing:-13.500000px;}
.ws5b{word-spacing:-13.176000px;}
.ws6d{word-spacing:-13.122000px;}
.ws5a{word-spacing:-12.672000px;}
.ws69{word-spacing:-12.582000px;}
.ws57{word-spacing:-12.573000px;}
.ws4f{word-spacing:-12.528000px;}
.ws7a{word-spacing:-12.523500px;}
.ws80{word-spacing:-12.474000px;}
.ws59{word-spacing:-12.424500px;}
.ws45{word-spacing:-12.375000px;}
.ws58{word-spacing:-12.226500px;}
.ws4d{word-spacing:-12.177000px;}
.ws4c{word-spacing:-12.127500px;}
.ws68{word-spacing:-12.078000px;}
.ws46{word-spacing:-12.028500px;}
.ws13{word-spacing:-11.952000px;}
.ws6f{word-spacing:-10.975500px;}
.ws6e{word-spacing:-10.935000px;}
.ws6c{word-spacing:-10.206000px;}
.ws6b{word-spacing:-10.165500px;}
.ws19{word-spacing:-10.125000px;}
.ws7e{word-spacing:-10.044000px;}
.ws1a{word-spacing:-10.003500px;}
.ws5c{word-spacing:-9.882000px;}
.ws7f{word-spacing:-9.112500px;}
.ws22{word-spacing:-0.858000px;}
.ws42{word-spacing:-0.792000px;}
.ws33{word-spacing:-0.726000px;}
.ws4{word-spacing:-0.684000px;}
.ws28{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.528000px;}
.ws63{word-spacing:-0.486000px;}
.ws2a{word-spacing:-0.462000px;}
.wsf{word-spacing:-0.456000px;}
.wsa{word-spacing:-0.399000px;}
.ws51{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.381000px;}
.ws60{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.330000px;}
.ws8{word-spacing:-0.285000px;}
.ws66{word-spacing:-0.270000px;}
.ws1d{word-spacing:-0.264000px;}
.ws1f{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.132000px;}
.ws3d{word-spacing:-0.066000px;}
.ws54{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws72{word-spacing:0.066000px;}
.wse{word-spacing:0.114000px;}
.ws2f{word-spacing:0.132000px;}
.ws75{word-spacing:0.162000px;}
.ws5f{word-spacing:0.198000px;}
.ws74{word-spacing:0.216000px;}
.ws5{word-spacing:0.228000px;}
.ws52{word-spacing:0.264000px;}
.wsd{word-spacing:0.285000px;}
.ws55{word-spacing:0.324000px;}
.ws73{word-spacing:0.330000px;}
.ws81{word-spacing:0.378000px;}
.ws43{word-spacing:0.396000px;}
.ws6{word-spacing:0.399000px;}
.ws62{word-spacing:0.432000px;}
.ws3e{word-spacing:0.462000px;}
.ws78{word-spacing:0.486000px;}
.ws26{word-spacing:0.528000px;}
.ws2d{word-spacing:0.544500px;}
.ws1c{word-spacing:0.594000px;}
.ws44{word-spacing:0.660000px;}
.ws9{word-spacing:0.684000px;}
.ws2c{word-spacing:0.726000px;}
.ws79{word-spacing:0.756000px;}
.ws21{word-spacing:0.792000px;}
.ws3f{word-spacing:0.858000px;}
.ws64{word-spacing:0.864000px;}
.ws31{word-spacing:0.924000px;}
.wsc{word-spacing:0.969000px;}
.ws65{word-spacing:0.972000px;}
.ws2e{word-spacing:0.990000px;}
.ws77{word-spacing:1.026000px;}
.ws53{word-spacing:1.056000px;}
.wsb{word-spacing:1.083000px;}
.ws24{word-spacing:1.122000px;}
.ws61{word-spacing:1.134000px;}
.ws2b{word-spacing:1.188000px;}
.ws7{word-spacing:1.197000px;}
.ws76{word-spacing:1.242000px;}
.ws23{word-spacing:1.254000px;}
.ws11{word-spacing:1.311000px;}
.ws29{word-spacing:1.320000px;}
.ws10{word-spacing:1.368000px;}
.ws40{word-spacing:1.386000px;}
.ws1e{word-spacing:1.452000px;}
.ws41{word-spacing:1.518000px;}
.ws27{word-spacing:1.584000px;}
.ws1b{word-spacing:1.650000px;}
.ws50{word-spacing:2.310000px;}
.ws4e{word-spacing:9.018000px;}
.ws7b{word-spacing:10.890000px;}
.ws12{word-spacing:35.904000px;}
.ws18{word-spacing:36.018000px;}
._c{margin-left:-9.825000px;}
._a{margin-left:-7.458000px;}
._2{margin-left:-5.358000px;}
._3{margin-left:-3.477000px;}
._1{margin-left:-2.337000px;}
._0{margin-left:-1.152000px;}
._7{width:1.215000px;}
._8{width:2.443500px;}
._b{width:22.518000px;}
._4{width:48.321000px;}
._5{width:107.787000px;}
._9{width:843.504000px;}
._6{width:1102.929000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:42.880500px;}
.yf6{bottom:45.969000px;}
.y9b{bottom:47.208000px;}
.y70{bottom:47.244000px;}
.y46{bottom:50.889000px;}
.ybc{bottom:53.985000px;}
.yf5{bottom:60.225000px;}
.y9a{bottom:61.464000px;}
.y6f{bottom:61.500000px;}
.y1b{bottom:63.885000px;}
.y45{bottom:65.133000px;}
.ybb{bottom:68.241000px;}
.y99{bottom:75.690000px;}
.yd8{bottom:75.702000px;}
.y10c{bottom:75.708000px;}
.y44{bottom:79.389000px;}
.yba{bottom:82.497000px;}
.y1d{bottom:87.885000px;}
.y98{bottom:89.946000px;}
.yd7{bottom:89.958000px;}
.y10b{bottom:89.964000px;}
.y43{bottom:93.645000px;}
.yb9{bottom:96.753000px;}
.y97{bottom:104.202000px;}
.yd6{bottom:104.214000px;}
.y10a{bottom:104.220000px;}
.yb8{bottom:111.009000px;}
.yf4{bottom:118.425000px;}
.yd5{bottom:118.452000px;}
.y96{bottom:118.458000px;}
.y6e{bottom:118.492500px;}
.yb7{bottom:125.223000px;}
.yd4{bottom:132.708000px;}
.y95{bottom:132.714000px;}
.yf3{bottom:135.667500px;}
.y6d{bottom:135.735000px;}
.yb6{bottom:139.479000px;}
.y42{bottom:144.225000px;}
.y94{bottom:146.958000px;}
.yd3{bottom:146.964000px;}
.yf2{bottom:152.910000px;}
.y109{bottom:152.970000px;}
.y6c{bottom:152.977500px;}
.yb5{bottom:153.735000px;}
.y93{bottom:161.214000px;}
.yd2{bottom:161.220000px;}
.y41{bottom:161.467500px;}
.yb4{bottom:167.991000px;}
.yf1{bottom:170.152500px;}
.y108{bottom:170.212500px;}
.y6b{bottom:170.220000px;}
.y19{bottom:172.965000px;}
.y92{bottom:175.470000px;}
.y40{bottom:178.710000px;}
.yb3{bottom:182.247000px;}
.yf0{bottom:187.395000px;}
.y107{bottom:187.455000px;}
.y6a{bottom:187.462500px;}
.y18{bottom:187.930500px;}
.y3f{bottom:195.952500px;}
.yb2{bottom:196.503000px;}
.yd1{bottom:204.600000px;}
.yef{bottom:204.637500px;}
.y106{bottom:204.697500px;}
.y69{bottom:204.705000px;}
.yb1{bottom:210.759000px;}
.y3e{bottom:213.195000px;}
.y17{bottom:213.552000px;}
.y91{bottom:221.805000px;}
.yd0{bottom:221.842500px;}
.yee{bottom:221.880000px;}
.y105{bottom:221.940000px;}
.y68{bottom:221.947500px;}
.yb0{bottom:225.015000px;}
.y16{bottom:228.557250px;}
.y3d{bottom:230.437500px;}
.y90{bottom:239.047500px;}
.ycf{bottom:239.085000px;}
.yed{bottom:239.122500px;}
.y104{bottom:239.182500px;}
.y67{bottom:239.190000px;}
.y15{bottom:243.562500px;}
.y3c{bottom:247.680000px;}
.y8f{bottom:256.290000px;}
.yce{bottom:256.327500px;}
.yec{bottom:256.365000px;}
.y103{bottom:256.425000px;}
.y66{bottom:256.432500px;}
.y14{bottom:258.567750px;}
.y3b{bottom:264.922500px;}
.y8e{bottom:273.532500px;}
.yaf{bottom:273.535500px;}
.ycd{bottom:273.570000px;}
.y13{bottom:273.573000px;}
.yeb{bottom:273.607500px;}
.y102{bottom:273.667500px;}
.y65{bottom:273.675000px;}
.y3a{bottom:282.165000px;}
.y12{bottom:288.578250px;}
.yae{bottom:290.778000px;}
.y8d{bottom:290.812500px;}
.yea{bottom:290.850000px;}
.y101{bottom:290.910000px;}
.y64{bottom:290.917500px;}
.y39{bottom:299.407500px;}
.y11{bottom:303.583500px;}
.y8c{bottom:308.055000px;}
.ye9{bottom:308.092500px;}
.y100{bottom:308.152500px;}
.y63{bottom:308.160000px;}
.yad{bottom:316.681500px;}
.y38{bottom:316.822500px;}
.y10{bottom:318.588750px;}
.y8b{bottom:325.297500px;}
.ye8{bottom:325.335000px;}
.yff{bottom:325.395000px;}
.y62{bottom:325.402500px;}
.y37{bottom:334.065000px;}
.y8a{bottom:342.540000px;}
.ye7{bottom:342.577500px;}
.yfe{bottom:342.637500px;}
.y61{bottom:342.645000px;}
.yf{bottom:348.585000px;}
.y36{bottom:351.307500px;}
.y89{bottom:359.782500px;}
.yac{bottom:359.812500px;}
.ye6{bottom:359.820000px;}
.yfd{bottom:359.880000px;}
.y60{bottom:359.887500px;}
.y35{bottom:368.550000px;}
.yab{bottom:377.055000px;}
.ye5{bottom:377.062500px;}
.y88{bottom:377.070000px;}
.yfc{bottom:377.122500px;}
.y5f{bottom:377.130000px;}
.ycc{bottom:377.137500px;}
.y34{bottom:385.792500px;}
.yaa{bottom:394.297500px;}
.ye4{bottom:394.305000px;}
.y87{bottom:394.312500px;}
.yfb{bottom:394.365000px;}
.y5e{bottom:394.372500px;}
.ycb{bottom:394.380000px;}
.ye{bottom:397.566000px;}
.y33{bottom:403.035000px;}
.ya9{bottom:411.540000px;}
.ye3{bottom:411.547500px;}
.y86{bottom:411.555000px;}
.yfa{bottom:411.607500px;}
.y5d{bottom:411.615000px;}
.yca{bottom:411.622500px;}
.yd{bottom:412.571250px;}
.y32{bottom:420.277500px;}
.ya8{bottom:428.782500px;}
.ye2{bottom:428.790000px;}
.y85{bottom:428.797500px;}
.yf9{bottom:428.850000px;}
.y5c{bottom:428.857500px;}
.yc9{bottom:428.865000px;}
.y31{bottom:437.520000px;}
.yc{bottom:438.207000px;}
.ya7{bottom:446.032500px;}
.y84{bottom:446.040000px;}
.yf8{bottom:446.092500px;}
.y5b{bottom:446.100000px;}
.yc8{bottom:446.107500px;}
.yb{bottom:453.212250px;}
.y83{bottom:463.282500px;}
.ya6{bottom:463.312500px;}
.yf7{bottom:463.335000px;}
.y5a{bottom:463.342500px;}
.yc7{bottom:463.350000px;}
.y30{bottom:463.392000px;}
.ye1{bottom:463.425000px;}
.ya{bottom:468.217500px;}
.ya5{bottom:480.555000px;}
.y82{bottom:480.577500px;}
.y59{bottom:480.585000px;}
.yc6{bottom:480.592500px;}
.ye0{bottom:480.667500px;}
.y9{bottom:483.222750px;}
.ya4{bottom:497.797500px;}
.y81{bottom:497.820000px;}
.y58{bottom:497.827500px;}
.yc5{bottom:497.835000px;}
.ydf{bottom:497.910000px;}
.y8{bottom:498.228000px;}
.y2f{bottom:506.523000px;}
.y7{bottom:513.233250px;}
.ya3{bottom:515.040000px;}
.y80{bottom:515.062500px;}
.y57{bottom:515.070000px;}
.yc4{bottom:515.077500px;}
.yde{bottom:515.152500px;}
.y2e{bottom:523.765500px;}
.y6{bottom:528.238500px;}
.ya2{bottom:532.282500px;}
.y7f{bottom:532.305000px;}
.y56{bottom:532.312500px;}
.yc3{bottom:532.320000px;}
.ydd{bottom:532.395000px;}
.y2d{bottom:541.008000px;}
.y5{bottom:543.243750px;}
.y7e{bottom:549.547500px;}
.y55{bottom:549.555000px;}
.yc2{bottom:549.562500px;}
.ydc{bottom:549.637500px;}
.y2c{bottom:558.250500px;}
.y7d{bottom:566.790000px;}
.y54{bottom:566.797500px;}
.yc1{bottom:566.805000px;}
.ydb{bottom:566.880000px;}
.y4{bottom:573.240000px;}
.y2b{bottom:575.493000px;}
.y7c{bottom:584.032500px;}
.y53{bottom:584.040000px;}
.yc0{bottom:584.047500px;}
.yda{bottom:584.122500px;}
.y2a{bottom:592.735500px;}
.y52{bottom:601.282500px;}
.ybf{bottom:601.290000px;}
.y7b{bottom:601.320000px;}
.y115{bottom:601.332000px;}
.yd9{bottom:601.365000px;}
.y29{bottom:609.978000px;}
.ybe{bottom:618.532500px;}
.y7a{bottom:618.562500px;}
.y51{bottom:618.570000px;}
.y114{bottom:618.574500px;}
.ya1{bottom:618.607500px;}
.y28{bottom:627.220500px;}
.ybd{bottom:635.782500px;}
.y79{bottom:635.805000px;}
.y50{bottom:635.812500px;}
.y113{bottom:635.817000px;}
.ya0{bottom:635.850000px;}
.y27{bottom:644.463000px;}
.y78{bottom:653.047500px;}
.y4f{bottom:653.055000px;}
.y112{bottom:653.059500px;}
.y9f{bottom:653.092500px;}
.y26{bottom:661.705500px;}
.y77{bottom:670.290000px;}
.y4e{bottom:670.297500px;}
.y111{bottom:670.302000px;}
.y9e{bottom:670.335000px;}
.y25{bottom:678.948000px;}
.y76{bottom:687.532500px;}
.y4d{bottom:687.540000px;}
.y110{bottom:687.544500px;}
.y9d{bottom:687.577500px;}
.y24{bottom:696.190500px;}
.y4c{bottom:704.782500px;}
.y10f{bottom:704.787000px;}
.y75{bottom:704.812500px;}
.y9c{bottom:704.820000px;}
.y23{bottom:713.433000px;}
.y10e{bottom:722.029500px;}
.y74{bottom:722.055000px;}
.y4b{bottom:722.062500px;}
.y22{bottom:730.675500px;}
.y3{bottom:737.205000px;}
.y73{bottom:739.297500px;}
.y4a{bottom:739.305000px;}
.y10d{bottom:747.901500px;}
.y21{bottom:747.918000px;}
.y2{bottom:755.955000px;}
.y72{bottom:756.540000px;}
.y49{bottom:756.547500px;}
.y20{bottom:765.160500px;}
.y71{bottom:773.782500px;}
.y48{bottom:773.790000px;}
.y1f{bottom:782.403000px;}
.y47{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y1e{bottom:808.275000px;}
.y1a{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.h12{height:57.666000px;}
.h11{height:57.690000px;}
.hd{height:57.738000px;}
.ha{height:58.536000px;}
.hc{height:58.560000px;}
.hb{height:58.584000px;}
.h10{height:58.608000px;}
.hf{height:58.704000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.h8{height:70.422000px;}
.he{height:71.418000px;}
.h9{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h7{height:145.806000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x7{left:54.915000px;}
.xa{left:61.665000px;}
.x9{left:76.195500px;}
.x8{left:77.437500px;}
.x4{left:84.656250px;}
.x3{left:196.875000px;}
.x6{left:273.030000px;}
.x5{left:310.206750px;}
.x2{left:412.515000px;}
@media print{
.v3{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.053333pt;}
.v1{vertical-align:74.682667pt;}
.ls3c{letter-spacing:-1.642667pt;}
.ls3b{letter-spacing:-1.584000pt;}
.ls33{letter-spacing:-1.408000pt;}
.ls4b{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.232000pt;}
.ls27{letter-spacing:-1.173333pt;}
.ls29{letter-spacing:-1.114667pt;}
.ls4a{letter-spacing:-1.056000pt;}
.ls2f{letter-spacing:-0.997333pt;}
.ls8{letter-spacing:-0.962667pt;}
.ls32{letter-spacing:-0.938667pt;}
.lsc{letter-spacing:-0.912000pt;}
.ls55{letter-spacing:-0.900000pt;}
.ls31{letter-spacing:-0.880000pt;}
.ls35{letter-spacing:-0.864000pt;}
.ls4c{letter-spacing:-0.816000pt;}
.ls3a{letter-spacing:-0.762667pt;}
.ls4f{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.645333pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls2a{letter-spacing:-0.469333pt;}
.ls2e{letter-spacing:-0.410667pt;}
.ls2b{letter-spacing:-0.352000pt;}
.ls43{letter-spacing:-0.336000pt;}
.ls30{letter-spacing:-0.308000pt;}
.lsa{letter-spacing:-0.304000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.ls40{letter-spacing:-0.288000pt;}
.ls49{letter-spacing:-0.264000pt;}
.ls1c{letter-spacing:-0.234667pt;}
.ls34{letter-spacing:-0.220000pt;}
.ls41{letter-spacing:-0.216000pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.176000pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls3d{letter-spacing:-0.132000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.108000pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls53{letter-spacing:-0.072000pt;}
.ls28{letter-spacing:-0.058667pt;}
.lsb{letter-spacing:-0.050667pt;}
.ls54{letter-spacing:-0.048000pt;}
.ls18{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.026667pt;}
.ls46{letter-spacing:0.036000pt;}
.ls3e{letter-spacing:0.044000pt;}
.ls45{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls12{letter-spacing:0.058667pt;}
.ls47{letter-spacing:0.072000pt;}
.ls5{letter-spacing:0.101333pt;}
.ls22{letter-spacing:0.117333pt;}
.ls51{letter-spacing:0.132000pt;}
.ls38{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.176000pt;}
.ls23{letter-spacing:0.234667pt;}
.ls3f{letter-spacing:0.264000pt;}
.ls10{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.304000pt;}
.ls2d{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls11{letter-spacing:0.410667pt;}
.ls39{letter-spacing:0.432000pt;}
.ls36{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.506667pt;}
.ls24{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.613333pt;}
.ls20{letter-spacing:0.645333pt;}
.lsf{letter-spacing:0.704000pt;}
.ls48{letter-spacing:0.720000pt;}
.ls4d{letter-spacing:0.756000pt;}
.ls13{letter-spacing:0.762667pt;}
.ls0{letter-spacing:0.810667pt;}
.ls15{letter-spacing:0.821333pt;}
.ls2c{letter-spacing:0.997333pt;}
.ls37{letter-spacing:1.290667pt;}
.ls4e{letter-spacing:1.466667pt;}
.ls44{letter-spacing:1.701333pt;}
.ls21{letter-spacing:16.186667pt;}
.ls16{letter-spacing:16.773333pt;}
.ws67{word-spacing:-16.368000pt;}
.ws16{word-spacing:-15.488000pt;}
.ws3b{word-spacing:-15.312000pt;}
.ws37{word-spacing:-15.077333pt;}
.ws4a{word-spacing:-15.018667pt;}
.ws3a{word-spacing:-14.842667pt;}
.ws82{word-spacing:-14.784000pt;}
.ws35{word-spacing:-14.725333pt;}
.ws14{word-spacing:-14.666667pt;}
.ws7c{word-spacing:-14.608000pt;}
.ws38{word-spacing:-14.549333pt;}
.ws17{word-spacing:-14.490667pt;}
.ws36{word-spacing:-14.432000pt;}
.ws15{word-spacing:-14.373333pt;}
.ws3c{word-spacing:-14.314667pt;}
.ws48{word-spacing:-14.256000pt;}
.ws4b{word-spacing:-14.138667pt;}
.ws39{word-spacing:-14.080000pt;}
.ws47{word-spacing:-13.786667pt;}
.ws49{word-spacing:-13.552000pt;}
.ws7d{word-spacing:-13.434667pt;}
.ws56{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.869333pt;}
.ws70{word-spacing:-12.720000pt;}
.ws71{word-spacing:-12.528000pt;}
.ws5d{word-spacing:-12.432000pt;}
.ws6a{word-spacing:-12.048000pt;}
.ws5e{word-spacing:-12.000000pt;}
.ws5b{word-spacing:-11.712000pt;}
.ws6d{word-spacing:-11.664000pt;}
.ws5a{word-spacing:-11.264000pt;}
.ws69{word-spacing:-11.184000pt;}
.ws57{word-spacing:-11.176000pt;}
.ws4f{word-spacing:-11.136000pt;}
.ws7a{word-spacing:-11.132000pt;}
.ws80{word-spacing:-11.088000pt;}
.ws59{word-spacing:-11.044000pt;}
.ws45{word-spacing:-11.000000pt;}
.ws58{word-spacing:-10.868000pt;}
.ws4d{word-spacing:-10.824000pt;}
.ws4c{word-spacing:-10.780000pt;}
.ws68{word-spacing:-10.736000pt;}
.ws46{word-spacing:-10.692000pt;}
.ws13{word-spacing:-10.624000pt;}
.ws6f{word-spacing:-9.756000pt;}
.ws6e{word-spacing:-9.720000pt;}
.ws6c{word-spacing:-9.072000pt;}
.ws6b{word-spacing:-9.036000pt;}
.ws19{word-spacing:-9.000000pt;}
.ws7e{word-spacing:-8.928000pt;}
.ws1a{word-spacing:-8.892000pt;}
.ws5c{word-spacing:-8.784000pt;}
.ws7f{word-spacing:-8.100000pt;}
.ws22{word-spacing:-0.762667pt;}
.ws42{word-spacing:-0.704000pt;}
.ws33{word-spacing:-0.645333pt;}
.ws4{word-spacing:-0.608000pt;}
.ws28{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.469333pt;}
.ws63{word-spacing:-0.432000pt;}
.ws2a{word-spacing:-0.410667pt;}
.wsf{word-spacing:-0.405333pt;}
.wsa{word-spacing:-0.354667pt;}
.ws51{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.338667pt;}
.ws60{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.293333pt;}
.ws8{word-spacing:-0.253333pt;}
.ws66{word-spacing:-0.240000pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws1f{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.117333pt;}
.ws3d{word-spacing:-0.058667pt;}
.ws54{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws72{word-spacing:0.058667pt;}
.wse{word-spacing:0.101333pt;}
.ws2f{word-spacing:0.117333pt;}
.ws75{word-spacing:0.144000pt;}
.ws5f{word-spacing:0.176000pt;}
.ws74{word-spacing:0.192000pt;}
.ws5{word-spacing:0.202667pt;}
.ws52{word-spacing:0.234667pt;}
.wsd{word-spacing:0.253333pt;}
.ws55{word-spacing:0.288000pt;}
.ws73{word-spacing:0.293333pt;}
.ws81{word-spacing:0.336000pt;}
.ws43{word-spacing:0.352000pt;}
.ws6{word-spacing:0.354667pt;}
.ws62{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.410667pt;}
.ws78{word-spacing:0.432000pt;}
.ws26{word-spacing:0.469333pt;}
.ws2d{word-spacing:0.484000pt;}
.ws1c{word-spacing:0.528000pt;}
.ws44{word-spacing:0.586667pt;}
.ws9{word-spacing:0.608000pt;}
.ws2c{word-spacing:0.645333pt;}
.ws79{word-spacing:0.672000pt;}
.ws21{word-spacing:0.704000pt;}
.ws3f{word-spacing:0.762667pt;}
.ws64{word-spacing:0.768000pt;}
.ws31{word-spacing:0.821333pt;}
.wsc{word-spacing:0.861333pt;}
.ws65{word-spacing:0.864000pt;}
.ws2e{word-spacing:0.880000pt;}
.ws77{word-spacing:0.912000pt;}
.ws53{word-spacing:0.938667pt;}
.wsb{word-spacing:0.962667pt;}
.ws24{word-spacing:0.997333pt;}
.ws61{word-spacing:1.008000pt;}
.ws2b{word-spacing:1.056000pt;}
.ws7{word-spacing:1.064000pt;}
.ws76{word-spacing:1.104000pt;}
.ws23{word-spacing:1.114667pt;}
.ws11{word-spacing:1.165333pt;}
.ws29{word-spacing:1.173333pt;}
.ws10{word-spacing:1.216000pt;}
.ws40{word-spacing:1.232000pt;}
.ws1e{word-spacing:1.290667pt;}
.ws41{word-spacing:1.349333pt;}
.ws27{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.466667pt;}
.ws50{word-spacing:2.053333pt;}
.ws4e{word-spacing:8.016000pt;}
.ws7b{word-spacing:9.680000pt;}
.ws12{word-spacing:31.914667pt;}
.ws18{word-spacing:32.016000pt;}
._c{margin-left:-8.733333pt;}
._a{margin-left:-6.629333pt;}
._2{margin-left:-4.762667pt;}
._3{margin-left:-3.090667pt;}
._1{margin-left:-2.077333pt;}
._0{margin-left:-1.024000pt;}
._7{width:1.080000pt;}
._8{width:2.172000pt;}
._b{width:20.016000pt;}
._4{width:42.952000pt;}
._5{width:95.810667pt;}
._9{width:749.781333pt;}
._6{width:980.381333pt;}
.fs7{font-size:36.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:38.116000pt;}
.yf6{bottom:40.861333pt;}
.y9b{bottom:41.962667pt;}
.y70{bottom:41.994667pt;}
.y46{bottom:45.234667pt;}
.ybc{bottom:47.986667pt;}
.yf5{bottom:53.533333pt;}
.y9a{bottom:54.634667pt;}
.y6f{bottom:54.666667pt;}
.y1b{bottom:56.786667pt;}
.y45{bottom:57.896000pt;}
.ybb{bottom:60.658667pt;}
.y99{bottom:67.280000pt;}
.yd8{bottom:67.290667pt;}
.y10c{bottom:67.296000pt;}
.y44{bottom:70.568000pt;}
.yba{bottom:73.330667pt;}
.y1d{bottom:78.120000pt;}
.y98{bottom:79.952000pt;}
.yd7{bottom:79.962667pt;}
.y10b{bottom:79.968000pt;}
.y43{bottom:83.240000pt;}
.yb9{bottom:86.002667pt;}
.y97{bottom:92.624000pt;}
.yd6{bottom:92.634667pt;}
.y10a{bottom:92.640000pt;}
.yb8{bottom:98.674667pt;}
.yf4{bottom:105.266667pt;}
.yd5{bottom:105.290667pt;}
.y96{bottom:105.296000pt;}
.y6e{bottom:105.326667pt;}
.yb7{bottom:111.309333pt;}
.yd4{bottom:117.962667pt;}
.y95{bottom:117.968000pt;}
.yf3{bottom:120.593333pt;}
.y6d{bottom:120.653333pt;}
.yb6{bottom:123.981333pt;}
.y42{bottom:128.200000pt;}
.y94{bottom:130.629333pt;}
.yd3{bottom:130.634667pt;}
.yf2{bottom:135.920000pt;}
.y109{bottom:135.973333pt;}
.y6c{bottom:135.980000pt;}
.yb5{bottom:136.653333pt;}
.y93{bottom:143.301333pt;}
.yd2{bottom:143.306667pt;}
.y41{bottom:143.526667pt;}
.yb4{bottom:149.325333pt;}
.yf1{bottom:151.246667pt;}
.y108{bottom:151.300000pt;}
.y6b{bottom:151.306667pt;}
.y19{bottom:153.746667pt;}
.y92{bottom:155.973333pt;}
.y40{bottom:158.853333pt;}
.yb3{bottom:161.997333pt;}
.yf0{bottom:166.573333pt;}
.y107{bottom:166.626667pt;}
.y6a{bottom:166.633333pt;}
.y18{bottom:167.049333pt;}
.y3f{bottom:174.180000pt;}
.yb2{bottom:174.669333pt;}
.yd1{bottom:181.866667pt;}
.yef{bottom:181.900000pt;}
.y106{bottom:181.953333pt;}
.y69{bottom:181.960000pt;}
.yb1{bottom:187.341333pt;}
.y3e{bottom:189.506667pt;}
.y17{bottom:189.824000pt;}
.y91{bottom:197.160000pt;}
.yd0{bottom:197.193333pt;}
.yee{bottom:197.226667pt;}
.y105{bottom:197.280000pt;}
.y68{bottom:197.286667pt;}
.yb0{bottom:200.013333pt;}
.y16{bottom:203.162000pt;}
.y3d{bottom:204.833333pt;}
.y90{bottom:212.486667pt;}
.ycf{bottom:212.520000pt;}
.yed{bottom:212.553333pt;}
.y104{bottom:212.606667pt;}
.y67{bottom:212.613333pt;}
.y15{bottom:216.500000pt;}
.y3c{bottom:220.160000pt;}
.y8f{bottom:227.813333pt;}
.yce{bottom:227.846667pt;}
.yec{bottom:227.880000pt;}
.y103{bottom:227.933333pt;}
.y66{bottom:227.940000pt;}
.y14{bottom:229.838000pt;}
.y3b{bottom:235.486667pt;}
.y8e{bottom:243.140000pt;}
.yaf{bottom:243.142667pt;}
.ycd{bottom:243.173333pt;}
.y13{bottom:243.176000pt;}
.yeb{bottom:243.206667pt;}
.y102{bottom:243.260000pt;}
.y65{bottom:243.266667pt;}
.y3a{bottom:250.813333pt;}
.y12{bottom:256.514000pt;}
.yae{bottom:258.469333pt;}
.y8d{bottom:258.500000pt;}
.yea{bottom:258.533333pt;}
.y101{bottom:258.586667pt;}
.y64{bottom:258.593333pt;}
.y39{bottom:266.140000pt;}
.y11{bottom:269.852000pt;}
.y8c{bottom:273.826667pt;}
.ye9{bottom:273.860000pt;}
.y100{bottom:273.913333pt;}
.y63{bottom:273.920000pt;}
.yad{bottom:281.494667pt;}
.y38{bottom:281.620000pt;}
.y10{bottom:283.190000pt;}
.y8b{bottom:289.153333pt;}
.ye8{bottom:289.186667pt;}
.yff{bottom:289.240000pt;}
.y62{bottom:289.246667pt;}
.y37{bottom:296.946667pt;}
.y8a{bottom:304.480000pt;}
.ye7{bottom:304.513333pt;}
.yfe{bottom:304.566667pt;}
.y61{bottom:304.573333pt;}
.yf{bottom:309.853333pt;}
.y36{bottom:312.273333pt;}
.y89{bottom:319.806667pt;}
.yac{bottom:319.833333pt;}
.ye6{bottom:319.840000pt;}
.yfd{bottom:319.893333pt;}
.y60{bottom:319.900000pt;}
.y35{bottom:327.600000pt;}
.yab{bottom:335.160000pt;}
.ye5{bottom:335.166667pt;}
.y88{bottom:335.173333pt;}
.yfc{bottom:335.220000pt;}
.y5f{bottom:335.226667pt;}
.ycc{bottom:335.233333pt;}
.y34{bottom:342.926667pt;}
.yaa{bottom:350.486667pt;}
.ye4{bottom:350.493333pt;}
.y87{bottom:350.500000pt;}
.yfb{bottom:350.546667pt;}
.y5e{bottom:350.553333pt;}
.ycb{bottom:350.560000pt;}
.ye{bottom:353.392000pt;}
.y33{bottom:358.253333pt;}
.ya9{bottom:365.813333pt;}
.ye3{bottom:365.820000pt;}
.y86{bottom:365.826667pt;}
.yfa{bottom:365.873333pt;}
.y5d{bottom:365.880000pt;}
.yca{bottom:365.886667pt;}
.yd{bottom:366.730000pt;}
.y32{bottom:373.580000pt;}
.ya8{bottom:381.140000pt;}
.ye2{bottom:381.146667pt;}
.y85{bottom:381.153333pt;}
.yf9{bottom:381.200000pt;}
.y5c{bottom:381.206667pt;}
.yc9{bottom:381.213333pt;}
.y31{bottom:388.906667pt;}
.yc{bottom:389.517333pt;}
.ya7{bottom:396.473333pt;}
.y84{bottom:396.480000pt;}
.yf8{bottom:396.526667pt;}
.y5b{bottom:396.533333pt;}
.yc8{bottom:396.540000pt;}
.yb{bottom:402.855333pt;}
.y83{bottom:411.806667pt;}
.ya6{bottom:411.833333pt;}
.yf7{bottom:411.853333pt;}
.y5a{bottom:411.860000pt;}
.yc7{bottom:411.866667pt;}
.y30{bottom:411.904000pt;}
.ye1{bottom:411.933333pt;}
.ya{bottom:416.193333pt;}
.ya5{bottom:427.160000pt;}
.y82{bottom:427.180000pt;}
.y59{bottom:427.186667pt;}
.yc6{bottom:427.193333pt;}
.ye0{bottom:427.260000pt;}
.y9{bottom:429.531333pt;}
.ya4{bottom:442.486667pt;}
.y81{bottom:442.506667pt;}
.y58{bottom:442.513333pt;}
.yc5{bottom:442.520000pt;}
.ydf{bottom:442.586667pt;}
.y8{bottom:442.869333pt;}
.y2f{bottom:450.242667pt;}
.y7{bottom:456.207333pt;}
.ya3{bottom:457.813333pt;}
.y80{bottom:457.833333pt;}
.y57{bottom:457.840000pt;}
.yc4{bottom:457.846667pt;}
.yde{bottom:457.913333pt;}
.y2e{bottom:465.569333pt;}
.y6{bottom:469.545333pt;}
.ya2{bottom:473.140000pt;}
.y7f{bottom:473.160000pt;}
.y56{bottom:473.166667pt;}
.yc3{bottom:473.173333pt;}
.ydd{bottom:473.240000pt;}
.y2d{bottom:480.896000pt;}
.y5{bottom:482.883333pt;}
.y7e{bottom:488.486667pt;}
.y55{bottom:488.493333pt;}
.yc2{bottom:488.500000pt;}
.ydc{bottom:488.566667pt;}
.y2c{bottom:496.222667pt;}
.y7d{bottom:503.813333pt;}
.y54{bottom:503.820000pt;}
.yc1{bottom:503.826667pt;}
.ydb{bottom:503.893333pt;}
.y4{bottom:509.546667pt;}
.y2b{bottom:511.549333pt;}
.y7c{bottom:519.140000pt;}
.y53{bottom:519.146667pt;}
.yc0{bottom:519.153333pt;}
.yda{bottom:519.220000pt;}
.y2a{bottom:526.876000pt;}
.y52{bottom:534.473333pt;}
.ybf{bottom:534.480000pt;}
.y7b{bottom:534.506667pt;}
.y115{bottom:534.517333pt;}
.yd9{bottom:534.546667pt;}
.y29{bottom:542.202667pt;}
.ybe{bottom:549.806667pt;}
.y7a{bottom:549.833333pt;}
.y51{bottom:549.840000pt;}
.y114{bottom:549.844000pt;}
.ya1{bottom:549.873333pt;}
.y28{bottom:557.529333pt;}
.ybd{bottom:565.140000pt;}
.y79{bottom:565.160000pt;}
.y50{bottom:565.166667pt;}
.y113{bottom:565.170667pt;}
.ya0{bottom:565.200000pt;}
.y27{bottom:572.856000pt;}
.y78{bottom:580.486667pt;}
.y4f{bottom:580.493333pt;}
.y112{bottom:580.497333pt;}
.y9f{bottom:580.526667pt;}
.y26{bottom:588.182667pt;}
.y77{bottom:595.813333pt;}
.y4e{bottom:595.820000pt;}
.y111{bottom:595.824000pt;}
.y9e{bottom:595.853333pt;}
.y25{bottom:603.509333pt;}
.y76{bottom:611.140000pt;}
.y4d{bottom:611.146667pt;}
.y110{bottom:611.150667pt;}
.y9d{bottom:611.180000pt;}
.y24{bottom:618.836000pt;}
.y4c{bottom:626.473333pt;}
.y10f{bottom:626.477333pt;}
.y75{bottom:626.500000pt;}
.y9c{bottom:626.506667pt;}
.y23{bottom:634.162667pt;}
.y10e{bottom:641.804000pt;}
.y74{bottom:641.826667pt;}
.y4b{bottom:641.833333pt;}
.y22{bottom:649.489333pt;}
.y3{bottom:655.293333pt;}
.y73{bottom:657.153333pt;}
.y4a{bottom:657.160000pt;}
.y10d{bottom:664.801333pt;}
.y21{bottom:664.816000pt;}
.y2{bottom:671.960000pt;}
.y72{bottom:672.480000pt;}
.y49{bottom:672.486667pt;}
.y20{bottom:680.142667pt;}
.y71{bottom:687.806667pt;}
.y48{bottom:687.813333pt;}
.y1f{bottom:695.469333pt;}
.y47{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y1e{bottom:718.466667pt;}
.y1a{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.h12{height:51.258667pt;}
.h11{height:51.280000pt;}
.hd{height:51.322667pt;}
.ha{height:52.032000pt;}
.hc{height:52.053333pt;}
.hb{height:52.074667pt;}
.h10{height:52.096000pt;}
.hf{height:52.181333pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.h8{height:62.597333pt;}
.he{height:63.482667pt;}
.h9{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h7{height:129.605333pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x7{left:48.813333pt;}
.xa{left:54.813333pt;}
.x9{left:67.729333pt;}
.x8{left:68.833333pt;}
.x4{left:75.250000pt;}
.x3{left:175.000000pt;}
.x6{left:242.693333pt;}
.x5{left:275.739333pt;}
.x2{left:366.680000pt;}
}




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