
    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_138d319abd78e3ef180d0eb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bcb47748dff34457ca411f33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8f2d84a578a5d93c9f462560.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_084eb554ce49c2a37d8fe14a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980957;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_4f94c124b264dfe4d62629da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_f15d46cf9bbd47d00768159a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_bcdd5d76a33fd49c9d06e568.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_e48017cc2faf55c3916d4478.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_407914a7a51ccdce42de2fab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_05e366504b684e0b52adb744.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_198549d91a07caac73aa14c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_db1689e8383af08cc4a397f1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_d613bc72b535a00f694dda34.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b2daeb48cc7ca9f8e0412049.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0e6b0b566f03c4ab34ad48da.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942383;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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;}
.v1{vertical-align:18.000000px;}
.ls3{letter-spacing:-2.976000px;}
.ls1{letter-spacing:-0.417600px;}
.ls20{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.116400px;}
.ls9{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.100200px;}
.ls8{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.037440px;}
.ls17{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.073440px;}
.ls1d{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.306600px;}
.lsf{letter-spacing:0.311760px;}
.ls15{letter-spacing:0.312000px;}
.lsa{letter-spacing:0.409680px;}
.ls1f{letter-spacing:0.413400px;}
.ls1a{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.666720px;}
.ls14{letter-spacing:1.026000px;}
.lse{letter-spacing:51.240000px;}
.lsb{letter-spacing:54.018720px;}
.lsd{letter-spacing:62.760000px;}
.lsc{letter-spacing:64.734240px;}
.ls4{letter-spacing:70.848000px;}
.ls6{letter-spacing:90.288000px;}
.ls7{letter-spacing:100.368000px;}
.ls5{letter-spacing:104.664000px;}
.ls22{letter-spacing:170.658720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-87.120000px;}
.ws19{word-spacing:-72.000000px;}
.wsf{word-spacing:-59.760000px;}
.ws4{word-spacing:-37.913760px;}
.ws5{word-spacing:-34.937760px;}
.ws8{word-spacing:-21.641760px;}
.ws3{word-spacing:-19.572720px;}
.wsc{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.639280px;}
.ws10{word-spacing:-17.225280px;}
.ws18{word-spacing:-17.026680px;}
.wse{word-spacing:-16.919880px;}
.ws17{word-spacing:-16.819680px;}
.ws12{word-spacing:-16.666560px;}
.wsa{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.513080px;}
.wsb{word-spacing:-16.506480px;}
.ws15{word-spacing:-16.353480px;}
.wsd{word-spacing:-16.272000px;}
.ws1a{word-spacing:-15.984000px;}
.ws1b{word-spacing:-15.264000px;}
.ws6{word-spacing:-10.808640px;}
.ws16{word-spacing:-10.800000px;}
.ws1{word-spacing:-0.087120px;}
.ws7{word-spacing:0.000000px;}
.ws0{word-spacing:1.075680px;}
.ws14{word-spacing:1.195200px;}
._c{margin-left:-15.738240px;}
._e{margin-left:-11.425440px;}
._a{margin-left:-10.211280px;}
._d{margin-left:-9.052800px;}
._b{margin-left:-7.429200px;}
._3{margin-left:-5.930160px;}
._5{margin-left:-4.538160px;}
._2{margin-left:-3.190320px;}
._4{margin-left:-2.175120px;}
._1{margin-left:-1.132560px;}
._6{width:1.374480px;}
._7{width:2.585280px;}
._9{width:3.793920px;}
._10{width:5.577120px;}
._11{width:17.817120px;}
._0{width:19.450080px;}
._8{width:847.542720px;}
._f{width:1589.982720px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:87.120000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.240000px;}
.yf9{bottom:3.285000px;}
.yca{bottom:3.780000px;}
.y31{bottom:7.920000px;}
.y148{bottom:10.260000px;}
.y10b{bottom:10.980000px;}
.yc0{bottom:11.880000px;}
.ye7{bottom:11.910000px;}
.yae{bottom:12.780000px;}
.y113{bottom:12.960000px;}
.ye2{bottom:18.900000px;}
.yb0{bottom:20.340000px;}
.yf8{bottom:20.385000px;}
.ya3{bottom:20.520000px;}
.ye6{bottom:20.550000px;}
.y202{bottom:20.565000px;}
.yc9{bottom:21.060000px;}
.ya9{bottom:21.420000px;}
.y15f{bottom:22.140000px;}
.y161{bottom:23.940000px;}
.y147{bottom:27.354000px;}
.y102{bottom:28.080000px;}
.y157{bottom:29.160000px;}
.ycb{bottom:29.694000px;}
.yad{bottom:30.060000px;}
.yc3{bottom:30.240000px;}
.y1fa{bottom:34.920000px;}
.ye1{bottom:36.000000px;}
.ybc{bottom:36.720000px;}
.y14c{bottom:37.614000px;}
.yba{bottom:37.620000px;}
.y201{bottom:37.665000px;}
.ycd{bottom:37.794000px;}
.ya2{bottom:37.800000px;}
.y209{bottom:37.830000px;}
.y154{bottom:37.845000px;}
.yc8{bottom:38.334000px;}
.ya8{bottom:38.700000px;}
.yf7{bottom:38.745000px;}
.yc5{bottom:38.880000px;}
.y121{bottom:39.240000px;}
.y15e{bottom:39.420000px;}
.y160{bottom:41.220000px;}
.y101{bottom:45.360000px;}
.y146{bottom:45.714000px;}
.yec{bottom:45.900000px;}
.yfb{bottom:46.260000px;}
.y10a{bottom:46.440000px;}
.y156{bottom:46.485000px;}
.yf2{bottom:46.974000px;}
.y10e{bottom:47.334000px;}
.yaa{bottom:47.340000px;}
.yc2{bottom:47.520000px;}
.y11d{bottom:47.880000px;}
.y1f9{bottom:50.760000px;}
.ybb{bottom:53.820000px;}
.y117{bottom:54.045000px;}
.ye0{bottom:54.360000px;}
.ycc{bottom:54.894000px;}
.yb5{bottom:54.900000px;}
.y153{bottom:54.945000px;}
.yf5{bottom:55.074000px;}
.ya1{bottom:55.080000px;}
.y208{bottom:55.110000px;}
.y119{bottom:55.125000px;}
.yc7{bottom:55.614000px;}
.y10d{bottom:55.974000px;}
.ya7{bottom:55.980000px;}
.y135{bottom:56.160000px;}
.y3{bottom:56.196000px;}
.y120{bottom:56.340000px;}
.y20a{bottom:56.376000px;}
.y129{bottom:56.520000px;}
.y15d{bottom:58.320000px;}
.y145{bottom:62.994000px;}
.y1f8{bottom:63.360000px;}
.y13d{bottom:63.534000px;}
.yd9{bottom:63.540000px;}
.ybe{bottom:63.570000px;}
.y155{bottom:63.585000px;}
.y109{bottom:63.720000px;}
.y100{bottom:63.750000px;}
.y112{bottom:64.614000px;}
.yac{bottom:64.620000px;}
.y11c{bottom:64.980000px;}
.y132{bottom:65.160000px;}
.y116{bottom:71.145000px;}
.ydf{bottom:71.640000px;}
.y13f{bottom:72.174000px;}
.yd3{bottom:72.180000px;}
.yb4{bottom:72.210000px;}
.y118{bottom:72.225000px;}
.y107{bottom:72.360000px;}
.yfd{bottom:72.390000px;}
.yf4{bottom:72.399000px;}
.yf1{bottom:72.759000px;}
.y125{bottom:73.080000px;}
.y10f{bottom:73.254000px;}
.ya6{bottom:73.260000px;}
.y2{bottom:73.476000px;}
.y11f{bottom:73.620000px;}
.y128{bottom:73.800000px;}
.y144{bottom:80.319000px;}
.yd8{bottom:80.820000px;}
.yb6{bottom:80.850000px;}
.y13c{bottom:80.859000px;}
.y108{bottom:81.000000px;}
.yff{bottom:81.030000px;}
.y111{bottom:81.894000px;}
.yab{bottom:81.900000px;}
.y11b{bottom:82.260000px;}
.y131{bottom:82.440000px;}
.yeb{bottom:83.160000px;}
.y20f{bottom:86.616000px;}
.y212{bottom:87.516000px;}
.yde{bottom:88.920000px;}
.y213{bottom:88.956000px;}
.yd2{bottom:89.460000px;}
.yb3{bottom:89.490000px;}
.yf3{bottom:89.499000px;}
.y115{bottom:89.505000px;}
.y12c{bottom:90.360000px;}
.y110{bottom:90.399000px;}
.yaf{bottom:90.405000px;}
.yc4{bottom:90.540000px;}
.y12f{bottom:90.579000px;}
.y11e{bottom:90.900000px;}
.y127{bottom:91.080000px;}
.y124{bottom:91.440000px;}
.y210{bottom:95.796000px;}
.y143{bottom:97.419000px;}
.yd7{bottom:98.100000px;}
.ybd{bottom:98.130000px;}
.y13b{bottom:98.139000px;}
.ye9{bottom:99.180000px;}
.yea{bottom:101.880000px;}
.ydd{bottom:106.020000px;}
.yb2{bottom:106.590000px;}
.yd1{bottom:106.740000px;}
.y105{bottom:106.770000px;}
.y13e{bottom:106.779000px;}
.y12e{bottom:107.679000px;}
.yef{bottom:107.820000px;}
.y123{bottom:108.720000px;}
.y139{bottom:108.750000px;}
.y134{bottom:108.900000px;}
.y10c{bottom:109.476000px;}
.y1d9{bottom:114.876000px;}
.yd6{bottom:115.200000px;}
.yfe{bottom:115.410000px;}
.y142{bottom:115.779000px;}
.y32{bottom:120.816000px;}
.y12d{bottom:122.436000px;}
.y13a{bottom:123.516000px;}
.yd5{bottom:123.840000px;}
.yb9{bottom:123.870000px;}
.y14b{bottom:123.879000px;}
.y104{bottom:124.050000px;}
.ydc{bottom:124.380000px;}
.yee{bottom:124.920000px;}
.yf0{bottom:125.676000px;}
.y122{bottom:125.820000px;}
.y12b{bottom:126.000000px;}
.y138{bottom:126.030000px;}
.y1d8{bottom:127.656000px;}
.yc6{bottom:128.556000px;}
.y141{bottom:133.059000px;}
.y30{bottom:134.856000px;}
.yd4{bottom:141.120000px;}
.yb8{bottom:141.150000px;}
.y14a{bottom:141.159000px;}
.y103{bottom:141.330000px;}
.ydb{bottom:141.660000px;}
.yed{bottom:142.200000px;}
.y12a{bottom:143.100000px;}
.y137{bottom:143.130000px;}
.y133{bottom:143.325000px;}
.y140{bottom:150.159000px;}
.y1fb{bottom:151.230000px;}
.ye4{bottom:158.400000px;}
.yb7{bottom:158.430000px;}
.y149{bottom:158.439000px;}
.yda{bottom:158.760000px;}
.y1f7{bottom:165.270000px;}
.y1c0{bottom:166.350000px;}
.y1a6{bottom:174.270000px;}
.ye3{bottom:175.725000px;}
.y1bf{bottom:183.630000px;}
.y151{bottom:189.390000px;}
.y1a5{bottom:191.550000px;}
.y1ed{bottom:192.090000px;}
.y2f{bottom:196.590000px;}
.yc1{bottom:199.335000px;}
.y1be{bottom:200.910000px;}
.y150{bottom:206.535000px;}
.y1a4{bottom:208.830000px;}
.y1ec{bottom:209.370000px;}
.y2e{bottom:213.870000px;}
.y106{bottom:215.715000px;}
.y1bd{bottom:218.190000px;}
.y14f{bottom:223.815000px;}
.y9d{bottom:225.210000px;}
.y1a3{bottom:226.110000px;}
.y1eb{bottom:226.650000px;}
.ye8{bottom:231.015000px;}
.y2d{bottom:231.150000px;}
.y1bc{bottom:235.290000px;}
.y9c{bottom:242.490000px;}
.y14e{bottom:242.715000px;}
.y1a2{bottom:243.390000px;}
.y1ea{bottom:243.750000px;}
.y126{bottom:245.955000px;}
.y2c{bottom:248.430000px;}
.y1bb{bottom:252.570000px;}
.y9b{bottom:259.770000px;}
.y1a1{bottom:260.490000px;}
.y1e9{bottom:261.030000px;}
.y2b{bottom:265.530000px;}
.y14d{bottom:266.115000px;}
.y1ba{bottom:269.850000px;}
.y1a0{bottom:277.770000px;}
.y1e8{bottom:278.310000px;}
.y9a{bottom:278.670000px;}
.y15c{bottom:280.875000px;}
.y18f{bottom:282.315000px;}
.y2a{bottom:282.855000px;}
.y1b9{bottom:287.175000px;}
.y1f0{bottom:294.015000px;}
.y19f{bottom:295.095000px;}
.y1e7{bottom:295.635000px;}
.y136{bottom:296.715000px;}
.y18e{bottom:299.595000px;}
.y29{bottom:300.135000px;}
.y99{bottom:302.115000px;}
.y1b8{bottom:304.455000px;}
.ybf{bottom:305.715000px;}
.y19e{bottom:312.375000px;}
.y1e6{bottom:312.915000px;}
.y18d{bottom:316.695000px;}
.y28{bottom:317.415000px;}
.y98{bottom:319.395000px;}
.y1b7{bottom:321.555000px;}
.y1ef{bottom:325.695000px;}
.y19d{bottom:329.655000px;}
.y1e5{bottom:330.195000px;}
.y18c{bottom:333.975000px;}
.y27{bottom:334.695000px;}
.y97{bottom:336.495000px;}
.yfc{bottom:337.215000px;}
.y1ee{bottom:338.475000px;}
.y1b6{bottom:338.835000px;}
.yb1{bottom:340.995000px;}
.y19c{bottom:346.935000px;}
.y1e4{bottom:347.295000px;}
.y18b{bottom:351.255000px;}
.y26{bottom:351.975000px;}
.y96{bottom:353.775000px;}
.y15b{bottom:353.955000px;}
.y1b5{bottom:356.115000px;}
.y19b{bottom:364.035000px;}
.y1e3{bottom:364.575000px;}
.y18a{bottom:368.535000px;}
.y25{bottom:369.075000px;}
.y95{bottom:371.055000px;}
.y1b4{bottom:373.395000px;}
.y1e2{bottom:381.855000px;}
.y19a{bottom:382.935000px;}
.y189{bottom:385.815000px;}
.y24{bottom:386.355000px;}
.y94{bottom:388.335000px;}
.ye5{bottom:389.055000px;}
.y15a{bottom:389.235000px;}
.y1b3{bottom:390.675000px;}
.y1f6{bottom:393.915000px;}
.y1e1{bottom:399.135000px;}
.y188{bottom:402.915000px;}
.y23{bottom:403.635000px;}
.y11a{bottom:405.105000px;}
.y93{bottom:405.615000px;}
.y1b2{bottom:407.955000px;}
.y1f5{bottom:411.015000px;}
.y1e0{bottom:416.415000px;}
.y199{bottom:417.855000px;}
.y187{bottom:420.195000px;}
.y22{bottom:420.915000px;}
.y92{bottom:422.715000px;}
.yd0{bottom:424.365000px;}
.y159{bottom:424.545000px;}
.y1b1{bottom:425.055000px;}
.y1f4{bottom:428.295000px;}
.y198{bottom:430.635000px;}
.y1df{bottom:433.695000px;}
.y186{bottom:437.475000px;}
.y21{bottom:438.195000px;}
.y91{bottom:439.995000px;}
.y1b0{bottom:442.335000px;}
.y1f3{bottom:445.575000px;}
.y1de{bottom:450.795000px;}
.y185{bottom:454.755000px;}
.y20{bottom:455.475000px;}
.y130{bottom:455.685000px;}
.y90{bottom:457.275000px;}
.y1af{bottom:459.615000px;}
.y158{bottom:459.825000px;}
.y1dd{bottom:468.075000px;}
.y184{bottom:472.035000px;}
.y1f{bottom:472.575000px;}
.y8f{bottom:474.555000px;}
.y1ae{bottom:476.895000px;}
.y1f2{bottom:477.255000px;}
.y183{bottom:489.315000px;}
.y1e{bottom:489.855000px;}
.y1f1{bottom:490.215000px;}
.y8e{bottom:491.835000px;}
.yfa{bottom:493.305000px;}
.y6d{bottom:493.815000px;}
.y1ad{bottom:494.175000px;}
.y55{bottom:496.875000px;}
.y1dc{bottom:499.935000px;}
.y182{bottom:506.415000px;}
.y1d{bottom:507.135000px;}
.y8d{bottom:509.115000px;}
.y6c{bottom:511.095000px;}
.y1ac{bottom:511.455000px;}
.y1db{bottom:512.715000px;}
.y54{bottom:514.155000px;}
.ya5{bottom:514.185000px;}
.y181{bottom:523.695000px;}
.y1c{bottom:524.415000px;}
.y8c{bottom:526.215000px;}
.y1ab{bottom:528.555000px;}
.y53{bottom:531.435000px;}
.y6b{bottom:535.755000px;}
.y180{bottom:540.975000px;}
.y1b{bottom:541.695000px;}
.y8b{bottom:543.495000px;}
.y1aa{bottom:545.835000px;}
.y114{bottom:546.765000px;}
.y52{bottom:548.715000px;}
.y17f{bottom:558.255000px;}
.y1a{bottom:558.975000px;}
.y6a{bottom:560.595000px;}
.y8a{bottom:560.775000px;}
.y1a9{bottom:563.115000px;}
.y152{bottom:564.045000px;}
.y51{bottom:565.845000px;}
.y17e{bottom:575.565000px;}
.y19{bottom:576.105000px;}
.y89{bottom:579.705000px;}
.y50{bottom:583.125000px;}
.y69{bottom:585.285000px;}
.y18{bottom:593.385000px;}
.y17d{bottom:593.565000px;}
.y1a8{bottom:594.825000px;}
.yf6{bottom:597.525000px;}
.y4f{bottom:600.405000px;}
.y88{bottom:603.105000px;}
.y207{bottom:605.085000px;}
.y1a7{bottom:607.605000px;}
.y68{bottom:610.125000px;}
.y17{bottom:610.665000px;}
.y17c{bottom:613.545000px;}
.ycf{bottom:614.850000px;}
.y4e{bottom:617.685000px;}
.y87{bottom:620.205000px;}
.ya0{bottom:620.430000px;}
.y16{bottom:627.945000px;}
.y17b{bottom:630.645000px;}
.y67{bottom:634.785000px;}
.y4d{bottom:634.965000px;}
.y86{bottom:637.485000px;}
.y20e{bottom:641.310000px;}
.y206{bottom:643.965000px;}
.y15{bottom:645.225000px;}
.y17a{bottom:647.925000px;}
.yce{bottom:651.030000px;}
.y4c{bottom:652.245000px;}
.y85{bottom:654.765000px;}
.y20d{bottom:658.590000px;}
.y66{bottom:659.625000px;}
.y179{bottom:665.205000px;}
.y4b{bottom:669.345000px;}
.y14{bottom:670.425000px;}
.y84{bottom:672.045000px;}
.y20c{bottom:675.870000px;}
.y178{bottom:682.485000px;}
.y65{bottom:684.285000px;}
.y4a{bottom:686.625000px;}
.y83{bottom:690.945000px;}
.y177{bottom:699.765000px;}
.y205{bottom:700.305000px;}
.y20b{bottom:700.710000px;}
.y49{bottom:703.905000px;}
.y1d7{bottom:708.045000px;}
.y9f{bottom:708.090000px;}
.y64{bottom:709.125000px;}
.y82{bottom:714.165000px;}
.y13{bottom:716.145000px;}
.y176{bottom:716.865000px;}
.y48{bottom:721.185000px;}
.y1d6{bottom:725.325000px;}
.y211{bottom:727.530000px;}
.y81{bottom:732.165000px;}
.y63{bottom:733.785000px;}
.y175{bottom:734.145000px;}
.y47{bottom:738.465000px;}
.y204{bottom:739.365000px;}
.y1d5{bottom:742.425000px;}
.y12{bottom:742.785000px;}
.y174{bottom:751.425000px;}
.y80{bottom:752.145000px;}
.y46{bottom:755.565000px;}
.y62{bottom:758.625000px;}
.y1d4{bottom:759.705000px;}
.y173{bottom:768.705000px;}
.y11{bottom:769.245000px;}
.y7f{bottom:769.425000px;}
.y45{bottom:772.845000px;}
.y1d3{bottom:776.985000px;}
.y61{bottom:783.285000px;}
.y172{bottom:785.985000px;}
.y7e{bottom:786.705000px;}
.y44{bottom:790.125000px;}
.y1d2{bottom:794.265000px;}
.y203{bottom:795.525000px;}
.y10{bottom:795.885000px;}
.y171{bottom:803.265000px;}
.y7d{bottom:803.985000px;}
.y43{bottom:807.405000px;}
.y60{bottom:808.125000px;}
.y1d1{bottom:811.545000px;}
.y170{bottom:820.365000px;}
.y197{bottom:820.545000px;}
.y7c{bottom:821.265000px;}
.yf{bottom:822.345000px;}
.y42{bottom:824.685000px;}
.y9e{bottom:825.840000px;}
.y1d0{bottom:828.825000px;}
.y5f{bottom:832.785000px;}
.y200{bottom:834.585000px;}
.y16f{bottom:837.645000px;}
.y196{bottom:837.825000px;}
.y7b{bottom:838.365000px;}
.y41{bottom:841.965000px;}
.y1cf{bottom:845.925000px;}
.ye{bottom:849.030000px;}
.y16e{bottom:854.970000px;}
.y7a{bottom:855.690000px;}
.y5e{bottom:857.670000px;}
.y40{bottom:859.110000px;}
.y1ce{bottom:863.250000px;}
.y16d{bottom:872.250000px;}
.y79{bottom:872.970000px;}
.yd{bottom:875.490000px;}
.y3f{bottom:876.390000px;}
.y1cd{bottom:880.530000px;}
.y5d{bottom:882.330000px;}
.y16c{bottom:889.530000px;}
.y78{bottom:890.250000px;}
.y1ff{bottom:890.790000px;}
.y3e{bottom:893.670000px;}
.y1cc{bottom:899.430000px;}
.yc{bottom:902.130000px;}
.y16b{bottom:906.810000px;}
.y5c{bottom:907.170000px;}
.y77{bottom:907.530000px;}
.y3d{bottom:910.950000px;}
.y1cb{bottom:922.830000px;}
.y16a{bottom:923.910000px;}
.y195{bottom:924.090000px;}
.y76{bottom:924.810000px;}
.y3c{bottom:928.230000px;}
.yb{bottom:928.590000px;}
.y1fe{bottom:929.850000px;}
.y5b{bottom:931.830000px;}
.y1ca{bottom:939.930000px;}
.y169{bottom:941.190000px;}
.y75{bottom:941.910000px;}
.y3b{bottom:945.510000px;}
.ya{bottom:955.230000px;}
.y5a{bottom:956.670000px;}
.y1c9{bottom:957.210000px;}
.y168{bottom:958.470000px;}
.y74{bottom:959.190000px;}
.y3a{bottom:962.610000px;}
.y1c8{bottom:974.490000px;}
.y167{bottom:975.750000px;}
.y73{bottom:976.470000px;}
.y39{bottom:979.890000px;}
.y9{bottom:980.430000px;}
.y59{bottom:981.330000px;}
.y1fd{bottom:986.010000px;}
.y1c7{bottom:991.770000px;}
.y166{bottom:993.030000px;}
.y72{bottom:993.750000px;}
.y38{bottom:997.170000px;}
.y8{bottom:1004.730000px;}
.y58{bottom:1006.170000px;}
.y1c6{bottom:1009.050000px;}
.y165{bottom:1010.310000px;}
.y71{bottom:1011.030000px;}
.y37{bottom:1014.450000px;}
.y1fc{bottom:1025.070000px;}
.y1c5{bottom:1026.330000px;}
.y194{bottom:1027.590000px;}
.y164{bottom:1028.130000px;}
.y70{bottom:1028.310000px;}
.y7{bottom:1028.850000px;}
.y57{bottom:1030.830000px;}
.y36{bottom:1031.730000px;}
.y1c4{bottom:1043.430000px;}
.y193{bottom:1044.690000px;}
.y6f{bottom:1045.410000px;}
.y163{bottom:1048.110000px;}
.y35{bottom:1049.010000px;}
.y6{bottom:1052.970000px;}
.y56{bottom:1055.850000px;}
.y1c3{bottom:1060.710000px;}
.y192{bottom:1061.970000px;}
.y6e{bottom:1063.410000px;}
.y34{bottom:1066.110000px;}
.y162{bottom:1073.130000px;}
.y5{bottom:1077.090000px;}
.y1c2{bottom:1077.990000px;}
.y191{bottom:1079.250000px;}
.y1da{bottom:1079.970000px;}
.y33{bottom:1091.130000px;}
.y1c1{bottom:1096.890000px;}
.y190{bottom:1097.250000px;}
.y4{bottom:1099.950000px;}
.y1{bottom:1195.740000px;}
.h15{height:34.380000px;}
.h1a{height:34.416000px;}
.h27{height:34.560000px;}
.h28{height:34.596000px;}
.h18{height:35.460000px;}
.h11{height:39.840820px;}
.h2c{height:41.493516px;}
.h2{height:43.681992px;}
.he{height:44.090508px;}
.hd{height:44.907539px;}
.h7{height:44.936719px;}
.h6{height:46.419609px;}
.h2e{height:51.660000px;}
.h2f{height:51.696000px;}
.h30{height:51.840000px;}
.h2d{height:52.628906px;}
.h1d{height:52.776000px;}
.h2a{height:54.105469px;}
.hc{height:55.019531px;}
.hb{height:58.429688px;}
.h8{height:58.500000px;}
.h3{height:62.151680px;}
.h12{height:69.120000px;}
.h31{height:69.156000px;}
.h17{height:70.056000px;}
.ha{height:71.613281px;}
.h29{height:72.360000px;}
.h4{height:76.187461px;}
.h26{height:86.256000px;}
.h9{height:91.177734px;}
.h1e{height:103.500000px;}
.h21{height:103.536000px;}
.h1c{height:104.616000px;}
.h13{height:105.516000px;}
.h16{height:105.660000px;}
.h20{height:120.780000px;}
.h24{height:122.796000px;}
.h22{height:140.940000px;}
.h1f{height:155.370000px;}
.h1b{height:157.320000px;}
.h23{height:158.250000px;}
.h25{height:158.430000px;}
.h5{height:159.732422px;}
.h14{height:172.470000px;}
.h19{height:189.750000px;}
.h2b{height:225.390000px;}
.hf{height:892.980000px;}
.h10{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:27.180000px;}
.wb{width:87.156000px;}
.wc{width:103.860000px;}
.w12{width:104.220000px;}
.w3{width:106.380000px;}
.we{width:115.560000px;}
.w14{width:116.280000px;}
.wa{width:117.000000px;}
.wf{width:132.696000px;}
.w15{width:133.416000px;}
.w5{width:135.936000px;}
.w10{width:164.700000px;}
.w16{width:165.420000px;}
.w9{width:179.490000px;}
.w11{width:179.850000px;}
.w4{width:183.090000px;}
.wd{width:201.270000px;}
.w13{width:201.990000px;}
.w17{width:338.070000px;}
.w18{width:338.295000px;}
.w1a{width:642.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w8{width:1262.879981px;}
.w6{width:1262.880000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x4b{left:1.080000px;}
.x25{left:2.520000px;}
.x2f{left:3.780000px;}
.x2e{left:5.220000px;}
.x1d{left:7.740000px;}
.x2d{left:8.820000px;}
.x27{left:11.700000px;}
.x26{left:14.400000px;}
.x28{left:16.740000px;}
.x2b{left:18.000000px;}
.x30{left:19.260000px;}
.x34{left:20.700000px;}
.x2a{left:22.500000px;}
.x29{left:29.160000px;}
.x2c{left:37.125000px;}
.x32{left:38.520000px;}
.x33{left:56.700000px;}
.x4d{left:63.899981px;}
.x1c{left:86.940000px;}
.x4e{left:90.899981px;}
.x49{left:94.710000px;}
.x9{left:96.294000px;}
.x1{left:108.035987px;}
.x4a{left:110.376000px;}
.xd{left:121.530000px;}
.xe{left:122.975987px;}
.x4{left:124.955987px;}
.xf{left:138.095987px;}
.x4c{left:139.896000px;}
.x3{left:155.549987px;}
.x3b{left:161.129987px;}
.x18{left:173.549987px;}
.xb{left:175.005000px;}
.x17{left:177.329987px;}
.x14{left:179.849987px;}
.x16{left:181.109987px;}
.x13{left:183.269987px;}
.x12{left:184.349987px;}
.x11{left:186.869987px;}
.x8{left:194.249987px;}
.x10{left:204.869987px;}
.x36{left:206.849987px;}
.x43{left:212.789987px;}
.xa{left:214.410000px;}
.x41{left:216.749987px;}
.x37{left:220.529987px;}
.x3f{left:245.729987px;}
.x48{left:248.790000px;}
.x47{left:250.239000px;}
.x1e{left:267.330000px;}
.x46{left:269.669987px;}
.x7{left:279.749987px;}
.x3d{left:299.414987px;}
.x19{left:301.574987px;}
.x3a{left:307.334987px;}
.x39{left:327.674987px;}
.x5{left:377.354987px;}
.x1f{left:385.230000px;}
.xc{left:397.515000px;}
.x6{left:446.474987px;}
.x38{left:448.274987px;}
.x15{left:453.674987px;}
.x20{left:473.115000px;}
.x1b{left:499.934981px;}
.x21{left:577.695000px;}
.x44{left:659.444987px;}
.x35{left:703.229987px;}
.x2{left:711.509987px;}
.x45{left:729.689987px;}
.x3e{left:757.409987px;}
.x42{left:776.129987px;}
.x22{left:779.685000px;}
.x40{left:796.649987px;}
.x3c{left:853.169987px;}
.x23{left:895.965000px;}
.x24{left:1029.390000px;}
.x31{left:1032.269981px;}
.x1a{left:1040.549981px;}
.x4f{left:1121.009981px;}
.x51{left:1191.209981px;}
.x50{left:1207.049981px;}
.x52{left:1218.209981px;}
.x53{left:1220.549981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls3{letter-spacing:-2.645333pt;}
.ls1{letter-spacing:-0.371200pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.103467pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.089067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.033280pt;}
.ls17{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.065280pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.272533pt;}
.lsf{letter-spacing:0.277120pt;}
.ls15{letter-spacing:0.277333pt;}
.lsa{letter-spacing:0.364160pt;}
.ls1f{letter-spacing:0.367467pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.592640pt;}
.ls14{letter-spacing:0.912000pt;}
.lse{letter-spacing:45.546667pt;}
.lsb{letter-spacing:48.016640pt;}
.lsd{letter-spacing:55.786667pt;}
.lsc{letter-spacing:57.541547pt;}
.ls4{letter-spacing:62.976000pt;}
.ls6{letter-spacing:80.256000pt;}
.ls7{letter-spacing:89.216000pt;}
.ls5{letter-spacing:93.034667pt;}
.ls22{letter-spacing:151.696640pt;}
.ws2{word-spacing:-77.440000pt;}
.ws19{word-spacing:-64.000000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws4{word-spacing:-33.701120pt;}
.ws5{word-spacing:-31.055787pt;}
.ws8{word-spacing:-19.237120pt;}
.ws3{word-spacing:-17.397973pt;}
.wsc{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.679360pt;}
.ws10{word-spacing:-15.311360pt;}
.ws18{word-spacing:-15.134827pt;}
.wse{word-spacing:-15.039893pt;}
.ws17{word-spacing:-14.950827pt;}
.ws12{word-spacing:-14.814720pt;}
.wsa{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.678293pt;}
.wsb{word-spacing:-14.672427pt;}
.ws15{word-spacing:-14.536427pt;}
.wsd{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.208000pt;}
.ws1b{word-spacing:-13.568000pt;}
.ws6{word-spacing:-9.607680pt;}
.ws16{word-spacing:-9.600000pt;}
.ws1{word-spacing:-0.077440pt;}
.ws7{word-spacing:0.000000pt;}
.ws0{word-spacing:0.956160pt;}
.ws14{word-spacing:1.062400pt;}
._c{margin-left:-13.989547pt;}
._e{margin-left:-10.155947pt;}
._a{margin-left:-9.076693pt;}
._d{margin-left:-8.046933pt;}
._b{margin-left:-6.603733pt;}
._3{margin-left:-5.271253pt;}
._5{margin-left:-4.033920pt;}
._2{margin-left:-2.835840pt;}
._4{margin-left:-1.933440pt;}
._1{margin-left:-1.006720pt;}
._6{width:1.221760pt;}
._7{width:2.298027pt;}
._9{width:3.372373pt;}
._10{width:4.957440pt;}
._11{width:15.837440pt;}
._0{width:17.288960pt;}
._8{width:753.371307pt;}
._f{width:1413.317973pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:77.440000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.880000pt;}
.yf9{bottom:2.920000pt;}
.yca{bottom:3.360000pt;}
.y31{bottom:7.040000pt;}
.y148{bottom:9.120000pt;}
.y10b{bottom:9.760000pt;}
.yc0{bottom:10.560000pt;}
.ye7{bottom:10.586667pt;}
.yae{bottom:11.360000pt;}
.y113{bottom:11.520000pt;}
.ye2{bottom:16.800000pt;}
.yb0{bottom:18.080000pt;}
.yf8{bottom:18.120000pt;}
.ya3{bottom:18.240000pt;}
.ye6{bottom:18.266667pt;}
.y202{bottom:18.280000pt;}
.yc9{bottom:18.720000pt;}
.ya9{bottom:19.040000pt;}
.y15f{bottom:19.680000pt;}
.y161{bottom:21.280000pt;}
.y147{bottom:24.314667pt;}
.y102{bottom:24.960000pt;}
.y157{bottom:25.920000pt;}
.ycb{bottom:26.394667pt;}
.yad{bottom:26.720000pt;}
.yc3{bottom:26.880000pt;}
.y1fa{bottom:31.040000pt;}
.ye1{bottom:32.000000pt;}
.ybc{bottom:32.640000pt;}
.y14c{bottom:33.434667pt;}
.yba{bottom:33.440000pt;}
.y201{bottom:33.480000pt;}
.ycd{bottom:33.594667pt;}
.ya2{bottom:33.600000pt;}
.y209{bottom:33.626667pt;}
.y154{bottom:33.640000pt;}
.yc8{bottom:34.074667pt;}
.ya8{bottom:34.400000pt;}
.yf7{bottom:34.440000pt;}
.yc5{bottom:34.560000pt;}
.y121{bottom:34.880000pt;}
.y15e{bottom:35.040000pt;}
.y160{bottom:36.640000pt;}
.y101{bottom:40.320000pt;}
.y146{bottom:40.634667pt;}
.yec{bottom:40.800000pt;}
.yfb{bottom:41.120000pt;}
.y10a{bottom:41.280000pt;}
.y156{bottom:41.320000pt;}
.yf2{bottom:41.754667pt;}
.y10e{bottom:42.074667pt;}
.yaa{bottom:42.080000pt;}
.yc2{bottom:42.240000pt;}
.y11d{bottom:42.560000pt;}
.y1f9{bottom:45.120000pt;}
.ybb{bottom:47.840000pt;}
.y117{bottom:48.040000pt;}
.ye0{bottom:48.320000pt;}
.ycc{bottom:48.794667pt;}
.yb5{bottom:48.800000pt;}
.y153{bottom:48.840000pt;}
.yf5{bottom:48.954667pt;}
.ya1{bottom:48.960000pt;}
.y208{bottom:48.986667pt;}
.y119{bottom:49.000000pt;}
.yc7{bottom:49.434667pt;}
.y10d{bottom:49.754667pt;}
.ya7{bottom:49.760000pt;}
.y135{bottom:49.920000pt;}
.y3{bottom:49.952000pt;}
.y120{bottom:50.080000pt;}
.y20a{bottom:50.112000pt;}
.y129{bottom:50.240000pt;}
.y15d{bottom:51.840000pt;}
.y145{bottom:55.994667pt;}
.y1f8{bottom:56.320000pt;}
.y13d{bottom:56.474667pt;}
.yd9{bottom:56.480000pt;}
.ybe{bottom:56.506667pt;}
.y155{bottom:56.520000pt;}
.y109{bottom:56.640000pt;}
.y100{bottom:56.666667pt;}
.y112{bottom:57.434667pt;}
.yac{bottom:57.440000pt;}
.y11c{bottom:57.760000pt;}
.y132{bottom:57.920000pt;}
.y116{bottom:63.240000pt;}
.ydf{bottom:63.680000pt;}
.y13f{bottom:64.154667pt;}
.yd3{bottom:64.160000pt;}
.yb4{bottom:64.186667pt;}
.y118{bottom:64.200000pt;}
.y107{bottom:64.320000pt;}
.yfd{bottom:64.346667pt;}
.yf4{bottom:64.354667pt;}
.yf1{bottom:64.674667pt;}
.y125{bottom:64.960000pt;}
.y10f{bottom:65.114667pt;}
.ya6{bottom:65.120000pt;}
.y2{bottom:65.312000pt;}
.y11f{bottom:65.440000pt;}
.y128{bottom:65.600000pt;}
.y144{bottom:71.394667pt;}
.yd8{bottom:71.840000pt;}
.yb6{bottom:71.866667pt;}
.y13c{bottom:71.874667pt;}
.y108{bottom:72.000000pt;}
.yff{bottom:72.026667pt;}
.y111{bottom:72.794667pt;}
.yab{bottom:72.800000pt;}
.y11b{bottom:73.120000pt;}
.y131{bottom:73.280000pt;}
.yeb{bottom:73.920000pt;}
.y20f{bottom:76.992000pt;}
.y212{bottom:77.792000pt;}
.yde{bottom:79.040000pt;}
.y213{bottom:79.072000pt;}
.yd2{bottom:79.520000pt;}
.yb3{bottom:79.546667pt;}
.yf3{bottom:79.554667pt;}
.y115{bottom:79.560000pt;}
.y12c{bottom:80.320000pt;}
.y110{bottom:80.354667pt;}
.yaf{bottom:80.360000pt;}
.yc4{bottom:80.480000pt;}
.y12f{bottom:80.514667pt;}
.y11e{bottom:80.800000pt;}
.y127{bottom:80.960000pt;}
.y124{bottom:81.280000pt;}
.y210{bottom:85.152000pt;}
.y143{bottom:86.594667pt;}
.yd7{bottom:87.200000pt;}
.ybd{bottom:87.226667pt;}
.y13b{bottom:87.234667pt;}
.ye9{bottom:88.160000pt;}
.yea{bottom:90.560000pt;}
.ydd{bottom:94.240000pt;}
.yb2{bottom:94.746667pt;}
.yd1{bottom:94.880000pt;}
.y105{bottom:94.906667pt;}
.y13e{bottom:94.914667pt;}
.y12e{bottom:95.714667pt;}
.yef{bottom:95.840000pt;}
.y123{bottom:96.640000pt;}
.y139{bottom:96.666667pt;}
.y134{bottom:96.800000pt;}
.y10c{bottom:97.312000pt;}
.y1d9{bottom:102.112000pt;}
.yd6{bottom:102.400000pt;}
.yfe{bottom:102.586667pt;}
.y142{bottom:102.914667pt;}
.y32{bottom:107.392000pt;}
.y12d{bottom:108.832000pt;}
.y13a{bottom:109.792000pt;}
.yd5{bottom:110.080000pt;}
.yb9{bottom:110.106667pt;}
.y14b{bottom:110.114667pt;}
.y104{bottom:110.266667pt;}
.ydc{bottom:110.560000pt;}
.yee{bottom:111.040000pt;}
.yf0{bottom:111.712000pt;}
.y122{bottom:111.840000pt;}
.y12b{bottom:112.000000pt;}
.y138{bottom:112.026667pt;}
.y1d8{bottom:113.472000pt;}
.yc6{bottom:114.272000pt;}
.y141{bottom:118.274667pt;}
.y30{bottom:119.872000pt;}
.yd4{bottom:125.440000pt;}
.yb8{bottom:125.466667pt;}
.y14a{bottom:125.474667pt;}
.y103{bottom:125.626667pt;}
.ydb{bottom:125.920000pt;}
.yed{bottom:126.400000pt;}
.y12a{bottom:127.200000pt;}
.y137{bottom:127.226667pt;}
.y133{bottom:127.400000pt;}
.y140{bottom:133.474667pt;}
.y1fb{bottom:134.426667pt;}
.ye4{bottom:140.800000pt;}
.yb7{bottom:140.826667pt;}
.y149{bottom:140.834667pt;}
.yda{bottom:141.120000pt;}
.y1f7{bottom:146.906667pt;}
.y1c0{bottom:147.866667pt;}
.y1a6{bottom:154.906667pt;}
.ye3{bottom:156.200000pt;}
.y1bf{bottom:163.226667pt;}
.y151{bottom:168.346667pt;}
.y1a5{bottom:170.266667pt;}
.y1ed{bottom:170.746667pt;}
.y2f{bottom:174.746667pt;}
.yc1{bottom:177.186667pt;}
.y1be{bottom:178.586667pt;}
.y150{bottom:183.586667pt;}
.y1a4{bottom:185.626667pt;}
.y1ec{bottom:186.106667pt;}
.y2e{bottom:190.106667pt;}
.y106{bottom:191.746667pt;}
.y1bd{bottom:193.946667pt;}
.y14f{bottom:198.946667pt;}
.y9d{bottom:200.186667pt;}
.y1a3{bottom:200.986667pt;}
.y1eb{bottom:201.466667pt;}
.ye8{bottom:205.346667pt;}
.y2d{bottom:205.466667pt;}
.y1bc{bottom:209.146667pt;}
.y9c{bottom:215.546667pt;}
.y14e{bottom:215.746667pt;}
.y1a2{bottom:216.346667pt;}
.y1ea{bottom:216.666667pt;}
.y126{bottom:218.626667pt;}
.y2c{bottom:220.826667pt;}
.y1bb{bottom:224.506667pt;}
.y9b{bottom:230.906667pt;}
.y1a1{bottom:231.546667pt;}
.y1e9{bottom:232.026667pt;}
.y2b{bottom:236.026667pt;}
.y14d{bottom:236.546667pt;}
.y1ba{bottom:239.866667pt;}
.y1a0{bottom:246.906667pt;}
.y1e8{bottom:247.386667pt;}
.y9a{bottom:247.706667pt;}
.y15c{bottom:249.666667pt;}
.y18f{bottom:250.946667pt;}
.y2a{bottom:251.426667pt;}
.y1b9{bottom:255.266667pt;}
.y1f0{bottom:261.346667pt;}
.y19f{bottom:262.306667pt;}
.y1e7{bottom:262.786667pt;}
.y136{bottom:263.746667pt;}
.y18e{bottom:266.306667pt;}
.y29{bottom:266.786667pt;}
.y99{bottom:268.546667pt;}
.y1b8{bottom:270.626667pt;}
.ybf{bottom:271.746667pt;}
.y19e{bottom:277.666667pt;}
.y1e6{bottom:278.146667pt;}
.y18d{bottom:281.506667pt;}
.y28{bottom:282.146667pt;}
.y98{bottom:283.906667pt;}
.y1b7{bottom:285.826667pt;}
.y1ef{bottom:289.506667pt;}
.y19d{bottom:293.026667pt;}
.y1e5{bottom:293.506667pt;}
.y18c{bottom:296.866667pt;}
.y27{bottom:297.506667pt;}
.y97{bottom:299.106667pt;}
.yfc{bottom:299.746667pt;}
.y1ee{bottom:300.866667pt;}
.y1b6{bottom:301.186667pt;}
.yb1{bottom:303.106667pt;}
.y19c{bottom:308.386667pt;}
.y1e4{bottom:308.706667pt;}
.y18b{bottom:312.226667pt;}
.y26{bottom:312.866667pt;}
.y96{bottom:314.466667pt;}
.y15b{bottom:314.626667pt;}
.y1b5{bottom:316.546667pt;}
.y19b{bottom:323.586667pt;}
.y1e3{bottom:324.066667pt;}
.y18a{bottom:327.586667pt;}
.y25{bottom:328.066667pt;}
.y95{bottom:329.826667pt;}
.y1b4{bottom:331.906667pt;}
.y1e2{bottom:339.426667pt;}
.y19a{bottom:340.386667pt;}
.y189{bottom:342.946667pt;}
.y24{bottom:343.426667pt;}
.y94{bottom:345.186667pt;}
.ye5{bottom:345.826667pt;}
.y15a{bottom:345.986667pt;}
.y1b3{bottom:347.266667pt;}
.y1f6{bottom:350.146667pt;}
.y1e1{bottom:354.786667pt;}
.y188{bottom:358.146667pt;}
.y23{bottom:358.786667pt;}
.y11a{bottom:360.093333pt;}
.y93{bottom:360.546667pt;}
.y1b2{bottom:362.626667pt;}
.y1f5{bottom:365.346667pt;}
.y1e0{bottom:370.146667pt;}
.y199{bottom:371.426667pt;}
.y187{bottom:373.506667pt;}
.y22{bottom:374.146667pt;}
.y92{bottom:375.746667pt;}
.yd0{bottom:377.213333pt;}
.y159{bottom:377.373333pt;}
.y1b1{bottom:377.826667pt;}
.y1f4{bottom:380.706667pt;}
.y198{bottom:382.786667pt;}
.y1df{bottom:385.506667pt;}
.y186{bottom:388.866667pt;}
.y21{bottom:389.506667pt;}
.y91{bottom:391.106667pt;}
.y1b0{bottom:393.186667pt;}
.y1f3{bottom:396.066667pt;}
.y1de{bottom:400.706667pt;}
.y185{bottom:404.226667pt;}
.y20{bottom:404.866667pt;}
.y130{bottom:405.053333pt;}
.y90{bottom:406.466667pt;}
.y1af{bottom:408.546667pt;}
.y158{bottom:408.733333pt;}
.y1dd{bottom:416.066667pt;}
.y184{bottom:419.586667pt;}
.y1f{bottom:420.066667pt;}
.y8f{bottom:421.826667pt;}
.y1ae{bottom:423.906667pt;}
.y1f2{bottom:424.226667pt;}
.y183{bottom:434.946667pt;}
.y1e{bottom:435.426667pt;}
.y1f1{bottom:435.746667pt;}
.y8e{bottom:437.186667pt;}
.yfa{bottom:438.493333pt;}
.y6d{bottom:438.946667pt;}
.y1ad{bottom:439.266667pt;}
.y55{bottom:441.666667pt;}
.y1dc{bottom:444.386667pt;}
.y182{bottom:450.146667pt;}
.y1d{bottom:450.786667pt;}
.y8d{bottom:452.546667pt;}
.y6c{bottom:454.306667pt;}
.y1ac{bottom:454.626667pt;}
.y1db{bottom:455.746667pt;}
.y54{bottom:457.026667pt;}
.ya5{bottom:457.053333pt;}
.y181{bottom:465.506667pt;}
.y1c{bottom:466.146667pt;}
.y8c{bottom:467.746667pt;}
.y1ab{bottom:469.826667pt;}
.y53{bottom:472.386667pt;}
.y6b{bottom:476.226667pt;}
.y180{bottom:480.866667pt;}
.y1b{bottom:481.506667pt;}
.y8b{bottom:483.106667pt;}
.y1aa{bottom:485.186667pt;}
.y114{bottom:486.013333pt;}
.y52{bottom:487.746667pt;}
.y17f{bottom:496.226667pt;}
.y1a{bottom:496.866667pt;}
.y6a{bottom:498.306667pt;}
.y8a{bottom:498.466667pt;}
.y1a9{bottom:500.546667pt;}
.y152{bottom:501.373333pt;}
.y51{bottom:502.973333pt;}
.y17e{bottom:511.613333pt;}
.y19{bottom:512.093333pt;}
.y89{bottom:515.293333pt;}
.y50{bottom:518.333333pt;}
.y69{bottom:520.253333pt;}
.y18{bottom:527.453333pt;}
.y17d{bottom:527.613333pt;}
.y1a8{bottom:528.733333pt;}
.yf6{bottom:531.133333pt;}
.y4f{bottom:533.693333pt;}
.y88{bottom:536.093333pt;}
.y207{bottom:537.853333pt;}
.y1a7{bottom:540.093333pt;}
.y68{bottom:542.333333pt;}
.y17{bottom:542.813333pt;}
.y17c{bottom:545.373333pt;}
.ycf{bottom:546.533333pt;}
.y4e{bottom:549.053333pt;}
.y87{bottom:551.293333pt;}
.ya0{bottom:551.493333pt;}
.y16{bottom:558.173333pt;}
.y17b{bottom:560.573333pt;}
.y67{bottom:564.253333pt;}
.y4d{bottom:564.413333pt;}
.y86{bottom:566.653333pt;}
.y20e{bottom:570.053333pt;}
.y206{bottom:572.413333pt;}
.y15{bottom:573.533333pt;}
.y17a{bottom:575.933333pt;}
.yce{bottom:578.693333pt;}
.y4c{bottom:579.773333pt;}
.y85{bottom:582.013333pt;}
.y20d{bottom:585.413333pt;}
.y66{bottom:586.333333pt;}
.y179{bottom:591.293333pt;}
.y4b{bottom:594.973333pt;}
.y14{bottom:595.933333pt;}
.y84{bottom:597.373333pt;}
.y20c{bottom:600.773333pt;}
.y178{bottom:606.653333pt;}
.y65{bottom:608.253333pt;}
.y4a{bottom:610.333333pt;}
.y83{bottom:614.173333pt;}
.y177{bottom:622.013333pt;}
.y205{bottom:622.493333pt;}
.y20b{bottom:622.853333pt;}
.y49{bottom:625.693333pt;}
.y1d7{bottom:629.373333pt;}
.y9f{bottom:629.413333pt;}
.y64{bottom:630.333333pt;}
.y82{bottom:634.813333pt;}
.y13{bottom:636.573333pt;}
.y176{bottom:637.213333pt;}
.y48{bottom:641.053333pt;}
.y1d6{bottom:644.733333pt;}
.y211{bottom:646.693333pt;}
.y81{bottom:650.813333pt;}
.y63{bottom:652.253333pt;}
.y175{bottom:652.573333pt;}
.y47{bottom:656.413333pt;}
.y204{bottom:657.213333pt;}
.y1d5{bottom:659.933333pt;}
.y12{bottom:660.253333pt;}
.y174{bottom:667.933333pt;}
.y80{bottom:668.573333pt;}
.y46{bottom:671.613333pt;}
.y62{bottom:674.333333pt;}
.y1d4{bottom:675.293333pt;}
.y173{bottom:683.293333pt;}
.y11{bottom:683.773333pt;}
.y7f{bottom:683.933333pt;}
.y45{bottom:686.973333pt;}
.y1d3{bottom:690.653333pt;}
.y61{bottom:696.253333pt;}
.y172{bottom:698.653333pt;}
.y7e{bottom:699.293333pt;}
.y44{bottom:702.333333pt;}
.y1d2{bottom:706.013333pt;}
.y203{bottom:707.133333pt;}
.y10{bottom:707.453333pt;}
.y171{bottom:714.013333pt;}
.y7d{bottom:714.653333pt;}
.y43{bottom:717.693333pt;}
.y60{bottom:718.333333pt;}
.y1d1{bottom:721.373333pt;}
.y170{bottom:729.213333pt;}
.y197{bottom:729.373333pt;}
.y7c{bottom:730.013333pt;}
.yf{bottom:730.973333pt;}
.y42{bottom:733.053333pt;}
.y9e{bottom:734.080000pt;}
.y1d0{bottom:736.733333pt;}
.y5f{bottom:740.253333pt;}
.y200{bottom:741.853333pt;}
.y16f{bottom:744.573333pt;}
.y196{bottom:744.733333pt;}
.y7b{bottom:745.213333pt;}
.y41{bottom:748.413333pt;}
.y1cf{bottom:751.933333pt;}
.ye{bottom:754.693333pt;}
.y16e{bottom:759.973333pt;}
.y7a{bottom:760.613333pt;}
.y5e{bottom:762.373333pt;}
.y40{bottom:763.653333pt;}
.y1ce{bottom:767.333333pt;}
.y16d{bottom:775.333333pt;}
.y79{bottom:775.973333pt;}
.yd{bottom:778.213333pt;}
.y3f{bottom:779.013333pt;}
.y1cd{bottom:782.693333pt;}
.y5d{bottom:784.293333pt;}
.y16c{bottom:790.693333pt;}
.y78{bottom:791.333333pt;}
.y1ff{bottom:791.813333pt;}
.y3e{bottom:794.373333pt;}
.y1cc{bottom:799.493333pt;}
.yc{bottom:801.893333pt;}
.y16b{bottom:806.053333pt;}
.y5c{bottom:806.373333pt;}
.y77{bottom:806.693333pt;}
.y3d{bottom:809.733333pt;}
.y1cb{bottom:820.293333pt;}
.y16a{bottom:821.253333pt;}
.y195{bottom:821.413333pt;}
.y76{bottom:822.053333pt;}
.y3c{bottom:825.093333pt;}
.yb{bottom:825.413333pt;}
.y1fe{bottom:826.533333pt;}
.y5b{bottom:828.293333pt;}
.y1ca{bottom:835.493333pt;}
.y169{bottom:836.613333pt;}
.y75{bottom:837.253333pt;}
.y3b{bottom:840.453333pt;}
.ya{bottom:849.093333pt;}
.y5a{bottom:850.373333pt;}
.y1c9{bottom:850.853333pt;}
.y168{bottom:851.973333pt;}
.y74{bottom:852.613333pt;}
.y3a{bottom:855.653333pt;}
.y1c8{bottom:866.213333pt;}
.y167{bottom:867.333333pt;}
.y73{bottom:867.973333pt;}
.y39{bottom:871.013333pt;}
.y9{bottom:871.493333pt;}
.y59{bottom:872.293333pt;}
.y1fd{bottom:876.453333pt;}
.y1c7{bottom:881.573333pt;}
.y166{bottom:882.693333pt;}
.y72{bottom:883.333333pt;}
.y38{bottom:886.373333pt;}
.y8{bottom:893.093333pt;}
.y58{bottom:894.373333pt;}
.y1c6{bottom:896.933333pt;}
.y165{bottom:898.053333pt;}
.y71{bottom:898.693333pt;}
.y37{bottom:901.733333pt;}
.y1fc{bottom:911.173333pt;}
.y1c5{bottom:912.293333pt;}
.y194{bottom:913.413333pt;}
.y164{bottom:913.893333pt;}
.y70{bottom:914.053333pt;}
.y7{bottom:914.533333pt;}
.y57{bottom:916.293333pt;}
.y36{bottom:917.093333pt;}
.y1c4{bottom:927.493333pt;}
.y193{bottom:928.613333pt;}
.y6f{bottom:929.253333pt;}
.y163{bottom:931.653333pt;}
.y35{bottom:932.453333pt;}
.y6{bottom:935.973333pt;}
.y56{bottom:938.533333pt;}
.y1c3{bottom:942.853333pt;}
.y192{bottom:943.973333pt;}
.y6e{bottom:945.253333pt;}
.y34{bottom:947.653333pt;}
.y162{bottom:953.893333pt;}
.y5{bottom:957.413333pt;}
.y1c2{bottom:958.213333pt;}
.y191{bottom:959.333333pt;}
.y1da{bottom:959.973333pt;}
.y33{bottom:969.893333pt;}
.y1c1{bottom:975.013333pt;}
.y190{bottom:975.333333pt;}
.y4{bottom:977.733333pt;}
.y1{bottom:1062.880000pt;}
.h15{height:30.560000pt;}
.h1a{height:30.592000pt;}
.h27{height:30.720000pt;}
.h28{height:30.752000pt;}
.h18{height:31.520000pt;}
.h11{height:35.414062pt;}
.h2c{height:36.883125pt;}
.h2{height:38.828437pt;}
.he{height:39.191562pt;}
.hd{height:39.917813pt;}
.h7{height:39.943750pt;}
.h6{height:41.261875pt;}
.h2e{height:45.920000pt;}
.h2f{height:45.952000pt;}
.h30{height:46.080000pt;}
.h2d{height:46.781250pt;}
.h1d{height:46.912000pt;}
.h2a{height:48.093750pt;}
.hc{height:48.906250pt;}
.hb{height:51.937500pt;}
.h8{height:52.000000pt;}
.h3{height:55.245937pt;}
.h12{height:61.440000pt;}
.h31{height:61.472000pt;}
.h17{height:62.272000pt;}
.ha{height:63.656250pt;}
.h29{height:64.320000pt;}
.h4{height:67.722188pt;}
.h26{height:76.672000pt;}
.h9{height:81.046875pt;}
.h1e{height:92.000000pt;}
.h21{height:92.032000pt;}
.h1c{height:92.992000pt;}
.h13{height:93.792000pt;}
.h16{height:93.920000pt;}
.h20{height:107.360000pt;}
.h24{height:109.152000pt;}
.h22{height:125.280000pt;}
.h1f{height:138.106667pt;}
.h1b{height:139.840000pt;}
.h23{height:140.666667pt;}
.h25{height:140.826667pt;}
.h5{height:141.984375pt;}
.h14{height:153.306667pt;}
.h19{height:168.666667pt;}
.h2b{height:200.346667pt;}
.hf{height:793.760000pt;}
.h10{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:24.160000pt;}
.wb{width:77.472000pt;}
.wc{width:92.320000pt;}
.w12{width:92.640000pt;}
.w3{width:94.560000pt;}
.we{width:102.720000pt;}
.w14{width:103.360000pt;}
.wa{width:104.000000pt;}
.wf{width:117.952000pt;}
.w15{width:118.592000pt;}
.w5{width:120.832000pt;}
.w10{width:146.400000pt;}
.w16{width:147.040000pt;}
.w9{width:159.546667pt;}
.w11{width:159.866667pt;}
.w4{width:162.746667pt;}
.wd{width:178.906667pt;}
.w13{width:179.546667pt;}
.w17{width:300.506667pt;}
.w18{width:300.706667pt;}
.w1a{width:571.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w8{width:1122.559983pt;}
.w6{width:1122.560000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4b{left:0.960000pt;}
.x25{left:2.240000pt;}
.x2f{left:3.360000pt;}
.x2e{left:4.640000pt;}
.x1d{left:6.880000pt;}
.x2d{left:7.840000pt;}
.x27{left:10.400000pt;}
.x26{left:12.800000pt;}
.x28{left:14.880000pt;}
.x2b{left:16.000000pt;}
.x30{left:17.120000pt;}
.x34{left:18.400000pt;}
.x2a{left:20.000000pt;}
.x29{left:25.920000pt;}
.x2c{left:33.000000pt;}
.x32{left:34.240000pt;}
.x33{left:50.400000pt;}
.x4d{left:56.799983pt;}
.x1c{left:77.280000pt;}
.x4e{left:80.799983pt;}
.x49{left:84.186667pt;}
.x9{left:85.594667pt;}
.x1{left:96.031988pt;}
.x4a{left:98.112000pt;}
.xd{left:108.026667pt;}
.xe{left:109.311988pt;}
.x4{left:111.071988pt;}
.xf{left:122.751988pt;}
.x4c{left:124.352000pt;}
.x3{left:138.266655pt;}
.x3b{left:143.226655pt;}
.x18{left:154.266655pt;}
.xb{left:155.560000pt;}
.x17{left:157.626655pt;}
.x14{left:159.866655pt;}
.x16{left:160.986655pt;}
.x13{left:162.906655pt;}
.x12{left:163.866655pt;}
.x11{left:166.106655pt;}
.x8{left:172.666655pt;}
.x10{left:182.106655pt;}
.x36{left:183.866655pt;}
.x43{left:189.146655pt;}
.xa{left:190.586667pt;}
.x41{left:192.666655pt;}
.x37{left:196.026655pt;}
.x3f{left:218.426655pt;}
.x48{left:221.146667pt;}
.x47{left:222.434667pt;}
.x1e{left:237.626667pt;}
.x46{left:239.706655pt;}
.x7{left:248.666655pt;}
.x3d{left:266.146655pt;}
.x19{left:268.066655pt;}
.x3a{left:273.186655pt;}
.x39{left:291.266655pt;}
.x5{left:335.426655pt;}
.x1f{left:342.426667pt;}
.xc{left:353.346667pt;}
.x6{left:396.866655pt;}
.x38{left:398.466655pt;}
.x15{left:403.266655pt;}
.x20{left:420.546667pt;}
.x1b{left:444.386650pt;}
.x21{left:513.506667pt;}
.x44{left:586.173322pt;}
.x35{left:625.093322pt;}
.x2{left:632.453322pt;}
.x45{left:648.613322pt;}
.x3e{left:673.253322pt;}
.x42{left:689.893322pt;}
.x22{left:693.053333pt;}
.x40{left:708.133322pt;}
.x3c{left:758.373322pt;}
.x23{left:796.413333pt;}
.x24{left:915.013333pt;}
.x31{left:917.573317pt;}
.x1a{left:924.933317pt;}
.x4f{left:996.453317pt;}
.x51{left:1058.853317pt;}
.x50{left:1072.933317pt;}
.x52{left:1082.853317pt;}
.x53{left:1084.933317pt;}
}




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