
    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_55d1882bd9ab0428edf267a8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49b5b39aa9e351ce72c22ab4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_20a49369f8871b8a85eafbac.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2276bc2569ce7cde7e878fa5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_fe726f58e05894b88fa886ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b3de05f875f3f0004b32b3ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_4ac895cf847e6c2c7acb9720.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2119bc5cb3ccad2f7d62ee16.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4f179d5fd2067ca60ad542d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_c2e2a4e1dcd3b9edb4035a55.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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;}
.m2{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,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:-83.520000px;}
.v4{vertical-align:-63.360000px;}
.v2{vertical-align:-45.147759px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:63.360000px;}
.lsd{letter-spacing:-1.728000px;}
.ls6{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.570000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.152400px;}
.ls19{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.141558px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.020160px;}
.ls15{letter-spacing:0.069000px;}
.ls1b{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.152000px;}
.lsa{letter-spacing:1.296000px;}
.lse{letter-spacing:1.440000px;}
.ls1a{letter-spacing:2.160000px;}
.ls1{letter-spacing:10.440000px;}
.ls1e{letter-spacing:10.800000px;}
.ls1d{letter-spacing:16.560000px;}
.ls13{letter-spacing:39.202318px;}
.ls12{letter-spacing:53.424000px;}
.ls10{letter-spacing:54.864000px;}
.ls9{letter-spacing:54.984000px;}
.ls2{letter-spacing:922.740000px;}
.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;}
}
.ws8{word-spacing:-39.528000px;}
.wsa{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.296000px;}
.wse{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.064000px;}
.ws9{word-spacing:-16.704000px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.ws2{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.184000px;}
.wsc{word-spacing:-10.808520px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-2.963520px;}
._0{margin-left:-1.935360px;}
._2{width:1.632960px;}
._9{width:2.782080px;}
._7{width:4.052160px;}
._6{width:5.685120px;}
._a{width:7.015680px;}
._3{width:8.890560px;}
._1{width:9.918720px;}
._d{width:11.007360px;}
._e{width:12.942720px;}
._14{width:14.057280px;}
._15{width:15.403200px;}
._5{width:16.994880px;}
._4{width:18.506880px;}
._c{width:20.079360px;}
._b{width:21.168000px;}
._11{width:22.800960px;}
._f{width:23.904000px;}
._10{width:25.882080px;}
._16{width:27.299040px;}
._1b{width:28.656000px;}
._19{width:29.986560px;}
._18{width:31.204800px;}
._17{width:32.247360px;}
._1a{width:34.225440px;}
._13{width:35.233440px;}
._12{width:36.864000px;}
._20{width:37.907040px;}
._1c{width:39.006720px;}
._22{width:40.362720px;}
._21{width:42.264000px;}
._1e{width:44.291520px;}
._1d{width:45.656640px;}
._1f{width:46.761120px;}
._24{width:57.251520px;}
._23{width:58.340160px;}
._25{width:60.644160px;}
.fc6{color:rgb(22,20,19);}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(51,50,50);}
.fc4{color:rgb(144,142,142);}
.fc1{color:rgb(131,129,129);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:71.898764px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yfb{bottom:3.927658px;}
.y11e{bottom:5.430000px;}
.y152{bottom:10.425000px;}
.y185{bottom:10.429500px;}
.y15e{bottom:10.440000px;}
.y166{bottom:10.785000px;}
.y14c{bottom:10.800000px;}
.y1cc{bottom:10.815000px;}
.y18f{bottom:10.830000px;}
.y157{bottom:15.475500px;}
.y194{bottom:15.525000px;}
.y19a{bottom:19.830000px;}
.yfc{bottom:29.226822px;}
.y154{bottom:31.305000px;}
.y196{bottom:31.309500px;}
.y160{bottom:31.320000px;}
.y15b{bottom:31.350000px;}
.y14e{bottom:31.365000px;}
.y1a4{bottom:31.665000px;}
.y15{bottom:41.250000px;}
.y12{bottom:42.000000px;}
.y151{bottom:60.135000px;}
.y14{bottom:61.500000px;}
.y19{bottom:64.440000px;}
.y11{bottom:66.000000px;}
.y13{bottom:81.750000px;}
.y10{bottom:90.000000px;}
.y18{bottom:102.276000px;}
.yf{bottom:114.000000px;}
.y4c{bottom:131.076000px;}
.y73{bottom:132.516000px;}
.y156{bottom:132.880500px;}
.y14a{bottom:136.116000px;}
.yf8{bottom:138.276000px;}
.yaa{bottom:139.356000px;}
.y184{bottom:140.800500px;}
.y19b{bottom:141.160500px;}
.y173{bottom:143.316000px;}
.y195{bottom:144.040500px;}
.ye2{bottom:144.756000px;}
.y4b{bottom:148.356000px;}
.y131{bottom:148.716000px;}
.y1b4{bottom:151.230000px;}
.y8f{bottom:152.670000px;}
.y4a{bottom:155.190000px;}
.y1ef{bottom:158.790000px;}
.y72{bottom:163.470000px;}
.y49{bottom:165.630000px;}
.y149{bottom:167.430000px;}
.y1a3{bottom:168.885000px;}
.yf7{bottom:169.230000px;}
.y1e1{bottom:169.590000px;}
.ya9{bottom:170.310000px;}
.y172{bottom:174.270000px;}
.y164{bottom:175.350000px;}
.ye1{bottom:175.710000px;}
.y1a0{bottom:176.085000px;}
.y130{bottom:179.670000px;}
.y1dd{bottom:180.750000px;}
.y1b3{bottom:182.550000px;}
.y48{bottom:182.910000px;}
.y8e{bottom:183.630000px;}
.y1c0{bottom:184.710000px;}
.y1d0{bottom:186.510000px;}
.yc6{bottom:187.590000px;}
.y11f{bottom:188.280000px;}
.y110{bottom:188.670000px;}
.y47{bottom:189.750000px;}
.y163{bottom:191.565000px;}
.y71{bottom:194.430000px;}
.y20e{bottom:194.790000px;}
.y11d{bottom:195.480000px;}
.y11c{bottom:196.230000px;}
.y199{bottom:196.605000px;}
.y148{bottom:198.390000px;}
.y193{bottom:199.470000px;}
.y155{bottom:199.830000px;}
.y46{bottom:200.190000px;}
.yf6{bottom:200.550000px;}
.ya8{bottom:201.630000px;}
.y171{bottom:205.275000px;}
.ye0{bottom:206.715000px;}
.y12f{bottom:210.675000px;}
.y1dc{bottom:211.755000px;}
.y1b2{bottom:213.555000px;}
.y8d{bottom:214.995000px;}
.y1bf{bottom:216.075000px;}
.y153{bottom:216.090000px;}
.y45{bottom:217.155000px;}
.y1cf{bottom:217.515000px;}
.yc5{bottom:218.595000px;}
.y10f{bottom:219.675000px;}
.y1ee{bottom:220.755000px;}
.y44{bottom:223.995000px;}
.y20d{bottom:224.715000px;}
.y1a2{bottom:224.730000px;}
.y70{bottom:225.435000px;}
.y11b{bottom:227.235000px;}
.y147{bottom:229.395000px;}
.y1e0{bottom:231.555000px;}
.y19f{bottom:231.570000px;}
.ya7{bottom:232.635000px;}
.yf5{bottom:232.995000px;}
.y43{bottom:235.155000px;}
.y224{bottom:235.875000px;}
.y170{bottom:236.595000px;}
.ydf{bottom:238.035000px;}
.y12e{bottom:241.995000px;}
.y1db{bottom:242.715000px;}
.y1b1{bottom:244.515000px;}
.y20c{bottom:245.235000px;}
.y8c{bottom:245.955000px;}
.y1be{bottom:247.035000px;}
.y162{bottom:247.050000px;}
.y1ce{bottom:248.475000px;}
.yc4{bottom:249.915000px;}
.y10e{bottom:250.995000px;}
.y1ed{bottom:251.715000px;}
.y6f{bottom:256.755000px;}
.y11a{bottom:258.555000px;}
.y146{bottom:260.355000px;}
.y183{bottom:262.515000px;}
.ya6{bottom:263.595000px;}
.yf4{bottom:263.955000px;}
.y1cd{bottom:264.690000px;}
.y42{bottom:265.035000px;}
.y223{bottom:265.395000px;}
.y20b{bottom:266.115000px;}
.y16f{bottom:267.555000px;}
.yde{bottom:268.635000px;}
.y150{bottom:271.530000px;}
.y12d{bottom:272.955000px;}
.y1da{bottom:274.035000px;}
.y1b0{bottom:275.475000px;}
.y8b{bottom:276.915000px;}
.y1bd{bottom:277.995000px;}
.yc3{bottom:280.875000px;}
.y10d{bottom:281.955000px;}
.y41{bottom:282.315000px;}
.y1ec{bottom:283.035000px;}
.y222{bottom:286.275000px;}
.y6e{bottom:287.715000px;}
.y145{bottom:291.315000px;}
.y182{bottom:293.835000px;}
.ya5{bottom:294.555000px;}
.yf3{bottom:294.915000px;}
.y20a{bottom:295.635000px;}
.y16e{bottom:298.515000px;}
.y119{bottom:298.875000px;}
.ydd{bottom:299.955000px;}
.y1d9{bottom:304.995000px;}
.y1af{bottom:306.795000px;}
.y8a{bottom:307.875000px;}
.y1bc{bottom:308.955000px;}
.yc2{bottom:311.835000px;}
.y10c{bottom:312.915000px;}
.y1eb{bottom:313.995000px;}
.y40{bottom:314.715000px;}
.y209{bottom:316.515000px;}
.y6d{bottom:318.675000px;}
.y12c{bottom:319.755000px;}
.y1cb{bottom:320.130000px;}
.y144{bottom:322.665000px;}
.y181{bottom:324.825000px;}
.ya4{bottom:325.905000px;}
.y221{bottom:327.705000px;}
.y16d{bottom:329.505000px;}
.y118{bottom:329.865000px;}
.ydc{bottom:331.305000px;}
.y208{bottom:337.065000px;}
.y1ae{bottom:337.785000px;}
.y1bb{bottom:340.305000px;}
.yc1{bottom:342.825000px;}
.y10b{bottom:343.905000px;}
.y1d8{bottom:344.625000px;}
.y1ea{bottom:344.985000px;}
.y89{bottom:347.865000px;}
.y6c{bottom:349.665000px;}
.y3f{bottom:350.025000px;}
.y143{bottom:353.625000px;}
.y180{bottom:355.785000px;}
.ya3{bottom:356.865000px;}
.yf2{bottom:357.225000px;}
.y117{bottom:360.825000px;}
.ydb{bottom:363.345000px;}
.y12b{bottom:365.865000px;}
.y207{bottom:366.945000px;}
.ye{bottom:367.500000px;}
.y3e{bottom:368.025000px;}
.y1ad{bottom:368.745000px;}
.y1ba{bottom:371.265000px;}
.yc0{bottom:374.145000px;}
.y10a{bottom:375.225000px;}
.y1e9{bottom:375.945000px;}
.y220{bottom:378.105000px;}
.y6b{bottom:380.985000px;}
.y142{bottom:384.585000px;}
.y1ac{bottom:384.945000px;}
.y17f{bottom:386.745000px;}
.y206{bottom:387.465000px;}
.ya2{bottom:387.825000px;}
.y3d{bottom:388.185000px;}
.y16c{bottom:391.785000px;}
.y116{bottom:392.145000px;}
.yda{bottom:394.305000px;}
.y12a{bottom:396.465000px;}
.y21f{bottom:398.625000px;}
.y1b9{bottom:402.225000px;}
.y1df{bottom:402.945000px;}
.y198{bottom:404.745000px;}
.ybf{bottom:405.105000px;}
.y3c{bottom:405.465000px;}
.y109{bottom:406.185000px;}
.y1e8{bottom:407.265000px;}
.y205{bottom:407.985000px;}
.y14f{bottom:409.065000px;}
.y6a{bottom:411.945000px;}
.y141{bottom:415.545000px;}
.y1d7{bottom:416.265000px;}
.y17e{bottom:418.065000px;}
.ya1{bottom:418.785000px;}
.yf1{bottom:419.145000px;}
.y88{bottom:419.505000px;}
.y161{bottom:420.225000px;}
.y3b{bottom:422.745000px;}
.y115{bottom:423.105000px;}
.y14d{bottom:425.265000px;}
.yd9{bottom:425.625000px;}
.y21e{bottom:428.505000px;}
.y129{bottom:429.585000px;}
.y19e{bottom:429.945000px;}
.y1b8{bottom:433.185000px;}
.yd{bottom:433.500000px;}
.ybe{bottom:436.065000px;}
.y108{bottom:437.190000px;}
.y204{bottom:437.910000px;}
.y1e7{bottom:438.270000px;}
.y3a{bottom:440.070000px;}
.y192{bottom:440.430000px;}
.y69{bottom:442.950000px;}
.y197{bottom:444.750000px;}
.y19d{bottom:446.190000px;}
.y140{bottom:446.910000px;}
.y1d6{bottom:447.270000px;}
.y17d{bottom:449.070000px;}
.ya0{bottom:450.150000px;}
.y87{bottom:451.590000px;}
.yc{bottom:453.750000px;}
.y114{bottom:454.110000px;}
.yd8{bottom:456.630000px;}
.y39{bottom:457.350000px;}
.y1de{bottom:458.430000px;}
.y128{bottom:460.950000px;}
.y1b7{bottom:464.550000px;}
.ybd{bottom:467.070000px;}
.y107{bottom:468.150000px;}
.y1e6{bottom:469.230000px;}
.y21d{bottom:469.950000px;}
.y191{bottom:471.390000px;}
.y68{bottom:473.910000px;}
.yb{bottom:474.000000px;}
.y38{bottom:474.270000px;}
.y15f{bottom:477.150000px;}
.y13f{bottom:477.870000px;}
.y1d5{bottom:478.230000px;}
.y17c{bottom:480.030000px;}
.y14b{bottom:480.750000px;}
.y9f{bottom:481.110000px;}
.y86{bottom:482.910000px;}
.y113{bottom:485.070000px;}
.yd7{bottom:487.590000px;}
.y190{bottom:487.950000px;}
.y203{bottom:488.310000px;}
.y37{bottom:491.550000px;}
.ya{bottom:494.250000px;}
.y1b6{bottom:495.510000px;}
.ybc{bottom:498.030000px;}
.y106{bottom:499.470000px;}
.y1e5{bottom:500.190000px;}
.y19c{bottom:501.630000px;}
.y67{bottom:505.230000px;}
.y36{bottom:508.830000px;}
.y1d4{bottom:509.190000px;}
.y1b5{bottom:511.710000px;}
.y9e{bottom:512.070000px;}
.yf0{bottom:512.430000px;}
.y9{bottom:514.500000px;}
.y85{bottom:514.950000px;}
.y112{bottom:516.030000px;}
.yd6{bottom:518.550000px;}
.y17b{bottom:519.630000px;}
.y21c{bottom:520.350000px;}
.y127{bottom:525.030000px;}
.y35{bottom:526.110000px;}
.ybb{bottom:529.350000px;}
.y105{bottom:530.430000px;}
.y15d{bottom:532.590000px;}
.y8{bottom:534.750000px;}
.y66{bottom:536.190000px;}
.y202{bottom:538.710000px;}
.y1ca{bottom:539.070000px;}
.y13e{bottom:539.790000px;}
.y1e4{bottom:540.150000px;}
.y1d3{bottom:540.510000px;}
.y21b{bottom:540.870000px;}
.y9d{bottom:543.030000px;}
.y34{bottom:543.390000px;}
.y84{bottom:546.270000px;}
.y16b{bottom:546.990000px;}
.y111{bottom:547.350000px;}
.yd5{bottom:549.870000px;}
.y126{bottom:556.380000px;}
.y1d2{bottom:556.740000px;}
.y201{bottom:559.260000px;}
.yba{bottom:560.340000px;}
.y33{bottom:560.700000px;}
.y104{bottom:561.420000px;}
.y21a{bottom:561.780000px;}
.y1e3{bottom:565.740000px;}
.y65{bottom:567.180000px;}
.y1c9{bottom:570.060000px;}
.y13d{bottom:571.140000px;}
.y9c{bottom:574.380000px;}
.y32{bottom:577.980000px;}
.y83{bottom:578.340000px;}
.yd4{bottom:580.500000px;}
.y125{bottom:587.340000px;}
.y200{bottom:589.140000px;}
.yb9{bottom:591.300000px;}
.y103{bottom:592.380000px;}
.y16a{bottom:594.180000px;}
.y31{bottom:595.260000px;}
.y235{bottom:596.700000px;}
.y64{bottom:598.140000px;}
.y7{bottom:599.250000px;}
.y1a1{bottom:599.940000px;}
.y1c8{bottom:601.020000px;}
.y13c{bottom:602.100000px;}
.y9b{bottom:605.340000px;}
.yef{bottom:605.700000px;}
.y82{bottom:609.300000px;}
.y1ff{bottom:609.660000px;}
.yd3{bottom:611.820000px;}
.y1d1{bottom:612.180000px;}
.y30{bottom:612.540000px;}
.y1{bottom:613.500000px;}
.y234{bottom:617.580000px;}
.y124{bottom:618.300000px;}
.y6{bottom:619.500000px;}
.y1e2{bottom:621.180000px;}
.yb8{bottom:622.260000px;}
.y102{bottom:623.700000px;}
.y63{bottom:629.100000px;}
.y2f{bottom:629.820000px;}
.y1fe{bottom:630.540000px;}
.y1c7{bottom:631.980000px;}
.y219{bottom:632.700000px;}
.y13b{bottom:633.060000px;}
.y9a{bottom:636.300000px;}
.yee{bottom:637.740000px;}
.y5{bottom:639.750000px;}
.y81{bottom:640.260000px;}
.yd2{bottom:643.140000px;}
.y2e{bottom:647.100000px;}
.y123{bottom:649.260000px;}
.y169{bottom:649.620000px;}
.y1fd{bottom:651.060000px;}
.y17a{bottom:653.220000px;}
.yb7{bottom:653.580000px;}
.y101{bottom:654.660000px;}
.y4{bottom:660.000000px;}
.y1c6{bottom:663.300000px;}
.y2d{bottom:664.020000px;}
.y62{bottom:664.740000px;}
.y99{bottom:667.260000px;}
.y233{bottom:668.010000px;}
.yed{bottom:669.090000px;}
.y18e{bottom:669.810000px;}
.y80{bottom:671.610000px;}
.y218{bottom:674.130000px;}
.yd1{bottom:675.210000px;}
.y1ab{bottom:677.730000px;}
.y122{bottom:680.610000px;}
.y1fc{bottom:680.970000px;}
.y2c{bottom:681.330000px;}
.y3{bottom:684.000000px;}
.yb6{bottom:684.570000px;}
.y100{bottom:685.650000px;}
.y18d{bottom:686.025000px;}
.y1c5{bottom:694.290000px;}
.y13a{bottom:695.370000px;}
.y232{bottom:697.530000px;}
.y2b{bottom:698.610000px;}
.yec{bottom:700.050000px;}
.y61{bottom:700.410000px;}
.y1fb{bottom:701.490000px;}
.y7f{bottom:702.570000px;}
.y217{bottom:704.010000px;}
.y2{bottom:704.250000px;}
.yd0{bottom:706.170000px;}
.y1aa{bottom:708.690000px;}
.y121{bottom:711.570000px;}
.yb5{bottom:715.530000px;}
.y2a{bottom:715.890000px;}
.yff{bottom:716.610000px;}
.y231{bottom:718.410000px;}
.y216{bottom:724.530000px;}
.y1c4{bottom:725.250000px;}
.y139{bottom:726.330000px;}
.y98{bottom:729.570000px;}
.yeb{bottom:731.010000px;}
.y1fa{bottom:731.370000px;}
.y29{bottom:733.170000px;}
.y7e{bottom:733.530000px;}
.y60{bottom:735.690000px;}
.ycf{bottom:737.490000px;}
.y230{bottom:738.930000px;}
.y1a9{bottom:739.650000px;}
.y18c{bottom:741.465000px;}
.y215{bottom:745.410000px;}
.yb4{bottom:746.490000px;}
.yfe{bottom:747.930000px;}
.y28{bottom:750.450000px;}
.y120{bottom:751.170000px;}
.y1f9{bottom:751.890000px;}
.y5f{bottom:752.970000px;}
.y15c{bottom:754.050000px;}
.y1c3{bottom:756.210000px;}
.y138{bottom:757.290000px;}
.y97{bottom:760.530000px;}
.yea{bottom:761.610000px;}
.y7d{bottom:764.490000px;}
.yce{bottom:768.450000px;}
.y22f{bottom:768.810000px;}
.y5e{bottom:770.250000px;}
.y15a{bottom:770.265000px;}
.y1a8{bottom:770.610000px;}
.y1c2{bottom:772.425000px;}
.y214{bottom:774.930000px;}
.y179{bottom:777.450000px;}
.yb3{bottom:777.810000px;}
.y1f8{bottom:781.770000px;}
.y27{bottom:782.850000px;}
.y5d{bottom:787.575000px;}
.y22e{bottom:789.375000px;}
.y96{bottom:791.535000px;}
.ye9{bottom:793.335000px;}
.y7c{bottom:795.855000px;}
.y137{bottom:796.935000px;}
.y18b{bottom:798.375000px;}
.y168{bottom:801.255000px;}
.y1a7{bottom:801.975000px;}
.y1f7{bottom:802.335000px;}
.y25{bottom:804.135000px;}
.y5c{bottom:804.855000px;}
.ycd{bottom:808.095000px;}
.yb2{bottom:808.815000px;}
.y22d{bottom:810.255000px;}
.y26{bottom:812.415000px;}
.y213{bottom:816.375000px;}
.y167{bottom:817.470000px;}
.y5b{bottom:822.135000px;}
.y95{bottom:822.855000px;}
.yfa{bottom:823.845000px;}
.ye8{bottom:824.295000px;}
.y23{bottom:824.655000px;}
.y159{bottom:825.750000px;}
.y7b{bottom:826.815000px;}
.y1c1{bottom:827.910000px;}
.y18a{bottom:829.335000px;}
.y1f6{bottom:832.215000px;}
.y24{bottom:832.935000px;}
.y136{bottom:837.255000px;}
.y178{bottom:838.335000px;}
.y5a{bottom:839.415000px;}
.yb1{bottom:839.775000px;}
.yfd{bottom:841.935000px;}
.y22{bottom:845.535000px;}
.y212{bottom:846.255000px;}
.ycc{bottom:848.775000px;}
.y1a6{bottom:849.150000px;}
.y1f5{bottom:852.735000px;}
.y21{bottom:853.815000px;}
.y59{bottom:856.695000px;}
.y7a{bottom:857.775000px;}
.y189{bottom:860.295000px;}
.y22c{bottom:860.655000px;}
.y20{bottom:866.415000px;}
.y177{bottom:866.775000px;}
.yb0{bottom:870.735000px;}
.y165{bottom:872.910000px;}
.y58{bottom:873.975000px;}
.y135{bottom:877.215000px;}
.ycb{bottom:880.815000px;}
.y22b{bottom:881.175000px;}
.y1f4{bottom:882.615000px;}
.y94{bottom:884.775000px;}
.ye7{bottom:887.655000px;}
.y79{bottom:888.735000px;}
.y1f{bottom:890.535000px;}
.y57{bottom:891.255000px;}
.y176{bottom:895.215000px;}
.yaf{bottom:902.085000px;}
.y1f3{bottom:903.165000px;}
.y1a5{bottom:904.605000px;}
.y56{bottom:908.565000px;}
.y22a{bottom:911.085000px;}
.yca{bottom:912.165000px;}
.y1e{bottom:914.685000px;}
.y93{bottom:915.765000px;}
.y134{bottom:917.205000px;}
.ye6{bottom:918.645000px;}
.y78{bottom:920.085000px;}
.y188{bottom:922.605000px;}
.y175{bottom:923.685000px;}
.y1f2{bottom:924.045000px;}
.y55{bottom:925.485000px;}
.y229{bottom:931.605000px;}
.yae{bottom:933.045000px;}
.y211{bottom:938.085000px;}
.y54{bottom:942.765000px;}
.yc9{bottom:944.565000px;}
.yf9{bottom:946.725000px;}
.y92{bottom:947.085000px;}
.ye5{bottom:949.605000px;}
.y77{bottom:951.045000px;}
.y174{bottom:952.125000px;}
.y228{bottom:952.485000px;}
.y187{bottom:953.565000px;}
.y1d{bottom:954.645000px;}
.y133{bottom:957.165000px;}
.y53{bottom:960.045000px;}
.yad{bottom:964.005000px;}
.y210{bottom:967.605000px;}
.y186{bottom:969.765000px;}
.y227{bottom:973.005000px;}
.y1f1{bottom:974.445000px;}
.yc8{bottom:976.605000px;}
.y52{bottom:977.325000px;}
.y91{bottom:978.045000px;}
.ye4{bottom:980.565000px;}
.y76{bottom:982.005000px;}
.y1c{bottom:982.365000px;}
.y20f{bottom:988.125000px;}
.y158{bottom:988.845000px;}
.y51{bottom:994.605000px;}
.y226{bottom:1002.885000px;}
.yac{bottom:1003.605000px;}
.y1f0{bottom:1003.965000px;}
.y132{bottom:1005.045000px;}
.yc7{bottom:1007.925000px;}
.y90{bottom:1009.005000px;}
.y1b{bottom:1010.085000px;}
.y50{bottom:1011.885000px;}
.y75{bottom:1012.965000px;}
.y225{bottom:1023.450000px;}
.ye3{bottom:1043.250000px;}
.yab{bottom:1043.970000px;}
.y74{bottom:1044.330000px;}
.y1a{bottom:1045.410000px;}
.y4f{bottom:1047.570000px;}
.y4e{bottom:1085.730000px;}
.y17{bottom:1114.890000px;}
.y4d{bottom:1123.170000px;}
.y16{bottom:1132.200000px;}
.h15{height:16.920000px;}
.h16{height:32.414766px;}
.hf{height:38.158594px;}
.h25{height:41.781000px;}
.h7{height:45.184219px;}
.h12{height:46.424103px;}
.hb{height:46.638281px;}
.h3{height:50.062500px;}
.h1c{height:52.195500px;}
.h1b{height:55.425000px;}
.h28{height:55.435500px;}
.h23{height:55.440000px;}
.h1e{height:55.461000px;}
.h19{height:55.470000px;}
.h2d{height:55.821000px;}
.h2{height:56.320312px;}
.h5{height:59.357813px;}
.he{height:60.952500px;}
.h10{height:64.546875px;}
.h6{height:65.010937px;}
.h17{height:66.757500px;}
.h13{height:70.529598px;}
.h14{height:70.564705px;}
.h36{height:70.628906px;}
.hc{height:70.664062px;}
.hd{height:72.562500px;}
.h11{height:74.004654px;}
.h1{height:75.093750px;}
.h9{height:84.172500px;}
.h24{height:88.951500px;}
.h4{height:94.689844px;}
.h8{height:97.233750px;}
.h2c{height:103.320000px;}
.h37{height:109.998281px;}
.h26{height:111.630000px;}
.h2e{height:120.630000px;}
.h1a{height:122.760000px;}
.h22{height:136.872000px;}
.h1d{height:147.960000px;}
.h20{height:149.760000px;}
.h21{height:152.325000px;}
.h2a{height:181.875000px;}
.h2b{height:183.600000px;}
.h29{height:184.725000px;}
.h31{height:197.325000px;}
.h18{height:202.755000px;}
.h32{height:203.805000px;}
.h1f{height:206.715000px;}
.h27{height:221.815500px;}
.h35{height:221.835000px;}
.h2f{height:222.150000px;}
.h33{height:230.835000px;}
.h30{height:244.875000px;}
.h34{height:269.355000px;}
.ha{height:1187.996175px;}
.h0{height:1188.000000px;}
.w2{width:56.474506px;}
.w3{width:69.120000px;}
.w4{width:648.630000px;}
.w5{width:648.645000px;}
.w1{width:917.996250px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:3.920309px;}
.x27{left:8.511640px;}
.x2a{left:11.085000px;}
.x25{left:43.618662px;}
.x2c{left:47.196000px;}
.xa{left:51.000000px;}
.x2b{left:72.360000px;}
.x1e{left:116.676000px;}
.x2e{left:119.569500px;}
.xe{left:127.476000px;}
.x3a{left:128.575500px;}
.x1d{left:132.516000px;}
.x12{left:133.632000px;}
.x23{left:143.352000px;}
.x30{left:144.415500px;}
.x3f{left:145.495500px;}
.x37{left:148.752000px;}
.x10{left:151.635000px;}
.x21{left:154.515000px;}
.x14{left:164.235000px;}
.x45{left:168.895500px;}
.x24{left:169.995000px;}
.x48{left:172.495500px;}
.x36{left:176.455500px;}
.x32{left:178.615500px;}
.x34{left:180.415500px;}
.x22{left:181.515000px;}
.x2d{left:184.035000px;}
.x42{left:186.895500px;}
.x4{left:192.270000px;}
.x5{left:193.380000px;}
.x1f{left:196.995000px;}
.x20{left:224.025000px;}
.x28{left:226.545000px;}
.x9{left:268.410000px;}
.x3{left:298.815000px;}
.xd{left:317.040000px;}
.x7{left:333.315000px;}
.x13{left:339.270000px;}
.x1c{left:343.590000px;}
.x8{left:368.205000px;}
.xc{left:392.040000px;}
.x35{left:414.160500px;}
.x15{left:422.460000px;}
.x1b{left:425.700000px;}
.x1a{left:428.220000px;}
.x6{left:436.485000px;}
.x1{left:438.435000px;}
.x11{left:458.820000px;}
.x2{left:480.000000px;}
.x33{left:485.125500px;}
.x41{left:509.605500px;}
.x38{left:510.685500px;}
.x2f{left:515.725500px;}
.x3c{left:520.765500px;}
.x40{left:526.525500px;}
.x43{left:527.605500px;}
.x46{left:533.725500px;}
.x3e{left:540.219000px;}
.x31{left:542.365500px;}
.x39{left:547.075500px;}
.x3d{left:550.315500px;}
.x44{left:551.395500px;}
.x49{left:572.635500px;}
.x47{left:580.555500px;}
.x3b{left:612.595500px;}
.x4b{left:628.795500px;}
.x19{left:631.695000px;}
.xb{left:656.175000px;}
.x18{left:677.445000px;}
.x29{left:734.400000px;}
.x4a{left:766.050000px;}
.xf{left:774.330000px;}
.x16{left:784.766250px;}
.x17{left:790.890000px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v4{vertical-align:-56.320000pt;}
.v2{vertical-align:-40.131342pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:56.320000pt;}
.lsd{letter-spacing:-1.536000pt;}
.ls6{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.135467pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.125829pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.017920pt;}
.ls15{letter-spacing:0.061333pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.024000pt;}
.lsa{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.920000pt;}
.ls1{letter-spacing:9.280000pt;}
.ls1e{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls13{letter-spacing:34.846505pt;}
.ls12{letter-spacing:47.488000pt;}
.ls10{letter-spacing:48.768000pt;}
.ls9{letter-spacing:48.874667pt;}
.ls2{letter-spacing:820.213333pt;}
.ws8{word-spacing:-35.136000pt;}
.wsa{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.152000pt;}
.wse{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws9{word-spacing:-14.848000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.ws2{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws4{word-spacing:-12.608000pt;}
.wsc{word-spacing:-9.607573pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-2.634240pt;}
._0{margin-left:-1.720320pt;}
._2{width:1.451520pt;}
._9{width:2.472960pt;}
._7{width:3.601920pt;}
._6{width:5.053440pt;}
._a{width:6.236160pt;}
._3{width:7.902720pt;}
._1{width:8.816640pt;}
._d{width:9.784320pt;}
._e{width:11.504640pt;}
._14{width:12.495360pt;}
._15{width:13.691733pt;}
._5{width:15.106560pt;}
._4{width:16.450560pt;}
._c{width:17.848320pt;}
._b{width:18.816000pt;}
._11{width:20.267520pt;}
._f{width:21.248000pt;}
._10{width:23.006293pt;}
._16{width:24.265813pt;}
._1b{width:25.472000pt;}
._19{width:26.654720pt;}
._18{width:27.737600pt;}
._17{width:28.664320pt;}
._1a{width:30.422613pt;}
._13{width:31.318613pt;}
._12{width:32.768000pt;}
._20{width:33.695147pt;}
._1c{width:34.672640pt;}
._22{width:35.877973pt;}
._21{width:37.568000pt;}
._1e{width:39.370240pt;}
._1d{width:40.583680pt;}
._1f{width:41.565440pt;}
._24{width:50.890240pt;}
._23{width:51.857920pt;}
._25{width:53.905920pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:63.910013pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yfb{bottom:3.491251pt;}
.y11e{bottom:4.826667pt;}
.y152{bottom:9.266667pt;}
.y185{bottom:9.270667pt;}
.y15e{bottom:9.280000pt;}
.y166{bottom:9.586667pt;}
.y14c{bottom:9.600000pt;}
.y1cc{bottom:9.613333pt;}
.y18f{bottom:9.626667pt;}
.y157{bottom:13.756000pt;}
.y194{bottom:13.800000pt;}
.y19a{bottom:17.626667pt;}
.yfc{bottom:25.979397pt;}
.y154{bottom:27.826667pt;}
.y196{bottom:27.830667pt;}
.y160{bottom:27.840000pt;}
.y15b{bottom:27.866667pt;}
.y14e{bottom:27.880000pt;}
.y1a4{bottom:28.146667pt;}
.y15{bottom:36.666667pt;}
.y12{bottom:37.333333pt;}
.y151{bottom:53.453333pt;}
.y14{bottom:54.666667pt;}
.y19{bottom:57.280000pt;}
.y11{bottom:58.666667pt;}
.y13{bottom:72.666667pt;}
.y10{bottom:80.000000pt;}
.y18{bottom:90.912000pt;}
.yf{bottom:101.333333pt;}
.y4c{bottom:116.512000pt;}
.y73{bottom:117.792000pt;}
.y156{bottom:118.116000pt;}
.y14a{bottom:120.992000pt;}
.yf8{bottom:122.912000pt;}
.yaa{bottom:123.872000pt;}
.y184{bottom:125.156000pt;}
.y19b{bottom:125.476000pt;}
.y173{bottom:127.392000pt;}
.y195{bottom:128.036000pt;}
.ye2{bottom:128.672000pt;}
.y4b{bottom:131.872000pt;}
.y131{bottom:132.192000pt;}
.y1b4{bottom:134.426667pt;}
.y8f{bottom:135.706667pt;}
.y4a{bottom:137.946667pt;}
.y1ef{bottom:141.146667pt;}
.y72{bottom:145.306667pt;}
.y49{bottom:147.226667pt;}
.y149{bottom:148.826667pt;}
.y1a3{bottom:150.120000pt;}
.yf7{bottom:150.426667pt;}
.y1e1{bottom:150.746667pt;}
.ya9{bottom:151.386667pt;}
.y172{bottom:154.906667pt;}
.y164{bottom:155.866667pt;}
.ye1{bottom:156.186667pt;}
.y1a0{bottom:156.520000pt;}
.y130{bottom:159.706667pt;}
.y1dd{bottom:160.666667pt;}
.y1b3{bottom:162.266667pt;}
.y48{bottom:162.586667pt;}
.y8e{bottom:163.226667pt;}
.y1c0{bottom:164.186667pt;}
.y1d0{bottom:165.786667pt;}
.yc6{bottom:166.746667pt;}
.y11f{bottom:167.360000pt;}
.y110{bottom:167.706667pt;}
.y47{bottom:168.666667pt;}
.y163{bottom:170.280000pt;}
.y71{bottom:172.826667pt;}
.y20e{bottom:173.146667pt;}
.y11d{bottom:173.760000pt;}
.y11c{bottom:174.426667pt;}
.y199{bottom:174.760000pt;}
.y148{bottom:176.346667pt;}
.y193{bottom:177.306667pt;}
.y155{bottom:177.626667pt;}
.y46{bottom:177.946667pt;}
.yf6{bottom:178.266667pt;}
.ya8{bottom:179.226667pt;}
.y171{bottom:182.466667pt;}
.ye0{bottom:183.746667pt;}
.y12f{bottom:187.266667pt;}
.y1dc{bottom:188.226667pt;}
.y1b2{bottom:189.826667pt;}
.y8d{bottom:191.106667pt;}
.y1bf{bottom:192.066667pt;}
.y153{bottom:192.080000pt;}
.y45{bottom:193.026667pt;}
.y1cf{bottom:193.346667pt;}
.yc5{bottom:194.306667pt;}
.y10f{bottom:195.266667pt;}
.y1ee{bottom:196.226667pt;}
.y44{bottom:199.106667pt;}
.y20d{bottom:199.746667pt;}
.y1a2{bottom:199.760000pt;}
.y70{bottom:200.386667pt;}
.y11b{bottom:201.986667pt;}
.y147{bottom:203.906667pt;}
.y1e0{bottom:205.826667pt;}
.y19f{bottom:205.840000pt;}
.ya7{bottom:206.786667pt;}
.yf5{bottom:207.106667pt;}
.y43{bottom:209.026667pt;}
.y224{bottom:209.666667pt;}
.y170{bottom:210.306667pt;}
.ydf{bottom:211.586667pt;}
.y12e{bottom:215.106667pt;}
.y1db{bottom:215.746667pt;}
.y1b1{bottom:217.346667pt;}
.y20c{bottom:217.986667pt;}
.y8c{bottom:218.626667pt;}
.y1be{bottom:219.586667pt;}
.y162{bottom:219.600000pt;}
.y1ce{bottom:220.866667pt;}
.yc4{bottom:222.146667pt;}
.y10e{bottom:223.106667pt;}
.y1ed{bottom:223.746667pt;}
.y6f{bottom:228.226667pt;}
.y11a{bottom:229.826667pt;}
.y146{bottom:231.426667pt;}
.y183{bottom:233.346667pt;}
.ya6{bottom:234.306667pt;}
.yf4{bottom:234.626667pt;}
.y1cd{bottom:235.280000pt;}
.y42{bottom:235.586667pt;}
.y223{bottom:235.906667pt;}
.y20b{bottom:236.546667pt;}
.y16f{bottom:237.826667pt;}
.yde{bottom:238.786667pt;}
.y150{bottom:241.360000pt;}
.y12d{bottom:242.626667pt;}
.y1da{bottom:243.586667pt;}
.y1b0{bottom:244.866667pt;}
.y8b{bottom:246.146667pt;}
.y1bd{bottom:247.106667pt;}
.yc3{bottom:249.666667pt;}
.y10d{bottom:250.626667pt;}
.y41{bottom:250.946667pt;}
.y1ec{bottom:251.586667pt;}
.y222{bottom:254.466667pt;}
.y6e{bottom:255.746667pt;}
.y145{bottom:258.946667pt;}
.y182{bottom:261.186667pt;}
.ya5{bottom:261.826667pt;}
.yf3{bottom:262.146667pt;}
.y20a{bottom:262.786667pt;}
.y16e{bottom:265.346667pt;}
.y119{bottom:265.666667pt;}
.ydd{bottom:266.626667pt;}
.y1d9{bottom:271.106667pt;}
.y1af{bottom:272.706667pt;}
.y8a{bottom:273.666667pt;}
.y1bc{bottom:274.626667pt;}
.yc2{bottom:277.186667pt;}
.y10c{bottom:278.146667pt;}
.y1eb{bottom:279.106667pt;}
.y40{bottom:279.746667pt;}
.y209{bottom:281.346667pt;}
.y6d{bottom:283.266667pt;}
.y12c{bottom:284.226667pt;}
.y1cb{bottom:284.560000pt;}
.y144{bottom:286.813333pt;}
.y181{bottom:288.733333pt;}
.ya4{bottom:289.693333pt;}
.y221{bottom:291.293333pt;}
.y16d{bottom:292.893333pt;}
.y118{bottom:293.213333pt;}
.ydc{bottom:294.493333pt;}
.y208{bottom:299.613333pt;}
.y1ae{bottom:300.253333pt;}
.y1bb{bottom:302.493333pt;}
.yc1{bottom:304.733333pt;}
.y10b{bottom:305.693333pt;}
.y1d8{bottom:306.333333pt;}
.y1ea{bottom:306.653333pt;}
.y89{bottom:309.213333pt;}
.y6c{bottom:310.813333pt;}
.y3f{bottom:311.133333pt;}
.y143{bottom:314.333333pt;}
.y180{bottom:316.253333pt;}
.ya3{bottom:317.213333pt;}
.yf2{bottom:317.533333pt;}
.y117{bottom:320.733333pt;}
.ydb{bottom:322.973333pt;}
.y12b{bottom:325.213333pt;}
.y207{bottom:326.173333pt;}
.ye{bottom:326.666667pt;}
.y3e{bottom:327.133333pt;}
.y1ad{bottom:327.773333pt;}
.y1ba{bottom:330.013333pt;}
.yc0{bottom:332.573333pt;}
.y10a{bottom:333.533333pt;}
.y1e9{bottom:334.173333pt;}
.y220{bottom:336.093333pt;}
.y6b{bottom:338.653333pt;}
.y142{bottom:341.853333pt;}
.y1ac{bottom:342.173333pt;}
.y17f{bottom:343.773333pt;}
.y206{bottom:344.413333pt;}
.ya2{bottom:344.733333pt;}
.y3d{bottom:345.053333pt;}
.y16c{bottom:348.253333pt;}
.y116{bottom:348.573333pt;}
.yda{bottom:350.493333pt;}
.y12a{bottom:352.413333pt;}
.y21f{bottom:354.333333pt;}
.y1b9{bottom:357.533333pt;}
.y1df{bottom:358.173333pt;}
.y198{bottom:359.773333pt;}
.ybf{bottom:360.093333pt;}
.y3c{bottom:360.413333pt;}
.y109{bottom:361.053333pt;}
.y1e8{bottom:362.013333pt;}
.y205{bottom:362.653333pt;}
.y14f{bottom:363.613333pt;}
.y6a{bottom:366.173333pt;}
.y141{bottom:369.373333pt;}
.y1d7{bottom:370.013333pt;}
.y17e{bottom:371.613333pt;}
.ya1{bottom:372.253333pt;}
.yf1{bottom:372.573333pt;}
.y88{bottom:372.893333pt;}
.y161{bottom:373.533333pt;}
.y3b{bottom:375.773333pt;}
.y115{bottom:376.093333pt;}
.y14d{bottom:378.013333pt;}
.yd9{bottom:378.333333pt;}
.y21e{bottom:380.893333pt;}
.y129{bottom:381.853333pt;}
.y19e{bottom:382.173333pt;}
.y1b8{bottom:385.053333pt;}
.yd{bottom:385.333333pt;}
.ybe{bottom:387.613333pt;}
.y108{bottom:388.613333pt;}
.y204{bottom:389.253333pt;}
.y1e7{bottom:389.573333pt;}
.y3a{bottom:391.173333pt;}
.y192{bottom:391.493333pt;}
.y69{bottom:393.733333pt;}
.y197{bottom:395.333333pt;}
.y19d{bottom:396.613333pt;}
.y140{bottom:397.253333pt;}
.y1d6{bottom:397.573333pt;}
.y17d{bottom:399.173333pt;}
.ya0{bottom:400.133333pt;}
.y87{bottom:401.413333pt;}
.yc{bottom:403.333333pt;}
.y114{bottom:403.653333pt;}
.yd8{bottom:405.893333pt;}
.y39{bottom:406.533333pt;}
.y1de{bottom:407.493333pt;}
.y128{bottom:409.733333pt;}
.y1b7{bottom:412.933333pt;}
.ybd{bottom:415.173333pt;}
.y107{bottom:416.133333pt;}
.y1e6{bottom:417.093333pt;}
.y21d{bottom:417.733333pt;}
.y191{bottom:419.013333pt;}
.y68{bottom:421.253333pt;}
.yb{bottom:421.333333pt;}
.y38{bottom:421.573333pt;}
.y15f{bottom:424.133333pt;}
.y13f{bottom:424.773333pt;}
.y1d5{bottom:425.093333pt;}
.y17c{bottom:426.693333pt;}
.y14b{bottom:427.333333pt;}
.y9f{bottom:427.653333pt;}
.y86{bottom:429.253333pt;}
.y113{bottom:431.173333pt;}
.yd7{bottom:433.413333pt;}
.y190{bottom:433.733333pt;}
.y203{bottom:434.053333pt;}
.y37{bottom:436.933333pt;}
.ya{bottom:439.333333pt;}
.y1b6{bottom:440.453333pt;}
.ybc{bottom:442.693333pt;}
.y106{bottom:443.973333pt;}
.y1e5{bottom:444.613333pt;}
.y19c{bottom:445.893333pt;}
.y67{bottom:449.093333pt;}
.y36{bottom:452.293333pt;}
.y1d4{bottom:452.613333pt;}
.y1b5{bottom:454.853333pt;}
.y9e{bottom:455.173333pt;}
.yf0{bottom:455.493333pt;}
.y9{bottom:457.333333pt;}
.y85{bottom:457.733333pt;}
.y112{bottom:458.693333pt;}
.yd6{bottom:460.933333pt;}
.y17b{bottom:461.893333pt;}
.y21c{bottom:462.533333pt;}
.y127{bottom:466.693333pt;}
.y35{bottom:467.653333pt;}
.ybb{bottom:470.533333pt;}
.y105{bottom:471.493333pt;}
.y15d{bottom:473.413333pt;}
.y8{bottom:475.333333pt;}
.y66{bottom:476.613333pt;}
.y202{bottom:478.853333pt;}
.y1ca{bottom:479.173333pt;}
.y13e{bottom:479.813333pt;}
.y1e4{bottom:480.133333pt;}
.y1d3{bottom:480.453333pt;}
.y21b{bottom:480.773333pt;}
.y9d{bottom:482.693333pt;}
.y34{bottom:483.013333pt;}
.y84{bottom:485.573333pt;}
.y16b{bottom:486.213333pt;}
.y111{bottom:486.533333pt;}
.yd5{bottom:488.773333pt;}
.y126{bottom:494.560000pt;}
.y1d2{bottom:494.880000pt;}
.y201{bottom:497.120000pt;}
.yba{bottom:498.080000pt;}
.y33{bottom:498.400000pt;}
.y104{bottom:499.040000pt;}
.y21a{bottom:499.360000pt;}
.y1e3{bottom:502.880000pt;}
.y65{bottom:504.160000pt;}
.y1c9{bottom:506.720000pt;}
.y13d{bottom:507.680000pt;}
.y9c{bottom:510.560000pt;}
.y32{bottom:513.760000pt;}
.y83{bottom:514.080000pt;}
.yd4{bottom:516.000000pt;}
.y125{bottom:522.080000pt;}
.y200{bottom:523.680000pt;}
.yb9{bottom:525.600000pt;}
.y103{bottom:526.560000pt;}
.y16a{bottom:528.160000pt;}
.y31{bottom:529.120000pt;}
.y235{bottom:530.400000pt;}
.y64{bottom:531.680000pt;}
.y7{bottom:532.666667pt;}
.y1a1{bottom:533.280000pt;}
.y1c8{bottom:534.240000pt;}
.y13c{bottom:535.200000pt;}
.y9b{bottom:538.080000pt;}
.yef{bottom:538.400000pt;}
.y82{bottom:541.600000pt;}
.y1ff{bottom:541.920000pt;}
.yd3{bottom:543.840000pt;}
.y1d1{bottom:544.160000pt;}
.y30{bottom:544.480000pt;}
.y1{bottom:545.333333pt;}
.y234{bottom:548.960000pt;}
.y124{bottom:549.600000pt;}
.y6{bottom:550.666667pt;}
.y1e2{bottom:552.160000pt;}
.yb8{bottom:553.120000pt;}
.y102{bottom:554.400000pt;}
.y63{bottom:559.200000pt;}
.y2f{bottom:559.840000pt;}
.y1fe{bottom:560.480000pt;}
.y1c7{bottom:561.760000pt;}
.y219{bottom:562.400000pt;}
.y13b{bottom:562.720000pt;}
.y9a{bottom:565.600000pt;}
.yee{bottom:566.880000pt;}
.y5{bottom:568.666667pt;}
.y81{bottom:569.120000pt;}
.yd2{bottom:571.680000pt;}
.y2e{bottom:575.200000pt;}
.y123{bottom:577.120000pt;}
.y169{bottom:577.440000pt;}
.y1fd{bottom:578.720000pt;}
.y17a{bottom:580.640000pt;}
.yb7{bottom:580.960000pt;}
.y101{bottom:581.920000pt;}
.y4{bottom:586.666667pt;}
.y1c6{bottom:589.600000pt;}
.y2d{bottom:590.240000pt;}
.y62{bottom:590.880000pt;}
.y99{bottom:593.120000pt;}
.y233{bottom:593.786667pt;}
.yed{bottom:594.746667pt;}
.y18e{bottom:595.386667pt;}
.y80{bottom:596.986667pt;}
.y218{bottom:599.226667pt;}
.yd1{bottom:600.186667pt;}
.y1ab{bottom:602.426667pt;}
.y122{bottom:604.986667pt;}
.y1fc{bottom:605.306667pt;}
.y2c{bottom:605.626667pt;}
.y3{bottom:608.000000pt;}
.yb6{bottom:608.506667pt;}
.y100{bottom:609.466667pt;}
.y18d{bottom:609.800000pt;}
.y1c5{bottom:617.146667pt;}
.y13a{bottom:618.106667pt;}
.y232{bottom:620.026667pt;}
.y2b{bottom:620.986667pt;}
.yec{bottom:622.266667pt;}
.y61{bottom:622.586667pt;}
.y1fb{bottom:623.546667pt;}
.y7f{bottom:624.506667pt;}
.y217{bottom:625.786667pt;}
.y2{bottom:626.000000pt;}
.yd0{bottom:627.706667pt;}
.y1aa{bottom:629.946667pt;}
.y121{bottom:632.506667pt;}
.yb5{bottom:636.026667pt;}
.y2a{bottom:636.346667pt;}
.yff{bottom:636.986667pt;}
.y231{bottom:638.586667pt;}
.y216{bottom:644.026667pt;}
.y1c4{bottom:644.666667pt;}
.y139{bottom:645.626667pt;}
.y98{bottom:648.506667pt;}
.yeb{bottom:649.786667pt;}
.y1fa{bottom:650.106667pt;}
.y29{bottom:651.706667pt;}
.y7e{bottom:652.026667pt;}
.y60{bottom:653.946667pt;}
.ycf{bottom:655.546667pt;}
.y230{bottom:656.826667pt;}
.y1a9{bottom:657.466667pt;}
.y18c{bottom:659.080000pt;}
.y215{bottom:662.586667pt;}
.yb4{bottom:663.546667pt;}
.yfe{bottom:664.826667pt;}
.y28{bottom:667.066667pt;}
.y120{bottom:667.706667pt;}
.y1f9{bottom:668.346667pt;}
.y5f{bottom:669.306667pt;}
.y15c{bottom:670.266667pt;}
.y1c3{bottom:672.186667pt;}
.y138{bottom:673.146667pt;}
.y97{bottom:676.026667pt;}
.yea{bottom:676.986667pt;}
.y7d{bottom:679.546667pt;}
.yce{bottom:683.066667pt;}
.y22f{bottom:683.386667pt;}
.y5e{bottom:684.666667pt;}
.y15a{bottom:684.680000pt;}
.y1a8{bottom:684.986667pt;}
.y1c2{bottom:686.600000pt;}
.y214{bottom:688.826667pt;}
.y179{bottom:691.066667pt;}
.yb3{bottom:691.386667pt;}
.y1f8{bottom:694.906667pt;}
.y27{bottom:695.866667pt;}
.y5d{bottom:700.066667pt;}
.y22e{bottom:701.666667pt;}
.y96{bottom:703.586667pt;}
.ye9{bottom:705.186667pt;}
.y7c{bottom:707.426667pt;}
.y137{bottom:708.386667pt;}
.y18b{bottom:709.666667pt;}
.y168{bottom:712.226667pt;}
.y1a7{bottom:712.866667pt;}
.y1f7{bottom:713.186667pt;}
.y25{bottom:714.786667pt;}
.y5c{bottom:715.426667pt;}
.ycd{bottom:718.306667pt;}
.yb2{bottom:718.946667pt;}
.y22d{bottom:720.226667pt;}
.y26{bottom:722.146667pt;}
.y213{bottom:725.666667pt;}
.y167{bottom:726.640000pt;}
.y5b{bottom:730.786667pt;}
.y95{bottom:731.426667pt;}
.yfa{bottom:732.306667pt;}
.ye8{bottom:732.706667pt;}
.y23{bottom:733.026667pt;}
.y159{bottom:734.000000pt;}
.y7b{bottom:734.946667pt;}
.y1c1{bottom:735.920000pt;}
.y18a{bottom:737.186667pt;}
.y1f6{bottom:739.746667pt;}
.y24{bottom:740.386667pt;}
.y136{bottom:744.226667pt;}
.y178{bottom:745.186667pt;}
.y5a{bottom:746.146667pt;}
.yb1{bottom:746.466667pt;}
.yfd{bottom:748.386667pt;}
.y22{bottom:751.586667pt;}
.y212{bottom:752.226667pt;}
.ycc{bottom:754.466667pt;}
.y1a6{bottom:754.800000pt;}
.y1f5{bottom:757.986667pt;}
.y21{bottom:758.946667pt;}
.y59{bottom:761.506667pt;}
.y7a{bottom:762.466667pt;}
.y189{bottom:764.706667pt;}
.y22c{bottom:765.026667pt;}
.y20{bottom:770.146667pt;}
.y177{bottom:770.466667pt;}
.yb0{bottom:773.986667pt;}
.y165{bottom:775.920000pt;}
.y58{bottom:776.866667pt;}
.y135{bottom:779.746667pt;}
.ycb{bottom:782.946667pt;}
.y22b{bottom:783.266667pt;}
.y1f4{bottom:784.546667pt;}
.y94{bottom:786.466667pt;}
.ye7{bottom:789.026667pt;}
.y79{bottom:789.986667pt;}
.y1f{bottom:791.586667pt;}
.y57{bottom:792.226667pt;}
.y176{bottom:795.746667pt;}
.yaf{bottom:801.853333pt;}
.y1f3{bottom:802.813333pt;}
.y1a5{bottom:804.093333pt;}
.y56{bottom:807.613333pt;}
.y22a{bottom:809.853333pt;}
.yca{bottom:810.813333pt;}
.y1e{bottom:813.053333pt;}
.y93{bottom:814.013333pt;}
.y134{bottom:815.293333pt;}
.ye6{bottom:816.573333pt;}
.y78{bottom:817.853333pt;}
.y188{bottom:820.093333pt;}
.y175{bottom:821.053333pt;}
.y1f2{bottom:821.373333pt;}
.y55{bottom:822.653333pt;}
.y229{bottom:828.093333pt;}
.yae{bottom:829.373333pt;}
.y211{bottom:833.853333pt;}
.y54{bottom:838.013333pt;}
.yc9{bottom:839.613333pt;}
.yf9{bottom:841.533333pt;}
.y92{bottom:841.853333pt;}
.ye5{bottom:844.093333pt;}
.y77{bottom:845.373333pt;}
.y174{bottom:846.333333pt;}
.y228{bottom:846.653333pt;}
.y187{bottom:847.613333pt;}
.y1d{bottom:848.573333pt;}
.y133{bottom:850.813333pt;}
.y53{bottom:853.373333pt;}
.yad{bottom:856.893333pt;}
.y210{bottom:860.093333pt;}
.y186{bottom:862.013333pt;}
.y227{bottom:864.893333pt;}
.y1f1{bottom:866.173333pt;}
.yc8{bottom:868.093333pt;}
.y52{bottom:868.733333pt;}
.y91{bottom:869.373333pt;}
.ye4{bottom:871.613333pt;}
.y76{bottom:872.893333pt;}
.y1c{bottom:873.213333pt;}
.y20f{bottom:878.333333pt;}
.y158{bottom:878.973333pt;}
.y51{bottom:884.093333pt;}
.y226{bottom:891.453333pt;}
.yac{bottom:892.093333pt;}
.y1f0{bottom:892.413333pt;}
.y132{bottom:893.373333pt;}
.yc7{bottom:895.933333pt;}
.y90{bottom:896.893333pt;}
.y1b{bottom:897.853333pt;}
.y50{bottom:899.453333pt;}
.y75{bottom:900.413333pt;}
.y225{bottom:909.733333pt;}
.ye3{bottom:927.333333pt;}
.yab{bottom:927.973333pt;}
.y74{bottom:928.293333pt;}
.y1a{bottom:929.253333pt;}
.y4f{bottom:931.173333pt;}
.y4e{bottom:965.093333pt;}
.y17{bottom:991.013333pt;}
.y4d{bottom:998.373333pt;}
.y16{bottom:1006.400000pt;}
.h15{height:15.040000pt;}
.h16{height:28.813125pt;}
.hf{height:33.918750pt;}
.h25{height:37.138667pt;}
.h7{height:40.163750pt;}
.h12{height:41.265869pt;}
.hb{height:41.456250pt;}
.h3{height:44.500000pt;}
.h1c{height:46.396000pt;}
.h1b{height:49.266667pt;}
.h28{height:49.276000pt;}
.h23{height:49.280000pt;}
.h1e{height:49.298667pt;}
.h19{height:49.306667pt;}
.h2d{height:49.618667pt;}
.h2{height:50.062500pt;}
.h5{height:52.762500pt;}
.he{height:54.180000pt;}
.h10{height:57.375000pt;}
.h6{height:57.787500pt;}
.h17{height:59.340000pt;}
.h13{height:62.692976pt;}
.h14{height:62.724182pt;}
.h36{height:62.781250pt;}
.hc{height:62.812500pt;}
.hd{height:64.500000pt;}
.h11{height:65.781915pt;}
.h1{height:66.750000pt;}
.h9{height:74.820000pt;}
.h24{height:79.068000pt;}
.h4{height:84.168750pt;}
.h8{height:86.430000pt;}
.h2c{height:91.840000pt;}
.h37{height:97.776250pt;}
.h26{height:99.226667pt;}
.h2e{height:107.226667pt;}
.h1a{height:109.120000pt;}
.h22{height:121.664000pt;}
.h1d{height:131.520000pt;}
.h20{height:133.120000pt;}
.h21{height:135.400000pt;}
.h2a{height:161.666667pt;}
.h2b{height:163.200000pt;}
.h29{height:164.200000pt;}
.h31{height:175.400000pt;}
.h18{height:180.226667pt;}
.h32{height:181.160000pt;}
.h1f{height:183.746667pt;}
.h27{height:197.169333pt;}
.h35{height:197.186667pt;}
.h2f{height:197.466667pt;}
.h33{height:205.186667pt;}
.h30{height:217.666667pt;}
.h34{height:239.426667pt;}
.ha{height:1055.996600pt;}
.h0{height:1056.000000pt;}
.w2{width:50.199561pt;}
.w3{width:61.440000pt;}
.w4{width:576.560000pt;}
.w5{width:576.573333pt;}
.w1{width:815.996667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:3.484719pt;}
.x27{left:7.565902pt;}
.x2a{left:9.853333pt;}
.x25{left:38.772144pt;}
.x2c{left:41.952000pt;}
.xa{left:45.333333pt;}
.x2b{left:64.320000pt;}
.x1e{left:103.712000pt;}
.x2e{left:106.284000pt;}
.xe{left:113.312000pt;}
.x3a{left:114.289333pt;}
.x1d{left:117.792000pt;}
.x12{left:118.784000pt;}
.x23{left:127.424000pt;}
.x30{left:128.369333pt;}
.x3f{left:129.329333pt;}
.x37{left:132.224000pt;}
.x10{left:134.786667pt;}
.x21{left:137.346667pt;}
.x14{left:145.986667pt;}
.x45{left:150.129333pt;}
.x24{left:151.106667pt;}
.x48{left:153.329333pt;}
.x36{left:156.849333pt;}
.x32{left:158.769333pt;}
.x34{left:160.369333pt;}
.x22{left:161.346667pt;}
.x2d{left:163.586667pt;}
.x42{left:166.129333pt;}
.x4{left:170.906667pt;}
.x5{left:171.893333pt;}
.x1f{left:175.106667pt;}
.x20{left:199.133333pt;}
.x28{left:201.373333pt;}
.x9{left:238.586667pt;}
.x3{left:265.613333pt;}
.xd{left:281.813333pt;}
.x7{left:296.280000pt;}
.x13{left:301.573333pt;}
.x1c{left:305.413333pt;}
.x8{left:327.293333pt;}
.xc{left:348.480000pt;}
.x35{left:368.142667pt;}
.x15{left:375.520000pt;}
.x1b{left:378.400000pt;}
.x1a{left:380.640000pt;}
.x6{left:387.986667pt;}
.x1{left:389.720000pt;}
.x11{left:407.840000pt;}
.x2{left:426.666667pt;}
.x33{left:431.222667pt;}
.x41{left:452.982667pt;}
.x38{left:453.942667pt;}
.x2f{left:458.422667pt;}
.x3c{left:462.902667pt;}
.x40{left:468.022667pt;}
.x43{left:468.982667pt;}
.x46{left:474.422667pt;}
.x3e{left:480.194667pt;}
.x31{left:482.102667pt;}
.x39{left:486.289333pt;}
.x3d{left:489.169333pt;}
.x44{left:490.129333pt;}
.x49{left:509.009333pt;}
.x47{left:516.049333pt;}
.x3b{left:544.529333pt;}
.x4b{left:558.929333pt;}
.x19{left:561.506667pt;}
.xb{left:583.266667pt;}
.x18{left:602.173333pt;}
.x29{left:652.800000pt;}
.x4a{left:680.933333pt;}
.xf{left:688.293333pt;}
.x16{left:697.570000pt;}
.x17{left:703.013333pt;}
}




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