
    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_73b64f890d209b5f1338797b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_00a87cb0c3a53dc088f41452.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_f44fd1a651aa364daf24912a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_ace553f77f6041f801ee815b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_5f4f94b1fb31e18bdcc0740b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_12c4c48231e1032b76dd9896.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.916560px;}
.ls3f{letter-spacing:-0.868320px;}
.ls45{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.662400px;}
.ls20{letter-spacing:-0.576000px;}
.ls40{letter-spacing:-0.530640px;}
.ls3c{letter-spacing:-0.482400px;}
.ls23{letter-spacing:-0.478080px;}
.ls13{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.385920px;}
.ls35{letter-spacing:-0.345600px;}
.ls2e{letter-spacing:-0.337680px;}
.ls19{letter-spacing:-0.336960px;}
.ls18{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.192960px;}
.ls2f{letter-spacing:-0.144720px;}
.ls1a{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.084240px;}
.ls6{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.054720px;}
.ls24{letter-spacing:0.059760px;}
.ls7{letter-spacing:0.066240px;}
.ls21{letter-spacing:0.119520px;}
.ls12{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.192960px;}
.ls1{letter-spacing:0.198720px;}
.ls17{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.241200px;}
.ls5{letter-spacing:0.252720px;}
.ls42{letter-spacing:0.280800px;}
.ls3{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.298800px;}
.ls2b{letter-spacing:0.337680px;}
.ls48{letter-spacing:0.448200px;}
.ls10{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.871200px;}
.ls47{letter-spacing:0.956160px;}
.ls1b{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.961280px;}
.ls29{letter-spacing:2.211120px;}
.lsd{letter-spacing:2.304000px;}
.ls3a{letter-spacing:2.653200px;}
.ls39{letter-spacing:2.701440px;}
.ls25{letter-spacing:2.928240px;}
.ls1d{letter-spacing:3.024000px;}
.ls38{letter-spacing:3.376800px;}
.ls37{letter-spacing:3.425040px;}
.ls0{letter-spacing:3.643200px;}
.ls2a{letter-spacing:4.362480px;}
.lse{letter-spacing:4.464000px;}
.ls26{letter-spacing:5.079600px;}
.ls16{letter-spacing:5.184000px;}
.lsa{letter-spacing:5.904000px;}
.ls28{letter-spacing:6.513840px;}
.ls11{letter-spacing:6.624000px;}
.lsf{letter-spacing:7.344000px;}
.ls2c{letter-spacing:8.064000px;}
.lsb{letter-spacing:11.664000px;}
.ls15{letter-spacing:12.384000px;}
.ls1c{letter-spacing:13.104000px;}
.ls14{letter-spacing:13.816800px;}
.ls44{letter-spacing:13.824000px;}
.ls43{letter-spacing:13.983840px;}
.ls2{letter-spacing:14.742000px;}
.ls22{letter-spacing:21.744000px;}
.ls41{letter-spacing:37.584000px;}
.ls46{letter-spacing:44.784000px;}
.ls1f{letter-spacing:75.744000px;}
.ls3b{letter-spacing:195.984000px;}
.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;}
}
.ws5{word-spacing:-23.334480px;}
.ws31{word-spacing:-23.081760px;}
.ws40{word-spacing:-20.304000px;}
.ws0{word-spacing:-19.459440px;}
.ws2{word-spacing:-16.704000px;}
.ws66{word-spacing:-16.560000px;}
.ws7a{word-spacing:-16.493760px;}
.ws4{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.344000px;}
.ws3c{word-spacing:-16.272000px;}
.ws30{word-spacing:-16.200000px;}
.ws3a{word-spacing:-15.984000px;}
.ws79{word-spacing:-15.624000px;}
.ws3b{word-spacing:-15.480000px;}
.ws3{word-spacing:-15.301440px;}
.ws4c{word-spacing:-13.744800px;}
.ws5d{word-spacing:-13.685040px;}
.ws5c{word-spacing:-13.625280px;}
.ws58{word-spacing:-13.565520px;}
.ws44{word-spacing:-13.147200px;}
.ws64{word-spacing:-11.336400px;}
.ws69{word-spacing:-11.239920px;}
.ws71{word-spacing:-11.191680px;}
.ws62{word-spacing:-10.854000px;}
.ws65{word-spacing:-10.805760px;}
.ws61{word-spacing:-10.661040px;}
.ws63{word-spacing:-10.612800px;}
.ws70{word-spacing:-10.516320px;}
.ws74{word-spacing:-10.468080px;}
.ws73{word-spacing:-10.130400px;}
.ws72{word-spacing:-10.082160px;}
.ws1e{word-spacing:-4.464000px;}
.ws25{word-spacing:-3.744000px;}
.ws5b{word-spacing:-3.645360px;}
.ws67{word-spacing:-3.425040px;}
.ws85{word-spacing:-3.240000px;}
.ws19{word-spacing:-3.024000px;}
.ws49{word-spacing:-2.928240px;}
.wsa{word-spacing:-2.914560px;}
.ws36{word-spacing:-2.304000px;}
.ws52{word-spacing:-2.211120px;}
.ws2a{word-spacing:-1.584000px;}
.ws4e{word-spacing:-1.494000px;}
.ws7f{word-spacing:-1.374480px;}
.ws13{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.794880px;}
.ws46{word-spacing:-0.776880px;}
.ws76{word-spacing:-0.434160px;}
.ws42{word-spacing:-0.360000px;}
.ws68{word-spacing:-0.337680px;}
.ws1d{word-spacing:-0.288000px;}
.ws75{word-spacing:-0.241200px;}
.ws6c{word-spacing:-0.239040px;}
.ws8{word-spacing:-0.144000px;}
.ws53{word-spacing:-0.119520px;}
.ws12{word-spacing:-0.066240px;}
.ws48{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
.ws5f{word-spacing:0.059760px;}
.ws39{word-spacing:0.144000px;}
.ws6d{word-spacing:0.192960px;}
.ws78{word-spacing:0.216000px;}
.ws43{word-spacing:0.336960px;}
.ws6e{word-spacing:0.385920px;}
.ws2f{word-spacing:0.432000px;}
.ws29{word-spacing:0.576000px;}
.ws51{word-spacing:0.657360px;}
.wse{word-spacing:0.662400px;}
.ws24{word-spacing:0.720000px;}
.ws6f{word-spacing:0.921600px;}
.ws1b{word-spacing:1.296000px;}
.ws4d{word-spacing:1.374480px;}
.ws77{word-spacing:1.640160px;}
.ws23{word-spacing:2.016000px;}
.ws4a{word-spacing:2.091600px;}
.ws1f{word-spacing:2.736000px;}
.ws47{word-spacing:2.808720px;}
.ws7{word-spacing:3.456000px;}
.ws55{word-spacing:3.525840px;}
.ws9{word-spacing:3.576960px;}
.ws38{word-spacing:3.744000px;}
.ws17{word-spacing:4.176000px;}
.ws60{word-spacing:4.242960px;}
.ws7d{word-spacing:4.320000px;}
.ws1a{word-spacing:4.896000px;}
.ws5a{word-spacing:4.960080px;}
.wsc{word-spacing:4.968000px;}
.ws82{word-spacing:5.040000px;}
.ws20{word-spacing:5.616000px;}
.ws54{word-spacing:5.677200px;}
.wsb{word-spacing:5.696640px;}
.ws35{word-spacing:6.048000px;}
.ws14{word-spacing:6.336000px;}
.ws59{word-spacing:6.394320px;}
.ws2b{word-spacing:6.480000px;}
.ws2c{word-spacing:7.056000px;}
.ws11{word-spacing:7.153920px;}
.ws34{word-spacing:7.560000px;}
.ws15{word-spacing:7.776000px;}
.ws5e{word-spacing:7.828560px;}
.ws16{word-spacing:8.496000px;}
.ws3f{word-spacing:9.216000px;}
.ws27{word-spacing:9.936000px;}
.ws4f{word-spacing:10.039680px;}
.ws26{word-spacing:10.656000px;}
.ws81{word-spacing:10.800000px;}
.ws21{word-spacing:11.376000px;}
.ws57{word-spacing:11.473920px;}
.ws22{word-spacing:12.096000px;}
.ws3e{word-spacing:12.816000px;}
.ws10{word-spacing:12.916800px;}
.ws32{word-spacing:13.536000px;}
.ws37{word-spacing:13.680000px;}
.ws6a{word-spacing:14.256000px;}
.ws41{word-spacing:14.976000px;}
.ws18{word-spacing:15.696000px;}
.wsf{word-spacing:15.765120px;}
.ws1c{word-spacing:16.416000px;}
.ws28{word-spacing:17.136000px;}
.ws56{word-spacing:17.210880px;}
.ws33{word-spacing:17.856000px;}
.ws45{word-spacing:18.576000px;}
.ws2d{word-spacing:19.296000px;}
.ws80{word-spacing:19.541520px;}
.ws2e{word-spacing:20.016000px;}
.ws4b{word-spacing:22.176000px;}
.ws50{word-spacing:22.896000px;}
.ws6b{word-spacing:24.336000px;}
.ws7c{word-spacing:25.056000px;}
.ws7b{word-spacing:25.344000px;}
.ws3d{word-spacing:40.896000px;}
.ws7e{word-spacing:45.216000px;}
.ws83{word-spacing:61.776000px;}
.ws84{word-spacing:62.496000px;}
._0{margin-left:-16.416000px;}
._8{margin-left:-8.004240px;}
._3{margin-left:-5.100048px;}
._b{margin-left:-3.964896px;}
._a{margin-left:-2.844720px;}
._1{margin-left:-1.667952px;}
._2{width:1.503792px;}
._d{width:2.580048px;}
._9{width:4.242960px;}
._5{width:10.979856px;}
._c{width:14.624208px;}
._e{width:19.424016px;}
._7{width:20.528208px;}
._6{width:21.755952px;}
._4{width:41.711328px;}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:57.600000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:2.700000px;}
.y10e{bottom:2.880000px;}
.y10c{bottom:3.600000px;}
.y5{bottom:4.320000px;}
.y10f{bottom:30.420000px;}
.y6{bottom:57.420000px;}
.y4{bottom:73.800000px;}
.y3{bottom:119.340000px;}
.yad{bottom:140.400000px;}
.y27{bottom:147.780000px;}
.y16f{bottom:148.140000px;}
.y46{bottom:153.900000px;}
.y10d{bottom:154.980000px;}
.y52{bottom:155.700000px;}
.y64{bottom:158.220000px;}
.y76{bottom:159.660000px;}
.yc2{bottom:160.380000px;}
.y13d{bottom:160.740000px;}
.y16e{bottom:168.840000px;}
.yac{bottom:171.360000px;}
.y110{bottom:171.540000px;}
.y1a0{bottom:174.600000px;}
.yde{bottom:175.860000px;}
.y26{bottom:178.920000px;}
.y19c{bottom:181.440000px;}
.y45{bottom:184.860000px;}
.yc1{bottom:186.120000px;}
.y51{bottom:186.660000px;}
.y63{bottom:189.180000px;}
.y16d{bottom:189.540000px;}
.y75{bottom:190.620000px;}
.y13c{bottom:191.700000px;}
.y19f{bottom:195.300000px;}
.y90{bottom:196.380000px;}
.y10b{bottom:197.100000px;}
.y19b{bottom:202.140000px;}
.yab{bottom:202.320000px;}
.ydd{bottom:206.820000px;}
.y25{bottom:209.880000px;}
.y16c{bottom:210.060000px;}
.yc0{bottom:211.860000px;}
.y44{bottom:215.820000px;}
.y19e{bottom:216.000000px;}
.y50{bottom:217.620000px;}
.y62{bottom:220.140000px;}
.yf4{bottom:220.500000px;}
.y74{bottom:221.580000px;}
.y19a{bottom:221.940000px;}
.y8f{bottom:222.300000px;}
.y13b{bottom:222.660000px;}
.y16b{bottom:230.760000px;}
.yaa{bottom:233.280000px;}
.y10a{bottom:234.720000px;}
.y19d{bottom:236.700000px;}
.ydc{bottom:237.780000px;}
.y199{bottom:239.220000px;}
.ybf{bottom:240.120000px;}
.y24{bottom:240.840000px;}
.y43{bottom:246.780000px;}
.y8e{bottom:248.040000px;}
.y4f{bottom:248.580000px;}
.y61{bottom:251.100000px;}
.yf3{bottom:251.640000px;}
.y73{bottom:252.540000px;}
.y13a{bottom:253.620000px;}
.y198{bottom:257.220000px;}
.ya9{bottom:264.240000px;}
.y109{bottom:265.860000px;}
.ydb{bottom:268.740000px;}
.y16a{bottom:269.820000px;}
.y23{bottom:271.800000px;}
.ybe{bottom:273.240000px;}
.y8d{bottom:273.960000px;}
.y42{bottom:277.740000px;}
.y197{bottom:277.920000px;}
.y4e{bottom:279.540000px;}
.y60{bottom:282.240000px;}
.yf2{bottom:282.600000px;}
.y72{bottom:283.680000px;}
.y139{bottom:284.580000px;}
.y108{bottom:296.820000px;}
.ya8{bottom:297.540000px;}
.y196{bottom:298.620000px;}
.y8c{bottom:299.700000px;}
.y22{bottom:302.760000px;}
.ybd{bottom:304.200000px;}
.y41{bottom:308.700000px;}
.y4d{bottom:310.500000px;}
.y5f{bottom:313.200000px;}
.yf1{bottom:313.560000px;}
.y71{bottom:314.640000px;}
.y138{bottom:315.540000px;}
.y195{bottom:319.320000px;}
.y8b{bottom:325.620000px;}
.ya7{bottom:326.160000px;}
.y107{bottom:327.780000px;}
.yda{bottom:330.660000px;}
.y21{bottom:333.720000px;}
.ybc{bottom:335.160000px;}
.y40{bottom:339.660000px;}
.y194{bottom:339.840000px;}
.y4c{bottom:341.460000px;}
.y5e{bottom:344.160000px;}
.yf0{bottom:344.520000px;}
.y70{bottom:345.600000px;}
.y137{bottom:346.680000px;}
.y8a{bottom:351.360000px;}
.ya6{bottom:352.080000px;}
.y106{bottom:358.740000px;}
.y193{bottom:360.540000px;}
.y149{bottom:360.900000px;}
.yd9{bottom:361.800000px;}
.y20{bottom:364.680000px;}
.y5d{bottom:365.580000px;}
.ybb{bottom:366.300000px;}
.y3f{bottom:370.800000px;}
.y4b{bottom:372.600000px;}
.yef{bottom:375.480000px;}
.y6f{bottom:376.560000px;}
.y89{bottom:377.280000px;}
.y136{bottom:377.640000px;}
.ya5{bottom:377.820000px;}
.y192{bottom:381.240000px;}
.y5c{bottom:386.640000px;}
.y105{bottom:389.700000px;}
.yd8{bottom:392.760000px;}
.y1f{bottom:395.640000px;}
.yba{bottom:397.260000px;}
.y3e{bottom:401.760000px;}
.y191{bottom:401.940000px;}
.y4a{bottom:403.560000px;}
.ya4{bottom:403.740000px;}
.yee{bottom:406.440000px;}
.y6e{bottom:407.520000px;}
.y135{bottom:408.600000px;}
.y104{bottom:408.960000px;}
.y190{bottom:422.460000px;}
.y103{bottom:422.820000px;}
.y5b{bottom:423.000000px;}
.yd7{bottom:423.720000px;}
.y1e{bottom:426.600000px;}
.yb9{bottom:428.220000px;}
.y148{bottom:430.920000px;}
.y3d{bottom:432.720000px;}
.ya3{bottom:433.980000px;}
.y49{bottom:434.520000px;}
.yed{bottom:437.400000px;}
.y6d{bottom:438.480000px;}
.y134{bottom:439.560000px;}
.y18f{bottom:443.160000px;}
.y102{bottom:444.240000px;}
.y1d{bottom:448.020000px;}
.yd6{bottom:449.460000px;}
.yb8{bottom:459.180000px;}
.y147{bottom:461.880000px;}
.y3c{bottom:463.680000px;}
.y18e{bottom:463.860000px;}
.ya2{bottom:464.940000px;}
.y48{bottom:465.480000px;}
.yec{bottom:468.360000px;}
.y6c{bottom:469.440000px;}
.y133{bottom:470.520000px;}
.yd5{bottom:475.200000px;}
.y18d{bottom:484.560000px;}
.y47{bottom:486.720000px;}
.yb7{bottom:490.140000px;}
.y5a{bottom:492.840000px;}
.y3b{bottom:494.640000px;}
.y6b{bottom:495.180000px;}
.ya1{bottom:495.900000px;}
.yeb{bottom:499.500000px;}
.y88{bottom:500.400000px;}
.yd4{bottom:501.120000px;}
.y132{bottom:501.480000px;}
.y18c{bottom:505.080000px;}
.y114{bottom:517.658700px;}
.y1c{bottom:517.860000px;}
.y6a{bottom:521.100000px;}
.y146{bottom:523.800000px;}
.y59{bottom:523.980000px;}
.y3a{bottom:525.600000px;}
.y18b{bottom:525.780000px;}
.ya0{bottom:526.860000px;}
.yea{bottom:530.460000px;}
.y87{bottom:531.360000px;}
.y113{bottom:531.515640px;}
.y131{bottom:532.440000px;}
.y18a{bottom:546.480000px;}
.y69{bottom:546.840000px;}
.y1b{bottom:550.980000px;}
.yb6{bottom:552.060000px;}
.yd3{bottom:552.780000px;}
.y145{bottom:554.760000px;}
.y58{bottom:554.940000px;}
.y39{bottom:556.560000px;}
.y116{bottom:557.034600px;}
.y9f{bottom:557.820000px;}
.ye9{bottom:561.420000px;}
.y86{bottom:562.500000px;}
.y130{bottom:563.400000px;}
.y189{bottom:567.180000px;}
.y115{bottom:570.891540px;}
.y68{bottom:572.760000px;}
.yd2{bottom:578.520000px;}
.y1a{bottom:581.940000px;}
.yb5{bottom:583.020000px;}
.y9e{bottom:583.740000px;}
.y144{bottom:585.720000px;}
.y57{bottom:585.900000px;}
.y38{bottom:587.520000px;}
.y188{bottom:587.700000px;}
.ye8{bottom:592.380000px;}
.y85{bottom:593.460000px;}
.y12f{bottom:594.540000px;}
.y67{bottom:598.500000px;}
.yd1{bottom:604.440000px;}
.y187{bottom:608.400000px;}
.y9d{bottom:609.480000px;}
.yb4{bottom:613.980000px;}
.y19{bottom:615.240000px;}
.y112{bottom:615.899460px;}
.y143{bottom:616.680000px;}
.y56{bottom:616.860000px;}
.y37{bottom:618.480000px;}
.y118{bottom:621.820920px;}
.ye7{bottom:623.340000px;}
.y66{bottom:624.420000px;}
.y12e{bottom:625.500000px;}
.y186{bottom:629.100000px;}
.y111{bottom:629.756400px;}
.yd0{bottom:630.360000px;}
.y11a{bottom:633.772380px;}
.y9c{bottom:635.400000px;}
.y117{bottom:635.677860px;}
.yb3{bottom:645.120000px;}
.y18{bottom:646.200000px;}
.y119{bottom:647.629320px;}
.y142{bottom:647.640000px;}
.y36{bottom:649.620000px;}
.y185{bottom:649.800000px;}
.y65{bottom:650.340000px;}
.ye6{bottom:654.300000px;}
.y84{bottom:655.380000px;}
.y12d{bottom:656.460000px;}
.ycf{bottom:660.600000px;}
.y9b{bottom:661.140000px;}
.y11b{bottom:661.922700px;}
.y55{bottom:668.700000px;}
.y1a4{bottom:670.140000px;}
.y184{bottom:670.320000px;}
.yb2{bottom:676.080000px;}
.y141{bottom:678.780000px;}
.y17{bottom:679.500000px;}
.y35{bottom:680.580000px;}
.ye5{bottom:685.260000px;}
.y83{bottom:686.340000px;}
.y9a{bottom:687.060000px;}
.y12c{bottom:687.420000px;}
.y183{bottom:691.020000px;}
.yce{bottom:691.560000px;}
.y54{bottom:699.480000px;}
.y101{bottom:701.100000px;}
.yb1{bottom:701.820000px;}
.y140{bottom:704.880000px;}
.y34{bottom:711.540000px;}
.y182{bottom:711.720000px;}
.ye4{bottom:716.220000px;}
.y82{bottom:717.300000px;}
.y12b{bottom:718.380000px;}
.ycd{bottom:722.520000px;}
.y13f{bottom:725.580000px;}
.y53{bottom:726.300000px;}
.yb0{bottom:727.560000px;}
.y16{bottom:730.620000px;}
.y100{bottom:732.060000px;}
.y1a3{bottom:732.240000px;}
.y181{bottom:732.420000px;}
.y33{bottom:742.500000px;}
.y13e{bottom:746.820000px;}
.ye3{bottom:747.180000px;}
.y81{bottom:748.260000px;}
.y12a{bottom:749.340000px;}
.y15{bottom:749.520000px;}
.y180{bottom:752.940000px;}
.yaf{bottom:753.480000px;}
.yff{bottom:763.020000px;}
.y1a2{bottom:763.200000px;}
.y14{bottom:768.600000px;}
.y14a{bottom:770.584200px;}
.y159{bottom:771.838440px;}
.y32{bottom:773.460000px;}
.y17f{bottom:773.640000px;}
.ye2{bottom:778.320000px;}
.y80{bottom:779.220000px;}
.y129{bottom:780.300000px;}
.ycc{bottom:784.440000px;}
.y14b{bottom:787.468200px;}
.y13{bottom:787.500000px;}
.y15a{bottom:788.722440px;}
.yfe{bottom:793.980000px;}
.y1a1{bottom:794.160000px;}
.y17e{bottom:794.340000px;}
.ye1{bottom:797.580000px;}
.y14c{bottom:804.352200px;}
.y31{bottom:804.420000px;}
.yae{bottom:805.140000px;}
.y15b{bottom:805.606440px;}
.y12{bottom:806.400000px;}
.y7f{bottom:810.360000px;}
.ye0{bottom:811.440000px;}
.y17d{bottom:815.040000px;}
.ycb{bottom:815.400000px;}
.y14d{bottom:821.236200px;}
.y15c{bottom:822.490440px;}
.yfd{bottom:824.940000px;}
.y11{bottom:825.300000px;}
.ydf{bottom:831.060000px;}
.y128{bottom:832.140000px;}
.y30{bottom:835.380000px;}
.y17c{bottom:835.560000px;}
.y14e{bottom:838.120200px;}
.y15d{bottom:839.374440px;}
.y7e{bottom:841.140000px;}
.y99{bottom:841.320000px;}
.y10{bottom:844.200000px;}
.yca{bottom:846.360000px;}
.y126{bottom:848.520000px;}
.y14f{bottom:855.004200px;}
.yfc{bottom:856.080000px;}
.y15e{bottom:856.258440px;}
.y17b{bottom:856.260000px;}
.yf{bottom:863.100000px;}
.y127{bottom:865.080000px;}
.y2f{bottom:866.340000px;}
.y7d{bottom:867.060000px;}
.y150{bottom:871.888200px;}
.y98{bottom:872.280000px;}
.y15f{bottom:873.142440px;}
.y17a{bottom:876.960000px;}
.yc9{bottom:877.320000px;}
.ye{bottom:882.180000px;}
.yfb{bottom:887.040000px;}
.y151{bottom:888.772200px;}
.y160{bottom:890.026440px;}
.y125{bottom:890.640000px;}
.y7c{bottom:892.800000px;}
.y2e{bottom:897.480000px;}
.y179{bottom:897.660000px;}
.yd{bottom:901.080000px;}
.y97{bottom:903.240000px;}
.y152{bottom:905.656200px;}
.y161{bottom:906.910440px;}
.yc8{bottom:908.460000px;}
.y124{bottom:913.860000px;}
.yfa{bottom:918.000000px;}
.y178{bottom:918.180000px;}
.y7b{bottom:918.720000px;}
.yc{bottom:919.980000px;}
.y153{bottom:922.540200px;}
.y162{bottom:923.794440px;}
.y2d{bottom:928.440000px;}
.y96{bottom:934.200000px;}
.y123{bottom:937.080000px;}
.y177{bottom:938.880000px;}
.yc7{bottom:939.420000px;}
.y154{bottom:939.424200px;}
.y163{bottom:940.678440px;}
.y7a{bottom:944.460000px;}
.yf9{bottom:948.960000px;}
.yb{bottom:952.020000px;}
.y155{bottom:956.308200px;}
.y164{bottom:957.562440px;}
.y2c{bottom:959.400000px;}
.y176{bottom:959.580000px;}
.y122{bottom:960.300000px;}
.y95{bottom:965.160000px;}
.y79{bottom:970.380000px;}
.y156{bottom:973.192200px;}
.y165{bottom:974.446440px;}
.yf8{bottom:979.920000px;}
.y175{bottom:980.280000px;}
.ya{bottom:982.980000px;}
.y121{bottom:983.520000px;}
.y157{bottom:990.076200px;}
.y2b{bottom:990.360000px;}
.y166{bottom:991.330440px;}
.y78{bottom:996.120000px;}
.y174{bottom:1000.800000px;}
.yc6{bottom:1001.340000px;}
.y120{bottom:1006.920000px;}
.y158{bottom:1006.960200px;}
.y167{bottom:1008.214440px;}
.yf7{bottom:1010.880000px;}
.y9{bottom:1013.940000px;}
.y2a{bottom:1021.320000px;}
.y173{bottom:1021.500000px;}
.y77{bottom:1022.040000px;}
.y94{bottom:1027.080000px;}
.y11f{bottom:1030.140000px;}
.yc5{bottom:1032.300000px;}
.yf6{bottom:1041.840000px;}
.y172{bottom:1042.200000px;}
.y8{bottom:1044.900000px;}
.y93{bottom:1049.400000px;}
.y169{bottom:1051.156500px;}
.y29{bottom:1052.280000px;}
.y11d{bottom:1053.360000px;}
.yc4{bottom:1058.040000px;}
.yf5{bottom:1062.540000px;}
.y171{bottom:1062.900000px;}
.y92{bottom:1066.680000px;}
.y168{bottom:1071.676500px;}
.y11c{bottom:1076.580000px;}
.y7{bottom:1080.360000px;}
.y28{bottom:1083.240000px;}
.y170{bottom:1083.420000px;}
.y91{bottom:1083.780000px;}
.yc3{bottom:1083.960000px;}
.y2{bottom:1124.820000px;}
.y1{bottom:1141.200000px;}
.h3{height:20.700000px;}
.h11{height:22.498500px;}
.hd{height:22.500000px;}
.he{height:41.400000px;}
.h8{height:47.988281px;}
.hf{height:51.472080px;}
.hc{height:52.292160px;}
.h10{height:61.459200px;}
.h12{height:62.327813px;}
.ha{height:63.763920px;}
.hb{height:64.779840px;}
.h5{height:70.678080px;}
.h7{height:75.093750px;}
.h2{height:76.824000px;}
.h9{height:78.048000px;}
.h6{height:87.859687px;}
.h4{height:89.884080px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:50.578500px;}
.wb{width:51.300000px;}
.wa{width:51.480000px;}
.w7{width:51.840000px;}
.wc{width:59.580000px;}
.w8{width:61.920000px;}
.wd{width:72.001500px;}
.w9{width:72.360000px;}
.w5{width:81.180000px;}
.w3{width:315.360000px;}
.w2{width:322.380000px;}
.w4{width:558.180000px;}
.we{width:558.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:4.860000px;}
.x21{left:8.820000px;}
.x18{left:11.700000px;}
.x35{left:12.960000px;}
.x1a{left:14.220000px;}
.x13{left:15.840000px;}
.x25{left:18.180000px;}
.x39{left:20.340000px;}
.x36{left:21.420000px;}
.x15{left:22.500000px;}
.x37{left:23.760000px;}
.x38{left:26.280000px;}
.x1c{left:29.520000px;}
.x11{left:40.500000px;}
.x4{left:61.200000px;}
.x55{left:74.520000px;}
.x10{left:109.440000px;}
.x2{left:127.620000px;}
.x6{left:154.620000px;}
.xf{left:167.400000px;}
.x3a{left:172.260000px;}
.x3{left:180.720000px;}
.x9{left:191.520000px;}
.x41{left:197.589390px;}
.x3c{left:207.430350px;}
.xd{left:208.620000px;}
.x43{left:212.326710px;}
.x3e{left:213.990990px;}
.x3d{left:218.923530px;}
.x40{left:222.191790px;}
.x45{left:223.301310px;}
.x42{left:225.484170px;}
.x3f{left:229.319250px;}
.x44{left:230.947350px;}
.xa{left:244.620000px;}
.x53{left:246.993600px;}
.x12{left:249.300000px;}
.x14{left:256.860000px;}
.x33{left:296.902500px;}
.x17{left:300.780000px;}
.x54{left:302.973600px;}
.x16{left:309.960000px;}
.x2f{left:315.134910px;}
.x30{left:316.750950px;}
.x52{left:324.979170px;}
.x51{left:331.961910px;}
.x50{left:336.231150px;}
.x2d{left:343.487970px;}
.x4f{left:345.722370px;}
.x2e{left:349.252650px;}
.x19{left:353.340000px;}
.x1b{left:359.100000px;}
.x4e{left:363.293790px;}
.x8{left:385.200000px;}
.x31{left:387.941130px;}
.x32{left:390.642570px;}
.x1{left:404.280000px;}
.x4d{left:413.137770px;}
.x1e{left:415.980000px;}
.x1d{left:421.560000px;}
.x4c{left:424.534470px;}
.x4b{left:442.105890px;}
.x5{left:450.000000px;}
.x2b{left:452.679210px;}
.x2c{left:457.539390px;}
.x4a{left:465.369630px;}
.x49{left:470.121270px;}
.xc{left:473.040000px;}
.x20{left:489.060000px;}
.x48{left:495.278430px;}
.x1f{left:496.800000px;}
.x23{left:541.260000px;}
.x22{left:548.820000px;}
.x47{left:555.578430px;}
.x29{left:573.448050px;}
.x2a{left:585.146250px;}
.x24{left:593.280000px;}
.x26{left:605.520000px;}
.x28{left:653.580000px;}
.x27{left:677.880000px;}
.xe{left:680.580000px;}
.x7{left:721.620000px;}
.x46{left:744.534510px;}
.xb{left:746.280000px;}
.x3b{left:774.720000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.814720pt;}
.ls3f{letter-spacing:-0.771840pt;}
.ls45{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.588800pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls40{letter-spacing:-0.471680pt;}
.ls3c{letter-spacing:-0.428800pt;}
.ls23{letter-spacing:-0.424960pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.343040pt;}
.ls35{letter-spacing:-0.307200pt;}
.ls2e{letter-spacing:-0.300160pt;}
.ls19{letter-spacing:-0.299520pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.171520pt;}
.ls2f{letter-spacing:-0.128640pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.074880pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.048640pt;}
.ls24{letter-spacing:0.053120pt;}
.ls7{letter-spacing:0.058880pt;}
.ls21{letter-spacing:0.106240pt;}
.ls12{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.171520pt;}
.ls1{letter-spacing:0.176640pt;}
.ls17{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.214400pt;}
.ls5{letter-spacing:0.224640pt;}
.ls42{letter-spacing:0.249600pt;}
.ls3{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.265600pt;}
.ls2b{letter-spacing:0.300160pt;}
.ls48{letter-spacing:0.398400pt;}
.ls10{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.774400pt;}
.ls47{letter-spacing:0.849920pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.743360pt;}
.ls29{letter-spacing:1.965440pt;}
.lsd{letter-spacing:2.048000pt;}
.ls3a{letter-spacing:2.358400pt;}
.ls39{letter-spacing:2.401280pt;}
.ls25{letter-spacing:2.602880pt;}
.ls1d{letter-spacing:2.688000pt;}
.ls38{letter-spacing:3.001600pt;}
.ls37{letter-spacing:3.044480pt;}
.ls0{letter-spacing:3.238400pt;}
.ls2a{letter-spacing:3.877760pt;}
.lse{letter-spacing:3.968000pt;}
.ls26{letter-spacing:4.515200pt;}
.ls16{letter-spacing:4.608000pt;}
.lsa{letter-spacing:5.248000pt;}
.ls28{letter-spacing:5.790080pt;}
.ls11{letter-spacing:5.888000pt;}
.lsf{letter-spacing:6.528000pt;}
.ls2c{letter-spacing:7.168000pt;}
.lsb{letter-spacing:10.368000pt;}
.ls15{letter-spacing:11.008000pt;}
.ls1c{letter-spacing:11.648000pt;}
.ls14{letter-spacing:12.281600pt;}
.ls44{letter-spacing:12.288000pt;}
.ls43{letter-spacing:12.430080pt;}
.ls2{letter-spacing:13.104000pt;}
.ls22{letter-spacing:19.328000pt;}
.ls41{letter-spacing:33.408000pt;}
.ls46{letter-spacing:39.808000pt;}
.ls1f{letter-spacing:67.328000pt;}
.ls3b{letter-spacing:174.208000pt;}
.ws5{word-spacing:-20.741760pt;}
.ws31{word-spacing:-20.517120pt;}
.ws40{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.297280pt;}
.ws2{word-spacing:-14.848000pt;}
.ws66{word-spacing:-14.720000pt;}
.ws7a{word-spacing:-14.661120pt;}
.ws4{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws3c{word-spacing:-14.464000pt;}
.ws30{word-spacing:-14.400000pt;}
.ws3a{word-spacing:-14.208000pt;}
.ws79{word-spacing:-13.888000pt;}
.ws3b{word-spacing:-13.760000pt;}
.ws3{word-spacing:-13.601280pt;}
.ws4c{word-spacing:-12.217600pt;}
.ws5d{word-spacing:-12.164480pt;}
.ws5c{word-spacing:-12.111360pt;}
.ws58{word-spacing:-12.058240pt;}
.ws44{word-spacing:-11.686400pt;}
.ws64{word-spacing:-10.076800pt;}
.ws69{word-spacing:-9.991040pt;}
.ws71{word-spacing:-9.948160pt;}
.ws62{word-spacing:-9.648000pt;}
.ws65{word-spacing:-9.605120pt;}
.ws61{word-spacing:-9.476480pt;}
.ws63{word-spacing:-9.433600pt;}
.ws70{word-spacing:-9.347840pt;}
.ws74{word-spacing:-9.304960pt;}
.ws73{word-spacing:-9.004800pt;}
.ws72{word-spacing:-8.961920pt;}
.ws1e{word-spacing:-3.968000pt;}
.ws25{word-spacing:-3.328000pt;}
.ws5b{word-spacing:-3.240320pt;}
.ws67{word-spacing:-3.044480pt;}
.ws85{word-spacing:-2.880000pt;}
.ws19{word-spacing:-2.688000pt;}
.ws49{word-spacing:-2.602880pt;}
.wsa{word-spacing:-2.590720pt;}
.ws36{word-spacing:-2.048000pt;}
.ws52{word-spacing:-1.965440pt;}
.ws2a{word-spacing:-1.408000pt;}
.ws4e{word-spacing:-1.328000pt;}
.ws7f{word-spacing:-1.221760pt;}
.ws13{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.706560pt;}
.ws46{word-spacing:-0.690560pt;}
.ws76{word-spacing:-0.385920pt;}
.ws42{word-spacing:-0.320000pt;}
.ws68{word-spacing:-0.300160pt;}
.ws1d{word-spacing:-0.256000pt;}
.ws75{word-spacing:-0.214400pt;}
.ws6c{word-spacing:-0.212480pt;}
.ws8{word-spacing:-0.128000pt;}
.ws53{word-spacing:-0.106240pt;}
.ws12{word-spacing:-0.058880pt;}
.ws48{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.053120pt;}
.ws39{word-spacing:0.128000pt;}
.ws6d{word-spacing:0.171520pt;}
.ws78{word-spacing:0.192000pt;}
.ws43{word-spacing:0.299520pt;}
.ws6e{word-spacing:0.343040pt;}
.ws2f{word-spacing:0.384000pt;}
.ws29{word-spacing:0.512000pt;}
.ws51{word-spacing:0.584320pt;}
.wse{word-spacing:0.588800pt;}
.ws24{word-spacing:0.640000pt;}
.ws6f{word-spacing:0.819200pt;}
.ws1b{word-spacing:1.152000pt;}
.ws4d{word-spacing:1.221760pt;}
.ws77{word-spacing:1.457920pt;}
.ws23{word-spacing:1.792000pt;}
.ws4a{word-spacing:1.859200pt;}
.ws1f{word-spacing:2.432000pt;}
.ws47{word-spacing:2.496640pt;}
.ws7{word-spacing:3.072000pt;}
.ws55{word-spacing:3.134080pt;}
.ws9{word-spacing:3.179520pt;}
.ws38{word-spacing:3.328000pt;}
.ws17{word-spacing:3.712000pt;}
.ws60{word-spacing:3.771520pt;}
.ws7d{word-spacing:3.840000pt;}
.ws1a{word-spacing:4.352000pt;}
.ws5a{word-spacing:4.408960pt;}
.wsc{word-spacing:4.416000pt;}
.ws82{word-spacing:4.480000pt;}
.ws20{word-spacing:4.992000pt;}
.ws54{word-spacing:5.046400pt;}
.wsb{word-spacing:5.063680pt;}
.ws35{word-spacing:5.376000pt;}
.ws14{word-spacing:5.632000pt;}
.ws59{word-spacing:5.683840pt;}
.ws2b{word-spacing:5.760000pt;}
.ws2c{word-spacing:6.272000pt;}
.ws11{word-spacing:6.359040pt;}
.ws34{word-spacing:6.720000pt;}
.ws15{word-spacing:6.912000pt;}
.ws5e{word-spacing:6.958720pt;}
.ws16{word-spacing:7.552000pt;}
.ws3f{word-spacing:8.192000pt;}
.ws27{word-spacing:8.832000pt;}
.ws4f{word-spacing:8.924160pt;}
.ws26{word-spacing:9.472000pt;}
.ws81{word-spacing:9.600000pt;}
.ws21{word-spacing:10.112000pt;}
.ws57{word-spacing:10.199040pt;}
.ws22{word-spacing:10.752000pt;}
.ws3e{word-spacing:11.392000pt;}
.ws10{word-spacing:11.481600pt;}
.ws32{word-spacing:12.032000pt;}
.ws37{word-spacing:12.160000pt;}
.ws6a{word-spacing:12.672000pt;}
.ws41{word-spacing:13.312000pt;}
.ws18{word-spacing:13.952000pt;}
.wsf{word-spacing:14.013440pt;}
.ws1c{word-spacing:14.592000pt;}
.ws28{word-spacing:15.232000pt;}
.ws56{word-spacing:15.298560pt;}
.ws33{word-spacing:15.872000pt;}
.ws45{word-spacing:16.512000pt;}
.ws2d{word-spacing:17.152000pt;}
.ws80{word-spacing:17.370240pt;}
.ws2e{word-spacing:17.792000pt;}
.ws4b{word-spacing:19.712000pt;}
.ws50{word-spacing:20.352000pt;}
.ws6b{word-spacing:21.632000pt;}
.ws7c{word-spacing:22.272000pt;}
.ws7b{word-spacing:22.528000pt;}
.ws3d{word-spacing:36.352000pt;}
.ws7e{word-spacing:40.192000pt;}
.ws83{word-spacing:54.912000pt;}
.ws84{word-spacing:55.552000pt;}
._0{margin-left:-14.592000pt;}
._8{margin-left:-7.114880pt;}
._3{margin-left:-4.533376pt;}
._b{margin-left:-3.524352pt;}
._a{margin-left:-2.528640pt;}
._1{margin-left:-1.482624pt;}
._2{width:1.336704pt;}
._d{width:2.293376pt;}
._9{width:3.771520pt;}
._5{width:9.759872pt;}
._c{width:12.999296pt;}
._e{width:17.265792pt;}
._7{width:18.247296pt;}
._6{width:19.338624pt;}
._4{width:37.076736pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:51.200000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:2.400000pt;}
.y10e{bottom:2.560000pt;}
.y10c{bottom:3.200000pt;}
.y5{bottom:3.840000pt;}
.y10f{bottom:27.040000pt;}
.y6{bottom:51.040000pt;}
.y4{bottom:65.600000pt;}
.y3{bottom:106.080000pt;}
.yad{bottom:124.800000pt;}
.y27{bottom:131.360000pt;}
.y16f{bottom:131.680000pt;}
.y46{bottom:136.800000pt;}
.y10d{bottom:137.760000pt;}
.y52{bottom:138.400000pt;}
.y64{bottom:140.640000pt;}
.y76{bottom:141.920000pt;}
.yc2{bottom:142.560000pt;}
.y13d{bottom:142.880000pt;}
.y16e{bottom:150.080000pt;}
.yac{bottom:152.320000pt;}
.y110{bottom:152.480000pt;}
.y1a0{bottom:155.200000pt;}
.yde{bottom:156.320000pt;}
.y26{bottom:159.040000pt;}
.y19c{bottom:161.280000pt;}
.y45{bottom:164.320000pt;}
.yc1{bottom:165.440000pt;}
.y51{bottom:165.920000pt;}
.y63{bottom:168.160000pt;}
.y16d{bottom:168.480000pt;}
.y75{bottom:169.440000pt;}
.y13c{bottom:170.400000pt;}
.y19f{bottom:173.600000pt;}
.y90{bottom:174.560000pt;}
.y10b{bottom:175.200000pt;}
.y19b{bottom:179.680000pt;}
.yab{bottom:179.840000pt;}
.ydd{bottom:183.840000pt;}
.y25{bottom:186.560000pt;}
.y16c{bottom:186.720000pt;}
.yc0{bottom:188.320000pt;}
.y44{bottom:191.840000pt;}
.y19e{bottom:192.000000pt;}
.y50{bottom:193.440000pt;}
.y62{bottom:195.680000pt;}
.yf4{bottom:196.000000pt;}
.y74{bottom:196.960000pt;}
.y19a{bottom:197.280000pt;}
.y8f{bottom:197.600000pt;}
.y13b{bottom:197.920000pt;}
.y16b{bottom:205.120000pt;}
.yaa{bottom:207.360000pt;}
.y10a{bottom:208.640000pt;}
.y19d{bottom:210.400000pt;}
.ydc{bottom:211.360000pt;}
.y199{bottom:212.640000pt;}
.ybf{bottom:213.440000pt;}
.y24{bottom:214.080000pt;}
.y43{bottom:219.360000pt;}
.y8e{bottom:220.480000pt;}
.y4f{bottom:220.960000pt;}
.y61{bottom:223.200000pt;}
.yf3{bottom:223.680000pt;}
.y73{bottom:224.480000pt;}
.y13a{bottom:225.440000pt;}
.y198{bottom:228.640000pt;}
.ya9{bottom:234.880000pt;}
.y109{bottom:236.320000pt;}
.ydb{bottom:238.880000pt;}
.y16a{bottom:239.840000pt;}
.y23{bottom:241.600000pt;}
.ybe{bottom:242.880000pt;}
.y8d{bottom:243.520000pt;}
.y42{bottom:246.880000pt;}
.y197{bottom:247.040000pt;}
.y4e{bottom:248.480000pt;}
.y60{bottom:250.880000pt;}
.yf2{bottom:251.200000pt;}
.y72{bottom:252.160000pt;}
.y139{bottom:252.960000pt;}
.y108{bottom:263.840000pt;}
.ya8{bottom:264.480000pt;}
.y196{bottom:265.440000pt;}
.y8c{bottom:266.400000pt;}
.y22{bottom:269.120000pt;}
.ybd{bottom:270.400000pt;}
.y41{bottom:274.400000pt;}
.y4d{bottom:276.000000pt;}
.y5f{bottom:278.400000pt;}
.yf1{bottom:278.720000pt;}
.y71{bottom:279.680000pt;}
.y138{bottom:280.480000pt;}
.y195{bottom:283.840000pt;}
.y8b{bottom:289.440000pt;}
.ya7{bottom:289.920000pt;}
.y107{bottom:291.360000pt;}
.yda{bottom:293.920000pt;}
.y21{bottom:296.640000pt;}
.ybc{bottom:297.920000pt;}
.y40{bottom:301.920000pt;}
.y194{bottom:302.080000pt;}
.y4c{bottom:303.520000pt;}
.y5e{bottom:305.920000pt;}
.yf0{bottom:306.240000pt;}
.y70{bottom:307.200000pt;}
.y137{bottom:308.160000pt;}
.y8a{bottom:312.320000pt;}
.ya6{bottom:312.960000pt;}
.y106{bottom:318.880000pt;}
.y193{bottom:320.480000pt;}
.y149{bottom:320.800000pt;}
.yd9{bottom:321.600000pt;}
.y20{bottom:324.160000pt;}
.y5d{bottom:324.960000pt;}
.ybb{bottom:325.600000pt;}
.y3f{bottom:329.600000pt;}
.y4b{bottom:331.200000pt;}
.yef{bottom:333.760000pt;}
.y6f{bottom:334.720000pt;}
.y89{bottom:335.360000pt;}
.y136{bottom:335.680000pt;}
.ya5{bottom:335.840000pt;}
.y192{bottom:338.880000pt;}
.y5c{bottom:343.680000pt;}
.y105{bottom:346.400000pt;}
.yd8{bottom:349.120000pt;}
.y1f{bottom:351.680000pt;}
.yba{bottom:353.120000pt;}
.y3e{bottom:357.120000pt;}
.y191{bottom:357.280000pt;}
.y4a{bottom:358.720000pt;}
.ya4{bottom:358.880000pt;}
.yee{bottom:361.280000pt;}
.y6e{bottom:362.240000pt;}
.y135{bottom:363.200000pt;}
.y104{bottom:363.520000pt;}
.y190{bottom:375.520000pt;}
.y103{bottom:375.840000pt;}
.y5b{bottom:376.000000pt;}
.yd7{bottom:376.640000pt;}
.y1e{bottom:379.200000pt;}
.yb9{bottom:380.640000pt;}
.y148{bottom:383.040000pt;}
.y3d{bottom:384.640000pt;}
.ya3{bottom:385.760000pt;}
.y49{bottom:386.240000pt;}
.yed{bottom:388.800000pt;}
.y6d{bottom:389.760000pt;}
.y134{bottom:390.720000pt;}
.y18f{bottom:393.920000pt;}
.y102{bottom:394.880000pt;}
.y1d{bottom:398.240000pt;}
.yd6{bottom:399.520000pt;}
.yb8{bottom:408.160000pt;}
.y147{bottom:410.560000pt;}
.y3c{bottom:412.160000pt;}
.y18e{bottom:412.320000pt;}
.ya2{bottom:413.280000pt;}
.y48{bottom:413.760000pt;}
.yec{bottom:416.320000pt;}
.y6c{bottom:417.280000pt;}
.y133{bottom:418.240000pt;}
.yd5{bottom:422.400000pt;}
.y18d{bottom:430.720000pt;}
.y47{bottom:432.640000pt;}
.yb7{bottom:435.680000pt;}
.y5a{bottom:438.080000pt;}
.y3b{bottom:439.680000pt;}
.y6b{bottom:440.160000pt;}
.ya1{bottom:440.800000pt;}
.yeb{bottom:444.000000pt;}
.y88{bottom:444.800000pt;}
.yd4{bottom:445.440000pt;}
.y132{bottom:445.760000pt;}
.y18c{bottom:448.960000pt;}
.y114{bottom:460.141067pt;}
.y1c{bottom:460.320000pt;}
.y6a{bottom:463.200000pt;}
.y146{bottom:465.600000pt;}
.y59{bottom:465.760000pt;}
.y3a{bottom:467.200000pt;}
.y18b{bottom:467.360000pt;}
.ya0{bottom:468.320000pt;}
.yea{bottom:471.520000pt;}
.y87{bottom:472.320000pt;}
.y113{bottom:472.458347pt;}
.y131{bottom:473.280000pt;}
.y18a{bottom:485.760000pt;}
.y69{bottom:486.080000pt;}
.y1b{bottom:489.760000pt;}
.yb6{bottom:490.720000pt;}
.yd3{bottom:491.360000pt;}
.y145{bottom:493.120000pt;}
.y58{bottom:493.280000pt;}
.y39{bottom:494.720000pt;}
.y116{bottom:495.141867pt;}
.y9f{bottom:495.840000pt;}
.ye9{bottom:499.040000pt;}
.y86{bottom:500.000000pt;}
.y130{bottom:500.800000pt;}
.y189{bottom:504.160000pt;}
.y115{bottom:507.459147pt;}
.y68{bottom:509.120000pt;}
.yd2{bottom:514.240000pt;}
.y1a{bottom:517.280000pt;}
.yb5{bottom:518.240000pt;}
.y9e{bottom:518.880000pt;}
.y144{bottom:520.640000pt;}
.y57{bottom:520.800000pt;}
.y38{bottom:522.240000pt;}
.y188{bottom:522.400000pt;}
.ye8{bottom:526.560000pt;}
.y85{bottom:527.520000pt;}
.y12f{bottom:528.480000pt;}
.y67{bottom:532.000000pt;}
.yd1{bottom:537.280000pt;}
.y187{bottom:540.800000pt;}
.y9d{bottom:541.760000pt;}
.yb4{bottom:545.760000pt;}
.y19{bottom:546.880000pt;}
.y112{bottom:547.466187pt;}
.y143{bottom:548.160000pt;}
.y56{bottom:548.320000pt;}
.y37{bottom:549.760000pt;}
.y118{bottom:552.729707pt;}
.ye7{bottom:554.080000pt;}
.y66{bottom:555.040000pt;}
.y12e{bottom:556.000000pt;}
.y186{bottom:559.200000pt;}
.y111{bottom:559.783467pt;}
.yd0{bottom:560.320000pt;}
.y11a{bottom:563.353227pt;}
.y9c{bottom:564.800000pt;}
.y117{bottom:565.046987pt;}
.yb3{bottom:573.440000pt;}
.y18{bottom:574.400000pt;}
.y119{bottom:575.670507pt;}
.y142{bottom:575.680000pt;}
.y36{bottom:577.440000pt;}
.y185{bottom:577.600000pt;}
.y65{bottom:578.080000pt;}
.ye6{bottom:581.600000pt;}
.y84{bottom:582.560000pt;}
.y12d{bottom:583.520000pt;}
.ycf{bottom:587.200000pt;}
.y9b{bottom:587.680000pt;}
.y11b{bottom:588.375733pt;}
.y55{bottom:594.400000pt;}
.y1a4{bottom:595.680000pt;}
.y184{bottom:595.840000pt;}
.yb2{bottom:600.960000pt;}
.y141{bottom:603.360000pt;}
.y17{bottom:604.000000pt;}
.y35{bottom:604.960000pt;}
.ye5{bottom:609.120000pt;}
.y83{bottom:610.080000pt;}
.y9a{bottom:610.720000pt;}
.y12c{bottom:611.040000pt;}
.y183{bottom:614.240000pt;}
.yce{bottom:614.720000pt;}
.y54{bottom:621.760000pt;}
.y101{bottom:623.200000pt;}
.yb1{bottom:623.840000pt;}
.y140{bottom:626.560000pt;}
.y34{bottom:632.480000pt;}
.y182{bottom:632.640000pt;}
.ye4{bottom:636.640000pt;}
.y82{bottom:637.600000pt;}
.y12b{bottom:638.560000pt;}
.ycd{bottom:642.240000pt;}
.y13f{bottom:644.960000pt;}
.y53{bottom:645.600000pt;}
.yb0{bottom:646.720000pt;}
.y16{bottom:649.440000pt;}
.y100{bottom:650.720000pt;}
.y1a3{bottom:650.880000pt;}
.y181{bottom:651.040000pt;}
.y33{bottom:660.000000pt;}
.y13e{bottom:663.840000pt;}
.ye3{bottom:664.160000pt;}
.y81{bottom:665.120000pt;}
.y12a{bottom:666.080000pt;}
.y15{bottom:666.240000pt;}
.y180{bottom:669.280000pt;}
.yaf{bottom:669.760000pt;}
.yff{bottom:678.240000pt;}
.y1a2{bottom:678.400000pt;}
.y14{bottom:683.200000pt;}
.y14a{bottom:684.963733pt;}
.y159{bottom:686.078613pt;}
.y32{bottom:687.520000pt;}
.y17f{bottom:687.680000pt;}
.ye2{bottom:691.840000pt;}
.y80{bottom:692.640000pt;}
.y129{bottom:693.600000pt;}
.ycc{bottom:697.280000pt;}
.y14b{bottom:699.971733pt;}
.y13{bottom:700.000000pt;}
.y15a{bottom:701.086613pt;}
.yfe{bottom:705.760000pt;}
.y1a1{bottom:705.920000pt;}
.y17e{bottom:706.080000pt;}
.ye1{bottom:708.960000pt;}
.y14c{bottom:714.979733pt;}
.y31{bottom:715.040000pt;}
.yae{bottom:715.680000pt;}
.y15b{bottom:716.094613pt;}
.y12{bottom:716.800000pt;}
.y7f{bottom:720.320000pt;}
.ye0{bottom:721.280000pt;}
.y17d{bottom:724.480000pt;}
.ycb{bottom:724.800000pt;}
.y14d{bottom:729.987733pt;}
.y15c{bottom:731.102613pt;}
.yfd{bottom:733.280000pt;}
.y11{bottom:733.600000pt;}
.ydf{bottom:738.720000pt;}
.y128{bottom:739.680000pt;}
.y30{bottom:742.560000pt;}
.y17c{bottom:742.720000pt;}
.y14e{bottom:744.995733pt;}
.y15d{bottom:746.110613pt;}
.y7e{bottom:747.680000pt;}
.y99{bottom:747.840000pt;}
.y10{bottom:750.400000pt;}
.yca{bottom:752.320000pt;}
.y126{bottom:754.240000pt;}
.y14f{bottom:760.003733pt;}
.yfc{bottom:760.960000pt;}
.y15e{bottom:761.118613pt;}
.y17b{bottom:761.120000pt;}
.yf{bottom:767.200000pt;}
.y127{bottom:768.960000pt;}
.y2f{bottom:770.080000pt;}
.y7d{bottom:770.720000pt;}
.y150{bottom:775.011733pt;}
.y98{bottom:775.360000pt;}
.y15f{bottom:776.126613pt;}
.y17a{bottom:779.520000pt;}
.yc9{bottom:779.840000pt;}
.ye{bottom:784.160000pt;}
.yfb{bottom:788.480000pt;}
.y151{bottom:790.019733pt;}
.y160{bottom:791.134613pt;}
.y125{bottom:791.680000pt;}
.y7c{bottom:793.600000pt;}
.y2e{bottom:797.760000pt;}
.y179{bottom:797.920000pt;}
.yd{bottom:800.960000pt;}
.y97{bottom:802.880000pt;}
.y152{bottom:805.027733pt;}
.y161{bottom:806.142613pt;}
.yc8{bottom:807.520000pt;}
.y124{bottom:812.320000pt;}
.yfa{bottom:816.000000pt;}
.y178{bottom:816.160000pt;}
.y7b{bottom:816.640000pt;}
.yc{bottom:817.760000pt;}
.y153{bottom:820.035733pt;}
.y162{bottom:821.150613pt;}
.y2d{bottom:825.280000pt;}
.y96{bottom:830.400000pt;}
.y123{bottom:832.960000pt;}
.y177{bottom:834.560000pt;}
.yc7{bottom:835.040000pt;}
.y154{bottom:835.043733pt;}
.y163{bottom:836.158613pt;}
.y7a{bottom:839.520000pt;}
.yf9{bottom:843.520000pt;}
.yb{bottom:846.240000pt;}
.y155{bottom:850.051733pt;}
.y164{bottom:851.166613pt;}
.y2c{bottom:852.800000pt;}
.y176{bottom:852.960000pt;}
.y122{bottom:853.600000pt;}
.y95{bottom:857.920000pt;}
.y79{bottom:862.560000pt;}
.y156{bottom:865.059733pt;}
.y165{bottom:866.174613pt;}
.yf8{bottom:871.040000pt;}
.y175{bottom:871.360000pt;}
.ya{bottom:873.760000pt;}
.y121{bottom:874.240000pt;}
.y157{bottom:880.067733pt;}
.y2b{bottom:880.320000pt;}
.y166{bottom:881.182613pt;}
.y78{bottom:885.440000pt;}
.y174{bottom:889.600000pt;}
.yc6{bottom:890.080000pt;}
.y120{bottom:895.040000pt;}
.y158{bottom:895.075733pt;}
.y167{bottom:896.190613pt;}
.yf7{bottom:898.560000pt;}
.y9{bottom:901.280000pt;}
.y2a{bottom:907.840000pt;}
.y173{bottom:908.000000pt;}
.y77{bottom:908.480000pt;}
.y94{bottom:912.960000pt;}
.y11f{bottom:915.680000pt;}
.yc5{bottom:917.600000pt;}
.yf6{bottom:926.080000pt;}
.y172{bottom:926.400000pt;}
.y8{bottom:928.800000pt;}
.y93{bottom:932.800000pt;}
.y169{bottom:934.361333pt;}
.y29{bottom:935.360000pt;}
.y11d{bottom:936.320000pt;}
.yc4{bottom:940.480000pt;}
.yf5{bottom:944.480000pt;}
.y171{bottom:944.800000pt;}
.y92{bottom:948.160000pt;}
.y168{bottom:952.601333pt;}
.y11c{bottom:956.960000pt;}
.y7{bottom:960.320000pt;}
.y28{bottom:962.880000pt;}
.y170{bottom:963.040000pt;}
.y91{bottom:963.360000pt;}
.yc3{bottom:963.520000pt;}
.y2{bottom:999.840000pt;}
.y1{bottom:1014.400000pt;}
.h3{height:18.400000pt;}
.h11{height:19.998667pt;}
.hd{height:20.000000pt;}
.he{height:36.800000pt;}
.h8{height:42.656250pt;}
.hf{height:45.752960pt;}
.hc{height:46.481920pt;}
.h10{height:54.630400pt;}
.h12{height:55.402500pt;}
.ha{height:56.679040pt;}
.hb{height:57.582080pt;}
.h5{height:62.824960pt;}
.h7{height:66.750000pt;}
.h2{height:68.288000pt;}
.h9{height:69.376000pt;}
.h6{height:78.097500pt;}
.h4{height:79.896960pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.958667pt;}
.wb{width:45.600000pt;}
.wa{width:45.760000pt;}
.w7{width:46.080000pt;}
.wc{width:52.960000pt;}
.w8{width:55.040000pt;}
.wd{width:64.001333pt;}
.w9{width:64.320000pt;}
.w5{width:72.160000pt;}
.w3{width:280.320000pt;}
.w2{width:286.560000pt;}
.w4{width:496.160000pt;}
.we{width:496.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:4.320000pt;}
.x21{left:7.840000pt;}
.x18{left:10.400000pt;}
.x35{left:11.520000pt;}
.x1a{left:12.640000pt;}
.x13{left:14.080000pt;}
.x25{left:16.160000pt;}
.x39{left:18.080000pt;}
.x36{left:19.040000pt;}
.x15{left:20.000000pt;}
.x37{left:21.120000pt;}
.x38{left:23.360000pt;}
.x1c{left:26.240000pt;}
.x11{left:36.000000pt;}
.x4{left:54.400000pt;}
.x55{left:66.240000pt;}
.x10{left:97.280000pt;}
.x2{left:113.440000pt;}
.x6{left:137.440000pt;}
.xf{left:148.800000pt;}
.x3a{left:153.120000pt;}
.x3{left:160.640000pt;}
.x9{left:170.240000pt;}
.x41{left:175.635013pt;}
.x3c{left:184.382533pt;}
.xd{left:185.440000pt;}
.x43{left:188.734853pt;}
.x3e{left:190.214213pt;}
.x3d{left:194.598693pt;}
.x40{left:197.503813pt;}
.x45{left:198.490053pt;}
.x42{left:200.430373pt;}
.x3f{left:203.839333pt;}
.x44{left:205.286533pt;}
.xa{left:217.440000pt;}
.x53{left:219.549867pt;}
.x12{left:221.600000pt;}
.x14{left:228.320000pt;}
.x33{left:263.913333pt;}
.x17{left:267.360000pt;}
.x54{left:269.309867pt;}
.x16{left:275.520000pt;}
.x2f{left:280.119920pt;}
.x30{left:281.556400pt;}
.x52{left:288.870373pt;}
.x51{left:295.077253pt;}
.x50{left:298.872133pt;}
.x2d{left:305.322640pt;}
.x4f{left:307.308773pt;}
.x2e{left:310.446800pt;}
.x19{left:314.080000pt;}
.x1b{left:319.200000pt;}
.x4e{left:322.927813pt;}
.x8{left:342.400000pt;}
.x31{left:344.836560pt;}
.x32{left:347.237840pt;}
.x1{left:359.360000pt;}
.x4d{left:367.233573pt;}
.x1e{left:369.760000pt;}
.x1d{left:374.720000pt;}
.x4c{left:377.363973pt;}
.x4b{left:392.983013pt;}
.x5{left:400.000000pt;}
.x2b{left:402.381520pt;}
.x2c{left:406.701680pt;}
.x4a{left:413.661893pt;}
.x49{left:417.885573pt;}
.xc{left:420.480000pt;}
.x20{left:434.720000pt;}
.x48{left:440.247493pt;}
.x1f{left:441.600000pt;}
.x23{left:481.120000pt;}
.x22{left:487.840000pt;}
.x47{left:493.847493pt;}
.x29{left:509.731600pt;}
.x2a{left:520.130000pt;}
.x24{left:527.360000pt;}
.x26{left:538.240000pt;}
.x28{left:580.960000pt;}
.x27{left:602.560000pt;}
.xe{left:604.960000pt;}
.x7{left:641.440000pt;}
.x46{left:661.808453pt;}
.xb{left:663.360000pt;}
.x3b{left:688.640000pt;}
}




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