
    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_0cfd9d39fd5ce87fefa238cf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8dc2b27f6f2d8a6b4d0a5dec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4eebbc35eb9a27c98de72d95.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9fe1f83ada584943837c8160.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.066000px;}
.ls1{letter-spacing:1.320000px;}
.ls4{letter-spacing:1.782000px;}
.ls2{letter-spacing:3.168000px;}
.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;}
}
.wsb6{word-spacing:-21.516000px;}
.wsb8{word-spacing:-20.130000px;}
.wsa0{word-spacing:-19.668000px;}
.wsb7{word-spacing:-18.414000px;}
.ws0{word-spacing:-18.348000px;}
.ws77{word-spacing:-13.344000px;}
.wsb4{word-spacing:-5.544000px;}
.wsac{word-spacing:-5.280000px;}
.wsae{word-spacing:-3.630000px;}
.ws52{word-spacing:-3.498000px;}
.ws70{word-spacing:-3.432000px;}
.ws8c{word-spacing:-3.300000px;}
.wsb5{word-spacing:-3.234000px;}
.ws12{word-spacing:-3.102000px;}
.ws78{word-spacing:-3.036000px;}
.ws50{word-spacing:-2.970000px;}
.ws63{word-spacing:-2.904000px;}
.ws3c{word-spacing:-2.772000px;}
.ws73{word-spacing:-2.706000px;}
.ws40{word-spacing:-2.640000px;}
.wsb0{word-spacing:-2.442000px;}
.ws44{word-spacing:-2.376000px;}
.ws3d{word-spacing:-2.178000px;}
.wsad{word-spacing:-1.980000px;}
.ws33{word-spacing:-1.914000px;}
.ws9a{word-spacing:-1.848000px;}
.wsa3{word-spacing:-1.716000px;}
.wsb1{word-spacing:-1.650000px;}
.ws13{word-spacing:-1.584000px;}
.ws95{word-spacing:-1.518000px;}
.ws74{word-spacing:-1.452000px;}
.ws49{word-spacing:-1.122000px;}
.ws3a{word-spacing:-0.990000px;}
.wsa6{word-spacing:-0.858000px;}
.ws90{word-spacing:-0.792000px;}
.ws84{word-spacing:-0.660000px;}
.ws41{word-spacing:-0.528000px;}
.ws4f{word-spacing:-0.462000px;}
.ws14{word-spacing:-0.396000px;}
.ws56{word-spacing:-0.330000px;}
.ws67{word-spacing:-0.264000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.132000px;}
.ws17{word-spacing:0.198000px;}
.ws71{word-spacing:0.264000px;}
.wsbb{word-spacing:0.396000px;}
.wsab{word-spacing:0.528000px;}
.ws8f{word-spacing:0.594000px;}
.wsba{word-spacing:0.660000px;}
.ws6e{word-spacing:0.792000px;}
.ws62{word-spacing:0.858000px;}
.ws39{word-spacing:0.990000px;}
.ws25{word-spacing:1.056000px;}
.ws7c{word-spacing:1.122000px;}
.ws11{word-spacing:1.254000px;}
.ws32{word-spacing:1.320000px;}
.wsa2{word-spacing:1.452000px;}
.wsa9{word-spacing:1.584000px;}
.ws2b{word-spacing:1.716000px;}
.ws7a{word-spacing:1.782000px;}
.ws9f{word-spacing:2.046000px;}
.ws21{word-spacing:2.112000px;}
.wsb2{word-spacing:2.244000px;}
.ws3f{word-spacing:2.310000px;}
.ws8d{word-spacing:2.376000px;}
.ws97{word-spacing:2.442000px;}
.ws20{word-spacing:2.508000px;}
.wsa4{word-spacing:2.640000px;}
.ws82{word-spacing:2.706000px;}
.ws85{word-spacing:2.970000px;}
.ws4b{word-spacing:3.168000px;}
.ws47{word-spacing:3.300000px;}
.ws6f{word-spacing:3.366000px;}
.ws35{word-spacing:3.432000px;}
.ws18{word-spacing:3.696000px;}
.ws30{word-spacing:3.828000px;}
.ws37{word-spacing:3.894000px;}
.wse{word-spacing:3.960000px;}
.ws1c{word-spacing:4.026000px;}
.ws91{word-spacing:4.224000px;}
.ws54{word-spacing:4.356000px;}
.ws3b{word-spacing:4.554000px;}
.ws8a{word-spacing:4.686000px;}
.ws1b{word-spacing:4.752000px;}
.ws27{word-spacing:4.818000px;}
.ws48{word-spacing:4.884000px;}
.ws46{word-spacing:4.950000px;}
.ws7{word-spacing:5.082000px;}
.ws2c{word-spacing:5.148000px;}
.ws29{word-spacing:5.478000px;}
.wsb3{word-spacing:5.676000px;}
.ws5c{word-spacing:5.742000px;}
.ws5a{word-spacing:5.808000px;}
.ws1e{word-spacing:6.006000px;}
.ws59{word-spacing:6.138000px;}
.ws55{word-spacing:6.204000px;}
.ws72{word-spacing:6.270000px;}
.ws2f{word-spacing:6.336000px;}
.ws7f{word-spacing:6.402000px;}
.ws87{word-spacing:6.600000px;}
.ws64{word-spacing:6.666000px;}
.ws66{word-spacing:6.732000px;}
.ws4a{word-spacing:6.798000px;}
.wsa5{word-spacing:6.864000px;}
.ws58{word-spacing:6.930000px;}
.ws19{word-spacing:6.996000px;}
.ws38{word-spacing:7.062000px;}
.ws5{word-spacing:7.524000px;}
.ws7b{word-spacing:7.590000px;}
.ws86{word-spacing:7.722000px;}
.wsa8{word-spacing:7.920000px;}
.ws80{word-spacing:8.052000px;}
.ws81{word-spacing:8.184000px;}
.ws4{word-spacing:8.250000px;}
.ws9b{word-spacing:8.382000px;}
.ws6c{word-spacing:8.448000px;}
.ws60{word-spacing:8.514000px;}
.ws42{word-spacing:8.580000px;}
.ws9c{word-spacing:8.646000px;}
.wsaa{word-spacing:8.778000px;}
.wsd{word-spacing:8.844000px;}
.ws9d{word-spacing:8.976000px;}
.ws36{word-spacing:9.042000px;}
.ws9{word-spacing:9.108000px;}
.ws4c{word-spacing:9.174000px;}
.ws51{word-spacing:9.372000px;}
.ws6{word-spacing:9.438000px;}
.ws8{word-spacing:9.570000px;}
.ws89{word-spacing:9.636000px;}
.wsf{word-spacing:9.834000px;}
.ws3e{word-spacing:9.966000px;}
.ws10{word-spacing:10.032000px;}
.ws2d{word-spacing:10.164000px;}
.ws34{word-spacing:10.230000px;}
.wsa7{word-spacing:10.428000px;}
.ws6a{word-spacing:10.560000px;}
.ws5f{word-spacing:10.626000px;}
.ws3{word-spacing:10.692000px;}
.ws88{word-spacing:10.758000px;}
.ws45{word-spacing:11.154000px;}
.ws4d{word-spacing:11.286000px;}
.ws69{word-spacing:11.748000px;}
.ws22{word-spacing:11.814000px;}
.wsb{word-spacing:11.880000px;}
.ws16{word-spacing:11.946000px;}
.ws8e{word-spacing:12.078000px;}
.ws6d{word-spacing:12.474000px;}
.ws1a{word-spacing:12.738000px;}
.ws2a{word-spacing:12.804000px;}
.ws1f{word-spacing:13.134000px;}
.ws5d{word-spacing:13.332000px;}
.ws28{word-spacing:13.530000px;}
.ws8b{word-spacing:13.596000px;}
.ws93{word-spacing:13.662000px;}
.ws1d{word-spacing:13.728000px;}
.wsaf{word-spacing:13.860000px;}
.ws43{word-spacing:13.992000px;}
.ws68{word-spacing:14.322000px;}
.ws31{word-spacing:14.850000px;}
.ws65{word-spacing:14.916000px;}
.ws61{word-spacing:14.982000px;}
.ws7d{word-spacing:15.444000px;}
.wsa1{word-spacing:15.576000px;}
.ws6b{word-spacing:15.972000px;}
.ws23{word-spacing:16.434000px;}
.ws53{word-spacing:16.896000px;}
.ws24{word-spacing:17.226000px;}
.ws83{word-spacing:17.952000px;}
.wsa{word-spacing:18.678000px;}
.ws94{word-spacing:19.404000px;}
.ws4e{word-spacing:19.668000px;}
.ws9e{word-spacing:19.800000px;}
.ws92{word-spacing:20.064000px;}
.wsc{word-spacing:20.130000px;}
.ws99{word-spacing:20.856000px;}
.ws2e{word-spacing:21.582000px;}
.ws5b{word-spacing:22.176000px;}
.ws26{word-spacing:23.166000px;}
.ws15{word-spacing:24.024000px;}
.ws79{word-spacing:24.486000px;}
.ws96{word-spacing:25.146000px;}
.ws98{word-spacing:26.664000px;}
.ws7e{word-spacing:27.456000px;}
.ws57{word-spacing:27.918000px;}
.wsb9{word-spacing:65.076000px;}
.ws5e{word-spacing:186.681000px;}
.ws76{word-spacing:496.039200px;}
.ws75{word-spacing:731.432400px;}
._2a{margin-left:-13.177800px;}
._6{margin-left:-8.045400px;}
._2{margin-left:-6.291600px;}
._0{margin-left:-4.302000px;}
._1{margin-left:-2.449800px;}
._3{margin-left:-1.009800px;}
._c{width:1.003200px;}
._8{width:2.059200px;}
._7{width:3.168000px;}
._4{width:4.534200px;}
._d{width:5.926800px;}
._9{width:7.524000px;}
._5{width:9.167400px;}
._13{width:10.170600px;}
._b{width:11.305800px;}
._49{width:13.134000px;}
._4a{width:15.800400px;}
._a{width:17.252400px;}
._11{width:20.750400px;}
._e{width:22.433400px;}
._14{width:23.720400px;}
._12{width:25.225200px;}
._10{width:27.998400px;}
._f{width:29.362200px;}
._24{width:117.898800px;}
._23{width:120.576600px;}
._20{width:126.395400px;}
._3a{width:133.090200px;}
._21{width:135.034800px;}
._1e{width:137.251800px;}
._34{width:139.497000px;}
._1c{width:143.079600px;}
._1d{width:151.710600px;}
._41{width:156.756000px;}
._3f{width:167.229600px;}
._40{width:169.796400px;}
._43{width:172.239000px;}
._3e{width:175.778400px;}
._47{width:185.624400px;}
._18{width:205.033800px;}
._46{width:208.349400px;}
._42{width:212.402400px;}
._1b{width:223.220400px;}
._38{width:235.672200px;}
._19{width:246.454200px;}
._16{width:256.604400px;}
._17{width:271.425600px;}
._48{width:276.643200px;}
._39{width:281.296800px;}
._3d{width:304.634400px;}
._45{width:319.467000px;}
._37{width:322.306200px;}
._3b{width:333.250200px;}
._36{width:341.835600px;}
._44{width:365.777400px;}
._22{width:370.962600px;}
._1f{width:376.944600px;}
._3c{width:381.852000px;}
._2f{width:388.771200px;}
._32{width:390.022800px;}
._29{width:396.422400px;}
._28{width:409.157400px;}
._1a{width:413.568600px;}
._15{width:422.648400px;}
._2e{width:433.087800px;}
._33{width:459.157800px;}
._2d{width:464.673000px;}
._31{width:468.394800px;}
._27{width:480.747000px;}
._2c{width:520.924800px;}
._26{width:526.638000px;}
._35{width:627.651000px;}
._25{width:714.958800px;}
._2b{width:725.588400px;}
._30{width:889.344600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:54.454050px;}
.ye0{bottom:68.952150px;}
.ydb{bottom:73.204050px;}
.y148{bottom:84.211050px;}
.ydf{bottom:87.702150px;}
.y10c{bottom:88.848000px;}
.yab{bottom:89.704050px;}
.y17a{bottom:90.891150px;}
.y51{bottom:91.091850px;}
.y83{bottom:91.954050px;}
.y30{bottom:93.093900px;}
.y1bb{bottom:96.471900px;}
.y5{bottom:99.552150px;}
.y196{bottom:101.131350px;}
.y1dd{bottom:101.692350px;}
.y147{bottom:102.211050px;}
.y10b{bottom:103.848000px;}
.yde{bottom:106.452150px;}
.yaa{bottom:108.454050px;}
.y50{bottom:109.841850px;}
.y82{bottom:110.704050px;}
.y2f{bottom:111.843900px;}
.y179{bottom:113.893200px;}
.y1ba{bottom:115.221900px;}
.y195{bottom:119.881350px;}
.y146{bottom:120.211050px;}
.y1dc{bottom:120.442350px;}
.ydd{bottom:125.202150px;}
.ya9{bottom:127.204050px;}
.y4f{bottom:128.591850px;}
.yda{bottom:129.454050px;}
.y2e{bottom:130.593900px;}
.y178{bottom:132.643050px;}
.y81{bottom:133.706100px;}
.y1b9{bottom:133.971900px;}
.y10a{bottom:134.223000px;}
.y145{bottom:138.211050px;}
.y194{bottom:138.631350px;}
.y1db{bottom:143.444250px;}
.y4e{bottom:147.341850px;}
.yd9{bottom:148.204050px;}
.y2d{bottom:149.343900px;}
.ya8{bottom:150.206100px;}
.y177{bottom:151.393050px;}
.y109{bottom:152.223000px;}
.y80{bottom:152.456100px;}
.y1b8{bottom:156.973800px;}
.y144{bottom:161.131500px;}
.y1da{bottom:162.194250px;}
.y4d{bottom:166.091850px;}
.yd8{bottom:166.954050px;}
.y2c{bottom:168.093900px;}
.ya7{bottom:168.956100px;}
.y193{bottom:170.137200px;}
.y176{bottom:170.143050px;}
.y7f{bottom:171.206100px;}
.y108{bottom:175.143450px;}
.y1b7{bottom:175.723800px;}
.y143{bottom:179.131500px;}
.y4c{bottom:184.841850px;}
.y1d9{bottom:185.196300px;}
.yd7{bottom:185.704050px;}
.y2b{bottom:186.843900px;}
.ya6{bottom:187.706100px;}
.y175{bottom:188.893050px;}
.y7e{bottom:189.956100px;}
.y107{bottom:193.143450px;}
.y1b6{bottom:194.473800px;}
.y142{bottom:197.131500px;}
.y4b{bottom:203.591850px;}
.y1d8{bottom:203.946300px;}
.y2a{bottom:205.593900px;}
.ya5{bottom:206.456100px;}
.y174{bottom:207.643050px;}
.y7d{bottom:212.958000px;}
.y1b5{bottom:213.223800px;}
.y141{bottom:215.131500px;}
.y106{bottom:216.063900px;}
.yd6{bottom:216.608550px;}
.y4a{bottom:222.341850px;}
.y1d7{bottom:222.696300px;}
.y29{bottom:224.343900px;}
.ya4{bottom:225.206100px;}
.y192{bottom:226.393050px;}
.y173{bottom:230.645100px;}
.yd5{bottom:231.608550px;}
.y7c{bottom:231.708000px;}
.y1b4{bottom:231.973800px;}
.y140{bottom:233.131500px;}
.y105{bottom:234.063900px;}
.y49{bottom:241.091850px;}
.ya3{bottom:243.956100px;}
.y191{bottom:245.143050px;}
.y1d6{bottom:245.698200px;}
.yd4{bottom:246.608550px;}
.y172{bottom:249.395100px;}
.y7b{bottom:250.458000px;}
.y1b3{bottom:250.723800px;}
.y13f{bottom:251.131500px;}
.y28{bottom:255.849750px;}
.y104{bottom:257.044050px;}
.yd3{bottom:261.983550px;}
.ya2{bottom:262.706100px;}
.y190{bottom:263.893050px;}
.y48{bottom:264.093900px;}
.y1d5{bottom:264.448200px;}
.y171{bottom:268.145100px;}
.y7a{bottom:269.208000px;}
.y1b2{bottom:269.473800px;}
.y13e{bottom:274.051950px;}
.yd2{bottom:279.983550px;}
.y103{bottom:280.339500px;}
.ya1{bottom:281.456100px;}
.y18f{bottom:282.643050px;}
.y47{bottom:282.843900px;}
.y1d4{bottom:283.198200px;}
.y170{bottom:286.895100px;}
.y27{bottom:287.101800px;}
.y1b1{bottom:288.223800px;}
.y79{bottom:292.210050px;}
.y13d{bottom:297.347400px;}
.ya0{bottom:300.206100px;}
.y18e{bottom:301.393050px;}
.y46{bottom:301.593900px;}
.yd1{bottom:302.904000px;}
.y16f{bottom:305.645100px;}
.y26{bottom:305.851800px;}
.y1d3{bottom:306.200250px;}
.y1b0{bottom:306.973800px;}
.y78{bottom:310.960050px;}
.y102{bottom:314.503350px;}
.y18d{bottom:320.143050px;}
.y45{bottom:320.343900px;}
.yd0{bottom:320.904000px;}
.y9f{bottom:323.208000px;}
.y16e{bottom:324.395100px;}
.y1d2{bottom:324.950250px;}
.y25{bottom:328.853700px;}
.y77{bottom:329.710050px;}
.y1af{bottom:329.975850px;}
.y13c{bottom:332.574150px;}
.y101{bottom:333.253350px;}
.y138{bottom:336.826200px;}
.y18c{bottom:338.893050px;}
.ycf{bottom:338.904000px;}
.y44{bottom:339.093900px;}
.y9e{bottom:341.958000px;}
.y16d{bottom:343.145100px;}
.y1d1{bottom:343.700250px;}
.y24{bottom:347.603700px;}
.y76{bottom:348.460050px;}
.y1ae{bottom:348.725850px;}
.y13b{bottom:351.324150px;}
.y100{bottom:352.003350px;}
.y137{bottom:355.576200px;}
.y43{bottom:357.843900px;}
.y9d{bottom:360.708000px;}
.yce{bottom:361.824450px;}
.y16c{bottom:361.895100px;}
.y23{bottom:366.353700px;}
.y1d0{bottom:366.702150px;}
.y75{bottom:367.210050px;}
.y1ad{bottom:367.475850px;}
.y13a{bottom:370.074150px;}
.yff{bottom:370.753350px;}
.y136{bottom:374.326200px;}
.y42{bottom:376.593900px;}
.y9c{bottom:379.458000px;}
.ycd{bottom:379.824450px;}
.y16b{bottom:380.645100px;}
.y22{bottom:385.103700px;}
.y1cf{bottom:385.452150px;}
.y1ac{bottom:386.225850px;}
.y139{bottom:388.824150px;}
.yfe{bottom:389.503350px;}
.y74{bottom:390.211950px;}
.y135{bottom:393.076200px;}
.ycc{bottom:397.824450px;}
.y16a{bottom:399.395100px;}
.y9b{bottom:402.460050px;}
.y21{bottom:403.853700px;}
.y1ab{bottom:404.975850px;}
.y41{bottom:408.099750px;}
.yfd{bottom:408.253350px;}
.y1ce{bottom:408.454200px;}
.y73{bottom:408.961950px;}
.y134{bottom:411.826200px;}
.y169{bottom:418.145100px;}
.ycb{bottom:420.744900px;}
.y9a{bottom:421.210050px;}
.y20{bottom:422.603700px;}
.y1aa{bottom:423.725850px;}
.yfc{bottom:427.003350px;}
.y1cd{bottom:427.204200px;}
.y72{bottom:427.711950px;}
.y133{bottom:430.576200px;}
.y18b{bottom:436.895100px;}
.y99{bottom:439.960050px;}
.y168{bottom:441.147150px;}
.y1f{bottom:441.353700px;}
.y1a9{bottom:442.475850px;}
.yca{bottom:444.040200px;}
.y1cc{bottom:445.954200px;}
.y132{bottom:449.326200px;}
.y18a{bottom:455.645100px;}
.y98{bottom:458.710050px;}
.y71{bottom:459.217950px;}
.y167{bottom:459.897150px;}
.y1e{bottom:460.103700px;}
.y1a8{bottom:461.225850px;}
.y1cb{bottom:468.956100px;}
.yfb{bottom:469.459050px;}
.y189{bottom:474.395100px;}
.yc5{bottom:474.808350px;}
.y166{bottom:478.647150px;}
.y1d{bottom:478.853700px;}
.y1a7{bottom:479.975850px;}
.y97{bottom:481.711950px;}
.y131{bottom:482.498400px;}
.yfa{bottom:484.459050px;}
.y40{bottom:487.357650px;}
.y1ca{bottom:487.706100px;}
.y188{bottom:493.145100px;}
.yc4{bottom:493.558350px;}
.y70{bottom:494.473800px;}
.y165{bottom:497.397150px;}
.y130{bottom:497.498400px;}
.y1c{bottom:497.603700px;}
.y1a6{bottom:498.725850px;}
.y96{bottom:500.461950px;}
.y3f{bottom:506.107650px;}
.y1c9{bottom:506.456100px;}
.y187{bottom:511.895100px;}
.yc3{bottom:512.308350px;}
.y12f{bottom:512.498400px;}
.y6f{bottom:513.223800px;}
.yf9{bottom:514.834050px;}
.y164{bottom:516.147000px;}
.y1b{bottom:516.353700px;}
.y1a5{bottom:517.475850px;}
.y95{bottom:523.464000px;}
.y12e{bottom:527.873400px;}
.y3e{bottom:529.109550px;}
.y1c8{bottom:529.458000px;}
.y186{bottom:530.645100px;}
.yc2{bottom:531.058350px;}
.y6e{bottom:531.973800px;}
.y163{bottom:534.897000px;}
.y1a{bottom:535.103700px;}
.yf8{bottom:537.754350px;}
.y1a4{bottom:540.477750px;}
.y94{bottom:542.214000px;}
.y12d{bottom:545.873400px;}
.y3d{bottom:547.859550px;}
.y1c7{bottom:548.208000px;}
.yc9{bottom:549.808350px;}
.y6d{bottom:550.723800px;}
.y185{bottom:553.647000px;}
.y19{bottom:553.853700px;}
.yc1{bottom:554.060400px;}
.yf7{bottom:555.754350px;}
.y162{bottom:557.899050px;}
.y1a3{bottom:559.227750px;}
.y93{bottom:560.964000px;}
.y12c{bottom:563.873400px;}
.y3c{bottom:566.609550px;}
.yc8{bottom:568.558350px;}
.y6c{bottom:569.473800px;}
.y1c6{bottom:571.210050px;}
.y184{bottom:572.397000px;}
.y18{bottom:572.603700px;}
.yc0{bottom:572.810400px;}
.y161{bottom:576.649050px;}
.y1a2{bottom:577.977750px;}
.yf6{bottom:578.674800px;}
.y92{bottom:579.714000px;}
.y3b{bottom:585.359550px;}
.y12b{bottom:586.793850px;}
.yc7{bottom:587.308350px;}
.y1c5{bottom:589.960050px;}
.y183{bottom:591.147000px;}
.y17{bottom:591.353700px;}
.ybf{bottom:591.560400px;}
.y6b{bottom:592.475850px;}
.y160{bottom:595.399050px;}
.yf5{bottom:596.674800px;}
.y1a1{bottom:596.727750px;}
.y91{bottom:598.464000px;}
.y3a{bottom:604.109550px;}
.y12a{bottom:604.793850px;}
.yc6{bottom:606.058350px;}
.y1c4{bottom:608.710050px;}
.y182{bottom:609.897000px;}
.y16{bottom:610.103700px;}
.ybe{bottom:610.310400px;}
.y6a{bottom:611.225850px;}
.y15f{bottom:614.149050px;}
.yf4{bottom:614.674800px;}
.y1a0{bottom:615.477750px;}
.y90{bottom:621.465900px;}
.y129{bottom:622.793850px;}
.y39{bottom:622.859550px;}
.y1c3{bottom:627.460050px;}
.y181{bottom:628.647000px;}
.y15{bottom:628.853700px;}
.ybd{bottom:629.060400px;}
.y69{bottom:629.975850px;}
.y15e{bottom:632.899050px;}
.yf3{bottom:637.595250px;}
.y19f{bottom:638.479650px;}
.y8f{bottom:640.215900px;}
.y38{bottom:641.609550px;}
.y128{bottom:645.714150px;}
.y1c2{bottom:646.210050px;}
.y180{bottom:647.397000px;}
.y14{bottom:647.603700px;}
.ybc{bottom:647.810400px;}
.y68{bottom:648.725850px;}
.y15d{bottom:651.649050px;}
.y19e{bottom:657.229650px;}
.y8e{bottom:658.965900px;}
.y37{bottom:660.359550px;}
.yf2{bottom:660.890550px;}
.y127{bottom:663.714150px;}
.y17f{bottom:666.147000px;}
.y13{bottom:666.353700px;}
.ybb{bottom:666.560400px;}
.y67{bottom:667.475850px;}
.y1c1{bottom:669.211950px;}
.y15c{bottom:674.650950px;}
.y19d{bottom:675.979650px;}
.y8d{bottom:677.715900px;}
.y36{bottom:679.109550px;}
.y126{bottom:681.714150px;}
.y12{bottom:685.103700px;}
.yba{bottom:685.310400px;}
.y66{bottom:686.225850px;}
.y1c0{bottom:687.962100px;}
.y17e{bottom:689.149050px;}
.y15b{bottom:693.400950px;}
.y19c{bottom:694.729650px;}
.y8c{bottom:696.465900px;}
.y1e9{bottom:696.471900px;}
.y35{bottom:697.859550px;}
.y125{bottom:699.714150px;}
.yf1{bottom:700.369500px;}
.y11{bottom:703.853700px;}
.y65{bottom:704.975850px;}
.y17d{bottom:707.899050px;}
.y1bf{bottom:710.964000px;}
.y15a{bottom:712.150950px;}
.y19b{bottom:713.479650px;}
.yb9{bottom:714.797550px;}
.y1e8{bottom:715.221900px;}
.y34{bottom:716.609550px;}
.yf0{bottom:719.119500px;}
.y10{bottom:722.603700px;}
.y124{bottom:722.634600px;}
.y17c{bottom:726.649050px;}
.y8b{bottom:727.971900px;}
.y64{bottom:727.977750px;}
.yb8{bottom:729.797550px;}
.y159{bottom:730.900950px;}
.y19a{bottom:732.229650px;}
.y1be{bottom:733.965900px;}
.y33{bottom:735.359550px;}
.yef{bottom:737.869500px;}
.y1e7{bottom:738.223800px;}
.yf{bottom:741.353700px;}
.y17b{bottom:745.399050px;}
.y123{bottom:745.930050px;}
.y63{bottom:746.727750px;}
.y158{bottom:749.650950px;}
.y199{bottom:750.979650px;}
.y1bd{bottom:752.715900px;}
.y32{bottom:754.109550px;}
.yee{bottom:756.619500px;}
.y1e6{bottom:756.973800px;}
.ye{bottom:760.103700px;}
.yb7{bottom:760.172550px;}
.y62{bottom:765.477750px;}
.y157{bottom:768.400950px;}
.y198{bottom:769.729650px;}
.y31{bottom:772.859550px;}
.y115{bottom:773.981700px;}
.yed{bottom:775.369500px;}
.y1e5{bottom:775.723800px;}
.yb6{bottom:783.093000px;}
.y1bc{bottom:784.221900px;}
.y61{bottom:784.227750px;}
.y156{bottom:787.150950px;}
.y197{bottom:788.479650px;}
.yd{bottom:791.609550px;}
.y114{bottom:792.731700px;}
.yec{bottom:794.119500px;}
.y1e4{bottom:794.473800px;}
.y122{bottom:794.975850px;}
.y8a{bottom:802.977750px;}
.y155{bottom:805.900950px;}
.yb5{bottom:806.013450px;}
.y60{bottom:807.229650px;}
.y113{bottom:811.481700px;}
.yeb{bottom:812.869500px;}
.y1e3{bottom:813.223800px;}
.y121{bottom:813.725850px;}
.yc{bottom:820.672050px;}
.y89{bottom:821.727750px;}
.y154{bottom:824.650950px;}
.y5f{bottom:825.979650px;}
.yb4{bottom:828.933900px;}
.y112{bottom:830.231700px;}
.y1e2{bottom:831.973800px;}
.y120{bottom:832.475850px;}
.yb{bottom:838.672050px;}
.y88{bottom:840.477750px;}
.y153{bottom:843.400950px;}
.y5e{bottom:844.729650px;}
.yea{bottom:846.892050px;}
.y111{bottom:848.981700px;}
.y11f{bottom:851.225850px;}
.yb3{bottom:852.229200px;}
.y1e1{bottom:854.975850px;}
.ya{bottom:856.672050px;}
.y87{bottom:859.227750px;}
.ye9{bottom:861.892050px;}
.y152{bottom:862.150950px;}
.y5d{bottom:863.479650px;}
.y110{bottom:867.731700px;}
.y11e{bottom:869.975850px;}
.y1e0{bottom:873.725850px;}
.y9{bottom:874.672050px;}
.y151{bottom:880.900950px;}
.y5c{bottom:882.229650px;}
.y10f{bottom:886.481700px;}
.y11d{bottom:888.725850px;}
.ye8{bottom:892.267050px;}
.yae{bottom:896.727750px;}
.y5b{bottom:900.979650px;}
.y10e{bottom:905.231700px;}
.y11c{bottom:907.475850px;}
.ye7{bottom:910.267050px;}
.yb2{bottom:911.219850px;}
.y8{bottom:914.923950px;}
.yad{bottom:915.477750px;}
.y150{bottom:915.653250px;}
.y5a{bottom:919.729650px;}
.y10d{bottom:923.981700px;}
.y11b{bottom:926.225850px;}
.yb1{bottom:929.969850px;}
.y14f{bottom:930.653250px;}
.ye6{bottom:933.187500px;}
.y1df{bottom:934.227750px;}
.y86{bottom:938.479650px;}
.y59{bottom:942.731700px;}
.y11a{bottom:944.975850px;}
.yb0{bottom:948.719850px;}
.y7{bottom:950.923950px;}
.ye5{bottom:951.187500px;}
.y1de{bottom:952.977750px;}
.y14e{bottom:955.028250px;}
.y85{bottom:957.229650px;}
.y58{bottom:961.481700px;}
.y119{bottom:963.725850px;}
.y14d{bottom:973.028250px;}
.ye4{bottom:974.107950px;}
.y84{bottom:975.979650px;}
.yaf{bottom:980.225850px;}
.y57{bottom:980.231700px;}
.y118{bottom:982.475850px;}
.y6{bottom:983.923950px;}
.y14c{bottom:991.028250px;}
.ye3{bottom:992.107950px;}
.yac{bottom:994.729650px;}
.y56{bottom:998.981700px;}
.y117{bottom:1001.225850px;}
.y14b{bottom:1009.028250px;}
.ye2{bottom:1010.107950px;}
.y55{bottom:1017.731700px;}
.y4{bottom:1023.323700px;}
.y14a{bottom:1027.028250px;}
.y116{bottom:1032.731700px;}
.ye1{bottom:1033.028250px;}
.y54{bottom:1036.481700px;}
.y3{bottom:1039.823700px;}
.y149{bottom:1049.948700px;}
.y53{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y1{bottom:1108.294050px;}
.y52{bottom:1109.357100px;}
.hb{height:43.031250px;}
.hc{height:43.335938px;}
.h4{height:53.789062px;}
.h3{height:54.169922px;}
.ha{height:59.167969px;}
.h9{height:59.586914px;}
.h7{height:64.546875px;}
.h8{height:65.003906px;}
.h2{height:75.304688px;}
.h6{height:75.837891px;}
.h5{height:167.926758px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.xe{left:85.039350px;}
.x6{left:96.699450px;}
.x53{left:99.169050px;}
.x4b{left:100.414050px;}
.x17{left:102.631950px;}
.xd{left:106.299150px;}
.x57{left:109.573050px;}
.x4a{left:123.342600px;}
.x62{left:124.746150px;}
.x70{left:133.905150px;}
.x46{left:135.339300px;}
.x41{left:136.584450px;}
.x16{left:139.390800px;}
.x15{left:140.635800px;}
.x3c{left:145.743300px;}
.x61{left:147.674550px;}
.x14{left:149.794800px;}
.x3b{left:159.512850px;}
.x13{left:163.564350px;}
.x23{left:173.495100px;}
.x1e{left:174.740100px;}
.x2e{left:176.168550px;}
.x9{left:184.635450px;}
.x6f{left:190.722000px;}
.x1a{left:197.668650px;}
.x2a{left:199.097100px;}
.x8{left:213.079800px;}
.xf{left:226.506900px;}
.xc{left:230.623950px;}
.x12{left:232.978950px;}
.x29{left:238.065600px;}
.x60{left:245.712150px;}
.x49{left:248.755350px;}
.x71{left:257.449200px;}
.x64{left:259.529250px;}
.x65{left:262.880100px;}
.x63{left:266.751000px;}
.x19{left:268.622250px;}
.x72{left:274.536600px;}
.x3a{left:286.987800px;}
.x3d{left:302.375550px;}
.xa{left:311.377350px;}
.x6b{left:332.474850px;}
.x48{left:336.221850px;}
.x58{left:340.593000px;}
.x4c{left:346.412100px;}
.x54{left:350.594250px;}
.x42{left:354.062550px;}
.xb{left:360.050550px;}
.x5e{left:372.462150px;}
.x1b{left:375.549150px;}
.x35{left:386.707650px;}
.x2b{left:395.049000px;}
.x4d{left:400.618650px;}
.x7{left:402.768300px;}
.x24{left:403.897650px;}
.x1f{left:432.256950px;}
.x2f{left:441.762750px;}
.x31{left:447.600150px;}
.x10{left:476.716500px;}
.x66{left:483.197250px;}
.x6c{left:485.694750px;}
.x3e{left:489.888600px;}
.x6d{left:491.100150px;}
.x5f{left:494.887800px;}
.x73{left:496.113600px;}
.x11{left:497.976300px;}
.x43{left:500.699100px;}
.x39{left:504.221850px;}
.x18{left:505.223700px;}
.x3{left:508.762800px;}
.x28{left:520.880100px;}
.x3f{left:522.386100px;}
.x74{left:526.959450px;}
.x33{left:532.915200px;}
.x44{left:534.485700px;}
.x55{left:537.295650px;}
.x5a{left:538.947300px;}
.x4f{left:547.289550px;}
.x4{left:548.994750px;}
.x59{left:550.204500px;}
.x4e{left:552.705750px;}
.x50{left:561.037050px;}
.x47{left:581.177700px;}
.x20{left:614.326350px;}
.x21{left:618.530550px;}
.x1c{left:620.588550px;}
.x25{left:622.243950px;}
.x2c{left:632.405100px;}
.x37{left:636.660750px;}
.x30{left:640.340850px;}
.x26{left:647.680950px;}
.x6e{left:649.552950px;}
.x68{left:651.479250px;}
.x69{left:654.826350px;}
.x32{left:656.168550px;}
.x67{left:658.290750px;}
.x38{left:665.855100px;}
.x52{left:667.851150px;}
.x56{left:669.510150px;}
.x5c{left:671.172750px;}
.x5b{left:673.274850px;}
.x51{left:677.434950px;}
.x36{left:688.362300px;}
.x22{left:696.895950px;}
.x2d{left:702.468600px;}
.x75{left:712.299900px;}
.x34{left:715.674900px;}
.x1d{left:718.568400px;}
.x5d{left:720.798000px;}
.x6a{left:726.120300px;}
.x45{left:756.202800px;}
.x40{left:769.540350px;}
.x2{left:775.393650px;}
.x1{left:827.035350px;}
.x27{left:847.059750px;}
.x5{left:909.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.058667pt;}
.ls1{letter-spacing:1.173333pt;}
.ls4{letter-spacing:1.584000pt;}
.ls2{letter-spacing:2.816000pt;}
.wsb6{word-spacing:-19.125333pt;}
.wsb8{word-spacing:-17.893333pt;}
.wsa0{word-spacing:-17.482667pt;}
.wsb7{word-spacing:-16.368000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws77{word-spacing:-11.861333pt;}
.wsb4{word-spacing:-4.928000pt;}
.wsac{word-spacing:-4.693333pt;}
.wsae{word-spacing:-3.226667pt;}
.ws52{word-spacing:-3.109333pt;}
.ws70{word-spacing:-3.050667pt;}
.ws8c{word-spacing:-2.933333pt;}
.wsb5{word-spacing:-2.874667pt;}
.ws12{word-spacing:-2.757333pt;}
.ws78{word-spacing:-2.698667pt;}
.ws50{word-spacing:-2.640000pt;}
.ws63{word-spacing:-2.581333pt;}
.ws3c{word-spacing:-2.464000pt;}
.ws73{word-spacing:-2.405333pt;}
.ws40{word-spacing:-2.346667pt;}
.wsb0{word-spacing:-2.170667pt;}
.ws44{word-spacing:-2.112000pt;}
.ws3d{word-spacing:-1.936000pt;}
.wsad{word-spacing:-1.760000pt;}
.ws33{word-spacing:-1.701333pt;}
.ws9a{word-spacing:-1.642667pt;}
.wsa3{word-spacing:-1.525333pt;}
.wsb1{word-spacing:-1.466667pt;}
.ws13{word-spacing:-1.408000pt;}
.ws95{word-spacing:-1.349333pt;}
.ws74{word-spacing:-1.290667pt;}
.ws49{word-spacing:-0.997333pt;}
.ws3a{word-spacing:-0.880000pt;}
.wsa6{word-spacing:-0.762667pt;}
.ws90{word-spacing:-0.704000pt;}
.ws84{word-spacing:-0.586667pt;}
.ws41{word-spacing:-0.469333pt;}
.ws4f{word-spacing:-0.410667pt;}
.ws14{word-spacing:-0.352000pt;}
.ws56{word-spacing:-0.293333pt;}
.ws67{word-spacing:-0.234667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.117333pt;}
.ws17{word-spacing:0.176000pt;}
.ws71{word-spacing:0.234667pt;}
.wsbb{word-spacing:0.352000pt;}
.wsab{word-spacing:0.469333pt;}
.ws8f{word-spacing:0.528000pt;}
.wsba{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.704000pt;}
.ws62{word-spacing:0.762667pt;}
.ws39{word-spacing:0.880000pt;}
.ws25{word-spacing:0.938667pt;}
.ws7c{word-spacing:0.997333pt;}
.ws11{word-spacing:1.114667pt;}
.ws32{word-spacing:1.173333pt;}
.wsa2{word-spacing:1.290667pt;}
.wsa9{word-spacing:1.408000pt;}
.ws2b{word-spacing:1.525333pt;}
.ws7a{word-spacing:1.584000pt;}
.ws9f{word-spacing:1.818667pt;}
.ws21{word-spacing:1.877333pt;}
.wsb2{word-spacing:1.994667pt;}
.ws3f{word-spacing:2.053333pt;}
.ws8d{word-spacing:2.112000pt;}
.ws97{word-spacing:2.170667pt;}
.ws20{word-spacing:2.229333pt;}
.wsa4{word-spacing:2.346667pt;}
.ws82{word-spacing:2.405333pt;}
.ws85{word-spacing:2.640000pt;}
.ws4b{word-spacing:2.816000pt;}
.ws47{word-spacing:2.933333pt;}
.ws6f{word-spacing:2.992000pt;}
.ws35{word-spacing:3.050667pt;}
.ws18{word-spacing:3.285333pt;}
.ws30{word-spacing:3.402667pt;}
.ws37{word-spacing:3.461333pt;}
.wse{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.578667pt;}
.ws91{word-spacing:3.754667pt;}
.ws54{word-spacing:3.872000pt;}
.ws3b{word-spacing:4.048000pt;}
.ws8a{word-spacing:4.165333pt;}
.ws1b{word-spacing:4.224000pt;}
.ws27{word-spacing:4.282667pt;}
.ws48{word-spacing:4.341333pt;}
.ws46{word-spacing:4.400000pt;}
.ws7{word-spacing:4.517333pt;}
.ws2c{word-spacing:4.576000pt;}
.ws29{word-spacing:4.869333pt;}
.wsb3{word-spacing:5.045333pt;}
.ws5c{word-spacing:5.104000pt;}
.ws5a{word-spacing:5.162667pt;}
.ws1e{word-spacing:5.338667pt;}
.ws59{word-spacing:5.456000pt;}
.ws55{word-spacing:5.514667pt;}
.ws72{word-spacing:5.573333pt;}
.ws2f{word-spacing:5.632000pt;}
.ws7f{word-spacing:5.690667pt;}
.ws87{word-spacing:5.866667pt;}
.ws64{word-spacing:5.925333pt;}
.ws66{word-spacing:5.984000pt;}
.ws4a{word-spacing:6.042667pt;}
.wsa5{word-spacing:6.101333pt;}
.ws58{word-spacing:6.160000pt;}
.ws19{word-spacing:6.218667pt;}
.ws38{word-spacing:6.277333pt;}
.ws5{word-spacing:6.688000pt;}
.ws7b{word-spacing:6.746667pt;}
.ws86{word-spacing:6.864000pt;}
.wsa8{word-spacing:7.040000pt;}
.ws80{word-spacing:7.157333pt;}
.ws81{word-spacing:7.274667pt;}
.ws4{word-spacing:7.333333pt;}
.ws9b{word-spacing:7.450667pt;}
.ws6c{word-spacing:7.509333pt;}
.ws60{word-spacing:7.568000pt;}
.ws42{word-spacing:7.626667pt;}
.ws9c{word-spacing:7.685333pt;}
.wsaa{word-spacing:7.802667pt;}
.wsd{word-spacing:7.861333pt;}
.ws9d{word-spacing:7.978667pt;}
.ws36{word-spacing:8.037333pt;}
.ws9{word-spacing:8.096000pt;}
.ws4c{word-spacing:8.154667pt;}
.ws51{word-spacing:8.330667pt;}
.ws6{word-spacing:8.389333pt;}
.ws8{word-spacing:8.506667pt;}
.ws89{word-spacing:8.565333pt;}
.wsf{word-spacing:8.741333pt;}
.ws3e{word-spacing:8.858667pt;}
.ws10{word-spacing:8.917333pt;}
.ws2d{word-spacing:9.034667pt;}
.ws34{word-spacing:9.093333pt;}
.wsa7{word-spacing:9.269333pt;}
.ws6a{word-spacing:9.386667pt;}
.ws5f{word-spacing:9.445333pt;}
.ws3{word-spacing:9.504000pt;}
.ws88{word-spacing:9.562667pt;}
.ws45{word-spacing:9.914667pt;}
.ws4d{word-spacing:10.032000pt;}
.ws69{word-spacing:10.442667pt;}
.ws22{word-spacing:10.501333pt;}
.wsb{word-spacing:10.560000pt;}
.ws16{word-spacing:10.618667pt;}
.ws8e{word-spacing:10.736000pt;}
.ws6d{word-spacing:11.088000pt;}
.ws1a{word-spacing:11.322667pt;}
.ws2a{word-spacing:11.381333pt;}
.ws1f{word-spacing:11.674667pt;}
.ws5d{word-spacing:11.850667pt;}
.ws28{word-spacing:12.026667pt;}
.ws8b{word-spacing:12.085333pt;}
.ws93{word-spacing:12.144000pt;}
.ws1d{word-spacing:12.202667pt;}
.wsaf{word-spacing:12.320000pt;}
.ws43{word-spacing:12.437333pt;}
.ws68{word-spacing:12.730667pt;}
.ws31{word-spacing:13.200000pt;}
.ws65{word-spacing:13.258667pt;}
.ws61{word-spacing:13.317333pt;}
.ws7d{word-spacing:13.728000pt;}
.wsa1{word-spacing:13.845333pt;}
.ws6b{word-spacing:14.197333pt;}
.ws23{word-spacing:14.608000pt;}
.ws53{word-spacing:15.018667pt;}
.ws24{word-spacing:15.312000pt;}
.ws83{word-spacing:15.957333pt;}
.wsa{word-spacing:16.602667pt;}
.ws94{word-spacing:17.248000pt;}
.ws4e{word-spacing:17.482667pt;}
.ws9e{word-spacing:17.600000pt;}
.ws92{word-spacing:17.834667pt;}
.wsc{word-spacing:17.893333pt;}
.ws99{word-spacing:18.538667pt;}
.ws2e{word-spacing:19.184000pt;}
.ws5b{word-spacing:19.712000pt;}
.ws26{word-spacing:20.592000pt;}
.ws15{word-spacing:21.354667pt;}
.ws79{word-spacing:21.765333pt;}
.ws96{word-spacing:22.352000pt;}
.ws98{word-spacing:23.701333pt;}
.ws7e{word-spacing:24.405333pt;}
.ws57{word-spacing:24.816000pt;}
.wsb9{word-spacing:57.845333pt;}
.ws5e{word-spacing:165.938667pt;}
.ws76{word-spacing:440.923733pt;}
.ws75{word-spacing:650.162133pt;}
._2a{margin-left:-11.713600pt;}
._6{margin-left:-7.151467pt;}
._2{margin-left:-5.592533pt;}
._0{margin-left:-3.824000pt;}
._1{margin-left:-2.177600pt;}
._3{margin-left:-0.897600pt;}
._c{width:0.891733pt;}
._8{width:1.830400pt;}
._7{width:2.816000pt;}
._4{width:4.030400pt;}
._d{width:5.268267pt;}
._9{width:6.688000pt;}
._5{width:8.148800pt;}
._13{width:9.040533pt;}
._b{width:10.049600pt;}
._49{width:11.674667pt;}
._4a{width:14.044800pt;}
._a{width:15.335467pt;}
._11{width:18.444800pt;}
._e{width:19.940800pt;}
._14{width:21.084800pt;}
._12{width:22.422400pt;}
._10{width:24.887467pt;}
._f{width:26.099733pt;}
._24{width:104.798933pt;}
._23{width:107.179200pt;}
._20{width:112.351467pt;}
._3a{width:118.302400pt;}
._21{width:120.030933pt;}
._1e{width:122.001600pt;}
._34{width:123.997333pt;}
._1c{width:127.181867pt;}
._1d{width:134.853867pt;}
._41{width:139.338667pt;}
._3f{width:148.648533pt;}
._40{width:150.930133pt;}
._43{width:153.101333pt;}
._3e{width:156.247467pt;}
._47{width:164.999467pt;}
._18{width:182.252267pt;}
._46{width:185.199467pt;}
._42{width:188.802133pt;}
._1b{width:198.418133pt;}
._38{width:209.486400pt;}
._19{width:219.070400pt;}
._16{width:228.092800pt;}
._17{width:241.267200pt;}
._48{width:245.905067pt;}
._39{width:250.041600pt;}
._3d{width:270.786133pt;}
._45{width:283.970667pt;}
._37{width:286.494400pt;}
._3b{width:296.222400pt;}
._36{width:303.853867pt;}
._44{width:325.135467pt;}
._22{width:329.744533pt;}
._1f{width:335.061867pt;}
._3c{width:339.424000pt;}
._2f{width:345.574400pt;}
._32{width:346.686933pt;}
._29{width:352.375467pt;}
._28{width:363.695467pt;}
._1a{width:367.616533pt;}
._15{width:375.687467pt;}
._2e{width:384.966933pt;}
._33{width:408.140267pt;}
._2d{width:413.042667pt;}
._31{width:416.350933pt;}
._27{width:427.330667pt;}
._2c{width:463.044267pt;}
._26{width:468.122667pt;}
._35{width:557.912000pt;}
._25{width:635.518933pt;}
._2b{width:644.967467pt;}
._30{width:790.528533pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:48.403600pt;}
.ye0{bottom:61.290800pt;}
.ydb{bottom:65.070267pt;}
.y148{bottom:74.854267pt;}
.ydf{bottom:77.957467pt;}
.y10c{bottom:78.976000pt;}
.yab{bottom:79.736933pt;}
.y17a{bottom:80.792133pt;}
.y51{bottom:80.970533pt;}
.y83{bottom:81.736933pt;}
.y30{bottom:82.750133pt;}
.y1bb{bottom:85.752800pt;}
.y5{bottom:88.490800pt;}
.y196{bottom:89.894533pt;}
.y1dd{bottom:90.393200pt;}
.y147{bottom:90.854267pt;}
.y10b{bottom:92.309333pt;}
.yde{bottom:94.624133pt;}
.yaa{bottom:96.403600pt;}
.y50{bottom:97.637200pt;}
.y82{bottom:98.403600pt;}
.y2f{bottom:99.416800pt;}
.y179{bottom:101.238400pt;}
.y1ba{bottom:102.419467pt;}
.y195{bottom:106.561200pt;}
.y146{bottom:106.854267pt;}
.y1dc{bottom:107.059867pt;}
.ydd{bottom:111.290800pt;}
.ya9{bottom:113.070267pt;}
.y4f{bottom:114.303867pt;}
.yda{bottom:115.070267pt;}
.y2e{bottom:116.083467pt;}
.y178{bottom:117.904933pt;}
.y81{bottom:118.849867pt;}
.y1b9{bottom:119.086133pt;}
.y10a{bottom:119.309333pt;}
.y145{bottom:122.854267pt;}
.y194{bottom:123.227867pt;}
.y1db{bottom:127.506000pt;}
.y4e{bottom:130.970533pt;}
.yd9{bottom:131.736933pt;}
.y2d{bottom:132.750133pt;}
.ya8{bottom:133.516533pt;}
.y177{bottom:134.571600pt;}
.y109{bottom:135.309333pt;}
.y80{bottom:135.516533pt;}
.y1b8{bottom:139.532267pt;}
.y144{bottom:143.228000pt;}
.y1da{bottom:144.172667pt;}
.y4d{bottom:147.637200pt;}
.yd8{bottom:148.403600pt;}
.y2c{bottom:149.416800pt;}
.ya7{bottom:150.183200pt;}
.y193{bottom:151.233067pt;}
.y176{bottom:151.238267pt;}
.y7f{bottom:152.183200pt;}
.y108{bottom:155.683067pt;}
.y1b7{bottom:156.198933pt;}
.y143{bottom:159.228000pt;}
.y4c{bottom:164.303867pt;}
.y1d9{bottom:164.618933pt;}
.yd7{bottom:165.070267pt;}
.y2b{bottom:166.083467pt;}
.ya6{bottom:166.849867pt;}
.y175{bottom:167.904933pt;}
.y7e{bottom:168.849867pt;}
.y107{bottom:171.683067pt;}
.y1b6{bottom:172.865600pt;}
.y142{bottom:175.228000pt;}
.y4b{bottom:180.970533pt;}
.y1d8{bottom:181.285600pt;}
.y2a{bottom:182.750133pt;}
.ya5{bottom:183.516533pt;}
.y174{bottom:184.571600pt;}
.y7d{bottom:189.296000pt;}
.y1b5{bottom:189.532267pt;}
.y141{bottom:191.228000pt;}
.y106{bottom:192.056800pt;}
.yd6{bottom:192.540933pt;}
.y4a{bottom:197.637200pt;}
.y1d7{bottom:197.952267pt;}
.y29{bottom:199.416800pt;}
.ya4{bottom:200.183200pt;}
.y192{bottom:201.238267pt;}
.y173{bottom:205.017867pt;}
.yd5{bottom:205.874267pt;}
.y7c{bottom:205.962667pt;}
.y1b4{bottom:206.198933pt;}
.y140{bottom:207.228000pt;}
.y105{bottom:208.056800pt;}
.y49{bottom:214.303867pt;}
.ya3{bottom:216.849867pt;}
.y191{bottom:217.904933pt;}
.y1d6{bottom:218.398400pt;}
.yd4{bottom:219.207600pt;}
.y172{bottom:221.684533pt;}
.y7b{bottom:222.629333pt;}
.y1b3{bottom:222.865600pt;}
.y13f{bottom:223.228000pt;}
.y28{bottom:227.422000pt;}
.y104{bottom:228.483600pt;}
.yd3{bottom:232.874267pt;}
.ya2{bottom:233.516533pt;}
.y190{bottom:234.571600pt;}
.y48{bottom:234.750133pt;}
.y1d5{bottom:235.065067pt;}
.y171{bottom:238.351200pt;}
.y7a{bottom:239.296000pt;}
.y1b2{bottom:239.532267pt;}
.y13e{bottom:243.601733pt;}
.yd2{bottom:248.874267pt;}
.y103{bottom:249.190667pt;}
.ya1{bottom:250.183200pt;}
.y18f{bottom:251.238267pt;}
.y47{bottom:251.416800pt;}
.y1d4{bottom:251.731733pt;}
.y170{bottom:255.017867pt;}
.y27{bottom:255.201600pt;}
.y1b1{bottom:256.198933pt;}
.y79{bottom:259.742267pt;}
.y13d{bottom:264.308800pt;}
.ya0{bottom:266.849867pt;}
.y18e{bottom:267.904933pt;}
.y46{bottom:268.083467pt;}
.yd1{bottom:269.248000pt;}
.y16f{bottom:271.684533pt;}
.y26{bottom:271.868267pt;}
.y1d3{bottom:272.178000pt;}
.y1b0{bottom:272.865600pt;}
.y78{bottom:276.408933pt;}
.y102{bottom:279.558533pt;}
.y18d{bottom:284.571600pt;}
.y45{bottom:284.750133pt;}
.yd0{bottom:285.248000pt;}
.y9f{bottom:287.296000pt;}
.y16e{bottom:288.351200pt;}
.y1d2{bottom:288.844667pt;}
.y25{bottom:292.314400pt;}
.y77{bottom:293.075600pt;}
.y1af{bottom:293.311867pt;}
.y13c{bottom:295.621467pt;}
.y101{bottom:296.225200pt;}
.y138{bottom:299.401067pt;}
.y18c{bottom:301.238267pt;}
.ycf{bottom:301.248000pt;}
.y44{bottom:301.416800pt;}
.y9e{bottom:303.962667pt;}
.y16d{bottom:305.017867pt;}
.y1d1{bottom:305.511333pt;}
.y24{bottom:308.981067pt;}
.y76{bottom:309.742267pt;}
.y1ae{bottom:309.978533pt;}
.y13b{bottom:312.288133pt;}
.y100{bottom:312.891867pt;}
.y137{bottom:316.067733pt;}
.y43{bottom:318.083467pt;}
.y9d{bottom:320.629333pt;}
.yce{bottom:321.621733pt;}
.y16c{bottom:321.684533pt;}
.y23{bottom:325.647733pt;}
.y1d0{bottom:325.957467pt;}
.y75{bottom:326.408933pt;}
.y1ad{bottom:326.645200pt;}
.y13a{bottom:328.954800pt;}
.yff{bottom:329.558533pt;}
.y136{bottom:332.734400pt;}
.y42{bottom:334.750133pt;}
.y9c{bottom:337.296000pt;}
.ycd{bottom:337.621733pt;}
.y16b{bottom:338.351200pt;}
.y22{bottom:342.314400pt;}
.y1cf{bottom:342.624133pt;}
.y1ac{bottom:343.311867pt;}
.y139{bottom:345.621467pt;}
.yfe{bottom:346.225200pt;}
.y74{bottom:346.855067pt;}
.y135{bottom:349.401067pt;}
.ycc{bottom:353.621733pt;}
.y16a{bottom:355.017867pt;}
.y9b{bottom:357.742267pt;}
.y21{bottom:358.981067pt;}
.y1ab{bottom:359.978533pt;}
.y41{bottom:362.755333pt;}
.yfd{bottom:362.891867pt;}
.y1ce{bottom:363.070400pt;}
.y73{bottom:363.521733pt;}
.y134{bottom:366.067733pt;}
.y169{bottom:371.684533pt;}
.ycb{bottom:373.995467pt;}
.y9a{bottom:374.408933pt;}
.y20{bottom:375.647733pt;}
.y1aa{bottom:376.645200pt;}
.yfc{bottom:379.558533pt;}
.y1cd{bottom:379.737067pt;}
.y72{bottom:380.188400pt;}
.y133{bottom:382.734400pt;}
.y18b{bottom:388.351200pt;}
.y99{bottom:391.075600pt;}
.y168{bottom:392.130800pt;}
.y1f{bottom:392.314400pt;}
.y1a9{bottom:393.311867pt;}
.yca{bottom:394.702400pt;}
.y1cc{bottom:396.403733pt;}
.y132{bottom:399.401067pt;}
.y18a{bottom:405.017867pt;}
.y98{bottom:407.742267pt;}
.y71{bottom:408.193733pt;}
.y167{bottom:408.797467pt;}
.y1e{bottom:408.981067pt;}
.y1a8{bottom:409.978533pt;}
.y1cb{bottom:416.849867pt;}
.yfb{bottom:417.296933pt;}
.y189{bottom:421.684533pt;}
.yc5{bottom:422.051867pt;}
.y166{bottom:425.464133pt;}
.y1d{bottom:425.647733pt;}
.y1a7{bottom:426.645200pt;}
.y97{bottom:428.188400pt;}
.y131{bottom:428.887467pt;}
.yfa{bottom:430.630267pt;}
.y40{bottom:433.206800pt;}
.y1ca{bottom:433.516533pt;}
.y188{bottom:438.351200pt;}
.yc4{bottom:438.718533pt;}
.y70{bottom:439.532267pt;}
.y165{bottom:442.130800pt;}
.y130{bottom:442.220800pt;}
.y1c{bottom:442.314400pt;}
.y1a6{bottom:443.311867pt;}
.y96{bottom:444.855067pt;}
.y3f{bottom:449.873467pt;}
.y1c9{bottom:450.183200pt;}
.y187{bottom:455.017867pt;}
.yc3{bottom:455.385200pt;}
.y12f{bottom:455.554133pt;}
.y6f{bottom:456.198933pt;}
.yf9{bottom:457.630267pt;}
.y164{bottom:458.797333pt;}
.y1b{bottom:458.981067pt;}
.y1a5{bottom:459.978533pt;}
.y95{bottom:465.301333pt;}
.y12e{bottom:469.220800pt;}
.y3e{bottom:470.319600pt;}
.y1c8{bottom:470.629333pt;}
.y186{bottom:471.684533pt;}
.yc2{bottom:472.051867pt;}
.y6e{bottom:472.865600pt;}
.y163{bottom:475.464000pt;}
.y1a{bottom:475.647733pt;}
.yf8{bottom:478.003867pt;}
.y1a4{bottom:480.424667pt;}
.y94{bottom:481.968000pt;}
.y12d{bottom:485.220800pt;}
.y3d{bottom:486.986267pt;}
.y1c7{bottom:487.296000pt;}
.yc9{bottom:488.718533pt;}
.y6d{bottom:489.532267pt;}
.y185{bottom:492.130667pt;}
.y19{bottom:492.314400pt;}
.yc1{bottom:492.498133pt;}
.yf7{bottom:494.003867pt;}
.y162{bottom:495.910267pt;}
.y1a3{bottom:497.091333pt;}
.y93{bottom:498.634667pt;}
.y12c{bottom:501.220800pt;}
.y3c{bottom:503.652933pt;}
.yc8{bottom:505.385200pt;}
.y6c{bottom:506.198933pt;}
.y1c6{bottom:507.742267pt;}
.y184{bottom:508.797333pt;}
.y18{bottom:508.981067pt;}
.yc0{bottom:509.164800pt;}
.y161{bottom:512.576933pt;}
.y1a2{bottom:513.758000pt;}
.yf6{bottom:514.377600pt;}
.y92{bottom:515.301333pt;}
.y3b{bottom:520.319600pt;}
.y12b{bottom:521.594533pt;}
.yc7{bottom:522.051867pt;}
.y1c5{bottom:524.408933pt;}
.y183{bottom:525.464000pt;}
.y17{bottom:525.647733pt;}
.ybf{bottom:525.831467pt;}
.y6b{bottom:526.645200pt;}
.y160{bottom:529.243600pt;}
.yf5{bottom:530.377600pt;}
.y1a1{bottom:530.424667pt;}
.y91{bottom:531.968000pt;}
.y3a{bottom:536.986267pt;}
.y12a{bottom:537.594533pt;}
.yc6{bottom:538.718533pt;}
.y1c4{bottom:541.075600pt;}
.y182{bottom:542.130667pt;}
.y16{bottom:542.314400pt;}
.ybe{bottom:542.498133pt;}
.y6a{bottom:543.311867pt;}
.y15f{bottom:545.910267pt;}
.yf4{bottom:546.377600pt;}
.y1a0{bottom:547.091333pt;}
.y90{bottom:552.414133pt;}
.y129{bottom:553.594533pt;}
.y39{bottom:553.652933pt;}
.y1c3{bottom:557.742267pt;}
.y181{bottom:558.797333pt;}
.y15{bottom:558.981067pt;}
.ybd{bottom:559.164800pt;}
.y69{bottom:559.978533pt;}
.y15e{bottom:562.576933pt;}
.yf3{bottom:566.751333pt;}
.y19f{bottom:567.537467pt;}
.y8f{bottom:569.080800pt;}
.y38{bottom:570.319600pt;}
.y128{bottom:573.968133pt;}
.y1c2{bottom:574.408933pt;}
.y180{bottom:575.464000pt;}
.y14{bottom:575.647733pt;}
.ybc{bottom:575.831467pt;}
.y68{bottom:576.645200pt;}
.y15d{bottom:579.243600pt;}
.y19e{bottom:584.204133pt;}
.y8e{bottom:585.747467pt;}
.y37{bottom:586.986267pt;}
.yf2{bottom:587.458267pt;}
.y127{bottom:589.968133pt;}
.y17f{bottom:592.130667pt;}
.y13{bottom:592.314400pt;}
.ybb{bottom:592.498133pt;}
.y67{bottom:593.311867pt;}
.y1c1{bottom:594.855067pt;}
.y15c{bottom:599.689733pt;}
.y19d{bottom:600.870800pt;}
.y8d{bottom:602.414133pt;}
.y36{bottom:603.652933pt;}
.y126{bottom:605.968133pt;}
.y12{bottom:608.981067pt;}
.yba{bottom:609.164800pt;}
.y66{bottom:609.978533pt;}
.y1c0{bottom:611.521867pt;}
.y17e{bottom:612.576933pt;}
.y15b{bottom:616.356400pt;}
.y19c{bottom:617.537467pt;}
.y8c{bottom:619.080800pt;}
.y1e9{bottom:619.086133pt;}
.y35{bottom:620.319600pt;}
.y125{bottom:621.968133pt;}
.yf1{bottom:622.550667pt;}
.y11{bottom:625.647733pt;}
.y65{bottom:626.645200pt;}
.y17d{bottom:629.243600pt;}
.y1bf{bottom:631.968000pt;}
.y15a{bottom:633.023067pt;}
.y19b{bottom:634.204133pt;}
.yb9{bottom:635.375600pt;}
.y1e8{bottom:635.752800pt;}
.y34{bottom:636.986267pt;}
.yf0{bottom:639.217333pt;}
.y10{bottom:642.314400pt;}
.y124{bottom:642.341867pt;}
.y17c{bottom:645.910267pt;}
.y8b{bottom:647.086133pt;}
.y64{bottom:647.091333pt;}
.yb8{bottom:648.708933pt;}
.y159{bottom:649.689733pt;}
.y19a{bottom:650.870800pt;}
.y1be{bottom:652.414133pt;}
.y33{bottom:653.652933pt;}
.yef{bottom:655.884000pt;}
.y1e7{bottom:656.198933pt;}
.yf{bottom:658.981067pt;}
.y17b{bottom:662.576933pt;}
.y123{bottom:663.048933pt;}
.y63{bottom:663.758000pt;}
.y158{bottom:666.356400pt;}
.y199{bottom:667.537467pt;}
.y1bd{bottom:669.080800pt;}
.y32{bottom:670.319600pt;}
.yee{bottom:672.550667pt;}
.y1e6{bottom:672.865600pt;}
.ye{bottom:675.647733pt;}
.yb7{bottom:675.708933pt;}
.y62{bottom:680.424667pt;}
.y157{bottom:683.023067pt;}
.y198{bottom:684.204133pt;}
.y31{bottom:686.986267pt;}
.y115{bottom:687.983733pt;}
.yed{bottom:689.217333pt;}
.y1e5{bottom:689.532267pt;}
.yb6{bottom:696.082667pt;}
.y1bc{bottom:697.086133pt;}
.y61{bottom:697.091333pt;}
.y156{bottom:699.689733pt;}
.y197{bottom:700.870800pt;}
.yd{bottom:703.652933pt;}
.y114{bottom:704.650400pt;}
.yec{bottom:705.884000pt;}
.y1e4{bottom:706.198933pt;}
.y122{bottom:706.645200pt;}
.y8a{bottom:713.758000pt;}
.y155{bottom:716.356400pt;}
.yb5{bottom:716.456400pt;}
.y60{bottom:717.537467pt;}
.y113{bottom:721.317067pt;}
.yeb{bottom:722.550667pt;}
.y1e3{bottom:722.865600pt;}
.y121{bottom:723.311867pt;}
.yc{bottom:729.486267pt;}
.y89{bottom:730.424667pt;}
.y154{bottom:733.023067pt;}
.y5f{bottom:734.204133pt;}
.yb4{bottom:736.830133pt;}
.y112{bottom:737.983733pt;}
.y1e2{bottom:739.532267pt;}
.y120{bottom:739.978533pt;}
.yb{bottom:745.486267pt;}
.y88{bottom:747.091333pt;}
.y153{bottom:749.689733pt;}
.y5e{bottom:750.870800pt;}
.yea{bottom:752.792933pt;}
.y111{bottom:754.650400pt;}
.y11f{bottom:756.645200pt;}
.yb3{bottom:757.537067pt;}
.y1e1{bottom:759.978533pt;}
.ya{bottom:761.486267pt;}
.y87{bottom:763.758000pt;}
.ye9{bottom:766.126267pt;}
.y152{bottom:766.356400pt;}
.y5d{bottom:767.537467pt;}
.y110{bottom:771.317067pt;}
.y11e{bottom:773.311867pt;}
.y1e0{bottom:776.645200pt;}
.y9{bottom:777.486267pt;}
.y151{bottom:783.023067pt;}
.y5c{bottom:784.204133pt;}
.y10f{bottom:787.983733pt;}
.y11d{bottom:789.978533pt;}
.ye8{bottom:793.126267pt;}
.yae{bottom:797.091333pt;}
.y5b{bottom:800.870800pt;}
.y10e{bottom:804.650400pt;}
.y11c{bottom:806.645200pt;}
.ye7{bottom:809.126267pt;}
.yb2{bottom:809.973200pt;}
.y8{bottom:813.265733pt;}
.yad{bottom:813.758000pt;}
.y150{bottom:813.914000pt;}
.y5a{bottom:817.537467pt;}
.y10d{bottom:821.317067pt;}
.y11b{bottom:823.311867pt;}
.yb1{bottom:826.639867pt;}
.y14f{bottom:827.247333pt;}
.ye6{bottom:829.500000pt;}
.y1df{bottom:830.424667pt;}
.y86{bottom:834.204133pt;}
.y59{bottom:837.983733pt;}
.y11a{bottom:839.978533pt;}
.yb0{bottom:843.306533pt;}
.y7{bottom:845.265733pt;}
.ye5{bottom:845.500000pt;}
.y1de{bottom:847.091333pt;}
.y14e{bottom:848.914000pt;}
.y85{bottom:850.870800pt;}
.y58{bottom:854.650400pt;}
.y119{bottom:856.645200pt;}
.y14d{bottom:864.914000pt;}
.ye4{bottom:865.873733pt;}
.y84{bottom:867.537467pt;}
.yaf{bottom:871.311867pt;}
.y57{bottom:871.317067pt;}
.y118{bottom:873.311867pt;}
.y6{bottom:874.599067pt;}
.y14c{bottom:880.914000pt;}
.ye3{bottom:881.873733pt;}
.yac{bottom:884.204133pt;}
.y56{bottom:887.983733pt;}
.y117{bottom:889.978533pt;}
.y14b{bottom:896.914000pt;}
.ye2{bottom:897.873733pt;}
.y55{bottom:904.650400pt;}
.y4{bottom:909.621067pt;}
.y14a{bottom:912.914000pt;}
.y116{bottom:917.983733pt;}
.ye1{bottom:918.247333pt;}
.y54{bottom:921.317067pt;}
.y3{bottom:924.287733pt;}
.y149{bottom:933.287733pt;}
.y53{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y1{bottom:985.150267pt;}
.y52{bottom:986.095200pt;}
.hb{height:38.250000pt;}
.hc{height:38.520833pt;}
.h4{height:47.812500pt;}
.h3{height:48.151042pt;}
.ha{height:52.593750pt;}
.h9{height:52.966146pt;}
.h7{height:57.375000pt;}
.h8{height:57.781250pt;}
.h2{height:66.937500pt;}
.h6{height:67.411458pt;}
.h5{height:149.268229pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.xe{left:75.590533pt;}
.x6{left:85.955067pt;}
.x53{left:88.150267pt;}
.x4b{left:89.256933pt;}
.x17{left:91.228400pt;}
.xd{left:94.488133pt;}
.x57{left:97.398267pt;}
.x4a{left:109.637867pt;}
.x62{left:110.885467pt;}
.x70{left:119.026800pt;}
.x46{left:120.301600pt;}
.x41{left:121.408400pt;}
.x16{left:123.902933pt;}
.x15{left:125.009600pt;}
.x3c{left:129.549600pt;}
.x61{left:131.266267pt;}
.x14{left:133.150933pt;}
.x3b{left:141.789200pt;}
.x13{left:145.390533pt;}
.x23{left:154.217867pt;}
.x1e{left:155.324533pt;}
.x2e{left:156.594267pt;}
.x9{left:164.120400pt;}
.x6f{left:169.530667pt;}
.x1a{left:175.705467pt;}
.x2a{left:176.975200pt;}
.x8{left:189.404267pt;}
.xf{left:201.339467pt;}
.xc{left:204.999067pt;}
.x12{left:207.092400pt;}
.x29{left:211.613867pt;}
.x60{left:218.410800pt;}
.x49{left:221.115867pt;}
.x71{left:228.843733pt;}
.x64{left:230.692667pt;}
.x65{left:233.671200pt;}
.x63{left:237.112000pt;}
.x19{left:238.775333pt;}
.x72{left:244.032533pt;}
.x3a{left:255.100267pt;}
.x3d{left:268.778267pt;}
.xa{left:276.779867pt;}
.x6b{left:295.533200pt;}
.x48{left:298.863867pt;}
.x58{left:302.749333pt;}
.x4c{left:307.921867pt;}
.x54{left:311.639333pt;}
.x42{left:314.722267pt;}
.xb{left:320.044933pt;}
.x5e{left:331.077467pt;}
.x1b{left:333.821467pt;}
.x35{left:343.740133pt;}
.x2b{left:351.154667pt;}
.x4d{left:356.105467pt;}
.x7{left:358.016267pt;}
.x24{left:359.020133pt;}
.x1f{left:384.228400pt;}
.x2f{left:392.678000pt;}
.x31{left:397.866800pt;}
.x10{left:423.748000pt;}
.x66{left:429.508667pt;}
.x6c{left:431.728667pt;}
.x3e{left:435.456533pt;}
.x6d{left:436.533467pt;}
.x5f{left:439.900267pt;}
.x73{left:440.989867pt;}
.x11{left:442.645600pt;}
.x43{left:445.065867pt;}
.x39{left:448.197200pt;}
.x18{left:449.087733pt;}
.x3{left:452.233600pt;}
.x28{left:463.004533pt;}
.x3f{left:464.343200pt;}
.x74{left:468.408400pt;}
.x33{left:473.702400pt;}
.x44{left:475.098400pt;}
.x55{left:477.596133pt;}
.x5a{left:479.064267pt;}
.x4f{left:486.479600pt;}
.x4{left:487.995333pt;}
.x59{left:489.070667pt;}
.x4e{left:491.294000pt;}
.x50{left:498.699600pt;}
.x47{left:516.602400pt;}
.x20{left:546.067867pt;}
.x21{left:549.804933pt;}
.x1c{left:551.634267pt;}
.x25{left:553.105733pt;}
.x2c{left:562.137867pt;}
.x37{left:565.920667pt;}
.x30{left:569.191867pt;}
.x26{left:575.716400pt;}
.x6e{left:577.380400pt;}
.x68{left:579.092667pt;}
.x69{left:582.067867pt;}
.x32{left:583.260933pt;}
.x67{left:585.147333pt;}
.x38{left:591.871200pt;}
.x52{left:593.645467pt;}
.x56{left:595.120133pt;}
.x5c{left:596.598000pt;}
.x5b{left:598.466533pt;}
.x51{left:602.164400pt;}
.x36{left:611.877600pt;}
.x22{left:619.463067pt;}
.x2d{left:624.416533pt;}
.x75{left:633.155467pt;}
.x34{left:636.155467pt;}
.x1d{left:638.727467pt;}
.x5d{left:640.709333pt;}
.x6a{left:645.440267pt;}
.x45{left:672.180267pt;}
.x40{left:684.035867pt;}
.x2{left:689.238800pt;}
.x1{left:735.142533pt;}
.x27{left:752.942000pt;}
.x5{left:808.133333pt;}
}




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