
    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_a06535bf0cf1096340395a52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057129;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_12b43dae30684fd4951b3710.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_4db12721804afd274d96ed43.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.153320;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_d533fff04ea41c4046e2def3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_765351c71ccbbe465863b2cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711000;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_86f38303cafd4e8a11a40050.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711000;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_702bd9e4332335e4a6e0a98d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915000;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_a6ae351697b62c825b05dd86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_98083bfc29353b9f5c0aec98.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897949;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_6a5b35f60b87cd0103a0cfbb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_ed4485a45ba3c07f908adaa6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_446324e6480f4843b0215f81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.711000;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_6124d479267a7e5304e0b2b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.931000;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_4272b3b366301abbb25fc73c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.736328;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_27e1b9adfd296e05e4a630c8.woff2')format("woff");}.fff{font-family:fff;line-height:1.002441;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);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-20.400000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.400000px;}
.v8{vertical-align:16.800000px;}
.v4{vertical-align:20.300400px;}
.v1{vertical-align:21.600000px;}
.v5{vertical-align:23.989200px;}
.v6{vertical-align:30.024000px;}
.ls5{letter-spacing:-6.660000px;}
.ls7{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.765000px;}
.lsf{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.255000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.003000px;}
.lsc{letter-spacing:0.003600px;}
.ls9{letter-spacing:0.006600px;}
.lsb{letter-spacing:0.007200px;}
.lsd{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.178500px;}
.ls0{letter-spacing:1.440000px;}
.ls2{letter-spacing:9.378000px;}
.ls11{letter-spacing:13.920000px;}
.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:-17.040000px;}
.ws8{word-spacing:-15.756000px;}
.ws31{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.750000px;}
.ws4{word-spacing:-12.690000px;}
.ws3{word-spacing:-9.450000px;}
.ws32{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.100000px;}
.ws7{word-spacing:-7.650000px;}
.ws34{word-spacing:-6.706800px;}
.ws2f{word-spacing:-2.640000px;}
.ws3d{word-spacing:-2.160000px;}
.ws24{word-spacing:-2.100000px;}
.wse{word-spacing:-1.938000px;}
.ws38{word-spacing:-1.920000px;}
.ws59{word-spacing:-1.734000px;}
.ws0{word-spacing:-1.512000px;}
.ws58{word-spacing:-1.326000px;}
.wsd{word-spacing:-1.173000px;}
.ws5a{word-spacing:-1.122000px;}
.ws26{word-spacing:-1.020000px;}
.wsc{word-spacing:-0.867000px;}
.ws1d{word-spacing:-0.780000px;}
.wsa{word-spacing:-0.720000px;}
.ws51{word-spacing:-0.510000px;}
.ws44{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.180000px;}
.ws25{word-spacing:-0.120000px;}
.ws1a{word-spacing:-0.060000px;}
.ws52{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.ws1c{word-spacing:0.060000px;}
.wsb{word-spacing:0.153000px;}
.ws43{word-spacing:0.162000px;}
.ws1e{word-spacing:0.180000px;}
.ws5c{word-spacing:0.255000px;}
.ws42{word-spacing:0.270000px;}
.ws3b{word-spacing:0.300000px;}
.ws14{word-spacing:0.480000px;}
.ws4a{word-spacing:0.561000px;}
.ws48{word-spacing:0.600000px;}
.ws30{word-spacing:0.660000px;}
.ws56{word-spacing:0.765000px;}
.ws2d{word-spacing:0.780000px;}
.ws13{word-spacing:0.900000px;}
.ws64{word-spacing:0.918000px;}
.ws62{word-spacing:1.020000px;}
.ws49{word-spacing:1.026000px;}
.ws2b{word-spacing:1.140000px;}
.ws18{word-spacing:1.200000px;}
.ws66{word-spacing:1.632000px;}
.ws4c{word-spacing:1.683000px;}
.ws61{word-spacing:2.193000px;}
.ws10{word-spacing:2.400000px;}
.ws53{word-spacing:2.448000px;}
.ws45{word-spacing:2.580000px;}
.ws23{word-spacing:2.700000px;}
.ws22{word-spacing:2.820000px;}
.ws4d{word-spacing:2.958000px;}
.ws2a{word-spacing:3.300000px;}
.wsf{word-spacing:3.360000px;}
.ws4e{word-spacing:3.825000px;}
.ws20{word-spacing:3.900000px;}
.ws47{word-spacing:3.960000px;}
.ws55{word-spacing:4.437000px;}
.ws36{word-spacing:4.440000px;}
.ws5d{word-spacing:4.539000px;}
.ws50{word-spacing:4.794000px;}
.ws1f{word-spacing:5.040000px;}
.ws60{word-spacing:5.100000px;}
.ws5b{word-spacing:5.304000px;}
.ws19{word-spacing:5.520000px;}
.ws3e{word-spacing:5.940000px;}
.ws4f{word-spacing:6.477000px;}
.ws17{word-spacing:6.600000px;}
.ws11{word-spacing:6.660000px;}
.ws46{word-spacing:6.780000px;}
.ws5e{word-spacing:7.191000px;}
.ws57{word-spacing:7.395000px;}
.ws63{word-spacing:7.446000px;}
.ws27{word-spacing:8.040000px;}
.ws4b{word-spacing:8.160000px;}
.ws3f{word-spacing:8.262000px;}
.ws28{word-spacing:8.640000px;}
.ws15{word-spacing:9.480000px;}
.ws65{word-spacing:9.486000px;}
.ws40{word-spacing:9.990000px;}
.ws41{word-spacing:10.314000px;}
.ws37{word-spacing:10.440000px;}
.ws12{word-spacing:10.560000px;}
.ws2e{word-spacing:10.800000px;}
.ws54{word-spacing:11.118000px;}
.ws5f{word-spacing:11.271000px;}
.ws3a{word-spacing:12.420000px;}
.ws39{word-spacing:13.800000px;}
.ws3c{word-spacing:14.904000px;}
.ws1b{word-spacing:20.460000px;}
.ws2c{word-spacing:21.540000px;}
.ws29{word-spacing:22.140000px;}
.ws21{word-spacing:27.060000px;}
.ws33{word-spacing:108.378000px;}
.ws35{word-spacing:242.352000px;}
._8{margin-left:-7.279200px;}
._10{margin-left:-5.968800px;}
._0{margin-left:-4.957200px;}
._a{margin-left:-3.496200px;}
._3{margin-left:-1.884600px;}
._9{width:1.383000px;}
._6{width:2.745600px;}
._7{width:3.753600px;}
._c{width:4.845000px;}
._11{width:6.445200px;}
._f{width:7.554000px;}
._d{width:9.082200px;}
._b{width:11.065800px;}
._e{width:12.320400px;}
._16{width:13.497600px;}
._22{width:14.662800px;}
._18{width:16.026000px;}
._19{width:17.221800px;}
._13{width:18.366000px;}
._5{width:20.142000px;}
._15{width:22.195200px;}
._12{width:23.730000px;}
._17{width:25.218000px;}
._14{width:27.679200px;}
._21{width:33.636000px;}
._2{width:51.246000px;}
._1e{width:125.334000px;}
._1c{width:152.334000px;}
._20{width:155.830200px;}
._1f{width:205.038000px;}
._1d{width:208.008000px;}
._1b{width:255.852000px;}
._1a{width:273.888000px;}
._4{width:539.454600px;}
._1{width:573.361200px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:21.600000px;}
.fse{font-size:25.200000px;}
.fs9{font-size:30.600000px;}
.fs8{font-size:32.400000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fsd{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:13.994700px;}
.y8{bottom:28.394700px;}
.y4{bottom:53.480250px;}
.y41{bottom:69.054000px;}
.y1{bottom:69.129000px;}
.y40{bottom:69.671100px;}
.y3{bottom:69.680250px;}
.y9e{bottom:127.359000px;}
.y7{bottom:127.564350px;}
.y3f{bottom:127.572750px;}
.y139{bottom:127.580100px;}
.y131{bottom:127.583100px;}
.y152{bottom:127.594800px;}
.y73{bottom:127.862100px;}
.y164{bottom:128.149800px;}
.y197{bottom:130.879050px;}
.y1d2{bottom:135.341550px;}
.y6{bottom:141.959100px;}
.y138{bottom:144.077100px;}
.y130{bottom:144.080100px;}
.y9d{bottom:145.719000px;}
.y3e{bottom:145.992750px;}
.y72{bottom:146.087100px;}
.y163{bottom:146.149800px;}
.y196{bottom:146.179050px;}
.y151{bottom:146.629800px;}
.y1d1{bottom:150.641550px;}
.ycb{bottom:154.877100px;}
.y143{bottom:155.011500px;}
.yf5{bottom:158.715450px;}
.y137{bottom:160.574100px;}
.y12f{bottom:160.577100px;}
.y195{bottom:161.479050px;}
.y9c{bottom:164.079000px;}
.y162{bottom:164.149800px;}
.y71{bottom:164.312100px;}
.y3d{bottom:164.412750px;}
.y150{bottom:165.664800px;}
.y1d0{bottom:165.941550px;}
.y142{bottom:171.508500px;}
.yca{bottom:172.877100px;}
.y194{bottom:176.779050px;}
.y136{bottom:177.071100px;}
.y12e{bottom:177.074100px;}
.y1cf{bottom:181.241550px;}
.y161{bottom:182.149800px;}
.y70{bottom:182.537100px;}
.yf4{bottom:182.583450px;}
.y3c{bottom:182.832750px;}
.y14f{bottom:184.699800px;}
.y141{bottom:188.005500px;}
.yc9{bottom:190.877100px;}
.y9b{bottom:190.929000px;}
.y193{bottom:192.079050px;}
.y135{bottom:193.568100px;}
.y12d{bottom:193.571100px;}
.y2d{bottom:195.207750px;}
.y1ce{bottom:196.541550px;}
.y160{bottom:200.149800px;}
.y6f{bottom:200.762100px;}
.y3b{bottom:201.252750px;}
.y14e{bottom:203.734800px;}
.yf3{bottom:206.451450px;}
.y192{bottom:207.379050px;}
.yc8{bottom:208.877100px;}
.y134{bottom:210.065100px;}
.y12c{bottom:210.068100px;}
.y1cd{bottom:211.841550px;}
.y2c{bottom:213.207750px;}
.y15f{bottom:218.149800px;}
.y6e{bottom:218.987100px;}
.y3a{bottom:219.672750px;}
.y191{bottom:222.679050px;}
.y14d{bottom:222.769800px;}
.y133{bottom:226.562100px;}
.y12b{bottom:226.565100px;}
.yc7{bottom:226.877100px;}
.y1cc{bottom:227.141550px;}
.yf2{bottom:230.319450px;}
.y2b{bottom:231.207750px;}
.y15e{bottom:236.149800px;}
.y6d{bottom:237.212100px;}
.y9a{bottom:237.789000px;}
.y190{bottom:237.979050px;}
.y39{bottom:238.092750px;}
.y14c{bottom:241.804800px;}
.y1cb{bottom:242.441550px;}
.y132{bottom:243.059100px;}
.y12a{bottom:243.062100px;}
.yc6{bottom:244.877100px;}
.y2a{bottom:249.207750px;}
.y18f{bottom:253.279050px;}
.y15d{bottom:254.149800px;}
.yf1{bottom:254.187450px;}
.y6c{bottom:255.437100px;}
.y99{bottom:256.149000px;}
.y38{bottom:256.512750px;}
.y1ca{bottom:257.741550px;}
.y129{bottom:259.559100px;}
.y14b{bottom:260.839800px;}
.yc5{bottom:262.877100px;}
.y29{bottom:267.207750px;}
.y18e{bottom:268.579050px;}
.y15c{bottom:272.149800px;}
.y1c9{bottom:273.041550px;}
.y6b{bottom:273.662100px;}
.y98{bottom:274.509000px;}
.y37{bottom:274.932750px;}
.yf0{bottom:278.055450px;}
.y14a{bottom:279.874800px;}
.yc4{bottom:280.877100px;}
.y18d{bottom:283.879050px;}
.y28{bottom:285.207750px;}
.y13c{bottom:286.729650px;}
.y1c8{bottom:288.341550px;}
.y15b{bottom:290.149800px;}
.y6a{bottom:291.887100px;}
.y97{bottom:292.869000px;}
.y36{bottom:293.352750px;}
.yc3{bottom:298.877100px;}
.y18c{bottom:299.179050px;}
.y13b{bottom:299.329650px;}
.yef{bottom:301.923450px;}
.y27{bottom:303.207750px;}
.y1c7{bottom:303.641550px;}
.y149{bottom:307.418100px;}
.y15a{bottom:308.149800px;}
.y69{bottom:310.112100px;}
.y96{bottom:311.229000px;}
.y35{bottom:311.772750px;}
.y18b{bottom:314.479050px;}
.yc2{bottom:316.877100px;}
.y1c6{bottom:318.941550px;}
.y26{bottom:321.207750px;}
.y13a{bottom:322.246050px;}
.yee{bottom:325.791450px;}
.y159{bottom:326.149800px;}
.y68{bottom:328.337100px;}
.y95{bottom:329.589000px;}
.y18a{bottom:329.779050px;}
.y34{bottom:330.192750px;}
.y1c5{bottom:334.241550px;}
.yc1{bottom:334.877100px;}
.y25{bottom:339.207750px;}
.y158{bottom:344.149800px;}
.y189{bottom:345.079050px;}
.y67{bottom:346.562100px;}
.y94{bottom:347.949000px;}
.y33{bottom:348.612750px;}
.y1c4{bottom:349.541550px;}
.yed{bottom:349.659450px;}
.yc0{bottom:352.877100px;}
.y24{bottom:357.207750px;}
.y148{bottom:357.975450px;}
.y188{bottom:360.379050px;}
.y157{bottom:362.149800px;}
.y66{bottom:364.787100px;}
.y1c3{bottom:364.841550px;}
.y93{bottom:366.309000px;}
.y32{bottom:367.032750px;}
.ybf{bottom:370.877100px;}
.y23{bottom:375.207750px;}
.y187{bottom:375.679050px;}
.y147{bottom:377.010450px;}
.y1c2{bottom:380.141550px;}
.y156{bottom:380.149800px;}
.yec{bottom:382.032450px;}
.yea{bottom:382.039950px;}
.y65{bottom:383.012100px;}
.y92{bottom:384.669000px;}
.y31{bottom:385.452750px;}
.ybe{bottom:388.877100px;}
.ye9{bottom:389.532450px;}
.y186{bottom:390.979050px;}
.y22{bottom:393.207750px;}
.y1c1{bottom:395.441550px;}
.y146{bottom:396.045450px;}
.yeb{bottom:397.030950px;}
.y155{bottom:398.149800px;}
.y64{bottom:401.237100px;}
.y91{bottom:403.029000px;}
.y30{bottom:403.872750px;}
.y185{bottom:406.279050px;}
.ybd{bottom:406.877100px;}
.y1c0{bottom:410.741550px;}
.y21{bottom:411.207750px;}
.y145{bottom:415.080450px;}
.y154{bottom:416.149800px;}
.y63{bottom:419.462100px;}
.y90{bottom:421.389000px;}
.y184{bottom:421.579050px;}
.y2f{bottom:422.292750px;}
.ybc{bottom:424.877100px;}
.y1bf{bottom:426.041550px;}
.ye8{bottom:432.678300px;}
.y144{bottom:434.115450px;}
.y153{bottom:434.149800px;}
.y62{bottom:437.687100px;}
.y20{bottom:437.711700px;}
.y8f{bottom:439.749000px;}
.y2e{bottom:440.712750px;}
.y1be{bottom:441.341550px;}
.ybb{bottom:442.877100px;}
.y183{bottom:445.383000px;}
.ye7{bottom:449.175300px;}
.y61{bottom:455.912100px;}
.y1bd{bottom:456.641550px;}
.y8e{bottom:458.109000px;}
.yba{bottom:460.877100px;}
.ye6{bottom:465.672300px;}
.y1f4{bottom:469.918500px;}
.y1bc{bottom:471.941550px;}
.y60{bottom:474.137100px;}
.y8d{bottom:476.469000px;}
.yb9{bottom:478.877100px;}
.ye5{bottom:482.169300px;}
.y1bb{bottom:487.241550px;}
.y1f3{bottom:487.918500px;}
.y5f{bottom:492.362100px;}
.y8c{bottom:494.829000px;}
.y182{bottom:494.883000px;}
.yb8{bottom:496.877100px;}
.y166{bottom:497.483250px;}
.ye4{bottom:498.666300px;}
.y1ba{bottom:502.541550px;}
.y5e{bottom:510.587100px;}
.y181{bottom:512.883000px;}
.y8b{bottom:513.189000px;}
.y165{bottom:513.980250px;}
.yb7{bottom:514.877100px;}
.y1f{bottom:517.005150px;}
.y1b9{bottom:517.841550px;}
.y5d{bottom:528.812100px;}
.y180{bottom:530.883000px;}
.y8a{bottom:531.549000px;}
.yb6{bottom:532.877100px;}
.y1b8{bottom:533.141550px;}
.y5c{bottom:547.037100px;}
.y1f2{bottom:548.438100px;}
.y1b7{bottom:548.441550px;}
.y17f{bottom:548.883000px;}
.y89{bottom:549.909000px;}
.yb5{bottom:550.877100px;}
.y1e{bottom:552.666900px;}
.y128{bottom:552.887100px;}
.y1f1{bottom:563.738100px;}
.y1b6{bottom:563.741550px;}
.y5b{bottom:565.262100px;}
.y17e{bottom:566.883000px;}
.y1d{bottom:567.061650px;}
.y88{bottom:568.269000px;}
.yb4{bottom:568.877100px;}
.y127{bottom:570.887100px;}
.y1f0{bottom:579.038100px;}
.y1b5{bottom:579.041550px;}
.y1c{bottom:581.456400px;}
.y5a{bottom:583.487100px;}
.y17d{bottom:584.883000px;}
.y87{bottom:586.629000px;}
.yb3{bottom:586.877100px;}
.y126{bottom:588.887100px;}
.y1ef{bottom:594.338100px;}
.y1b4{bottom:594.341550px;}
.y1b{bottom:595.851150px;}
.y10d{bottom:596.099400px;}
.ye3{bottom:599.474400px;}
.y59{bottom:601.712100px;}
.yb2{bottom:604.877100px;}
.y86{bottom:604.989000px;}
.y125{bottom:606.887100px;}
.y1ee{bottom:609.638100px;}
.y1b3{bottom:609.641550px;}
.y1a{bottom:610.245900px;}
.y17c{bottom:611.386950px;}
.y10c{bottom:614.099400px;}
.ye2{bottom:617.474400px;}
.y58{bottom:619.937100px;}
.yb1{bottom:622.877100px;}
.y85{bottom:623.349000px;}
.y19{bottom:624.640650px;}
.y124{bottom:624.887100px;}
.y1ed{bottom:624.938100px;}
.y1b2{bottom:624.941550px;}
.y10b{bottom:632.099400px;}
.ye1{bottom:635.474400px;}
.y57{bottom:638.162100px;}
.y18{bottom:639.060300px;}
.y1ec{bottom:640.238100px;}
.y1b1{bottom:640.241550px;}
.yb0{bottom:640.877100px;}
.y84{bottom:641.709000px;}
.y123{bottom:642.887100px;}
.y10a{bottom:650.099400px;}
.y17{bottom:653.455050px;}
.ye0{bottom:653.474400px;}
.y1eb{bottom:655.538100px;}
.y1b0{bottom:655.541550px;}
.y56{bottom:656.387100px;}
.y83{bottom:660.069000px;}
.y17b{bottom:660.886950px;}
.y122{bottom:660.887100px;}
.yaf{bottom:667.382100px;}
.y16{bottom:667.849800px;}
.y109{bottom:668.099400px;}
.y1ea{bottom:670.838100px;}
.y1af{bottom:670.841550px;}
.ydf{bottom:671.474400px;}
.y55{bottom:674.612100px;}
.y82{bottom:678.429000px;}
.y17a{bottom:678.886950px;}
.y121{bottom:678.887100px;}
.y15{bottom:682.244550px;}
.y108{bottom:686.099400px;}
.y1e9{bottom:686.138100px;}
.y1ae{bottom:686.141550px;}
.yde{bottom:689.474400px;}
.y54{bottom:692.837100px;}
.y14{bottom:696.639300px;}
.y179{bottom:696.886950px;}
.y120{bottom:696.887100px;}
.y1e8{bottom:701.438100px;}
.y1ad{bottom:701.441550px;}
.y107{bottom:704.099400px;}
.y81{bottom:705.279000px;}
.ydd{bottom:707.474400px;}
.y53{bottom:711.062100px;}
.yae{bottom:713.882100px;}
.y178{bottom:714.886950px;}
.y11f{bottom:714.887100px;}
.y1e7{bottom:716.738100px;}
.y1ac{bottom:716.741550px;}
.y106{bottom:722.099400px;}
.ydc{bottom:725.474400px;}
.y52{bottom:729.287100px;}
.yad{bottom:731.882100px;}
.y1e6{bottom:732.038100px;}
.y1ab{bottom:732.041550px;}
.y177{bottom:732.886950px;}
.y11e{bottom:732.887100px;}
.y105{bottom:740.099400px;}
.ydb{bottom:743.474400px;}
.y1e5{bottom:747.338100px;}
.y1aa{bottom:747.341550px;}
.y51{bottom:747.512100px;}
.yac{bottom:749.882100px;}
.y13{bottom:750.151050px;}
.y176{bottom:750.886950px;}
.y11d{bottom:750.887100px;}
.y80{bottom:752.139000px;}
.y104{bottom:758.099400px;}
.yda{bottom:761.474400px;}
.y1e4{bottom:762.638100px;}
.y1a9{bottom:762.641550px;}
.y12{bottom:764.551050px;}
.y50{bottom:765.737100px;}
.yab{bottom:767.882100px;}
.y175{bottom:768.886950px;}
.y11c{bottom:768.887100px;}
.y7f{bottom:770.499000px;}
.y103{bottom:776.099400px;}
.y1e3{bottom:777.938100px;}
.y1a8{bottom:777.941550px;}
.y11{bottom:778.951200px;}
.yd9{bottom:779.474400px;}
.y4f{bottom:783.962100px;}
.yaa{bottom:785.882100px;}
.y11b{bottom:786.884400px;}
.y174{bottom:786.886950px;}
.y7e{bottom:788.859000px;}
.y1e2{bottom:793.238100px;}
.y1a7{bottom:793.241550px;}
.y10{bottom:793.351200px;}
.y102{bottom:794.099400px;}
.yd8{bottom:797.474400px;}
.y4e{bottom:802.187100px;}
.ya9{bottom:803.882100px;}
.y11a{bottom:804.884400px;}
.y173{bottom:804.886950px;}
.yf{bottom:807.751050px;}
.y1e1{bottom:808.538100px;}
.y1a6{bottom:808.541550px;}
.y101{bottom:812.099400px;}
.y140{bottom:813.181350px;}
.yd7{bottom:815.474400px;}
.y7d{bottom:815.709000px;}
.y4d{bottom:820.412100px;}
.ya8{bottom:821.882100px;}
.y119{bottom:822.884400px;}
.y172{bottom:822.886950px;}
.y1e0{bottom:823.838100px;}
.y1a5{bottom:823.841550px;}
.y13f{bottom:829.678350px;}
.y100{bottom:830.099400px;}
.ye{bottom:831.933000px;}
.yd6{bottom:833.474400px;}
.y4c{bottom:838.637100px;}
.y1df{bottom:839.138100px;}
.y1a4{bottom:839.141550px;}
.ya7{bottom:839.882100px;}
.y118{bottom:840.884400px;}
.y171{bottom:840.886950px;}
.y7c{bottom:842.565600px;}
.y13e{bottom:846.175350px;}
.yff{bottom:848.099400px;}
.yd5{bottom:851.474400px;}
.y1de{bottom:854.438100px;}
.y1a3{bottom:854.441550px;}
.y4b{bottom:856.862100px;}
.y117{bottom:858.884400px;}
.y170{bottom:858.886950px;}
.y13d{bottom:862.672350px;}
.yfe{bottom:866.099400px;}
.ya6{bottom:866.387100px;}
.yd{bottom:867.592800px;}
.yd4{bottom:869.474400px;}
.y1dd{bottom:869.738100px;}
.y1a2{bottom:869.741550px;}
.y4a{bottom:875.087100px;}
.y116{bottom:876.884400px;}
.y16f{bottom:876.886950px;}
.yfd{bottom:884.099400px;}
.y1dc{bottom:885.038100px;}
.y1a1{bottom:885.041550px;}
.yd3{bottom:887.474400px;}
.y7b{bottom:892.667100px;}
.y49{bottom:893.312100px;}
.y115{bottom:894.884400px;}
.y16e{bottom:894.886950px;}
.y1db{bottom:900.338100px;}
.y1a0{bottom:900.341550px;}
.yc{bottom:900.592800px;}
.yfc{bottom:902.099400px;}
.yd2{bottom:905.474400px;}
.y7a{bottom:911.027100px;}
.y48{bottom:911.537100px;}
.y114{bottom:912.884400px;}
.y16d{bottom:912.886950px;}
.ya5{bottom:912.887100px;}
.y1da{bottom:915.638100px;}
.y19f{bottom:915.641550px;}
.yfb{bottom:920.099400px;}
.yd1{bottom:923.474400px;}
.y79{bottom:929.387100px;}
.y47{bottom:929.762100px;}
.y113{bottom:930.884400px;}
.y16c{bottom:930.886950px;}
.ya4{bottom:930.887100px;}
.y1d9{bottom:930.938100px;}
.y19e{bottom:930.941550px;}
.yfa{bottom:938.099400px;}
.yd0{bottom:941.474400px;}
.yb{bottom:942.096750px;}
.y1d8{bottom:946.238100px;}
.y19d{bottom:946.241550px;}
.y78{bottom:947.747100px;}
.y46{bottom:947.987100px;}
.y112{bottom:948.884400px;}
.y16b{bottom:948.886950px;}
.ya3{bottom:948.887100px;}
.yf9{bottom:956.099400px;}
.ycf{bottom:959.474400px;}
.y1d7{bottom:961.538100px;}
.y19c{bottom:961.541550px;}
.ya{bottom:963.696750px;}
.y77{bottom:966.107100px;}
.y45{bottom:966.212100px;}
.y111{bottom:966.884400px;}
.y16a{bottom:966.886950px;}
.ya2{bottom:966.887100px;}
.yf8{bottom:974.099400px;}
.y1d6{bottom:976.838100px;}
.y19b{bottom:976.841550px;}
.yce{bottom:977.474400px;}
.y44{bottom:984.437100px;}
.y76{bottom:984.467100px;}
.y110{bottom:984.884400px;}
.y169{bottom:984.886950px;}
.ya1{bottom:984.887100px;}
.yf7{bottom:992.099400px;}
.y1d5{bottom:992.138100px;}
.y19a{bottom:992.141550px;}
.ycd{bottom:995.477100px;}
.y5{bottom:998.635050px;}
.y43{bottom:1002.662100px;}
.y75{bottom:1002.827100px;}
.y10f{bottom:1002.884400px;}
.y168{bottom:1002.886950px;}
.ya0{bottom:1002.887100px;}
.y1d4{bottom:1007.438100px;}
.y199{bottom:1007.441550px;}
.yf6{bottom:1018.603350px;}
.y10e{bottom:1020.884400px;}
.y167{bottom:1020.886950px;}
.y2{bottom:1020.887100px;}
.y74{bottom:1021.187100px;}
.ycc{bottom:1021.982100px;}
.y1d3{bottom:1022.738100px;}
.y198{bottom:1022.741550px;}
.y9f{bottom:1073.166600px;}
.y42{bottom:1073.171100px;}
.ha{height:23.861426px;}
.hb{height:26.371582px;}
.h1a{height:29.893359px;}
.h1b{height:34.875586px;}
.h1c{height:37.104492px;}
.h16{height:38.340000px;}
.he{height:39.287109px;}
.h6{height:41.367188px;}
.h4{height:42.108398px;}
.h11{height:42.600000px;}
.h1d{height:43.652344px;}
.h5{height:43.952637px;}
.hc{height:44.161826px;}
.h2{height:44.447754px;}
.h15{height:44.574000px;}
.h17{height:44.604000px;}
.h10{height:46.538086px;}
.hf{height:49.123535px;}
.h9{height:49.522852px;}
.h7{height:50.400000px;}
.h3{height:51.708984px;}
.h12{height:52.061466px;}
.h18{height:52.072266px;}
.h13{height:55.025391px;}
.h19{height:55.036191px;}
.hd{height:55.380000px;}
.h14{height:68.364000px;}
.h8{height:84.000000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x6{left:106.299150px;}
.x5{left:127.560300px;}
.x9{left:148.818900px;}
.x15{left:313.467150px;}
.x16{left:350.067150px;}
.x14{left:395.484150px;}
.x7{left:461.349150px;}
.x2{left:481.353000px;}
.x8{left:482.604150px;}
.xc{left:491.171550px;}
.xb{left:502.244850px;}
.x4{left:516.113850px;}
.xd{left:557.821050px;}
.x12{left:571.767750px;}
.xa{left:598.850850px;}
.xe{left:639.118800px;}
.xf{left:650.323800px;}
.x13{left:735.590400px;}
.x10{left:758.715750px;}
.x11{left:764.993250px;}
.x1{left:786.525000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-18.133333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.800000pt;}
.v8{vertical-align:14.933333pt;}
.v4{vertical-align:18.044800pt;}
.v1{vertical-align:19.200000pt;}
.v5{vertical-align:21.323733pt;}
.v6{vertical-align:26.688000pt;}
.ls5{letter-spacing:-5.920000pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.680000pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.226667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.002667pt;}
.lsc{letter-spacing:0.003200pt;}
.ls9{letter-spacing:0.005867pt;}
.lsb{letter-spacing:0.006400pt;}
.lsd{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.158667pt;}
.ls0{letter-spacing:1.280000pt;}
.ls2{letter-spacing:8.336000pt;}
.ls11{letter-spacing:12.373333pt;}
.ws1{word-spacing:-15.146667pt;}
.ws8{word-spacing:-14.005333pt;}
.ws31{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.333333pt;}
.ws4{word-spacing:-11.280000pt;}
.ws3{word-spacing:-8.400000pt;}
.ws32{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.200000pt;}
.ws7{word-spacing:-6.800000pt;}
.ws34{word-spacing:-5.961600pt;}
.ws2f{word-spacing:-2.346667pt;}
.ws3d{word-spacing:-1.920000pt;}
.ws24{word-spacing:-1.866667pt;}
.wse{word-spacing:-1.722667pt;}
.ws38{word-spacing:-1.706667pt;}
.ws59{word-spacing:-1.541333pt;}
.ws0{word-spacing:-1.344000pt;}
.ws58{word-spacing:-1.178667pt;}
.wsd{word-spacing:-1.042667pt;}
.ws5a{word-spacing:-0.997333pt;}
.ws26{word-spacing:-0.906667pt;}
.wsc{word-spacing:-0.770667pt;}
.ws1d{word-spacing:-0.693333pt;}
.wsa{word-spacing:-0.640000pt;}
.ws51{word-spacing:-0.453333pt;}
.ws44{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.160000pt;}
.ws25{word-spacing:-0.106667pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws52{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.053333pt;}
.wsb{word-spacing:0.136000pt;}
.ws43{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.226667pt;}
.ws42{word-spacing:0.240000pt;}
.ws3b{word-spacing:0.266667pt;}
.ws14{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.498667pt;}
.ws48{word-spacing:0.533333pt;}
.ws30{word-spacing:0.586667pt;}
.ws56{word-spacing:0.680000pt;}
.ws2d{word-spacing:0.693333pt;}
.ws13{word-spacing:0.800000pt;}
.ws64{word-spacing:0.816000pt;}
.ws62{word-spacing:0.906667pt;}
.ws49{word-spacing:0.912000pt;}
.ws2b{word-spacing:1.013333pt;}
.ws18{word-spacing:1.066667pt;}
.ws66{word-spacing:1.450667pt;}
.ws4c{word-spacing:1.496000pt;}
.ws61{word-spacing:1.949333pt;}
.ws10{word-spacing:2.133333pt;}
.ws53{word-spacing:2.176000pt;}
.ws45{word-spacing:2.293333pt;}
.ws23{word-spacing:2.400000pt;}
.ws22{word-spacing:2.506667pt;}
.ws4d{word-spacing:2.629333pt;}
.ws2a{word-spacing:2.933333pt;}
.wsf{word-spacing:2.986667pt;}
.ws4e{word-spacing:3.400000pt;}
.ws20{word-spacing:3.466667pt;}
.ws47{word-spacing:3.520000pt;}
.ws55{word-spacing:3.944000pt;}
.ws36{word-spacing:3.946667pt;}
.ws5d{word-spacing:4.034667pt;}
.ws50{word-spacing:4.261333pt;}
.ws1f{word-spacing:4.480000pt;}
.ws60{word-spacing:4.533333pt;}
.ws5b{word-spacing:4.714667pt;}
.ws19{word-spacing:4.906667pt;}
.ws3e{word-spacing:5.280000pt;}
.ws4f{word-spacing:5.757333pt;}
.ws17{word-spacing:5.866667pt;}
.ws11{word-spacing:5.920000pt;}
.ws46{word-spacing:6.026667pt;}
.ws5e{word-spacing:6.392000pt;}
.ws57{word-spacing:6.573333pt;}
.ws63{word-spacing:6.618667pt;}
.ws27{word-spacing:7.146667pt;}
.ws4b{word-spacing:7.253333pt;}
.ws3f{word-spacing:7.344000pt;}
.ws28{word-spacing:7.680000pt;}
.ws15{word-spacing:8.426667pt;}
.ws65{word-spacing:8.432000pt;}
.ws40{word-spacing:8.880000pt;}
.ws41{word-spacing:9.168000pt;}
.ws37{word-spacing:9.280000pt;}
.ws12{word-spacing:9.386667pt;}
.ws2e{word-spacing:9.600000pt;}
.ws54{word-spacing:9.882667pt;}
.ws5f{word-spacing:10.018667pt;}
.ws3a{word-spacing:11.040000pt;}
.ws39{word-spacing:12.266667pt;}
.ws3c{word-spacing:13.248000pt;}
.ws1b{word-spacing:18.186667pt;}
.ws2c{word-spacing:19.146667pt;}
.ws29{word-spacing:19.680000pt;}
.ws21{word-spacing:24.053333pt;}
.ws33{word-spacing:96.336000pt;}
.ws35{word-spacing:215.424000pt;}
._8{margin-left:-6.470400pt;}
._10{margin-left:-5.305600pt;}
._0{margin-left:-4.406400pt;}
._a{margin-left:-3.107733pt;}
._3{margin-left:-1.675200pt;}
._9{width:1.229333pt;}
._6{width:2.440533pt;}
._7{width:3.336533pt;}
._c{width:4.306667pt;}
._11{width:5.729067pt;}
._f{width:6.714667pt;}
._d{width:8.073067pt;}
._b{width:9.836267pt;}
._e{width:10.951467pt;}
._16{width:11.997867pt;}
._22{width:13.033600pt;}
._18{width:14.245333pt;}
._19{width:15.308267pt;}
._13{width:16.325333pt;}
._5{width:17.904000pt;}
._15{width:19.729067pt;}
._12{width:21.093333pt;}
._17{width:22.416000pt;}
._14{width:24.603733pt;}
._21{width:29.898667pt;}
._2{width:45.552000pt;}
._1e{width:111.408000pt;}
._1c{width:135.408000pt;}
._20{width:138.515733pt;}
._1f{width:182.256000pt;}
._1d{width:184.896000pt;}
._1b{width:227.424000pt;}
._1a{width:243.456000pt;}
._4{width:479.515200pt;}
._1{width:509.654400pt;}
.fsc{font-size:19.200000pt;}
.fse{font-size:22.400000pt;}
.fs9{font-size:27.200000pt;}
.fs8{font-size:28.800000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fsd{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:12.439733pt;}
.y8{bottom:25.239733pt;}
.y4{bottom:47.538000pt;}
.y41{bottom:61.381333pt;}
.y1{bottom:61.448000pt;}
.y40{bottom:61.929867pt;}
.y3{bottom:61.938000pt;}
.y9e{bottom:113.208000pt;}
.y7{bottom:113.390533pt;}
.y3f{bottom:113.398000pt;}
.y139{bottom:113.404533pt;}
.y131{bottom:113.407200pt;}
.y152{bottom:113.417600pt;}
.y73{bottom:113.655200pt;}
.y164{bottom:113.910933pt;}
.y197{bottom:116.336933pt;}
.y1d2{bottom:120.303600pt;}
.y6{bottom:126.185867pt;}
.y138{bottom:128.068533pt;}
.y130{bottom:128.071200pt;}
.y9d{bottom:129.528000pt;}
.y3e{bottom:129.771333pt;}
.y72{bottom:129.855200pt;}
.y163{bottom:129.910933pt;}
.y196{bottom:129.936933pt;}
.y151{bottom:130.337600pt;}
.y1d1{bottom:133.903600pt;}
.ycb{bottom:137.668533pt;}
.y143{bottom:137.788000pt;}
.yf5{bottom:141.080400pt;}
.y137{bottom:142.732533pt;}
.y12f{bottom:142.735200pt;}
.y195{bottom:143.536933pt;}
.y9c{bottom:145.848000pt;}
.y162{bottom:145.910933pt;}
.y71{bottom:146.055200pt;}
.y3d{bottom:146.144667pt;}
.y150{bottom:147.257600pt;}
.y1d0{bottom:147.503600pt;}
.y142{bottom:152.452000pt;}
.yca{bottom:153.668533pt;}
.y194{bottom:157.136933pt;}
.y136{bottom:157.396533pt;}
.y12e{bottom:157.399200pt;}
.y1cf{bottom:161.103600pt;}
.y161{bottom:161.910933pt;}
.y70{bottom:162.255200pt;}
.yf4{bottom:162.296400pt;}
.y3c{bottom:162.518000pt;}
.y14f{bottom:164.177600pt;}
.y141{bottom:167.116000pt;}
.yc9{bottom:169.668533pt;}
.y9b{bottom:169.714667pt;}
.y193{bottom:170.736933pt;}
.y135{bottom:172.060533pt;}
.y12d{bottom:172.063200pt;}
.y2d{bottom:173.518000pt;}
.y1ce{bottom:174.703600pt;}
.y160{bottom:177.910933pt;}
.y6f{bottom:178.455200pt;}
.y3b{bottom:178.891333pt;}
.y14e{bottom:181.097600pt;}
.yf3{bottom:183.512400pt;}
.y192{bottom:184.336933pt;}
.yc8{bottom:185.668533pt;}
.y134{bottom:186.724533pt;}
.y12c{bottom:186.727200pt;}
.y1cd{bottom:188.303600pt;}
.y2c{bottom:189.518000pt;}
.y15f{bottom:193.910933pt;}
.y6e{bottom:194.655200pt;}
.y3a{bottom:195.264667pt;}
.y191{bottom:197.936933pt;}
.y14d{bottom:198.017600pt;}
.y133{bottom:201.388533pt;}
.y12b{bottom:201.391200pt;}
.yc7{bottom:201.668533pt;}
.y1cc{bottom:201.903600pt;}
.yf2{bottom:204.728400pt;}
.y2b{bottom:205.518000pt;}
.y15e{bottom:209.910933pt;}
.y6d{bottom:210.855200pt;}
.y9a{bottom:211.368000pt;}
.y190{bottom:211.536933pt;}
.y39{bottom:211.638000pt;}
.y14c{bottom:214.937600pt;}
.y1cb{bottom:215.503600pt;}
.y132{bottom:216.052533pt;}
.y12a{bottom:216.055200pt;}
.yc6{bottom:217.668533pt;}
.y2a{bottom:221.518000pt;}
.y18f{bottom:225.136933pt;}
.y15d{bottom:225.910933pt;}
.yf1{bottom:225.944400pt;}
.y6c{bottom:227.055200pt;}
.y99{bottom:227.688000pt;}
.y38{bottom:228.011333pt;}
.y1ca{bottom:229.103600pt;}
.y129{bottom:230.719200pt;}
.y14b{bottom:231.857600pt;}
.yc5{bottom:233.668533pt;}
.y29{bottom:237.518000pt;}
.y18e{bottom:238.736933pt;}
.y15c{bottom:241.910933pt;}
.y1c9{bottom:242.703600pt;}
.y6b{bottom:243.255200pt;}
.y98{bottom:244.008000pt;}
.y37{bottom:244.384667pt;}
.yf0{bottom:247.160400pt;}
.y14a{bottom:248.777600pt;}
.yc4{bottom:249.668533pt;}
.y18d{bottom:252.336933pt;}
.y28{bottom:253.518000pt;}
.y13c{bottom:254.870800pt;}
.y1c8{bottom:256.303600pt;}
.y15b{bottom:257.910933pt;}
.y6a{bottom:259.455200pt;}
.y97{bottom:260.328000pt;}
.y36{bottom:260.758000pt;}
.yc3{bottom:265.668533pt;}
.y18c{bottom:265.936933pt;}
.y13b{bottom:266.070800pt;}
.yef{bottom:268.376400pt;}
.y27{bottom:269.518000pt;}
.y1c7{bottom:269.903600pt;}
.y149{bottom:273.260533pt;}
.y15a{bottom:273.910933pt;}
.y69{bottom:275.655200pt;}
.y96{bottom:276.648000pt;}
.y35{bottom:277.131333pt;}
.y18b{bottom:279.536933pt;}
.yc2{bottom:281.668533pt;}
.y1c6{bottom:283.503600pt;}
.y26{bottom:285.518000pt;}
.y13a{bottom:286.440933pt;}
.yee{bottom:289.592400pt;}
.y159{bottom:289.910933pt;}
.y68{bottom:291.855200pt;}
.y95{bottom:292.968000pt;}
.y18a{bottom:293.136933pt;}
.y34{bottom:293.504667pt;}
.y1c5{bottom:297.103600pt;}
.yc1{bottom:297.668533pt;}
.y25{bottom:301.518000pt;}
.y158{bottom:305.910933pt;}
.y189{bottom:306.736933pt;}
.y67{bottom:308.055200pt;}
.y94{bottom:309.288000pt;}
.y33{bottom:309.878000pt;}
.y1c4{bottom:310.703600pt;}
.yed{bottom:310.808400pt;}
.yc0{bottom:313.668533pt;}
.y24{bottom:317.518000pt;}
.y148{bottom:318.200400pt;}
.y188{bottom:320.336933pt;}
.y157{bottom:321.910933pt;}
.y66{bottom:324.255200pt;}
.y1c3{bottom:324.303600pt;}
.y93{bottom:325.608000pt;}
.y32{bottom:326.251333pt;}
.ybf{bottom:329.668533pt;}
.y23{bottom:333.518000pt;}
.y187{bottom:333.936933pt;}
.y147{bottom:335.120400pt;}
.y1c2{bottom:337.903600pt;}
.y156{bottom:337.910933pt;}
.yec{bottom:339.584400pt;}
.yea{bottom:339.591067pt;}
.y65{bottom:340.455200pt;}
.y92{bottom:341.928000pt;}
.y31{bottom:342.624667pt;}
.ybe{bottom:345.668533pt;}
.ye9{bottom:346.251067pt;}
.y186{bottom:347.536933pt;}
.y22{bottom:349.518000pt;}
.y1c1{bottom:351.503600pt;}
.y146{bottom:352.040400pt;}
.yeb{bottom:352.916400pt;}
.y155{bottom:353.910933pt;}
.y64{bottom:356.655200pt;}
.y91{bottom:358.248000pt;}
.y30{bottom:358.998000pt;}
.y185{bottom:361.136933pt;}
.ybd{bottom:361.668533pt;}
.y1c0{bottom:365.103600pt;}
.y21{bottom:365.518000pt;}
.y145{bottom:368.960400pt;}
.y154{bottom:369.910933pt;}
.y63{bottom:372.855200pt;}
.y90{bottom:374.568000pt;}
.y184{bottom:374.736933pt;}
.y2f{bottom:375.371333pt;}
.ybc{bottom:377.668533pt;}
.y1bf{bottom:378.703600pt;}
.ye8{bottom:384.602933pt;}
.y144{bottom:385.880400pt;}
.y153{bottom:385.910933pt;}
.y62{bottom:389.055200pt;}
.y20{bottom:389.077067pt;}
.y8f{bottom:390.888000pt;}
.y2e{bottom:391.744667pt;}
.y1be{bottom:392.303600pt;}
.ybb{bottom:393.668533pt;}
.y183{bottom:395.896000pt;}
.ye7{bottom:399.266933pt;}
.y61{bottom:405.255200pt;}
.y1bd{bottom:405.903600pt;}
.y8e{bottom:407.208000pt;}
.yba{bottom:409.668533pt;}
.ye6{bottom:413.930933pt;}
.y1f4{bottom:417.705333pt;}
.y1bc{bottom:419.503600pt;}
.y60{bottom:421.455200pt;}
.y8d{bottom:423.528000pt;}
.yb9{bottom:425.668533pt;}
.ye5{bottom:428.594933pt;}
.y1bb{bottom:433.103600pt;}
.y1f3{bottom:433.705333pt;}
.y5f{bottom:437.655200pt;}
.y8c{bottom:439.848000pt;}
.y182{bottom:439.896000pt;}
.yb8{bottom:441.668533pt;}
.y166{bottom:442.207333pt;}
.ye4{bottom:443.258933pt;}
.y1ba{bottom:446.703600pt;}
.y5e{bottom:453.855200pt;}
.y181{bottom:455.896000pt;}
.y8b{bottom:456.168000pt;}
.y165{bottom:456.871333pt;}
.yb7{bottom:457.668533pt;}
.y1f{bottom:459.560133pt;}
.y1b9{bottom:460.303600pt;}
.y5d{bottom:470.055200pt;}
.y180{bottom:471.896000pt;}
.y8a{bottom:472.488000pt;}
.yb6{bottom:473.668533pt;}
.y1b8{bottom:473.903600pt;}
.y5c{bottom:486.255200pt;}
.y1f2{bottom:487.500533pt;}
.y1b7{bottom:487.503600pt;}
.y17f{bottom:487.896000pt;}
.y89{bottom:488.808000pt;}
.yb5{bottom:489.668533pt;}
.y1e{bottom:491.259467pt;}
.y128{bottom:491.455200pt;}
.y1f1{bottom:501.100533pt;}
.y1b6{bottom:501.103600pt;}
.y5b{bottom:502.455200pt;}
.y17e{bottom:503.896000pt;}
.y1d{bottom:504.054800pt;}
.y88{bottom:505.128000pt;}
.yb4{bottom:505.668533pt;}
.y127{bottom:507.455200pt;}
.y1f0{bottom:514.700533pt;}
.y1b5{bottom:514.703600pt;}
.y1c{bottom:516.850133pt;}
.y5a{bottom:518.655200pt;}
.y17d{bottom:519.896000pt;}
.y87{bottom:521.448000pt;}
.yb3{bottom:521.668533pt;}
.y126{bottom:523.455200pt;}
.y1ef{bottom:528.300533pt;}
.y1b4{bottom:528.303600pt;}
.y1b{bottom:529.645467pt;}
.y10d{bottom:529.866133pt;}
.ye3{bottom:532.866133pt;}
.y59{bottom:534.855200pt;}
.yb2{bottom:537.668533pt;}
.y86{bottom:537.768000pt;}
.y125{bottom:539.455200pt;}
.y1ee{bottom:541.900533pt;}
.y1b3{bottom:541.903600pt;}
.y1a{bottom:542.440800pt;}
.y17c{bottom:543.455067pt;}
.y10c{bottom:545.866133pt;}
.ye2{bottom:548.866133pt;}
.y58{bottom:551.055200pt;}
.yb1{bottom:553.668533pt;}
.y85{bottom:554.088000pt;}
.y19{bottom:555.236133pt;}
.y124{bottom:555.455200pt;}
.y1ed{bottom:555.500533pt;}
.y1b2{bottom:555.503600pt;}
.y10b{bottom:561.866133pt;}
.ye1{bottom:564.866133pt;}
.y57{bottom:567.255200pt;}
.y18{bottom:568.053600pt;}
.y1ec{bottom:569.100533pt;}
.y1b1{bottom:569.103600pt;}
.yb0{bottom:569.668533pt;}
.y84{bottom:570.408000pt;}
.y123{bottom:571.455200pt;}
.y10a{bottom:577.866133pt;}
.y17{bottom:580.848933pt;}
.ye0{bottom:580.866133pt;}
.y1eb{bottom:582.700533pt;}
.y1b0{bottom:582.703600pt;}
.y56{bottom:583.455200pt;}
.y83{bottom:586.728000pt;}
.y17b{bottom:587.455067pt;}
.y122{bottom:587.455200pt;}
.yaf{bottom:593.228533pt;}
.y16{bottom:593.644267pt;}
.y109{bottom:593.866133pt;}
.y1ea{bottom:596.300533pt;}
.y1af{bottom:596.303600pt;}
.ydf{bottom:596.866133pt;}
.y55{bottom:599.655200pt;}
.y82{bottom:603.048000pt;}
.y17a{bottom:603.455067pt;}
.y121{bottom:603.455200pt;}
.y15{bottom:606.439600pt;}
.y108{bottom:609.866133pt;}
.y1e9{bottom:609.900533pt;}
.y1ae{bottom:609.903600pt;}
.yde{bottom:612.866133pt;}
.y54{bottom:615.855200pt;}
.y14{bottom:619.234933pt;}
.y179{bottom:619.455067pt;}
.y120{bottom:619.455200pt;}
.y1e8{bottom:623.500533pt;}
.y1ad{bottom:623.503600pt;}
.y107{bottom:625.866133pt;}
.y81{bottom:626.914667pt;}
.ydd{bottom:628.866133pt;}
.y53{bottom:632.055200pt;}
.yae{bottom:634.561867pt;}
.y178{bottom:635.455067pt;}
.y11f{bottom:635.455200pt;}
.y1e7{bottom:637.100533pt;}
.y1ac{bottom:637.103600pt;}
.y106{bottom:641.866133pt;}
.ydc{bottom:644.866133pt;}
.y52{bottom:648.255200pt;}
.yad{bottom:650.561867pt;}
.y1e6{bottom:650.700533pt;}
.y1ab{bottom:650.703600pt;}
.y177{bottom:651.455067pt;}
.y11e{bottom:651.455200pt;}
.y105{bottom:657.866133pt;}
.ydb{bottom:660.866133pt;}
.y1e5{bottom:664.300533pt;}
.y1aa{bottom:664.303600pt;}
.y51{bottom:664.455200pt;}
.yac{bottom:666.561867pt;}
.y13{bottom:666.800933pt;}
.y176{bottom:667.455067pt;}
.y11d{bottom:667.455200pt;}
.y80{bottom:668.568000pt;}
.y104{bottom:673.866133pt;}
.yda{bottom:676.866133pt;}
.y1e4{bottom:677.900533pt;}
.y1a9{bottom:677.903600pt;}
.y12{bottom:679.600933pt;}
.y50{bottom:680.655200pt;}
.yab{bottom:682.561867pt;}
.y175{bottom:683.455067pt;}
.y11c{bottom:683.455200pt;}
.y7f{bottom:684.888000pt;}
.y103{bottom:689.866133pt;}
.y1e3{bottom:691.500533pt;}
.y1a8{bottom:691.503600pt;}
.y11{bottom:692.401067pt;}
.yd9{bottom:692.866133pt;}
.y4f{bottom:696.855200pt;}
.yaa{bottom:698.561867pt;}
.y11b{bottom:699.452800pt;}
.y174{bottom:699.455067pt;}
.y7e{bottom:701.208000pt;}
.y1e2{bottom:705.100533pt;}
.y1a7{bottom:705.103600pt;}
.y10{bottom:705.201067pt;}
.y102{bottom:705.866133pt;}
.yd8{bottom:708.866133pt;}
.y4e{bottom:713.055200pt;}
.ya9{bottom:714.561867pt;}
.y11a{bottom:715.452800pt;}
.y173{bottom:715.455067pt;}
.yf{bottom:718.000933pt;}
.y1e1{bottom:718.700533pt;}
.y1a6{bottom:718.703600pt;}
.y101{bottom:721.866133pt;}
.y140{bottom:722.827867pt;}
.yd7{bottom:724.866133pt;}
.y7d{bottom:725.074667pt;}
.y4d{bottom:729.255200pt;}
.ya8{bottom:730.561867pt;}
.y119{bottom:731.452800pt;}
.y172{bottom:731.455067pt;}
.y1e0{bottom:732.300533pt;}
.y1a5{bottom:732.303600pt;}
.y13f{bottom:737.491867pt;}
.y100{bottom:737.866133pt;}
.ye{bottom:739.496000pt;}
.yd6{bottom:740.866133pt;}
.y4c{bottom:745.455200pt;}
.y1df{bottom:745.900533pt;}
.y1a4{bottom:745.903600pt;}
.ya7{bottom:746.561867pt;}
.y118{bottom:747.452800pt;}
.y171{bottom:747.455067pt;}
.y7c{bottom:748.947200pt;}
.y13e{bottom:752.155867pt;}
.yff{bottom:753.866133pt;}
.yd5{bottom:756.866133pt;}
.y1de{bottom:759.500533pt;}
.y1a3{bottom:759.503600pt;}
.y4b{bottom:761.655200pt;}
.y117{bottom:763.452800pt;}
.y170{bottom:763.455067pt;}
.y13d{bottom:766.819867pt;}
.yfe{bottom:769.866133pt;}
.ya6{bottom:770.121867pt;}
.yd{bottom:771.193600pt;}
.yd4{bottom:772.866133pt;}
.y1dd{bottom:773.100533pt;}
.y1a2{bottom:773.103600pt;}
.y4a{bottom:777.855200pt;}
.y116{bottom:779.452800pt;}
.y16f{bottom:779.455067pt;}
.yfd{bottom:785.866133pt;}
.y1dc{bottom:786.700533pt;}
.y1a1{bottom:786.703600pt;}
.yd3{bottom:788.866133pt;}
.y7b{bottom:793.481867pt;}
.y49{bottom:794.055200pt;}
.y115{bottom:795.452800pt;}
.y16e{bottom:795.455067pt;}
.y1db{bottom:800.300533pt;}
.y1a0{bottom:800.303600pt;}
.yc{bottom:800.526933pt;}
.yfc{bottom:801.866133pt;}
.yd2{bottom:804.866133pt;}
.y7a{bottom:809.801867pt;}
.y48{bottom:810.255200pt;}
.y114{bottom:811.452800pt;}
.y16d{bottom:811.455067pt;}
.ya5{bottom:811.455200pt;}
.y1da{bottom:813.900533pt;}
.y19f{bottom:813.903600pt;}
.yfb{bottom:817.866133pt;}
.yd1{bottom:820.866133pt;}
.y79{bottom:826.121867pt;}
.y47{bottom:826.455200pt;}
.y113{bottom:827.452800pt;}
.y16c{bottom:827.455067pt;}
.ya4{bottom:827.455200pt;}
.y1d9{bottom:827.500533pt;}
.y19e{bottom:827.503600pt;}
.yfa{bottom:833.866133pt;}
.yd0{bottom:836.866133pt;}
.yb{bottom:837.419333pt;}
.y1d8{bottom:841.100533pt;}
.y19d{bottom:841.103600pt;}
.y78{bottom:842.441867pt;}
.y46{bottom:842.655200pt;}
.y112{bottom:843.452800pt;}
.y16b{bottom:843.455067pt;}
.ya3{bottom:843.455200pt;}
.yf9{bottom:849.866133pt;}
.ycf{bottom:852.866133pt;}
.y1d7{bottom:854.700533pt;}
.y19c{bottom:854.703600pt;}
.ya{bottom:856.619333pt;}
.y77{bottom:858.761867pt;}
.y45{bottom:858.855200pt;}
.y111{bottom:859.452800pt;}
.y16a{bottom:859.455067pt;}
.ya2{bottom:859.455200pt;}
.yf8{bottom:865.866133pt;}
.y1d6{bottom:868.300533pt;}
.y19b{bottom:868.303600pt;}
.yce{bottom:868.866133pt;}
.y44{bottom:875.055200pt;}
.y76{bottom:875.081867pt;}
.y110{bottom:875.452800pt;}
.y169{bottom:875.455067pt;}
.ya1{bottom:875.455200pt;}
.yf7{bottom:881.866133pt;}
.y1d5{bottom:881.900533pt;}
.y19a{bottom:881.903600pt;}
.ycd{bottom:884.868533pt;}
.y5{bottom:887.675600pt;}
.y43{bottom:891.255200pt;}
.y75{bottom:891.401867pt;}
.y10f{bottom:891.452800pt;}
.y168{bottom:891.455067pt;}
.ya0{bottom:891.455200pt;}
.y1d4{bottom:895.500533pt;}
.y199{bottom:895.503600pt;}
.yf6{bottom:905.425200pt;}
.y10e{bottom:907.452800pt;}
.y167{bottom:907.455067pt;}
.y2{bottom:907.455200pt;}
.y74{bottom:907.721867pt;}
.ycc{bottom:908.428533pt;}
.y1d3{bottom:909.100533pt;}
.y198{bottom:909.103600pt;}
.y9f{bottom:953.925867pt;}
.y42{bottom:953.929867pt;}
.ha{height:21.210156pt;}
.hb{height:23.441406pt;}
.h1a{height:26.571875pt;}
.h1b{height:31.000521pt;}
.h1c{height:32.981771pt;}
.h16{height:34.080000pt;}
.he{height:34.921875pt;}
.h6{height:36.770833pt;}
.h4{height:37.429688pt;}
.h11{height:37.866667pt;}
.h1d{height:38.802083pt;}
.h5{height:39.069010pt;}
.hc{height:39.254956pt;}
.h2{height:39.509115pt;}
.h15{height:39.621333pt;}
.h17{height:39.648000pt;}
.h10{height:41.367188pt;}
.hf{height:43.665365pt;}
.h9{height:44.020312pt;}
.h7{height:44.800000pt;}
.h3{height:45.963542pt;}
.h12{height:46.276858pt;}
.h18{height:46.286458pt;}
.h13{height:48.911458pt;}
.h19{height:48.921058pt;}
.hd{height:49.226667pt;}
.h14{height:60.768000pt;}
.h8{height:74.666667pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x6{left:94.488133pt;}
.x5{left:113.386933pt;}
.x9{left:132.283467pt;}
.x15{left:278.637467pt;}
.x16{left:311.170800pt;}
.x14{left:351.541467pt;}
.x7{left:410.088133pt;}
.x2{left:427.869333pt;}
.x8{left:428.981467pt;}
.xc{left:436.596933pt;}
.xb{left:446.439867pt;}
.x4{left:458.767867pt;}
.xd{left:495.840933pt;}
.x12{left:508.238000pt;}
.xa{left:532.311867pt;}
.xe{left:568.105600pt;}
.xf{left:578.065600pt;}
.x13{left:653.858133pt;}
.x10{left:674.414000pt;}
.x11{left:679.994000pt;}
.x1{left:699.133333pt;}
}




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