
    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_fb01d1b7dd8d9af37a922d69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.121000;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_1c7780042e031b29f3e81a53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_6505d6a7c00d5dfacba91806.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4f76b85a0d4640a585a0084b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_24feeab997cd38c476c37c6c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_9cf2b89158c275af53d23f3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.fff{font-family:fff;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.132000;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_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.121000;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_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.132000;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:ff14;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.121000;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:ff15;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.132000;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:ff16;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.121000;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:ff17;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.132000;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:ff18;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.121000;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:ff19;src:url('chunks/assets/font_1e220f4ce3eea2c53f201706.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.132000;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:ff1a;src:url('chunks/assets/font_077765d7d43911a0a95a9dc9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242497,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.439224px;}
.ls1a{letter-spacing:-0.384321px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008593px;}
.lsb{letter-spacing:0.008704px;}
.lsd{letter-spacing:0.009039px;}
.lse{letter-spacing:0.014842px;}
.ls8{letter-spacing:0.063942px;}
.ls1c{letter-spacing:0.188032px;}
.ls10{letter-spacing:0.214122px;}
.ls4{letter-spacing:0.247063px;}
.ls11{letter-spacing:0.342595px;}
.lsf{letter-spacing:0.385419px;}
.ls3{letter-spacing:0.395302px;}
.ls18{letter-spacing:0.428243px;}
.ls2{letter-spacing:0.444714px;}
.ls9{letter-spacing:0.471068px;}
.ls1{letter-spacing:0.592952px;}
.ls1b{letter-spacing:2.360829px;}
.ls17{letter-spacing:4.556948px;}
.ls5{letter-spacing:6.324824px;}
.ls13{letter-spacing:12.981991px;}
.ls12{letter-spacing:12.982549px;}
.lsc{letter-spacing:16.831337px;}
.ls16{letter-spacing:19.057029px;}
.ls14{letter-spacing:24.137229px;}
.ls15{letter-spacing:24.137787px;}
.ls7{letter-spacing:31.404511px;}
.ls6{letter-spacing:710.280099px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-13.725748px;}
.ws8{word-spacing:-12.797887px;}
.ws2{word-spacing:-12.600236px;}
.ws3{word-spacing:-11.177151px;}
.ws7{word-spacing:-11.134326px;}
.ws5{word-spacing:-11.091502px;}
.ws6{word-spacing:-11.048678px;}
.ws4{word-spacing:-10.920205px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-6.840734px;}
._13{margin-left:-5.633047px;}
._1c{margin-left:-3.624936px;}
._16{margin-left:-2.524980px;}
._1{margin-left:-1.372575px;}
._0{width:1.866702px;}
._5{width:3.843209px;}
._b{width:5.051075px;}
._c{width:6.313844px;}
._19{width:7.346020px;}
._7{width:9.058993px;}
._9{width:10.596277px;}
._11{width:11.694337px;}
._1a{width:13.309529px;}
._18{width:14.379093px;}
._d{width:16.207363px;}
._e{width:17.255809px;}
._a{width:18.721920px;}
._14{width:19.929786px;}
._20{width:21.027845px;}
._1d{width:22.125905px;}
._6{width:23.223965px;}
._1b{width:24.396693px;}
._1e{width:25.859309px;}
._f{width:27.830326px;}
._10{width:29.065643px;}
._17{width:30.471160px;}
._8{width:31.898637px;}
._21{width:32.996697px;}
._1f{width:34.369272px;}
._2{width:317.888092px;}
._4{width:710.280099px;}
._3{width:807.788145px;}
._15{width:808.940438px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.824333px;}
.fs3{font-size:45.020452px;}
.fs2{font-size:49.412691px;}
.fs0{font-size:50.216150px;}
.fs1{font-size:54.902990px;}
.y88{bottom:-0.274455px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.843420px;}
.y2{bottom:28.867033px;}
.y4{bottom:47.303055px;}
.ydf{bottom:104.402026px;}
.y12b{bottom:106.598285px;}
.y111{bottom:110.716009px;}
.y33{bottom:110.982294px;}
.yae{bottom:112.363099px;}
.yde{bottom:120.323893px;}
.y12a{bottom:122.245637px;}
.y32{bottom:125.262554px;}
.y110{bottom:126.363361px;}
.yad{bottom:128.284966px;}
.y63{bottom:132.380735px;}
.ydd{bottom:135.971245px;}
.y129{bottom:138.167504px;}
.y31{bottom:139.814594px;}
.y10f{bottom:142.285229px;}
.y62{bottom:146.661008px;}
.y1{bottom:148.500000px;}
.ydc{bottom:151.893112px;}
.y128{bottom:153.814857px;}
.y30{bottom:154.638401px;}
.yb1{bottom:156.823362px;}
.yac{bottom:157.658066px;}
.y10e{bottom:157.932581px;}
.y61{bottom:161.213090px;}
.y4a{bottom:165.194100px;}
.yed{bottom:167.540465px;}
.y127{bottom:169.736724px;}
.y2f{bottom:170.285754px;}
.yab{bottom:173.579933px;}
.y10d{bottom:173.854448px;}
.y60{bottom:175.765033px;}
.ydb{bottom:181.266212px;}
.yec{bottom:183.462332px;}
.y126{bottom:185.384076px;}
.y2e{bottom:186.207621px;}
.y10c{bottom:189.501800px;}
.y5f{bottom:190.045390px;}
.y5{bottom:192.234150px;}
.y112{bottom:194.717585px;}
.yda{bottom:197.188080px;}
.yeb{bottom:199.109684px;}
.y125{bottom:201.305943px;}
.y2d{bottom:201.854973px;}
.y5e{bottom:204.597333px;}
.y12e{bottom:204.880078px;}
.yd9{bottom:212.835432px;}
.yea{bottom:215.031551px;}
.yaa{bottom:216.678781px;}
.y149{bottom:216.953156px;}
.y2c{bottom:217.776840px;}
.ye2{bottom:218.607220px;}
.y5d{bottom:219.149415px;}
.y14c{bottom:222.174520px;}
.yd8{bottom:228.757299px;}
.y124{bottom:230.679043px;}
.ya9{bottom:232.600648px;}
.y2b{bottom:233.424193px;}
.y10b{bottom:234.796768px;}
.yd7{bottom:244.404651px;}
.y148{bottom:246.600771px;}
.y123{bottom:246.600910px;}
.y5c{bottom:246.875286px;}
.ya8{bottom:248.248000px;}
.y2a{bottom:249.346060px;}
.y10a{bottom:250.718635px;}
.yd6{bottom:260.326519px;}
.y147{bottom:262.248123px;}
.y122{bottom:262.248263px;}
.y5b{bottom:262.797153px;}
.ya7{bottom:264.169867px;}
.y29{bottom:264.993412px;}
.y109{bottom:266.365987px;}
.yd5{bottom:275.973871px;}
.y146{bottom:278.169990px;}
.y121{bottom:278.170130px;}
.y5a{bottom:278.444505px;}
.ya6{bottom:279.817220px;}
.y87{bottom:280.353600px;}
.y28{bottom:280.915280px;}
.y108{bottom:282.287854px;}
.yd4{bottom:291.895738px;}
.y145{bottom:293.817343px;}
.y120{bottom:293.817482px;}
.y59{bottom:294.366373px;}
.ya5{bottom:295.464572px;}
.y83{bottom:295.739087px;}
.y27{bottom:296.562632px;}
.y107{bottom:297.935207px;}
.y16e{bottom:305.621625px;}
.yd3{bottom:307.543090px;}
.y144{bottom:309.739210px;}
.y11f{bottom:309.739349px;}
.y58{bottom:310.013725px;}
.ya4{bottom:311.386439px;}
.y26{bottom:312.185294px;}
.y106{bottom:313.857074px;}
.y82{bottom:318.523828px;}
.y16d{bottom:321.268977px;}
.yd2{bottom:323.464958px;}
.y143{bottom:325.386562px;}
.y11e{bottom:325.386702px;}
.y57{bottom:325.935592px;}
.y25{bottom:326.465512px;}
.ya3{bottom:327.033791px;}
.y105{bottom:329.504426px;}
.y81{bottom:334.171180px;}
.yf0{bottom:334.721605px;}
.y16c{bottom:337.190845px;}
.yd1{bottom:339.112310px;}
.y24{bottom:341.017594px;}
.y142{bottom:341.308430px;}
.y11d{bottom:341.308569px;}
.y56{bottom:341.582944px;}
.ya2{bottom:342.955659px;}
.y12d{bottom:344.878658px;}
.y86{bottom:346.521563px;}
.y80{bottom:350.093047px;}
.y16b{bottom:352.838197px;}
.yd0{bottom:355.034177px;}
.y23{bottom:355.569677px;}
.y141{bottom:356.955782px;}
.y55{bottom:357.504812px;}
.y104{bottom:359.152041px;}
.y16a{bottom:368.760064px;}
.y22{bottom:370.121619px;}
.ycf{bottom:370.681529px;}
.y11c{bottom:370.681669px;}
.ya1{bottom:372.328759px;}
.y7f{bottom:372.603274px;}
.y140{bottom:372.877649px;}
.y54{bottom:373.152164px;}
.y103{bottom:374.799393px;}
.y21{bottom:384.401976px;}
.y169{bottom:384.407417px;}
.yce{bottom:386.603397px;}
.y11b{bottom:386.603536px;}
.ya0{bottom:388.250626px;}
.y13f{bottom:388.525001px;}
.y7e{bottom:388.525141px;}
.y53{bottom:389.074031px;}
.y102{bottom:390.721260px;}
.y20{bottom:398.953919px;}
.y168{bottom:400.329284px;}
.ycd{bottom:402.250749px;}
.y11a{bottom:402.250888px;}
.y9f{bottom:403.897978px;}
.y7d{bottom:404.172493px;}
.y13e{bottom:404.446869px;}
.y52{bottom:404.721383px;}
.y101{bottom:406.368613px;}
.y7c{bottom:410.262995px;}
.y1f{bottom:413.506001px;}
.y167{bottom:415.976636px;}
.ycc{bottom:418.172616px;}
.y119{bottom:418.172756px;}
.y9e{bottom:419.819845px;}
.y13d{bottom:420.094221px;}
.y51{bottom:420.643251px;}
.y100{bottom:422.290480px;}
.y14b{bottom:425.310144px;}
.y7b{bottom:425.910486px;}
.y1e{bottom:428.055294px;}
.y166{bottom:431.898503px;}
.ycb{bottom:433.819968px;}
.y118{bottom:433.820108px;}
.y9d{bottom:435.467198px;}
.y50{bottom:436.290603px;}
.ye1{bottom:437.394242px;}
.yff{bottom:437.937832px;}
.y1d{bottom:443.977161px;}
.y165{bottom:447.545856px;}
.yca{bottom:449.741836px;}
.y117{bottom:449.741975px;}
.y9c{bottom:451.389065px;}
.y4f{bottom:452.212470px;}
.yfe{bottom:453.859699px;}
.y1c{bottom:459.624513px;}
.ye9{bottom:463.467583px;}
.y164{bottom:463.467723px;}
.yc9{bottom:465.389188px;}
.y7a{bottom:465.389327px;}
.y9b{bottom:467.036417px;}
.y4d{bottom:467.087729px;}
.y4e{bottom:467.859822px;}
.yfd{bottom:469.507052px;}
.y1b{bottom:475.546381px;}
.ye8{bottom:479.114936px;}
.y163{bottom:479.115075px;}
.y79{bottom:481.036680px;}
.yc8{bottom:481.311055px;}
.y116{bottom:481.311195px;}
.y4c{bottom:482.735081px;}
.y9a{bottom:482.958284px;}
.yfc{bottom:485.428919px;}
.y1a{bottom:491.193733px;}
.ye7{bottom:495.036803px;}
.y162{bottom:495.036942px;}
.yc7{bottom:496.958407px;}
.y78{bottom:496.958547px;}
.y99{bottom:498.605637px;}
.y4b{bottom:498.656949px;}
.yfb{bottom:501.076271px;}
.yb0{bottom:502.168751px;}
.yef{bottom:506.294845px;}
.y19{bottom:507.115600px;}
.ye6{bottom:510.684155px;}
.y161{bottom:510.684295px;}
.y77{bottom:512.605899px;}
.y13c{bottom:512.880275px;}
.y115{bottom:512.880414px;}
.y98{bottom:514.527504px;}
.y18{bottom:522.762952px;}
.yc6{bottom:526.606022px;}
.y160{bottom:526.606162px;}
.y13b{bottom:528.527627px;}
.y76{bottom:528.527766px;}
.y97{bottom:530.174856px;}
.yfa{bottom:530.723886px;}
.y49{bottom:530.998401px;}
.y113{bottom:532.096461px;}
.y17{bottom:538.684820px;}
.yc5{bottom:542.253375px;}
.y15f{bottom:542.253514px;}
.y85{bottom:543.072874px;}
.y75{bottom:544.175119px;}
.y13a{bottom:544.449494px;}
.y96{bottom:546.096723px;}
.yf9{bottom:546.371238px;}
.y48{bottom:546.920268px;}
.y16{bottom:554.332172px;}
.yc4{bottom:558.175242px;}
.y114{bottom:558.175381px;}
.y139{bottom:560.096846px;}
.y74{bottom:560.096986px;}
.y16f{bottom:561.469561px;}
.y47{bottom:562.567621px;}
.y15{bottom:570.254039px;}
.yc3{bottom:573.822594px;}
.y95{bottom:575.469823px;}
.y73{bottom:575.744338px;}
.y138{bottom:576.018714px;}
.y46{bottom:578.489488px;}
.y14{bottom:585.901391px;}
.y15e{bottom:587.548481px;}
.yc2{bottom:589.744461px;}
.yf8{bottom:589.744601px;}
.y94{bottom:591.391690px;}
.y137{bottom:591.666066px;}
.y72{bottom:591.666205px;}
.y45{bottom:594.136840px;}
.y13{bottom:601.823259px;}
.y15d{bottom:603.470348px;}
.yc1{bottom:605.391814px;}
.yf7{bottom:605.391953px;}
.y93{bottom:607.039043px;}
.y71{bottom:607.313558px;}
.y136{bottom:607.587933px;}
.y44{bottom:610.058707px;}
.y12{bottom:617.470611px;}
.y15c{bottom:619.117701px;}
.yc0{bottom:621.313681px;}
.yf6{bottom:621.313820px;}
.y92{bottom:622.960910px;}
.y135{bottom:623.235285px;}
.y70{bottom:623.235425px;}
.y43{bottom:625.706060px;}
.y15b{bottom:635.039568px;}
.ybf{bottom:636.961033px;}
.y91{bottom:638.608262px;}
.y6f{bottom:638.882777px;}
.y134{bottom:639.157153px;}
.ye0{bottom:640.529867px;}
.y42{bottom:641.627927px;}
.y11{bottom:647.941771px;}
.y15a{bottom:650.686920px;}
.ybe{bottom:652.882900px;}
.y90{bottom:654.530130px;}
.y133{bottom:654.804505px;}
.y6e{bottom:654.804644px;}
.y41{bottom:657.275279px;}
.y14a{bottom:660.020429px;}
.ye5{bottom:666.608648px;}
.y159{bottom:666.608787px;}
.ybd{bottom:668.530253px;}
.y8f{bottom:670.177482px;}
.y6d{bottom:670.451997px;}
.y40{bottom:673.197146px;}
.ye4{bottom:682.256000px;}
.y158{bottom:682.256140px;}
.ybc{bottom:684.452120px;}
.y8e{bottom:686.099349px;}
.y6c{bottom:686.373864px;}
.y3f{bottom:688.844499px;}
.yaf{bottom:689.393389px;}
.y84{bottom:689.668043px;}
.y10{bottom:693.236738px;}
.ye3{bottom:698.177867px;}
.y157{bottom:698.178007px;}
.yf5{bottom:700.099472px;}
.y6b{bottom:702.021216px;}
.y3e{bottom:704.766366px;}
.yf{bottom:709.158605px;}
.ybb{bottom:713.825220px;}
.y156{bottom:713.825359px;}
.y8d{bottom:715.472449px;}
.yf4{bottom:716.021339px;}
.y6a{bottom:717.943083px;}
.y12c{bottom:719.315658px;}
.y3d{bottom:720.413718px;}
.ye{bottom:724.805957px;}
.yba{bottom:729.747087px;}
.y155{bottom:729.747226px;}
.yf3{bottom:731.668692px;}
.y69{bottom:733.590436px;}
.y3c{bottom:736.335585px;}
.yd{bottom:740.727825px;}
.yb9{bottom:745.394439px;}
.y154{bottom:745.394579px;}
.yf2{bottom:747.590559px;}
.y68{bottom:749.512303px;}
.y3b{bottom:751.982938px;}
.yc{bottom:756.375177px;}
.y8c{bottom:759.120326px;}
.yb8{bottom:761.316306px;}
.y153{bottom:761.316446px;}
.yf1{bottom:763.237911px;}
.y67{bottom:765.159655px;}
.y3a{bottom:767.904805px;}
.yee{bottom:768.453835px;}
.yb{bottom:772.297044px;}
.y8b{bottom:776.144438px;}
.yb7{bottom:776.963659px;}
.y152{bottom:776.963798px;}
.y132{bottom:779.159778px;}
.y66{bottom:781.081522px;}
.y39{bottom:783.552157px;}
.ya{bottom:787.944396px;}
.yb6{bottom:792.885526px;}
.y151{bottom:792.885665px;}
.y8a{bottom:793.434695px;}
.y131{bottom:794.807131px;}
.y65{bottom:796.728875px;}
.y38{bottom:799.185839px;}
.y9{bottom:803.866264px;}
.yb5{bottom:808.532878px;}
.y150{bottom:808.533018px;}
.y89{bottom:810.454622px;}
.y130{bottom:810.728998px;}
.y64{bottom:812.650742px;}
.y37{bottom:813.737782px;}
.y12f{bottom:815.670406px;}
.y8{bottom:819.513616px;}
.yb4{bottom:824.454745px;}
.y14f{bottom:824.454885px;}
.y36{bottom:828.018139px;}
.yb3{bottom:840.102098px;}
.y14e{bottom:840.102237px;}
.y7{bottom:842.298357px;}
.y35{bottom:842.570082px;}
.yb2{bottom:856.023965px;}
.y14d{bottom:856.024104px;}
.y34{bottom:857.122164px;}
.y3{bottom:904.887766px;}
.hf{height:11.253998px;}
.h5{height:16.196100px;}
.h9{height:33.488680px;}
.ha{height:34.309007px;}
.h7{height:37.209644px;}
.hb{height:38.121119px;}
.hd{height:39.502809px;}
.he{height:43.887542px;}
.h3{height:44.061729px;}
.h4{height:47.381281px;}
.h10{height:48.157418px;}
.h8{height:48.174157px;}
.h11{height:48.174715px;}
.h6{height:48.763935px;}
.hc{height:935.134950px;}
.h2{height:967.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:10.431010px;}
.w5{width:30.196650px;}
.w4{width:653.208900px;}
.w2{width:670.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:5.176178px;}
.xf{left:12.124351px;}
.xa{left:41.327891px;}
.x13{left:69.945406px;}
.x14{left:71.042322px;}
.xd{left:76.286701px;}
.xc{left:83.452410px;}
.x3{left:92.986500px;}
.x9{left:109.228495px;}
.x1{left:111.000000px;}
.xb{left:120.534090px;}
.x6{left:125.420442px;}
.x11{left:128.672244px;}
.xe{left:175.162350px;}
.x8{left:272.459717px;}
.x10{left:287.328161px;}
.x7{left:336.138119px;}
.x12{left:589.080632px;}
.x2{left:612.025785px;}
.x4{left:679.995000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.390421pt;}
.ls1a{letter-spacing:-0.341619pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007638pt;}
.lsb{letter-spacing:0.007737pt;}
.lsd{letter-spacing:0.008035pt;}
.lse{letter-spacing:0.013193pt;}
.ls8{letter-spacing:0.056837pt;}
.ls1c{letter-spacing:0.167139pt;}
.ls10{letter-spacing:0.190330pt;}
.ls4{letter-spacing:0.219612pt;}
.ls11{letter-spacing:0.304529pt;}
.lsf{letter-spacing:0.342595pt;}
.ls3{letter-spacing:0.351379pt;}
.ls18{letter-spacing:0.380661pt;}
.ls2{letter-spacing:0.395302pt;}
.ls9{letter-spacing:0.418727pt;}
.ls1{letter-spacing:0.527069pt;}
.ls1b{letter-spacing:2.098514pt;}
.ls17{letter-spacing:4.050621pt;}
.ls5{letter-spacing:5.622066pt;}
.ls13{letter-spacing:11.539547pt;}
.ls12{letter-spacing:11.540043pt;}
.lsc{letter-spacing:14.961189pt;}
.ls16{letter-spacing:16.939581pt;}
.ls14{letter-spacing:21.455315pt;}
.ls15{letter-spacing:21.455811pt;}
.ls7{letter-spacing:27.915120pt;}
.ls6{letter-spacing:631.360088pt;}
.ws0{word-spacing:-12.200665pt;}
.ws8{word-spacing:-11.375900pt;}
.ws2{word-spacing:-11.200210pt;}
.ws3{word-spacing:-9.935245pt;}
.ws7{word-spacing:-9.897179pt;}
.ws5{word-spacing:-9.859113pt;}
.ws6{word-spacing:-9.821047pt;}
.ws4{word-spacing:-9.706849pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-6.080653pt;}
._13{margin-left:-5.007153pt;}
._1c{margin-left:-3.222166pt;}
._16{margin-left:-2.244426pt;}
._1{margin-left:-1.220066pt;}
._0{width:1.659290pt;}
._5{width:3.416186pt;}
._b{width:4.489845pt;}
._c{width:5.612306pt;}
._19{width:6.529796pt;}
._7{width:8.052439pt;}
._9{width:9.418913pt;}
._11{width:10.394966pt;}
._1a{width:11.830693pt;}
._18{width:12.781416pt;}
._d{width:14.406545pt;}
._e{width:15.338497pt;}
._a{width:16.641706pt;}
._14{width:17.715365pt;}
._20{width:18.691418pt;}
._1d{width:19.667471pt;}
._6{width:20.643524pt;}
._1b{width:21.685949pt;}
._1e{width:22.986052pt;}
._f{width:24.738067pt;}
._10{width:25.836127pt;}
._17{width:27.085475pt;}
._8{width:28.354344pt;}
._21{width:29.330398pt;}
._1f{width:30.550464pt;}
._2{width:282.567192pt;}
._4{width:631.360088pt;}
._3{width:718.033907pt;}
._15{width:719.058167pt;}
.fs4{font-size:38.066073pt;}
.fs3{font-size:40.018180pt;}
.fs2{font-size:43.922392pt;}
.fs0{font-size:44.636578pt;}
.fs1{font-size:48.802658pt;}
.y88{bottom:-0.243960pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.416373pt;}
.y2{bottom:25.659585pt;}
.y4{bottom:42.047160pt;}
.ydf{bottom:92.801801pt;}
.y12b{bottom:94.754031pt;}
.y111{bottom:98.414230pt;}
.y33{bottom:98.650928pt;}
.yae{bottom:99.878310pt;}
.yde{bottom:106.954572pt;}
.y12a{bottom:108.662789pt;}
.y32{bottom:111.344492pt;}
.y110{bottom:112.322988pt;}
.yad{bottom:114.031081pt;}
.y63{bottom:117.671764pt;}
.ydd{bottom:120.863329pt;}
.y129{bottom:122.815559pt;}
.y31{bottom:124.279639pt;}
.y10f{bottom:126.475759pt;}
.y62{bottom:130.365341pt;}
.y1{bottom:132.000000pt;}
.ydc{bottom:135.016100pt;}
.y128{bottom:136.724317pt;}
.y30{bottom:137.456357pt;}
.yb1{bottom:139.398544pt;}
.yac{bottom:140.140503pt;}
.y10e{bottom:140.384516pt;}
.y61{bottom:143.300525pt;}
.y4a{bottom:146.839200pt;}
.yed{bottom:148.924858pt;}
.y127{bottom:150.877088pt;}
.y2f{bottom:151.365114pt;}
.yab{bottom:154.293274pt;}
.y10d{bottom:154.537287pt;}
.y60{bottom:156.235585pt;}
.ydb{bottom:161.125522pt;}
.yec{bottom:163.077628pt;}
.y126{bottom:164.785845pt;}
.y2e{bottom:165.517885pt;}
.y10c{bottom:168.446045pt;}
.y5f{bottom:168.929236pt;}
.y5{bottom:170.874800pt;}
.y112{bottom:173.082297pt;}
.yda{bottom:175.278293pt;}
.yeb{bottom:176.986386pt;}
.y125{bottom:178.938616pt;}
.y2d{bottom:179.426643pt;}
.y5e{bottom:181.864296pt;}
.y12e{bottom:182.115625pt;}
.yd9{bottom:189.187051pt;}
.yea{bottom:191.139157pt;}
.yaa{bottom:192.603361pt;}
.y149{bottom:192.847250pt;}
.y2c{bottom:193.579414pt;}
.ye2{bottom:194.317529pt;}
.y5d{bottom:194.799480pt;}
.y14c{bottom:197.488462pt;}
.yd8{bottom:203.339821pt;}
.y124{bottom:205.048038pt;}
.ya9{bottom:206.756131pt;}
.y2b{bottom:207.488171pt;}
.y10b{bottom:208.708238pt;}
.yd7{bottom:217.248579pt;}
.y148{bottom:219.200685pt;}
.y123{bottom:219.200809pt;}
.y5c{bottom:219.444699pt;}
.ya8{bottom:220.664889pt;}
.y2a{bottom:221.640942pt;}
.y10a{bottom:222.861009pt;}
.yd6{bottom:231.401350pt;}
.y147{bottom:233.109443pt;}
.y122{bottom:233.109567pt;}
.y5b{bottom:233.597469pt;}
.ya7{bottom:234.817660pt;}
.y29{bottom:235.549700pt;}
.y109{bottom:236.769766pt;}
.yd5{bottom:245.310107pt;}
.y146{bottom:247.262214pt;}
.y121{bottom:247.262338pt;}
.y5a{bottom:247.506227pt;}
.ya6{bottom:248.726418pt;}
.y87{bottom:249.203200pt;}
.y28{bottom:249.702471pt;}
.y108{bottom:250.922537pt;}
.yd4{bottom:259.462878pt;}
.y145{bottom:261.170971pt;}
.y120{bottom:261.171095pt;}
.y59{bottom:261.658998pt;}
.ya5{bottom:262.635175pt;}
.y83{bottom:262.879188pt;}
.y27{bottom:263.611228pt;}
.y107{bottom:264.831295pt;}
.y16e{bottom:271.663667pt;}
.yd3{bottom:273.371636pt;}
.y144{bottom:275.323742pt;}
.y11f{bottom:275.323866pt;}
.y58{bottom:275.567756pt;}
.ya4{bottom:276.787946pt;}
.y26{bottom:277.498040pt;}
.y106{bottom:278.984066pt;}
.y82{bottom:283.132292pt;}
.y16d{bottom:285.572424pt;}
.yd2{bottom:287.524407pt;}
.y143{bottom:289.232500pt;}
.y11e{bottom:289.232624pt;}
.y57{bottom:289.720526pt;}
.y25{bottom:290.191566pt;}
.ya3{bottom:290.696704pt;}
.y105{bottom:292.892823pt;}
.y81{bottom:297.041049pt;}
.yf0{bottom:297.530316pt;}
.y16c{bottom:299.725195pt;}
.yd1{bottom:301.433164pt;}
.y24{bottom:303.126751pt;}
.y142{bottom:303.385271pt;}
.y11d{bottom:303.385395pt;}
.y56{bottom:303.629284pt;}
.ya2{bottom:304.849474pt;}
.y12d{bottom:306.558807pt;}
.y86{bottom:308.019167pt;}
.y80{bottom:311.193820pt;}
.y16b{bottom:313.633953pt;}
.yd0{bottom:315.585935pt;}
.y23{bottom:316.061935pt;}
.y141{bottom:317.294028pt;}
.y55{bottom:317.782055pt;}
.y104{bottom:319.246259pt;}
.y16a{bottom:327.786724pt;}
.y22{bottom:328.996995pt;}
.ycf{bottom:329.494693pt;}
.y11c{bottom:329.494817pt;}
.ya1{bottom:330.958897pt;}
.y7f{bottom:331.202910pt;}
.y140{bottom:331.446799pt;}
.y54{bottom:331.690812pt;}
.y103{bottom:333.155016pt;}
.y21{bottom:341.690646pt;}
.y169{bottom:341.695481pt;}
.yce{bottom:343.647464pt;}
.y11b{bottom:343.647588pt;}
.ya0{bottom:345.111667pt;}
.y13f{bottom:345.355557pt;}
.y7e{bottom:345.355681pt;}
.y53{bottom:345.843583pt;}
.y102{bottom:347.307787pt;}
.y20{bottom:354.625706pt;}
.y168{bottom:355.848252pt;}
.ycd{bottom:357.556221pt;}
.y11a{bottom:357.556345pt;}
.y9f{bottom:359.020425pt;}
.y7d{bottom:359.264438pt;}
.y13e{bottom:359.508328pt;}
.y52{bottom:359.752341pt;}
.y101{bottom:361.216545pt;}
.y7c{bottom:364.678217pt;}
.y1f{bottom:367.560890pt;}
.y167{bottom:369.757010pt;}
.ycc{bottom:371.708992pt;}
.y119{bottom:371.709116pt;}
.y9e{bottom:373.173196pt;}
.y13d{bottom:373.417085pt;}
.y51{bottom:373.905112pt;}
.y100{bottom:375.369315pt;}
.y14b{bottom:378.053462pt;}
.y7b{bottom:378.587099pt;}
.y1e{bottom:380.493595pt;}
.y166{bottom:383.909781pt;}
.ycb{bottom:385.617750pt;}
.y118{bottom:385.617874pt;}
.y9d{bottom:387.081953pt;}
.y50{bottom:387.813869pt;}
.ye1{bottom:388.794882pt;}
.yff{bottom:389.278073pt;}
.y1d{bottom:394.646365pt;}
.y165{bottom:397.818538pt;}
.yca{bottom:399.770521pt;}
.y117{bottom:399.770645pt;}
.y9c{bottom:401.234724pt;}
.y4f{bottom:401.966640pt;}
.yfe{bottom:403.430844pt;}
.y1c{bottom:408.555123pt;}
.ye9{bottom:411.971185pt;}
.y164{bottom:411.971309pt;}
.yc9{bottom:413.679278pt;}
.y7a{bottom:413.679402pt;}
.y9b{bottom:415.143482pt;}
.y4d{bottom:415.189093pt;}
.y4e{bottom:415.875398pt;}
.yfd{bottom:417.339602pt;}
.y1b{bottom:422.707894pt;}
.ye8{bottom:425.879943pt;}
.y163{bottom:425.880067pt;}
.y79{bottom:427.588160pt;}
.yc8{bottom:427.832049pt;}
.y116{bottom:427.832173pt;}
.y4c{bottom:429.097850pt;}
.y9a{bottom:429.296253pt;}
.yfc{bottom:431.492372pt;}
.y1a{bottom:436.616651pt;}
.ye7{bottom:440.032714pt;}
.y162{bottom:440.032838pt;}
.yc7{bottom:441.740807pt;}
.y78{bottom:441.740931pt;}
.y99{bottom:443.205010pt;}
.y4b{bottom:443.250621pt;}
.yfb{bottom:445.401130pt;}
.yb0{bottom:446.372224pt;}
.yef{bottom:450.039862pt;}
.y19{bottom:450.769422pt;}
.ye6{bottom:453.941471pt;}
.y161{bottom:453.941595pt;}
.y77{bottom:455.649688pt;}
.y13c{bottom:455.893577pt;}
.y115{bottom:455.893701pt;}
.y98{bottom:457.357781pt;}
.y18{bottom:464.678180pt;}
.yc6{bottom:468.094242pt;}
.y160{bottom:468.094366pt;}
.y13b{bottom:469.802335pt;}
.y76{bottom:469.802459pt;}
.y97{bottom:471.266539pt;}
.yfa{bottom:471.754565pt;}
.y49{bottom:471.998579pt;}
.y113{bottom:472.974632pt;}
.y17{bottom:478.830951pt;}
.yc5{bottom:482.003000pt;}
.y15f{bottom:482.003124pt;}
.y85{bottom:482.731444pt;}
.y75{bottom:483.711217pt;}
.y13a{bottom:483.955106pt;}
.y96{bottom:485.419310pt;}
.yf9{bottom:485.663323pt;}
.y48{bottom:486.151350pt;}
.y16{bottom:492.739708pt;}
.yc4{bottom:496.155770pt;}
.y114{bottom:496.155894pt;}
.y139{bottom:497.863864pt;}
.y74{bottom:497.863988pt;}
.y16f{bottom:499.084054pt;}
.y47{bottom:500.060107pt;}
.y15{bottom:506.892479pt;}
.yc3{bottom:510.064528pt;}
.y95{bottom:511.528732pt;}
.y73{bottom:511.772745pt;}
.y138{bottom:512.016634pt;}
.y46{bottom:514.212878pt;}
.y14{bottom:520.801237pt;}
.y15e{bottom:522.265317pt;}
.yc2{bottom:524.217299pt;}
.yf8{bottom:524.217423pt;}
.y94{bottom:525.681503pt;}
.y137{bottom:525.925392pt;}
.y72{bottom:525.925516pt;}
.y45{bottom:528.121636pt;}
.y13{bottom:534.954008pt;}
.y15d{bottom:536.418087pt;}
.yc1{bottom:538.126057pt;}
.yf7{bottom:538.126180pt;}
.y93{bottom:539.590260pt;}
.y71{bottom:539.834274pt;}
.y136{bottom:540.078163pt;}
.y44{bottom:542.274406pt;}
.y12{bottom:548.862765pt;}
.y15c{bottom:550.326845pt;}
.yc0{bottom:552.278827pt;}
.yf6{bottom:552.278951pt;}
.y92{bottom:553.743031pt;}
.y135{bottom:553.986920pt;}
.y70{bottom:553.987044pt;}
.y43{bottom:556.183164pt;}
.y15b{bottom:564.479616pt;}
.ybf{bottom:566.187585pt;}
.y91{bottom:567.651789pt;}
.y6f{bottom:567.895802pt;}
.y134{bottom:568.139691pt;}
.ye0{bottom:569.359882pt;}
.y42{bottom:570.335935pt;}
.y11{bottom:575.948241pt;}
.y15a{bottom:578.388373pt;}
.ybe{bottom:580.340356pt;}
.y90{bottom:581.804560pt;}
.y133{bottom:582.048449pt;}
.y6e{bottom:582.048573pt;}
.y41{bottom:584.244692pt;}
.y14a{bottom:586.684825pt;}
.ye5{bottom:592.541020pt;}
.y159{bottom:592.541144pt;}
.ybd{bottom:594.249113pt;}
.y8f{bottom:595.713317pt;}
.y6d{bottom:595.957330pt;}
.y40{bottom:598.397463pt;}
.ye4{bottom:606.449778pt;}
.y158{bottom:606.449902pt;}
.ybc{bottom:608.401884pt;}
.y8e{bottom:609.866088pt;}
.y6c{bottom:610.110101pt;}
.y3f{bottom:612.306221pt;}
.yaf{bottom:612.794124pt;}
.y84{bottom:613.038261pt;}
.y10{bottom:616.210434pt;}
.ye3{bottom:620.602549pt;}
.y157{bottom:620.602673pt;}
.yf5{bottom:622.310642pt;}
.y6b{bottom:624.018859pt;}
.y3e{bottom:626.458992pt;}
.yf{bottom:630.363204pt;}
.ybb{bottom:634.511306pt;}
.y156{bottom:634.511430pt;}
.y8d{bottom:635.975510pt;}
.yf4{bottom:636.463413pt;}
.y6a{bottom:638.171630pt;}
.y12c{bottom:639.391696pt;}
.y3d{bottom:640.367749pt;}
.ye{bottom:644.271962pt;}
.yba{bottom:648.664077pt;}
.y155{bottom:648.664201pt;}
.yf3{bottom:650.372170pt;}
.y69{bottom:652.080387pt;}
.y3c{bottom:654.520520pt;}
.yd{bottom:658.424733pt;}
.yb9{bottom:662.572835pt;}
.y154{bottom:662.572959pt;}
.yf2{bottom:664.524941pt;}
.y68{bottom:666.233158pt;}
.y3b{bottom:668.429278pt;}
.yc{bottom:672.333490pt;}
.y8c{bottom:674.773623pt;}
.yb8{bottom:676.725606pt;}
.y153{bottom:676.725730pt;}
.yf1{bottom:678.433699pt;}
.y67{bottom:680.141916pt;}
.y3a{bottom:682.582049pt;}
.yee{bottom:683.070075pt;}
.yb{bottom:686.486261pt;}
.y8b{bottom:689.906167pt;}
.yb7{bottom:690.634363pt;}
.y152{bottom:690.634487pt;}
.y132{bottom:692.586470pt;}
.y66{bottom:694.294687pt;}
.y39{bottom:696.490806pt;}
.ya{bottom:700.395019pt;}
.yb6{bottom:704.787134pt;}
.y151{bottom:704.787258pt;}
.y8a{bottom:705.275285pt;}
.y131{bottom:706.495227pt;}
.y65{bottom:708.203444pt;}
.y38{bottom:710.387413pt;}
.y9{bottom:714.547790pt;}
.yb5{bottom:718.695892pt;}
.y150{bottom:718.696016pt;}
.y89{bottom:720.404109pt;}
.y130{bottom:720.647998pt;}
.y64{bottom:722.356215pt;}
.y37{bottom:723.322473pt;}
.y12f{bottom:725.040361pt;}
.y8{bottom:728.456547pt;}
.yb4{bottom:732.848663pt;}
.y14f{bottom:732.848787pt;}
.y36{bottom:736.016124pt;}
.yb3{bottom:746.757420pt;}
.y14e{bottom:746.757544pt;}
.y7{bottom:748.709651pt;}
.y35{bottom:748.951184pt;}
.yb2{bottom:760.910191pt;}
.y14d{bottom:760.910315pt;}
.y34{bottom:761.886368pt;}
.y3{bottom:804.344681pt;}
.hf{height:10.003553pt;}
.h5{height:14.396533pt;}
.h9{height:29.767715pt;}
.ha{height:30.496895pt;}
.h7{height:33.075239pt;}
.hb{height:33.885439pt;}
.hd{height:35.113608pt;}
.he{height:39.011148pt;}
.h3{height:39.165981pt;}
.h4{height:42.116694pt;}
.h10{height:42.806594pt;}
.h8{height:42.821473pt;}
.h11{height:42.821969pt;}
.h6{height:43.345720pt;}
.hc{height:831.231067pt;}
.h2{height:860.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:9.272009pt;}
.w5{width:26.841467pt;}
.w4{width:580.630133pt;}
.w2{width:596.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:4.601047pt;}
.xf{left:10.777201pt;}
.xa{left:36.735903pt;}
.x13{left:62.173694pt;}
.x14{left:63.148730pt;}
.xd{left:67.810401pt;}
.xc{left:74.179920pt;}
.x3{left:82.654667pt;}
.x9{left:97.091996pt;}
.x1{left:98.666667pt;}
.xb{left:107.141413pt;}
.x6{left:111.484837pt;}
.x11{left:114.375328pt;}
.xe{left:155.699867pt;}
.x8{left:242.186415pt;}
.x10{left:255.402810pt;}
.x7{left:298.789439pt;}
.x12{left:523.627228pt;}
.x2{left:544.022920pt;}
.x4{left:604.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; }
  