
    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_77990bcb40fcd973080575ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_dec6b804445e5a1b16b040dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.899000;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_e1302968e83dc18987fc7fbf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d147a04153b23f2871a9c4b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_8112b52ae56214247c2ad24a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_6d56e42611a83078a3ee3c54.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cc4a584d00698b29970e6b10.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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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_bd87d3469f7d9751cc8a1605.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_18ae063d93588c6c8eda8d05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.000000;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.fff{font-family:fff;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909180;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_2a2a8b5c5c35d2d34bc9de76.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909180;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-2.376000px;}
.ls1e{letter-spacing:-2.016000px;}
.lsb{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.053400px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.142620px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.179520px;}
.ls17{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.298095px;}
.ls11{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.361380px;}
.lsa{letter-spacing:0.504480px;}
.ls20{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.719520px;}
.ls0{letter-spacing:0.721860px;}
.ls9{letter-spacing:1.439040px;}
.ls1b{letter-spacing:2.160960px;}
.ls8{letter-spacing:3.600000px;}
.ls7{letter-spacing:4.319520px;}
.ls6{letter-spacing:5.039040px;}
.ls1a{letter-spacing:6.480480px;}
.lse{letter-spacing:7.200000px;}
.lsd{letter-spacing:7.919520px;}
.lsf{letter-spacing:8.039040px;}
.lsc{letter-spacing:16.560960px;}
.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;}
}
.ws1{word-spacing:-43.320000px;}
.wse{word-spacing:-18.648000px;}
.ws9{word-spacing:-18.360000px;}
.wsa{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.984000px;}
.wsd{word-spacing:-15.624000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-4.679602px;}
._7{margin-left:-3.108771px;}
._4{margin-left:-2.082082px;}
._0{margin-left:-1.010730px;}
._2{width:1.172622px;}
._1{width:2.210730px;}
._8{width:3.487530px;}
._3{width:5.326966px;}
._5{width:7.198508px;}
._6{width:9.047265px;}
._c{width:10.292904px;}
._d{width:11.369871px;}
._15{width:12.942392px;}
._17{width:14.051169px;}
._11{width:15.119496px;}
._12{width:16.750483px;}
._f{width:20.449885px;}
._10{width:22.671297px;}
._e{width:24.262848px;}
._9{width:26.711947px;}
._a{width:27.723245px;}
._19{width:34.051301px;}
._18{width:35.208778px;}
._16{width:40.605954px;}
._13{width:51.480988px;}
._14{width:52.624914px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:3.236700px;}
.y25{bottom:3.238500px;}
.yd1{bottom:4.677000px;}
.ybd{bottom:4.679550px;}
.yd3{bottom:4.680150px;}
.yc1{bottom:4.680300px;}
.yb9{bottom:5.400000px;}
.yb7{bottom:8.460000px;}
.ybb{bottom:13.320000px;}
.ybf{bottom:13.500000px;}
.y27{bottom:21.236700px;}
.yd0{bottom:21.957450px;}
.ybc{bottom:21.960000px;}
.yc0{bottom:22.140000px;}
.y26{bottom:27.486900px;}
.ycf{bottom:39.237900px;}
.yce{bottom:56.518350px;}
.yc7{bottom:56.520450px;}
.ycd{bottom:73.798800px;}
.yc6{bottom:73.800300px;}
.yc3{bottom:82.440000px;}
.ycc{bottom:91.079250px;}
.yc5{bottom:91.080150px;}
.ycb{bottom:108.179250px;}
.yc4{bottom:108.360000px;}
.y23{bottom:118.838550px;}
.y17d{bottom:119.013900px;}
.y70{bottom:119.016300px;}
.ye2{bottom:119.196450px;}
.y143{bottom:122.255850px;}
.y15e{bottom:124.957200px;}
.yca{bottom:125.459700px;}
.y4f{bottom:125.495700px;}
.y11a{bottom:125.497500px;}
.y127{bottom:125.497950px;}
.y91{bottom:131.255400px;}
.yb2{bottom:131.257650px;}
.y1ac{bottom:137.017650px;}
.yc9{bottom:142.740150px;}
.y22{bottom:142.778850px;}
.ye1{bottom:142.956150px;}
.yfe{bottom:143.493750px;}
.y19c{bottom:148.716750px;}
.y15d{bottom:148.717500px;}
.y4e{bottom:149.255400px;}
.y119{bottom:149.257200px;}
.y126{bottom:149.257650px;}
.y90{bottom:155.009250px;}
.yb1{bottom:155.011500px;}
.yc8{bottom:160.020000px;}
.y17c{bottom:160.947750px;}
.y6f{bottom:160.950150px;}
.y1ab{bottom:160.951500px;}
.y142{bottom:164.009700px;}
.y21{bottom:166.532700px;}
.ye0{bottom:166.890600px;}
.yfd{bottom:167.247600px;}
.y4d{bottom:173.009250px;}
.y118{bottom:173.011050px;}
.y125{bottom:173.011500px;}
.y8f{bottom:178.949550px;}
.y17b{bottom:184.707450px;}
.y6e{bottom:184.710450px;}
.y1aa{bottom:184.711200px;}
.y141{bottom:187.770000px;}
.y20{bottom:190.292400px;}
.y19b{bottom:190.470600px;}
.y15c{bottom:190.471350px;}
.ydf{bottom:190.650300px;}
.yfc{bottom:191.007300px;}
.y4c{bottom:196.949550px;}
.y117{bottom:196.951350px;}
.yb0{bottom:196.951800px;}
.y8e{bottom:202.709250px;}
.y17a{bottom:208.467750px;}
.y6d{bottom:208.470750px;}
.y1a9{bottom:208.471500px;}
.y140{bottom:211.529700px;}
.y1f{bottom:214.052100px;}
.y19a{bottom:214.230300px;}
.y15b{bottom:214.231050px;}
.y4b{bottom:220.709250px;}
.yaf{bottom:220.711500px;}
.y6c{bottom:232.230450px;}
.y1a8{bottom:232.231200px;}
.yde{bottom:232.410000px;}
.yfb{bottom:232.947600px;}
.y13f{bottom:235.470000px;}
.y1e{bottom:237.992400px;}
.y199{bottom:238.170600px;}
.y15a{bottom:238.171350px;}
.y116{bottom:238.711050px;}
.y124{bottom:238.711500px;}
.y4a{bottom:244.469550px;}
.yae{bottom:244.471800px;}
.y179{bottom:250.227450px;}
.y6b{bottom:256.170750px;}
.yfa{bottom:256.707300px;}
.y13e{bottom:259.229700px;}
.y1d{bottom:261.752100px;}
.y198{bottom:261.930300px;}
.y115{bottom:262.471350px;}
.y123{bottom:262.471800px;}
.y8d{bottom:268.229250px;}
.y49{bottom:268.229850px;}
.ydd{bottom:271.110000px;}
.y178{bottom:274.212750px;}
.y1a7{bottom:274.216500px;}
.y159{bottom:279.976200px;}
.yf9{bottom:280.512750px;}
.y1c{bottom:285.556950px;}
.y197{bottom:285.735150px;}
.y114{bottom:286.276200px;}
.yad{bottom:286.276650px;}
.ydc{bottom:288.615000px;}
.y8c{bottom:292.214550px;}
.y177{bottom:297.972450px;}
.y6a{bottom:297.975600px;}
.y1a6{bottom:297.976200px;}
.y13d{bottom:301.034550px;}
.y158{bottom:303.735900px;}
.yf8{bottom:304.272450px;}
.y1b{bottom:309.317250px;}
.y1b7{bottom:309.495450px;}
.y48{bottom:310.215150px;}
.yac{bottom:310.216350px;}
.y113{bottom:310.216500px;}
.y122{bottom:310.216950px;}
.y8b{bottom:315.974250px;}
.y69{bottom:321.735300px;}
.y1a5{bottom:321.735900px;}
.ydb{bottom:326.955000px;}
.y196{bottom:327.495450px;}
.y157{bottom:327.495600px;}
.yf7{bottom:328.212750px;}
.y1a{bottom:333.256950px;}
.y47{bottom:333.975450px;}
.y112{bottom:333.976200px;}
.y121{bottom:333.977250px;}
.y176{bottom:339.732150px;}
.y8a{bottom:339.733950px;}
.y13c{bottom:342.794850px;}
.y68{bottom:345.495600px;}
.y1a4{bottom:345.496200px;}
.y195{bottom:351.435150px;}
.y156{bottom:351.435300px;}
.yf6{bottom:351.973050px;}
.yab{bottom:351.976050px;}
.y19{bottom:357.017250px;}
.y46{bottom:357.735750px;}
.y111{bottom:357.735900px;}
.y175{bottom:363.492450px;}
.yda{bottom:365.115000px;}
.y13b{bottom:366.734550px;}
.y67{bottom:369.435300px;}
.y1a3{bottom:369.435900px;}
.y194{bottom:375.195450px;}
.yf5{bottom:375.733350px;}
.y120{bottom:375.736950px;}
.y18{bottom:380.776950px;}
.y89{bottom:381.494250px;}
.y110{bottom:381.495600px;}
.y45{bottom:381.496050px;}
.y13a{bottom:390.494850px;}
.y66{bottom:393.195600px;}
.yaa{bottom:393.735750px;}
.y1b6{bottom:398.955150px;}
.y11f{bottom:399.497250px;}
.yd9{bottom:403.455000px;}
.y17{bottom:404.536650px;}
.y174{bottom:405.432150px;}
.y88{bottom:405.433950px;}
.y10f{bottom:405.435300px;}
.y44{bottom:405.435750px;}
.y1a2{bottom:411.196200px;}
.y139{bottom:414.255150px;}
.y193{bottom:416.955150px;}
.y155{bottom:416.955300px;}
.yf4{bottom:417.493650px;}
.ya9{bottom:417.496050px;}
.y1b5{bottom:422.715450px;}
.y11e{bottom:423.436950px;}
.y173{bottom:429.192450px;}
.y87{bottom:429.194250px;}
.y43{bottom:429.196050px;}
.y65{bottom:434.955300px;}
.y1a1{bottom:434.955900px;}
.y138{bottom:438.015450px;}
.y192{bottom:440.715450px;}
.yf3{bottom:441.433350px;}
.ya8{bottom:441.435750px;}
.yd8{bottom:441.615000px;}
.y16{bottom:446.296950px;}
.y10e{bottom:447.195600px;}
.y11d{bottom:447.196650px;}
.y86{bottom:452.953950px;}
.y64{bottom:458.715600px;}
.y1a0{bottom:458.716200px;}
.y191{bottom:464.655150px;}
.yf2{bottom:465.193650px;}
.ya7{bottom:465.196050px;}
.y172{bottom:470.952150px;}
.y10d{bottom:470.955300px;}
.y42{bottom:470.955750px;}
.y11c{bottom:470.956350px;}
.yd7{bottom:479.955000px;}
.y137{bottom:479.955150px;}
.y154{bottom:482.655300px;}
.y19f{bottom:482.655900px;}
.y15{bottom:488.236650px;}
.y1b4{bottom:488.415450px;}
.yf1{bottom:488.953950px;}
.y171{bottom:494.712450px;}
.y85{bottom:494.714250px;}
.y10c{bottom:494.715000px;}
.y41{bottom:494.716050px;}
.y63{bottom:500.655300px;}
.y136{bottom:503.715450px;}
.y190{bottom:506.415450px;}
.y153{bottom:506.415600px;}
.ya6{bottom:506.955750px;}
.yf0{bottom:512.714250px;}
.yd6{bottom:518.115000px;}
.y170{bottom:518.652150px;}
.y84{bottom:518.653950px;}
.y10b{bottom:518.654700px;}
.y40{bottom:518.655750px;}
.y62{bottom:524.415600px;}
.y135{bottom:527.475150px;}
.y14{bottom:529.996950px;}
.y18f{bottom:530.175150px;}
.y152{bottom:530.175300px;}
.ya5{bottom:530.716050px;}
.yef{bottom:536.653950px;}
.y16f{bottom:542.412450px;}
.y83{bottom:542.414250px;}
.y10a{bottom:542.415000px;}
.y3f{bottom:542.416050px;}
.y61{bottom:548.175300px;}
.y134{bottom:551.235450px;}
.y13{bottom:553.756650px;}
.y1b3{bottom:553.934850px;}
.y151{bottom:553.935000px;}
.ya4{bottom:554.655750px;}
.yd5{bottom:556.485000px;}
.yee{bottom:560.444250px;}
.y109{bottom:566.204700px;}
.y3e{bottom:566.205750px;}
.y18e{bottom:571.965450px;}
.y19e{bottom:571.965600px;}
.y133{bottom:575.025750px;}
.y12{bottom:577.546950px;}
.ya3{bottom:578.446050px;}
.y16e{bottom:584.202150px;}
.y82{bottom:584.203950px;}
.y11b{bottom:584.205750px;}
.y108{bottom:589.964400px;}
.y3d{bottom:589.965450px;}
.y60{bottom:589.965600px;}
.yd4{bottom:594.645000px;}
.y18d{bottom:595.725150px;}
.y150{bottom:595.725300px;}
.y11{bottom:601.486650px;}
.ya2{bottom:602.205750px;}
.y16d{bottom:607.962450px;}
.y81{bottom:607.964250px;}
.y107{bottom:613.724100px;}
.y3c{bottom:613.725150px;}
.y5f{bottom:613.725300px;}
.y132{bottom:616.966050px;}
.y18c{bottom:619.665450px;}
.y14f{bottom:619.665600px;}
.y10{bottom:625.246350px;}
.yed{bottom:625.964250px;}
.ya1{bottom:625.966050px;}
.y16c{bottom:631.722750px;}
.y80{bottom:631.723950px;}
.yd2{bottom:632.985000px;}
.y106{bottom:637.664400px;}
.y3b{bottom:637.665450px;}
.y5e{bottom:637.665600px;}
.y18b{bottom:643.425150px;}
.y14e{bottom:643.425300px;}
.yec{bottom:649.723950px;}
.ya0{bottom:649.725750px;}
.y16b{bottom:655.663050px;}
.y7f{bottom:655.664250px;}
.y131{bottom:655.666050px;}
.y105{bottom:661.424700px;}
.yf{bottom:667.006050px;}
.y18a{bottom:667.184850px;}
.y14d{bottom:667.185000px;}
.yc2{bottom:671.145000px;}
.yeb{bottom:673.664250px;}
.y9f{bottom:673.666050px;}
.y16a{bottom:679.422750px;}
.y7e{bottom:679.424550px;}
.y3a{bottom:679.425150px;}
.y5d{bottom:679.425300px;}
.y130{bottom:679.425750px;}
.y1b2{bottom:685.184850px;}
.y104{bottom:685.185000px;}
.y189{bottom:690.945150px;}
.y14c{bottom:690.945300px;}
.yea{bottom:697.424550px;}
.y9e{bottom:697.425750px;}
.y169{bottom:703.182450px;}
.y5c{bottom:703.185600px;}
.y12f{bottom:703.186050px;}
.ye{bottom:708.766350px;}
.y1b1{bottom:708.945150px;}
.y103{bottom:708.945300px;}
.y188{bottom:714.884850px;}
.y7d{bottom:721.184250px;}
.y39{bottom:721.184850px;}
.y9d{bottom:721.185450px;}
.y5b{bottom:726.945900px;}
.y12e{bottom:726.946350px;}
.y14b{bottom:732.885000px;}
.y187{bottom:738.645150px;}
.y168{bottom:744.942750px;}
.y7c{bottom:744.944550px;}
.y38{bottom:744.945150px;}
.y9c{bottom:744.945750px;}
.yd{bottom:747.466350px;}
.y1b0{bottom:750.884850px;}
.y102{bottom:750.885000px;}
.y5a{bottom:750.885600px;}
.y12d{bottom:750.886050px;}
.y14a{bottom:756.645300px;}
.y167{bottom:768.883050px;}
.y7b{bottom:768.884850px;}
.y37{bottom:768.885450px;}
.y9b{bottom:768.886050px;}
.y1af{bottom:774.645150px;}
.y101{bottom:774.645300px;}
.y59{bottom:774.645900px;}
.y186{bottom:780.404850px;}
.y149{bottom:780.405000px;}
.yc{bottom:789.406050px;}
.y166{bottom:792.642750px;}
.y7a{bottom:792.644550px;}
.y36{bottom:792.645150px;}
.y12c{bottom:792.646350px;}
.y1ae{bottom:798.404850px;}
.y58{bottom:798.405600px;}
.y185{bottom:804.165150px;}
.y148{bottom:804.165300px;}
.ye9{bottom:810.645150px;}
.y9a{bottom:810.645750px;}
.yb{bottom:813.166350px;}
.y165{bottom:816.403050px;}
.y79{bottom:816.404250px;}
.y35{bottom:816.404850px;}
.y12b{bottom:816.406050px;}
.y19d{bottom:822.165300px;}
.y57{bottom:822.165900px;}
.y184{bottom:828.104850px;}
.ye8{bottom:834.404850px;}
.y99{bottom:834.405450px;}
.y164{bottom:840.208500px;}
.y78{bottom:840.209700px;}
.y34{bottom:840.210300px;}
.y12a{bottom:840.211500px;}
.y147{bottom:846.150000px;}
.y100{bottom:846.150600px;}
.ybe{bottom:847.410000px;}
.y183{bottom:851.909700px;}
.ya{bottom:854.971200px;}
.ye7{bottom:858.210300px;}
.y98{bottom:858.210900px;}
.y77{bottom:864.149400px;}
.y33{bottom:864.150000px;}
.y56{bottom:864.150600px;}
.y129{bottom:864.151200px;}
.y146{bottom:869.909700px;}
.y182{bottom:875.670000px;}
.y9{bottom:878.730900px;}
.y163{bottom:882.148200px;}
.ye6{bottom:882.150000px;}
.y97{bottom:882.150600px;}
.yba{bottom:885.750000px;}
.y1ad{bottom:887.909700px;}
.y55{bottom:887.910300px;}
.y145{bottom:893.670000px;}
.y8{bottom:902.671200px;}
.y162{bottom:905.908500px;}
.y76{bottom:905.909100px;}
.y32{bottom:905.909700px;}
.y96{bottom:905.910300px;}
.y128{bottom:905.910900px;}
.y54{bottom:911.670000px;}
.yff{bottom:911.670600px;}
.y181{bottom:917.429700px;}
.yb8{bottom:923.910000px;}
.y7{bottom:926.430900px;}
.y161{bottom:929.668800px;}
.y31{bottom:929.670000px;}
.y95{bottom:929.670600px;}
.y53{bottom:935.429700px;}
.y180{bottom:941.370000px;}
.y75{bottom:947.669400px;}
.yb6{bottom:948.390000px;}
.y6{bottom:950.190600px;}
.y160{bottom:953.429100px;}
.y30{bottom:953.429700px;}
.y94{bottom:953.430300px;}
.y144{bottom:959.370000px;}
.y17f{bottom:965.129700px;}
.y74{bottom:971.429100px;}
.ye5{bottom:971.430300px;}
.y5{bottom:973.950300px;}
.y15f{bottom:977.369400px;}
.y2f{bottom:977.370000px;}
.y93{bottom:977.370600px;}
.yb5{bottom:983.129700px;}
.y17e{bottom:988.890000px;}
.y73{bottom:995.369400px;}
.ye4{bottom:995.370600px;}
.y4{bottom:997.890600px;}
.y2e{bottom:1001.129700px;}
.y92{bottom:1001.130300px;}
.yb4{bottom:1006.890000px;}
.y72{bottom:1019.129700px;}
.ye3{bottom:1019.130300px;}
.y2d{bottom:1024.890000px;}
.yb3{bottom:1030.649700px;}
.y3{bottom:1039.650300px;}
.y71{bottom:1042.890000px;}
.y52{bottom:1048.649700px;}
.y2c{bottom:1066.649700px;}
.y51{bottom:1072.590000px;}
.y2{bottom:1081.410000px;}
.y2b{bottom:1090.590000px;}
.y50{bottom:1096.349700px;}
.y2a{bottom:1114.349700px;}
.y1{bottom:1120.110000px;}
.y29{bottom:1138.140000px;}
.y24{bottom:1199.092500px;}
.h8{height:16.500000px;}
.hc{height:23.760300px;}
.hb{height:30.059700px;}
.ha{height:36.300000px;}
.h13{height:37.439700px;}
.he{height:37.440300px;}
.h14{height:37.619550px;}
.h11{height:37.620150px;}
.hf{height:41.114880px;}
.h10{height:41.522695px;}
.h9{height:41.660156px;}
.hd{height:48.761719px;}
.h6{height:49.392000px;}
.h7{height:49.536000px;}
.h4{height:49.570313px;}
.h2{height:49.968000px;}
.h3{height:49.992188px;}
.h5{height:50.027344px;}
.h12{height:175.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.168350px;}
.w7{width:83.879850px;}
.w9{width:218.370000px;}
.w8{width:318.315000px;}
.w6{width:622.005000px;}
.w5{width:622.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xb{left:17.994000px;}
.xc{left:22.314000px;}
.x11{left:26.814000px;}
.x10{left:32.040000px;}
.xe{left:129.285000px;}
.x4{left:134.856300px;}
.x2{left:157.170000px;}
.x14{left:173.009700px;}
.x17{left:190.109850px;}
.xa{left:191.370000px;}
.x9{left:204.690240px;}
.x6{left:216.210255px;}
.xd{left:220.170000px;}
.x16{left:253.649835px;}
.x1{left:259.230000px;}
.x5{left:294.510255px;}
.x15{left:387.975825px;}
.x3{left:407.235000px;}
.x13{left:409.395000px;}
.x7{left:412.995255px;}
.x8{left:421.906500px;}
.xf{left:539.205000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-2.112000pt;}
.ls1e{letter-spacing:-1.792000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.047467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.126773pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.159573pt;}
.ls17{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.264974pt;}
.ls11{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.321227pt;}
.lsa{letter-spacing:0.448427pt;}
.ls20{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.639573pt;}
.ls0{letter-spacing:0.641653pt;}
.ls9{letter-spacing:1.279147pt;}
.ls1b{letter-spacing:1.920853pt;}
.ls8{letter-spacing:3.200000pt;}
.ls7{letter-spacing:3.839573pt;}
.ls6{letter-spacing:4.479147pt;}
.ls1a{letter-spacing:5.760427pt;}
.lse{letter-spacing:6.400000pt;}
.lsd{letter-spacing:7.039573pt;}
.lsf{letter-spacing:7.145813pt;}
.lsc{letter-spacing:14.720853pt;}
.ws1{word-spacing:-38.506667pt;}
.wse{word-spacing:-16.576000pt;}
.ws9{word-spacing:-16.320000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.208000pt;}
.wsd{word-spacing:-13.888000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-4.159646pt;}
._7{margin-left:-2.763352pt;}
._4{margin-left:-1.850740pt;}
._0{margin-left:-0.898426pt;}
._2{width:1.042331pt;}
._1{width:1.965093pt;}
._8{width:3.100027pt;}
._3{width:4.735081pt;}
._5{width:6.398674pt;}
._6{width:8.042013pt;}
._c{width:9.149248pt;}
._d{width:10.106552pt;}
._15{width:11.504349pt;}
._17{width:12.489928pt;}
._11{width:13.439552pt;}
._12{width:14.889318pt;}
._f{width:18.177676pt;}
._10{width:20.152264pt;}
._e{width:21.566976pt;}
._9{width:23.743953pt;}
._a{width:24.642885pt;}
._19{width:30.267823pt;}
._18{width:31.296691pt;}
._16{width:36.094182pt;}
._13{width:45.760878pt;}
._14{width:46.777702pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.877067pt;}
.y25{bottom:2.878667pt;}
.yd1{bottom:4.157333pt;}
.ybd{bottom:4.159600pt;}
.yd3{bottom:4.160133pt;}
.yc1{bottom:4.160267pt;}
.yb9{bottom:4.800000pt;}
.yb7{bottom:7.520000pt;}
.ybb{bottom:11.840000pt;}
.ybf{bottom:12.000000pt;}
.y27{bottom:18.877067pt;}
.yd0{bottom:19.517733pt;}
.ybc{bottom:19.520000pt;}
.yc0{bottom:19.680000pt;}
.y26{bottom:24.432800pt;}
.ycf{bottom:34.878133pt;}
.yce{bottom:50.238533pt;}
.yc7{bottom:50.240400pt;}
.ycd{bottom:65.598933pt;}
.yc6{bottom:65.600267pt;}
.yc3{bottom:73.280000pt;}
.ycc{bottom:80.959333pt;}
.yc5{bottom:80.960133pt;}
.ycb{bottom:96.159333pt;}
.yc4{bottom:96.320000pt;}
.y23{bottom:105.634267pt;}
.y17d{bottom:105.790133pt;}
.y70{bottom:105.792267pt;}
.ye2{bottom:105.952400pt;}
.y143{bottom:108.671867pt;}
.y15e{bottom:111.073067pt;}
.yca{bottom:111.519733pt;}
.y4f{bottom:111.551733pt;}
.y11a{bottom:111.553333pt;}
.y127{bottom:111.553733pt;}
.y91{bottom:116.671467pt;}
.yb2{bottom:116.673467pt;}
.y1ac{bottom:121.793467pt;}
.yc9{bottom:126.880133pt;}
.y22{bottom:126.914533pt;}
.ye1{bottom:127.072133pt;}
.yfe{bottom:127.550000pt;}
.y19c{bottom:132.192667pt;}
.y15d{bottom:132.193333pt;}
.y4e{bottom:132.671467pt;}
.y119{bottom:132.673067pt;}
.y126{bottom:132.673467pt;}
.y90{bottom:137.786000pt;}
.yb1{bottom:137.788000pt;}
.yc8{bottom:142.240000pt;}
.y17c{bottom:143.064667pt;}
.y6f{bottom:143.066800pt;}
.y1ab{bottom:143.068000pt;}
.y142{bottom:145.786400pt;}
.y21{bottom:148.029067pt;}
.ye0{bottom:148.347200pt;}
.yfd{bottom:148.664533pt;}
.y4d{bottom:153.786000pt;}
.y118{bottom:153.787600pt;}
.y125{bottom:153.788000pt;}
.y8f{bottom:159.066267pt;}
.y17b{bottom:164.184400pt;}
.y6e{bottom:164.187067pt;}
.y1aa{bottom:164.187733pt;}
.y141{bottom:166.906667pt;}
.y20{bottom:169.148800pt;}
.y19b{bottom:169.307200pt;}
.y15c{bottom:169.307867pt;}
.ydf{bottom:169.466933pt;}
.yfc{bottom:169.784267pt;}
.y4c{bottom:175.066267pt;}
.y117{bottom:175.067867pt;}
.yb0{bottom:175.068267pt;}
.y8e{bottom:180.186000pt;}
.y17a{bottom:185.304667pt;}
.y6d{bottom:185.307333pt;}
.y1a9{bottom:185.308000pt;}
.y140{bottom:188.026400pt;}
.y1f{bottom:190.268533pt;}
.y19a{bottom:190.426933pt;}
.y15b{bottom:190.427600pt;}
.y4b{bottom:196.186000pt;}
.yaf{bottom:196.188000pt;}
.y6c{bottom:206.427067pt;}
.y1a8{bottom:206.427733pt;}
.yde{bottom:206.586667pt;}
.yfb{bottom:207.064533pt;}
.y13f{bottom:209.306667pt;}
.y1e{bottom:211.548800pt;}
.y199{bottom:211.707200pt;}
.y15a{bottom:211.707867pt;}
.y116{bottom:212.187600pt;}
.y124{bottom:212.188000pt;}
.y4a{bottom:217.306267pt;}
.yae{bottom:217.308267pt;}
.y179{bottom:222.424400pt;}
.y6b{bottom:227.707333pt;}
.yfa{bottom:228.184267pt;}
.y13e{bottom:230.426400pt;}
.y1d{bottom:232.668533pt;}
.y198{bottom:232.826933pt;}
.y115{bottom:233.307867pt;}
.y123{bottom:233.308267pt;}
.y8d{bottom:238.426000pt;}
.y49{bottom:238.426533pt;}
.ydd{bottom:240.986667pt;}
.y178{bottom:243.744667pt;}
.y1a7{bottom:243.748000pt;}
.y159{bottom:248.867733pt;}
.yf9{bottom:249.344667pt;}
.y1c{bottom:253.828400pt;}
.y197{bottom:253.986800pt;}
.y114{bottom:254.467733pt;}
.yad{bottom:254.468133pt;}
.ydc{bottom:256.546667pt;}
.y8c{bottom:259.746267pt;}
.y177{bottom:264.864400pt;}
.y6a{bottom:264.867200pt;}
.y1a6{bottom:264.867733pt;}
.y13d{bottom:267.586267pt;}
.y158{bottom:269.987467pt;}
.yf8{bottom:270.464400pt;}
.y1b{bottom:274.948667pt;}
.y1b7{bottom:275.107067pt;}
.y48{bottom:275.746800pt;}
.yac{bottom:275.747867pt;}
.y113{bottom:275.748000pt;}
.y122{bottom:275.748400pt;}
.y8b{bottom:280.866000pt;}
.y69{bottom:285.986933pt;}
.y1a5{bottom:285.987467pt;}
.ydb{bottom:290.626667pt;}
.y196{bottom:291.107067pt;}
.y157{bottom:291.107200pt;}
.yf7{bottom:291.744667pt;}
.y1a{bottom:296.228400pt;}
.y47{bottom:296.867067pt;}
.y112{bottom:296.867733pt;}
.y121{bottom:296.868667pt;}
.y176{bottom:301.984133pt;}
.y8a{bottom:301.985733pt;}
.y13c{bottom:304.706533pt;}
.y68{bottom:307.107200pt;}
.y1a4{bottom:307.107733pt;}
.y195{bottom:312.386800pt;}
.y156{bottom:312.386933pt;}
.yf6{bottom:312.864933pt;}
.yab{bottom:312.867600pt;}
.y19{bottom:317.348667pt;}
.y46{bottom:317.987333pt;}
.y111{bottom:317.987467pt;}
.y175{bottom:323.104400pt;}
.yda{bottom:324.546667pt;}
.y13b{bottom:325.986267pt;}
.y67{bottom:328.386933pt;}
.y1a3{bottom:328.387467pt;}
.y194{bottom:333.507067pt;}
.yf5{bottom:333.985200pt;}
.y120{bottom:333.988400pt;}
.y18{bottom:338.468400pt;}
.y89{bottom:339.106000pt;}
.y110{bottom:339.107200pt;}
.y45{bottom:339.107600pt;}
.y13a{bottom:347.106533pt;}
.y66{bottom:349.507200pt;}
.yaa{bottom:349.987333pt;}
.y1b6{bottom:354.626800pt;}
.y11f{bottom:355.108667pt;}
.yd9{bottom:358.626667pt;}
.y17{bottom:359.588133pt;}
.y174{bottom:360.384133pt;}
.y88{bottom:360.385733pt;}
.y10f{bottom:360.386933pt;}
.y44{bottom:360.387333pt;}
.y1a2{bottom:365.507733pt;}
.y139{bottom:368.226800pt;}
.y193{bottom:370.626800pt;}
.y155{bottom:370.626933pt;}
.yf4{bottom:371.105467pt;}
.ya9{bottom:371.107600pt;}
.y1b5{bottom:375.747067pt;}
.y11e{bottom:376.388400pt;}
.y173{bottom:381.504400pt;}
.y87{bottom:381.506000pt;}
.y43{bottom:381.507600pt;}
.y65{bottom:386.626933pt;}
.y1a1{bottom:386.627467pt;}
.y138{bottom:389.347067pt;}
.y192{bottom:391.747067pt;}
.yf3{bottom:392.385200pt;}
.ya8{bottom:392.387333pt;}
.yd8{bottom:392.546667pt;}
.y16{bottom:396.708400pt;}
.y10e{bottom:397.507200pt;}
.y11d{bottom:397.508133pt;}
.y86{bottom:402.625733pt;}
.y64{bottom:407.747200pt;}
.y1a0{bottom:407.747733pt;}
.y191{bottom:413.026800pt;}
.yf2{bottom:413.505467pt;}
.ya7{bottom:413.507600pt;}
.y172{bottom:418.624133pt;}
.y10d{bottom:418.626933pt;}
.y42{bottom:418.627333pt;}
.y11c{bottom:418.627867pt;}
.yd7{bottom:426.626667pt;}
.y137{bottom:426.626800pt;}
.y154{bottom:429.026933pt;}
.y19f{bottom:429.027467pt;}
.y15{bottom:433.988133pt;}
.y1b4{bottom:434.147067pt;}
.yf1{bottom:434.625733pt;}
.y171{bottom:439.744400pt;}
.y85{bottom:439.746000pt;}
.y10c{bottom:439.746667pt;}
.y41{bottom:439.747600pt;}
.y63{bottom:445.026933pt;}
.y136{bottom:447.747067pt;}
.y190{bottom:450.147067pt;}
.y153{bottom:450.147200pt;}
.ya6{bottom:450.627333pt;}
.yf0{bottom:455.746000pt;}
.yd6{bottom:460.546667pt;}
.y170{bottom:461.024133pt;}
.y84{bottom:461.025733pt;}
.y10b{bottom:461.026400pt;}
.y40{bottom:461.027333pt;}
.y62{bottom:466.147200pt;}
.y135{bottom:468.866800pt;}
.y14{bottom:471.108400pt;}
.y18f{bottom:471.266800pt;}
.y152{bottom:471.266933pt;}
.ya5{bottom:471.747600pt;}
.yef{bottom:477.025733pt;}
.y16f{bottom:482.144400pt;}
.y83{bottom:482.146000pt;}
.y10a{bottom:482.146667pt;}
.y3f{bottom:482.147600pt;}
.y61{bottom:487.266933pt;}
.y134{bottom:489.987067pt;}
.y13{bottom:492.228133pt;}
.y1b3{bottom:492.386533pt;}
.y151{bottom:492.386667pt;}
.ya4{bottom:493.027333pt;}
.yd5{bottom:494.653333pt;}
.yee{bottom:498.172667pt;}
.y109{bottom:503.293067pt;}
.y3e{bottom:503.294000pt;}
.y18e{bottom:508.413733pt;}
.y19e{bottom:508.413867pt;}
.y133{bottom:511.134000pt;}
.y12{bottom:513.375067pt;}
.ya3{bottom:514.174267pt;}
.y16e{bottom:519.290800pt;}
.y82{bottom:519.292400pt;}
.y11b{bottom:519.294000pt;}
.y108{bottom:524.412800pt;}
.y3d{bottom:524.413733pt;}
.y60{bottom:524.413867pt;}
.yd4{bottom:528.573333pt;}
.y18d{bottom:529.533467pt;}
.y150{bottom:529.533600pt;}
.y11{bottom:534.654800pt;}
.ya2{bottom:535.294000pt;}
.y16d{bottom:540.411067pt;}
.y81{bottom:540.412667pt;}
.y107{bottom:545.532533pt;}
.y3c{bottom:545.533467pt;}
.y5f{bottom:545.533600pt;}
.y132{bottom:548.414267pt;}
.y18c{bottom:550.813733pt;}
.y14f{bottom:550.813867pt;}
.y10{bottom:555.774533pt;}
.yed{bottom:556.412667pt;}
.ya1{bottom:556.414267pt;}
.y16c{bottom:561.531333pt;}
.y80{bottom:561.532400pt;}
.yd2{bottom:562.653333pt;}
.y106{bottom:566.812800pt;}
.y3b{bottom:566.813733pt;}
.y5e{bottom:566.813867pt;}
.y18b{bottom:571.933467pt;}
.y14e{bottom:571.933600pt;}
.yec{bottom:577.532400pt;}
.ya0{bottom:577.534000pt;}
.y16b{bottom:582.811600pt;}
.y7f{bottom:582.812667pt;}
.y131{bottom:582.814267pt;}
.y105{bottom:587.933067pt;}
.yf{bottom:592.894267pt;}
.y18a{bottom:593.053200pt;}
.y14d{bottom:593.053333pt;}
.yc2{bottom:596.573333pt;}
.yeb{bottom:598.812667pt;}
.y9f{bottom:598.814267pt;}
.y16a{bottom:603.931333pt;}
.y7e{bottom:603.932933pt;}
.y3a{bottom:603.933467pt;}
.y5d{bottom:603.933600pt;}
.y130{bottom:603.934000pt;}
.y1b2{bottom:609.053200pt;}
.y104{bottom:609.053333pt;}
.y189{bottom:614.173467pt;}
.y14c{bottom:614.173600pt;}
.yea{bottom:619.932933pt;}
.y9e{bottom:619.934000pt;}
.y169{bottom:625.051067pt;}
.y5c{bottom:625.053867pt;}
.y12f{bottom:625.054267pt;}
.ye{bottom:630.014533pt;}
.y1b1{bottom:630.173467pt;}
.y103{bottom:630.173600pt;}
.y188{bottom:635.453200pt;}
.y7d{bottom:641.052667pt;}
.y39{bottom:641.053200pt;}
.y9d{bottom:641.053733pt;}
.y5b{bottom:646.174133pt;}
.y12e{bottom:646.174533pt;}
.y14b{bottom:651.453333pt;}
.y187{bottom:656.573467pt;}
.y168{bottom:662.171333pt;}
.y7c{bottom:662.172933pt;}
.y38{bottom:662.173467pt;}
.y9c{bottom:662.174000pt;}
.yd{bottom:664.414533pt;}
.y1b0{bottom:667.453200pt;}
.y102{bottom:667.453333pt;}
.y5a{bottom:667.453867pt;}
.y12d{bottom:667.454267pt;}
.y14a{bottom:672.573600pt;}
.y167{bottom:683.451600pt;}
.y7b{bottom:683.453200pt;}
.y37{bottom:683.453733pt;}
.y9b{bottom:683.454267pt;}
.y1af{bottom:688.573467pt;}
.y101{bottom:688.573600pt;}
.y59{bottom:688.574133pt;}
.y186{bottom:693.693200pt;}
.y149{bottom:693.693333pt;}
.yc{bottom:701.694267pt;}
.y166{bottom:704.571333pt;}
.y7a{bottom:704.572933pt;}
.y36{bottom:704.573467pt;}
.y12c{bottom:704.574533pt;}
.y1ae{bottom:709.693200pt;}
.y58{bottom:709.693867pt;}
.y185{bottom:714.813467pt;}
.y148{bottom:714.813600pt;}
.ye9{bottom:720.573467pt;}
.y9a{bottom:720.574000pt;}
.yb{bottom:722.814533pt;}
.y165{bottom:725.691600pt;}
.y79{bottom:725.692667pt;}
.y35{bottom:725.693200pt;}
.y12b{bottom:725.694267pt;}
.y19d{bottom:730.813600pt;}
.y57{bottom:730.814133pt;}
.y184{bottom:736.093200pt;}
.ye8{bottom:741.693200pt;}
.y99{bottom:741.693733pt;}
.y164{bottom:746.852000pt;}
.y78{bottom:746.853067pt;}
.y34{bottom:746.853600pt;}
.y12a{bottom:746.854667pt;}
.y147{bottom:752.133333pt;}
.y100{bottom:752.133867pt;}
.ybe{bottom:753.253333pt;}
.y183{bottom:757.253067pt;}
.ya{bottom:759.974400pt;}
.ye7{bottom:762.853600pt;}
.y98{bottom:762.854133pt;}
.y77{bottom:768.132800pt;}
.y33{bottom:768.133333pt;}
.y56{bottom:768.133867pt;}
.y129{bottom:768.134400pt;}
.y146{bottom:773.253067pt;}
.y182{bottom:778.373333pt;}
.y9{bottom:781.094133pt;}
.y163{bottom:784.131733pt;}
.ye6{bottom:784.133333pt;}
.y97{bottom:784.133867pt;}
.yba{bottom:787.333333pt;}
.y1ad{bottom:789.253067pt;}
.y55{bottom:789.253600pt;}
.y145{bottom:794.373333pt;}
.y8{bottom:802.374400pt;}
.y162{bottom:805.252000pt;}
.y76{bottom:805.252533pt;}
.y32{bottom:805.253067pt;}
.y96{bottom:805.253600pt;}
.y128{bottom:805.254133pt;}
.y54{bottom:810.373333pt;}
.yff{bottom:810.373867pt;}
.y181{bottom:815.493067pt;}
.yb8{bottom:821.253333pt;}
.y7{bottom:823.494133pt;}
.y161{bottom:826.372267pt;}
.y31{bottom:826.373333pt;}
.y95{bottom:826.373867pt;}
.y53{bottom:831.493067pt;}
.y180{bottom:836.773333pt;}
.y75{bottom:842.372800pt;}
.yb6{bottom:843.013333pt;}
.y6{bottom:844.613867pt;}
.y160{bottom:847.492533pt;}
.y30{bottom:847.493067pt;}
.y94{bottom:847.493600pt;}
.y144{bottom:852.773333pt;}
.y17f{bottom:857.893067pt;}
.y74{bottom:863.492533pt;}
.ye5{bottom:863.493600pt;}
.y5{bottom:865.733600pt;}
.y15f{bottom:868.772800pt;}
.y2f{bottom:868.773333pt;}
.y93{bottom:868.773867pt;}
.yb5{bottom:873.893067pt;}
.y17e{bottom:879.013333pt;}
.y73{bottom:884.772800pt;}
.ye4{bottom:884.773867pt;}
.y4{bottom:887.013867pt;}
.y2e{bottom:889.893067pt;}
.y92{bottom:889.893600pt;}
.yb4{bottom:895.013333pt;}
.y72{bottom:905.893067pt;}
.ye3{bottom:905.893600pt;}
.y2d{bottom:911.013333pt;}
.yb3{bottom:916.133067pt;}
.y3{bottom:924.133600pt;}
.y71{bottom:927.013333pt;}
.y52{bottom:932.133067pt;}
.y2c{bottom:948.133067pt;}
.y51{bottom:953.413333pt;}
.y2{bottom:961.253333pt;}
.y2b{bottom:969.413333pt;}
.y50{bottom:974.533067pt;}
.y2a{bottom:990.533067pt;}
.y1{bottom:995.653333pt;}
.y29{bottom:1011.680000pt;}
.y24{bottom:1065.860000pt;}
.h8{height:14.666667pt;}
.hc{height:21.120267pt;}
.hb{height:26.719733pt;}
.ha{height:32.266667pt;}
.h13{height:33.279733pt;}
.he{height:33.280267pt;}
.h14{height:33.439600pt;}
.h11{height:33.440133pt;}
.hf{height:36.546560pt;}
.h10{height:36.909063pt;}
.h9{height:37.031250pt;}
.hd{height:43.343750pt;}
.h6{height:43.904000pt;}
.h7{height:44.032000pt;}
.h4{height:44.062500pt;}
.h2{height:44.416000pt;}
.h3{height:44.437500pt;}
.h5{height:44.468750pt;}
.h12{height:156.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:43.705200pt;}
.w7{width:74.559867pt;}
.w9{width:194.106667pt;}
.w8{width:282.946667pt;}
.w6{width:552.893333pt;}
.w5{width:553.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xb{left:15.994667pt;}
.xc{left:19.834667pt;}
.x11{left:23.834667pt;}
.x10{left:28.480000pt;}
.xe{left:114.920000pt;}
.x4{left:119.872267pt;}
.x2{left:139.706667pt;}
.x14{left:153.786400pt;}
.x17{left:168.986533pt;}
.xa{left:170.106667pt;}
.x9{left:181.946880pt;}
.x6{left:192.186893pt;}
.xd{left:195.706667pt;}
.x16{left:225.466520pt;}
.x1{left:230.426667pt;}
.x5{left:261.786893pt;}
.x15{left:344.867400pt;}
.x3{left:361.986667pt;}
.x13{left:363.906667pt;}
.x7{left:367.106893pt;}
.x8{left:375.028000pt;}
.xf{left:479.293333pt;}
}




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