
    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_3c5a6a77f2dfc63be5627d8d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aae3e393a59fc5a1138c2dca.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_352cec77a89416aa6fd6cf87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ff14c1e29d5a95485571b53.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_5c8f59e41b8ec76a0955acc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.114258;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_f04a791144096070dc2bc122.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1e167ad1bf2193d1d9b02409.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_f705e7aaeedf6ab053d1e7c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_0b92c5c7d52f18e06bf161b3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a29e720a02fd4b23eafe5598.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_95225beb8622577ccb048a56.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0833776d1760f7e29e7f0211.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.985610;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9ea4853f629b4a8203cc2edb.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.605946px;}
.lsb{letter-spacing:-6.599989px;}
.ls16{letter-spacing:-4.031994px;}
.lsc{letter-spacing:-0.575999px;}
.ls13{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.007200px;}
.ls18{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.199200px;}
.ls3{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.426299px;}
.ls1a{letter-spacing:0.431999px;}
.ls1c{letter-spacing:0.551999px;}
.ls12{letter-spacing:0.623999px;}
.ls17{letter-spacing:0.851999px;}
.ls14{letter-spacing:0.911999px;}
.ls15{letter-spacing:0.923999px;}
.ls10{letter-spacing:0.977998px;}
.ls11{letter-spacing:1.199998px;}
.ls8{letter-spacing:4.505993px;}
.ls7{letter-spacing:10.517983px;}
.ls5{letter-spacing:15.305976px;}
.ls9{letter-spacing:21.317966px;}
.ls6{letter-spacing:26.105958px;}
.ls20{letter-spacing:42.884331px;}
.ls19{letter-spacing:43.043931px;}
.lsa{letter-spacing:47.705924px;}
.ls1b{letter-spacing:49.091921px;}
.ls1f{letter-spacing:60.884303px;}
.lse{letter-spacing:128.111795px;}
.lsf{letter-spacing:141.305774px;}
.lsd{letter-spacing:177.305716px;}
.ls0{letter-spacing:837.650260px;}
.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;}
}
.ws2{word-spacing:-156.833449px;}
.ws0{word-spacing:-114.466317px;}
.ws5{word-spacing:-33.359947px;}
.ws9{word-spacing:-27.887955px;}
.wsc{word-spacing:-27.599956px;}
.wsa{word-spacing:-27.311956px;}
.ws4{word-spacing:-26.975957px;}
.ws3{word-spacing:-26.687957px;}
.wsb{word-spacing:-26.399958px;}
.ws8{word-spacing:-26.111958px;}
.wse{word-spacing:-23.903962px;}
.ws6{word-spacing:-23.351963px;}
.ws7{word-spacing:-20.087968px;}
.wsd{word-spacing:-17.680772px;}
.wsf{word-spacing:-16.679973px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-16.990968px;}
._18{margin-left:-15.785860px;}
._7{margin-left:-12.437205px;}
._6{margin-left:-9.908948px;}
._42{margin-left:-8.879970px;}
._b{margin-left:-7.315965px;}
._5{margin-left:-6.217378px;}
._9{margin-left:-4.942730px;}
._12{margin-left:-3.899528px;}
._4{margin-left:-2.852215px;}
._3{margin-left:-1.257748px;}
._8{width:1.207002px;}
._a{width:2.750222px;}
._e{width:3.949839px;}
._2b{width:4.961884px;}
._11{width:6.117468px;}
._50{width:7.178555px;}
._17{width:8.295574px;}
._34{width:9.980345px;}
._13{width:11.261271px;}
._14{width:12.277612px;}
._22{width:13.423798px;}
._1f{width:14.669977px;}
._20{width:15.929975px;}
._1e{width:17.094318px;}
._76{width:18.120388px;}
._49{width:19.196168px;}
._2e{width:20.440513px;}
._41{width:21.593769px;}
._37{width:22.744425px;}
._38{width:24.011557px;}
._2a{width:25.623524px;}
._f{width:28.226187px;}
._10{width:29.353336px;}
._31{width:30.814415px;}
._c{width:32.255913px;}
._d{width:33.662221px;}
._45{width:34.709182px;}
._35{width:35.897994px;}
._36{width:36.971228px;}
._39{width:38.544550px;}
._21{width:39.933726px;}
._1c{width:41.630679px;}
._1d{width:42.659932px;}
._3c{width:43.767553px;}
._3d{width:44.790297px;}
._4a{width:45.924489px;}
._40{width:47.617524px;}
._3f{width:48.752213px;}
._32{width:50.690964px;}
._2c{width:51.931334px;}
._2d{width:52.977054px;}
._71{width:54.436665px;}
._60{width:56.067647px;}
._5f{width:57.121454px;}
._7d{width:58.857059px;}
._47{width:59.986299px;}
._46{width:61.065796px;}
._4f{width:62.855927px;}
._4e{width:64.739896px;}
._2f{width:66.616488px;}
._52{width:67.649059px;}
._67{width:68.826220px;}
._4b{width:69.887898px;}
._48{width:71.613646px;}
._29{width:72.968883px;}
._28{width:74.108898px;}
._65{width:75.543542px;}
._3b{width:77.084911px;}
._82{width:78.167106px;}
._53{width:79.491723px;}
._77{width:80.565611px;}
._43{width:82.557652px;}
._44{width:83.739403px;}
._64{width:84.769304px;}
._26{width:87.636789px;}
._27{width:88.895944px;}
._6b{width:90.531002px;}
._68{width:94.946915px;}
._5b{width:99.464896px;}
._58{width:101.383774px;}
._59{width:102.986308px;}
._72{width:105.501531px;}
._5c{width:107.330007px;}
._3a{width:112.309670px;}
._54{width:115.877651px;}
._33{width:117.123332px;}
._7e{width:119.002234px;}
._7f{width:120.257802px;}
._55{width:121.550051px;}
._70{width:123.270340px;}
._7c{width:126.890931px;}
._6d{width:128.189402px;}
._6f{width:130.320129px;}
._6e{width:132.001562px;}
._6c{width:133.037253px;}
._24{width:137.009176px;}
._23{width:138.340138px;}
._62{width:139.916361px;}
._69{width:144.752371px;}
._61{width:146.865918px;}
._4c{width:151.684277px;}
._4d{width:153.163441px;}
._63{width:154.844624px;}
._25{width:159.471551px;}
._15{width:167.563624px;}
._16{width:169.439260px;}
._5e{width:178.072844px;}
._5d{width:179.344833px;}
._3e{width:182.046913px;}
._75{width:183.895370px;}
._74{width:185.004764px;}
._5a{width:186.981451px;}
._19{width:189.291297px;}
._66{width:199.110778px;}
._78{width:208.375486px;}
._79{width:209.664044px;}
._7b{width:212.612372px;}
._6a{width:219.068995px;}
._56{width:222.443294px;}
._7a{width:240.491424px;}
._51{width:241.733202px;}
._73{width:246.046569px;}
._80{width:249.122143px;}
._81{width:250.314835px;}
._1{width:261.244382px;}
._30{width:343.190124px;}
._57{width:423.308928px;}
._2{width:918.038131px;}
._1b{width:1693.548890px;}
._0{width:1812.342700px;}
._83{width:2685.983302px;}
.fc8{color:rgb(0,116,186);}
.fc6{color:rgb(0,26,87);}
.fc7{color:rgb(0,210,106);}
.fc5{color:rgb(0,32,96);}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(123,136,29);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.999990px;}
.fsc{font-size:11.999981px;}
.fsb{font-size:47.999923px;}
.fsa{font-size:59.999904px;}
.fs10{font-size:63.599898px;}
.fsf{font-size:65.999894px;}
.fs8{font-size:71.999885px;}
.fsd{font-size:83.999866px;}
.fs7{font-size:87.599860px;}
.fse{font-size:89.999856px;}
.fs0{font-size:95.999846px;}
.fs6{font-size:101.999837px;}
.fs2{font-size:119.999808px;}
.fs5{font-size:167.999731px;}
.fs4{font-size:378.149395px;}
.fs3{font-size:411.749341px;}
.fs9{font-size:564.149097px;}
.y0{bottom:0.000000px;}
.y3d{bottom:0.076108px;}
.y1d1{bottom:8.099599px;}
.y15b{bottom:16.213627px;}
.y15f{bottom:16.500002px;}
.y157{bottom:16.500012px;}
.y150{bottom:16.501148px;}
.y10{bottom:20.097505px;}
.yb{bottom:20.112772px;}
.y153{bottom:23.398325px;}
.y12{bottom:33.298542px;}
.y1d0{bottom:44.397741px;}
.y15e{bottom:52.499944px;}
.y14f{bottom:52.514591px;}
.y15a{bottom:52.542069px;}
.y156{bottom:52.801454px;}
.y3{bottom:58.837406px;}
.y152{bottom:59.398268px;}
.yf{bottom:63.900435px;}
.ya{bottom:64.239702px;}
.y1cf{bottom:80.437583px;}
.y2{bottom:86.138262px;}
.y15d{bottom:88.801386px;}
.y159{bottom:88.843511px;}
.y155{bottom:89.098396px;}
.y1c6{bottom:92.438640px;}
.ye{bottom:108.000364px;}
.y2e{bottom:113.138219px;}
.y1ce{bottom:116.734525px;}
.y188{bottom:116.738213px;}
.y9{bottom:121.241111px;}
.y14c{bottom:128.137295px;}
.y17b{bottom:130.536391px;}
.y1b8{bottom:132.637288px;}
.y118{bottom:133.537286px;}
.yc8{bottom:138.338179px;}
.y1b7{bottom:140.436375px;}
.y2d{bottom:144.036370px;}
.y12f{bottom:147.338164px;}
.yf1{bottom:148.837262px;}
.y19f{bottom:150.628259px;}
.yb0{bottom:151.528258px;}
.yd{bottom:151.843794px;}
.y1cd{bottom:153.035967px;}
.y1a2{bottom:153.931254px;}
.ya0{bottom:156.631249px;}
.y3f{bottom:158.129747px;}
.y164{bottom:159.628245px;}
.y187{bottom:161.428242px;}
.y14b{bottom:169.573229px;}
.y17a{bottom:171.976225px;}
.y117{bottom:174.973220px;}
.y2c{bottom:175.274720px;}
.y84{bottom:175.576219px;}
.y163{bottom:176.773217px;}
.y58{bottom:179.774712px;}
.y1b6{bottom:181.876209px;}
.y1cc{bottom:189.337409px;}
.ye1{bottom:189.373197px;}
.yf0{bottom:190.273196px;}
.y12e{bottom:191.776193px;}
.y19e{bottom:192.073193px;}
.y9f{bottom:192.973191px;}
.y1a1{bottom:195.376187px;}
.y83{bottom:203.174675px;}
.y2b{bottom:206.176170px;}
.y3e{bottom:209.776164px;}
.y14a{bottom:210.973162px;}
.y179{bottom:213.376159px;}
.y1c2{bottom:216.076154px;}
.y116{bottom:216.373154px;}
.ye0{bottom:217.876151px;}
.y57{bottom:221.174646px;}
.y1b5{bottom:223.276143px;}
.y107{bottom:224.473141px;}
.y1cb{bottom:225.337352px;}
.yc{bottom:226.875600px;}
.y9e{bottom:229.274633px;}
.yef{bottom:231.673129px;}
.y19d{bottom:233.473126px;}
.yaf{bottom:234.373125px;}
.y12d{bottom:236.776121px;}
.y2a{bottom:237.374620px;}
.y82{bottom:239.476117px;}
.y8{bottom:241.584418px;}
.y3c{bottom:244.800000px;}
.ydf{bottom:246.374606px;}
.y186{bottom:247.873103px;}
.y162{bottom:251.176098px;}
.y149{bottom:252.373096px;}
.y178{bottom:254.776092px;}
.y56{bottom:255.676091px;}
.y106{bottom:257.476088px;}
.y29{bottom:258.074587px;}
.y115{bottom:261.076082px;}
.y1ca{bottom:261.665793px;}
.yc7{bottom:262.574580px;}
.y1b4{bottom:264.676077px;}
.y9d{bottom:265.274576px;}
.yee{bottom:273.073063px;}
.y19c{bottom:274.873060px;}
.y81{bottom:275.773059px;}
.y12c{bottom:278.176055px;}
.yde{bottom:279.674553px;}
.y55{bottom:288.373039px;}
.y28{bottom:288.976038px;}
.y161{bottom:292.576032px;}
.y148{bottom:293.773030px;}
.y177{bottom:296.176026px;}
.y1c9{bottom:297.967235px;}
.y105{bottom:298.876022px;}
.y9c{bottom:301.576017px;}
.yc6{bottom:303.974514px;}
.y114{bottom:305.774511px;}
.y1b3{bottom:306.076010px;}
.y80{bottom:311.773001px;}
.yed{bottom:314.472997px;}
.y19b{bottom:316.272994px;}
.yae{bottom:317.172993px;}
.ydd{bottom:318.374491px;}
.y12b{bottom:319.575989px;}
.y27{bottom:320.174488px;}
.y54{bottom:322.874483px;}
.y160{bottom:333.975966px;}
.y1c8{bottom:334.264177px;}
.y147{bottom:335.172964px;}
.y185{bottom:337.274460px;}
.y176{bottom:337.575960px;}
.y9b{bottom:337.904459px;}
.y104{bottom:340.320955px;}
.yc5{bottom:345.419447px;}
.y113{bottom:347.205944px;}
.y1b2{bottom:347.502944px;}
.y7f{bottom:348.119443px;}
.y26{bottom:351.102938px;}
.y3b{bottom:352.619436px;}
.y53{bottom:355.917931px;}
.ydc{bottom:357.402928px;}
.y15c{bottom:357.404400px;}
.y19a{bottom:357.704428px;}
.yad{bottom:358.617926px;}
.y12a{bottom:361.002922px;}
.y1c7{bottom:370.264120px;}
.y9a{bottom:373.904402px;}
.y1c1{bottom:374.502901px;}
.y146{bottom:376.617897px;}
.y184{bottom:378.719394px;}
.y175{bottom:379.002894px;}
.yc4{bottom:381.104390px;}
.y103{bottom:381.720889px;}
.y7e{bottom:384.402885px;}
.y6b{bottom:386.202882px;}
.y25{bottom:386.819381px;}
.y3a{bottom:388.304379px;}
.y112{bottom:388.619378px;}
.y1b1{bottom:388.920878px;}
.ydb{bottom:396.120866px;}
.y52{bottom:397.317864px;}
.y199{bottom:399.117861px;}
.yac{bottom:400.004360px;}
.y129{bottom:402.420856px;}
.y13a{bottom:404.819352px;}
.y1c0{bottom:407.505848px;}
.y99{bottom:410.205844px;}
.y145{bottom:418.004331px;}
.y174{bottom:420.402827px;}
.y7d{bottom:420.704327px;}
.yc3{bottom:422.504324px;}
.y102{bottom:423.120823px;}
.y183{bottom:423.404323px;}
.y24{bottom:428.205815px;}
.y111{bottom:430.005812px;}
.y1b0{bottom:430.320811px;}
.y6a{bottom:430.919311px;}
.yda{bottom:434.820804px;}
.y51{bottom:438.704298px;}
.y198{bottom:440.504295px;}
.yab{bottom:441.404294px;}
.y128{bottom:443.820790px;}
.y139{bottom:446.205786px;}
.y98{bottom:446.502786px;}
.y1bf{bottom:448.905782px;}
.y7c{bottom:456.704269px;}
.y144{bottom:459.404265px;}
.y39{bottom:460.902763px;}
.y173{bottom:461.820761px;}
.yc2{bottom:463.904258px;}
.y101{bottom:464.502757px;}
.y158{bottom:466.905600px;}
.y69{bottom:467.202752px;}
.y182{bottom:468.120751px;}
.y23{bottom:469.619249px;}
.y1af{bottom:471.702745px;}
.yd9{bottom:473.817742px;}
.y110{bottom:474.704240px;}
.y50{bottom:480.117732px;}
.y197{bottom:481.904229px;}
.y97{bottom:482.817727px;}
.y127{bottom:485.202724px;}
.y138{bottom:487.619220px;}
.y1be{bottom:490.319215px;}
.y7b{bottom:493.005711px;}
.y100{bottom:498.702702px;}
.y143{bottom:500.817699px;}
.y172{bottom:503.202695px;}
.y68{bottom:503.504194px;}
.yc1{bottom:505.304192px;}
.y181{bottom:509.849184px;}
.y22{bottom:511.050682px;}
.yd8{bottom:512.549180px;}
.y1ae{bottom:513.147679px;}
.y10f{bottom:516.149174px;}
.y96{bottom:518.849170px;}
.y4f{bottom:521.549166px;}
.y196{bottom:523.349163px;}
.yaa{bottom:524.249161px;}
.y126{bottom:526.647657px;}
.y7a{bottom:529.347653px;}
.yff{bottom:531.750649px;}
.y137{bottom:532.047649px;}
.y38{bottom:533.249147px;}
.yc0{bottom:535.647643px;}
.y67{bottom:539.549137px;}
.y11{bottom:540.149040px;}
.y142{bottom:542.249132px;}
.y171{bottom:544.647629px;}
.yd7{bottom:551.550618px;}
.y21{bottom:552.450616px;}
.y180{bottom:554.547613px;}
.y95{bottom:555.150612px;}
.y10e{bottom:557.549108px;}
.y4e{bottom:562.949099px;}
.y195{bottom:564.749096px;}
.y79{bottom:565.649095px;}
.ybf{bottom:566.247594px;}
.y125{bottom:568.047591px;}
.yfe{bottom:573.150583px;}
.y66{bottom:575.850579px;}
.y154{bottom:576.149040px;}
.y136{bottom:579.747572px;}
.y37{bottom:581.849069px;}
.y141{bottom:583.649066px;}
.y170{bottom:586.047562px;}
.yd6{bottom:590.250556px;}
.y94{bottom:591.447554px;}
.y20{bottom:593.850550px;}
.y1ad{bottom:595.947546px;}
.ybe{bottom:596.550546px;}
.y10d{bottom:598.949042px;}
.y17f{bottom:599.250541px;}
.y78{bottom:601.649037px;}
.y4d{bottom:604.349033px;}
.y194{bottom:606.149030px;}
.ya9{bottom:607.049029px;}
.y124{bottom:609.447525px;}
.y65{bottom:612.147521px;}
.yfd{bottom:614.550517px;}
.y140{bottom:625.049000px;}
.y36{bottom:626.547498px;}
.ybd{bottom:626.848997px;}
.y16f{bottom:627.447496px;}
.y93{bottom:627.748996px;}
.yd5{bottom:628.950494px;}
.y1f{bottom:635.250484px;}
.y1ac{bottom:637.347480px;}
.y77{bottom:637.950479px;}
.y4c{bottom:638.548978px;}
.y10c{bottom:640.348975px;}
.y17e{bottom:644.250469px;}
.yec{bottom:645.748967px;}
.y193{bottom:647.548964px;}
.y64{bottom:648.448962px;}
.y1bd{bottom:648.750462px;}
.y123{bottom:650.847459px;}
.yfc{bottom:655.950450px;}
.y92{bottom:663.748938px;}
.y13f{bottom:666.448934px;}
.yd4{bottom:667.947431px;}
.ybc{bottom:668.248931px;}
.y16e{bottom:668.847430px;}
.y4b{bottom:671.547426px;}
.y76{bottom:674.247421px;}
.y135{bottom:675.448919px;}
.y1e{bottom:676.695417px;}
.y1ab{bottom:678.778914px;}
.y10b{bottom:681.780409px;}
.y63{bottom:684.480405px;}
.y151{bottom:685.679040px;}
.yeb{bottom:687.193900px;}
.y17d{bottom:688.980398px;}
.ya8{bottom:689.880396px;}
.y122{bottom:692.278892px;}
.yfb{bottom:697.377384px;}
.y35{bottom:698.880382px;}
.y91{bottom:700.095380px;}
.yd3{bottom:706.692369px;}
.y13e{bottom:707.880367px;}
.ybb{bottom:709.680365px;}
.y16d{bottom:710.278864px;}
.y75{bottom:710.593863px;}
.y4a{bottom:712.978859px;}
.y1d{bottom:718.077351px;}
.y1aa{bottom:720.192348px;}
.y62{bottom:720.777347px;}
.y10a{bottom:723.180343px;}
.y134{bottom:723.495342px;}
.y17c{bottom:726.478838px;}
.yea{bottom:728.580334px;}
.y192{bottom:730.380331px;}
.ya7{bottom:731.280330px;}
.y121{bottom:733.692326px;}
.y90{bottom:736.378822px;}
.yfa{bottom:738.777318px;}
.yd2{bottom:745.378807px;}
.y74{bottom:746.580305px;}
.y13d{bottom:749.280301px;}
.y34{bottom:749.878800px;}
.yba{bottom:751.093798px;}
.y16c{bottom:751.678797px;}
.y49{bottom:754.378793px;}
.y61{bottom:757.078789px;}
.y1c{bottom:759.477285px;}
.y1a9{bottom:761.578781px;}
.y109{bottom:764.593777px;}
.y14e{bottom:765.777600px;}
.ye9{bottom:769.980268px;}
.y133{bottom:771.478766px;}
.y191{bottom:771.793765px;}
.y8f{bottom:772.693764px;}
.y120{bottom:775.078760px;}
.yf9{bottom:780.195252px;}
.y73{bottom:782.877247px;}
.y33{bottom:784.078745px;}
.yd1{bottom:784.380245px;}
.y48{bottom:788.578738px;}
.y13c{bottom:790.693735px;}
.yb9{bottom:792.480232px;}
.y16b{bottom:793.078731px;}
.y60{bottom:793.380231px;}
.y1b{bottom:800.877219px;}
.y108{bottom:805.980210px;}
.y1a8{bottom:806.277210px;}
.y8e{bottom:808.693706px;}
.y7{bottom:809.582400px;}
.ye8{bottom:811.380202px;}
.y190{bottom:813.193699px;}
.ya6{bottom:814.080197px;}
.yf8{bottom:814.377197px;}
.y11f{bottom:816.492194px;}
.y72{bottom:819.192189px;}
.y47{bottom:821.577185px;}
.yd0{bottom:823.080183px;}
.y13b{bottom:824.880180px;}
.y32{bottom:828.192175px;}
.y5f{bottom:829.380173px;}
.y1c5{bottom:832.080169px;}
.yb8{bottom:833.880166px;}
.y16a{bottom:834.478665px;}
.y1a{bottom:842.295152px;}
.y8d{bottom:844.977148px;}
.yf7{bottom:847.425144px;}
.y1a7{bottom:847.722144px;}
.ye7{bottom:852.825135px;}
.y18f{bottom:854.625133px;}
.y71{bottom:855.525131px;}
.y11e{bottom:857.923627px;}
.ycf{bottom:861.825121px;}
.y46{bottom:863.022119px;}
.y5e{bottom:865.722115px;}
.y132{bottom:867.225112px;}
.y1c4{bottom:873.525102px;}
.yb7{bottom:875.325099px;}
.y169{bottom:875.923599px;}
.y8c{bottom:881.323590px;}
.y1bc{bottom:881.922089px;}
.y19{bottom:883.722086px;}
.y31{bottom:885.225084px;}
.yf6{bottom:888.825078px;}
.y70{bottom:891.525074px;}
.y14d{bottom:892.123573px;}
.y1a6{bottom:892.425072px;}
.ye6{bottom:894.225069px;}
.y18e{bottom:896.025066px;}
.ya5{bottom:896.925065px;}
.y11d{bottom:899.323561px;}
.yce{bottom:900.822059px;}
.y5d{bottom:902.023557px;}
.y45{bottom:904.422053px;}
.y131{bottom:914.925036px;}
.yb6{bottom:916.725033px;}
.y168{bottom:917.323532px;}
.y8b{bottom:917.625032px;}
.y18{bottom:925.122020px;}
.y6f{bottom:927.822015px;}
.yf5{bottom:930.225012px;}
.y1a0{bottom:933.523506px;}
.y1a5{bottom:934.122005px;}
.ye5{bottom:935.625003px;}
.y18d{bottom:937.425000px;}
.y5c{bottom:938.324999px;}
.ycd{bottom:939.521997px;}
.y11c{bottom:940.723495px;}
.y44{bottom:950.623479px;}
.y8a{bottom:953.624974px;}
.y1bb{bottom:956.324970px;}
.yb5{bottom:958.124967px;}
.y167{bottom:958.723466px;}
.y130{bottom:962.921959px;}
.y6e{bottom:964.123457px;}
.y17{bottom:966.521954px;}
.y30{bottom:970.724947px;}
.yf4{bottom:971.624945px;}
.y5b{bottom:977.024937px;}
.ycc{bottom:978.523434px;}
.y1a4{bottom:978.824934px;}
.ya4{bottom:979.724932px;}
.y11b{bottom:982.123429px;}
.yb4{bottom:988.423419px;}
.y89{bottom:989.921916px;}
.y43{bottom:992.923411px;}
.y1ba{bottom:997.724904px;}
.y6d{bottom:1000.424899px;}
.y166{bottom:1002.823395px;}
.y18c{bottom:1004.623393px;}
.y16{bottom:1007.921887px;}
.ya3{bottom:1010.023384px;}
.yf3{bottom:1013.024879px;}
.ycb{bottom:1017.254872px;}
.ye4{bottom:1018.451870px;}
.y1a3{bottom:1020.251868px;}
.y5a{bottom:1022.951863px;}
.y11a{bottom:1023.568362px;}
.y42{bottom:1024.153361px;}
.y88{bottom:1026.254858px;}
.yb3{bottom:1032.869847px;}
.y6c{bottom:1034.354845px;}
.y165{bottom:1037.068341px;}
.y1b9{bottom:1039.169837px;}
.ya2{bottom:1041.851833px;}
.y18b{bottom:1046.068326px;}
.y15{bottom:1049.353321px;}
.yf2{bottom:1054.451813px;}
.y41{bottom:1055.068312px;}
.yca{bottom:1055.954810px;}
.y119{bottom:1057.754808px;}
.ye3{bottom:1059.869804px;}
.y87{bottom:1062.569800px;}
.y59{bottom:1074.868280px;}
.ya1{bottom:1077.253276px;}
.yb2{bottom:1080.569771px;}
.y6{bottom:1082.954767px;}
.y1c3{bottom:1085.069764px;}
.y40{bottom:1086.253262px;}
.y18a{bottom:1087.454760px;}
.yc9{bottom:1088.953258px;}
.y14{bottom:1090.753255px;}
.ye2{bottom:1091.666753px;}
.y86{bottom:1098.569742px;}
.y2f{bottom:1126.451698px;}
.yb1{bottom:1128.566694px;}
.y189{bottom:1128.868194px;}
.y5{bottom:1130.353191px;}
.y13{bottom:1132.166689px;}
.y85{bottom:1134.866684px;}
.y4{bottom:1153.154655px;}
.y1{bottom:1186.198102px;}
.h13{height:2.700000px;}
.h3{height:3.999017px;}
.h12{height:7.998034px;}
.h11{height:31.992136px;}
.hf{height:39.990170px;}
.h1f{height:43.989187px;}
.hc{height:47.988204px;}
.hd{height:52.417885px;}
.h28{height:53.788976px;}
.h19{height:55.986239px;}
.h20{height:59.651272px;}
.h1a{height:61.154199px;}
.h2{height:63.984273px;}
.h1e{height:65.522356px;}
.h18{height:69.890513px;}
.h23{height:72.300960px;}
.hb{height:72.601920px;}
.h14{height:75.304567px;}
.h1b{height:75.837769px;}
.h24{height:79.200000px;}
.h4{height:79.980341px;}
.h1d{height:80.683465px;}
.h1c{height:81.254753px;}
.h17{height:86.062362px;}
.h16{height:86.671736px;}
.h21{height:86.765486px;}
.h22{height:91.025972px;}
.ha{height:91.441260px;}
.h8{height:92.188329px;}
.h15{height:108.339670px;}
.h29{height:108.456858px;}
.h27{height:108.601920px;}
.h26{height:108.635760px;}
.h25{height:108.939600px;}
.h10{height:111.972477px;}
.h7{height:151.839601px;}
.h9{height:175.829040px;}
.h5{height:337.874400px;}
.h6{height:372.142593px;}
.h2a{height:390.074400px;}
.he{height:509.882802px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:2.399062px;}
.w7{width:148.275360px;}
.w6{width:179.445600px;}
.w8{width:346.320000px;}
.w4{width:562.350960px;}
.w2{width:662.625360px;}
.w3{width:687.526560px;}
.w9{width:707.324400px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.xd{left:-1.763573px;}
.x0{left:0.000000px;}
.x50{left:7.500594px;}
.x5{left:10.799675px;}
.x4c{left:20.145105px;}
.x49{left:24.299667px;}
.x4d{left:49.845057px;}
.x4a{left:55.209517px;}
.x6{left:56.991502px;}
.x4f{left:62.396739px;}
.x60{left:73.192586px;}
.x7{left:82.537961px;}
.x5f{left:96.637549px;}
.x5e{left:97.838640px;}
.x1{left:108.036427px;}
.xc{left:109.800000px;}
.x43{left:114.038218px;}
.x3{left:117.036720px;}
.x2c{left:118.237311px;}
.x51{left:125.136400px;}
.x45{left:135.036384px;}
.x62{left:139.234481px;}
.x64{left:158.134450px;}
.x25{left:160.829743px;}
.x46{left:162.031241px;}
.x53{left:166.531234px;}
.xa{left:172.529724px;}
.x59{left:177.074717px;}
.x4{left:182.784300px;}
.x5d{left:185.174704px;}
.x11{left:189.674697px;}
.x40{left:193.274691px;}
.x5c{left:195.673187px;}
.x8{left:197.775360px;}
.x63{left:199.565884px;}
.x3e{left:200.776179px;}
.x13{left:202.576176px;}
.x35{left:204.974672px;}
.x33{left:206.774669px;}
.x2f{left:208.574666px;}
.x58{left:219.676149px;}
.xb{left:223.276143px;}
.x28{left:225.976138px;}
.x2a{left:228.073135px;}
.x17{left:231.673129px;}
.x26{left:238.274619px;}
.x9{left:242.176113px;}
.x18{left:243.976110px;}
.x12{left:247.576104px;}
.x14{left:249.974600px;}
.x48{left:252.373096px;}
.x31{left:254.173093px;}
.x56{left:257.476088px;}
.x61{left:258.979289px;}
.x38{left:261.076082px;}
.x42{left:264.374577px;}
.x15{left:270.076068px;}
.x47{left:271.876065px;}
.x44{left:282.374548px;}
.x41{left:287.473040px;}
.x4b{left:289.274400px;}
.x54{left:290.474535px;}
.x65{left:295.879230px;}
.x3f{left:297.719524px;}
.x1d{left:300.118020px;}
.x1a{left:301.319518px;}
.x1c{left:303.119515px;}
.x1f{left:305.221012px;}
.x3b{left:307.619508px;}
.xe{left:309.118005px;}
.x16{left:310.621003px;}
.x1b{left:316.317994px;}
.x10{left:318.117991px;}
.x5a{left:321.119486px;}
.x57{left:323.220983px;}
.x19{left:325.619479px;}
.x1e{left:328.620974px;}
.x55{left:332.517968px;}
.xf{left:351.719437px;}
.x52{left:375.119400px;}
.x5b{left:378.120895px;}
.x24{left:433.349307px;}
.x4e{left:438.150960px;}
.x23{left:439.950796px;}
.x37{left:441.147794px;}
.x2{left:446.547786px;}
.x2d{left:454.949272px;}
.x27{left:466.649253px;}
.x29{left:475.050740px;}
.x39{left:477.147737px;}
.x3a{left:479.550733px;}
.x32{left:487.047721px;}
.x30{left:493.050711px;}
.x2e{left:502.649196px;}
.x3c{left:513.449178px;}
.x2b{left:515.550675px;}
.x34{left:517.647672px;}
.x36{left:522.147665px;}
.x3d{left:531.750649px;}
.x20{left:580.980570px;}
.x21{left:600.780539px;}
.x22{left:785.370243px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.871952pt;}
.lsb{letter-spacing:-5.866657pt;}
.ls16{letter-spacing:-3.583994pt;}
.lsc{letter-spacing:-0.511999pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.006400pt;}
.ls18{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.177066pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.378933pt;}
.ls1a{letter-spacing:0.383999pt;}
.ls1c{letter-spacing:0.490666pt;}
.ls12{letter-spacing:0.554666pt;}
.ls17{letter-spacing:0.757332pt;}
.ls14{letter-spacing:0.810665pt;}
.ls15{letter-spacing:0.821332pt;}
.ls10{letter-spacing:0.869332pt;}
.ls11{letter-spacing:1.066665pt;}
.ls8{letter-spacing:4.005327pt;}
.ls7{letter-spacing:9.349318pt;}
.ls5{letter-spacing:13.605312pt;}
.ls9{letter-spacing:18.949303pt;}
.ls6{letter-spacing:23.205296pt;}
.ls20{letter-spacing:38.119406pt;}
.ls19{letter-spacing:38.261272pt;}
.lsa{letter-spacing:42.405265pt;}
.ls1b{letter-spacing:43.637264pt;}
.ls1f{letter-spacing:54.119380pt;}
.lse{letter-spacing:113.877151pt;}
.lsf{letter-spacing:125.605132pt;}
.lsd{letter-spacing:157.605081pt;}
.ls0{letter-spacing:744.578009pt;}
.ws2{word-spacing:-139.407510pt;}
.ws0{word-spacing:-101.747837pt;}
.ws5{word-spacing:-29.653286pt;}
.ws9{word-spacing:-24.789294pt;}
.wsc{word-spacing:-24.533294pt;}
.wsa{word-spacing:-24.277294pt;}
.ws4{word-spacing:-23.978628pt;}
.ws3{word-spacing:-23.722629pt;}
.wsb{word-spacing:-23.466629pt;}
.ws8{word-spacing:-23.210630pt;}
.wse{word-spacing:-21.247966pt;}
.ws6{word-spacing:-20.757300pt;}
.ws7{word-spacing:-17.855971pt;}
.wsd{word-spacing:-15.716242pt;}
.wsf{word-spacing:-14.826643pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-15.103083pt;}
._18{margin-left:-14.031875pt;}
._7{margin-left:-11.055293pt;}
._6{margin-left:-8.807954pt;}
._42{margin-left:-7.893307pt;}
._b{margin-left:-6.503080pt;}
._5{margin-left:-5.526558pt;}
._9{margin-left:-4.393538pt;}
._12{margin-left:-3.466247pt;}
._4{margin-left:-2.535303pt;}
._3{margin-left:-1.117998pt;}
._8{width:1.072891pt;}
._a{width:2.444641pt;}
._e{width:3.510968pt;}
._2b{width:4.410563pt;}
._11{width:5.437749pt;}
._50{width:6.380938pt;}
._17{width:7.373843pt;}
._34{width:8.871417pt;}
._13{width:10.010018pt;}
._14{width:10.913433pt;}
._22{width:11.932265pt;}
._1f{width:13.039979pt;}
._20{width:14.159977pt;}
._1e{width:15.194950pt;}
._76{width:16.107011pt;}
._49{width:17.063260pt;}
._2e{width:18.169345pt;}
._41{width:19.194462pt;}
._37{width:20.217266pt;}
._38{width:21.343606pt;}
._2a{width:22.776466pt;}
._f{width:25.089944pt;}
._10{width:26.091854pt;}
._31{width:27.390591pt;}
._c{width:28.671923pt;}
._d{width:29.921975pt;}
._45{width:30.852607pt;}
._35{width:31.909328pt;}
._36{width:32.863313pt;}
._39{width:34.261822pt;}
._21{width:35.496645pt;}
._1c{width:37.005048pt;}
._1d{width:37.919939pt;}
._3c{width:38.904491pt;}
._3d{width:39.813597pt;}
._4a{width:40.821768pt;}
._40{width:42.326688pt;}
._3f{width:43.335300pt;}
._32{width:45.058635pt;}
._2c{width:46.161186pt;}
._2d{width:47.090715pt;}
._71{width:48.388147pt;}
._60{width:49.837908pt;}
._5f{width:50.774626pt;}
._7d{width:52.317386pt;}
._47{width:53.321155pt;}
._46{width:54.280708pt;}
._4f{width:55.871935pt;}
._4e{width:57.546575pt;}
._2f{width:59.214656pt;}
._52{width:60.132497pt;}
._67{width:61.178862pt;}
._4b{width:62.122576pt;}
._48{width:63.656574pt;}
._29{width:64.861229pt;}
._28{width:65.874576pt;}
._65{width:67.149815pt;}
._3b{width:68.519920pt;}
._82{width:69.481872pt;}
._53{width:70.659309pt;}
._77{width:71.613877pt;}
._43{width:73.384580pt;}
._44{width:74.435025pt;}
._64{width:75.350493pt;}
._26{width:77.899368pt;}
._27{width:79.018617pt;}
._6b{width:80.472002pt;}
._68{width:84.397257pt;}
._5b{width:88.413241pt;}
._58{width:90.118911pt;}
._59{width:91.543385pt;}
._72{width:93.779139pt;}
._5c{width:95.404450pt;}
._3a{width:99.830817pt;}
._54{width:103.002356pt;}
._33{width:104.109629pt;}
._7e{width:105.779763pt;}
._7f{width:106.895824pt;}
._55{width:108.044490pt;}
._70{width:109.573635pt;}
._7c{width:112.791939pt;}
._6d{width:113.946136pt;}
._6f{width:115.840115pt;}
._6e{width:117.334722pt;}
._6c{width:118.255336pt;}
._24{width:121.785934pt;}
._23{width:122.969012pt;}
._62{width:124.370099pt;}
._69{width:128.668774pt;}
._61{width:130.547483pt;}
._4c{width:134.830469pt;}
._4d{width:136.145281pt;}
._63{width:137.639666pt;}
._25{width:141.752490pt;}
._15{width:148.945444pt;}
._16{width:150.612676pt;}
._5e{width:158.286973pt;}
._5d{width:159.417629pt;}
._3e{width:161.819478pt;}
._75{width:163.462551pt;}
._74{width:164.448679pt;}
._5a{width:166.205734pt;}
._19{width:168.258931pt;}
._66{width:176.987358pt;}
._78{width:185.222654pt;}
._79{width:186.368039pt;}
._7b{width:188.988775pt;}
._6a{width:194.727996pt;}
._56{width:197.727372pt;}
._7a{width:213.770154pt;}
._51{width:214.873957pt;}
._73{width:218.708061pt;}
._80{width:221.441904pt;}
._81{width:222.502076pt;}
._1{width:232.217228pt;}
._30{width:305.057888pt;}
._57{width:376.274603pt;}
._2{width:816.033894pt;}
._1b{width:1505.376791pt;}
._0{width:1610.971289pt;}
._83{width:2387.540713pt;}
.fs1{font-size:5.333325pt;}
.fsc{font-size:10.666650pt;}
.fsb{font-size:42.666598pt;}
.fsa{font-size:53.333248pt;}
.fs10{font-size:56.533243pt;}
.fsf{font-size:58.666573pt;}
.fs8{font-size:63.999898pt;}
.fsd{font-size:74.666547pt;}
.fs7{font-size:77.866542pt;}
.fse{font-size:79.999872pt;}
.fs0{font-size:85.333197pt;}
.fs6{font-size:90.666522pt;}
.fs2{font-size:106.666496pt;}
.fs5{font-size:149.333094pt;}
.fs4{font-size:336.132796pt;}
.fs3{font-size:365.999414pt;}
.fs9{font-size:501.465864pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:0.067652pt;}
.y1d1{bottom:7.199644pt;}
.y15b{bottom:14.412113pt;}
.y15f{bottom:14.666668pt;}
.y157{bottom:14.666677pt;}
.y150{bottom:14.667687pt;}
.y10{bottom:17.864449pt;}
.yb{bottom:17.878020pt;}
.y153{bottom:20.798512pt;}
.y12{bottom:29.598704pt;}
.y1d0{bottom:39.464659pt;}
.y15e{bottom:46.666617pt;}
.y14f{bottom:46.679636pt;}
.y15a{bottom:46.704061pt;}
.y156{bottom:46.934625pt;}
.y3{bottom:52.299916pt;}
.y152{bottom:52.798460pt;}
.yf{bottom:56.800386pt;}
.ya{bottom:57.101957pt;}
.y1cf{bottom:71.500074pt;}
.y2{bottom:76.567344pt;}
.y15d{bottom:78.934565pt;}
.y159{bottom:78.972010pt;}
.y155{bottom:79.198574pt;}
.y1c6{bottom:82.167680pt;}
.ye{bottom:96.000324pt;}
.y2e{bottom:100.567306pt;}
.y1ce{bottom:103.764023pt;}
.y188{bottom:103.767301pt;}
.y9{bottom:107.769876pt;}
.y14c{bottom:113.899818pt;}
.y17b{bottom:116.032348pt;}
.y1b8{bottom:117.899811pt;}
.y118{bottom:118.699810pt;}
.yc8{bottom:122.967270pt;}
.y1b7{bottom:124.832334pt;}
.y2d{bottom:128.032328pt;}
.y12f{bottom:130.967257pt;}
.yf1{bottom:132.299788pt;}
.y19f{bottom:133.891786pt;}
.yb0{bottom:134.691784pt;}
.yd{bottom:134.972261pt;}
.y1cd{bottom:136.031971pt;}
.y1a2{bottom:136.827781pt;}
.ya0{bottom:139.227777pt;}
.y3f{bottom:140.559775pt;}
.y164{bottom:141.891773pt;}
.y187{bottom:143.491770pt;}
.y14b{bottom:150.731759pt;}
.y17a{bottom:152.867755pt;}
.y117{bottom:155.531751pt;}
.y2c{bottom:155.799751pt;}
.y84{bottom:156.067750pt;}
.y163{bottom:157.131749pt;}
.y58{bottom:159.799744pt;}
.y1b6{bottom:161.667741pt;}
.y1cc{bottom:168.299919pt;}
.ye1{bottom:168.331731pt;}
.yf0{bottom:169.131729pt;}
.y12e{bottom:170.467727pt;}
.y19e{bottom:170.731727pt;}
.y9f{bottom:171.531726pt;}
.y1a1{bottom:173.667722pt;}
.y83{bottom:180.599711pt;}
.y2b{bottom:183.267707pt;}
.y3e{bottom:186.467702pt;}
.y14a{bottom:187.531700pt;}
.y179{bottom:189.667697pt;}
.y1c2{bottom:192.067693pt;}
.y116{bottom:192.331692pt;}
.ye0{bottom:193.667690pt;}
.y57{bottom:196.599685pt;}
.y1b5{bottom:198.467682pt;}
.y107{bottom:199.531681pt;}
.y1cb{bottom:200.299868pt;}
.yc{bottom:201.667200pt;}
.y9e{bottom:203.799674pt;}
.yef{bottom:205.931671pt;}
.y19d{bottom:207.531668pt;}
.yaf{bottom:208.331667pt;}
.y12d{bottom:210.467663pt;}
.y2a{bottom:210.999662pt;}
.y82{bottom:212.867659pt;}
.y8{bottom:214.741705pt;}
.y3c{bottom:217.600000pt;}
.ydf{bottom:218.999650pt;}
.y186{bottom:220.331647pt;}
.y162{bottom:223.267643pt;}
.y149{bottom:224.331641pt;}
.y178{bottom:226.467638pt;}
.y56{bottom:227.267636pt;}
.y106{bottom:228.867634pt;}
.y29{bottom:229.399633pt;}
.y115{bottom:232.067629pt;}
.y1ca{bottom:232.591816pt;}
.yc7{bottom:233.399627pt;}
.y1b4{bottom:235.267624pt;}
.y9d{bottom:235.799623pt;}
.yee{bottom:242.731612pt;}
.y19c{bottom:244.331609pt;}
.y81{bottom:245.131608pt;}
.y12c{bottom:247.267604pt;}
.yde{bottom:248.599602pt;}
.y55{bottom:256.331590pt;}
.y28{bottom:256.867589pt;}
.y161{bottom:260.067584pt;}
.y148{bottom:261.131582pt;}
.y177{bottom:263.267579pt;}
.y1c9{bottom:264.859765pt;}
.y105{bottom:265.667575pt;}
.y9c{bottom:268.067571pt;}
.yc6{bottom:270.199568pt;}
.y114{bottom:271.799565pt;}
.y1b3{bottom:272.067565pt;}
.y80{bottom:277.131557pt;}
.yed{bottom:279.531553pt;}
.y19b{bottom:281.131550pt;}
.yae{bottom:281.931549pt;}
.ydd{bottom:282.999547pt;}
.y12b{bottom:284.067545pt;}
.y27{bottom:284.599545pt;}
.y54{bottom:286.999541pt;}
.y160{bottom:296.867525pt;}
.y1c8{bottom:297.123713pt;}
.y147{bottom:297.931523pt;}
.y185{bottom:299.799520pt;}
.y176{bottom:300.067520pt;}
.y9b{bottom:300.359519pt;}
.y104{bottom:302.507516pt;}
.yc5{bottom:307.039509pt;}
.y113{bottom:308.627506pt;}
.y1b2{bottom:308.891506pt;}
.y7f{bottom:309.439505pt;}
.y26{bottom:312.091501pt;}
.y3b{bottom:313.439498pt;}
.y53{bottom:316.371494pt;}
.ydc{bottom:317.691492pt;}
.y15c{bottom:317.692800pt;}
.y19a{bottom:317.959491pt;}
.yad{bottom:318.771490pt;}
.y12a{bottom:320.891487pt;}
.y1c7{bottom:329.123662pt;}
.y9a{bottom:332.359468pt;}
.y1c1{bottom:332.891467pt;}
.y146{bottom:334.771464pt;}
.y184{bottom:336.639461pt;}
.y175{bottom:336.891461pt;}
.yc4{bottom:338.759458pt;}
.y103{bottom:339.307457pt;}
.y7e{bottom:341.691453pt;}
.y6b{bottom:343.291451pt;}
.y25{bottom:343.839450pt;}
.y3a{bottom:345.159448pt;}
.y112{bottom:345.439447pt;}
.y1b1{bottom:345.707447pt;}
.ydb{bottom:352.107437pt;}
.y52{bottom:353.171435pt;}
.y199{bottom:354.771432pt;}
.yac{bottom:355.559431pt;}
.y129{bottom:357.707428pt;}
.y13a{bottom:359.839424pt;}
.y1c0{bottom:362.227420pt;}
.y99{bottom:364.627417pt;}
.y145{bottom:371.559406pt;}
.y174{bottom:373.691402pt;}
.y7d{bottom:373.959402pt;}
.yc3{bottom:375.559399pt;}
.y102{bottom:376.107398pt;}
.y183{bottom:376.359398pt;}
.y24{bottom:380.627391pt;}
.y111{bottom:382.227388pt;}
.y1b0{bottom:382.507388pt;}
.y6a{bottom:383.039387pt;}
.yda{bottom:386.507382pt;}
.y51{bottom:389.959376pt;}
.y198{bottom:391.559374pt;}
.yab{bottom:392.359372pt;}
.y128{bottom:394.507369pt;}
.y139{bottom:396.627365pt;}
.y98{bottom:396.891365pt;}
.y1bf{bottom:399.027362pt;}
.y7c{bottom:405.959350pt;}
.y144{bottom:408.359347pt;}
.y39{bottom:409.691344pt;}
.y173{bottom:410.507343pt;}
.yc2{bottom:412.359340pt;}
.y101{bottom:412.891339pt;}
.y158{bottom:415.027200pt;}
.y69{bottom:415.291336pt;}
.y182{bottom:416.107334pt;}
.y23{bottom:417.439332pt;}
.y1af{bottom:419.291329pt;}
.yd9{bottom:421.171326pt;}
.y110{bottom:421.959325pt;}
.y50{bottom:426.771317pt;}
.y197{bottom:428.359315pt;}
.y97{bottom:429.171313pt;}
.y127{bottom:431.291310pt;}
.y138{bottom:433.439306pt;}
.y1be{bottom:435.839303pt;}
.y7b{bottom:438.227299pt;}
.y100{bottom:443.291291pt;}
.y143{bottom:445.171288pt;}
.y172{bottom:447.291284pt;}
.y68{bottom:447.559284pt;}
.yc1{bottom:449.159281pt;}
.y181{bottom:453.199275pt;}
.y22{bottom:454.267273pt;}
.yd8{bottom:455.599271pt;}
.y1ae{bottom:456.131270pt;}
.y10f{bottom:458.799266pt;}
.y96{bottom:461.199262pt;}
.y4f{bottom:463.599258pt;}
.y196{bottom:465.199256pt;}
.yaa{bottom:465.999254pt;}
.y126{bottom:468.131251pt;}
.y7a{bottom:470.531247pt;}
.yff{bottom:472.667244pt;}
.y137{bottom:472.931243pt;}
.y38{bottom:473.999242pt;}
.yc0{bottom:476.131238pt;}
.y67{bottom:479.599233pt;}
.y11{bottom:480.132480pt;}
.y142{bottom:481.999229pt;}
.y171{bottom:484.131225pt;}
.yd7{bottom:490.267216pt;}
.y21{bottom:491.067214pt;}
.y180{bottom:492.931211pt;}
.y95{bottom:493.467210pt;}
.y10e{bottom:495.599207pt;}
.y4e{bottom:500.399199pt;}
.y195{bottom:501.999197pt;}
.y79{bottom:502.799196pt;}
.ybf{bottom:503.331195pt;}
.y125{bottom:504.931192pt;}
.yfe{bottom:509.467185pt;}
.y66{bottom:511.867181pt;}
.y154{bottom:512.132480pt;}
.y136{bottom:515.331175pt;}
.y37{bottom:517.199172pt;}
.y141{bottom:518.799170pt;}
.y170{bottom:520.931167pt;}
.yd6{bottom:524.667161pt;}
.y94{bottom:525.731159pt;}
.y20{bottom:527.867155pt;}
.y1ad{bottom:529.731152pt;}
.ybe{bottom:530.267152pt;}
.y10d{bottom:532.399148pt;}
.y17f{bottom:532.667148pt;}
.y78{bottom:534.799144pt;}
.y4d{bottom:537.199140pt;}
.y194{bottom:538.799138pt;}
.ya9{bottom:539.599137pt;}
.y124{bottom:541.731133pt;}
.y65{bottom:544.131129pt;}
.yfd{bottom:546.267126pt;}
.y140{bottom:555.599111pt;}
.y36{bottom:556.931109pt;}
.ybd{bottom:557.199108pt;}
.y16f{bottom:557.731108pt;}
.y93{bottom:557.999107pt;}
.yd5{bottom:559.067105pt;}
.y1f{bottom:564.667097pt;}
.y1ac{bottom:566.531094pt;}
.y77{bottom:567.067093pt;}
.y4c{bottom:567.599092pt;}
.y10c{bottom:569.199089pt;}
.y17e{bottom:572.667084pt;}
.yec{bottom:573.999082pt;}
.y193{bottom:575.599079pt;}
.y64{bottom:576.399078pt;}
.y1bd{bottom:576.667077pt;}
.y123{bottom:578.531074pt;}
.yfc{bottom:583.067067pt;}
.y92{bottom:589.999056pt;}
.y13f{bottom:592.399052pt;}
.yd4{bottom:593.731050pt;}
.ybc{bottom:593.999050pt;}
.y16e{bottom:594.531049pt;}
.y4b{bottom:596.931045pt;}
.y76{bottom:599.331041pt;}
.y135{bottom:600.399039pt;}
.y1e{bottom:601.507038pt;}
.y1ab{bottom:603.359035pt;}
.y10b{bottom:606.027030pt;}
.y63{bottom:608.427027pt;}
.y151{bottom:609.492480pt;}
.yeb{bottom:610.839023pt;}
.y17d{bottom:612.427020pt;}
.ya8{bottom:613.227019pt;}
.y122{bottom:615.359015pt;}
.yfb{bottom:619.891008pt;}
.y35{bottom:621.227006pt;}
.y91{bottom:622.307004pt;}
.yd3{bottom:628.170995pt;}
.y13e{bottom:629.226993pt;}
.ybb{bottom:630.826991pt;}
.y16d{bottom:631.358990pt;}
.y75{bottom:631.638989pt;}
.y4a{bottom:633.758986pt;}
.y1d{bottom:638.290979pt;}
.y1aa{bottom:640.170976pt;}
.y62{bottom:640.690975pt;}
.y10a{bottom:642.826971pt;}
.y134{bottom:643.106971pt;}
.y17c{bottom:645.758967pt;}
.yea{bottom:647.626964pt;}
.y192{bottom:649.226961pt;}
.ya7{bottom:650.026960pt;}
.y121{bottom:652.170957pt;}
.y90{bottom:654.558953pt;}
.yfa{bottom:656.690949pt;}
.yd2{bottom:662.558940pt;}
.y74{bottom:663.626938pt;}
.y13d{bottom:666.026934pt;}
.y34{bottom:666.558934pt;}
.yba{bottom:667.638932pt;}
.y16c{bottom:668.158931pt;}
.y49{bottom:670.558927pt;}
.y61{bottom:672.958923pt;}
.y1c{bottom:675.090920pt;}
.y1a9{bottom:676.958917pt;}
.y109{bottom:679.638913pt;}
.y14e{bottom:680.691200pt;}
.ye9{bottom:684.426905pt;}
.y133{bottom:685.758903pt;}
.y191{bottom:686.038902pt;}
.y8f{bottom:686.838901pt;}
.y120{bottom:688.958898pt;}
.yf9{bottom:693.506890pt;}
.y73{bottom:695.890887pt;}
.y33{bottom:696.958885pt;}
.yd1{bottom:697.226884pt;}
.y48{bottom:700.958878pt;}
.y13c{bottom:702.838875pt;}
.yb9{bottom:704.426873pt;}
.y16b{bottom:704.958872pt;}
.y60{bottom:705.226872pt;}
.y1b{bottom:711.890861pt;}
.y108{bottom:716.426854pt;}
.y1a8{bottom:716.690853pt;}
.y8e{bottom:718.838850pt;}
.y7{bottom:719.628800pt;}
.ye8{bottom:721.226846pt;}
.y190{bottom:722.838843pt;}
.ya6{bottom:723.626842pt;}
.yf8{bottom:723.890842pt;}
.y11f{bottom:725.770839pt;}
.y72{bottom:728.170835pt;}
.y47{bottom:730.290832pt;}
.yd0{bottom:731.626829pt;}
.y13b{bottom:733.226827pt;}
.y32{bottom:736.170822pt;}
.y5f{bottom:737.226820pt;}
.y1c5{bottom:739.626817pt;}
.yb8{bottom:741.226814pt;}
.y16a{bottom:741.758813pt;}
.y1a{bottom:748.706802pt;}
.y8d{bottom:751.090798pt;}
.yf7{bottom:753.266795pt;}
.y1a7{bottom:753.530794pt;}
.ye7{bottom:758.066787pt;}
.y18f{bottom:759.666785pt;}
.y71{bottom:760.466783pt;}
.y11e{bottom:762.598780pt;}
.ycf{bottom:766.066774pt;}
.y46{bottom:767.130773pt;}
.y5e{bottom:769.530769pt;}
.y132{bottom:770.866767pt;}
.y1c4{bottom:776.466758pt;}
.yb7{bottom:778.066755pt;}
.y169{bottom:778.598754pt;}
.y8c{bottom:783.398747pt;}
.y1bc{bottom:783.930746pt;}
.y19{bottom:785.530743pt;}
.y31{bottom:786.866741pt;}
.yf6{bottom:790.066736pt;}
.y70{bottom:792.466732pt;}
.y14d{bottom:792.998731pt;}
.y1a6{bottom:793.266731pt;}
.ye6{bottom:794.866728pt;}
.y18e{bottom:796.466726pt;}
.ya5{bottom:797.266724pt;}
.y11d{bottom:799.398721pt;}
.yce{bottom:800.730719pt;}
.y5d{bottom:801.798717pt;}
.y45{bottom:803.930714pt;}
.y131{bottom:813.266699pt;}
.yb6{bottom:814.866696pt;}
.y168{bottom:815.398695pt;}
.y8b{bottom:815.666695pt;}
.y18{bottom:822.330684pt;}
.y6f{bottom:824.730680pt;}
.yf5{bottom:826.866677pt;}
.y1a0{bottom:829.798672pt;}
.y1a5{bottom:830.330671pt;}
.ye5{bottom:831.666669pt;}
.y18d{bottom:833.266667pt;}
.y5c{bottom:834.066665pt;}
.ycd{bottom:835.130664pt;}
.y11c{bottom:836.198662pt;}
.y44{bottom:844.998648pt;}
.y8a{bottom:847.666644pt;}
.y1bb{bottom:850.066640pt;}
.yb5{bottom:851.666637pt;}
.y167{bottom:852.198636pt;}
.y130{bottom:855.930631pt;}
.y6e{bottom:856.998629pt;}
.y17{bottom:859.130625pt;}
.y30{bottom:862.866619pt;}
.yf4{bottom:863.666618pt;}
.y5b{bottom:868.466610pt;}
.ycc{bottom:869.798608pt;}
.y1a4{bottom:870.066608pt;}
.ya4{bottom:870.866607pt;}
.y11b{bottom:872.998603pt;}
.yb4{bottom:878.598594pt;}
.y89{bottom:879.930592pt;}
.y43{bottom:882.598588pt;}
.y1ba{bottom:886.866581pt;}
.y6d{bottom:889.266577pt;}
.y166{bottom:891.398574pt;}
.y18c{bottom:892.998571pt;}
.y16{bottom:895.930567pt;}
.ya3{bottom:897.798564pt;}
.yf3{bottom:900.466559pt;}
.ycb{bottom:904.226553pt;}
.ye4{bottom:905.290552pt;}
.y1a3{bottom:906.890549pt;}
.y5a{bottom:909.290545pt;}
.y11a{bottom:909.838544pt;}
.y42{bottom:910.358543pt;}
.y88{bottom:912.226540pt;}
.yb3{bottom:918.106531pt;}
.y6c{bottom:919.426529pt;}
.y165{bottom:921.838525pt;}
.y1b9{bottom:923.706522pt;}
.ya2{bottom:926.090518pt;}
.y18b{bottom:929.838512pt;}
.y15{bottom:932.758508pt;}
.yf2{bottom:937.290500pt;}
.y41{bottom:937.838499pt;}
.yca{bottom:938.626498pt;}
.y119{bottom:940.226496pt;}
.ye3{bottom:942.106493pt;}
.y87{bottom:944.506489pt;}
.y59{bottom:955.438471pt;}
.ya1{bottom:957.558468pt;}
.yb2{bottom:960.506463pt;}
.y6{bottom:962.626460pt;}
.y1c3{bottom:964.506457pt;}
.y40{bottom:965.558455pt;}
.y18a{bottom:966.626453pt;}
.yc9{bottom:967.958451pt;}
.y14{bottom:969.558449pt;}
.ye2{bottom:970.370447pt;}
.y86{bottom:976.506438pt;}
.y2f{bottom:1001.290398pt;}
.yb1{bottom:1003.170395pt;}
.y189{bottom:1003.438394pt;}
.y5{bottom:1004.758392pt;}
.y13{bottom:1006.370390pt;}
.y85{bottom:1008.770386pt;}
.y4{bottom:1025.026360pt;}
.y1{bottom:1054.398313pt;}
.h13{height:2.400000pt;}
.h3{height:3.554682pt;}
.h12{height:7.109364pt;}
.h11{height:28.437455pt;}
.hf{height:35.546818pt;}
.h1f{height:39.101500pt;}
.hc{height:42.656182pt;}
.hd{height:46.593675pt;}
.h28{height:47.812424pt;}
.h19{height:49.765545pt;}
.h20{height:53.023353pt;}
.h1a{height:54.359288pt;}
.h2{height:56.874909pt;}
.h1e{height:58.242094pt;}
.h18{height:62.124901pt;}
.h23{height:64.267520pt;}
.hb{height:64.535040pt;}
.h14{height:66.937393pt;}
.h1b{height:67.411350pt;}
.h24{height:70.400000pt;}
.h4{height:71.093636pt;}
.h1d{height:71.718635pt;}
.h1c{height:72.226447pt;}
.h17{height:76.499878pt;}
.h16{height:77.041543pt;}
.h21{height:77.124877pt;}
.h22{height:80.911975pt;}
.ha{height:81.281120pt;}
.h8{height:81.945181pt;}
.h15{height:96.301929pt;}
.h29{height:96.406096pt;}
.h27{height:96.535040pt;}
.h26{height:96.565120pt;}
.h25{height:96.835200pt;}
.h10{height:99.531091pt;}
.h7{height:134.968534pt;}
.h9{height:156.292480pt;}
.h5{height:300.332800pt;}
.h6{height:330.793416pt;}
.h2a{height:346.732800pt;}
.he{height:453.229158pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:2.132499pt;}
.w7{width:131.800320pt;}
.w6{width:159.507200pt;}
.w8{width:307.840000pt;}
.w4{width:499.867520pt;}
.w2{width:589.000320pt;}
.w3{width:611.134720pt;}
.w9{width:628.732800pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.xd{left:-1.567620pt;}
.x0{left:0.000000pt;}
.x50{left:6.667194pt;}
.x5{left:9.599712pt;}
.x4c{left:17.906760pt;}
.x49{left:21.599704pt;}
.x4d{left:44.306718pt;}
.x4a{left:49.075127pt;}
.x6{left:50.659112pt;}
.x4f{left:55.463768pt;}
.x60{left:65.060077pt;}
.x7{left:73.367076pt;}
.x5f{left:85.900043pt;}
.x5e{left:86.967680pt;}
.x1{left:96.032380pt;}
.xc{left:97.600000pt;}
.x43{left:101.367304pt;}
.x3{left:104.032640pt;}
.x2c{left:105.099832pt;}
.x51{left:111.232355pt;}
.x45{left:120.032341pt;}
.x62{left:123.763983pt;}
.x64{left:140.563956pt;}
.x25{left:142.959771pt;}
.x46{left:144.027770pt;}
.x53{left:148.027763pt;}
.xa{left:153.359755pt;}
.x59{left:157.399748pt;}
.x4{left:162.474934pt;}
.x5d{left:164.599737pt;}
.x11{left:168.599730pt;}
.x40{left:171.799725pt;}
.x5c{left:173.931722pt;}
.x8{left:175.800320pt;}
.x63{left:177.391897pt;}
.x3e{left:178.467714pt;}
.x13{left:180.067712pt;}
.x35{left:182.199708pt;}
.x33{left:183.799706pt;}
.x2f{left:185.399703pt;}
.x58{left:195.267688pt;}
.xb{left:198.467682pt;}
.x28{left:200.867679pt;}
.x2a{left:202.731676pt;}
.x17{left:205.931671pt;}
.x26{left:211.799661pt;}
.x9{left:215.267656pt;}
.x18{left:216.867653pt;}
.x12{left:220.067648pt;}
.x14{left:222.199644pt;}
.x48{left:224.331641pt;}
.x31{left:225.931639pt;}
.x56{left:228.867634pt;}
.x61{left:230.203813pt;}
.x38{left:232.067629pt;}
.x42{left:234.999624pt;}
.x15{left:240.067616pt;}
.x47{left:241.667613pt;}
.x44{left:250.999598pt;}
.x41{left:255.531591pt;}
.x4b{left:257.132800pt;}
.x54{left:258.199587pt;}
.x65{left:263.003760pt;}
.x3f{left:264.639577pt;}
.x1d{left:266.771573pt;}
.x1a{left:267.839571pt;}
.x1c{left:269.439569pt;}
.x1f{left:271.307566pt;}
.x3b{left:273.439562pt;}
.xe{left:274.771560pt;}
.x16{left:276.107558pt;}
.x1b{left:281.171550pt;}
.x10{left:282.771548pt;}
.x5a{left:285.439543pt;}
.x57{left:287.307540pt;}
.x19{left:289.439537pt;}
.x1e{left:292.107533pt;}
.x55{left:295.571527pt;}
.xf{left:312.639500pt;}
.x52{left:333.439466pt;}
.x5b{left:336.107462pt;}
.x24{left:385.199384pt;}
.x4e{left:389.467520pt;}
.x23{left:391.067374pt;}
.x37{left:392.131373pt;}
.x2{left:396.931365pt;}
.x2d{left:404.399353pt;}
.x27{left:414.799336pt;}
.x29{left:422.267324pt;}
.x39{left:424.131321pt;}
.x3a{left:426.267318pt;}
.x32{left:432.931307pt;}
.x30{left:438.267299pt;}
.x2e{left:446.799285pt;}
.x3c{left:456.399270pt;}
.x2b{left:458.267267pt;}
.x34{left:460.131264pt;}
.x36{left:464.131257pt;}
.x3d{left:472.667244pt;}
.x20{left:516.427174pt;}
.x21{left:534.027146pt;}
.x22{left:698.106883pt;}
}




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