
    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_556139ec643b25cb55aa25fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_60cc5b713f5e41c64ee91e81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_5b37c90704de9c81fd675046.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_ac00c7ec09476b195b2cbea0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5cb8b061b8fdb89cb9fcd8de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_818731fc36a80676a12e1e2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_01aaef6fb4d9f9e8d1b39124.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_eacfdf060157bbc8abf4011e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_5e9a05628a61c0d47b4b41e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_7d30b509ab226423399ddb7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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_6fe60cdd10ad16f113a3def4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_275335c47bbd6e41c5e43328.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-0.738000px;}
.ls3a{letter-spacing:-0.702000px;}
.ls37{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.269400px;}
.ls24{letter-spacing:-0.256800px;}
.ls1b{letter-spacing:-0.188400px;}
.ls3d{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.053280px;}
.ls3b{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.018000px;}
.ls33{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls2f{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.120000px;}
.ls36{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls4{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.210240px;}
.ls18{letter-spacing:0.257040px;}
.ls2c{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls3e{letter-spacing:0.269400px;}
.ls38{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.468000px;}
.ls1e{letter-spacing:0.513360px;}
.ls34{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.817920px;}
.ls2b{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.620000px;}
.ls1f{letter-spacing:2.340000px;}
.ls19{letter-spacing:3.060000px;}
.ls2e{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.500000px;}
.ls22{letter-spacing:5.940000px;}
.ls6{letter-spacing:6.660000px;}
.ls29{letter-spacing:8.100000px;}
.ls17{letter-spacing:8.586720px;}
.ls9{letter-spacing:10.260000px;}
.ls1a{letter-spacing:10.980000px;}
.ls16{letter-spacing:11.700000px;}
.ls10{letter-spacing:13.140000px;}
.ls7{letter-spacing:13.860000px;}
.ls23{letter-spacing:14.580000px;}
.ls2a{letter-spacing:15.066720px;}
.ls26{letter-spacing:17.460000px;}
.ls20{letter-spacing:18.900000px;}
.ls21{letter-spacing:19.620000px;}
.ls8{letter-spacing:23.940000px;}
.ls14{letter-spacing:24.660000px;}
.ls1d{letter-spacing:25.380000px;}
.ls27{letter-spacing:42.840000px;}
.ls25{letter-spacing:44.562720px;}
.ls32{letter-spacing:108.180000px;}
.ls31{letter-spacing:108.300000px;}
.ls30{letter-spacing:108.900000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws17{word-spacing:-54.468000px;}
.ws16{word-spacing:-54.270000px;}
.ws15{word-spacing:-54.000000px;}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.580000px;}
.ws1d{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.680000px;}
.ws1f{word-spacing:-13.626000px;}
.ws18{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.482000px;}
.ws1e{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.140000px;}
.ws19{word-spacing:-12.798000px;}
.wsc{word-spacing:-12.780000px;}
.ws1c{word-spacing:-12.762000px;}
.wsd{word-spacing:-12.591600px;}
.wse{word-spacing:-12.523200px;}
.ws22{word-spacing:-12.420000px;}
.ws21{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.790600px;}
.ws6{word-spacing:-10.980000px;}
.ws0{word-spacing:-10.064160px;}
.ws9{word-spacing:-7.981920px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-3.425040px;}
._8{margin-left:-2.085840px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._4{width:3.666240px;}
._5{width:4.669200px;}
._2{width:6.156960px;}
._d{width:7.327920px;}
._e{width:8.528880px;}
._9{width:9.543360px;}
._7{width:10.975920px;}
._15{width:12.648720px;}
._b{width:13.741680px;}
._c{width:14.751600px;}
._a{width:16.708560px;}
._3{width:18.409920px;}
._16{width:19.464480px;}
._1b{width:20.676960px;}
._22{width:21.692880px;}
._10{width:22.708800px;}
._f{width:24.141600px;}
._11{width:25.577280px;}
._1c{width:26.583360px;}
._17{width:27.609120px;}
._20{width:28.684800px;}
._14{width:29.820240px;}
._1a{width:31.015440px;}
._19{width:32.330160px;}
._12{width:33.824160px;}
._13{width:34.960800px;}
._21{width:36.285600px;}
._1d{width:37.648800px;}
._1e{width:39.270480px;}
._1f{width:40.566960px;}
._18{width:41.891760px;}
._23{width:43.146000px;}
._24{width:45.773040px;}
._26{width:53.873280px;}
._28{width:107.481600px;}
._27{width:108.792000px;}
._25{width:120.888720px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsb{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs9{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:1.800000px;}
.y1e1{bottom:2.520000px;}
.yc6{bottom:2.700000px;}
.ycb{bottom:2.880000px;}
.y1c8{bottom:3.060000px;}
.y4e{bottom:3.600000px;}
.y3{bottom:4.320000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.yc8{bottom:10.080000px;}
.y111{bottom:10.260000px;}
.y50{bottom:10.800000px;}
.y53{bottom:11.160000px;}
.y1e2{bottom:16.380000px;}
.y144{bottom:17.280000px;}
.yc9{bottom:17.460000px;}
.y12c{bottom:17.490000px;}
.y1c6{bottom:18.360000px;}
.y51{bottom:19.800000px;}
.y52{bottom:20.520000px;}
.y108{bottom:24.660000px;}
.y104{bottom:24.840000px;}
.y14f{bottom:24.870000px;}
.y109{bottom:32.040000px;}
.y151{bottom:32.070000px;}
.y102{bottom:32.220000px;}
.y9{bottom:32.940000px;}
.y1c5{bottom:33.840000px;}
.y1cc{bottom:34.020000px;}
.y103{bottom:39.420000px;}
.y14e{bottom:39.450000px;}
.y10f{bottom:39.600000px;}
.y143{bottom:46.620000px;}
.y105{bottom:46.800000px;}
.y150{bottom:46.830000px;}
.y147{bottom:46.845000px;}
.y7{bottom:48.600000px;}
.y1c4{bottom:49.500000px;}
.y10b{bottom:54.000000px;}
.y148{bottom:54.045000px;}
.y110{bottom:54.180000px;}
.y10a{bottom:61.380000px;}
.y149{bottom:61.425000px;}
.y112{bottom:61.560000px;}
.y1cb{bottom:64.980000px;}
.y1c3{bottom:65.010000px;}
.y6{bottom:72.900000px;}
.y14a{bottom:76.005000px;}
.y10d{bottom:76.140000px;}
.y1c2{bottom:80.490000px;}
.y1bf{bottom:88.200000px;}
.y4c{bottom:90.540000px;}
.y140{bottom:94.140000px;}
.y1e3{bottom:95.580000px;}
.y1e0{bottom:97.020000px;}
.yc4{bottom:98.100000px;}
.y171{bottom:99.720000px;}
.yff{bottom:102.060000px;}
.y90{bottom:102.420000px;}
.y1be{bottom:105.480000px;}
.y4b{bottom:107.820000px;}
.y13f{bottom:111.420000px;}
.y12f{bottom:113.040000px;}
.yc3{bottom:115.380000px;}
.yfe{bottom:119.160000px;}
.y8f{bottom:119.520000px;}
.y170{bottom:121.500000px;}
.y1bd{bottom:122.760000px;}
.y4a{bottom:124.920000px;}
.y13e{bottom:128.520000px;}
.y12e{bottom:130.320000px;}
.yc2{bottom:132.660000px;}
.y1a2{bottom:135.360000px;}
.y1df{bottom:135.540000px;}
.yfd{bottom:136.440000px;}
.y8e{bottom:136.800000px;}
.y16f{bottom:138.780000px;}
.y1bc{bottom:140.040000px;}
.y49{bottom:142.200000px;}
.y12d{bottom:145.080000px;}
.y13d{bottom:145.800000px;}
.yc1{bottom:149.940000px;}
.y1a1{bottom:152.640000px;}
.y1de{bottom:152.820000px;}
.yfc{bottom:153.720000px;}
.y8d{bottom:154.080000px;}
.y16e{bottom:156.060000px;}
.y1bb{bottom:157.140000px;}
.y48{bottom:159.480000px;}
.y13c{bottom:163.080000px;}
.yc0{bottom:167.220000px;}
.y1a0{bottom:169.740000px;}
.y1dd{bottom:169.920000px;}
.yfb{bottom:171.000000px;}
.y8c{bottom:171.360000px;}
.y16d{bottom:173.340000px;}
.y1ba{bottom:174.420000px;}
.y12b{bottom:175.140000px;}
.y47{bottom:176.760000px;}
.y13b{bottom:180.360000px;}
.ybf{bottom:184.530000px;}
.y19f{bottom:187.050000px;}
.y1dc{bottom:187.230000px;}
.yfa{bottom:188.310000px;}
.y8b{bottom:188.670000px;}
.y16c{bottom:190.470000px;}
.y1b9{bottom:191.730000px;}
.y46{bottom:194.070000px;}
.y13a{bottom:197.670000px;}
.y4d{bottom:201.630000px;}
.y19e{bottom:204.330000px;}
.y1db{bottom:204.510000px;}
.y12a{bottom:205.230000px;}
.yf9{bottom:205.590000px;}
.y8a{bottom:205.770000px;}
.y16b{bottom:207.750000px;}
.y1b8{bottom:209.010000px;}
.y45{bottom:211.170000px;}
.y139{bottom:214.770000px;}
.ybe{bottom:218.910000px;}
.y19d{bottom:221.610000px;}
.y1da{bottom:221.790000px;}
.yf8{bottom:222.690000px;}
.y89{bottom:223.050000px;}
.y16a{bottom:225.030000px;}
.y1b7{bottom:226.290000px;}
.y44{bottom:228.450000px;}
.y138{bottom:232.050000px;}
.ybd{bottom:236.190000px;}
.y19c{bottom:238.890000px;}
.y1d9{bottom:239.070000px;}
.yf7{bottom:239.970000px;}
.y88{bottom:240.330000px;}
.y169{bottom:242.310000px;}
.y1b6{bottom:243.570000px;}
.y43{bottom:245.730000px;}
.y137{bottom:249.330000px;}
.y129{bottom:250.050000px;}
.ybc{bottom:253.470000px;}
.y19b{bottom:256.170000px;}
.yf6{bottom:257.250000px;}
.y87{bottom:257.610000px;}
.y168{bottom:259.590000px;}
.y1b5{bottom:260.670000px;}
.y42{bottom:262.290000px;}
.y136{bottom:266.610000px;}
.ybb{bottom:270.750000px;}
.y19a{bottom:273.270000px;}
.y1d8{bottom:273.450000px;}
.yf5{bottom:274.530000px;}
.y86{bottom:274.890000px;}
.y167{bottom:276.870000px;}
.y41{bottom:277.230000px;}
.y1b4{bottom:277.950000px;}
.y128{bottom:280.110000px;}
.y135{bottom:283.890000px;}
.yba{bottom:287.850000px;}
.y199{bottom:290.550000px;}
.y1d7{bottom:290.730000px;}
.y40{bottom:291.090000px;}
.yf4{bottom:291.810000px;}
.y85{bottom:292.170000px;}
.y166{bottom:293.970000px;}
.y1b3{bottom:295.230000px;}
.y134{bottom:301.170000px;}
.y3f{bottom:304.770000px;}
.yb9{bottom:305.130000px;}
.y198{bottom:307.830000px;}
.y1d6{bottom:308.010000px;}
.yf3{bottom:309.090000px;}
.y84{bottom:309.270000px;}
.y165{bottom:311.250000px;}
.y1b2{bottom:312.510000px;}
.y127{bottom:313.770000px;}
.y133{bottom:318.270000px;}
.y3e{bottom:318.630000px;}
.yb8{bottom:322.410000px;}
.y197{bottom:325.110000px;}
.y1d5{bottom:325.290000px;}
.yf2{bottom:326.190000px;}
.y83{bottom:326.550000px;}
.y164{bottom:328.530000px;}
.y1b1{bottom:329.790000px;}
.y126{bottom:331.050000px;}
.y3d{bottom:332.310000px;}
.y132{bottom:335.550000px;}
.yb7{bottom:339.690000px;}
.y196{bottom:342.390000px;}
.y1d4{bottom:342.570000px;}
.yf1{bottom:343.470000px;}
.y82{bottom:343.830000px;}
.y163{bottom:345.810000px;}
.y3c{bottom:346.170000px;}
.y1b0{bottom:347.070000px;}
.y125{bottom:348.330000px;}
.y131{bottom:352.830000px;}
.yb6{bottom:356.970000px;}
.y195{bottom:359.670000px;}
.y3b{bottom:360.030000px;}
.yf0{bottom:360.750000px;}
.y162{bottom:363.090000px;}
.y1af{bottom:364.170000px;}
.y124{bottom:365.430000px;}
.y81{bottom:365.610000px;}
.y130{bottom:370.110000px;}
.y3a{bottom:373.710000px;}
.yb5{bottom:374.250000px;}
.y1d3{bottom:376.950000px;}
.yef{bottom:378.030000px;}
.y161{bottom:380.370000px;}
.y1ae{bottom:381.450000px;}
.y123{bottom:382.710000px;}
.y80{bottom:387.390000px;}
.y39{bottom:387.570000px;}
.yb4{bottom:391.350000px;}
.y1d2{bottom:394.230000px;}
.yee{bottom:395.310000px;}
.y160{bottom:397.470000px;}
.y1ad{bottom:398.730000px;}
.y122{bottom:399.990000px;}
.y38{bottom:401.430000px;}
.y7f{bottom:404.670000px;}
.yb3{bottom:408.630000px;}
.y1d1{bottom:411.510000px;}
.yed{bottom:412.590000px;}
.y194{bottom:414.390000px;}
.y15f{bottom:414.750000px;}
.y37{bottom:415.110000px;}
.y1ac{bottom:416.010000px;}
.y121{bottom:417.270000px;}
.y7e{bottom:421.770000px;}
.yb2{bottom:425.955000px;}
.y1d0{bottom:428.835000px;}
.y36{bottom:429.015000px;}
.yec{bottom:429.735000px;}
.y15e{bottom:432.075000px;}
.y1ab{bottom:433.335000px;}
.y120{bottom:434.595000px;}
.y7d{bottom:439.095000px;}
.y35{bottom:442.875000px;}
.yb1{bottom:443.235000px;}
.y1cf{bottom:446.115000px;}
.yeb{bottom:447.015000px;}
.y15d{bottom:449.355000px;}
.y1aa{bottom:450.435000px;}
.y11f{bottom:451.875000px;}
.y7c{bottom:456.375000px;}
.y34{bottom:456.555000px;}
.yb0{bottom:460.515000px;}
.y1ce{bottom:463.215000px;}
.yea{bottom:464.295000px;}
.y15c{bottom:466.635000px;}
.y1a9{bottom:467.715000px;}
.y11e{bottom:468.975000px;}
.y193{bottom:469.155000px;}
.y33{bottom:470.415000px;}
.y7b{bottom:473.655000px;}
.yaf{bottom:477.795000px;}
.y1cd{bottom:480.495000px;}
.ye9{bottom:481.575000px;}
.y15b{bottom:483.735000px;}
.y32{bottom:484.275000px;}
.y1a8{bottom:484.995000px;}
.y11d{bottom:486.255000px;}
.y192{bottom:486.435000px;}
.y7a{bottom:490.935000px;}
.y1ca{bottom:494.535000px;}
.yae{bottom:494.895000px;}
.y31{bottom:497.955000px;}
.ye8{bottom:498.855000px;}
.y15a{bottom:501.015000px;}
.y11c{bottom:503.535000px;}
.y191{bottom:503.715000px;}
.y79{bottom:508.215000px;}
.y30{bottom:511.815000px;}
.yad{bottom:512.175000px;}
.ye7{bottom:515.955000px;}
.y159{bottom:518.295000px;}
.y11b{bottom:520.815000px;}
.y78{bottom:525.315000px;}
.y2f{bottom:525.675000px;}
.yac{bottom:529.455000px;}
.ye6{bottom:533.235000px;}
.y158{bottom:535.575000px;}
.y11a{bottom:538.095000px;}
.y2e{bottom:539.355000px;}
.y1a7{bottom:539.715000px;}
.y77{bottom:542.595000px;}
.yab{bottom:546.735000px;}
.ye5{bottom:550.515000px;}
.y157{bottom:552.855000px;}
.y2d{bottom:553.215000px;}
.y119{bottom:555.375000px;}
.y76{bottom:559.875000px;}
.yaa{bottom:564.015000px;}
.y2c{bottom:567.075000px;}
.ye4{bottom:567.795000px;}
.y156{bottom:570.135000px;}
.y1c9{bottom:572.115000px;}
.y118{bottom:572.475000px;}
.y190{bottom:572.655000px;}
.y75{bottom:577.155000px;}
.y2b{bottom:580.755000px;}
.ya9{bottom:581.295000px;}
.ye3{bottom:585.075000px;}
.y155{bottom:587.235000px;}
.y1c7{bottom:587.595000px;}
.y117{bottom:589.755000px;}
.y18f{bottom:589.935000px;}
.y74{bottom:594.435000px;}
.y2a{bottom:594.615000px;}
.ya8{bottom:598.395000px;}
.ye2{bottom:602.355000px;}
.y1c1{bottom:603.255000px;}
.y154{bottom:604.515000px;}
.y116{bottom:607.035000px;}
.y29{bottom:608.475000px;}
.y73{bottom:611.535000px;}
.y1a6{bottom:611.715000px;}
.ya7{bottom:615.675000px;}
.ye1{bottom:619.455000px;}
.y153{bottom:621.795000px;}
.y28{bottom:622.155000px;}
.y115{bottom:624.315000px;}
.y72{bottom:628.815000px;}
.y1a5{bottom:628.995000px;}
.ya6{bottom:632.955000px;}
.y27{bottom:636.015000px;}
.ye0{bottom:636.735000px;}
.y152{bottom:639.075000px;}
.y114{bottom:641.595000px;}
.y71{bottom:646.095000px;}
.y1a4{bottom:646.275000px;}
.y26{bottom:649.875000px;}
.ya5{bottom:650.235000px;}
.y14d{bottom:653.835000px;}
.ydf{bottom:654.015000px;}
.y113{bottom:658.695000px;}
.y18e{bottom:658.875000px;}
.y70{bottom:663.375000px;}
.y1a3{bottom:663.555000px;}
.y25{bottom:663.735000px;}
.ya4{bottom:667.545000px;}
.yde{bottom:671.325000px;}
.y10e{bottom:673.485000px;}
.y18d{bottom:676.185000px;}
.y6f{bottom:680.685000px;}
.y24{bottom:680.865000px;}
.ydd{bottom:688.605000px;}
.ya3{bottom:689.145000px;}
.y18c{bottom:693.465000px;}
.y1c0{bottom:696.345000px;}
.y23{bottom:697.965000px;}
.ydc{bottom:705.885000px;}
.y18b{bottom:710.565000px;}
.ya2{bottom:710.925000px;}
.y14c{bottom:713.265000px;}
.y6e{bottom:715.065000px;}
.y22{bottom:715.245000px;}
.ydb{bottom:722.985000px;}
.y18a{bottom:727.845000px;}
.ya1{bottom:728.205000px;}
.y6d{bottom:732.345000px;}
.y21{bottom:732.525000px;}
.yda{bottom:740.265000px;}
.y189{bottom:745.125000px;}
.ya0{bottom:746.565000px;}
.y10c{bottom:747.645000px;}
.y6c{bottom:749.625000px;}
.y20{bottom:749.805000px;}
.yd9{bottom:757.545000px;}
.y188{bottom:762.405000px;}
.y9f{bottom:763.845000px;}
.y6b{bottom:766.905000px;}
.y1f{bottom:767.085000px;}
.yd8{bottom:774.825000px;}
.y187{bottom:779.685000px;}
.y9e{bottom:782.205000px;}
.y6a{bottom:784.185000px;}
.y1e{bottom:784.365000px;}
.y14b{bottom:787.245000px;}
.yd7{bottom:792.105000px;}
.y186{bottom:796.965000px;}
.y9d{bottom:799.305000px;}
.y1d{bottom:801.465000px;}
.yd6{bottom:809.205000px;}
.y185{bottom:814.065000px;}
.y9c{bottom:817.665000px;}
.y69{bottom:818.565000px;}
.y1c{bottom:818.745000px;}
.yd5{bottom:826.485000px;}
.y184{bottom:831.345000px;}
.y9b{bottom:834.945000px;}
.y68{bottom:835.845000px;}
.y1b{bottom:836.025000px;}
.y107{bottom:836.385000px;}
.yd4{bottom:843.765000px;}
.y183{bottom:848.625000px;}
.y67{bottom:853.125000px;}
.y1a{bottom:853.305000px;}
.yd3{bottom:858.525000px;}
.y146{bottom:861.405000px;}
.y182{bottom:865.905000px;}
.y66{bottom:870.405000px;}
.y19{bottom:870.585000px;}
.y181{bottom:883.185000px;}
.y65{bottom:887.685000px;}
.y18{bottom:888.405000px;}
.yd2{bottom:888.585000px;}
.y180{bottom:900.285000px;}
.y64{bottom:904.785000px;}
.y9a{bottom:904.965000px;}
.y17{bottom:909.150000px;}
.y106{bottom:910.410000px;}
.y17f{bottom:917.610000px;}
.yd1{bottom:918.690000px;}
.y63{bottom:922.110000px;}
.y99{bottom:922.290000px;}
.y16{bottom:929.850000px;}
.yd0{bottom:934.170000px;}
.y17e{bottom:934.890000px;}
.y62{bottom:939.390000px;}
.y98{bottom:939.570000px;}
.y145{bottom:950.190000px;}
.y15{bottom:950.550000px;}
.y17d{bottom:952.170000px;}
.y61{bottom:956.670000px;}
.y97{bottom:956.850000px;}
.ycf{bottom:964.230000px;}
.y17c{bottom:969.450000px;}
.y101{bottom:969.810000px;}
.y14{bottom:971.250000px;}
.y60{bottom:973.950000px;}
.y96{bottom:974.130000px;}
.y17b{bottom:986.730000px;}
.y5f{bottom:991.230000px;}
.y13{bottom:991.950000px;}
.yce{bottom:994.290000px;}
.y17a{bottom:1003.830000px;}
.y5e{bottom:1008.330000px;}
.y95{bottom:1008.510000px;}
.y142{bottom:1009.590000px;}
.y12{bottom:1012.650000px;}
.y179{bottom:1021.110000px;}
.ycd{bottom:1024.350000px;}
.y5d{bottom:1025.610000px;}
.y94{bottom:1025.790000px;}
.y100{bottom:1029.210000px;}
.y11{bottom:1033.350000px;}
.y178{bottom:1038.390000px;}
.y5c{bottom:1042.890000px;}
.y93{bottom:1043.070000px;}
.y10{bottom:1054.050000px;}
.ycc{bottom:1054.410000px;}
.y177{bottom:1055.670000px;}
.y5b{bottom:1060.170000px;}
.y92{bottom:1060.350000px;}
.y176{bottom:1072.950000px;}
.yf{bottom:1074.750000px;}
.y5a{bottom:1077.450000px;}
.y91{bottom:1077.630000px;}
.y141{bottom:1083.570000px;}
.yca{bottom:1084.470000px;}
.y175{bottom:1090.230000px;}
.ye{bottom:1094.730000px;}
.yc7{bottom:1099.950000px;}
.y174{bottom:1107.330000px;}
.y59{bottom:1111.830000px;}
.yd{bottom:1112.010000px;}
.y173{bottom:1124.610000px;}
.y58{bottom:1129.110000px;}
.yc{bottom:1129.290000px;}
.yc5{bottom:1130.010000px;}
.y172{bottom:1141.890000px;}
.y57{bottom:1146.390000px;}
.yb{bottom:1146.570000px;}
.y56{bottom:1163.700000px;}
.ya{bottom:1163.880000px;}
.y55{bottom:1180.260000px;}
.y5{bottom:1188.000000px;}
.y4f{bottom:1192.320000px;}
.y1{bottom:1200.060000px;}
.h34{height:5.653125px;}
.h1a{height:14.580000px;}
.h1e{height:14.760000px;}
.h2a{height:15.480000px;}
.h2f{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h15{height:28.080000px;}
.h1c{height:29.340000px;}
.h1f{height:29.376000px;}
.h16{height:30.209062px;}
.h17{height:32.835938px;}
.h11{height:34.884492px;}
.h31{height:35.280000px;}
.h1d{height:36.967148px;}
.h3{height:38.089687px;}
.h10{height:39.760312px;}
.h32{height:40.985156px;}
.h12{height:43.215117px;}
.h25{height:43.920000px;}
.h24{height:44.100000px;}
.h2d{height:44.507812px;}
.hf{height:47.321367px;}
.h6{height:47.344922px;}
.h33{height:48.616875px;}
.h9{height:50.068125px;}
.h1b{height:50.171484px;}
.h2b{height:52.971680px;}
.h4{height:52.998047px;}
.h2e{height:53.709961px;}
.h27{height:58.500000px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h20{height:58.680000px;}
.h29{height:58.716000px;}
.h18{height:60.226875px;}
.h19{height:61.423863px;}
.hd{height:62.261719px;}
.ha{height:65.884219px;}
.h13{height:66.960000px;}
.hc{height:72.562500px;}
.h26{height:73.260000px;}
.h21{height:73.296000px;}
.h23{height:73.440000px;}
.h30{height:77.580000px;}
.h28{height:87.876000px;}
.h22{height:88.020000px;}
.h2c{height:93.096000px;}
.h14{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.w1e{width:84.960000px;}
.w15{width:89.640000px;}
.w13{width:91.080000px;}
.w10{width:92.916000px;}
.w11{width:96.840000px;}
.w12{width:98.496000px;}
.wf{width:102.420000px;}
.w14{width:102.996000px;}
.w19{width:124.056000px;}
.w1a{width:127.656000px;}
.wc{width:136.980000px;}
.w18{width:137.880000px;}
.w1b{width:140.040000px;}
.w1c{width:146.376000px;}
.w3{width:157.530000px;}
.w8{width:228.990000px;}
.wd{width:243.975000px;}
.w4{width:253.110000px;}
.w16{width:254.055000px;}
.w2{width:269.670000px;}
.w17{width:286.410000px;}
.we{width:296.490000px;}
.wa{width:434.415000px;}
.w1f{width:595.545000px;}
.w6{width:680.325000px;}
.w1d{width:682.485000px;}
.wb{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:1.980000px;}
.x49{left:5.220000px;}
.x2{left:8.100000px;}
.x1e{left:9.360000px;}
.x3c{left:12.600000px;}
.x2b{left:16.560000px;}
.x2e{left:19.800000px;}
.x33{left:20.880000px;}
.x2d{left:24.840000px;}
.x38{left:29.520000px;}
.x31{left:30.600000px;}
.x3d{left:32.760000px;}
.x4{left:35.640000px;}
.x3f{left:37.800000px;}
.x40{left:40.680000px;}
.x26{left:43.554000px;}
.x6{left:50.040000px;}
.x3b{left:52.554000px;}
.x45{left:55.074000px;}
.x28{left:68.265000px;}
.x47{left:74.334000px;}
.x1b{left:95.796000px;}
.x21{left:99.900000px;}
.x1c{left:104.256000px;}
.x1{left:106.416000px;}
.x36{left:115.415987px;}
.xa{left:119.915987px;}
.x24{left:127.655987px;}
.x43{left:133.235987px;}
.x20{left:138.990000px;}
.xd{left:145.475987px;}
.x1a{left:157.709987px;}
.x25{left:159.329987px;}
.xe{left:161.669987px;}
.x19{left:162.929987px;}
.xf{left:171.749987px;}
.x2a{left:176.609987px;}
.x9{left:179.849987px;}
.x22{left:196.770000px;}
.x48{left:199.470000px;}
.x2c{left:210.270000px;}
.x27{left:244.830000px;}
.xb{left:251.489987px;}
.x39{left:257.249987px;}
.x10{left:276.509987px;}
.x3a{left:290.954987px;}
.x12{left:300.494987px;}
.x2f{left:303.915000px;}
.x16{left:325.874987px;}
.x8{left:327.459000px;}
.x44{left:328.539000px;}
.x23{left:331.599000px;}
.x1d{left:333.255000px;}
.x1f{left:354.495000px;}
.x3e{left:370.515000px;}
.x3{left:376.095000px;}
.x30{left:401.475000px;}
.x11{left:405.074987px;}
.x15{left:410.114987px;}
.x42{left:418.574987px;}
.xc{left:446.474987px;}
.x29{left:489.525000px;}
.x37{left:499.605000px;}
.x32{left:500.865000px;}
.x5{left:533.625000px;}
.x17{left:565.844987px;}
.x34{left:592.665000px;}
.x13{left:596.984987px;}
.x14{left:612.824987px;}
.x41{left:639.645000px;}
.x18{left:661.244987px;}
.x35{left:696.390000px;}
.x7{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.656000pt;}
.ls3a{letter-spacing:-0.624000pt;}
.ls37{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.239467pt;}
.ls24{letter-spacing:-0.228267pt;}
.ls1b{letter-spacing:-0.167467pt;}
.ls3d{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3b{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.016000pt;}
.ls33{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls2f{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls36{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls4{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.186880pt;}
.ls18{letter-spacing:0.228480pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls3e{letter-spacing:0.239467pt;}
.ls38{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.416000pt;}
.ls1e{letter-spacing:0.456320pt;}
.ls34{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.727040pt;}
.ls2b{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.720000pt;}
.ls2e{letter-spacing:3.360000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls22{letter-spacing:5.280000pt;}
.ls6{letter-spacing:5.920000pt;}
.ls29{letter-spacing:7.200000pt;}
.ls17{letter-spacing:7.632640pt;}
.ls9{letter-spacing:9.120000pt;}
.ls1a{letter-spacing:9.760000pt;}
.ls16{letter-spacing:10.400000pt;}
.ls10{letter-spacing:11.680000pt;}
.ls7{letter-spacing:12.320000pt;}
.ls23{letter-spacing:12.960000pt;}
.ls2a{letter-spacing:13.392640pt;}
.ls26{letter-spacing:15.520000pt;}
.ls20{letter-spacing:16.800000pt;}
.ls21{letter-spacing:17.440000pt;}
.ls8{letter-spacing:21.280000pt;}
.ls14{letter-spacing:21.920000pt;}
.ls1d{letter-spacing:22.560000pt;}
.ls27{letter-spacing:38.080000pt;}
.ls25{letter-spacing:39.611307pt;}
.ls32{letter-spacing:96.160000pt;}
.ls31{letter-spacing:96.266667pt;}
.ls30{letter-spacing:96.800000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws17{word-spacing:-48.416000pt;}
.ws16{word-spacing:-48.240000pt;}
.ws15{word-spacing:-48.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.240000pt;}
.wsf{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.160000pt;}
.ws1f{word-spacing:-12.112000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.984000pt;}
.ws1e{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws19{word-spacing:-11.376000pt;}
.wsc{word-spacing:-11.360000pt;}
.ws1c{word-spacing:-11.344000pt;}
.wsd{word-spacing:-11.192533pt;}
.wse{word-spacing:-11.131733pt;}
.ws22{word-spacing:-11.040000pt;}
.ws21{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.480533pt;}
.ws6{word-spacing:-9.760000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws9{word-spacing:-7.095040pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-3.044480pt;}
._8{margin-left:-1.854080pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._4{width:3.258880pt;}
._5{width:4.150400pt;}
._2{width:5.472853pt;}
._d{width:6.513707pt;}
._e{width:7.581227pt;}
._9{width:8.482987pt;}
._7{width:9.756373pt;}
._15{width:11.243307pt;}
._b{width:12.214827pt;}
._c{width:13.112533pt;}
._a{width:14.852053pt;}
._3{width:16.364373pt;}
._16{width:17.301760pt;}
._1b{width:18.379520pt;}
._22{width:19.282560pt;}
._10{width:20.185600pt;}
._f{width:21.459200pt;}
._11{width:22.735360pt;}
._1c{width:23.629653pt;}
._17{width:24.541440pt;}
._20{width:25.497600pt;}
._14{width:26.506880pt;}
._1a{width:27.569280pt;}
._19{width:28.737920pt;}
._12{width:30.065920pt;}
._13{width:31.076267pt;}
._21{width:32.253867pt;}
._1d{width:33.465600pt;}
._1e{width:34.907093pt;}
._1f{width:36.059520pt;}
._18{width:37.237120pt;}
._23{width:38.352000pt;}
._24{width:40.687147pt;}
._26{width:47.887360pt;}
._28{width:95.539200pt;}
._27{width:96.704000pt;}
._25{width:107.456640pt;}
.fsb{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs9{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:1.600000pt;}
.y1e1{bottom:2.240000pt;}
.yc6{bottom:2.400000pt;}
.ycb{bottom:2.560000pt;}
.y1c8{bottom:2.720000pt;}
.y4e{bottom:3.200000pt;}
.y3{bottom:3.840000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.yc8{bottom:8.960000pt;}
.y111{bottom:9.120000pt;}
.y50{bottom:9.600000pt;}
.y53{bottom:9.920000pt;}
.y1e2{bottom:14.560000pt;}
.y144{bottom:15.360000pt;}
.yc9{bottom:15.520000pt;}
.y12c{bottom:15.546667pt;}
.y1c6{bottom:16.320000pt;}
.y51{bottom:17.600000pt;}
.y52{bottom:18.240000pt;}
.y108{bottom:21.920000pt;}
.y104{bottom:22.080000pt;}
.y14f{bottom:22.106667pt;}
.y109{bottom:28.480000pt;}
.y151{bottom:28.506667pt;}
.y102{bottom:28.640000pt;}
.y9{bottom:29.280000pt;}
.y1c5{bottom:30.080000pt;}
.y1cc{bottom:30.240000pt;}
.y103{bottom:35.040000pt;}
.y14e{bottom:35.066667pt;}
.y10f{bottom:35.200000pt;}
.y143{bottom:41.440000pt;}
.y105{bottom:41.600000pt;}
.y150{bottom:41.626667pt;}
.y147{bottom:41.640000pt;}
.y7{bottom:43.200000pt;}
.y1c4{bottom:44.000000pt;}
.y10b{bottom:48.000000pt;}
.y148{bottom:48.040000pt;}
.y110{bottom:48.160000pt;}
.y10a{bottom:54.560000pt;}
.y149{bottom:54.600000pt;}
.y112{bottom:54.720000pt;}
.y1cb{bottom:57.760000pt;}
.y1c3{bottom:57.786667pt;}
.y6{bottom:64.800000pt;}
.y14a{bottom:67.560000pt;}
.y10d{bottom:67.680000pt;}
.y1c2{bottom:71.546667pt;}
.y1bf{bottom:78.400000pt;}
.y4c{bottom:80.480000pt;}
.y140{bottom:83.680000pt;}
.y1e3{bottom:84.960000pt;}
.y1e0{bottom:86.240000pt;}
.yc4{bottom:87.200000pt;}
.y171{bottom:88.640000pt;}
.yff{bottom:90.720000pt;}
.y90{bottom:91.040000pt;}
.y1be{bottom:93.760000pt;}
.y4b{bottom:95.840000pt;}
.y13f{bottom:99.040000pt;}
.y12f{bottom:100.480000pt;}
.yc3{bottom:102.560000pt;}
.yfe{bottom:105.920000pt;}
.y8f{bottom:106.240000pt;}
.y170{bottom:108.000000pt;}
.y1bd{bottom:109.120000pt;}
.y4a{bottom:111.040000pt;}
.y13e{bottom:114.240000pt;}
.y12e{bottom:115.840000pt;}
.yc2{bottom:117.920000pt;}
.y1a2{bottom:120.320000pt;}
.y1df{bottom:120.480000pt;}
.yfd{bottom:121.280000pt;}
.y8e{bottom:121.600000pt;}
.y16f{bottom:123.360000pt;}
.y1bc{bottom:124.480000pt;}
.y49{bottom:126.400000pt;}
.y12d{bottom:128.960000pt;}
.y13d{bottom:129.600000pt;}
.yc1{bottom:133.280000pt;}
.y1a1{bottom:135.680000pt;}
.y1de{bottom:135.840000pt;}
.yfc{bottom:136.640000pt;}
.y8d{bottom:136.960000pt;}
.y16e{bottom:138.720000pt;}
.y1bb{bottom:139.680000pt;}
.y48{bottom:141.760000pt;}
.y13c{bottom:144.960000pt;}
.yc0{bottom:148.640000pt;}
.y1a0{bottom:150.880000pt;}
.y1dd{bottom:151.040000pt;}
.yfb{bottom:152.000000pt;}
.y8c{bottom:152.320000pt;}
.y16d{bottom:154.080000pt;}
.y1ba{bottom:155.040000pt;}
.y12b{bottom:155.680000pt;}
.y47{bottom:157.120000pt;}
.y13b{bottom:160.320000pt;}
.ybf{bottom:164.026667pt;}
.y19f{bottom:166.266667pt;}
.y1dc{bottom:166.426667pt;}
.yfa{bottom:167.386667pt;}
.y8b{bottom:167.706667pt;}
.y16c{bottom:169.306667pt;}
.y1b9{bottom:170.426667pt;}
.y46{bottom:172.506667pt;}
.y13a{bottom:175.706667pt;}
.y4d{bottom:179.226667pt;}
.y19e{bottom:181.626667pt;}
.y1db{bottom:181.786667pt;}
.y12a{bottom:182.426667pt;}
.yf9{bottom:182.746667pt;}
.y8a{bottom:182.906667pt;}
.y16b{bottom:184.666667pt;}
.y1b8{bottom:185.786667pt;}
.y45{bottom:187.706667pt;}
.y139{bottom:190.906667pt;}
.ybe{bottom:194.586667pt;}
.y19d{bottom:196.986667pt;}
.y1da{bottom:197.146667pt;}
.yf8{bottom:197.946667pt;}
.y89{bottom:198.266667pt;}
.y16a{bottom:200.026667pt;}
.y1b7{bottom:201.146667pt;}
.y44{bottom:203.066667pt;}
.y138{bottom:206.266667pt;}
.ybd{bottom:209.946667pt;}
.y19c{bottom:212.346667pt;}
.y1d9{bottom:212.506667pt;}
.yf7{bottom:213.306667pt;}
.y88{bottom:213.626667pt;}
.y169{bottom:215.386667pt;}
.y1b6{bottom:216.506667pt;}
.y43{bottom:218.426667pt;}
.y137{bottom:221.626667pt;}
.y129{bottom:222.266667pt;}
.ybc{bottom:225.306667pt;}
.y19b{bottom:227.706667pt;}
.yf6{bottom:228.666667pt;}
.y87{bottom:228.986667pt;}
.y168{bottom:230.746667pt;}
.y1b5{bottom:231.706667pt;}
.y42{bottom:233.146667pt;}
.y136{bottom:236.986667pt;}
.ybb{bottom:240.666667pt;}
.y19a{bottom:242.906667pt;}
.y1d8{bottom:243.066667pt;}
.yf5{bottom:244.026667pt;}
.y86{bottom:244.346667pt;}
.y167{bottom:246.106667pt;}
.y41{bottom:246.426667pt;}
.y1b4{bottom:247.066667pt;}
.y128{bottom:248.986667pt;}
.y135{bottom:252.346667pt;}
.yba{bottom:255.866667pt;}
.y199{bottom:258.266667pt;}
.y1d7{bottom:258.426667pt;}
.y40{bottom:258.746667pt;}
.yf4{bottom:259.386667pt;}
.y85{bottom:259.706667pt;}
.y166{bottom:261.306667pt;}
.y1b3{bottom:262.426667pt;}
.y134{bottom:267.706667pt;}
.y3f{bottom:270.906667pt;}
.yb9{bottom:271.226667pt;}
.y198{bottom:273.626667pt;}
.y1d6{bottom:273.786667pt;}
.yf3{bottom:274.746667pt;}
.y84{bottom:274.906667pt;}
.y165{bottom:276.666667pt;}
.y1b2{bottom:277.786667pt;}
.y127{bottom:278.906667pt;}
.y133{bottom:282.906667pt;}
.y3e{bottom:283.226667pt;}
.yb8{bottom:286.586667pt;}
.y197{bottom:288.986667pt;}
.y1d5{bottom:289.146667pt;}
.yf2{bottom:289.946667pt;}
.y83{bottom:290.266667pt;}
.y164{bottom:292.026667pt;}
.y1b1{bottom:293.146667pt;}
.y126{bottom:294.266667pt;}
.y3d{bottom:295.386667pt;}
.y132{bottom:298.266667pt;}
.yb7{bottom:301.946667pt;}
.y196{bottom:304.346667pt;}
.y1d4{bottom:304.506667pt;}
.yf1{bottom:305.306667pt;}
.y82{bottom:305.626667pt;}
.y163{bottom:307.386667pt;}
.y3c{bottom:307.706667pt;}
.y1b0{bottom:308.506667pt;}
.y125{bottom:309.626667pt;}
.y131{bottom:313.626667pt;}
.yb6{bottom:317.306667pt;}
.y195{bottom:319.706667pt;}
.y3b{bottom:320.026667pt;}
.yf0{bottom:320.666667pt;}
.y162{bottom:322.746667pt;}
.y1af{bottom:323.706667pt;}
.y124{bottom:324.826667pt;}
.y81{bottom:324.986667pt;}
.y130{bottom:328.986667pt;}
.y3a{bottom:332.186667pt;}
.yb5{bottom:332.666667pt;}
.y1d3{bottom:335.066667pt;}
.yef{bottom:336.026667pt;}
.y161{bottom:338.106667pt;}
.y1ae{bottom:339.066667pt;}
.y123{bottom:340.186667pt;}
.y80{bottom:344.346667pt;}
.y39{bottom:344.506667pt;}
.yb4{bottom:347.866667pt;}
.y1d2{bottom:350.426667pt;}
.yee{bottom:351.386667pt;}
.y160{bottom:353.306667pt;}
.y1ad{bottom:354.426667pt;}
.y122{bottom:355.546667pt;}
.y38{bottom:356.826667pt;}
.y7f{bottom:359.706667pt;}
.yb3{bottom:363.226667pt;}
.y1d1{bottom:365.786667pt;}
.yed{bottom:366.746667pt;}
.y194{bottom:368.346667pt;}
.y15f{bottom:368.666667pt;}
.y37{bottom:368.986667pt;}
.y1ac{bottom:369.786667pt;}
.y121{bottom:370.906667pt;}
.y7e{bottom:374.906667pt;}
.yb2{bottom:378.626667pt;}
.y1d0{bottom:381.186667pt;}
.y36{bottom:381.346667pt;}
.yec{bottom:381.986667pt;}
.y15e{bottom:384.066667pt;}
.y1ab{bottom:385.186667pt;}
.y120{bottom:386.306667pt;}
.y7d{bottom:390.306667pt;}
.y35{bottom:393.666667pt;}
.yb1{bottom:393.986667pt;}
.y1cf{bottom:396.546667pt;}
.yeb{bottom:397.346667pt;}
.y15d{bottom:399.426667pt;}
.y1aa{bottom:400.386667pt;}
.y11f{bottom:401.666667pt;}
.y7c{bottom:405.666667pt;}
.y34{bottom:405.826667pt;}
.yb0{bottom:409.346667pt;}
.y1ce{bottom:411.746667pt;}
.yea{bottom:412.706667pt;}
.y15c{bottom:414.786667pt;}
.y1a9{bottom:415.746667pt;}
.y11e{bottom:416.866667pt;}
.y193{bottom:417.026667pt;}
.y33{bottom:418.146667pt;}
.y7b{bottom:421.026667pt;}
.yaf{bottom:424.706667pt;}
.y1cd{bottom:427.106667pt;}
.ye9{bottom:428.066667pt;}
.y15b{bottom:429.986667pt;}
.y32{bottom:430.466667pt;}
.y1a8{bottom:431.106667pt;}
.y11d{bottom:432.226667pt;}
.y192{bottom:432.386667pt;}
.y7a{bottom:436.386667pt;}
.y1ca{bottom:439.586667pt;}
.yae{bottom:439.906667pt;}
.y31{bottom:442.626667pt;}
.ye8{bottom:443.426667pt;}
.y15a{bottom:445.346667pt;}
.y11c{bottom:447.586667pt;}
.y191{bottom:447.746667pt;}
.y79{bottom:451.746667pt;}
.y30{bottom:454.946667pt;}
.yad{bottom:455.266667pt;}
.ye7{bottom:458.626667pt;}
.y159{bottom:460.706667pt;}
.y11b{bottom:462.946667pt;}
.y78{bottom:466.946667pt;}
.y2f{bottom:467.266667pt;}
.yac{bottom:470.626667pt;}
.ye6{bottom:473.986667pt;}
.y158{bottom:476.066667pt;}
.y11a{bottom:478.306667pt;}
.y2e{bottom:479.426667pt;}
.y1a7{bottom:479.746667pt;}
.y77{bottom:482.306667pt;}
.yab{bottom:485.986667pt;}
.ye5{bottom:489.346667pt;}
.y157{bottom:491.426667pt;}
.y2d{bottom:491.746667pt;}
.y119{bottom:493.666667pt;}
.y76{bottom:497.666667pt;}
.yaa{bottom:501.346667pt;}
.y2c{bottom:504.066667pt;}
.ye4{bottom:504.706667pt;}
.y156{bottom:506.786667pt;}
.y1c9{bottom:508.546667pt;}
.y118{bottom:508.866667pt;}
.y190{bottom:509.026667pt;}
.y75{bottom:513.026667pt;}
.y2b{bottom:516.226667pt;}
.ya9{bottom:516.706667pt;}
.ye3{bottom:520.066667pt;}
.y155{bottom:521.986667pt;}
.y1c7{bottom:522.306667pt;}
.y117{bottom:524.226667pt;}
.y18f{bottom:524.386667pt;}
.y74{bottom:528.386667pt;}
.y2a{bottom:528.546667pt;}
.ya8{bottom:531.906667pt;}
.ye2{bottom:535.426667pt;}
.y1c1{bottom:536.226667pt;}
.y154{bottom:537.346667pt;}
.y116{bottom:539.586667pt;}
.y29{bottom:540.866667pt;}
.y73{bottom:543.586667pt;}
.y1a6{bottom:543.746667pt;}
.ya7{bottom:547.266667pt;}
.ye1{bottom:550.626667pt;}
.y153{bottom:552.706667pt;}
.y28{bottom:553.026667pt;}
.y115{bottom:554.946667pt;}
.y72{bottom:558.946667pt;}
.y1a5{bottom:559.106667pt;}
.ya6{bottom:562.626667pt;}
.y27{bottom:565.346667pt;}
.ye0{bottom:565.986667pt;}
.y152{bottom:568.066667pt;}
.y114{bottom:570.306667pt;}
.y71{bottom:574.306667pt;}
.y1a4{bottom:574.466667pt;}
.y26{bottom:577.666667pt;}
.ya5{bottom:577.986667pt;}
.y14d{bottom:581.186667pt;}
.ydf{bottom:581.346667pt;}
.y113{bottom:585.506667pt;}
.y18e{bottom:585.666667pt;}
.y70{bottom:589.666667pt;}
.y1a3{bottom:589.826667pt;}
.y25{bottom:589.986667pt;}
.ya4{bottom:593.373333pt;}
.yde{bottom:596.733333pt;}
.y10e{bottom:598.653333pt;}
.y18d{bottom:601.053333pt;}
.y6f{bottom:605.053333pt;}
.y24{bottom:605.213333pt;}
.ydd{bottom:612.093333pt;}
.ya3{bottom:612.573333pt;}
.y18c{bottom:616.413333pt;}
.y1c0{bottom:618.973333pt;}
.y23{bottom:620.413333pt;}
.ydc{bottom:627.453333pt;}
.y18b{bottom:631.613333pt;}
.ya2{bottom:631.933333pt;}
.y14c{bottom:634.013333pt;}
.y6e{bottom:635.613333pt;}
.y22{bottom:635.773333pt;}
.ydb{bottom:642.653333pt;}
.y18a{bottom:646.973333pt;}
.ya1{bottom:647.293333pt;}
.y6d{bottom:650.973333pt;}
.y21{bottom:651.133333pt;}
.yda{bottom:658.013333pt;}
.y189{bottom:662.333333pt;}
.ya0{bottom:663.613333pt;}
.y10c{bottom:664.573333pt;}
.y6c{bottom:666.333333pt;}
.y20{bottom:666.493333pt;}
.yd9{bottom:673.373333pt;}
.y188{bottom:677.693333pt;}
.y9f{bottom:678.973333pt;}
.y6b{bottom:681.693333pt;}
.y1f{bottom:681.853333pt;}
.yd8{bottom:688.733333pt;}
.y187{bottom:693.053333pt;}
.y9e{bottom:695.293333pt;}
.y6a{bottom:697.053333pt;}
.y1e{bottom:697.213333pt;}
.y14b{bottom:699.773333pt;}
.yd7{bottom:704.093333pt;}
.y186{bottom:708.413333pt;}
.y9d{bottom:710.493333pt;}
.y1d{bottom:712.413333pt;}
.yd6{bottom:719.293333pt;}
.y185{bottom:723.613333pt;}
.y9c{bottom:726.813333pt;}
.y69{bottom:727.613333pt;}
.y1c{bottom:727.773333pt;}
.yd5{bottom:734.653333pt;}
.y184{bottom:738.973333pt;}
.y9b{bottom:742.173333pt;}
.y68{bottom:742.973333pt;}
.y1b{bottom:743.133333pt;}
.y107{bottom:743.453333pt;}
.yd4{bottom:750.013333pt;}
.y183{bottom:754.333333pt;}
.y67{bottom:758.333333pt;}
.y1a{bottom:758.493333pt;}
.yd3{bottom:763.133333pt;}
.y146{bottom:765.693333pt;}
.y182{bottom:769.693333pt;}
.y66{bottom:773.693333pt;}
.y19{bottom:773.853333pt;}
.y181{bottom:785.053333pt;}
.y65{bottom:789.053333pt;}
.y18{bottom:789.693333pt;}
.yd2{bottom:789.853333pt;}
.y180{bottom:800.253333pt;}
.y64{bottom:804.253333pt;}
.y9a{bottom:804.413333pt;}
.y17{bottom:808.133333pt;}
.y106{bottom:809.253333pt;}
.y17f{bottom:815.653333pt;}
.yd1{bottom:816.613333pt;}
.y63{bottom:819.653333pt;}
.y99{bottom:819.813333pt;}
.y16{bottom:826.533333pt;}
.yd0{bottom:830.373333pt;}
.y17e{bottom:831.013333pt;}
.y62{bottom:835.013333pt;}
.y98{bottom:835.173333pt;}
.y145{bottom:844.613333pt;}
.y15{bottom:844.933333pt;}
.y17d{bottom:846.373333pt;}
.y61{bottom:850.373333pt;}
.y97{bottom:850.533333pt;}
.ycf{bottom:857.093333pt;}
.y17c{bottom:861.733333pt;}
.y101{bottom:862.053333pt;}
.y14{bottom:863.333333pt;}
.y60{bottom:865.733333pt;}
.y96{bottom:865.893333pt;}
.y17b{bottom:877.093333pt;}
.y5f{bottom:881.093333pt;}
.y13{bottom:881.733333pt;}
.yce{bottom:883.813333pt;}
.y17a{bottom:892.293333pt;}
.y5e{bottom:896.293333pt;}
.y95{bottom:896.453333pt;}
.y142{bottom:897.413333pt;}
.y12{bottom:900.133333pt;}
.y179{bottom:907.653333pt;}
.ycd{bottom:910.533333pt;}
.y5d{bottom:911.653333pt;}
.y94{bottom:911.813333pt;}
.y100{bottom:914.853333pt;}
.y11{bottom:918.533333pt;}
.y178{bottom:923.013333pt;}
.y5c{bottom:927.013333pt;}
.y93{bottom:927.173333pt;}
.y10{bottom:936.933333pt;}
.ycc{bottom:937.253333pt;}
.y177{bottom:938.373333pt;}
.y5b{bottom:942.373333pt;}
.y92{bottom:942.533333pt;}
.y176{bottom:953.733333pt;}
.yf{bottom:955.333333pt;}
.y5a{bottom:957.733333pt;}
.y91{bottom:957.893333pt;}
.y141{bottom:963.173333pt;}
.yca{bottom:963.973333pt;}
.y175{bottom:969.093333pt;}
.ye{bottom:973.093333pt;}
.yc7{bottom:977.733333pt;}
.y174{bottom:984.293333pt;}
.y59{bottom:988.293333pt;}
.yd{bottom:988.453333pt;}
.y173{bottom:999.653333pt;}
.y58{bottom:1003.653333pt;}
.yc{bottom:1003.813333pt;}
.yc5{bottom:1004.453333pt;}
.y172{bottom:1015.013333pt;}
.y57{bottom:1019.013333pt;}
.yb{bottom:1019.173333pt;}
.y56{bottom:1034.400000pt;}
.ya{bottom:1034.560000pt;}
.y55{bottom:1049.120000pt;}
.y5{bottom:1056.000000pt;}
.y4f{bottom:1059.840000pt;}
.y1{bottom:1066.720000pt;}
.h34{height:5.025000pt;}
.h1a{height:12.960000pt;}
.h1e{height:13.120000pt;}
.h2a{height:13.760000pt;}
.h2f{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h15{height:24.960000pt;}
.h1c{height:26.080000pt;}
.h1f{height:26.112000pt;}
.h16{height:26.852500pt;}
.h17{height:29.187500pt;}
.h11{height:31.008437pt;}
.h31{height:31.360000pt;}
.h1d{height:32.859687pt;}
.h3{height:33.857500pt;}
.h10{height:35.342500pt;}
.h32{height:36.431250pt;}
.h12{height:38.413438pt;}
.h25{height:39.040000pt;}
.h24{height:39.200000pt;}
.h2d{height:39.562500pt;}
.hf{height:42.063437pt;}
.h6{height:42.084375pt;}
.h33{height:43.215000pt;}
.h9{height:44.505000pt;}
.h1b{height:44.596875pt;}
.h2b{height:47.085938pt;}
.h4{height:47.109375pt;}
.h2e{height:47.742188pt;}
.h27{height:52.000000pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h20{height:52.160000pt;}
.h29{height:52.192000pt;}
.h18{height:53.535000pt;}
.h19{height:54.598989pt;}
.hd{height:55.343750pt;}
.ha{height:58.563750pt;}
.h13{height:59.520000pt;}
.hc{height:64.500000pt;}
.h26{height:65.120000pt;}
.h21{height:65.152000pt;}
.h23{height:65.280000pt;}
.h30{height:68.960000pt;}
.h28{height:78.112000pt;}
.h22{height:78.240000pt;}
.h2c{height:82.752000pt;}
.h14{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.w1e{width:75.520000pt;}
.w15{width:79.680000pt;}
.w13{width:80.960000pt;}
.w10{width:82.592000pt;}
.w11{width:86.080000pt;}
.w12{width:87.552000pt;}
.wf{width:91.040000pt;}
.w14{width:91.552000pt;}
.w19{width:110.272000pt;}
.w1a{width:113.472000pt;}
.wc{width:121.760000pt;}
.w18{width:122.560000pt;}
.w1b{width:124.480000pt;}
.w1c{width:130.112000pt;}
.w3{width:140.026667pt;}
.w8{width:203.546667pt;}
.wd{width:216.866667pt;}
.w4{width:224.986667pt;}
.w16{width:225.826667pt;}
.w2{width:239.706667pt;}
.w17{width:254.586667pt;}
.we{width:263.546667pt;}
.wa{width:386.146667pt;}
.w1f{width:529.373333pt;}
.w6{width:604.733333pt;}
.w1d{width:606.653333pt;}
.wb{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.760000pt;}
.x49{left:4.640000pt;}
.x2{left:7.200000pt;}
.x1e{left:8.320000pt;}
.x3c{left:11.200000pt;}
.x2b{left:14.720000pt;}
.x2e{left:17.600000pt;}
.x33{left:18.560000pt;}
.x2d{left:22.080000pt;}
.x38{left:26.240000pt;}
.x31{left:27.200000pt;}
.x3d{left:29.120000pt;}
.x4{left:31.680000pt;}
.x3f{left:33.600000pt;}
.x40{left:36.160000pt;}
.x26{left:38.714667pt;}
.x6{left:44.480000pt;}
.x3b{left:46.714667pt;}
.x45{left:48.954667pt;}
.x28{left:60.680000pt;}
.x47{left:66.074667pt;}
.x1b{left:85.152000pt;}
.x21{left:88.800000pt;}
.x1c{left:92.672000pt;}
.x1{left:94.592000pt;}
.x36{left:102.591988pt;}
.xa{left:106.591988pt;}
.x24{left:113.471988pt;}
.x43{left:118.431988pt;}
.x20{left:123.546667pt;}
.xd{left:129.311988pt;}
.x1a{left:140.186655pt;}
.x25{left:141.626655pt;}
.xe{left:143.706655pt;}
.x19{left:144.826655pt;}
.xf{left:152.666655pt;}
.x2a{left:156.986655pt;}
.x9{left:159.866655pt;}
.x22{left:174.906667pt;}
.x48{left:177.306667pt;}
.x2c{left:186.906667pt;}
.x27{left:217.626667pt;}
.xb{left:223.546655pt;}
.x39{left:228.666655pt;}
.x10{left:245.786655pt;}
.x3a{left:258.626655pt;}
.x12{left:267.106655pt;}
.x2f{left:270.146667pt;}
.x16{left:289.666655pt;}
.x8{left:291.074667pt;}
.x44{left:292.034667pt;}
.x23{left:294.754667pt;}
.x1d{left:296.226667pt;}
.x1f{left:315.106667pt;}
.x3e{left:329.346667pt;}
.x3{left:334.306667pt;}
.x30{left:356.866667pt;}
.x11{left:360.066655pt;}
.x15{left:364.546655pt;}
.x42{left:372.066655pt;}
.xc{left:396.866655pt;}
.x29{left:435.133333pt;}
.x37{left:444.093333pt;}
.x32{left:445.213333pt;}
.x5{left:474.333333pt;}
.x17{left:502.973322pt;}
.x34{left:526.813333pt;}
.x13{left:530.653322pt;}
.x14{left:544.733322pt;}
.x41{left:568.573333pt;}
.x18{left:587.773322pt;}
.x35{left:619.013333pt;}
.x7{left:699.333322pt;}
}




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