
    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_e6026dd16399a05979a1b3c1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_885a19e7abcd012b12febb94.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_e4ea04f7bf48540fb3040d21.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_195ad417744d05cfc468cae0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_66c3d2580a17f25367d26261.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52227b755c6f05d3f4b3aa5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_895302a331a53034d45e1811.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ec2e47b7b3164f4d9217cd9d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7c52838aacbe400e5abf559f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f2edeb179e9ebd3e3b5239e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_573027ed2ce3dca6064c85c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ffd{font-family:ffd;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: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_3d6d1aaad1a2b1a6a458ae4f.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);}
.v1{vertical-align:-79.920000px;}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-40.320000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-0.738000px;}
.ls3a{letter-spacing:-0.702000px;}
.ls39{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.291600px;}
.ls37{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:-0.051840px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.018000px;}
.ls30{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.ls35{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.121200px;}
.ls38{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.131040px;}
.ls9{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.210240px;}
.ls1e{letter-spacing:0.241200px;}
.lse{letter-spacing:0.259920px;}
.ls3b{letter-spacing:0.269400px;}
.ls33{letter-spacing:0.270000px;}
.ls25{letter-spacing:0.298800px;}
.ls2a{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.460200px;}
.ls34{letter-spacing:0.468000px;}
.ls27{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.900000px;}
.ls22{letter-spacing:2.340000px;}
.ls5{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.780000px;}
.ls1a{letter-spacing:5.220000px;}
.ls13{letter-spacing:5.940000px;}
.ls12{letter-spacing:7.380000px;}
.ls14{letter-spacing:8.586720px;}
.ls1f{letter-spacing:10.260000px;}
.ls4{letter-spacing:10.980000px;}
.ls2d{letter-spacing:11.700000px;}
.ls2f{letter-spacing:11.880000px;}
.ls18{letter-spacing:12.420000px;}
.ls2b{letter-spacing:13.860000px;}
.ls26{letter-spacing:15.066720px;}
.ls20{letter-spacing:18.900000px;}
.ls15{letter-spacing:20.340000px;}
.lsd{letter-spacing:21.060000px;}
.ls10{letter-spacing:21.780000px;}
.ls11{letter-spacing:22.500000px;}
.ls31{letter-spacing:26.820000px;}
.ls1c{letter-spacing:29.700000px;}
.ls21{letter-spacing:31.140000px;}
.ls28{letter-spacing:34.020000px;}
.ls1{letter-spacing:44.100000px;}
.ls24{letter-spacing:44.562720px;}
.ls23{letter-spacing:439.380000px;}
.ls1b{letter-spacing:1302.816000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.ws18{word-spacing:-54.468000px;}
.ws17{word-spacing:-54.270000px;}
.ws16{word-spacing:-54.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.085040px;}
.wsf{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.552000px;}
.ws15{word-spacing:-15.400200px;}
.ws5{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.240000px;}
.ws11{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.181200px;}
.ws2{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.648400px;}
.ws12{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.400000px;}
.ws21{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.680000px;}
.ws1e{word-spacing:-13.626000px;}
.ws19{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.518000px;}
.wse{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.140000px;}
.ws20{word-spacing:-12.888000px;}
.ws1b{word-spacing:-12.762000px;}
.ws23{word-spacing:-12.420000px;}
.ws22{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.060000px;}
.wsb{word-spacing:-10.064160px;}
.ws0{word-spacing:-7.981920px;}
.wsa{word-spacing:0.000000px;}
._9{margin-left:-3.521520px;}
._5{margin-left:-2.508480px;}
._0{margin-left:-1.126080px;}
._1{width:1.090800px;}
._2{width:2.612640px;}
._8{width:4.182480px;}
._a{width:5.211360px;}
._d{width:6.752880px;}
._b{width:8.297280px;}
._c{width:10.036080px;}
._e{width:11.160000px;}
._f{width:12.877920px;}
._7{width:14.247360px;}
._1a{width:16.009200px;}
._14{width:17.028000px;}
._6{width:18.192960px;}
._4{width:19.199520px;}
._3{width:20.887920px;}
._15{width:22.350240px;}
._11{width:24.083280px;}
._10{width:25.577280px;}
._13{width:27.306000px;}
._12{width:29.043360px;}
._1b{width:30.277200px;}
._18{width:31.299120px;}
._19{width:32.345280px;}
._1c{width:33.824160px;}
._20{width:35.517120px;}
._17{width:36.652560px;}
._16{width:38.067120px;}
._1e{width:40.338000px;}
._1d{width:41.533200px;}
._1f{width:42.937200px;}
._22{width:44.230320px;}
._21{width:45.708480px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(79,98,40);}
.fsc{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.240000px;}
.fs1{font-size:33.120000px;}
.fs0{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs9{font-size:288.000000px;}
.y117{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:2.340000px;}
.y5{bottom:2.520000px;}
.yb5{bottom:2.700000px;}
.y133{bottom:2.880000px;}
.y1d7{bottom:3.060000px;}
.y4d{bottom:3.600000px;}
.y4f{bottom:4.320000px;}
.y9{bottom:6.300000px;}
.y4e{bottom:6.480000px;}
.y2{bottom:7.020000px;}
.y116{bottom:7.740000px;}
.y11f{bottom:8.460000px;}
.y11b{bottom:8.640000px;}
.y12c{bottom:9.720000px;}
.yb9{bottom:10.080000px;}
.y110{bottom:11.520000px;}
.y127{bottom:11.700000px;}
.y4{bottom:11.880000px;}
.y3{bottom:12.060000px;}
.y124{bottom:12.420000px;}
.y1de{bottom:16.380000px;}
.yb7{bottom:17.460000px;}
.y132{bottom:18.360000px;}
.y115{bottom:23.220000px;}
.y11e{bottom:23.940000px;}
.y11a{bottom:24.120000px;}
.y151{bottom:24.840000px;}
.y10f{bottom:27.000000px;}
.y126{bottom:27.180000px;}
.y123{bottom:29.700000px;}
.y152{bottom:32.220000px;}
.ya{bottom:32.940000px;}
.y1d6{bottom:33.840000px;}
.y131{bottom:34.020000px;}
.y1db{bottom:34.050000px;}
.y114{bottom:38.700000px;}
.y11d{bottom:39.420000px;}
.y119{bottom:39.600000px;}
.y122{bottom:46.800000px;}
.y10d{bottom:46.980000px;}
.y8{bottom:48.600000px;}
.y130{bottom:49.500000px;}
.y1da{bottom:49.530000px;}
.y113{bottom:54.360000px;}
.y118{bottom:55.080000px;}
.y121{bottom:64.080000px;}
.y10c{bottom:64.290000px;}
.y1d5{bottom:64.980000px;}
.y12f{bottom:65.010000px;}
.y7{bottom:72.900000px;}
.y12e{bottom:80.490000px;}
.y1df{bottom:91.080000px;}
.ye8{bottom:91.260000px;}
.y10a{bottom:92.520000px;}
.y14e{bottom:94.320000px;}
.y186{bottom:97.560000px;}
.y87{bottom:101.700000px;}
.y4b{bottom:104.220000px;}
.ye7{bottom:108.540000px;}
.y109{bottom:109.800000px;}
.y14d{bottom:111.420000px;}
.y185{bottom:114.660000px;}
.y86{bottom:118.980000px;}
.y1b6{bottom:119.700000px;}
.y4a{bottom:121.500000px;}
.yb0{bottom:122.220000px;}
.ye6{bottom:125.820000px;}
.y108{bottom:127.080000px;}
.y14c{bottom:128.700000px;}
.y1dc{bottom:129.240000px;}
.y184{bottom:131.940000px;}
.y85{bottom:136.260000px;}
.y49{bottom:138.780000px;}
.yaf{bottom:139.500000px;}
.ye5{bottom:143.100000px;}
.y107{bottom:144.180000px;}
.y14b{bottom:145.980000px;}
.y183{bottom:149.220000px;}
.y1d9{bottom:153.540000px;}
.y48{bottom:156.060000px;}
.yae{bottom:156.780000px;}
.y84{bottom:157.860000px;}
.ye4{bottom:160.380000px;}
.y106{bottom:161.460000px;}
.y14a{bottom:163.260000px;}
.y182{bottom:166.500000px;}
.y47{bottom:173.340000px;}
.yad{bottom:174.060000px;}
.y1b5{bottom:174.420000px;}
.ye3{bottom:177.480000px;}
.y105{bottom:178.740000px;}
.y83{bottom:179.640000px;}
.y149{bottom:180.540000px;}
.y181{bottom:183.810000px;}
.y46{bottom:190.470000px;}
.yac{bottom:191.370000px;}
.y1b4{bottom:191.730000px;}
.ye2{bottom:194.790000px;}
.y104{bottom:196.050000px;}
.y82{bottom:196.950000px;}
.y148{bottom:197.670000px;}
.y180{bottom:201.090000px;}
.y45{bottom:207.750000px;}
.yab{bottom:208.470000px;}
.y1b3{bottom:209.010000px;}
.ye1{bottom:212.070000px;}
.y103{bottom:213.330000px;}
.y81{bottom:214.230000px;}
.y147{bottom:214.950000px;}
.y17f{bottom:218.190000px;}
.y44{bottom:225.030000px;}
.yaa{bottom:225.750000px;}
.y1b2{bottom:226.290000px;}
.ye0{bottom:229.350000px;}
.y102{bottom:230.610000px;}
.y1d8{bottom:231.150000px;}
.y80{bottom:231.510000px;}
.y146{bottom:232.230000px;}
.y17e{bottom:235.470000px;}
.y43{bottom:242.310000px;}
.ya9{bottom:243.030000px;}
.y1b1{bottom:243.570000px;}
.ydf{bottom:246.630000px;}
.y101{bottom:247.710000px;}
.y145{bottom:249.510000px;}
.y17d{bottom:252.750000px;}
.y7f{bottom:253.290000px;}
.y42{bottom:259.590000px;}
.ya8{bottom:260.310000px;}
.y1b0{bottom:260.670000px;}
.y1d4{bottom:262.290000px;}
.yde{bottom:263.730000px;}
.y100{bottom:264.990000px;}
.y144{bottom:266.790000px;}
.y17c{bottom:270.030000px;}
.y7e{bottom:275.070000px;}
.y41{bottom:276.870000px;}
.ya7{bottom:277.590000px;}
.y1af{bottom:277.950000px;}
.ydd{bottom:281.010000px;}
.yff{bottom:282.270000px;}
.y143{bottom:284.070000px;}
.y4c{bottom:284.250000px;}
.y17b{bottom:287.310000px;}
.y7d{bottom:292.170000px;}
.y40{bottom:293.970000px;}
.ya6{bottom:294.870000px;}
.y1ae{bottom:295.230000px;}
.ydc{bottom:298.290000px;}
.yfe{bottom:299.550000px;}
.y142{bottom:301.170000px;}
.y17a{bottom:304.590000px;}
.y7c{bottom:309.450000px;}
.y3f{bottom:311.250000px;}
.ya5{bottom:311.970000px;}
.y1ad{bottom:312.510000px;}
.ydb{bottom:315.570000px;}
.yfd{bottom:316.830000px;}
.y141{bottom:318.450000px;}
.y179{bottom:321.690000px;}
.y7b{bottom:326.730000px;}
.y3e{bottom:328.530000px;}
.ya4{bottom:329.250000px;}
.y1ac{bottom:329.790000px;}
.yda{bottom:332.850000px;}
.yfc{bottom:333.930000px;}
.y140{bottom:335.730000px;}
.y178{bottom:338.970000px;}
.y1d3{bottom:339.870000px;}
.y7a{bottom:344.010000px;}
.y3d{bottom:345.090000px;}
.ya3{bottom:346.530000px;}
.y1ab{bottom:347.070000px;}
.yd9{bottom:350.130000px;}
.yfb{bottom:351.210000px;}
.y13f{bottom:353.010000px;}
.y177{bottom:356.250000px;}
.y1d2{bottom:356.970000px;}
.y3c{bottom:359.850000px;}
.y79{bottom:361.290000px;}
.ya2{bottom:363.810000px;}
.y1aa{bottom:364.170000px;}
.yd8{bottom:367.230000px;}
.yfa{bottom:368.490000px;}
.y13e{bottom:370.290000px;}
.y176{bottom:373.530000px;}
.y3b{bottom:373.710000px;}
.y78{bottom:378.570000px;}
.ya1{bottom:381.090000px;}
.y1a9{bottom:381.450000px;}
.yd7{bottom:384.510000px;}
.yf9{bottom:385.770000px;}
.y3a{bottom:387.570000px;}
.y175{bottom:390.810000px;}
.y77{bottom:395.670000px;}
.ya0{bottom:398.190000px;}
.y1a8{bottom:398.730000px;}
.y39{bottom:401.430000px;}
.yd6{bottom:401.790000px;}
.yf8{bottom:403.050000px;}
.y13d{bottom:404.670000px;}
.y174{bottom:407.910000px;}
.y76{bottom:412.950000px;}
.y38{bottom:415.110000px;}
.y9f{bottom:415.470000px;}
.y1a7{bottom:416.010000px;}
.yd5{bottom:419.070000px;}
.yf7{bottom:420.330000px;}
.y13c{bottom:421.950000px;}
.y173{bottom:425.235000px;}
.y37{bottom:429.015000px;}
.y75{bottom:430.275000px;}
.y9e{bottom:432.795000px;}
.y1a6{bottom:433.335000px;}
.y1d1{bottom:436.215000px;}
.yd4{bottom:436.395000px;}
.yf6{bottom:437.475000px;}
.y13b{bottom:439.275000px;}
.y172{bottom:442.515000px;}
.y36{bottom:442.875000px;}
.y74{bottom:447.555000px;}
.y9d{bottom:450.075000px;}
.y1a5{bottom:450.435000px;}
.y1d0{bottom:453.495000px;}
.yd3{bottom:453.675000px;}
.yf5{bottom:454.755000px;}
.y35{bottom:456.555000px;}
.y171{bottom:459.795000px;}
.y73{bottom:464.835000px;}
.y1a4{bottom:467.715000px;}
.y9c{bottom:468.435000px;}
.y34{bottom:470.415000px;}
.yd2{bottom:470.775000px;}
.yf4{bottom:472.035000px;}
.y13a{bottom:473.835000px;}
.y72{bottom:481.935000px;}
.y33{bottom:484.275000px;}
.y1a3{bottom:484.995000px;}
.y9b{bottom:485.715000px;}
.yd1{bottom:488.055000px;}
.yf3{bottom:489.315000px;}
.y139{bottom:490.935000px;}
.y170{bottom:494.355000px;}
.y32{bottom:497.955000px;}
.y71{bottom:499.215000px;}
.y1a2{bottom:502.275000px;}
.y9a{bottom:502.815000px;}
.yd0{bottom:505.335000px;}
.yf2{bottom:506.595000px;}
.y138{bottom:508.215000px;}
.y16f{bottom:511.455000px;}
.y31{bottom:511.815000px;}
.y70{bottom:516.495000px;}
.y1a1{bottom:519.555000px;}
.y99{bottom:521.175000px;}
.y1cf{bottom:522.435000px;}
.ycf{bottom:522.615000px;}
.y137{bottom:525.495000px;}
.y30{bottom:525.675000px;}
.y16e{bottom:528.735000px;}
.y6f{bottom:533.775000px;}
.yf1{bottom:534.135000px;}
.y1a0{bottom:536.835000px;}
.y98{bottom:538.455000px;}
.y2f{bottom:539.355000px;}
.y1ce{bottom:539.715000px;}
.yce{bottom:539.895000px;}
.y136{bottom:542.775000px;}
.y16d{bottom:546.015000px;}
.y6e{bottom:551.055000px;}
.yf0{bottom:551.415000px;}
.y2e{bottom:553.215000px;}
.y19f{bottom:553.935000px;}
.y97{bottom:555.735000px;}
.ycd{bottom:556.995000px;}
.y135{bottom:560.055000px;}
.y16c{bottom:563.295000px;}
.y2d{bottom:567.075000px;}
.y6d{bottom:568.335000px;}
.yef{bottom:568.695000px;}
.y19e{bottom:571.215000px;}
.y96{bottom:574.095000px;}
.ycc{bottom:574.275000px;}
.y134{bottom:577.335000px;}
.y16b{bottom:580.575000px;}
.y2c{bottom:580.755000px;}
.y6c{bottom:585.435000px;}
.y19d{bottom:588.495000px;}
.y95{bottom:591.195000px;}
.ycb{bottom:591.555000px;}
.yee{bottom:594.435000px;}
.y2b{bottom:594.615000px;}
.y16a{bottom:597.855000px;}
.y6b{bottom:602.715000px;}
.y12d{bottom:604.515000px;}
.y19c{bottom:605.775000px;}
.y2a{bottom:608.475000px;}
.yca{bottom:608.835000px;}
.y94{bottom:609.555000px;}
.yed{bottom:611.715000px;}
.y169{bottom:614.955000px;}
.y6a{bottom:619.995000px;}
.y29{bottom:622.155000px;}
.y19b{bottom:623.055000px;}
.y1cd{bottom:625.935000px;}
.yc9{bottom:626.115000px;}
.y93{bottom:626.835000px;}
.yec{bottom:628.995000px;}
.y168{bottom:632.235000px;}
.y28{bottom:636.015000px;}
.y69{bottom:637.275000px;}
.y19a{bottom:640.335000px;}
.y1cc{bottom:643.215000px;}
.yc8{bottom:643.395000px;}
.y92{bottom:644.115000px;}
.yeb{bottom:646.275000px;}
.y167{bottom:649.515000px;}
.y27{bottom:649.875000px;}
.y68{bottom:654.555000px;}
.y199{bottom:657.435000px;}
.yc7{bottom:660.495000px;}
.y91{bottom:662.475000px;}
.y26{bottom:663.555000px;}
.y166{bottom:666.825000px;}
.y67{bottom:671.865000px;}
.y198{bottom:674.745000px;}
.y25{bottom:677.445000px;}
.yc6{bottom:677.805000px;}
.y90{bottom:679.785000px;}
.yea{bottom:680.865000px;}
.y165{bottom:684.105000px;}
.y66{bottom:688.965000px;}
.y24{bottom:691.305000px;}
.y197{bottom:692.025000px;}
.yc5{bottom:695.085000px;}
.y8f{bottom:696.885000px;}
.ye9{bottom:697.965000px;}
.y164{bottom:701.385000px;}
.y23{bottom:705.165000px;}
.y65{bottom:706.245000px;}
.y196{bottom:709.305000px;}
.yc4{bottom:712.365000px;}
.y8e{bottom:715.245000px;}
.y163{bottom:718.485000px;}
.y22{bottom:722.265000px;}
.y64{bottom:723.525000px;}
.y195{bottom:726.585000px;}
.y1cb{bottom:729.465000px;}
.yc3{bottom:729.645000px;}
.y8d{bottom:732.525000px;}
.y162{bottom:735.765000px;}
.y21{bottom:739.365000px;}
.y63{bottom:740.805000px;}
.y12b{bottom:743.505000px;}
.y194{bottom:743.865000px;}
.y1ca{bottom:746.745000px;}
.yc2{bottom:746.925000px;}
.y8c{bottom:749.805000px;}
.y161{bottom:753.045000px;}
.y20{bottom:756.645000px;}
.y62{bottom:758.085000px;}
.y193{bottom:760.965000px;}
.yc1{bottom:764.025000px;}
.y8b{bottom:767.085000px;}
.y160{bottom:770.325000px;}
.y1f{bottom:773.925000px;}
.y61{bottom:775.365000px;}
.y192{bottom:778.245000px;}
.yc0{bottom:780.225000px;}
.y1c9{bottom:781.305000px;}
.y8a{bottom:784.365000px;}
.y15f{bottom:787.605000px;}
.y1e{bottom:791.205000px;}
.ybf{bottom:791.745000px;}
.y60{bottom:792.465000px;}
.y191{bottom:795.525000px;}
.y1c8{bottom:798.585000px;}
.y89{bottom:801.465000px;}
.ybe{bottom:806.505000px;}
.y1d{bottom:808.485000px;}
.y15e{bottom:809.205000px;}
.y190{bottom:812.805000px;}
.y5f{bottom:814.245000px;}
.y1c7{bottom:815.685000px;}
.y88{bottom:818.745000px;}
.y1c{bottom:825.765000px;}
.y18f{bottom:830.085000px;}
.y15d{bottom:830.985000px;}
.y1c6{bottom:832.965000px;}
.y120{bottom:835.485000px;}
.y5e{bottom:836.025000px;}
.ybd{bottom:836.745000px;}
.y129{bottom:837.825000px;}
.y128{bottom:838.005000px;}
.y125{bottom:838.905000px;}
.y12a{bottom:839.805000px;}
.y1b{bottom:842.865000px;}
.y18e{bottom:847.185000px;}
.y15c{bottom:848.265000px;}
.y1c5{bottom:850.245000px;}
.y5d{bottom:853.305000px;}
.y1a{bottom:860.145000px;}
.y18d{bottom:864.465000px;}
.y15b{bottom:865.545000px;}
.ybc{bottom:866.985000px;}
.y1c4{bottom:867.525000px;}
.y5c{bottom:870.585000px;}
.y19{bottom:877.425000px;}
.y18c{bottom:881.745000px;}
.y15a{bottom:882.825000px;}
.y1c3{bottom:884.805000px;}
.y5b{bottom:887.685000px;}
.y18{bottom:894.705000px;}
.ybb{bottom:897.225000px;}
.y18b{bottom:899.025000px;}
.y159{bottom:900.105000px;}
.y1c2{bottom:902.085000px;}
.y5a{bottom:904.965000px;}
.y17{bottom:912.030000px;}
.yba{bottom:912.750000px;}
.y18a{bottom:916.350000px;}
.y158{bottom:917.250000px;}
.y1c1{bottom:919.230000px;}
.y59{bottom:922.290000px;}
.y16{bottom:929.850000px;}
.y189{bottom:933.630000px;}
.y157{bottom:934.530000px;}
.y1c0{bottom:936.510000px;}
.y58{bottom:939.570000px;}
.yb8{bottom:942.990000px;}
.y156{bottom:949.290000px;}
.y15{bottom:950.550000px;}
.y188{bottom:950.730000px;}
.y1bf{bottom:953.790000px;}
.y57{bottom:956.850000px;}
.y112{bottom:964.050000px;}
.y11c{bottom:964.230000px;}
.y1be{bottom:971.070000px;}
.y14{bottom:971.250000px;}
.yb6{bottom:973.230000px;}
.y56{bottom:974.130000px;}
.y1bd{bottom:988.350000px;}
.y55{bottom:991.230000px;}
.y13{bottom:991.950000px;}
.y155{bottom:994.290000px;}
.yb4{bottom:1003.470000px;}
.y187{bottom:1005.630000px;}
.y54{bottom:1008.510000px;}
.y12{bottom:1012.650000px;}
.y1bc{bottom:1022.730000px;}
.y154{bottom:1024.530000px;}
.y53{bottom:1025.790000px;}
.yb3{bottom:1032.630000px;}
.y11{bottom:1033.350000px;}
.y1bb{bottom:1040.010000px;}
.y52{bottom:1043.070000px;}
.yb2{bottom:1049.910000px;}
.y10{bottom:1054.050000px;}
.y153{bottom:1054.770000px;}
.y1ba{bottom:1057.290000px;}
.y51{bottom:1060.350000px;}
.yb1{bottom:1066.110000px;}
.y1b9{bottom:1074.570000px;}
.y50{bottom:1077.630000px;}
.y150{bottom:1085.010000px;}
.y10b{bottom:1087.350000px;}
.y111{bottom:1090.410000px;}
.y10e{bottom:1090.770000px;}
.y1b8{bottom:1091.850000px;}
.yf{bottom:1094.730000px;}
.y1b7{bottom:1109.130000px;}
.ye{bottom:1112.010000px;}
.yd{bottom:1129.290000px;}
.y14f{bottom:1130.010000px;}
.yc{bottom:1146.570000px;}
.yb{bottom:1163.880000px;}
.y6{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h31{height:5.653125px;}
.h1a{height:14.760000px;}
.h1d{height:14.796000px;}
.h29{height:15.480000px;}
.h2c{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h3{height:27.210938px;}
.h1b{height:29.520000px;}
.h28{height:29.678906px;}
.h4{height:30.209062px;}
.h5{height:32.835938px;}
.h2e{height:35.100000px;}
.h19{height:35.332031px;}
.h15{height:38.089687px;}
.h1f{height:39.600000px;}
.h24{height:39.780000px;}
.h2f{height:40.985156px;}
.h11{height:42.516211px;}
.h27{height:44.280000px;}
.h10{height:47.321367px;}
.h6{height:47.344922px;}
.h1c{height:47.592773px;}
.h25{height:47.700000px;}
.h30{height:48.616875px;}
.h9{height:50.068125px;}
.h12{height:52.669336px;}
.h22{height:52.971680px;}
.h16{height:52.998047px;}
.h2b{height:53.709961px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.h17{height:60.226875px;}
.h18{height:61.423863px;}
.hc{height:62.261719px;}
.ha{height:65.884219px;}
.h13{height:66.780000px;}
.h20{height:66.960000px;}
.h21{height:67.680000px;}
.hd{height:72.562500px;}
.h2a{height:77.580000px;}
.h2d{height:77.616000px;}
.h23{height:78.156000px;}
.h1e{height:78.336000px;}
.he{height:84.898125px;}
.h26{height:93.096000px;}
.h14{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.240000px;}
.w7{width:61.920000px;}
.w1e{width:84.960000px;}
.w14{width:141.120000px;}
.w15{width:144.216000px;}
.w16{width:145.296000px;}
.w17{width:153.210000px;}
.w9{width:157.530000px;}
.wc{width:169.020000px;}
.w1a{width:190.290000px;}
.w12{width:193.170000px;}
.w10{width:196.050000px;}
.w11{width:196.230000px;}
.w2{width:228.990000px;}
.wd{width:233.175000px;}
.w1b{width:243.390000px;}
.w1c{width:243.570000px;}
.wa{width:253.110000px;}
.w8{width:269.670000px;}
.we{width:275.070000px;}
.w4{width:434.415000px;}
.w1f{width:595.545000px;}
.w19{width:660.525000px;}
.w13{width:662.145000px;}
.wf{width:662.325000px;}
.w18{width:665.565000px;}
.wb{width:680.325000px;}
.w1d{width:682.485000px;}
.w6{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:1.980000px;}
.x51{left:5.220000px;}
.x1a{left:6.840000px;}
.x2{left:8.100000px;}
.x4{left:9.360000px;}
.x2e{left:12.780000px;}
.x44{left:14.040000px;}
.x2b{left:22.494000px;}
.x6{left:24.840000px;}
.x3b{left:28.080000px;}
.x30{left:30.600000px;}
.x3c{left:32.940000px;}
.x1c{left:35.640000px;}
.x31{left:37.974000px;}
.x3f{left:41.034000px;}
.x42{left:42.870000px;}
.x41{left:44.850000px;}
.x3e{left:45.894000px;}
.x2c{left:47.874000px;}
.x1e{left:50.040000px;}
.x4e{left:55.074000px;}
.x22{left:59.934000px;}
.x32{left:61.554000px;}
.x38{left:65.700000px;}
.x34{left:67.674000px;}
.x37{left:70.200000px;}
.x33{left:73.794000px;}
.x39{left:81.900000px;}
.x25{left:90.000000px;}
.x35{left:96.654000px;}
.x19{left:97.776000px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.x28{left:114.336000px;}
.x45{left:116.856000px;}
.xd{left:123.515987px;}
.x18{left:127.655987px;}
.x2a{left:133.416000px;}
.x20{left:146.555987px;}
.x4a{left:148.355987px;}
.xb{left:151.409987px;}
.x17{left:159.689987px;}
.xe{left:163.109987px;}
.x7{left:175.350000px;}
.x50{left:199.470000px;}
.x26{left:226.289987px;}
.x47{left:230.259000px;}
.x48{left:244.479000px;}
.x3d{left:245.919000px;}
.x27{left:250.769987px;}
.x29{left:262.839000px;}
.x49{left:267.699000px;}
.x23{left:276.870000px;}
.x21{left:281.729987px;}
.x40{left:283.170000px;}
.x46{left:295.059000px;}
.x4b{left:298.335000px;}
.x1f{left:331.059000px;}
.x3{left:333.255000px;}
.xa{left:334.839000px;}
.x36{left:348.375000px;}
.x2d{left:352.515000px;}
.x5{left:354.495000px;}
.x1b{left:376.095000px;}
.xf{left:402.554987px;}
.x4d{left:418.574987px;}
.xc{left:446.474987px;}
.x10{left:448.814987px;}
.x24{left:510.945000px;}
.x1d{left:533.625000px;}
.x4c{left:542.445000px;}
.x15{left:563.684987px;}
.x2f{left:573.945000px;}
.x3a{left:577.545000px;}
.x12{left:588.344987px;}
.x14{left:595.364987px;}
.x11{left:596.984987px;}
.x43{left:614.265000px;}
.x16{left:661.244987px;}
.x13{left:677.129987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-35.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.656000pt;}
.ls3a{letter-spacing:-0.624000pt;}
.ls39{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.259200pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:-0.046080pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.016000pt;}
.ls30{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls35{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.107733pt;}
.ls38{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.116480pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.186880pt;}
.ls1e{letter-spacing:0.214400pt;}
.lse{letter-spacing:0.231040pt;}
.ls3b{letter-spacing:0.239467pt;}
.ls33{letter-spacing:0.240000pt;}
.ls25{letter-spacing:0.265600pt;}
.ls2a{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.409067pt;}
.ls34{letter-spacing:0.416000pt;}
.ls27{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls22{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:4.640000pt;}
.ls13{letter-spacing:5.280000pt;}
.ls12{letter-spacing:6.560000pt;}
.ls14{letter-spacing:7.632640pt;}
.ls1f{letter-spacing:9.120000pt;}
.ls4{letter-spacing:9.760000pt;}
.ls2d{letter-spacing:10.400000pt;}
.ls2f{letter-spacing:10.560000pt;}
.ls18{letter-spacing:11.040000pt;}
.ls2b{letter-spacing:12.320000pt;}
.ls26{letter-spacing:13.392640pt;}
.ls20{letter-spacing:16.800000pt;}
.ls15{letter-spacing:18.080000pt;}
.lsd{letter-spacing:18.720000pt;}
.ls10{letter-spacing:19.360000pt;}
.ls11{letter-spacing:20.000000pt;}
.ls31{letter-spacing:23.840000pt;}
.ls1c{letter-spacing:26.400000pt;}
.ls21{letter-spacing:27.680000pt;}
.ls28{letter-spacing:30.240000pt;}
.ls1{letter-spacing:39.200000pt;}
.ls24{letter-spacing:39.611307pt;}
.ls23{letter-spacing:390.560000pt;}
.ls1b{letter-spacing:1158.058667pt;}
.ws9{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws18{word-spacing:-48.416000pt;}
.ws17{word-spacing:-48.240000pt;}
.ws16{word-spacing:-48.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.297813pt;}
.wsf{word-spacing:-14.144000pt;}
.ws14{word-spacing:-13.824000pt;}
.ws15{word-spacing:-13.689067pt;}
.ws5{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.546667pt;}
.ws11{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.494400pt;}
.ws2{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.020800pt;}
.ws12{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.800000pt;}
.ws21{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.160000pt;}
.ws1e{word-spacing:-12.112000pt;}
.ws19{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.016000pt;}
.wse{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws20{word-spacing:-11.456000pt;}
.ws1b{word-spacing:-11.344000pt;}
.ws23{word-spacing:-11.040000pt;}
.ws22{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.720000pt;}
.wsb{word-spacing:-8.945920pt;}
.ws0{word-spacing:-7.095040pt;}
.wsa{word-spacing:0.000000pt;}
._9{margin-left:-3.130240pt;}
._5{margin-left:-2.229760pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.969600pt;}
._2{width:2.322347pt;}
._8{width:3.717760pt;}
._a{width:4.632320pt;}
._d{width:6.002560pt;}
._b{width:7.375360pt;}
._c{width:8.920960pt;}
._e{width:9.920000pt;}
._f{width:11.447040pt;}
._7{width:12.664320pt;}
._1a{width:14.230400pt;}
._14{width:15.136000pt;}
._6{width:16.171520pt;}
._4{width:17.066240pt;}
._3{width:18.567040pt;}
._15{width:19.866880pt;}
._11{width:21.407360pt;}
._10{width:22.735360pt;}
._13{width:24.272000pt;}
._12{width:25.816320pt;}
._1b{width:26.913067pt;}
._18{width:27.821440pt;}
._19{width:28.751360pt;}
._1c{width:30.065920pt;}
._20{width:31.570773pt;}
._17{width:32.580053pt;}
._16{width:33.837440pt;}
._1e{width:35.856000pt;}
._1d{width:36.918400pt;}
._1f{width:38.166400pt;}
._22{width:39.315840pt;}
._21{width:40.629760pt;}
.fsc{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.880000pt;}
.fs1{font-size:29.440000pt;}
.fs0{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs9{font-size:256.000000pt;}
.y117{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:2.080000pt;}
.y5{bottom:2.240000pt;}
.yb5{bottom:2.400000pt;}
.y133{bottom:2.560000pt;}
.y1d7{bottom:2.720000pt;}
.y4d{bottom:3.200000pt;}
.y4f{bottom:3.840000pt;}
.y9{bottom:5.600000pt;}
.y4e{bottom:5.760000pt;}
.y2{bottom:6.240000pt;}
.y116{bottom:6.880000pt;}
.y11f{bottom:7.520000pt;}
.y11b{bottom:7.680000pt;}
.y12c{bottom:8.640000pt;}
.yb9{bottom:8.960000pt;}
.y110{bottom:10.240000pt;}
.y127{bottom:10.400000pt;}
.y4{bottom:10.560000pt;}
.y3{bottom:10.720000pt;}
.y124{bottom:11.040000pt;}
.y1de{bottom:14.560000pt;}
.yb7{bottom:15.520000pt;}
.y132{bottom:16.320000pt;}
.y115{bottom:20.640000pt;}
.y11e{bottom:21.280000pt;}
.y11a{bottom:21.440000pt;}
.y151{bottom:22.080000pt;}
.y10f{bottom:24.000000pt;}
.y126{bottom:24.160000pt;}
.y123{bottom:26.400000pt;}
.y152{bottom:28.640000pt;}
.ya{bottom:29.280000pt;}
.y1d6{bottom:30.080000pt;}
.y131{bottom:30.240000pt;}
.y1db{bottom:30.266667pt;}
.y114{bottom:34.400000pt;}
.y11d{bottom:35.040000pt;}
.y119{bottom:35.200000pt;}
.y122{bottom:41.600000pt;}
.y10d{bottom:41.760000pt;}
.y8{bottom:43.200000pt;}
.y130{bottom:44.000000pt;}
.y1da{bottom:44.026667pt;}
.y113{bottom:48.320000pt;}
.y118{bottom:48.960000pt;}
.y121{bottom:56.960000pt;}
.y10c{bottom:57.146667pt;}
.y1d5{bottom:57.760000pt;}
.y12f{bottom:57.786667pt;}
.y7{bottom:64.800000pt;}
.y12e{bottom:71.546667pt;}
.y1df{bottom:80.960000pt;}
.ye8{bottom:81.120000pt;}
.y10a{bottom:82.240000pt;}
.y14e{bottom:83.840000pt;}
.y186{bottom:86.720000pt;}
.y87{bottom:90.400000pt;}
.y4b{bottom:92.640000pt;}
.ye7{bottom:96.480000pt;}
.y109{bottom:97.600000pt;}
.y14d{bottom:99.040000pt;}
.y185{bottom:101.920000pt;}
.y86{bottom:105.760000pt;}
.y1b6{bottom:106.400000pt;}
.y4a{bottom:108.000000pt;}
.yb0{bottom:108.640000pt;}
.ye6{bottom:111.840000pt;}
.y108{bottom:112.960000pt;}
.y14c{bottom:114.400000pt;}
.y1dc{bottom:114.880000pt;}
.y184{bottom:117.280000pt;}
.y85{bottom:121.120000pt;}
.y49{bottom:123.360000pt;}
.yaf{bottom:124.000000pt;}
.ye5{bottom:127.200000pt;}
.y107{bottom:128.160000pt;}
.y14b{bottom:129.760000pt;}
.y183{bottom:132.640000pt;}
.y1d9{bottom:136.480000pt;}
.y48{bottom:138.720000pt;}
.yae{bottom:139.360000pt;}
.y84{bottom:140.320000pt;}
.ye4{bottom:142.560000pt;}
.y106{bottom:143.520000pt;}
.y14a{bottom:145.120000pt;}
.y182{bottom:148.000000pt;}
.y47{bottom:154.080000pt;}
.yad{bottom:154.720000pt;}
.y1b5{bottom:155.040000pt;}
.ye3{bottom:157.760000pt;}
.y105{bottom:158.880000pt;}
.y83{bottom:159.680000pt;}
.y149{bottom:160.480000pt;}
.y181{bottom:163.386667pt;}
.y46{bottom:169.306667pt;}
.yac{bottom:170.106667pt;}
.y1b4{bottom:170.426667pt;}
.ye2{bottom:173.146667pt;}
.y104{bottom:174.266667pt;}
.y82{bottom:175.066667pt;}
.y148{bottom:175.706667pt;}
.y180{bottom:178.746667pt;}
.y45{bottom:184.666667pt;}
.yab{bottom:185.306667pt;}
.y1b3{bottom:185.786667pt;}
.ye1{bottom:188.506667pt;}
.y103{bottom:189.626667pt;}
.y81{bottom:190.426667pt;}
.y147{bottom:191.066667pt;}
.y17f{bottom:193.946667pt;}
.y44{bottom:200.026667pt;}
.yaa{bottom:200.666667pt;}
.y1b2{bottom:201.146667pt;}
.ye0{bottom:203.866667pt;}
.y102{bottom:204.986667pt;}
.y1d8{bottom:205.466667pt;}
.y80{bottom:205.786667pt;}
.y146{bottom:206.426667pt;}
.y17e{bottom:209.306667pt;}
.y43{bottom:215.386667pt;}
.ya9{bottom:216.026667pt;}
.y1b1{bottom:216.506667pt;}
.ydf{bottom:219.226667pt;}
.y101{bottom:220.186667pt;}
.y145{bottom:221.786667pt;}
.y17d{bottom:224.666667pt;}
.y7f{bottom:225.146667pt;}
.y42{bottom:230.746667pt;}
.ya8{bottom:231.386667pt;}
.y1b0{bottom:231.706667pt;}
.y1d4{bottom:233.146667pt;}
.yde{bottom:234.426667pt;}
.y100{bottom:235.546667pt;}
.y144{bottom:237.146667pt;}
.y17c{bottom:240.026667pt;}
.y7e{bottom:244.506667pt;}
.y41{bottom:246.106667pt;}
.ya7{bottom:246.746667pt;}
.y1af{bottom:247.066667pt;}
.ydd{bottom:249.786667pt;}
.yff{bottom:250.906667pt;}
.y143{bottom:252.506667pt;}
.y4c{bottom:252.666667pt;}
.y17b{bottom:255.386667pt;}
.y7d{bottom:259.706667pt;}
.y40{bottom:261.306667pt;}
.ya6{bottom:262.106667pt;}
.y1ae{bottom:262.426667pt;}
.ydc{bottom:265.146667pt;}
.yfe{bottom:266.266667pt;}
.y142{bottom:267.706667pt;}
.y17a{bottom:270.746667pt;}
.y7c{bottom:275.066667pt;}
.y3f{bottom:276.666667pt;}
.ya5{bottom:277.306667pt;}
.y1ad{bottom:277.786667pt;}
.ydb{bottom:280.506667pt;}
.yfd{bottom:281.626667pt;}
.y141{bottom:283.066667pt;}
.y179{bottom:285.946667pt;}
.y7b{bottom:290.426667pt;}
.y3e{bottom:292.026667pt;}
.ya4{bottom:292.666667pt;}
.y1ac{bottom:293.146667pt;}
.yda{bottom:295.866667pt;}
.yfc{bottom:296.826667pt;}
.y140{bottom:298.426667pt;}
.y178{bottom:301.306667pt;}
.y1d3{bottom:302.106667pt;}
.y7a{bottom:305.786667pt;}
.y3d{bottom:306.746667pt;}
.ya3{bottom:308.026667pt;}
.y1ab{bottom:308.506667pt;}
.yd9{bottom:311.226667pt;}
.yfb{bottom:312.186667pt;}
.y13f{bottom:313.786667pt;}
.y177{bottom:316.666667pt;}
.y1d2{bottom:317.306667pt;}
.y3c{bottom:319.866667pt;}
.y79{bottom:321.146667pt;}
.ya2{bottom:323.386667pt;}
.y1aa{bottom:323.706667pt;}
.yd8{bottom:326.426667pt;}
.yfa{bottom:327.546667pt;}
.y13e{bottom:329.146667pt;}
.y176{bottom:332.026667pt;}
.y3b{bottom:332.186667pt;}
.y78{bottom:336.506667pt;}
.ya1{bottom:338.746667pt;}
.y1a9{bottom:339.066667pt;}
.yd7{bottom:341.786667pt;}
.yf9{bottom:342.906667pt;}
.y3a{bottom:344.506667pt;}
.y175{bottom:347.386667pt;}
.y77{bottom:351.706667pt;}
.ya0{bottom:353.946667pt;}
.y1a8{bottom:354.426667pt;}
.y39{bottom:356.826667pt;}
.yd6{bottom:357.146667pt;}
.yf8{bottom:358.266667pt;}
.y13d{bottom:359.706667pt;}
.y174{bottom:362.586667pt;}
.y76{bottom:367.066667pt;}
.y38{bottom:368.986667pt;}
.y9f{bottom:369.306667pt;}
.y1a7{bottom:369.786667pt;}
.yd5{bottom:372.506667pt;}
.yf7{bottom:373.626667pt;}
.y13c{bottom:375.066667pt;}
.y173{bottom:377.986667pt;}
.y37{bottom:381.346667pt;}
.y75{bottom:382.466667pt;}
.y9e{bottom:384.706667pt;}
.y1a6{bottom:385.186667pt;}
.y1d1{bottom:387.746667pt;}
.yd4{bottom:387.906667pt;}
.yf6{bottom:388.866667pt;}
.y13b{bottom:390.466667pt;}
.y172{bottom:393.346667pt;}
.y36{bottom:393.666667pt;}
.y74{bottom:397.826667pt;}
.y9d{bottom:400.066667pt;}
.y1a5{bottom:400.386667pt;}
.y1d0{bottom:403.106667pt;}
.yd3{bottom:403.266667pt;}
.yf5{bottom:404.226667pt;}
.y35{bottom:405.826667pt;}
.y171{bottom:408.706667pt;}
.y73{bottom:413.186667pt;}
.y1a4{bottom:415.746667pt;}
.y9c{bottom:416.386667pt;}
.y34{bottom:418.146667pt;}
.yd2{bottom:418.466667pt;}
.yf4{bottom:419.586667pt;}
.y13a{bottom:421.186667pt;}
.y72{bottom:428.386667pt;}
.y33{bottom:430.466667pt;}
.y1a3{bottom:431.106667pt;}
.y9b{bottom:431.746667pt;}
.yd1{bottom:433.826667pt;}
.yf3{bottom:434.946667pt;}
.y139{bottom:436.386667pt;}
.y170{bottom:439.426667pt;}
.y32{bottom:442.626667pt;}
.y71{bottom:443.746667pt;}
.y1a2{bottom:446.466667pt;}
.y9a{bottom:446.946667pt;}
.yd0{bottom:449.186667pt;}
.yf2{bottom:450.306667pt;}
.y138{bottom:451.746667pt;}
.y16f{bottom:454.626667pt;}
.y31{bottom:454.946667pt;}
.y70{bottom:459.106667pt;}
.y1a1{bottom:461.826667pt;}
.y99{bottom:463.266667pt;}
.y1cf{bottom:464.386667pt;}
.ycf{bottom:464.546667pt;}
.y137{bottom:467.106667pt;}
.y30{bottom:467.266667pt;}
.y16e{bottom:469.986667pt;}
.y6f{bottom:474.466667pt;}
.yf1{bottom:474.786667pt;}
.y1a0{bottom:477.186667pt;}
.y98{bottom:478.626667pt;}
.y2f{bottom:479.426667pt;}
.y1ce{bottom:479.746667pt;}
.yce{bottom:479.906667pt;}
.y136{bottom:482.466667pt;}
.y16d{bottom:485.346667pt;}
.y6e{bottom:489.826667pt;}
.yf0{bottom:490.146667pt;}
.y2e{bottom:491.746667pt;}
.y19f{bottom:492.386667pt;}
.y97{bottom:493.986667pt;}
.ycd{bottom:495.106667pt;}
.y135{bottom:497.826667pt;}
.y16c{bottom:500.706667pt;}
.y2d{bottom:504.066667pt;}
.y6d{bottom:505.186667pt;}
.yef{bottom:505.506667pt;}
.y19e{bottom:507.746667pt;}
.y96{bottom:510.306667pt;}
.ycc{bottom:510.466667pt;}
.y134{bottom:513.186667pt;}
.y16b{bottom:516.066667pt;}
.y2c{bottom:516.226667pt;}
.y6c{bottom:520.386667pt;}
.y19d{bottom:523.106667pt;}
.y95{bottom:525.506667pt;}
.ycb{bottom:525.826667pt;}
.yee{bottom:528.386667pt;}
.y2b{bottom:528.546667pt;}
.y16a{bottom:531.426667pt;}
.y6b{bottom:535.746667pt;}
.y12d{bottom:537.346667pt;}
.y19c{bottom:538.466667pt;}
.y2a{bottom:540.866667pt;}
.yca{bottom:541.186667pt;}
.y94{bottom:541.826667pt;}
.yed{bottom:543.746667pt;}
.y169{bottom:546.626667pt;}
.y6a{bottom:551.106667pt;}
.y29{bottom:553.026667pt;}
.y19b{bottom:553.826667pt;}
.y1cd{bottom:556.386667pt;}
.yc9{bottom:556.546667pt;}
.y93{bottom:557.186667pt;}
.yec{bottom:559.106667pt;}
.y168{bottom:561.986667pt;}
.y28{bottom:565.346667pt;}
.y69{bottom:566.466667pt;}
.y19a{bottom:569.186667pt;}
.y1cc{bottom:571.746667pt;}
.yc8{bottom:571.906667pt;}
.y92{bottom:572.546667pt;}
.yeb{bottom:574.466667pt;}
.y167{bottom:577.346667pt;}
.y27{bottom:577.666667pt;}
.y68{bottom:581.826667pt;}
.y199{bottom:584.386667pt;}
.yc7{bottom:587.106667pt;}
.y91{bottom:588.866667pt;}
.y26{bottom:589.826667pt;}
.y166{bottom:592.733333pt;}
.y67{bottom:597.213333pt;}
.y198{bottom:599.773333pt;}
.y25{bottom:602.173333pt;}
.yc6{bottom:602.493333pt;}
.y90{bottom:604.253333pt;}
.yea{bottom:605.213333pt;}
.y165{bottom:608.093333pt;}
.y66{bottom:612.413333pt;}
.y24{bottom:614.493333pt;}
.y197{bottom:615.133333pt;}
.yc5{bottom:617.853333pt;}
.y8f{bottom:619.453333pt;}
.ye9{bottom:620.413333pt;}
.y164{bottom:623.453333pt;}
.y23{bottom:626.813333pt;}
.y65{bottom:627.773333pt;}
.y196{bottom:630.493333pt;}
.yc4{bottom:633.213333pt;}
.y8e{bottom:635.773333pt;}
.y163{bottom:638.653333pt;}
.y22{bottom:642.013333pt;}
.y64{bottom:643.133333pt;}
.y195{bottom:645.853333pt;}
.y1cb{bottom:648.413333pt;}
.yc3{bottom:648.573333pt;}
.y8d{bottom:651.133333pt;}
.y162{bottom:654.013333pt;}
.y21{bottom:657.213333pt;}
.y63{bottom:658.493333pt;}
.y12b{bottom:660.893333pt;}
.y194{bottom:661.213333pt;}
.y1ca{bottom:663.773333pt;}
.yc2{bottom:663.933333pt;}
.y8c{bottom:666.493333pt;}
.y161{bottom:669.373333pt;}
.y20{bottom:672.573333pt;}
.y62{bottom:673.853333pt;}
.y193{bottom:676.413333pt;}
.yc1{bottom:679.133333pt;}
.y8b{bottom:681.853333pt;}
.y160{bottom:684.733333pt;}
.y1f{bottom:687.933333pt;}
.y61{bottom:689.213333pt;}
.y192{bottom:691.773333pt;}
.yc0{bottom:693.533333pt;}
.y1c9{bottom:694.493333pt;}
.y8a{bottom:697.213333pt;}
.y15f{bottom:700.093333pt;}
.y1e{bottom:703.293333pt;}
.ybf{bottom:703.773333pt;}
.y60{bottom:704.413333pt;}
.y191{bottom:707.133333pt;}
.y1c8{bottom:709.853333pt;}
.y89{bottom:712.413333pt;}
.ybe{bottom:716.893333pt;}
.y1d{bottom:718.653333pt;}
.y15e{bottom:719.293333pt;}
.y190{bottom:722.493333pt;}
.y5f{bottom:723.773333pt;}
.y1c7{bottom:725.053333pt;}
.y88{bottom:727.773333pt;}
.y1c{bottom:734.013333pt;}
.y18f{bottom:737.853333pt;}
.y15d{bottom:738.653333pt;}
.y1c6{bottom:740.413333pt;}
.y120{bottom:742.653333pt;}
.y5e{bottom:743.133333pt;}
.ybd{bottom:743.773333pt;}
.y129{bottom:744.733333pt;}
.y128{bottom:744.893333pt;}
.y125{bottom:745.693333pt;}
.y12a{bottom:746.493333pt;}
.y1b{bottom:749.213333pt;}
.y18e{bottom:753.053333pt;}
.y15c{bottom:754.013333pt;}
.y1c5{bottom:755.773333pt;}
.y5d{bottom:758.493333pt;}
.y1a{bottom:764.573333pt;}
.y18d{bottom:768.413333pt;}
.y15b{bottom:769.373333pt;}
.ybc{bottom:770.653333pt;}
.y1c4{bottom:771.133333pt;}
.y5c{bottom:773.853333pt;}
.y19{bottom:779.933333pt;}
.y18c{bottom:783.773333pt;}
.y15a{bottom:784.733333pt;}
.y1c3{bottom:786.493333pt;}
.y5b{bottom:789.053333pt;}
.y18{bottom:795.293333pt;}
.ybb{bottom:797.533333pt;}
.y18b{bottom:799.133333pt;}
.y159{bottom:800.093333pt;}
.y1c2{bottom:801.853333pt;}
.y5a{bottom:804.413333pt;}
.y17{bottom:810.693333pt;}
.yba{bottom:811.333333pt;}
.y18a{bottom:814.533333pt;}
.y158{bottom:815.333333pt;}
.y1c1{bottom:817.093333pt;}
.y59{bottom:819.813333pt;}
.y16{bottom:826.533333pt;}
.y189{bottom:829.893333pt;}
.y157{bottom:830.693333pt;}
.y1c0{bottom:832.453333pt;}
.y58{bottom:835.173333pt;}
.yb8{bottom:838.213333pt;}
.y156{bottom:843.813333pt;}
.y15{bottom:844.933333pt;}
.y188{bottom:845.093333pt;}
.y1bf{bottom:847.813333pt;}
.y57{bottom:850.533333pt;}
.y112{bottom:856.933333pt;}
.y11c{bottom:857.093333pt;}
.y1be{bottom:863.173333pt;}
.y14{bottom:863.333333pt;}
.yb6{bottom:865.093333pt;}
.y56{bottom:865.893333pt;}
.y1bd{bottom:878.533333pt;}
.y55{bottom:881.093333pt;}
.y13{bottom:881.733333pt;}
.y155{bottom:883.813333pt;}
.yb4{bottom:891.973333pt;}
.y187{bottom:893.893333pt;}
.y54{bottom:896.453333pt;}
.y12{bottom:900.133333pt;}
.y1bc{bottom:909.093333pt;}
.y154{bottom:910.693333pt;}
.y53{bottom:911.813333pt;}
.yb3{bottom:917.893333pt;}
.y11{bottom:918.533333pt;}
.y1bb{bottom:924.453333pt;}
.y52{bottom:927.173333pt;}
.yb2{bottom:933.253333pt;}
.y10{bottom:936.933333pt;}
.y153{bottom:937.573333pt;}
.y1ba{bottom:939.813333pt;}
.y51{bottom:942.533333pt;}
.yb1{bottom:947.653333pt;}
.y1b9{bottom:955.173333pt;}
.y50{bottom:957.893333pt;}
.y150{bottom:964.453333pt;}
.y10b{bottom:966.533333pt;}
.y111{bottom:969.253333pt;}
.y10e{bottom:969.573333pt;}
.y1b8{bottom:970.533333pt;}
.yf{bottom:973.093333pt;}
.y1b7{bottom:985.893333pt;}
.ye{bottom:988.453333pt;}
.yd{bottom:1003.813333pt;}
.y14f{bottom:1004.453333pt;}
.yc{bottom:1019.173333pt;}
.yb{bottom:1034.560000pt;}
.y6{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h31{height:5.025000pt;}
.h1a{height:13.120000pt;}
.h1d{height:13.152000pt;}
.h29{height:13.760000pt;}
.h2c{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h3{height:24.187500pt;}
.h1b{height:26.240000pt;}
.h28{height:26.381250pt;}
.h4{height:26.852500pt;}
.h5{height:29.187500pt;}
.h2e{height:31.200000pt;}
.h19{height:31.406250pt;}
.h15{height:33.857500pt;}
.h1f{height:35.200000pt;}
.h24{height:35.360000pt;}
.h2f{height:36.431250pt;}
.h11{height:37.792187pt;}
.h27{height:39.360000pt;}
.h10{height:42.063437pt;}
.h6{height:42.084375pt;}
.h1c{height:42.304688pt;}
.h25{height:42.400000pt;}
.h30{height:43.215000pt;}
.h9{height:44.505000pt;}
.h12{height:46.817187pt;}
.h22{height:47.085938pt;}
.h16{height:47.109375pt;}
.h2b{height:47.742188pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.h17{height:53.535000pt;}
.h18{height:54.598989pt;}
.hc{height:55.343750pt;}
.ha{height:58.563750pt;}
.h13{height:59.360000pt;}
.h20{height:59.520000pt;}
.h21{height:60.160000pt;}
.hd{height:64.500000pt;}
.h2a{height:68.960000pt;}
.h2d{height:68.992000pt;}
.h23{height:69.472000pt;}
.h1e{height:69.632000pt;}
.he{height:75.465000pt;}
.h26{height:82.752000pt;}
.h14{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.880000pt;}
.w7{width:55.040000pt;}
.w1e{width:75.520000pt;}
.w14{width:125.440000pt;}
.w15{width:128.192000pt;}
.w16{width:129.152000pt;}
.w17{width:136.186667pt;}
.w9{width:140.026667pt;}
.wc{width:150.240000pt;}
.w1a{width:169.146667pt;}
.w12{width:171.706667pt;}
.w10{width:174.266667pt;}
.w11{width:174.426667pt;}
.w2{width:203.546667pt;}
.wd{width:207.266667pt;}
.w1b{width:216.346667pt;}
.w1c{width:216.506667pt;}
.wa{width:224.986667pt;}
.w8{width:239.706667pt;}
.we{width:244.506667pt;}
.w4{width:386.146667pt;}
.w1f{width:529.373333pt;}
.w19{width:587.133333pt;}
.w13{width:588.573333pt;}
.wf{width:588.733333pt;}
.w18{width:591.613333pt;}
.wb{width:604.733333pt;}
.w1d{width:606.653333pt;}
.w6{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.760000pt;}
.x51{left:4.640000pt;}
.x1a{left:6.080000pt;}
.x2{left:7.200000pt;}
.x4{left:8.320000pt;}
.x2e{left:11.360000pt;}
.x44{left:12.480000pt;}
.x2b{left:19.994667pt;}
.x6{left:22.080000pt;}
.x3b{left:24.960000pt;}
.x30{left:27.200000pt;}
.x3c{left:29.280000pt;}
.x1c{left:31.680000pt;}
.x31{left:33.754667pt;}
.x3f{left:36.474667pt;}
.x42{left:38.106667pt;}
.x41{left:39.866667pt;}
.x3e{left:40.794667pt;}
.x2c{left:42.554667pt;}
.x1e{left:44.480000pt;}
.x4e{left:48.954667pt;}
.x22{left:53.274667pt;}
.x32{left:54.714667pt;}
.x38{left:58.400000pt;}
.x34{left:60.154667pt;}
.x37{left:62.400000pt;}
.x33{left:65.594667pt;}
.x39{left:72.800000pt;}
.x25{left:80.000000pt;}
.x35{left:85.914667pt;}
.x19{left:86.912000pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.x28{left:101.632000pt;}
.x45{left:103.872000pt;}
.xd{left:109.791988pt;}
.x18{left:113.471988pt;}
.x2a{left:118.592000pt;}
.x20{left:130.271988pt;}
.x4a{left:131.871988pt;}
.xb{left:134.586655pt;}
.x17{left:141.946655pt;}
.xe{left:144.986655pt;}
.x7{left:155.866667pt;}
.x50{left:177.306667pt;}
.x26{left:201.146655pt;}
.x47{left:204.674667pt;}
.x48{left:217.314667pt;}
.x3d{left:218.594667pt;}
.x27{left:222.906655pt;}
.x29{left:233.634667pt;}
.x49{left:237.954667pt;}
.x23{left:246.106667pt;}
.x21{left:250.426655pt;}
.x40{left:251.706667pt;}
.x46{left:262.274667pt;}
.x4b{left:265.186667pt;}
.x1f{left:294.274667pt;}
.x3{left:296.226667pt;}
.xa{left:297.634667pt;}
.x36{left:309.666667pt;}
.x2d{left:313.346667pt;}
.x5{left:315.106667pt;}
.x1b{left:334.306667pt;}
.xf{left:357.826655pt;}
.x4d{left:372.066655pt;}
.xc{left:396.866655pt;}
.x10{left:398.946655pt;}
.x24{left:454.173333pt;}
.x1d{left:474.333333pt;}
.x4c{left:482.173333pt;}
.x15{left:501.053322pt;}
.x2f{left:510.173333pt;}
.x3a{left:513.373333pt;}
.x12{left:522.973322pt;}
.x14{left:529.213322pt;}
.x11{left:530.653322pt;}
.x43{left:546.013333pt;}
.x16{left:587.773322pt;}
.x13{left:601.893322pt;}
.x8{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; }
  