
    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_df8b97a3c657c9f0cac93bfe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_a50ec025eb354e1918be6d48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_e5dede0ee6a1f9de035fcead.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035645;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:15.522000px;}
.ls17{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.003000px;}
.ls41{letter-spacing:0.426000px;}
.lsb{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.438000px;}
.ls13{letter-spacing:0.450000px;}
.ls21{letter-spacing:0.456000px;}
.ls2e{letter-spacing:0.480000px;}
.ls54{letter-spacing:0.948000px;}
.ls28{letter-spacing:0.966000px;}
.ls8{letter-spacing:0.984000px;}
.lsd{letter-spacing:1.002000px;}
.ls23{letter-spacing:1.026000px;}
.ls1b{letter-spacing:1.044000px;}
.ls46{letter-spacing:1.062000px;}
.ls31{letter-spacing:1.068000px;}
.ls30{letter-spacing:1.086000px;}
.lsf{letter-spacing:1.536000px;}
.ls0{letter-spacing:1.542000px;}
.ls18{letter-spacing:1.566000px;}
.ls5{letter-spacing:1.596000px;}
.ls47{letter-spacing:1.626000px;}
.ls1c{letter-spacing:1.662000px;}
.ls27{letter-spacing:1.698000px;}
.ls33{letter-spacing:1.734000px;}
.ls49{letter-spacing:2.088000px;}
.ls3d{letter-spacing:2.130000px;}
.ls11{letter-spacing:2.172000px;}
.ls3{letter-spacing:2.214000px;}
.ls38{letter-spacing:2.262000px;}
.ls1e{letter-spacing:2.304000px;}
.ls3a{letter-spacing:2.358000px;}
.ls2f{letter-spacing:2.460000px;}
.ls50{letter-spacing:2.742000px;}
.ls9{letter-spacing:2.796000px;}
.ls12{letter-spacing:2.856000px;}
.ls7{letter-spacing:2.916000px;}
.ls3c{letter-spacing:2.976000px;}
.ls19{letter-spacing:3.318000px;}
.ls3b{letter-spacing:3.384000px;}
.ls36{letter-spacing:3.456000px;}
.ls29{letter-spacing:3.528000px;}
.ls25{letter-spacing:3.600000px;}
.ls45{letter-spacing:3.678000px;}
.ls51{letter-spacing:3.972000px;}
.ls2b{letter-spacing:4.050000px;}
.ls32{letter-spacing:4.128000px;}
.lsa{letter-spacing:4.134000px;}
.ls2a{letter-spacing:4.224000px;}
.ls22{letter-spacing:4.314000px;}
.ls43{letter-spacing:4.410000px;}
.ls4a{letter-spacing:4.512000px;}
.ls53{letter-spacing:4.650000px;}
.ls20{letter-spacing:4.746000px;}
.ls40{letter-spacing:4.848000px;}
.lsc{letter-spacing:4.950000px;}
.ls6{letter-spacing:5.058000px;}
.ls44{letter-spacing:5.178000px;}
.ls34{letter-spacing:5.298000px;}
.ls10{letter-spacing:5.466000px;}
.ls1f{letter-spacing:5.586000px;}
.lse{letter-spacing:5.712000px;}
.ls4b{letter-spacing:5.976000px;}
.ls16{letter-spacing:6.000000px;}
.ls24{letter-spacing:6.222000px;}
.ls1d{letter-spacing:6.360000px;}
.ls2c{letter-spacing:6.504000px;}
.ls39{letter-spacing:6.654000px;}
.ls4f{letter-spacing:6.858000px;}
.ls1a{letter-spacing:6.984000px;}
.ls14{letter-spacing:7.008000px;}
.ls2d{letter-spacing:7.170000px;}
.ls37{letter-spacing:7.338000px;}
.ls48{letter-spacing:7.494000px;}
.ls4e{letter-spacing:7.692000px;}
.ls15{letter-spacing:7.836000px;}
.ls35{letter-spacing:7.890000px;}
.ls3f{letter-spacing:8.016000px;}
.ls42{letter-spacing:8.208000px;}
.ls3e{letter-spacing:8.406000px;}
.ls52{letter-spacing:8.700000px;}
.ls1{letter-spacing:9.582000px;}
.ls26{letter-spacing:9.600000px;}
.ls4d{letter-spacing:9.834000px;}
.ls2{letter-spacing:12.000000px;}
.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;}
}
.ws57{word-spacing:-49.212000px;}
.ws0{word-spacing:-48.762000px;}
.ws48{word-spacing:-29.799000px;}
.ws5{word-spacing:0.000000px;}
.ws22{word-spacing:0.930000px;}
.ws16{word-spacing:1.080000px;}
.ws7{word-spacing:1.260000px;}
.ws2f{word-spacing:1.434000px;}
.wse{word-spacing:1.476000px;}
.ws42{word-spacing:1.758000px;}
.ws49{word-spacing:2.100000px;}
.ws1{word-spacing:2.226000px;}
.ws1c{word-spacing:2.436000px;}
.ws46{word-spacing:2.790000px;}
.ws24{word-spacing:2.844000px;}
.ws28{word-spacing:3.240000px;}
.ws10{word-spacing:3.342000px;}
.ws1d{word-spacing:3.768000px;}
.ws31{word-spacing:3.888000px;}
.wsb{word-spacing:3.984000px;}
.ws3b{word-spacing:4.356000px;}
.ws4a{word-spacing:4.404000px;}
.ws32{word-spacing:4.734000px;}
.ws29{word-spacing:4.830000px;}
.ws1f{word-spacing:5.076000px;}
.ws8{word-spacing:5.190000px;}
.ws39{word-spacing:5.940000px;}
.ws58{word-spacing:6.006000px;}
.ws34{word-spacing:6.024000px;}
.ws19{word-spacing:6.192000px;}
.ws3d{word-spacing:6.354000px;}
.ws6{word-spacing:7.008000px;}
.wsa{word-spacing:7.452000px;}
.ws12{word-spacing:7.512000px;}
.ws4e{word-spacing:7.518000px;}
.ws47{word-spacing:7.602000px;}
.ws30{word-spacing:8.088000px;}
.ws14{word-spacing:8.370000px;}
.ws33{word-spacing:8.406000px;}
.ws15{word-spacing:8.808000px;}
.ws44{word-spacing:8.820000px;}
.ws26{word-spacing:8.934000px;}
.ws45{word-spacing:10.008000px;}
.ws3e{word-spacing:10.170000px;}
.ws1b{word-spacing:10.368000px;}
.ws23{word-spacing:10.386000px;}
.wsc{word-spacing:10.530000px;}
.ws2a{word-spacing:10.578000px;}
.ws4f{word-spacing:11.154000px;}
.ws9{word-spacing:11.808000px;}
.ws4{word-spacing:12.000000px;}
.ws2b{word-spacing:12.318000px;}
.ws37{word-spacing:12.660000px;}
.ws4c{word-spacing:12.672000px;}
.ws53{word-spacing:12.804000px;}
.ws52{word-spacing:13.338000px;}
.wsf{word-spacing:14.028000px;}
.ws3a{word-spacing:14.544000px;}
.wsd{word-spacing:14.766000px;}
.ws3c{word-spacing:15.414000px;}
.ws11{word-spacing:15.702000px;}
.ws41{word-spacing:16.842000px;}
.ws3f{word-spacing:17.130000px;}
.ws2d{word-spacing:17.346000px;}
.ws2c{word-spacing:18.000000px;}
.ws20{word-spacing:18.888000px;}
.ws38{word-spacing:18.954000px;}
.ws1a{word-spacing:19.242000px;}
.ws35{word-spacing:20.010000px;}
.ws43{word-spacing:20.520000px;}
.ws21{word-spacing:20.556000px;}
.ws1e{word-spacing:20.898000px;}
.ws54{word-spacing:22.494000px;}
.ws2e{word-spacing:22.878000px;}
.ws13{word-spacing:23.088000px;}
.ws40{word-spacing:24.816000px;}
.ws25{word-spacing:25.584000px;}
.ws56{word-spacing:25.716000px;}
.ws36{word-spacing:27.174000px;}
.ws17{word-spacing:28.044000px;}
.ws51{word-spacing:28.572000px;}
.ws18{word-spacing:30.468000px;}
.ws55{word-spacing:32.856000px;}
.ws27{word-spacing:35.208000px;}
.ws4b{word-spacing:49.962000px;}
.ws2{word-spacing:63.888000px;}
.ws50{word-spacing:312.445392px;}
.ws4d{word-spacing:489.984240px;}
.ws3{word-spacing:761.058000px;}
._5{margin-left:-761.058000px;}
._3{margin-left:-63.888000px;}
._2b{margin-left:-49.962000px;}
._23{margin-left:-35.208000px;}
._2f{margin-left:-32.856000px;}
._1b{margin-left:-30.468000px;}
._19{margin-left:-28.044000px;}
._21{margin-left:-25.584000px;}
._14{margin-left:-23.088000px;}
._1f{margin-left:-20.898000px;}
._1d{margin-left:-19.242000px;}
._25{margin-left:-18.000000px;}
._28{margin-left:-16.134000px;}
._12{margin-left:-14.766000px;}
._c{margin-left:-11.808000px;}
._10{margin-left:-10.530000px;}
._16{margin-left:-8.370000px;}
._7{margin-left:-7.008000px;}
._a{margin-left:-5.190000px;}
._e{margin-left:-3.984000px;}
._1{margin-left:-2.226000px;}
._8{margin-left:-1.186824px;}
._17{width:1.053000px;}
._0{width:2.065536px;}
._d{width:3.969000px;}
._9{width:5.184000px;}
._6{width:6.966000px;}
._15{width:8.343000px;}
._f{width:10.449000px;}
._b{width:11.745000px;}
._26{width:12.753000px;}
._11{width:14.742000px;}
._29{width:15.915000px;}
._27{width:16.965000px;}
._24{width:17.982000px;}
._1c{width:19.197000px;}
._1e{width:20.898000px;}
._13{width:23.085000px;}
._20{width:25.515000px;}
._18{width:28.026000px;}
._1a{width:30.456000px;}
._2e{width:32.805000px;}
._22{width:35.154000px;}
._2a{width:49.896000px;}
._2{width:63.859488px;}
._2d{width:514.908480px;}
._2c{width:686.207088px;}
._4{width:760.977888px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.388000px;}
.fs2{font-size:49.500000px;}
.fs1{font-size:81.000000px;}
.fs0{font-size:172.128000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:82.315500px;}
.y15a{bottom:86.334000px;}
.yc9{bottom:90.360000px;}
.y139{bottom:92.067000px;}
.y115{bottom:97.110000px;}
.y3f{bottom:99.360000px;}
.ye4{bottom:102.802500px;}
.y18e{bottom:109.959000px;}
.y168{bottom:110.610000px;}
.y1d{bottom:112.690500px;}
.y159{bottom:116.709000px;}
.yc8{bottom:120.735000px;}
.y138{bottom:122.442000px;}
.y18b{bottom:125.146500px;}
.y19a{bottom:126.261000px;}
.y114{bottom:127.485000px;}
.y1f1{bottom:129.735000px;}
.y18d{bottom:140.334000px;}
.y167{bottom:140.985000px;}
.y1c{bottom:143.065500px;}
.y158{bottom:147.084000px;}
.y3e{bottom:149.985000px;}
.yc7{bottom:151.110000px;}
.ye3{bottom:153.427500px;}
.y18a{bottom:155.521500px;}
.y1e9{bottom:157.860000px;}
.y1f0{bottom:160.110000px;}
.y18c{bottom:170.709000px;}
.y137{bottom:173.067000px;}
.y199{bottom:174.735000px;}
.y157{bottom:177.459000px;}
.y113{bottom:178.110000px;}
.y3d{bottom:180.360000px;}
.yc6{bottom:181.485000px;}
.ye2{bottom:183.802500px;}
.y1e8{bottom:188.235000px;}
.y1ef{bottom:190.485000px;}
.y166{bottom:191.610000px;}
.y1b{bottom:193.690500px;}
.yf9{bottom:206.235000px;}
.y152{bottom:207.834000px;}
.y112{bottom:208.485000px;}
.y1c5{bottom:208.671000px;}
.y189{bottom:208.959000px;}
.y3c{bottom:210.735000px;}
.yc5{bottom:211.860000px;}
.y1c8{bottom:212.551500px;}
.ye1{bottom:214.177500px;}
.y1e7{bottom:218.610000px;}
.y1ee{bottom:220.860000px;}
.y136{bottom:223.692000px;}
.y1a{bottom:224.065500px;}
.y198{bottom:225.360000px;}
.y1c4{bottom:234.070500px;}
.yf8{bottom:236.610000px;}
.y156{bottom:238.209000px;}
.y111{bottom:238.860000px;}
.y188{bottom:239.334000px;}
.y3b{bottom:241.110000px;}
.yc4{bottom:242.235000px;}
.ye0{bottom:244.552500px;}
.y1e6{bottom:248.985000px;}
.y1ed{bottom:251.235000px;}
.y1c7{bottom:252.295500px;}
.y19{bottom:254.440500px;}
.y1c3{bottom:259.468500px;}
.y17d{bottom:266.985000px;}
.y155{bottom:268.584000px;}
.y110{bottom:269.235000px;}
.yf5{bottom:269.709000px;}
.y3a{bottom:271.485000px;}
.y1bf{bottom:272.167500px;}
.yc3{bottom:272.610000px;}
.y135{bottom:274.317000px;}
.ydf{bottom:274.927500px;}
.y197{bottom:275.985000px;}
.y1e5{bottom:279.360000px;}
.y1ec{bottom:281.610000px;}
.y12e{bottom:282.084000px;}
.y18{bottom:284.815500px;}
.y1c2{bottom:284.868000px;}
.y1c6{bottom:292.041000px;}
.y154{bottom:298.959000px;}
.y10f{bottom:299.610000px;}
.yf4{bottom:300.084000px;}
.y39{bottom:301.860000px;}
.yc2{bottom:302.985000px;}
.y7b{bottom:304.285500px;}
.y134{bottom:304.692000px;}
.yde{bottom:305.302500px;}
.y196{bottom:306.360000px;}
.y1e4{bottom:309.735000px;}
.y1c1{bottom:310.266000px;}
.y1f7{bottom:311.985000px;}
.y12d{bottom:312.459000px;}
.y17c{bottom:317.610000px;}
.y153{bottom:329.334000px;}
.y10e{bottom:329.985000px;}
.yf7{bottom:330.459000px;}
.y1c0{bottom:331.785000px;}
.y38{bottom:332.235000px;}
.y7a{bottom:334.660500px;}
.y17{bottom:335.440500px;}
.ydd{bottom:335.677500px;}
.y1e3{bottom:340.110000px;}
.y1f6{bottom:342.360000px;}
.yb1{bottom:342.834000px;}
.y187{bottom:345.646500px;}
.y81{bottom:351.210000px;}
.yc1{bottom:353.610000px;}
.y17b{bottom:355.209000px;}
.y10d{bottom:360.360000px;}
.yf6{bottom:360.834000px;}
.y37{bottom:362.610000px;}
.y79{bottom:365.035500px;}
.y16{bottom:365.815500px;}
.ydc{bottom:366.052500px;}
.y151{bottom:367.584000px;}
.y1be{bottom:367.648500px;}
.y179{bottom:370.396500px;}
.yb0{bottom:373.209000px;}
.y80{bottom:381.585000px;}
.y14f{bottom:382.771500px;}
.yc0{bottom:383.985000px;}
.y17a{bottom:385.584000px;}
.ya3{bottom:387.034500px;}
.y10c{bottom:390.735000px;}
.y128{bottom:391.209000px;}
.y36{bottom:392.985000px;}
.y1bd{bottom:393.046500px;}
.y78{bottom:395.410500px;}
.y15{bottom:396.190500px;}
.ydb{bottom:396.427500px;}
.y150{bottom:397.959000px;}
.yaf{bottom:403.584000px;}
.y1e1{bottom:406.261500px;}
.y7f{bottom:411.960000px;}
.yf3{bottom:413.235000px;}
.ybf{bottom:414.360000px;}
.ya2{bottom:417.409500px;}
.y1bc{bottom:418.446000px;}
.y10b{bottom:421.110000px;}
.y127{bottom:421.584000px;}
.y35{bottom:423.360000px;}
.y178{bottom:423.834000px;}
.y77{bottom:425.785500px;}
.y14{bottom:426.565500px;}
.yae{bottom:433.959000px;}
.y14e{bottom:436.209000px;}
.y1e2{bottom:441.360000px;}
.y7e{bottom:442.335000px;}
.yf2{bottom:443.610000px;}
.y1bb{bottom:443.844000px;}
.ybe{bottom:444.735000px;}
.yda{bottom:447.052500px;}
.ya1{bottom:447.784500px;}
.y12c{bottom:449.146500px;}
.y126{bottom:451.959000px;}
.y34{bottom:453.735000px;}
.y177{bottom:454.209000px;}
.y76{bottom:456.160500px;}
.y1b6{bottom:456.543000px;}
.y1e0{bottom:456.886500px;}
.y13{bottom:456.940500px;}
.yad{bottom:464.334000px;}
.y14d{bottom:466.584000px;}
.y1ba{bottom:469.243500px;}
.y10a{bottom:471.735000px;}
.y7d{bottom:472.710000px;}
.ybd{bottom:475.110000px;}
.yd9{bottom:477.427500px;}
.ya0{bottom:478.159500px;}
.y14a{bottom:481.771500px;}
.y125{bottom:482.334000px;}
.y33{bottom:484.110000px;}
.y176{bottom:484.584000px;}
.y75{bottom:486.535500px;}
.y1df{bottom:487.261500px;}
.y12{bottom:487.315500px;}
.yf1{bottom:494.235000px;}
.y1b9{bottom:494.641500px;}
.yac{bottom:494.709000px;}
.y14c{bottom:496.959000px;}
.y7c{bottom:503.085000px;}
.ybc{bottom:505.485000px;}
.yd8{bottom:507.802500px;}
.y9f{bottom:508.534500px;}
.y109{bottom:509.334000px;}
.y124{bottom:512.709000px;}
.y32{bottom:514.485000px;}
.y175{bottom:514.959000px;}
.y74{bottom:516.910500px;}
.y1de{bottom:517.636500px;}
.y11{bottom:517.690500px;}
.y1b8{bottom:520.039500px;}
.yf0{bottom:524.610000px;}
.yab{bottom:525.084000px;}
.y14b{bottom:527.334000px;}
.y186{bottom:529.021500px;}
.y170{bottom:530.146500px;}
.ybb{bottom:535.860000px;}
.yd7{bottom:538.177500px;}
.y9e{bottom:538.909500px;}
.y108{bottom:539.709000px;}
.y123{bottom:543.084000px;}
.y184{bottom:544.209000px;}
.y31{bottom:544.860000px;}
.y174{bottom:545.334000px;}
.y1b7{bottom:545.439000px;}
.y73{bottom:547.285500px;}
.y1dd{bottom:548.011500px;}
.y10{bottom:548.065500px;}
.y105{bottom:554.896500px;}
.yef{bottom:554.985000px;}
.yaa{bottom:555.459000px;}
.y11c{bottom:558.271500px;}
.y185{bottom:559.396500px;}
.y1f5{bottom:565.110000px;}
.y149{bottom:565.584000px;}
.yd6{bottom:568.552500px;}
.y9d{bottom:569.284500px;}
.y55{bottom:569.371500px;}
.y107{bottom:570.084000px;}
.y4e{bottom:570.735000px;}
.y122{bottom:573.459000px;}
.y30{bottom:575.235000px;}
.y173{bottom:575.709000px;}
.y1b5{bottom:577.422000px;}
.y1dc{bottom:578.386500px;}
.yf{bottom:578.440500px;}
.yee{bottom:585.360000px;}
.y69{bottom:585.535500px;}
.ya9{bottom:585.834000px;}
.yba{bottom:586.485000px;}
.y1f4{bottom:595.485000px;}
.y148{bottom:595.959000px;}
.yd5{bottom:598.927500px;}
.y9c{bottom:599.659500px;}
.y54{bottom:599.746500px;}
.y106{bottom:600.459000px;}
.y4d{bottom:601.110000px;}
.y1b4{bottom:602.821500px;}
.y121{bottom:603.834000px;}
.y2f{bottom:605.610000px;}
.y172{bottom:606.084000px;}
.y1db{bottom:608.761500px;}
.yed{bottom:615.735000px;}
.y68{bottom:615.910500px;}
.ya8{bottom:616.209000px;}
.yb9{bottom:616.860000px;}
.y183{bottom:620.235000px;}
.y195{bottom:625.860000px;}
.y147{bottom:626.334000px;}
.y1b1{bottom:628.219500px;}
.ye{bottom:629.065500px;}
.yd4{bottom:629.302500px;}
.y9b{bottom:630.034500px;}
.y4c{bottom:631.485000px;}
.y53{bottom:632.847000px;}
.y120{bottom:634.209000px;}
.y2e{bottom:635.985000px;}
.y171{bottom:636.459000px;}
.y1da{bottom:639.136500px;}
.yec{bottom:646.110000px;}
.ya7{bottom:646.584000px;}
.y67{bottom:649.009500px;}
.yb8{bottom:651.735000px;}
.y1b3{bottom:653.619000px;}
.y12b{bottom:654.459000px;}
.y194{bottom:656.235000px;}
.y143{bottom:656.709000px;}
.yd{bottom:659.440500px;}
.yd3{bottom:659.677500px;}
.y9a{bottom:660.409500px;}
.y4b{bottom:661.860000px;}
.y52{bottom:663.222000px;}
.y11f{bottom:664.584000px;}
.y2d{bottom:666.360000px;}
.y1d9{bottom:669.511500px;}
.y182{bottom:670.860000px;}
.y16f{bottom:674.709000px;}
.yeb{bottom:676.485000px;}
.ya6{bottom:676.959000px;}
.y1b2{bottom:679.017000px;}
.y66{bottom:679.384500px;}
.y165{bottom:679.860000px;}
.yb7{bottom:682.110000px;}
.y133{bottom:682.939500px;}
.y12a{bottom:684.834000px;}
.y193{bottom:686.610000px;}
.y146{bottom:687.084000px;}
.yc{bottom:689.815500px;}
.y99{bottom:690.784500px;}
.y4a{bottom:692.235000px;}
.y51{bottom:693.597000px;}
.y11e{bottom:694.959000px;}
.y1eb{bottom:696.735000px;}
.y104{bottom:699.459000px;}
.y132{bottom:701.862000px;}
.y16e{bottom:705.084000px;}
.yea{bottom:706.860000px;}
.ya5{bottom:707.334000px;}
.y65{bottom:709.759500px;}
.y164{bottom:710.235000px;}
.yd2{bottom:710.302500px;}
.y1b0{bottom:711.000000px;}
.y100{bottom:714.646500px;}
.yb6{bottom:715.209000px;}
.y2c{bottom:716.985000px;}
.y145{bottom:717.459000px;}
.y1d8{bottom:720.136500px;}
.yb{bottom:720.190500px;}
.y181{bottom:721.485000px;}
.y49{bottom:722.610000px;}
.y50{bottom:723.972000px;}
.y11d{bottom:725.334000px;}
.y1ea{bottom:727.110000px;}
.y103{bottom:729.834000px;}
.y16d{bottom:735.459000px;}
.y1af{bottom:736.399500px;}
.ya4{bottom:737.709000px;}
.y64{bottom:740.134500px;}
.y163{bottom:740.610000px;}
.yd1{bottom:740.677500px;}
.yb5{bottom:745.584000px;}
.y192{bottom:747.360000px;}
.y144{bottom:747.834000px;}
.ya{bottom:750.565500px;}
.y169{bottom:750.646500px;}
.y180{bottom:751.860000px;}
.y48{bottom:752.985000px;}
.y4f{bottom:754.347000px;}
.y1d7{bottom:755.212500px;}
.ye9{bottom:757.485000px;}
.y72{bottom:758.047500px;}
.yb4{bottom:759.409500px;}
.y102{bottom:760.209000px;}
.y1ae{bottom:761.797500px;}
.y16c{bottom:765.834000px;}
.y2b{bottom:767.610000px;}
.y130{bottom:768.084000px;}
.y63{bottom:770.509500px;}
.y162{bottom:770.985000px;}
.yd0{bottom:771.052500px;}
.y19b{bottom:771.204000px;}
.y1aa{bottom:774.496500px;}
.y98{bottom:775.959000px;}
.y11b{bottom:777.735000px;}
.y1d6{bottom:780.612000px;}
.y9{bottom:780.940500px;}
.y142{bottom:786.084000px;}
.y1ad{bottom:787.197000px;}
.ye8{bottom:787.860000px;}
.y71{bottom:788.422500px;}
.yb3{bottom:789.784500px;}
.y101{bottom:790.584000px;}
.y1d3{bottom:793.311000px;}
.y16b{bottom:796.209000px;}
.y2a{bottom:797.985000px;}
.y131{bottom:798.459000px;}
.y62{bottom:800.884500px;}
.y161{bottom:801.360000px;}
.ycf{bottom:801.427500px;}
.y17f{bottom:802.485000px;}
.y1d5{bottom:806.010000px;}
.y97{bottom:806.334000px;}
.y47{bottom:808.110000px;}
.y8{bottom:811.315500px;}
.y1ac{bottom:812.595000px;}
.y141{bottom:816.459000px;}
.ye7{bottom:818.235000px;}
.y70{bottom:818.797500px;}
.yb2{bottom:820.159500px;}
.yff{bottom:826.110000px;}
.y16a{bottom:826.584000px;}
.y29{bottom:828.360000px;}
.y61{bottom:831.259500px;}
.y1d4{bottom:831.409500px;}
.y160{bottom:831.735000px;}
.yce{bottom:831.802500px;}
.y17e{bottom:832.860000px;}
.y96{bottom:836.709000px;}
.y1ab{bottom:837.994500px;}
.y46{bottom:838.485000px;}
.y7{bottom:841.690500px;}
.y140{bottom:846.834000px;}
.ye6{bottom:848.610000px;}
.y6f{bottom:849.172500px;}
.y8a{bottom:850.534500px;}
.yfe{bottom:856.485000px;}
.y28{bottom:858.735000px;}
.y60{bottom:861.634500px;}
.y15f{bottom:862.110000px;}
.ycd{bottom:862.177500px;}
.y1d2{bottom:863.392500px;}
.y95{bottom:867.084000px;}
.y45{bottom:868.860000px;}
.y1a9{bottom:869.977500px;}
.y6{bottom:872.065500px;}
.yfb{bottom:874.396500px;}
.y13f{bottom:877.209000px;}
.y1fb{bottom:877.860000px;}
.ye5{bottom:878.985000px;}
.y6e{bottom:879.547500px;}
.y89{bottom:880.909500px;}
.y1d1{bottom:888.790500px;}
.y11a{bottom:889.110000px;}
.yfd{bottom:889.584000px;}
.y5f{bottom:892.009500px;}
.y13a{bottom:892.396500px;}
.ycc{bottom:892.552500px;}
.y1a8{bottom:895.375500px;}
.y94{bottom:897.459000px;}
.y44{bottom:899.235000px;}
.y13e{bottom:907.584000px;}
.y27{bottom:909.360000px;}
.y6d{bottom:909.922500px;}
.y88{bottom:911.284500px;}
.y129{bottom:912.646500px;}
.y15e{bottom:912.735000px;}
.y1d0{bottom:914.190000px;}
.y119{bottom:919.485000px;}
.yfc{bottom:919.959000px;}
.y1a7{bottom:920.775000px;}
.y5e{bottom:922.384500px;}
.y5{bottom:922.690500px;}
.ycb{bottom:922.927500px;}
.y93{bottom:927.834000px;}
.y1fa{bottom:928.485000px;}
.y43{bottom:929.610000px;}
.y13d{bottom:937.959000px;}
.y1cf{bottom:939.588000px;}
.y26{bottom:939.735000px;}
.y6c{bottom:940.297500px;}
.y87{bottom:941.659500px;}
.y1a6{bottom:946.173000px;}
.y118{bottom:949.860000px;}
.y15d{bottom:950.334000px;}
.y1ca{bottom:952.287000px;}
.y5d{bottom:955.485000px;}
.y92{bottom:958.209000px;}
.y1f9{bottom:958.860000px;}
.y42{bottom:959.985000px;}
.y1ce{bottom:964.987500px;}
.y13c{bottom:968.334000px;}
.y25{bottom:970.110000px;}
.y6b{bottom:970.672500px;}
.y1a5{bottom:971.572500px;}
.y86{bottom:972.034500px;}
.yca{bottom:973.552500px;}
.y4{bottom:980.062500px;}
.y117{bottom:980.235000px;}
.y15b{bottom:980.709000px;}
.y5c{bottom:985.860000px;}
.y91{bottom:988.584000px;}
.y1f8{bottom:989.235000px;}
.y41{bottom:990.360000px;}
.y1cd{bottom:990.385500px;}
.y1a4{bottom:996.970500px;}
.y13b{bottom:998.709000px;}
.y24{bottom:1000.485000px;}
.y6a{bottom:1001.047500px;}
.y85{bottom:1002.409500px;}
.y12f{bottom:1003.771500px;}
.y1f3{bottom:1010.610000px;}
.y15c{bottom:1011.084000px;}
.y1cc{bottom:1015.785000px;}
.y5b{bottom:1016.235000px;}
.y90{bottom:1018.959000px;}
.y1c9{bottom:1019.077500px;}
.y1a3{bottom:1020.091500px;}
.y40{bottom:1020.735000px;}
.y19c{bottom:1022.368500px;}
.y116{bottom:1030.860000px;}
.y84{bottom:1032.784500px;}
.y3{bottom:1037.163000px;}
.y1f2{bottom:1040.985000px;}
.y1cb{bottom:1041.183000px;}
.y5a{bottom:1046.610000px;}
.y1a2{bottom:1047.768000px;}
.y8f{bottom:1049.334000px;}
.y23{bottom:1051.110000px;}
.y191{bottom:1061.235000px;}
.y83{bottom:1063.159500px;}
.yfa{bottom:1064.521500px;}
.y1a1{bottom:1073.166000px;}
.y59{bottom:1076.985000px;}
.y8e{bottom:1079.709000px;}
.y22{bottom:1081.485000px;}
.y190{bottom:1091.610000px;}
.y82{bottom:1093.534500px;}
.y2{bottom:1094.263500px;}
.y1a0{bottom:1098.565500px;}
.y58{bottom:1107.360000px;}
.y8d{bottom:1110.084000px;}
.y21{bottom:1111.860000px;}
.y18f{bottom:1121.985000px;}
.y19f{bottom:1123.963500px;}
.y57{bottom:1137.735000px;}
.y8c{bottom:1140.459000px;}
.y20{bottom:1142.235000px;}
.y19e{bottom:1149.363000px;}
.y1{bottom:1151.364000px;}
.y56{bottom:1168.110000px;}
.y8b{bottom:1170.834000px;}
.y1f{bottom:1172.610000px;}
.y19d{bottom:1174.761000px;}
.h8{height:33.102316px;}
.h7{height:38.376861px;}
.h6{height:39.590332px;}
.h5{height:45.898682px;}
.h9{height:48.624316px;}
.h4{height:64.784180px;}
.h3{height:75.106934px;}
.h2{height:159.605016px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.x2b{left:66.522000px;}
.x4d{left:70.248000px;}
.x4f{left:73.972500px;}
.x5b{left:81.421500px;}
.x3b{left:107.496000px;}
.x2d{left:115.338000px;}
.x11{left:118.102500px;}
.x15{left:121.827000px;}
.x6{left:125.553000px;}
.x5{left:129.277500px;}
.x12{left:133.002000px;}
.x48{left:135.273000px;}
.x10{left:136.726500px;}
.x46{left:138.999000px;}
.x4{left:140.452500px;}
.x54{left:142.936500px;}
.x22{left:144.177000px;}
.x49{left:146.448000px;}
.xf{left:148.240500px;}
.x3c{left:150.172500px;}
.x2{left:151.965000px;}
.x4b{left:153.898500px;}
.x3{left:155.352000px;}
.x6b{left:156.999000px;}
.x13{left:159.076500px;}
.x1d{left:162.801000px;}
.x67{left:164.448000px;}
.x20{left:166.864500px;}
.x65{left:168.172500px;}
.x21{left:170.251500px;}
.x34{left:174.936000px;}
.x14{left:177.700500px;}
.x25{left:185.151000px;}
.x80{left:187.702500px;}
.x1e{left:188.875500px;}
.x70{left:190.816500px;}
.x27{left:200.050500px;}
.x2e{left:208.461000px;}
.x5a{left:226.692000px;}
.x16{left:237.298500px;}
.x6f{left:241.591500px;}
.x7{left:244.749000px;}
.x5e{left:246.681000px;}
.x3d{left:249.280500px;}
.x60{left:250.405500px;}
.x44{left:253.006500px;}
.x5f{left:254.131500px;}
.x3e{left:256.731000px;}
.x43{left:260.455500px;}
.x62{left:261.580500px;}
.x42{left:264.180000px;}
.x41{left:267.906000px;}
.x5d{left:269.031000px;}
.x17{left:272.176500px;}
.x40{left:275.355000px;}
.x61{left:276.480000px;}
.x47{left:279.079500px;}
.x53{left:283.017000px;}
.x3f{left:286.530000px;}
.x51{left:290.467500px;}
.x52{left:294.192000px;}
.x69{left:297.079500px;}
.x68{left:300.805500px;}
.x66{left:304.530000px;}
.x50{left:309.091500px;}
.x6c{left:311.980500px;}
.x58{left:323.991000px;}
.x6e{left:327.264000px;}
.x2c{left:330.988500px;}
.x7e{left:338.226000px;}
.x7c{left:344.454000px;}
.x85{left:349.612500px;}
.x3a{left:352.267500px;}
.x37{left:355.992000px;}
.x36{left:359.716500px;}
.x31{left:363.441000px;}
.x39{left:367.167000px;}
.x7b{left:369.372000px;}
.x59{left:372.414000px;}
.x2f{left:374.616000px;}
.x63{left:377.052000px;}
.x30{left:378.340500px;}
.x57{left:379.864500px;}
.x71{left:381.829500px;}
.x5c{left:386.862000px;}
.x4a{left:390.826500px;}
.x35{left:393.240000px;}
.x4e{left:401.761500px;}
.x56{left:405.939000px;}
.x38{left:415.590000px;}
.x64{left:416.661000px;}
.x55{left:432.013500px;}
.x45{left:435.525000px;}
.x6d{left:449.800500px;}
.x9{left:455.602500px;}
.x19{left:459.328500px;}
.x1a{left:463.053000px;}
.xb{left:466.777500px;}
.x6a{left:468.424500px;}
.x18{left:470.502000px;}
.x4c{left:472.773000px;}
.xa{left:474.226500px;}
.x8{left:477.952500px;}
.xc{left:481.677000px;}
.x1b{left:485.401500px;}
.x23{left:489.126000px;}
.x29{left:492.852000px;}
.x28{left:496.576500px;}
.xd{left:500.301000px;}
.x78{left:503.544000px;}
.x7a{left:506.659500px;}
.x1c{left:507.751500px;}
.x73{left:509.773500px;}
.x72{left:512.887500px;}
.x74{left:516.003000px;}
.x81{left:519.117000px;}
.x75{left:522.232500px;}
.x79{left:525.346500px;}
.x2a{left:526.375500px;}
.x83{left:531.576000px;}
.x7f{left:534.690000px;}
.x24{left:537.550500px;}
.x76{left:544.035000px;}
.x32{left:549.685500px;}
.x33{left:558.489000px;}
.x84{left:559.608000px;}
.x7d{left:572.065500px;}
.x1f{left:585.973500px;}
.x82{left:587.640000px;}
.x26{left:597.148500px;}
.x77{left:600.097500px;}
.xe{left:609.678000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.797333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.002667pt;}
.ls41{letter-spacing:0.378667pt;}
.lsb{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.389333pt;}
.ls13{letter-spacing:0.400000pt;}
.ls21{letter-spacing:0.405333pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls54{letter-spacing:0.842667pt;}
.ls28{letter-spacing:0.858667pt;}
.ls8{letter-spacing:0.874667pt;}
.lsd{letter-spacing:0.890667pt;}
.ls23{letter-spacing:0.912000pt;}
.ls1b{letter-spacing:0.928000pt;}
.ls46{letter-spacing:0.944000pt;}
.ls31{letter-spacing:0.949333pt;}
.ls30{letter-spacing:0.965333pt;}
.lsf{letter-spacing:1.365333pt;}
.ls0{letter-spacing:1.370667pt;}
.ls18{letter-spacing:1.392000pt;}
.ls5{letter-spacing:1.418667pt;}
.ls47{letter-spacing:1.445333pt;}
.ls1c{letter-spacing:1.477333pt;}
.ls27{letter-spacing:1.509333pt;}
.ls33{letter-spacing:1.541333pt;}
.ls49{letter-spacing:1.856000pt;}
.ls3d{letter-spacing:1.893333pt;}
.ls11{letter-spacing:1.930667pt;}
.ls3{letter-spacing:1.968000pt;}
.ls38{letter-spacing:2.010667pt;}
.ls1e{letter-spacing:2.048000pt;}
.ls3a{letter-spacing:2.096000pt;}
.ls2f{letter-spacing:2.186667pt;}
.ls50{letter-spacing:2.437333pt;}
.ls9{letter-spacing:2.485333pt;}
.ls12{letter-spacing:2.538667pt;}
.ls7{letter-spacing:2.592000pt;}
.ls3c{letter-spacing:2.645333pt;}
.ls19{letter-spacing:2.949333pt;}
.ls3b{letter-spacing:3.008000pt;}
.ls36{letter-spacing:3.072000pt;}
.ls29{letter-spacing:3.136000pt;}
.ls25{letter-spacing:3.200000pt;}
.ls45{letter-spacing:3.269333pt;}
.ls51{letter-spacing:3.530667pt;}
.ls2b{letter-spacing:3.600000pt;}
.ls32{letter-spacing:3.669333pt;}
.lsa{letter-spacing:3.674667pt;}
.ls2a{letter-spacing:3.754667pt;}
.ls22{letter-spacing:3.834667pt;}
.ls43{letter-spacing:3.920000pt;}
.ls4a{letter-spacing:4.010667pt;}
.ls53{letter-spacing:4.133333pt;}
.ls20{letter-spacing:4.218667pt;}
.ls40{letter-spacing:4.309333pt;}
.lsc{letter-spacing:4.400000pt;}
.ls6{letter-spacing:4.496000pt;}
.ls44{letter-spacing:4.602667pt;}
.ls34{letter-spacing:4.709333pt;}
.ls10{letter-spacing:4.858667pt;}
.ls1f{letter-spacing:4.965333pt;}
.lse{letter-spacing:5.077333pt;}
.ls4b{letter-spacing:5.312000pt;}
.ls16{letter-spacing:5.333333pt;}
.ls24{letter-spacing:5.530667pt;}
.ls1d{letter-spacing:5.653333pt;}
.ls2c{letter-spacing:5.781333pt;}
.ls39{letter-spacing:5.914667pt;}
.ls4f{letter-spacing:6.096000pt;}
.ls1a{letter-spacing:6.208000pt;}
.ls14{letter-spacing:6.229333pt;}
.ls2d{letter-spacing:6.373333pt;}
.ls37{letter-spacing:6.522667pt;}
.ls48{letter-spacing:6.661333pt;}
.ls4e{letter-spacing:6.837333pt;}
.ls15{letter-spacing:6.965333pt;}
.ls35{letter-spacing:7.013333pt;}
.ls3f{letter-spacing:7.125333pt;}
.ls42{letter-spacing:7.296000pt;}
.ls3e{letter-spacing:7.472000pt;}
.ls52{letter-spacing:7.733333pt;}
.ls1{letter-spacing:8.517333pt;}
.ls26{letter-spacing:8.533333pt;}
.ls4d{letter-spacing:8.741333pt;}
.ls2{letter-spacing:10.666667pt;}
.ws57{word-spacing:-43.744000pt;}
.ws0{word-spacing:-43.344000pt;}
.ws48{word-spacing:-26.488000pt;}
.ws5{word-spacing:0.000000pt;}
.ws22{word-spacing:0.826667pt;}
.ws16{word-spacing:0.960000pt;}
.ws7{word-spacing:1.120000pt;}
.ws2f{word-spacing:1.274667pt;}
.wse{word-spacing:1.312000pt;}
.ws42{word-spacing:1.562667pt;}
.ws49{word-spacing:1.866667pt;}
.ws1{word-spacing:1.978667pt;}
.ws1c{word-spacing:2.165333pt;}
.ws46{word-spacing:2.480000pt;}
.ws24{word-spacing:2.528000pt;}
.ws28{word-spacing:2.880000pt;}
.ws10{word-spacing:2.970667pt;}
.ws1d{word-spacing:3.349333pt;}
.ws31{word-spacing:3.456000pt;}
.wsb{word-spacing:3.541333pt;}
.ws3b{word-spacing:3.872000pt;}
.ws4a{word-spacing:3.914667pt;}
.ws32{word-spacing:4.208000pt;}
.ws29{word-spacing:4.293333pt;}
.ws1f{word-spacing:4.512000pt;}
.ws8{word-spacing:4.613333pt;}
.ws39{word-spacing:5.280000pt;}
.ws58{word-spacing:5.338667pt;}
.ws34{word-spacing:5.354667pt;}
.ws19{word-spacing:5.504000pt;}
.ws3d{word-spacing:5.648000pt;}
.ws6{word-spacing:6.229333pt;}
.wsa{word-spacing:6.624000pt;}
.ws12{word-spacing:6.677333pt;}
.ws4e{word-spacing:6.682667pt;}
.ws47{word-spacing:6.757333pt;}
.ws30{word-spacing:7.189333pt;}
.ws14{word-spacing:7.440000pt;}
.ws33{word-spacing:7.472000pt;}
.ws15{word-spacing:7.829333pt;}
.ws44{word-spacing:7.840000pt;}
.ws26{word-spacing:7.941333pt;}
.ws45{word-spacing:8.896000pt;}
.ws3e{word-spacing:9.040000pt;}
.ws1b{word-spacing:9.216000pt;}
.ws23{word-spacing:9.232000pt;}
.wsc{word-spacing:9.360000pt;}
.ws2a{word-spacing:9.402667pt;}
.ws4f{word-spacing:9.914667pt;}
.ws9{word-spacing:10.496000pt;}
.ws4{word-spacing:10.666667pt;}
.ws2b{word-spacing:10.949333pt;}
.ws37{word-spacing:11.253333pt;}
.ws4c{word-spacing:11.264000pt;}
.ws53{word-spacing:11.381333pt;}
.ws52{word-spacing:11.856000pt;}
.wsf{word-spacing:12.469333pt;}
.ws3a{word-spacing:12.928000pt;}
.wsd{word-spacing:13.125333pt;}
.ws3c{word-spacing:13.701333pt;}
.ws11{word-spacing:13.957333pt;}
.ws41{word-spacing:14.970667pt;}
.ws3f{word-spacing:15.226667pt;}
.ws2d{word-spacing:15.418667pt;}
.ws2c{word-spacing:16.000000pt;}
.ws20{word-spacing:16.789333pt;}
.ws38{word-spacing:16.848000pt;}
.ws1a{word-spacing:17.104000pt;}
.ws35{word-spacing:17.786667pt;}
.ws43{word-spacing:18.240000pt;}
.ws21{word-spacing:18.272000pt;}
.ws1e{word-spacing:18.576000pt;}
.ws54{word-spacing:19.994667pt;}
.ws2e{word-spacing:20.336000pt;}
.ws13{word-spacing:20.522667pt;}
.ws40{word-spacing:22.058667pt;}
.ws25{word-spacing:22.741333pt;}
.ws56{word-spacing:22.858667pt;}
.ws36{word-spacing:24.154667pt;}
.ws17{word-spacing:24.928000pt;}
.ws51{word-spacing:25.397333pt;}
.ws18{word-spacing:27.082667pt;}
.ws55{word-spacing:29.205333pt;}
.ws27{word-spacing:31.296000pt;}
.ws4b{word-spacing:44.410667pt;}
.ws2{word-spacing:56.789333pt;}
.ws50{word-spacing:277.729237pt;}
.ws4d{word-spacing:435.541547pt;}
.ws3{word-spacing:676.496000pt;}
._5{margin-left:-676.496000pt;}
._3{margin-left:-56.789333pt;}
._2b{margin-left:-44.410667pt;}
._23{margin-left:-31.296000pt;}
._2f{margin-left:-29.205333pt;}
._1b{margin-left:-27.082667pt;}
._19{margin-left:-24.928000pt;}
._21{margin-left:-22.741333pt;}
._14{margin-left:-20.522667pt;}
._1f{margin-left:-18.576000pt;}
._1d{margin-left:-17.104000pt;}
._25{margin-left:-16.000000pt;}
._28{margin-left:-14.341333pt;}
._12{margin-left:-13.125333pt;}
._c{margin-left:-10.496000pt;}
._10{margin-left:-9.360000pt;}
._16{margin-left:-7.440000pt;}
._7{margin-left:-6.229333pt;}
._a{margin-left:-4.613333pt;}
._e{margin-left:-3.541333pt;}
._1{margin-left:-1.978667pt;}
._8{margin-left:-1.054955pt;}
._17{width:0.936000pt;}
._0{width:1.836032pt;}
._d{width:3.528000pt;}
._9{width:4.608000pt;}
._6{width:6.192000pt;}
._15{width:7.416000pt;}
._f{width:9.288000pt;}
._b{width:10.440000pt;}
._26{width:11.336000pt;}
._11{width:13.104000pt;}
._29{width:14.146667pt;}
._27{width:15.080000pt;}
._24{width:15.984000pt;}
._1c{width:17.064000pt;}
._1e{width:18.576000pt;}
._13{width:20.520000pt;}
._20{width:22.680000pt;}
._18{width:24.912000pt;}
._1a{width:27.072000pt;}
._2e{width:29.160000pt;}
._22{width:31.248000pt;}
._2a{width:44.352000pt;}
._2{width:56.763989pt;}
._2d{width:457.696427pt;}
._2c{width:609.961856pt;}
._4{width:676.424789pt;}
.fs3{font-size:36.789333pt;}
.fs2{font-size:44.000000pt;}
.fs1{font-size:72.000000pt;}
.fs0{font-size:153.002667pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:73.169333pt;}
.y15a{bottom:76.741333pt;}
.yc9{bottom:80.320000pt;}
.y139{bottom:81.837333pt;}
.y115{bottom:86.320000pt;}
.y3f{bottom:88.320000pt;}
.ye4{bottom:91.380000pt;}
.y18e{bottom:97.741333pt;}
.y168{bottom:98.320000pt;}
.y1d{bottom:100.169333pt;}
.y159{bottom:103.741333pt;}
.yc8{bottom:107.320000pt;}
.y138{bottom:108.837333pt;}
.y18b{bottom:111.241333pt;}
.y19a{bottom:112.232000pt;}
.y114{bottom:113.320000pt;}
.y1f1{bottom:115.320000pt;}
.y18d{bottom:124.741333pt;}
.y167{bottom:125.320000pt;}
.y1c{bottom:127.169333pt;}
.y158{bottom:130.741333pt;}
.y3e{bottom:133.320000pt;}
.yc7{bottom:134.320000pt;}
.ye3{bottom:136.380000pt;}
.y18a{bottom:138.241333pt;}
.y1e9{bottom:140.320000pt;}
.y1f0{bottom:142.320000pt;}
.y18c{bottom:151.741333pt;}
.y137{bottom:153.837333pt;}
.y199{bottom:155.320000pt;}
.y157{bottom:157.741333pt;}
.y113{bottom:158.320000pt;}
.y3d{bottom:160.320000pt;}
.yc6{bottom:161.320000pt;}
.ye2{bottom:163.380000pt;}
.y1e8{bottom:167.320000pt;}
.y1ef{bottom:169.320000pt;}
.y166{bottom:170.320000pt;}
.y1b{bottom:172.169333pt;}
.yf9{bottom:183.320000pt;}
.y152{bottom:184.741333pt;}
.y112{bottom:185.320000pt;}
.y1c5{bottom:185.485333pt;}
.y189{bottom:185.741333pt;}
.y3c{bottom:187.320000pt;}
.yc5{bottom:188.320000pt;}
.y1c8{bottom:188.934667pt;}
.ye1{bottom:190.380000pt;}
.y1e7{bottom:194.320000pt;}
.y1ee{bottom:196.320000pt;}
.y136{bottom:198.837333pt;}
.y1a{bottom:199.169333pt;}
.y198{bottom:200.320000pt;}
.y1c4{bottom:208.062667pt;}
.yf8{bottom:210.320000pt;}
.y156{bottom:211.741333pt;}
.y111{bottom:212.320000pt;}
.y188{bottom:212.741333pt;}
.y3b{bottom:214.320000pt;}
.yc4{bottom:215.320000pt;}
.ye0{bottom:217.380000pt;}
.y1e6{bottom:221.320000pt;}
.y1ed{bottom:223.320000pt;}
.y1c7{bottom:224.262667pt;}
.y19{bottom:226.169333pt;}
.y1c3{bottom:230.638667pt;}
.y17d{bottom:237.320000pt;}
.y155{bottom:238.741333pt;}
.y110{bottom:239.320000pt;}
.yf5{bottom:239.741333pt;}
.y3a{bottom:241.320000pt;}
.y1bf{bottom:241.926667pt;}
.yc3{bottom:242.320000pt;}
.y135{bottom:243.837333pt;}
.ydf{bottom:244.380000pt;}
.y197{bottom:245.320000pt;}
.y1e5{bottom:248.320000pt;}
.y1ec{bottom:250.320000pt;}
.y12e{bottom:250.741333pt;}
.y18{bottom:253.169333pt;}
.y1c2{bottom:253.216000pt;}
.y1c6{bottom:259.592000pt;}
.y154{bottom:265.741333pt;}
.y10f{bottom:266.320000pt;}
.yf4{bottom:266.741333pt;}
.y39{bottom:268.320000pt;}
.yc2{bottom:269.320000pt;}
.y7b{bottom:270.476000pt;}
.y134{bottom:270.837333pt;}
.yde{bottom:271.380000pt;}
.y196{bottom:272.320000pt;}
.y1e4{bottom:275.320000pt;}
.y1c1{bottom:275.792000pt;}
.y1f7{bottom:277.320000pt;}
.y12d{bottom:277.741333pt;}
.y17c{bottom:282.320000pt;}
.y153{bottom:292.741333pt;}
.y10e{bottom:293.320000pt;}
.yf7{bottom:293.741333pt;}
.y1c0{bottom:294.920000pt;}
.y38{bottom:295.320000pt;}
.y7a{bottom:297.476000pt;}
.y17{bottom:298.169333pt;}
.ydd{bottom:298.380000pt;}
.y1e3{bottom:302.320000pt;}
.y1f6{bottom:304.320000pt;}
.yb1{bottom:304.741333pt;}
.y187{bottom:307.241333pt;}
.y81{bottom:312.186667pt;}
.yc1{bottom:314.320000pt;}
.y17b{bottom:315.741333pt;}
.y10d{bottom:320.320000pt;}
.yf6{bottom:320.741333pt;}
.y37{bottom:322.320000pt;}
.y79{bottom:324.476000pt;}
.y16{bottom:325.169333pt;}
.ydc{bottom:325.380000pt;}
.y151{bottom:326.741333pt;}
.y1be{bottom:326.798667pt;}
.y179{bottom:329.241333pt;}
.yb0{bottom:331.741333pt;}
.y80{bottom:339.186667pt;}
.y14f{bottom:340.241333pt;}
.yc0{bottom:341.320000pt;}
.y17a{bottom:342.741333pt;}
.ya3{bottom:344.030667pt;}
.y10c{bottom:347.320000pt;}
.y128{bottom:347.741333pt;}
.y36{bottom:349.320000pt;}
.y1bd{bottom:349.374667pt;}
.y78{bottom:351.476000pt;}
.y15{bottom:352.169333pt;}
.ydb{bottom:352.380000pt;}
.y150{bottom:353.741333pt;}
.yaf{bottom:358.741333pt;}
.y1e1{bottom:361.121333pt;}
.y7f{bottom:366.186667pt;}
.yf3{bottom:367.320000pt;}
.ybf{bottom:368.320000pt;}
.ya2{bottom:371.030667pt;}
.y1bc{bottom:371.952000pt;}
.y10b{bottom:374.320000pt;}
.y127{bottom:374.741333pt;}
.y35{bottom:376.320000pt;}
.y178{bottom:376.741333pt;}
.y77{bottom:378.476000pt;}
.y14{bottom:379.169333pt;}
.yae{bottom:385.741333pt;}
.y14e{bottom:387.741333pt;}
.y1e2{bottom:392.320000pt;}
.y7e{bottom:393.186667pt;}
.yf2{bottom:394.320000pt;}
.y1bb{bottom:394.528000pt;}
.ybe{bottom:395.320000pt;}
.yda{bottom:397.380000pt;}
.ya1{bottom:398.030667pt;}
.y12c{bottom:399.241333pt;}
.y126{bottom:401.741333pt;}
.y34{bottom:403.320000pt;}
.y177{bottom:403.741333pt;}
.y76{bottom:405.476000pt;}
.y1b6{bottom:405.816000pt;}
.y1e0{bottom:406.121333pt;}
.y13{bottom:406.169333pt;}
.yad{bottom:412.741333pt;}
.y14d{bottom:414.741333pt;}
.y1ba{bottom:417.105333pt;}
.y10a{bottom:419.320000pt;}
.y7d{bottom:420.186667pt;}
.ybd{bottom:422.320000pt;}
.yd9{bottom:424.380000pt;}
.ya0{bottom:425.030667pt;}
.y14a{bottom:428.241333pt;}
.y125{bottom:428.741333pt;}
.y33{bottom:430.320000pt;}
.y176{bottom:430.741333pt;}
.y75{bottom:432.476000pt;}
.y1df{bottom:433.121333pt;}
.y12{bottom:433.169333pt;}
.yf1{bottom:439.320000pt;}
.y1b9{bottom:439.681333pt;}
.yac{bottom:439.741333pt;}
.y14c{bottom:441.741333pt;}
.y7c{bottom:447.186667pt;}
.ybc{bottom:449.320000pt;}
.yd8{bottom:451.380000pt;}
.y9f{bottom:452.030667pt;}
.y109{bottom:452.741333pt;}
.y124{bottom:455.741333pt;}
.y32{bottom:457.320000pt;}
.y175{bottom:457.741333pt;}
.y74{bottom:459.476000pt;}
.y1de{bottom:460.121333pt;}
.y11{bottom:460.169333pt;}
.y1b8{bottom:462.257333pt;}
.yf0{bottom:466.320000pt;}
.yab{bottom:466.741333pt;}
.y14b{bottom:468.741333pt;}
.y186{bottom:470.241333pt;}
.y170{bottom:471.241333pt;}
.ybb{bottom:476.320000pt;}
.yd7{bottom:478.380000pt;}
.y9e{bottom:479.030667pt;}
.y108{bottom:479.741333pt;}
.y123{bottom:482.741333pt;}
.y184{bottom:483.741333pt;}
.y31{bottom:484.320000pt;}
.y174{bottom:484.741333pt;}
.y1b7{bottom:484.834667pt;}
.y73{bottom:486.476000pt;}
.y1dd{bottom:487.121333pt;}
.y10{bottom:487.169333pt;}
.y105{bottom:493.241333pt;}
.yef{bottom:493.320000pt;}
.yaa{bottom:493.741333pt;}
.y11c{bottom:496.241333pt;}
.y185{bottom:497.241333pt;}
.y1f5{bottom:502.320000pt;}
.y149{bottom:502.741333pt;}
.yd6{bottom:505.380000pt;}
.y9d{bottom:506.030667pt;}
.y55{bottom:506.108000pt;}
.y107{bottom:506.741333pt;}
.y4e{bottom:507.320000pt;}
.y122{bottom:509.741333pt;}
.y30{bottom:511.320000pt;}
.y173{bottom:511.741333pt;}
.y1b5{bottom:513.264000pt;}
.y1dc{bottom:514.121333pt;}
.yf{bottom:514.169333pt;}
.yee{bottom:520.320000pt;}
.y69{bottom:520.476000pt;}
.ya9{bottom:520.741333pt;}
.yba{bottom:521.320000pt;}
.y1f4{bottom:529.320000pt;}
.y148{bottom:529.741333pt;}
.yd5{bottom:532.380000pt;}
.y9c{bottom:533.030667pt;}
.y54{bottom:533.108000pt;}
.y106{bottom:533.741333pt;}
.y4d{bottom:534.320000pt;}
.y1b4{bottom:535.841333pt;}
.y121{bottom:536.741333pt;}
.y2f{bottom:538.320000pt;}
.y172{bottom:538.741333pt;}
.y1db{bottom:541.121333pt;}
.yed{bottom:547.320000pt;}
.y68{bottom:547.476000pt;}
.ya8{bottom:547.741333pt;}
.yb9{bottom:548.320000pt;}
.y183{bottom:551.320000pt;}
.y195{bottom:556.320000pt;}
.y147{bottom:556.741333pt;}
.y1b1{bottom:558.417333pt;}
.ye{bottom:559.169333pt;}
.yd4{bottom:559.380000pt;}
.y9b{bottom:560.030667pt;}
.y4c{bottom:561.320000pt;}
.y53{bottom:562.530667pt;}
.y120{bottom:563.741333pt;}
.y2e{bottom:565.320000pt;}
.y171{bottom:565.741333pt;}
.y1da{bottom:568.121333pt;}
.yec{bottom:574.320000pt;}
.ya7{bottom:574.741333pt;}
.y67{bottom:576.897333pt;}
.yb8{bottom:579.320000pt;}
.y1b3{bottom:580.994667pt;}
.y12b{bottom:581.741333pt;}
.y194{bottom:583.320000pt;}
.y143{bottom:583.741333pt;}
.yd{bottom:586.169333pt;}
.yd3{bottom:586.380000pt;}
.y9a{bottom:587.030667pt;}
.y4b{bottom:588.320000pt;}
.y52{bottom:589.530667pt;}
.y11f{bottom:590.741333pt;}
.y2d{bottom:592.320000pt;}
.y1d9{bottom:595.121333pt;}
.y182{bottom:596.320000pt;}
.y16f{bottom:599.741333pt;}
.yeb{bottom:601.320000pt;}
.ya6{bottom:601.741333pt;}
.y1b2{bottom:603.570667pt;}
.y66{bottom:603.897333pt;}
.y165{bottom:604.320000pt;}
.yb7{bottom:606.320000pt;}
.y133{bottom:607.057333pt;}
.y12a{bottom:608.741333pt;}
.y193{bottom:610.320000pt;}
.y146{bottom:610.741333pt;}
.yc{bottom:613.169333pt;}
.y99{bottom:614.030667pt;}
.y4a{bottom:615.320000pt;}
.y51{bottom:616.530667pt;}
.y11e{bottom:617.741333pt;}
.y1eb{bottom:619.320000pt;}
.y104{bottom:621.741333pt;}
.y132{bottom:623.877333pt;}
.y16e{bottom:626.741333pt;}
.yea{bottom:628.320000pt;}
.ya5{bottom:628.741333pt;}
.y65{bottom:630.897333pt;}
.y164{bottom:631.320000pt;}
.yd2{bottom:631.380000pt;}
.y1b0{bottom:632.000000pt;}
.y100{bottom:635.241333pt;}
.yb6{bottom:635.741333pt;}
.y2c{bottom:637.320000pt;}
.y145{bottom:637.741333pt;}
.y1d8{bottom:640.121333pt;}
.yb{bottom:640.169333pt;}
.y181{bottom:641.320000pt;}
.y49{bottom:642.320000pt;}
.y50{bottom:643.530667pt;}
.y11d{bottom:644.741333pt;}
.y1ea{bottom:646.320000pt;}
.y103{bottom:648.741333pt;}
.y16d{bottom:653.741333pt;}
.y1af{bottom:654.577333pt;}
.ya4{bottom:655.741333pt;}
.y64{bottom:657.897333pt;}
.y163{bottom:658.320000pt;}
.yd1{bottom:658.380000pt;}
.yb5{bottom:662.741333pt;}
.y192{bottom:664.320000pt;}
.y144{bottom:664.741333pt;}
.ya{bottom:667.169333pt;}
.y169{bottom:667.241333pt;}
.y180{bottom:668.320000pt;}
.y48{bottom:669.320000pt;}
.y4f{bottom:670.530667pt;}
.y1d7{bottom:671.300000pt;}
.ye9{bottom:673.320000pt;}
.y72{bottom:673.820000pt;}
.yb4{bottom:675.030667pt;}
.y102{bottom:675.741333pt;}
.y1ae{bottom:677.153333pt;}
.y16c{bottom:680.741333pt;}
.y2b{bottom:682.320000pt;}
.y130{bottom:682.741333pt;}
.y63{bottom:684.897333pt;}
.y162{bottom:685.320000pt;}
.yd0{bottom:685.380000pt;}
.y19b{bottom:685.514667pt;}
.y1aa{bottom:688.441333pt;}
.y98{bottom:689.741333pt;}
.y11b{bottom:691.320000pt;}
.y1d6{bottom:693.877333pt;}
.y9{bottom:694.169333pt;}
.y142{bottom:698.741333pt;}
.y1ad{bottom:699.730667pt;}
.ye8{bottom:700.320000pt;}
.y71{bottom:700.820000pt;}
.yb3{bottom:702.030667pt;}
.y101{bottom:702.741333pt;}
.y1d3{bottom:705.165333pt;}
.y16b{bottom:707.741333pt;}
.y2a{bottom:709.320000pt;}
.y131{bottom:709.741333pt;}
.y62{bottom:711.897333pt;}
.y161{bottom:712.320000pt;}
.ycf{bottom:712.380000pt;}
.y17f{bottom:713.320000pt;}
.y1d5{bottom:716.453333pt;}
.y97{bottom:716.741333pt;}
.y47{bottom:718.320000pt;}
.y8{bottom:721.169333pt;}
.y1ac{bottom:722.306667pt;}
.y141{bottom:725.741333pt;}
.ye7{bottom:727.320000pt;}
.y70{bottom:727.820000pt;}
.yb2{bottom:729.030667pt;}
.yff{bottom:734.320000pt;}
.y16a{bottom:734.741333pt;}
.y29{bottom:736.320000pt;}
.y61{bottom:738.897333pt;}
.y1d4{bottom:739.030667pt;}
.y160{bottom:739.320000pt;}
.yce{bottom:739.380000pt;}
.y17e{bottom:740.320000pt;}
.y96{bottom:743.741333pt;}
.y1ab{bottom:744.884000pt;}
.y46{bottom:745.320000pt;}
.y7{bottom:748.169333pt;}
.y140{bottom:752.741333pt;}
.ye6{bottom:754.320000pt;}
.y6f{bottom:754.820000pt;}
.y8a{bottom:756.030667pt;}
.yfe{bottom:761.320000pt;}
.y28{bottom:763.320000pt;}
.y60{bottom:765.897333pt;}
.y15f{bottom:766.320000pt;}
.ycd{bottom:766.380000pt;}
.y1d2{bottom:767.460000pt;}
.y95{bottom:770.741333pt;}
.y45{bottom:772.320000pt;}
.y1a9{bottom:773.313333pt;}
.y6{bottom:775.169333pt;}
.yfb{bottom:777.241333pt;}
.y13f{bottom:779.741333pt;}
.y1fb{bottom:780.320000pt;}
.ye5{bottom:781.320000pt;}
.y6e{bottom:781.820000pt;}
.y89{bottom:783.030667pt;}
.y1d1{bottom:790.036000pt;}
.y11a{bottom:790.320000pt;}
.yfd{bottom:790.741333pt;}
.y5f{bottom:792.897333pt;}
.y13a{bottom:793.241333pt;}
.ycc{bottom:793.380000pt;}
.y1a8{bottom:795.889333pt;}
.y94{bottom:797.741333pt;}
.y44{bottom:799.320000pt;}
.y13e{bottom:806.741333pt;}
.y27{bottom:808.320000pt;}
.y6d{bottom:808.820000pt;}
.y88{bottom:810.030667pt;}
.y129{bottom:811.241333pt;}
.y15e{bottom:811.320000pt;}
.y1d0{bottom:812.613333pt;}
.y119{bottom:817.320000pt;}
.yfc{bottom:817.741333pt;}
.y1a7{bottom:818.466667pt;}
.y5e{bottom:819.897333pt;}
.y5{bottom:820.169333pt;}
.ycb{bottom:820.380000pt;}
.y93{bottom:824.741333pt;}
.y1fa{bottom:825.320000pt;}
.y43{bottom:826.320000pt;}
.y13d{bottom:833.741333pt;}
.y1cf{bottom:835.189333pt;}
.y26{bottom:835.320000pt;}
.y6c{bottom:835.820000pt;}
.y87{bottom:837.030667pt;}
.y1a6{bottom:841.042667pt;}
.y118{bottom:844.320000pt;}
.y15d{bottom:844.741333pt;}
.y1ca{bottom:846.477333pt;}
.y5d{bottom:849.320000pt;}
.y92{bottom:851.741333pt;}
.y1f9{bottom:852.320000pt;}
.y42{bottom:853.320000pt;}
.y1ce{bottom:857.766667pt;}
.y13c{bottom:860.741333pt;}
.y25{bottom:862.320000pt;}
.y6b{bottom:862.820000pt;}
.y1a5{bottom:863.620000pt;}
.y86{bottom:864.030667pt;}
.yca{bottom:865.380000pt;}
.y4{bottom:871.166667pt;}
.y117{bottom:871.320000pt;}
.y15b{bottom:871.741333pt;}
.y5c{bottom:876.320000pt;}
.y91{bottom:878.741333pt;}
.y1f8{bottom:879.320000pt;}
.y41{bottom:880.320000pt;}
.y1cd{bottom:880.342667pt;}
.y1a4{bottom:886.196000pt;}
.y13b{bottom:887.741333pt;}
.y24{bottom:889.320000pt;}
.y6a{bottom:889.820000pt;}
.y85{bottom:891.030667pt;}
.y12f{bottom:892.241333pt;}
.y1f3{bottom:898.320000pt;}
.y15c{bottom:898.741333pt;}
.y1cc{bottom:902.920000pt;}
.y5b{bottom:903.320000pt;}
.y90{bottom:905.741333pt;}
.y1c9{bottom:905.846667pt;}
.y1a3{bottom:906.748000pt;}
.y40{bottom:907.320000pt;}
.y19c{bottom:908.772000pt;}
.y116{bottom:916.320000pt;}
.y84{bottom:918.030667pt;}
.y3{bottom:921.922667pt;}
.y1f2{bottom:925.320000pt;}
.y1cb{bottom:925.496000pt;}
.y5a{bottom:930.320000pt;}
.y1a2{bottom:931.349333pt;}
.y8f{bottom:932.741333pt;}
.y23{bottom:934.320000pt;}
.y191{bottom:943.320000pt;}
.y83{bottom:945.030667pt;}
.yfa{bottom:946.241333pt;}
.y1a1{bottom:953.925333pt;}
.y59{bottom:957.320000pt;}
.y8e{bottom:959.741333pt;}
.y22{bottom:961.320000pt;}
.y190{bottom:970.320000pt;}
.y82{bottom:972.030667pt;}
.y2{bottom:972.678667pt;}
.y1a0{bottom:976.502667pt;}
.y58{bottom:984.320000pt;}
.y8d{bottom:986.741333pt;}
.y21{bottom:988.320000pt;}
.y18f{bottom:997.320000pt;}
.y19f{bottom:999.078667pt;}
.y57{bottom:1011.320000pt;}
.y8c{bottom:1013.741333pt;}
.y20{bottom:1015.320000pt;}
.y19e{bottom:1021.656000pt;}
.y1{bottom:1023.434667pt;}
.y56{bottom:1038.320000pt;}
.y8b{bottom:1040.741333pt;}
.y1f{bottom:1042.320000pt;}
.y19d{bottom:1044.232000pt;}
.h8{height:29.424281pt;}
.h7{height:34.112766pt;}
.h6{height:35.191406pt;}
.h5{height:40.798828pt;}
.h9{height:43.221615pt;}
.h4{height:57.585938pt;}
.h3{height:66.761719pt;}
.h2{height:141.871125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.x2b{left:59.130667pt;}
.x4d{left:62.442667pt;}
.x4f{left:65.753333pt;}
.x5b{left:72.374667pt;}
.x3b{left:95.552000pt;}
.x2d{left:102.522667pt;}
.x11{left:104.980000pt;}
.x15{left:108.290667pt;}
.x6{left:111.602667pt;}
.x5{left:114.913333pt;}
.x12{left:118.224000pt;}
.x48{left:120.242667pt;}
.x10{left:121.534667pt;}
.x46{left:123.554667pt;}
.x4{left:124.846667pt;}
.x54{left:127.054667pt;}
.x22{left:128.157333pt;}
.x49{left:130.176000pt;}
.xf{left:131.769333pt;}
.x3c{left:133.486667pt;}
.x2{left:135.080000pt;}
.x4b{left:136.798667pt;}
.x3{left:138.090667pt;}
.x6b{left:139.554667pt;}
.x13{left:141.401333pt;}
.x1d{left:144.712000pt;}
.x67{left:146.176000pt;}
.x20{left:148.324000pt;}
.x65{left:149.486667pt;}
.x21{left:151.334667pt;}
.x34{left:155.498667pt;}
.x14{left:157.956000pt;}
.x25{left:164.578667pt;}
.x80{left:166.846667pt;}
.x1e{left:167.889333pt;}
.x70{left:169.614667pt;}
.x27{left:177.822667pt;}
.x2e{left:185.298667pt;}
.x5a{left:201.504000pt;}
.x16{left:210.932000pt;}
.x6f{left:214.748000pt;}
.x7{left:217.554667pt;}
.x5e{left:219.272000pt;}
.x3d{left:221.582667pt;}
.x60{left:222.582667pt;}
.x44{left:224.894667pt;}
.x5f{left:225.894667pt;}
.x3e{left:228.205333pt;}
.x43{left:231.516000pt;}
.x62{left:232.516000pt;}
.x42{left:234.826667pt;}
.x41{left:238.138667pt;}
.x5d{left:239.138667pt;}
.x17{left:241.934667pt;}
.x40{left:244.760000pt;}
.x61{left:245.760000pt;}
.x47{left:248.070667pt;}
.x53{left:251.570667pt;}
.x3f{left:254.693333pt;}
.x51{left:258.193333pt;}
.x52{left:261.504000pt;}
.x69{left:264.070667pt;}
.x68{left:267.382667pt;}
.x66{left:270.693333pt;}
.x50{left:274.748000pt;}
.x6c{left:277.316000pt;}
.x58{left:287.992000pt;}
.x6e{left:290.901333pt;}
.x2c{left:294.212000pt;}
.x7e{left:300.645333pt;}
.x7c{left:306.181333pt;}
.x85{left:310.766667pt;}
.x3a{left:313.126667pt;}
.x37{left:316.437333pt;}
.x36{left:319.748000pt;}
.x31{left:323.058667pt;}
.x39{left:326.370667pt;}
.x7b{left:328.330667pt;}
.x59{left:331.034667pt;}
.x2f{left:332.992000pt;}
.x63{left:335.157333pt;}
.x30{left:336.302667pt;}
.x57{left:337.657333pt;}
.x71{left:339.404000pt;}
.x5c{left:343.877333pt;}
.x4a{left:347.401333pt;}
.x35{left:349.546667pt;}
.x4e{left:357.121333pt;}
.x56{left:360.834667pt;}
.x38{left:369.413333pt;}
.x64{left:370.365333pt;}
.x55{left:384.012000pt;}
.x45{left:387.133333pt;}
.x6d{left:399.822667pt;}
.x9{left:404.980000pt;}
.x19{left:408.292000pt;}
.x1a{left:411.602667pt;}
.xb{left:414.913333pt;}
.x6a{left:416.377333pt;}
.x18{left:418.224000pt;}
.x4c{left:420.242667pt;}
.xa{left:421.534667pt;}
.x8{left:424.846667pt;}
.xc{left:428.157333pt;}
.x1b{left:431.468000pt;}
.x23{left:434.778667pt;}
.x29{left:438.090667pt;}
.x28{left:441.401333pt;}
.xd{left:444.712000pt;}
.x78{left:447.594667pt;}
.x7a{left:450.364000pt;}
.x1c{left:451.334667pt;}
.x73{left:453.132000pt;}
.x72{left:455.900000pt;}
.x74{left:458.669333pt;}
.x81{left:461.437333pt;}
.x75{left:464.206667pt;}
.x79{left:466.974667pt;}
.x2a{left:467.889333pt;}
.x83{left:472.512000pt;}
.x7f{left:475.280000pt;}
.x24{left:477.822667pt;}
.x76{left:483.586667pt;}
.x32{left:488.609333pt;}
.x33{left:496.434667pt;}
.x84{left:497.429333pt;}
.x7d{left:508.502667pt;}
.x1f{left:520.865333pt;}
.x82{left:522.346667pt;}
.x26{left:530.798667pt;}
.x77{left:533.420000pt;}
.xe{left:541.936000pt;}
}




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