
    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_62ce721589e8bbc654604f52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8166d75112323806c42e4eae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_82ba9afe5053545aa9d9c536.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_122dad6f8130064ce1993a97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_db98e4f68561fa5b7e563b52.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_79ceffe5f1d7d2e71f1cafc3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_154a52e72b51fb6b61d9b603.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_c74c99aee74d9bda01de1f8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_c081ca87613108095dfc8963.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_c9af2144de32c68063c20f64.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_a985d044fe522f405ec04cb3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_63d1e225a38d1ce07fbdef53.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.020508;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_ebdcd5cd5ed7d64bae8ffae7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.949219;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_72cef969fd40bef8ba9a302a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.020508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_74d6b27ef3bbcee0a9814fc4.woff2')format("woff");}.fff{font-family:fff;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8c876cf9ee024634e0a96f15.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948242;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:ff11;src:url('chunks/assets/font_328d022712c2d72a3aca97af.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.767578;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:ff12;src:url('chunks/assets/font_ca8ac281a8a878e8247a6c1f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.961914;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:ff13;src:url('chunks/assets/font_9b7dd634d454c6215891eecd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.500000px;}
.v1{vertical-align:18.000000px;}
.ls1b{letter-spacing:-2.376000px;}
.ls15{letter-spacing:-1.608000px;}
.ls6{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-1.224000px;}
.ls2b{letter-spacing:-1.026000px;}
.ls28{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.045000px;}
.lsc{letter-spacing:-0.013500px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.075000px;}
.ls8{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.175500px;}
.ls14{letter-spacing:0.201000px;}
.ls2d{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.261000px;}
.ls1{letter-spacing:0.265500px;}
.ls13{letter-spacing:0.369000px;}
.ls21{letter-spacing:0.436800px;}
.ls20{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.799500px;}
.ls1a{letter-spacing:0.858000px;}
.ls2c{letter-spacing:0.859500px;}
.ls24{letter-spacing:1.266000px;}
.ls34{letter-spacing:1.269000px;}
.ls30{letter-spacing:1.482000px;}
.lsb{letter-spacing:1.542000px;}
.ls5{letter-spacing:1.624500px;}
.ls26{letter-spacing:1.662000px;}
.ls7{letter-spacing:1.740000px;}
.lsf{letter-spacing:1.744500px;}
.lsd{letter-spacing:1.774500px;}
.ls18{letter-spacing:1.800000px;}
.ls10{letter-spacing:1.804500px;}
.ls1c{letter-spacing:1.980000px;}
.ls3{letter-spacing:2.052000px;}
.ls31{letter-spacing:3.606000px;}
.ls25{letter-spacing:5.358000px;}
.ls29{letter-spacing:5.766000px;}
.ls11{letter-spacing:6.124500px;}
.ls33{letter-spacing:6.184500px;}
.ls35{letter-spacing:6.237000px;}
.ls1e{letter-spacing:6.304500px;}
.ls22{letter-spacing:10.594500px;}
.lse{letter-spacing:10.624500px;}
.ls32{letter-spacing:12.504000px;}
.ls17{letter-spacing:15.094500px;}
.lsa{letter-spacing:15.244500px;}
.ls27{letter-spacing:19.624500px;}
.ls2e{letter-spacing:19.917000px;}
.ls1f{letter-spacing:24.094500px;}
.ls2f{letter-spacing:33.207000px;}
.ls4{letter-spacing:204.244500px;}
.ls36{letter-spacing:845.004000px;}
.ls19{letter-spacing:848.757000px;}
.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;}
}
.ws7{word-spacing:-58.500000px;}
.ws19{word-spacing:-18.765000px;}
.ws17{word-spacing:-18.003000px;}
.ws10{word-spacing:-17.745000px;}
.ws11{word-spacing:-16.263000px;}
.ws12{word-spacing:-15.481500px;}
.ws18{word-spacing:-15.237000px;}
.ws16{word-spacing:-14.616000px;}
.wsb{word-spacing:-13.657500px;}
.wse{word-spacing:-13.537500px;}
.ws4{word-spacing:-13.417500px;}
.ws15{word-spacing:-13.141500px;}
.wsc{word-spacing:-12.312300px;}
.ws5{word-spacing:-12.136500px;}
.ws14{word-spacing:-12.051000px;}
.ws1{word-spacing:-11.875500px;}
.ws6{word-spacing:-11.862000px;}
.wsd{word-spacing:-11.605500px;}
.ws13{word-spacing:-11.083500px;}
.wsf{word-spacing:-10.849500px;}
.ws3{word-spacing:-10.555500px;}
.ws8{word-spacing:-10.267500px;}
.ws0{word-spacing:-7.308000px;}
.ws9{word-spacing:-6.084000px;}
.wsa{word-spacing:-4.932000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-9.090000px;}
._27{margin-left:-7.195500px;}
._19{margin-left:-6.084000px;}
._f{margin-left:-4.797000px;}
._5{margin-left:-2.983500px;}
._1{margin-left:-1.287000px;}
._0{width:1.111500px;}
._2{width:2.164500px;}
._8{width:3.334500px;}
._4{width:5.206500px;}
._6{width:6.435000px;}
._9{width:7.522500px;}
._20{width:8.769000px;}
._7{width:10.062000px;}
._28{width:11.758500px;}
._10{width:12.766500px;}
._3{width:14.683500px;}
._b{width:15.736500px;}
._21{width:16.774500px;}
._1b{width:17.931000px;}
._d{width:19.246500px;}
._a{width:20.416500px;}
._26{width:21.571500px;}
._c{width:22.633500px;}
._11{width:24.160500px;}
._1f{width:26.248500px;}
._12{width:28.372500px;}
._1a{width:29.484000px;}
._13{width:32.584500px;}
._18{width:34.047000px;}
._22{width:35.950500px;}
._14{width:37.147500px;}
._15{width:38.206500px;}
._16{width:42.178500px;}
._1c{width:43.455000px;}
._1e{width:45.912000px;}
._17{width:47.271000px;}
._25{width:48.820500px;}
._1d{width:50.836500px;}
._23{width:55.282500px;}
._24{width:56.580000px;}
._29{width:845.716500px;}
.fc2{color:transparent;}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:330.001502px;}
.y0{bottom:0.000000px;}
.y142{bottom:19.125000px;}
.y14a{bottom:19.140000px;}
.y147{bottom:19.155000px;}
.y143{bottom:20.250000px;}
.y13f{bottom:22.545000px;}
.y14c{bottom:37.125000px;}
.y148{bottom:37.170000px;}
.y13d{bottom:39.420000px;}
.y140{bottom:54.030000px;}
.y149{bottom:54.045000px;}
.y145{bottom:54.075000px;}
.y5{bottom:57.450000px;}
.y13e{bottom:58.575000px;}
.y4{bottom:77.700000px;}
.y141{bottom:88.950000px;}
.y146{bottom:88.980000px;}
.y3{bottom:95.737500px;}
.y9e{bottom:112.612500px;}
.yad{bottom:113.737500px;}
.y2{bottom:114.862500px;}
.y93{bottom:117.112500px;}
.ya7{bottom:118.237500px;}
.y118{bottom:120.487500px;}
.y12d{bottom:123.862500px;}
.y4d{bottom:124.987500px;}
.y110{bottom:126.112500px;}
.y107{bottom:127.237500px;}
.y5b{bottom:130.650000px;}
.y1{bottom:132.900000px;}
.y33{bottom:137.400000px;}
.y14f{bottom:139.650000px;}
.ycf{bottom:144.150000px;}
.yf2{bottom:146.400000px;}
.y9d{bottom:149.775000px;}
.y114{bottom:150.900000px;}
.y92{bottom:154.275000px;}
.y63{bottom:159.900000px;}
.y4c{bottom:161.025000px;}
.ybd{bottom:162.150000px;}
.y106{bottom:163.275000px;}
.y5a{bottom:166.650000px;}
.y12c{bottom:167.805000px;}
.y1a{bottom:168.930000px;}
.y117{bottom:171.180000px;}
.y40{bottom:173.430000px;}
.y32{bottom:174.555000px;}
.yce{bottom:180.180000px;}
.ye2{bottom:183.555000px;}
.y9c{bottom:185.805000px;}
.yac{bottom:186.930000px;}
.y91{bottom:190.305000px;}
.ya6{bottom:191.430000px;}
.y14e{bottom:192.570000px;}
.y62{bottom:197.070000px;}
.y4b{bottom:198.195000px;}
.ybc{bottom:199.320000px;}
.y105{bottom:200.445000px;}
.y59{bottom:203.820000px;}
.y19{bottom:204.945000px;}
.y72{bottom:209.475000px;}
.y31{bottom:210.600000px;}
.yc3{bottom:211.725000px;}
.y8d{bottom:215.100000px;}
.y10f{bottom:216.225000px;}
.ye1{bottom:220.725000px;}
.yc1{bottom:221.850000px;}
.y9b{bottom:222.975000px;}
.y90{bottom:227.475000px;}
.ya5{bottom:228.600000px;}
.y61{bottom:233.100000px;}
.ycd{bottom:234.225000px;}
.y4a{bottom:235.350000px;}
.yf1{bottom:236.475000px;}
.y58{bottom:239.850000px;}
.y18{bottom:242.100000px;}
.y144{bottom:243.225000px;}
.y3f{bottom:246.600000px;}
.yb1{bottom:247.725000px;}
.y1b{bottom:248.010000px;}
.y104{bottom:253.395000px;}
.yea{bottom:256.770000px;}
.y71{bottom:257.880000px;}
.y30{bottom:259.005000px;}
.yab{bottom:260.145000px;}
.y8c{bottom:264.630000px;}
.y60{bottom:270.270000px;}
.y49{bottom:271.380000px;}
.ybb{bottom:272.505000px;}
.ye0{bottom:273.645000px;}
.y57{bottom:277.020000px;}
.y17{bottom:278.130000px;}
.y3e{bottom:283.770000px;}
.y103{bottom:289.425000px;}
.y111{bottom:293.925000px;}
.yc0{bottom:295.050000px;}
.y2f{bottom:296.175000px;}
.yaa{bottom:297.300000px;}
.y116{bottom:299.550000px;}
.y8b{bottom:300.675000px;}
.ya4{bottom:301.800000px;}
.y153{bottom:304.050000px;}
.y10e{bottom:306.300000px;}
.y5f{bottom:307.425000px;}
.y7c{bottom:308.550000px;}
.ydf{bottom:309.675000px;}
.y56{bottom:313.050000px;}
.y16{bottom:315.300000px;}
.y3d{bottom:319.800000px;}
.yb0{bottom:320.925000px;}
.ycc{bottom:323.175000px;}
.y115{bottom:324.300000px;}
.yf0{bottom:326.550000px;}
.y152{bottom:327.675000px;}
.y113{bottom:329.955000px;}
.ybf{bottom:332.205000px;}
.y2e{bottom:333.330000px;}
.y8a{bottom:337.845000px;}
.y10d{bottom:342.330000px;}
.y5e{bottom:343.455000px;}
.y7b{bottom:344.595000px;}
.yba{bottom:345.705000px;}
.yde{bottom:346.830000px;}
.y55{bottom:350.205000px;}
.y15{bottom:352.455000px;}
.y151{bottom:355.830000px;}
.y3c{bottom:356.955000px;}
.y135{bottom:359.205000px;}
.ycb{bottom:360.330000px;}
.yef{bottom:362.580000px;}
.y2d{bottom:369.375000px;}
.y89{bottom:373.875000px;}
.ya3{bottom:375.000000px;}
.y102{bottom:379.500000px;}
.y5d{bottom:380.625000px;}
.y7a{bottom:381.750000px;}
.ye9{bottom:382.875000px;}
.y54{bottom:386.250000px;}
.y12b{bottom:388.500000px;}
.y3b{bottom:393.000000px;}
.y14{bottom:394.125000px;}
.y10c{bottom:396.375000px;}
.ydd{bottom:399.750000px;}
.y134{bottom:403.125000px;}
.ybe{bottom:405.375000px;}
.y2c{bottom:406.500000px;}
.y88{bottom:411.045000px;}
.yca{bottom:413.280000px;}
.y12a{bottom:414.420000px;}
.y70{bottom:416.655000px;}
.y79{bottom:417.795000px;}
.ya9{bottom:418.920000px;}
.y112{bottom:420.030000px;}
.y53{bottom:423.405000px;}
.y3a{bottom:430.155000px;}
.y10b{bottom:432.405000px;}
.ydc{bottom:436.905000px;}
.y129{bottom:439.155000px;}
.y2b{bottom:442.530000px;}
.y13{bottom:444.795000px;}
.y87{bottom:447.030000px;}
.ya2{bottom:448.200000px;}
.yc9{bottom:450.450000px;}
.yee{bottom:452.700000px;}
.y6f{bottom:453.825000px;}
.y78{bottom:454.950000px;}
.y52{bottom:460.575000px;}
.y128{bottom:465.075000px;}
.y39{bottom:466.200000px;}
.ya8{bottom:467.325000px;}
.y101{bottom:469.575000px;}
.ye8{bottom:472.950000px;}
.yb4{bottom:478.575000px;}
.y2a{bottom:479.700000px;}
.y86{bottom:484.200000px;}
.y10a{bottom:485.325000px;}
.y13c{bottom:486.450000px;}
.y6e{bottom:489.855000px;}
.y77{bottom:490.995000px;}
.y12{bottom:493.230000px;}
.y51{bottom:496.605000px;}
.y38{bottom:503.355000px;}
.yaf{bottom:504.495000px;}
.y100{bottom:505.620000px;}
.ye7{bottom:510.105000px;}
.y29{bottom:515.745000px;}
.y85{bottom:520.230000px;}
.yb8{bottom:521.370000px;}
.y109{bottom:522.495000px;}
.ydb{bottom:525.870000px;}
.y6d{bottom:526.980000px;}
.y76{bottom:528.150000px;}
.ya1{bottom:533.775000px;}
.y133{bottom:534.900000px;}
.y5c{bottom:539.400000px;}
.y37{bottom:540.525000px;}
.y11{bottom:541.650000px;}
.yf6{bottom:542.775000px;}
.y50{bottom:545.025000px;}
.yb3{bottom:551.775000px;}
.y28{bottom:552.900000px;}
.y84{bottom:557.400000px;}
.yb7{bottom:558.525000px;}
.yff{bottom:559.650000px;}
.yda{bottom:563.025000px;}
.y6c{bottom:564.150000px;}
.y127{bottom:566.400000px;}
.y154{bottom:568.695000px;}
.y36{bottom:576.570000px;}
.yae{bottom:577.695000px;}
.y132{bottom:578.820000px;}
.yed{bottom:579.945000px;}
.ya0{bottom:582.195000px;}
.y150{bottom:584.445000px;}
.y9a{bottom:588.945000px;}
.y10{bottom:590.070000px;}
.y126{bottom:592.320000px;}
.y4f{bottom:594.570000px;}
.yfe{bottom:595.695000px;}
.ye6{bottom:599.070000px;}
.y6b{bottom:600.195000px;}
.y27{bottom:601.320000px;}
.y8f{bottom:611.475000px;}
.y108{bottom:612.600000px;}
.y35{bottom:613.725000px;}
.yd9{bottom:615.975000px;}
.y125{bottom:618.225000px;}
.y131{bottom:622.725000px;}
.yb2{bottom:624.975000px;}
.y99{bottom:626.100000px;}
.yc8{bottom:629.475000px;}
.y83{bottom:630.600000px;}
.yf5{bottom:632.850000px;}
.y6a{bottom:637.350000px;}
.y75{bottom:638.475000px;}
.yf{bottom:639.600000px;}
.yb6{bottom:642.975000px;}
.y4e{bottom:647.475000px;}
.yfd{bottom:648.630000px;}
.y26{bottom:649.755000px;}
.yc2{bottom:650.895000px;}
.yd8{bottom:653.130000px;}
.y13b{bottom:655.380000px;}
.y34{bottom:662.130000px;}
.yc7{bottom:666.630000px;}
.y82{bottom:667.770000px;}
.yec{bottom:668.880000px;}
.y69{bottom:673.380000px;}
.y74{bottom:674.520000px;}
.yfc{bottom:685.755000px;}
.y41{bottom:686.880000px;}
.ye{bottom:688.050000px;}
.ye5{bottom:689.175000px;}
.y124{bottom:694.800000px;}
.yb5{bottom:697.050000px;}
.y25{bottom:698.175000px;}
.y98{bottom:699.300000px;}
.yc6{bottom:702.675000px;}
.y81{bottom:703.800000px;}
.yd7{bottom:706.050000px;}
.y68{bottom:710.550000px;}
.y73{bottom:711.675000px;}
.y123{bottom:719.550000px;}
.y48{bottom:722.925000px;}
.y24{bottom:735.345000px;}
.yd{bottom:736.455000px;}
.yfb{bottom:738.720000px;}
.y80{bottom:740.970000px;}
.yd6{bottom:742.095000px;}
.y13a{bottom:743.205000px;}
.y122{bottom:745.470000px;}
.y67{bottom:747.720000px;}
.yc5{bottom:755.595000px;}
.yeb{bottom:758.970000px;}
.y47{bottom:760.095000px;}
.y121{bottom:770.250000px;}
.y23{bottom:772.500000px;}
.yfa{bottom:775.875000px;}
.y7f{bottom:777.000000px;}
.yd5{bottom:779.250000px;}
.yc{bottom:784.875000px;}
.y139{bottom:787.125000px;}
.yc4{bottom:792.750000px;}
.y46{bottom:796.125000px;}
.y130{bottom:799.500000px;}
.y22{bottom:808.545000px;}
.y97{bottom:809.670000px;}
.yf9{bottom:811.920000px;}
.y7e{bottom:814.170000px;}
.ye4{bottom:816.420000px;}
.y66{bottom:820.920000px;}
.y120{bottom:822.045000px;}
.y138{bottom:831.045000px;}
.yd4{bottom:832.170000px;}
.y45{bottom:833.295000px;}
.yb{bottom:834.420000px;}
.y12f{bottom:843.420000px;}
.y21{bottom:845.670000px;}
.yf4{bottom:849.075000px;}
.y96{bottom:850.200000px;}
.y65{bottom:858.075000px;}
.y11f{bottom:859.200000px;}
.yf8{bottom:865.950000px;}
.y7d{bottom:868.200000px;}
.ye3{bottom:869.325000px;}
.y44{bottom:870.450000px;}
.y137{bottom:874.950000px;}
.y20{bottom:881.700000px;}
.ya{bottom:882.825000px;}
.yd3{bottom:885.075000px;}
.y95{bottom:887.325000px;}
.y64{bottom:894.120000px;}
.yf7{bottom:901.995000px;}
.y9f{bottom:904.245000px;}
.y43{bottom:906.495000px;}
.y11e{bottom:909.870000px;}
.y1f{bottom:918.870000px;}
.yd2{bottom:922.245000px;}
.y9{bottom:931.275000px;}
.y11d{bottom:935.775000px;}
.yf3{bottom:939.150000px;}
.y94{bottom:941.400000px;}
.y42{bottom:943.650000px;}
.y1e{bottom:954.900000px;}
.y14d{bottom:959.400000px;}
.y11c{bottom:961.650000px;}
.y136{bottom:962.775000px;}
.yb9{bottom:968.445000px;}
.yd1{bottom:975.195000px;}
.y8{bottom:979.695000px;}
.y11b{bottom:986.445000px;}
.y1d{bottom:992.070000px;}
.y14b{bottom:1010.100000px;}
.yd0{bottom:1012.350000px;}
.y8e{bottom:1016.850000px;}
.y12e{bottom:1019.100000px;}
.y7{bottom:1028.100000px;}
.y11a{bottom:1037.100000px;}
.y119{bottom:1063.005000px;}
.y6{bottom:1065.255000px;}
.y1c{bottom:1142.610000px;}
.h10{height:33.772500px;}
.hd{height:34.912500px;}
.h6{height:34.945312px;}
.hc{height:42.760986px;}
.ha{height:43.989258px;}
.h9{height:49.339600px;}
.h1{height:50.701904px;}
.h3{height:50.787598px;}
.h11{height:53.121094px;}
.h2{height:58.502197px;}
.h4{height:62.402344px;}
.h7{height:62.507812px;}
.hf{height:68.662500px;}
.h8{height:73.200000px;}
.hb{height:103.575000px;}
.he{height:103.612500px;}
.h5{height:323.878427px;}
.h0{height:1188.000000px;}
.w3{width:104.737500px;}
.w4{width:116.025000px;}
.w5{width:127.275000px;}
.w6{width:325.545000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:7.875000px;}
.x5{left:60.824973px;}
.x3{left:70.949973px;}
.x4{left:81.112486px;}
.x1{left:108.149986px;}
.xa{left:109.275000px;}
.x6{left:113.010000px;}
.x8{left:162.179986px;}
.xc{left:215.145000px;}
.xd{left:332.295000px;}
.x11{left:371.699986px;}
.x10{left:425.774986px;}
.xe{left:459.570000px;}
.xf{left:722.024986px;}
.x9{left:792.974986px;}
.x13{left:799.724986px;}
.x2{left:801.974986px;}
.x12{left:811.004986px;}
.x7{left:884.745000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1b{letter-spacing:-2.112000pt;}
.ls15{letter-spacing:-1.429333pt;}
.ls6{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-1.088000pt;}
.ls2b{letter-spacing:-0.912000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.040000pt;}
.lsc{letter-spacing:-0.012000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.066667pt;}
.ls8{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.156000pt;}
.ls14{letter-spacing:0.178667pt;}
.ls2d{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.232000pt;}
.ls1{letter-spacing:0.236000pt;}
.ls13{letter-spacing:0.328000pt;}
.ls21{letter-spacing:0.388267pt;}
.ls20{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.710667pt;}
.ls1a{letter-spacing:0.762667pt;}
.ls2c{letter-spacing:0.764000pt;}
.ls24{letter-spacing:1.125333pt;}
.ls34{letter-spacing:1.128000pt;}
.ls30{letter-spacing:1.317333pt;}
.lsb{letter-spacing:1.370667pt;}
.ls5{letter-spacing:1.444000pt;}
.ls26{letter-spacing:1.477333pt;}
.ls7{letter-spacing:1.546667pt;}
.lsf{letter-spacing:1.550667pt;}
.lsd{letter-spacing:1.577333pt;}
.ls18{letter-spacing:1.600000pt;}
.ls10{letter-spacing:1.604000pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls3{letter-spacing:1.824000pt;}
.ls31{letter-spacing:3.205333pt;}
.ls25{letter-spacing:4.762667pt;}
.ls29{letter-spacing:5.125333pt;}
.ls11{letter-spacing:5.444000pt;}
.ls33{letter-spacing:5.497333pt;}
.ls35{letter-spacing:5.544000pt;}
.ls1e{letter-spacing:5.604000pt;}
.ls22{letter-spacing:9.417333pt;}
.lse{letter-spacing:9.444000pt;}
.ls32{letter-spacing:11.114667pt;}
.ls17{letter-spacing:13.417333pt;}
.lsa{letter-spacing:13.550667pt;}
.ls27{letter-spacing:17.444000pt;}
.ls2e{letter-spacing:17.704000pt;}
.ls1f{letter-spacing:21.417333pt;}
.ls2f{letter-spacing:29.517333pt;}
.ls4{letter-spacing:181.550667pt;}
.ls36{letter-spacing:751.114667pt;}
.ls19{letter-spacing:754.450667pt;}
.ws7{word-spacing:-52.000000pt;}
.ws19{word-spacing:-16.680000pt;}
.ws17{word-spacing:-16.002667pt;}
.ws10{word-spacing:-15.773333pt;}
.ws11{word-spacing:-14.456000pt;}
.ws12{word-spacing:-13.761333pt;}
.ws18{word-spacing:-13.544000pt;}
.ws16{word-spacing:-12.992000pt;}
.wsb{word-spacing:-12.140000pt;}
.wse{word-spacing:-12.033333pt;}
.ws4{word-spacing:-11.926667pt;}
.ws15{word-spacing:-11.681333pt;}
.wsc{word-spacing:-10.944267pt;}
.ws5{word-spacing:-10.788000pt;}
.ws14{word-spacing:-10.712000pt;}
.ws1{word-spacing:-10.556000pt;}
.ws6{word-spacing:-10.544000pt;}
.wsd{word-spacing:-10.316000pt;}
.ws13{word-spacing:-9.852000pt;}
.wsf{word-spacing:-9.644000pt;}
.ws3{word-spacing:-9.382667pt;}
.ws8{word-spacing:-9.126667pt;}
.ws0{word-spacing:-6.496000pt;}
.ws9{word-spacing:-5.408000pt;}
.wsa{word-spacing:-4.384000pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-8.080000pt;}
._27{margin-left:-6.396000pt;}
._19{margin-left:-5.408000pt;}
._f{margin-left:-4.264000pt;}
._5{margin-left:-2.652000pt;}
._1{margin-left:-1.144000pt;}
._0{width:0.988000pt;}
._2{width:1.924000pt;}
._8{width:2.964000pt;}
._4{width:4.628000pt;}
._6{width:5.720000pt;}
._9{width:6.686667pt;}
._20{width:7.794667pt;}
._7{width:8.944000pt;}
._28{width:10.452000pt;}
._10{width:11.348000pt;}
._3{width:13.052000pt;}
._b{width:13.988000pt;}
._21{width:14.910667pt;}
._1b{width:15.938667pt;}
._d{width:17.108000pt;}
._a{width:18.148000pt;}
._26{width:19.174667pt;}
._c{width:20.118667pt;}
._11{width:21.476000pt;}
._1f{width:23.332000pt;}
._12{width:25.220000pt;}
._1a{width:26.208000pt;}
._13{width:28.964000pt;}
._18{width:30.264000pt;}
._22{width:31.956000pt;}
._14{width:33.020000pt;}
._15{width:33.961333pt;}
._16{width:37.492000pt;}
._1c{width:38.626667pt;}
._1e{width:40.810667pt;}
._17{width:42.018667pt;}
._25{width:43.396000pt;}
._1d{width:45.188000pt;}
._23{width:49.140000pt;}
._24{width:50.293333pt;}
._29{width:751.748000pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:293.334669pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:17.000000pt;}
.y14a{bottom:17.013333pt;}
.y147{bottom:17.026667pt;}
.y143{bottom:18.000000pt;}
.y13f{bottom:20.040000pt;}
.y14c{bottom:33.000000pt;}
.y148{bottom:33.040000pt;}
.y13d{bottom:35.040000pt;}
.y140{bottom:48.026667pt;}
.y149{bottom:48.040000pt;}
.y145{bottom:48.066667pt;}
.y5{bottom:51.066667pt;}
.y13e{bottom:52.066667pt;}
.y4{bottom:69.066667pt;}
.y141{bottom:79.066667pt;}
.y146{bottom:79.093333pt;}
.y3{bottom:85.100000pt;}
.y9e{bottom:100.100000pt;}
.yad{bottom:101.100000pt;}
.y2{bottom:102.100000pt;}
.y93{bottom:104.100000pt;}
.ya7{bottom:105.100000pt;}
.y118{bottom:107.100000pt;}
.y12d{bottom:110.100000pt;}
.y4d{bottom:111.100000pt;}
.y110{bottom:112.100000pt;}
.y107{bottom:113.100000pt;}
.y5b{bottom:116.133333pt;}
.y1{bottom:118.133333pt;}
.y33{bottom:122.133333pt;}
.y14f{bottom:124.133333pt;}
.ycf{bottom:128.133333pt;}
.yf2{bottom:130.133333pt;}
.y9d{bottom:133.133333pt;}
.y114{bottom:134.133333pt;}
.y92{bottom:137.133333pt;}
.y63{bottom:142.133333pt;}
.y4c{bottom:143.133333pt;}
.ybd{bottom:144.133333pt;}
.y106{bottom:145.133333pt;}
.y5a{bottom:148.133333pt;}
.y12c{bottom:149.160000pt;}
.y1a{bottom:150.160000pt;}
.y117{bottom:152.160000pt;}
.y40{bottom:154.160000pt;}
.y32{bottom:155.160000pt;}
.yce{bottom:160.160000pt;}
.ye2{bottom:163.160000pt;}
.y9c{bottom:165.160000pt;}
.yac{bottom:166.160000pt;}
.y91{bottom:169.160000pt;}
.ya6{bottom:170.160000pt;}
.y14e{bottom:171.173333pt;}
.y62{bottom:175.173333pt;}
.y4b{bottom:176.173333pt;}
.ybc{bottom:177.173333pt;}
.y105{bottom:178.173333pt;}
.y59{bottom:181.173333pt;}
.y19{bottom:182.173333pt;}
.y72{bottom:186.200000pt;}
.y31{bottom:187.200000pt;}
.yc3{bottom:188.200000pt;}
.y8d{bottom:191.200000pt;}
.y10f{bottom:192.200000pt;}
.ye1{bottom:196.200000pt;}
.yc1{bottom:197.200000pt;}
.y9b{bottom:198.200000pt;}
.y90{bottom:202.200000pt;}
.ya5{bottom:203.200000pt;}
.y61{bottom:207.200000pt;}
.ycd{bottom:208.200000pt;}
.y4a{bottom:209.200000pt;}
.yf1{bottom:210.200000pt;}
.y58{bottom:213.200000pt;}
.y18{bottom:215.200000pt;}
.y144{bottom:216.200000pt;}
.y3f{bottom:219.200000pt;}
.yb1{bottom:220.200000pt;}
.y1b{bottom:220.453333pt;}
.y104{bottom:225.240000pt;}
.yea{bottom:228.240000pt;}
.y71{bottom:229.226667pt;}
.y30{bottom:230.226667pt;}
.yab{bottom:231.240000pt;}
.y8c{bottom:235.226667pt;}
.y60{bottom:240.240000pt;}
.y49{bottom:241.226667pt;}
.ybb{bottom:242.226667pt;}
.ye0{bottom:243.240000pt;}
.y57{bottom:246.240000pt;}
.y17{bottom:247.226667pt;}
.y3e{bottom:252.240000pt;}
.y103{bottom:257.266667pt;}
.y111{bottom:261.266667pt;}
.yc0{bottom:262.266667pt;}
.y2f{bottom:263.266667pt;}
.yaa{bottom:264.266667pt;}
.y116{bottom:266.266667pt;}
.y8b{bottom:267.266667pt;}
.ya4{bottom:268.266667pt;}
.y153{bottom:270.266667pt;}
.y10e{bottom:272.266667pt;}
.y5f{bottom:273.266667pt;}
.y7c{bottom:274.266667pt;}
.ydf{bottom:275.266667pt;}
.y56{bottom:278.266667pt;}
.y16{bottom:280.266667pt;}
.y3d{bottom:284.266667pt;}
.yb0{bottom:285.266667pt;}
.ycc{bottom:287.266667pt;}
.y115{bottom:288.266667pt;}
.yf0{bottom:290.266667pt;}
.y152{bottom:291.266667pt;}
.y113{bottom:293.293333pt;}
.ybf{bottom:295.293333pt;}
.y2e{bottom:296.293333pt;}
.y8a{bottom:300.306667pt;}
.y10d{bottom:304.293333pt;}
.y5e{bottom:305.293333pt;}
.y7b{bottom:306.306667pt;}
.yba{bottom:307.293333pt;}
.yde{bottom:308.293333pt;}
.y55{bottom:311.293333pt;}
.y15{bottom:313.293333pt;}
.y151{bottom:316.293333pt;}
.y3c{bottom:317.293333pt;}
.y135{bottom:319.293333pt;}
.ycb{bottom:320.293333pt;}
.yef{bottom:322.293333pt;}
.y2d{bottom:328.333333pt;}
.y89{bottom:332.333333pt;}
.ya3{bottom:333.333333pt;}
.y102{bottom:337.333333pt;}
.y5d{bottom:338.333333pt;}
.y7a{bottom:339.333333pt;}
.ye9{bottom:340.333333pt;}
.y54{bottom:343.333333pt;}
.y12b{bottom:345.333333pt;}
.y3b{bottom:349.333333pt;}
.y14{bottom:350.333333pt;}
.y10c{bottom:352.333333pt;}
.ydd{bottom:355.333333pt;}
.y134{bottom:358.333333pt;}
.ybe{bottom:360.333333pt;}
.y2c{bottom:361.333333pt;}
.y88{bottom:365.373333pt;}
.yca{bottom:367.360000pt;}
.y12a{bottom:368.373333pt;}
.y70{bottom:370.360000pt;}
.y79{bottom:371.373333pt;}
.ya9{bottom:372.373333pt;}
.y112{bottom:373.360000pt;}
.y53{bottom:376.360000pt;}
.y3a{bottom:382.360000pt;}
.y10b{bottom:384.360000pt;}
.ydc{bottom:388.360000pt;}
.y129{bottom:390.360000pt;}
.y2b{bottom:393.360000pt;}
.y13{bottom:395.373333pt;}
.y87{bottom:397.360000pt;}
.ya2{bottom:398.400000pt;}
.yc9{bottom:400.400000pt;}
.yee{bottom:402.400000pt;}
.y6f{bottom:403.400000pt;}
.y78{bottom:404.400000pt;}
.y52{bottom:409.400000pt;}
.y128{bottom:413.400000pt;}
.y39{bottom:414.400000pt;}
.ya8{bottom:415.400000pt;}
.y101{bottom:417.400000pt;}
.ye8{bottom:420.400000pt;}
.yb4{bottom:425.400000pt;}
.y2a{bottom:426.400000pt;}
.y86{bottom:430.400000pt;}
.y10a{bottom:431.400000pt;}
.y13c{bottom:432.400000pt;}
.y6e{bottom:435.426667pt;}
.y77{bottom:436.440000pt;}
.y12{bottom:438.426667pt;}
.y51{bottom:441.426667pt;}
.y38{bottom:447.426667pt;}
.yaf{bottom:448.440000pt;}
.y100{bottom:449.440000pt;}
.ye7{bottom:453.426667pt;}
.y29{bottom:458.440000pt;}
.y85{bottom:462.426667pt;}
.yb8{bottom:463.440000pt;}
.y109{bottom:464.440000pt;}
.ydb{bottom:467.440000pt;}
.y6d{bottom:468.426667pt;}
.y76{bottom:469.466667pt;}
.ya1{bottom:474.466667pt;}
.y133{bottom:475.466667pt;}
.y5c{bottom:479.466667pt;}
.y37{bottom:480.466667pt;}
.y11{bottom:481.466667pt;}
.yf6{bottom:482.466667pt;}
.y50{bottom:484.466667pt;}
.yb3{bottom:490.466667pt;}
.y28{bottom:491.466667pt;}
.y84{bottom:495.466667pt;}
.yb7{bottom:496.466667pt;}
.yff{bottom:497.466667pt;}
.yda{bottom:500.466667pt;}
.y6c{bottom:501.466667pt;}
.y127{bottom:503.466667pt;}
.y154{bottom:505.506667pt;}
.y36{bottom:512.506667pt;}
.yae{bottom:513.506667pt;}
.y132{bottom:514.506667pt;}
.yed{bottom:515.506667pt;}
.ya0{bottom:517.506667pt;}
.y150{bottom:519.506667pt;}
.y9a{bottom:523.506667pt;}
.y10{bottom:524.506667pt;}
.y126{bottom:526.506667pt;}
.y4f{bottom:528.506667pt;}
.yfe{bottom:529.506667pt;}
.ye6{bottom:532.506667pt;}
.y6b{bottom:533.506667pt;}
.y27{bottom:534.506667pt;}
.y8f{bottom:543.533333pt;}
.y108{bottom:544.533333pt;}
.y35{bottom:545.533333pt;}
.yd9{bottom:547.533333pt;}
.y125{bottom:549.533333pt;}
.y131{bottom:553.533333pt;}
.yb2{bottom:555.533333pt;}
.y99{bottom:556.533333pt;}
.yc8{bottom:559.533333pt;}
.y83{bottom:560.533333pt;}
.yf5{bottom:562.533333pt;}
.y6a{bottom:566.533333pt;}
.y75{bottom:567.533333pt;}
.yf{bottom:568.533333pt;}
.yb6{bottom:571.533333pt;}
.y4e{bottom:575.533333pt;}
.yfd{bottom:576.560000pt;}
.y26{bottom:577.560000pt;}
.yc2{bottom:578.573333pt;}
.yd8{bottom:580.560000pt;}
.y13b{bottom:582.560000pt;}
.y34{bottom:588.560000pt;}
.yc7{bottom:592.560000pt;}
.y82{bottom:593.573333pt;}
.yec{bottom:594.560000pt;}
.y69{bottom:598.560000pt;}
.y74{bottom:599.573333pt;}
.yfc{bottom:609.560000pt;}
.y41{bottom:610.560000pt;}
.ye{bottom:611.600000pt;}
.ye5{bottom:612.600000pt;}
.y124{bottom:617.600000pt;}
.yb5{bottom:619.600000pt;}
.y25{bottom:620.600000pt;}
.y98{bottom:621.600000pt;}
.yc6{bottom:624.600000pt;}
.y81{bottom:625.600000pt;}
.yd7{bottom:627.600000pt;}
.y68{bottom:631.600000pt;}
.y73{bottom:632.600000pt;}
.y123{bottom:639.600000pt;}
.y48{bottom:642.600000pt;}
.y24{bottom:653.640000pt;}
.yd{bottom:654.626667pt;}
.yfb{bottom:656.640000pt;}
.y80{bottom:658.640000pt;}
.yd6{bottom:659.640000pt;}
.y13a{bottom:660.626667pt;}
.y122{bottom:662.640000pt;}
.y67{bottom:664.640000pt;}
.yc5{bottom:671.640000pt;}
.yeb{bottom:674.640000pt;}
.y47{bottom:675.640000pt;}
.y121{bottom:684.666667pt;}
.y23{bottom:686.666667pt;}
.yfa{bottom:689.666667pt;}
.y7f{bottom:690.666667pt;}
.yd5{bottom:692.666667pt;}
.yc{bottom:697.666667pt;}
.y139{bottom:699.666667pt;}
.yc4{bottom:704.666667pt;}
.y46{bottom:707.666667pt;}
.y130{bottom:710.666667pt;}
.y22{bottom:718.706667pt;}
.y97{bottom:719.706667pt;}
.yf9{bottom:721.706667pt;}
.y7e{bottom:723.706667pt;}
.ye4{bottom:725.706667pt;}
.y66{bottom:729.706667pt;}
.y120{bottom:730.706667pt;}
.y138{bottom:738.706667pt;}
.yd4{bottom:739.706667pt;}
.y45{bottom:740.706667pt;}
.yb{bottom:741.706667pt;}
.y12f{bottom:749.706667pt;}
.y21{bottom:751.706667pt;}
.yf4{bottom:754.733333pt;}
.y96{bottom:755.733333pt;}
.y65{bottom:762.733333pt;}
.y11f{bottom:763.733333pt;}
.yf8{bottom:769.733333pt;}
.y7d{bottom:771.733333pt;}
.ye3{bottom:772.733333pt;}
.y44{bottom:773.733333pt;}
.y137{bottom:777.733333pt;}
.y20{bottom:783.733333pt;}
.ya{bottom:784.733333pt;}
.yd3{bottom:786.733333pt;}
.y95{bottom:788.733333pt;}
.y64{bottom:794.773333pt;}
.yf7{bottom:801.773333pt;}
.y9f{bottom:803.773333pt;}
.y43{bottom:805.773333pt;}
.y11e{bottom:808.773333pt;}
.y1f{bottom:816.773333pt;}
.yd2{bottom:819.773333pt;}
.y9{bottom:827.800000pt;}
.y11d{bottom:831.800000pt;}
.yf3{bottom:834.800000pt;}
.y94{bottom:836.800000pt;}
.y42{bottom:838.800000pt;}
.y1e{bottom:848.800000pt;}
.y14d{bottom:852.800000pt;}
.y11c{bottom:854.800000pt;}
.y136{bottom:855.800000pt;}
.yb9{bottom:860.840000pt;}
.yd1{bottom:866.840000pt;}
.y8{bottom:870.840000pt;}
.y11b{bottom:876.840000pt;}
.y1d{bottom:881.840000pt;}
.y14b{bottom:897.866667pt;}
.yd0{bottom:899.866667pt;}
.y8e{bottom:903.866667pt;}
.y12e{bottom:905.866667pt;}
.y7{bottom:913.866667pt;}
.y11a{bottom:921.866667pt;}
.y119{bottom:944.893333pt;}
.y6{bottom:946.893333pt;}
.y1c{bottom:1015.653333pt;}
.h10{height:30.020000pt;}
.hd{height:31.033333pt;}
.h6{height:31.062500pt;}
.hc{height:38.009766pt;}
.ha{height:39.101562pt;}
.h9{height:43.857422pt;}
.h1{height:45.068359pt;}
.h3{height:45.144531pt;}
.h11{height:47.218750pt;}
.h2{height:52.001953pt;}
.h4{height:55.468750pt;}
.h7{height:55.562500pt;}
.hf{height:61.033333pt;}
.h8{height:65.066667pt;}
.hb{height:92.066667pt;}
.he{height:92.100000pt;}
.h5{height:287.891936pt;}
.h0{height:1056.000000pt;}
.w3{width:93.100000pt;}
.w4{width:103.133333pt;}
.w5{width:113.133333pt;}
.w6{width:289.373333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.000000pt;}
.x5{left:54.066642pt;}
.x3{left:63.066642pt;}
.x4{left:72.099988pt;}
.x1{left:96.133321pt;}
.xa{left:97.133333pt;}
.x6{left:100.453333pt;}
.x8{left:144.159988pt;}
.xc{left:191.240000pt;}
.xd{left:295.373333pt;}
.x11{left:330.399988pt;}
.x10{left:378.466655pt;}
.xe{left:408.506667pt;}
.xf{left:641.799988pt;}
.x9{left:704.866655pt;}
.x13{left:710.866655pt;}
.x2{left:712.866655pt;}
.x12{left:720.893321pt;}
.x7{left:786.440000pt;}
}




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