
    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_cad25fd3a6ced53284c009f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_5a832e78b8f3e24522dcb80f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_00b6b4e4fba964cffb85fb8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_84b56bf1163763b114d2d22e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c1951c84b386e7a1aafa406.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9d3cacc70ce8ed025da4818d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7818fb507168097713ea0d4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e65557ab21e11d91738a2575.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_98817bcca6aad2025062777d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8f880ccb6be03138d6ef7f17.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;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);}
.v2{vertical-align:-19.199982px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls4{letter-spacing:-2.304000px;}
.ls3{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.300000px;}
.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;}
}
.ws3d{word-spacing:-15.000000px;}
.ws4e{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws8{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws7d{word-spacing:-11.340000px;}
.ws72{word-spacing:-10.500000px;}
.ws73{word-spacing:-9.696000px;}
.ws2{word-spacing:-9.408000px;}
.wsf8{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws7{word-spacing:-8.400000px;}
.wsd8{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.500000px;}
.wscb{word-spacing:-1.380000px;}
.ws62{word-spacing:-1.200000px;}
.wsdf{word-spacing:-1.140000px;}
.wsa2{word-spacing:-1.080000px;}
.wsf3{word-spacing:-0.840000px;}
.ws150{word-spacing:-0.816000px;}
.wsde{word-spacing:-0.780000px;}
.ws48{word-spacing:-0.720000px;}
.ws99{word-spacing:-0.660000px;}
.ws5f{word-spacing:-0.600000px;}
.ws124{word-spacing:-0.576000px;}
.ws77{word-spacing:-0.540000px;}
.ws10a{word-spacing:-0.528000px;}
.ws87{word-spacing:-0.480000px;}
.ws49{word-spacing:-0.420000px;}
.wsf0{word-spacing:-0.360000px;}
.ws138{word-spacing:-0.336000px;}
.ws43{word-spacing:-0.300000px;}
.ws15d{word-spacing:-0.288000px;}
.ws58{word-spacing:-0.240000px;}
.ws13c{word-spacing:-0.192000px;}
.ws5e{word-spacing:-0.120000px;}
.ws155{word-spacing:-0.096000px;}
.ws28{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws163{word-spacing:0.048000px;}
.ws165{word-spacing:0.096000px;}
.wsa7{word-spacing:0.120000px;}
.ws12a{word-spacing:0.144000px;}
.ws47{word-spacing:0.180000px;}
.ws121{word-spacing:0.192000px;}
.ws61{word-spacing:0.240000px;}
.ws130{word-spacing:0.288000px;}
.ws34{word-spacing:0.300000px;}
.ws125{word-spacing:0.336000px;}
.ws36{word-spacing:0.360000px;}
.ws11f{word-spacing:0.384000px;}
.ws113{word-spacing:0.432000px;}
.ws81{word-spacing:0.480000px;}
.ws154{word-spacing:0.528000px;}
.ws1f{word-spacing:0.540000px;}
.ws14c{word-spacing:0.576000px;}
.ws41{word-spacing:0.600000px;}
.ws8f{word-spacing:0.660000px;}
.ws107{word-spacing:0.672000px;}
.wscd{word-spacing:0.720000px;}
.wsfe{word-spacing:0.768000px;}
.ws94{word-spacing:0.780000px;}
.ws10e{word-spacing:0.816000px;}
.ws45{word-spacing:0.840000px;}
.ws20{word-spacing:0.900000px;}
.ws4d{word-spacing:0.960000px;}
.ws156{word-spacing:1.008000px;}
.wsd0{word-spacing:1.020000px;}
.ws114{word-spacing:1.056000px;}
.wsbb{word-spacing:1.080000px;}
.ws111{word-spacing:1.104000px;}
.ws9e{word-spacing:1.140000px;}
.wsc0{word-spacing:1.200000px;}
.wse3{word-spacing:1.260000px;}
.ws122{word-spacing:1.296000px;}
.ws82{word-spacing:1.320000px;}
.ws103{word-spacing:1.344000px;}
.ws90{word-spacing:1.380000px;}
.wsfc{word-spacing:1.392000px;}
.wsd{word-spacing:1.440000px;}
.ws13b{word-spacing:1.488000px;}
.ws9a{word-spacing:1.500000px;}
.ws142{word-spacing:1.536000px;}
.wsc{word-spacing:1.560000px;}
.ws105{word-spacing:1.584000px;}
.wsda{word-spacing:1.620000px;}
.wsc1{word-spacing:1.680000px;}
.ws13d{word-spacing:1.728000px;}
.ws13{word-spacing:1.740000px;}
.ws106{word-spacing:1.776000px;}
.ws78{word-spacing:1.800000px;}
.wsfd{word-spacing:1.824000px;}
.ws8d{word-spacing:1.860000px;}
.ws84{word-spacing:1.872000px;}
.ws67{word-spacing:1.920000px;}
.ws1c{word-spacing:1.980000px;}
.wsaa{word-spacing:2.040000px;}
.ws15a{word-spacing:2.064000px;}
.ws37{word-spacing:2.100000px;}
.ws151{word-spacing:2.112000px;}
.ws66{word-spacing:2.160000px;}
.ws146{word-spacing:2.208000px;}
.ws89{word-spacing:2.220000px;}
.ws12c{word-spacing:2.256000px;}
.ws63{word-spacing:2.280000px;}
.ws132{word-spacing:2.304000px;}
.ws10{word-spacing:2.340000px;}
.ws16a{word-spacing:2.352000px;}
.wsb7{word-spacing:2.400000px;}
.ws11e{word-spacing:2.448000px;}
.ws7b{word-spacing:2.460000px;}
.ws164{word-spacing:2.496000px;}
.ws25{word-spacing:2.520000px;}
.ws128{word-spacing:2.544000px;}
.ws69{word-spacing:2.580000px;}
.ws145{word-spacing:2.592000px;}
.wsd9{word-spacing:2.640000px;}
.ws53{word-spacing:2.700000px;}
.ws118{word-spacing:2.736000px;}
.ws42{word-spacing:2.760000px;}
.ws8e{word-spacing:2.820000px;}
.ws7e{word-spacing:2.880000px;}
.ws11a{word-spacing:2.928000px;}
.ws1e{word-spacing:2.940000px;}
.ws14d{word-spacing:2.976000px;}
.ws7f{word-spacing:3.000000px;}
.ws32{word-spacing:3.060000px;}
.ws14f{word-spacing:3.072000px;}
.wsaf{word-spacing:3.120000px;}
.ws14e{word-spacing:3.168000px;}
.ws1a{word-spacing:3.180000px;}
.ws104{word-spacing:3.216000px;}
.ws9d{word-spacing:3.240000px;}
.ws162{word-spacing:3.264000px;}
.ws12{word-spacing:3.300000px;}
.ws83{word-spacing:3.312000px;}
.ws27{word-spacing:3.360000px;}
.ws5d{word-spacing:3.420000px;}
.ws101{word-spacing:3.456000px;}
.ws60{word-spacing:3.480000px;}
.ws12f{word-spacing:3.504000px;}
.wsb3{word-spacing:3.540000px;}
.ws110{word-spacing:3.552000px;}
.ws65{word-spacing:3.600000px;}
.ws15e{word-spacing:3.648000px;}
.wsd1{word-spacing:3.660000px;}
.ws129{word-spacing:3.696000px;}
.ws51{word-spacing:3.720000px;}
.ws11d{word-spacing:3.744000px;}
.ws56{word-spacing:3.780000px;}
.ws126{word-spacing:3.792000px;}
.wsd6{word-spacing:3.840000px;}
.ws11b{word-spacing:3.888000px;}
.ws26{word-spacing:3.900000px;}
.wsa6{word-spacing:3.960000px;}
.ws13a{word-spacing:3.984000px;}
.ws4a{word-spacing:4.020000px;}
.wsff{word-spacing:4.032000px;}
.ws29{word-spacing:4.080000px;}
.ws2a{word-spacing:4.140000px;}
.ws4b{word-spacing:4.200000px;}
.ws11c{word-spacing:4.224000px;}
.wse7{word-spacing:4.260000px;}
.ws2e{word-spacing:4.320000px;}
.ws102{word-spacing:4.368000px;}
.wsb4{word-spacing:4.380000px;}
.wsc2{word-spacing:4.440000px;}
.ws109{word-spacing:4.464000px;}
.wscc{word-spacing:4.500000px;}
.ws115{word-spacing:4.512000px;}
.ws96{word-spacing:4.560000px;}
.ws12d{word-spacing:4.608000px;}
.wsb8{word-spacing:4.620000px;}
.ws116{word-spacing:4.656000px;}
.ws7c{word-spacing:4.680000px;}
.ws68{word-spacing:4.740000px;}
.ws80{word-spacing:4.800000px;}
.ws15c{word-spacing:4.848000px;}
.ws17{word-spacing:4.860000px;}
.ws15b{word-spacing:4.896000px;}
.wsa9{word-spacing:4.920000px;}
.ws159{word-spacing:4.944000px;}
.ws4f{word-spacing:4.980000px;}
.ws112{word-spacing:4.992000px;}
.ws23{word-spacing:5.040000px;}
.ws131{word-spacing:5.088000px;}
.wsd2{word-spacing:5.100000px;}
.ws119{word-spacing:5.136000px;}
.wsb5{word-spacing:5.160000px;}
.wsf7{word-spacing:5.220000px;}
.ws13e{word-spacing:5.232000px;}
.ws100{word-spacing:5.280000px;}
.ws161{word-spacing:5.328000px;}
.ws137{word-spacing:5.376000px;}
.ws2f{word-spacing:5.400000px;}
.ws167{word-spacing:5.424000px;}
.ws74{word-spacing:5.460000px;}
.ws12b{word-spacing:5.472000px;}
.ws9c{word-spacing:5.520000px;}
.ws149{word-spacing:5.568000px;}
.ws7a{word-spacing:5.580000px;}
.ws108{word-spacing:5.616000px;}
.ws4c{word-spacing:5.640000px;}
.ws13f{word-spacing:5.664000px;}
.wsf{word-spacing:5.700000px;}
.ws10d{word-spacing:5.712000px;}
.wsab{word-spacing:5.760000px;}
.ws152{word-spacing:5.808000px;}
.ws59{word-spacing:5.820000px;}
.ws88{word-spacing:5.880000px;}
.ws120{word-spacing:5.904000px;}
.wsa0{word-spacing:5.940000px;}
.ws5a{word-spacing:6.000000px;}
.ws158{word-spacing:6.048000px;}
.ws2b{word-spacing:6.060000px;}
.ws123{word-spacing:6.096000px;}
.ws71{word-spacing:6.120000px;}
.ws21{word-spacing:6.180000px;}
.ws64{word-spacing:6.240000px;}
.ws55{word-spacing:6.300000px;}
.wsa8{word-spacing:6.360000px;}
.ws148{word-spacing:6.384000px;}
.ws11{word-spacing:6.420000px;}
.ws5b{word-spacing:6.480000px;}
.ws10f{word-spacing:6.528000px;}
.ws75{word-spacing:6.540000px;}
.ws97{word-spacing:6.600000px;}
.ws140{word-spacing:6.624000px;}
.ws54{word-spacing:6.660000px;}
.ws9b{word-spacing:6.720000px;}
.ws14{word-spacing:6.780000px;}
.ws1d{word-spacing:6.840000px;}
.ws143{word-spacing:6.864000px;}
.ws79{word-spacing:6.900000px;}
.ws8a{word-spacing:6.960000px;}
.wsce{word-spacing:7.020000px;}
.wsca{word-spacing:7.080000px;}
.ws15f{word-spacing:7.104000px;}
.ws3f{word-spacing:7.140000px;}
.ws136{word-spacing:7.152000px;}
.ws35{word-spacing:7.200000px;}
.ws153{word-spacing:7.248000px;}
.wsb9{word-spacing:7.260000px;}
.ws117{word-spacing:7.296000px;}
.wsf6{word-spacing:7.380000px;}
.ws14b{word-spacing:7.392000px;}
.wse4{word-spacing:7.440000px;}
.ws139{word-spacing:7.488000px;}
.ws9{word-spacing:7.500000px;}
.wsb1{word-spacing:7.560000px;}
.ws135{word-spacing:7.584000px;}
.ws52{word-spacing:7.620000px;}
.ws3c{word-spacing:7.680000px;}
.ws6f{word-spacing:7.740000px;}
.wscf{word-spacing:7.800000px;}
.ws30{word-spacing:7.860000px;}
.ws33{word-spacing:7.920000px;}
.ws168{word-spacing:7.968000px;}
.wsa3{word-spacing:7.980000px;}
.wsb6{word-spacing:8.040000px;}
.ws50{word-spacing:8.100000px;}
.ws44{word-spacing:8.160000px;}
.ws166{word-spacing:8.208000px;}
.ws95{word-spacing:8.220000px;}
.wsf1{word-spacing:8.280000px;}
.wsed{word-spacing:8.340000px;}
.ws70{word-spacing:8.400000px;}
.wse{word-spacing:8.460000px;}
.ws22{word-spacing:8.520000px;}
.ws12e{word-spacing:8.544000px;}
.wsa1{word-spacing:8.580000px;}
.ws2c{word-spacing:8.640000px;}
.wsb{word-spacing:8.700000px;}
.wsfb{word-spacing:8.760000px;}
.ws10c{word-spacing:8.784000px;}
.ws6c{word-spacing:8.820000px;}
.ws9f{word-spacing:8.880000px;}
.ws91{word-spacing:8.940000px;}
.ws24{word-spacing:9.000000px;}
.wsf9{word-spacing:9.060000px;}
.ws133{word-spacing:9.072000px;}
.ws18{word-spacing:9.120000px;}
.wsdd{word-spacing:9.240000px;}
.wse9{word-spacing:9.360000px;}
.ws6b{word-spacing:9.480000px;}
.ws92{word-spacing:9.540000px;}
.wsdb{word-spacing:9.600000px;}
.ws8b{word-spacing:9.660000px;}
.wsac{word-spacing:9.900000px;}
.wsa{word-spacing:9.960000px;}
.wsbf{word-spacing:10.080000px;}
.wsb2{word-spacing:10.140000px;}
.ws40{word-spacing:10.260000px;}
.ws10b{word-spacing:10.272000px;}
.wsbd{word-spacing:10.320000px;}
.ws3b{word-spacing:10.380000px;}
.ws3e{word-spacing:10.440000px;}
.wsb0{word-spacing:10.560000px;}
.ws76{word-spacing:10.680000px;}
.ws134{word-spacing:10.704000px;}
.ws2d{word-spacing:10.740000px;}
.ws3a{word-spacing:10.800000px;}
.wsf5{word-spacing:10.860000px;}
.ws5c{word-spacing:11.040000px;}
.wse0{word-spacing:11.160000px;}
.wsc8{word-spacing:11.220000px;}
.ws14a{word-spacing:11.280000px;}
.ws6d{word-spacing:11.400000px;}
.ws39{word-spacing:11.520000px;}
.wsba{word-spacing:11.580000px;}
.wsef{word-spacing:11.640000px;}
.wsad{word-spacing:11.760000px;}
.ws93{word-spacing:11.820000px;}
.wsa5{word-spacing:11.880000px;}
.ws147{word-spacing:11.904000px;}
.wsd7{word-spacing:11.940000px;}
.wse2{word-spacing:12.000000px;}
.ws6a{word-spacing:12.120000px;}
.ws16{word-spacing:12.180000px;}
.wsd3{word-spacing:12.300000px;}
.wse5{word-spacing:12.360000px;}
.ws86{word-spacing:12.420000px;}
.ws6e{word-spacing:12.540000px;}
.ws144{word-spacing:12.624000px;}
.wsfa{word-spacing:12.660000px;}
.ws141{word-spacing:12.672000px;}
.wsc7{word-spacing:12.720000px;}
.ws38{word-spacing:12.780000px;}
.wseb{word-spacing:13.020000px;}
.ws57{word-spacing:13.080000px;}
.ws169{word-spacing:13.152000px;}
.wse6{word-spacing:13.320000px;}
.wsae{word-spacing:13.380000px;}
.wsea{word-spacing:13.440000px;}
.wsc3{word-spacing:13.620000px;}
.ws127{word-spacing:13.824000px;}
.wse8{word-spacing:13.860000px;}
.wsdc{word-spacing:14.040000px;}
.wsbe{word-spacing:14.100000px;}
.ws157{word-spacing:14.256000px;}
.wsf4{word-spacing:14.280000px;}
.ws98{word-spacing:14.400000px;}
.wsd4{word-spacing:14.940000px;}
.wsc4{word-spacing:15.060000px;}
.wsd5{word-spacing:15.300000px;}
.ws1b{word-spacing:15.720000px;}
.ws85{word-spacing:15.840000px;}
.ws160{word-spacing:16.128000px;}
.ws8c{word-spacing:16.380000px;}
.wsec{word-spacing:16.560000px;}
.wsc5{word-spacing:16.980000px;}
.wsc9{word-spacing:17.040000px;}
.wsa4{word-spacing:17.220000px;}
.wsf2{word-spacing:17.400000px;}
.wse1{word-spacing:17.760000px;}
.wsee{word-spacing:17.820000px;}
.ws31{word-spacing:18.180000px;}
.wsbc{word-spacing:19.080000px;}
.ws15{word-spacing:19.668000px;}
.wsc6{word-spacing:21.840000px;}
.ws19{word-spacing:73.056000px;}
._19{margin-left:-23.880000px;}
._5{margin-left:-15.600000px;}
._1a{margin-left:-13.874410px;}
._18{margin-left:-12.472800px;}
._14{margin-left:-11.340000px;}
._1b{margin-left:-10.034400px;}
._17{margin-left:-8.340000px;}
._15{margin-left:-5.410800px;}
._2{margin-left:-4.200000px;}
._3{margin-left:-3.174000px;}
._0{margin-left:-1.632000px;}
._1{width:1.334400px;}
._9{width:2.520000px;}
._1d{width:3.711600px;}
._4{width:4.842000px;}
._d{width:6.498000px;}
._a{width:8.448000px;}
._e{width:9.810000px;}
._1c{width:10.908000px;}
._c{width:11.973600px;}
._12{width:13.901400px;}
._1f{width:15.918000px;}
._b{width:17.409600px;}
._13{width:18.660000px;}
._1e{width:19.668000px;}
._6{width:22.320000px;}
._11{width:30.426000px;}
._16{width:33.000000px;}
._10{width:36.540000px;}
._f{width:37.620000px;}
._7{width:56.255991px;}
._8{width:1640.303975px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y42{bottom:90.006000px;}
.yc4{bottom:90.020552px;}
.y72{bottom:90.797516px;}
.y18e{bottom:91.139516px;}
.y125{bottom:93.494552px;}
.y4{bottom:97.125005px;}
.y15a{bottom:102.767543px;}
.yc3{bottom:104.264552px;}
.ya9{bottom:104.297516px;}
.y18d{bottom:105.383516px;}
.y8f{bottom:107.297539px;}
.y124{bottom:107.738552px;}
.y71{bottom:108.797516px;}
.yf2{bottom:108.797562px;}
.y41{bottom:109.049995px;}
.y159{bottom:117.011543px;}
.yc2{bottom:118.508552px;}
.y18c{bottom:119.627516px;}
.y123{bottom:121.982552px;}
.ya8{bottom:122.297516px;}
.y8e{bottom:125.297539px;}
.y70{bottom:126.797516px;}
.yf1{bottom:126.797562px;}
.y158{bottom:131.255543px;}
.y40{bottom:132.905998px;}
.y18b{bottom:133.871516px;}
.yc1{bottom:137.552547px;}
.y1f{bottom:139.264499px;}
.ya7{bottom:140.297516px;}
.yd6{bottom:142.687042px;}
.y8d{bottom:143.297539px;}
.y6f{bottom:144.797516px;}
.yf0{bottom:144.797562px;}
.y157{bottom:145.499543px;}
.y3f{bottom:147.149998px;}
.y18a{bottom:148.115516px;}
.y122{bottom:150.482552px;}
.ya6{bottom:158.297516px;}
.y156{bottom:159.743543px;}
.yd5{bottom:160.687042px;}
.y8c{bottom:161.297539px;}
.y189{bottom:162.359516px;}
.y6e{bottom:162.797516px;}
.yef{bottom:162.797562px;}
.y155{bottom:173.987543px;}
.ya5{bottom:176.297516px;}
.y188{bottom:176.603516px;}
.yd4{bottom:178.687042px;}
.y121{bottom:178.982552px;}
.y8b{bottom:179.297539px;}
.y6d{bottom:180.797516px;}
.yee{bottom:180.797562px;}
.y154{bottom:188.231543px;}
.y187{bottom:190.847516px;}
.y3e{bottom:193.067093px;}
.ya4{bottom:194.297516px;}
.yc0{bottom:194.297539px;}
.yd3{bottom:196.687042px;}
.y16{bottom:196.933500px;}
.y8a{bottom:197.297539px;}
.y6c{bottom:198.797516px;}
.yed{bottom:198.797562px;}
.y153{bottom:202.475543px;}
.y186{bottom:205.091516px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y3d{bottom:211.067093px;}
.y120{bottom:211.238539px;}
.ya3{bottom:212.297516px;}
.ybf{bottom:212.297539px;}
.yd2{bottom:214.687042px;}
.y89{bottom:215.297539px;}
.y152{bottom:216.719543px;}
.y6b{bottom:216.797516px;}
.ye4{bottom:216.797562px;}
.y185{bottom:219.335516px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y11f{bottom:225.482539px;}
.y3c{bottom:229.067093px;}
.ya2{bottom:230.297516px;}
.ybe{bottom:230.297539px;}
.y151{bottom:230.963543px;}
.yd1{bottom:232.687042px;}
.y88{bottom:233.297539px;}
.y184{bottom:233.579516px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y6a{bottom:234.797516px;}
.ye3{bottom:234.797562px;}
.y11e{bottom:239.726539px;}
.y150{bottom:245.207543px;}
.y3b{bottom:247.067093px;}
.y183{bottom:247.823516px;}
.ya1{bottom:248.297516px;}
.ybd{bottom:248.297539px;}
.yd0{bottom:250.687042px;}
.y87{bottom:251.297539px;}
.y69{bottom:252.797516px;}
.ye2{bottom:252.797562px;}
.y14f{bottom:259.451543px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y182{bottom:262.067516px;}
.ya0{bottom:266.297516px;}
.ybc{bottom:266.297539px;}
.y11d{bottom:268.202539px;}
.ycf{bottom:268.687042px;}
.y86{bottom:269.297539px;}
.y68{bottom:270.797516px;}
.ye1{bottom:270.797562px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y14e{bottom:273.695543px;}
.y3a{bottom:274.442093px;}
.y181{bottom:276.311516px;}
.y9f{bottom:284.297516px;}
.ybb{bottom:284.297562px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.yce{bottom:286.687042px;}
.y85{bottom:287.297539px;}
.y14d{bottom:287.939543px;}
.y67{bottom:288.797516px;}
.ye0{bottom:288.797562px;}
.y180{bottom:290.555516px;}
.y14c{bottom:302.183543px;}
.y9e{bottom:302.297516px;}
.yba{bottom:302.297562px;}
.ycd{bottom:304.687042px;}
.y17f{bottom:304.799516px;}
.y84{bottom:305.297539px;}
.y11c{bottom:305.678539px;}
.y66{bottom:306.797516px;}
.ydf{bottom:306.797562px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y14b{bottom:316.427543px;}
.y17e{bottom:319.043516px;}
.y39{bottom:319.817093px;}
.y11b{bottom:319.922539px;}
.y9d{bottom:320.297516px;}
.yb9{bottom:320.297562px;}
.ycc{bottom:322.687042px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y83{bottom:323.297539px;}
.y65{bottom:324.797516px;}
.yde{bottom:324.797562px;}
.y14a{bottom:330.671543px;}
.y17d{bottom:333.287516px;}
.y9c{bottom:338.297516px;}
.yb8{bottom:338.297562px;}
.ycb{bottom:340.687042px;}
.y82{bottom:341.297539px;}
.y11a{bottom:341.672516px;}
.y64{bottom:342.797516px;}
.ydd{bottom:342.797562px;}
.y149{bottom:344.915543px;}
.y17c{bottom:347.531516px;}
.yd{bottom:348.133500px;}
.y9b{bottom:356.297516px;}
.yb7{bottom:356.297562px;}
.y148{bottom:359.159543px;}
.y119{bottom:359.672516px;}
.y63{bottom:360.797516px;}
.ydc{bottom:360.797562px;}
.y17b{bottom:361.775516px;}
.y147{bottom:373.403543px;}
.y38{bottom:373.817093px;}
.y9a{bottom:374.297516px;}
.yb6{bottom:374.297562px;}
.y17a{bottom:376.019516px;}
.yca{bottom:376.687042px;}
.y81{bottom:377.297539px;}
.y118{bottom:377.672516px;}
.y62{bottom:378.797516px;}
.ydb{bottom:378.797562px;}
.yc{bottom:386.785499px;}
.y146{bottom:387.647543px;}
.y179{bottom:390.263516px;}
.y37{bottom:391.817093px;}
.y99{bottom:392.297516px;}
.y117{bottom:395.672516px;}
.y61{bottom:396.797516px;}
.yda{bottom:396.797562px;}
.y145{bottom:401.891543px;}
.y178{bottom:404.507516px;}
.yb{bottom:408.044999px;}
.y98{bottom:410.297516px;}
.yb5{bottom:410.297562px;}
.y80{bottom:413.297562px;}
.y116{bottom:413.672516px;}
.y60{bottom:414.797516px;}
.yd9{bottom:414.797562px;}
.y144{bottom:416.135543px;}
.yc9{bottom:417.187042px;}
.y177{bottom:418.751516px;}
.y97{bottom:428.297516px;}
.y36{bottom:428.567093px;}
.y143{bottom:430.379543px;}
.y115{bottom:431.672516px;}
.y5f{bottom:432.797516px;}
.yd8{bottom:432.797562px;}
.y176{bottom:432.995516px;}
.yc8{bottom:435.187042px;}
.y142{bottom:444.623543px;}
.y96{bottom:446.297516px;}
.y35{bottom:446.567093px;}
.y175{bottom:447.239516px;}
.y114{bottom:449.672516px;}
.y5e{bottom:450.797516px;}
.yb4{bottom:450.797562px;}
.yc7{bottom:453.187042px;}
.y141{bottom:458.867543px;}
.y174{bottom:461.483516px;}
.y95{bottom:464.297516px;}
.y34{bottom:464.567093px;}
.y7f{bottom:467.297516px;}
.y113{bottom:467.672516px;}
.y5d{bottom:468.797516px;}
.yb3{bottom:468.797562px;}
.yc6{bottom:471.187042px;}
.y140{bottom:473.111543px;}
.y190{bottom:475.715516px;}
.y173{bottom:475.727516px;}
.y94{bottom:482.297516px;}
.y33{bottom:482.567093px;}
.y7e{bottom:485.297516px;}
.y112{bottom:485.672516px;}
.y5c{bottom:486.797516px;}
.yb2{bottom:486.797562px;}
.y13f{bottom:487.355543px;}
.y18f{bottom:489.959516px;}
.y172{bottom:489.971516px;}
.y93{bottom:500.297516px;}
.y32{bottom:500.567093px;}
.y13e{bottom:501.599543px;}
.ya{bottom:502.864502px;}
.y7d{bottom:503.297516px;}
.y111{bottom:503.672516px;}
.y171{bottom:504.215516px;}
.y5b{bottom:504.797516px;}
.yb1{bottom:504.797562px;}
.yc5{bottom:507.187042px;}
.y13d{bottom:515.843543px;}
.yec{bottom:518.297516px;}
.y170{bottom:518.459516px;}
.y31{bottom:518.567093px;}
.y9{bottom:520.864502px;}
.y7c{bottom:521.297516px;}
.y110{bottom:521.672516px;}
.y5a{bottom:522.797516px;}
.yb0{bottom:522.797562px;}
.y13c{bottom:530.087543px;}
.y16f{bottom:532.703516px;}
.y92{bottom:536.297516px;}
.y30{bottom:536.567093px;}
.y8{bottom:538.864499px;}
.y7b{bottom:539.297516px;}
.y10f{bottom:539.672516px;}
.y59{bottom:540.797516px;}
.yaf{bottom:540.797562px;}
.y13b{bottom:544.331543px;}
.y16e{bottom:546.947516px;}
.yeb{bottom:554.297516px;}
.y2f{bottom:554.567093px;}
.yd7{bottom:554.839050px;}
.y7{bottom:556.864499px;}
.y7a{bottom:557.297516px;}
.y10e{bottom:557.672516px;}
.y13a{bottom:558.575543px;}
.y58{bottom:558.797516px;}
.yae{bottom:558.797562px;}
.y16d{bottom:561.191516px;}
.yea{bottom:572.297516px;}
.y2e{bottom:572.567093px;}
.y139{bottom:572.819543px;}
.y79{bottom:575.297516px;}
.y16c{bottom:575.435516px;}
.y10d{bottom:575.672516px;}
.y57{bottom:576.797516px;}
.yad{bottom:576.797562px;}
.y138{bottom:587.063543px;}
.y16b{bottom:589.679516px;}
.ye9{bottom:590.297516px;}
.y2d{bottom:590.567093px;}
.y10c{bottom:593.672516px;}
.y56{bottom:594.797516px;}
.yac{bottom:594.797562px;}
.y137{bottom:601.307543px;}
.y16a{bottom:603.923516px;}
.ye8{bottom:608.297516px;}
.y2c{bottom:608.567093px;}
.y10b{bottom:611.672516px;}
.y78{bottom:612.047516px;}
.y55{bottom:612.797516px;}
.yab{bottom:612.797562px;}
.y136{bottom:615.551543px;}
.y169{bottom:618.167516px;}
.ye7{bottom:626.297516px;}
.y2b{bottom:626.567093px;}
.y10a{bottom:629.672516px;}
.y135{bottom:629.795543px;}
.y77{bottom:630.047516px;}
.y54{bottom:630.797516px;}
.y168{bottom:632.411516px;}
.y134{bottom:644.039543px;}
.yfb{bottom:644.297516px;}
.y2a{bottom:644.567093px;}
.y167{bottom:646.655516px;}
.y109{bottom:647.672516px;}
.y76{bottom:648.047516px;}
.y53{bottom:648.797516px;}
.yaa{bottom:648.797562px;}
.y133{bottom:658.283543px;}
.y166{bottom:660.899516px;}
.ye6{bottom:662.297516px;}
.y29{bottom:662.567093px;}
.y108{bottom:665.672516px;}
.y75{bottom:666.047516px;}
.y52{bottom:666.797516px;}
.y132{bottom:672.527543px;}
.y165{bottom:675.143516px;}
.yfa{bottom:680.297516px;}
.y28{bottom:680.567093px;}
.y107{bottom:683.672516px;}
.y74{bottom:684.047516px;}
.y51{bottom:684.797516px;}
.y131{bottom:686.771543px;}
.y164{bottom:689.387516px;}
.ye5{bottom:698.297516px;}
.y130{bottom:701.015543px;}
.y106{bottom:701.672516px;}
.y50{bottom:702.797516px;}
.y163{bottom:703.631516px;}
.y12f{bottom:715.259543px;}
.yf9{bottom:716.297516px;}
.y162{bottom:717.875516px;}
.y105{bottom:719.672516px;}
.y4f{bottom:720.797516px;}
.y6{bottom:726.298500px;}
.y27{bottom:729.059696px;}
.y12e{bottom:729.503543px;}
.y161{bottom:732.119516px;}
.yf8{bottom:734.297516px;}
.y104{bottom:737.672516px;}
.y4e{bottom:738.797516px;}
.y26{bottom:743.303696px;}
.y12d{bottom:743.747543px;}
.y160{bottom:746.363516px;}
.yf7{bottom:752.297516px;}
.y3{bottom:752.599495px;}
.y103{bottom:755.672516px;}
.y4d{bottom:756.797516px;}
.y15f{bottom:760.607516px;}
.yf6{bottom:770.297516px;}
.y102{bottom:773.672516px;}
.y4c{bottom:774.797516px;}
.y15e{bottom:774.851516px;}
.y12c{bottom:776.297516px;}
.y25{bottom:781.152191px;}
.yf5{bottom:788.297516px;}
.y15d{bottom:789.095516px;}
.y101{bottom:791.672516px;}
.y4b{bottom:792.797516px;}
.y15c{bottom:803.339516px;}
.yf4{bottom:806.297516px;}
.y100{bottom:809.672516px;}
.y4a{bottom:810.797516px;}
.y15b{bottom:817.583516px;}
.y24{bottom:823.895529px;}
.yff{bottom:827.672516px;}
.y49{bottom:828.797516px;}
.y12b{bottom:831.827516px;}
.yf3{bottom:842.297516px;}
.yfe{bottom:845.672516px;}
.y12a{bottom:846.071516px;}
.y23{bottom:846.398529px;}
.y48{bottom:846.797516px;}
.y129{bottom:860.315516px;}
.yfd{bottom:863.672516px;}
.y47{bottom:864.797516px;}
.y128{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y46{bottom:882.797516px;}
.y127{bottom:888.803516px;}
.yfc{bottom:899.672516px;}
.y45{bottom:900.797516px;}
.y126{bottom:903.047516px;}
.y22{bottom:925.867084px;}
.y73{bottom:939.670349px;}
.y91{bottom:940.110892px;}
.y44{bottom:940.111075px;}
.y21{bottom:940.111084px;}
.y90{bottom:940.626892px;}
.y43{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h14{height:29.299200px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h13{height:41.856000px;}
.hb{height:42.048000px;}
.h17{height:42.528000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h16{height:49.104000px;}
.hf{height:52.320000px;}
.h10{height:53.160000px;}
.h15{height:53.640000px;}
.h2{height:55.080000px;}
.he{height:59.340000px;}
.h12{height:61.380000px;}
.hd{height:64.866000px;}
.h11{height:65.274000px;}
.hc{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x9{left:77.598450px;}
.x7{left:93.543303px;}
.x8{left:97.799400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:485.858414px;}
.xa{left:559.720184px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls4{letter-spacing:-2.048000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.266667pt;}
.ws3d{word-spacing:-13.333333pt;}
.ws4e{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws8{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws7d{word-spacing:-10.080000pt;}
.ws72{word-spacing:-9.333333pt;}
.ws73{word-spacing:-8.618667pt;}
.ws2{word-spacing:-8.362667pt;}
.wsf8{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws7{word-spacing:-7.466667pt;}
.wsd8{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.333333pt;}
.wscb{word-spacing:-1.226667pt;}
.ws62{word-spacing:-1.066667pt;}
.wsdf{word-spacing:-1.013333pt;}
.wsa2{word-spacing:-0.960000pt;}
.wsf3{word-spacing:-0.746667pt;}
.ws150{word-spacing:-0.725333pt;}
.wsde{word-spacing:-0.693333pt;}
.ws48{word-spacing:-0.640000pt;}
.ws99{word-spacing:-0.586667pt;}
.ws5f{word-spacing:-0.533333pt;}
.ws124{word-spacing:-0.512000pt;}
.ws77{word-spacing:-0.480000pt;}
.ws10a{word-spacing:-0.469333pt;}
.ws87{word-spacing:-0.426667pt;}
.ws49{word-spacing:-0.373333pt;}
.wsf0{word-spacing:-0.320000pt;}
.ws138{word-spacing:-0.298667pt;}
.ws43{word-spacing:-0.266667pt;}
.ws15d{word-spacing:-0.256000pt;}
.ws58{word-spacing:-0.213333pt;}
.ws13c{word-spacing:-0.170667pt;}
.ws5e{word-spacing:-0.106667pt;}
.ws155{word-spacing:-0.085333pt;}
.ws28{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws163{word-spacing:0.042667pt;}
.ws165{word-spacing:0.085333pt;}
.wsa7{word-spacing:0.106667pt;}
.ws12a{word-spacing:0.128000pt;}
.ws47{word-spacing:0.160000pt;}
.ws121{word-spacing:0.170667pt;}
.ws61{word-spacing:0.213333pt;}
.ws130{word-spacing:0.256000pt;}
.ws34{word-spacing:0.266667pt;}
.ws125{word-spacing:0.298667pt;}
.ws36{word-spacing:0.320000pt;}
.ws11f{word-spacing:0.341333pt;}
.ws113{word-spacing:0.384000pt;}
.ws81{word-spacing:0.426667pt;}
.ws154{word-spacing:0.469333pt;}
.ws1f{word-spacing:0.480000pt;}
.ws14c{word-spacing:0.512000pt;}
.ws41{word-spacing:0.533333pt;}
.ws8f{word-spacing:0.586667pt;}
.ws107{word-spacing:0.597333pt;}
.wscd{word-spacing:0.640000pt;}
.wsfe{word-spacing:0.682667pt;}
.ws94{word-spacing:0.693333pt;}
.ws10e{word-spacing:0.725333pt;}
.ws45{word-spacing:0.746667pt;}
.ws20{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.853333pt;}
.ws156{word-spacing:0.896000pt;}
.wsd0{word-spacing:0.906667pt;}
.ws114{word-spacing:0.938667pt;}
.wsbb{word-spacing:0.960000pt;}
.ws111{word-spacing:0.981333pt;}
.ws9e{word-spacing:1.013333pt;}
.wsc0{word-spacing:1.066667pt;}
.wse3{word-spacing:1.120000pt;}
.ws122{word-spacing:1.152000pt;}
.ws82{word-spacing:1.173333pt;}
.ws103{word-spacing:1.194667pt;}
.ws90{word-spacing:1.226667pt;}
.wsfc{word-spacing:1.237333pt;}
.wsd{word-spacing:1.280000pt;}
.ws13b{word-spacing:1.322667pt;}
.ws9a{word-spacing:1.333333pt;}
.ws142{word-spacing:1.365333pt;}
.wsc{word-spacing:1.386667pt;}
.ws105{word-spacing:1.408000pt;}
.wsda{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.493333pt;}
.ws13d{word-spacing:1.536000pt;}
.ws13{word-spacing:1.546667pt;}
.ws106{word-spacing:1.578667pt;}
.ws78{word-spacing:1.600000pt;}
.wsfd{word-spacing:1.621333pt;}
.ws8d{word-spacing:1.653333pt;}
.ws84{word-spacing:1.664000pt;}
.ws67{word-spacing:1.706667pt;}
.ws1c{word-spacing:1.760000pt;}
.wsaa{word-spacing:1.813333pt;}
.ws15a{word-spacing:1.834667pt;}
.ws37{word-spacing:1.866667pt;}
.ws151{word-spacing:1.877333pt;}
.ws66{word-spacing:1.920000pt;}
.ws146{word-spacing:1.962667pt;}
.ws89{word-spacing:1.973333pt;}
.ws12c{word-spacing:2.005333pt;}
.ws63{word-spacing:2.026667pt;}
.ws132{word-spacing:2.048000pt;}
.ws10{word-spacing:2.080000pt;}
.ws16a{word-spacing:2.090667pt;}
.wsb7{word-spacing:2.133333pt;}
.ws11e{word-spacing:2.176000pt;}
.ws7b{word-spacing:2.186667pt;}
.ws164{word-spacing:2.218667pt;}
.ws25{word-spacing:2.240000pt;}
.ws128{word-spacing:2.261333pt;}
.ws69{word-spacing:2.293333pt;}
.ws145{word-spacing:2.304000pt;}
.wsd9{word-spacing:2.346667pt;}
.ws53{word-spacing:2.400000pt;}
.ws118{word-spacing:2.432000pt;}
.ws42{word-spacing:2.453333pt;}
.ws8e{word-spacing:2.506667pt;}
.ws7e{word-spacing:2.560000pt;}
.ws11a{word-spacing:2.602667pt;}
.ws1e{word-spacing:2.613333pt;}
.ws14d{word-spacing:2.645333pt;}
.ws7f{word-spacing:2.666667pt;}
.ws32{word-spacing:2.720000pt;}
.ws14f{word-spacing:2.730667pt;}
.wsaf{word-spacing:2.773333pt;}
.ws14e{word-spacing:2.816000pt;}
.ws1a{word-spacing:2.826667pt;}
.ws104{word-spacing:2.858667pt;}
.ws9d{word-spacing:2.880000pt;}
.ws162{word-spacing:2.901333pt;}
.ws12{word-spacing:2.933333pt;}
.ws83{word-spacing:2.944000pt;}
.ws27{word-spacing:2.986667pt;}
.ws5d{word-spacing:3.040000pt;}
.ws101{word-spacing:3.072000pt;}
.ws60{word-spacing:3.093333pt;}
.ws12f{word-spacing:3.114667pt;}
.wsb3{word-spacing:3.146667pt;}
.ws110{word-spacing:3.157333pt;}
.ws65{word-spacing:3.200000pt;}
.ws15e{word-spacing:3.242667pt;}
.wsd1{word-spacing:3.253333pt;}
.ws129{word-spacing:3.285333pt;}
.ws51{word-spacing:3.306667pt;}
.ws11d{word-spacing:3.328000pt;}
.ws56{word-spacing:3.360000pt;}
.ws126{word-spacing:3.370667pt;}
.wsd6{word-spacing:3.413333pt;}
.ws11b{word-spacing:3.456000pt;}
.ws26{word-spacing:3.466667pt;}
.wsa6{word-spacing:3.520000pt;}
.ws13a{word-spacing:3.541333pt;}
.ws4a{word-spacing:3.573333pt;}
.wsff{word-spacing:3.584000pt;}
.ws29{word-spacing:3.626667pt;}
.ws2a{word-spacing:3.680000pt;}
.ws4b{word-spacing:3.733333pt;}
.ws11c{word-spacing:3.754667pt;}
.wse7{word-spacing:3.786667pt;}
.ws2e{word-spacing:3.840000pt;}
.ws102{word-spacing:3.882667pt;}
.wsb4{word-spacing:3.893333pt;}
.wsc2{word-spacing:3.946667pt;}
.ws109{word-spacing:3.968000pt;}
.wscc{word-spacing:4.000000pt;}
.ws115{word-spacing:4.010667pt;}
.ws96{word-spacing:4.053333pt;}
.ws12d{word-spacing:4.096000pt;}
.wsb8{word-spacing:4.106667pt;}
.ws116{word-spacing:4.138667pt;}
.ws7c{word-spacing:4.160000pt;}
.ws68{word-spacing:4.213333pt;}
.ws80{word-spacing:4.266667pt;}
.ws15c{word-spacing:4.309333pt;}
.ws17{word-spacing:4.320000pt;}
.ws15b{word-spacing:4.352000pt;}
.wsa9{word-spacing:4.373333pt;}
.ws159{word-spacing:4.394667pt;}
.ws4f{word-spacing:4.426667pt;}
.ws112{word-spacing:4.437333pt;}
.ws23{word-spacing:4.480000pt;}
.ws131{word-spacing:4.522667pt;}
.wsd2{word-spacing:4.533333pt;}
.ws119{word-spacing:4.565333pt;}
.wsb5{word-spacing:4.586667pt;}
.wsf7{word-spacing:4.640000pt;}
.ws13e{word-spacing:4.650667pt;}
.ws100{word-spacing:4.693333pt;}
.ws161{word-spacing:4.736000pt;}
.ws137{word-spacing:4.778667pt;}
.ws2f{word-spacing:4.800000pt;}
.ws167{word-spacing:4.821333pt;}
.ws74{word-spacing:4.853333pt;}
.ws12b{word-spacing:4.864000pt;}
.ws9c{word-spacing:4.906667pt;}
.ws149{word-spacing:4.949333pt;}
.ws7a{word-spacing:4.960000pt;}
.ws108{word-spacing:4.992000pt;}
.ws4c{word-spacing:5.013333pt;}
.ws13f{word-spacing:5.034667pt;}
.wsf{word-spacing:5.066667pt;}
.ws10d{word-spacing:5.077333pt;}
.wsab{word-spacing:5.120000pt;}
.ws152{word-spacing:5.162667pt;}
.ws59{word-spacing:5.173333pt;}
.ws88{word-spacing:5.226667pt;}
.ws120{word-spacing:5.248000pt;}
.wsa0{word-spacing:5.280000pt;}
.ws5a{word-spacing:5.333333pt;}
.ws158{word-spacing:5.376000pt;}
.ws2b{word-spacing:5.386667pt;}
.ws123{word-spacing:5.418667pt;}
.ws71{word-spacing:5.440000pt;}
.ws21{word-spacing:5.493333pt;}
.ws64{word-spacing:5.546667pt;}
.ws55{word-spacing:5.600000pt;}
.wsa8{word-spacing:5.653333pt;}
.ws148{word-spacing:5.674667pt;}
.ws11{word-spacing:5.706667pt;}
.ws5b{word-spacing:5.760000pt;}
.ws10f{word-spacing:5.802667pt;}
.ws75{word-spacing:5.813333pt;}
.ws97{word-spacing:5.866667pt;}
.ws140{word-spacing:5.888000pt;}
.ws54{word-spacing:5.920000pt;}
.ws9b{word-spacing:5.973333pt;}
.ws14{word-spacing:6.026667pt;}
.ws1d{word-spacing:6.080000pt;}
.ws143{word-spacing:6.101333pt;}
.ws79{word-spacing:6.133333pt;}
.ws8a{word-spacing:6.186667pt;}
.wsce{word-spacing:6.240000pt;}
.wsca{word-spacing:6.293333pt;}
.ws15f{word-spacing:6.314667pt;}
.ws3f{word-spacing:6.346667pt;}
.ws136{word-spacing:6.357333pt;}
.ws35{word-spacing:6.400000pt;}
.ws153{word-spacing:6.442667pt;}
.wsb9{word-spacing:6.453333pt;}
.ws117{word-spacing:6.485333pt;}
.wsf6{word-spacing:6.560000pt;}
.ws14b{word-spacing:6.570667pt;}
.wse4{word-spacing:6.613333pt;}
.ws139{word-spacing:6.656000pt;}
.ws9{word-spacing:6.666667pt;}
.wsb1{word-spacing:6.720000pt;}
.ws135{word-spacing:6.741333pt;}
.ws52{word-spacing:6.773333pt;}
.ws3c{word-spacing:6.826667pt;}
.ws6f{word-spacing:6.880000pt;}
.wscf{word-spacing:6.933333pt;}
.ws30{word-spacing:6.986667pt;}
.ws33{word-spacing:7.040000pt;}
.ws168{word-spacing:7.082667pt;}
.wsa3{word-spacing:7.093333pt;}
.wsb6{word-spacing:7.146667pt;}
.ws50{word-spacing:7.200000pt;}
.ws44{word-spacing:7.253333pt;}
.ws166{word-spacing:7.296000pt;}
.ws95{word-spacing:7.306667pt;}
.wsf1{word-spacing:7.360000pt;}
.wsed{word-spacing:7.413333pt;}
.ws70{word-spacing:7.466667pt;}
.wse{word-spacing:7.520000pt;}
.ws22{word-spacing:7.573333pt;}
.ws12e{word-spacing:7.594667pt;}
.wsa1{word-spacing:7.626667pt;}
.ws2c{word-spacing:7.680000pt;}
.wsb{word-spacing:7.733333pt;}
.wsfb{word-spacing:7.786667pt;}
.ws10c{word-spacing:7.808000pt;}
.ws6c{word-spacing:7.840000pt;}
.ws9f{word-spacing:7.893333pt;}
.ws91{word-spacing:7.946667pt;}
.ws24{word-spacing:8.000000pt;}
.wsf9{word-spacing:8.053333pt;}
.ws133{word-spacing:8.064000pt;}
.ws18{word-spacing:8.106667pt;}
.wsdd{word-spacing:8.213333pt;}
.wse9{word-spacing:8.320000pt;}
.ws6b{word-spacing:8.426667pt;}
.ws92{word-spacing:8.480000pt;}
.wsdb{word-spacing:8.533333pt;}
.ws8b{word-spacing:8.586667pt;}
.wsac{word-spacing:8.800000pt;}
.wsa{word-spacing:8.853333pt;}
.wsbf{word-spacing:8.960000pt;}
.wsb2{word-spacing:9.013333pt;}
.ws40{word-spacing:9.120000pt;}
.ws10b{word-spacing:9.130667pt;}
.wsbd{word-spacing:9.173333pt;}
.ws3b{word-spacing:9.226667pt;}
.ws3e{word-spacing:9.280000pt;}
.wsb0{word-spacing:9.386667pt;}
.ws76{word-spacing:9.493333pt;}
.ws134{word-spacing:9.514667pt;}
.ws2d{word-spacing:9.546667pt;}
.ws3a{word-spacing:9.600000pt;}
.wsf5{word-spacing:9.653333pt;}
.ws5c{word-spacing:9.813333pt;}
.wse0{word-spacing:9.920000pt;}
.wsc8{word-spacing:9.973333pt;}
.ws14a{word-spacing:10.026667pt;}
.ws6d{word-spacing:10.133333pt;}
.ws39{word-spacing:10.240000pt;}
.wsba{word-spacing:10.293333pt;}
.wsef{word-spacing:10.346667pt;}
.wsad{word-spacing:10.453333pt;}
.ws93{word-spacing:10.506667pt;}
.wsa5{word-spacing:10.560000pt;}
.ws147{word-spacing:10.581333pt;}
.wsd7{word-spacing:10.613333pt;}
.wse2{word-spacing:10.666667pt;}
.ws6a{word-spacing:10.773333pt;}
.ws16{word-spacing:10.826667pt;}
.wsd3{word-spacing:10.933333pt;}
.wse5{word-spacing:10.986667pt;}
.ws86{word-spacing:11.040000pt;}
.ws6e{word-spacing:11.146667pt;}
.ws144{word-spacing:11.221333pt;}
.wsfa{word-spacing:11.253333pt;}
.ws141{word-spacing:11.264000pt;}
.wsc7{word-spacing:11.306667pt;}
.ws38{word-spacing:11.360000pt;}
.wseb{word-spacing:11.573333pt;}
.ws57{word-spacing:11.626667pt;}
.ws169{word-spacing:11.690667pt;}
.wse6{word-spacing:11.840000pt;}
.wsae{word-spacing:11.893333pt;}
.wsea{word-spacing:11.946667pt;}
.wsc3{word-spacing:12.106667pt;}
.ws127{word-spacing:12.288000pt;}
.wse8{word-spacing:12.320000pt;}
.wsdc{word-spacing:12.480000pt;}
.wsbe{word-spacing:12.533333pt;}
.ws157{word-spacing:12.672000pt;}
.wsf4{word-spacing:12.693333pt;}
.ws98{word-spacing:12.800000pt;}
.wsd4{word-spacing:13.280000pt;}
.wsc4{word-spacing:13.386667pt;}
.wsd5{word-spacing:13.600000pt;}
.ws1b{word-spacing:13.973333pt;}
.ws85{word-spacing:14.080000pt;}
.ws160{word-spacing:14.336000pt;}
.ws8c{word-spacing:14.560000pt;}
.wsec{word-spacing:14.720000pt;}
.wsc5{word-spacing:15.093333pt;}
.wsc9{word-spacing:15.146667pt;}
.wsa4{word-spacing:15.306667pt;}
.wsf2{word-spacing:15.466667pt;}
.wse1{word-spacing:15.786667pt;}
.wsee{word-spacing:15.840000pt;}
.ws31{word-spacing:16.160000pt;}
.wsbc{word-spacing:16.960000pt;}
.ws15{word-spacing:17.482667pt;}
.wsc6{word-spacing:19.413333pt;}
.ws19{word-spacing:64.938667pt;}
._19{margin-left:-21.226667pt;}
._5{margin-left:-13.866667pt;}
._1a{margin-left:-12.332809pt;}
._18{margin-left:-11.086933pt;}
._14{margin-left:-10.080000pt;}
._1b{margin-left:-8.919467pt;}
._17{margin-left:-7.413333pt;}
._15{margin-left:-4.809600pt;}
._2{margin-left:-3.733333pt;}
._3{margin-left:-2.821333pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.186133pt;}
._9{width:2.240000pt;}
._1d{width:3.299200pt;}
._4{width:4.304000pt;}
._d{width:5.776000pt;}
._a{width:7.509333pt;}
._e{width:8.720000pt;}
._1c{width:9.696000pt;}
._c{width:10.643200pt;}
._12{width:12.356800pt;}
._1f{width:14.149334pt;}
._b{width:15.475200pt;}
._13{width:16.586667pt;}
._1e{width:17.482667pt;}
._6{width:19.840000pt;}
._11{width:27.045333pt;}
._16{width:29.333333pt;}
._10{width:32.480000pt;}
._f{width:33.440000pt;}
._7{width:50.005325pt;}
._8{width:1458.047978pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y42{bottom:80.005333pt;}
.yc4{bottom:80.018268pt;}
.y72{bottom:80.708903pt;}
.y18e{bottom:81.012903pt;}
.y125{bottom:83.106268pt;}
.y4{bottom:86.333337pt;}
.y15a{bottom:91.348927pt;}
.yc3{bottom:92.679602pt;}
.ya9{bottom:92.708903pt;}
.y18d{bottom:93.674236pt;}
.y8f{bottom:95.375590pt;}
.y124{bottom:95.767601pt;}
.y71{bottom:96.708903pt;}
.yf2{bottom:96.708944pt;}
.y41{bottom:96.933329pt;}
.y159{bottom:104.010261pt;}
.yc2{bottom:105.340935pt;}
.y18c{bottom:106.335570pt;}
.y123{bottom:108.428935pt;}
.ya8{bottom:108.708903pt;}
.y8e{bottom:111.375590pt;}
.y70{bottom:112.708903pt;}
.yf1{bottom:112.708944pt;}
.y158{bottom:116.671594pt;}
.y40{bottom:118.138665pt;}
.y18b{bottom:118.996903pt;}
.yc1{bottom:122.268931pt;}
.y1f{bottom:123.790666pt;}
.ya7{bottom:124.708903pt;}
.yd6{bottom:126.832926pt;}
.y8d{bottom:127.375590pt;}
.y6f{bottom:128.708903pt;}
.yf0{bottom:128.708944pt;}
.y157{bottom:129.332927pt;}
.y3f{bottom:130.799998pt;}
.y18a{bottom:131.658236pt;}
.y122{bottom:133.762268pt;}
.ya6{bottom:140.708903pt;}
.y156{bottom:141.994261pt;}
.yd5{bottom:142.832926pt;}
.y8c{bottom:143.375590pt;}
.y189{bottom:144.319570pt;}
.y6e{bottom:144.708903pt;}
.yef{bottom:144.708944pt;}
.y155{bottom:154.655594pt;}
.ya5{bottom:156.708903pt;}
.y188{bottom:156.980903pt;}
.yd4{bottom:158.832926pt;}
.y121{bottom:159.095601pt;}
.y8b{bottom:159.375590pt;}
.y6d{bottom:160.708903pt;}
.yee{bottom:160.708944pt;}
.y154{bottom:167.316927pt;}
.y187{bottom:169.642236pt;}
.y3e{bottom:171.615194pt;}
.ya4{bottom:172.708903pt;}
.yc0{bottom:172.708923pt;}
.yd3{bottom:174.832926pt;}
.y16{bottom:175.052000pt;}
.y8a{bottom:175.375590pt;}
.y6c{bottom:176.708903pt;}
.yed{bottom:176.708944pt;}
.y153{bottom:179.978261pt;}
.y186{bottom:182.303570pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y3d{bottom:187.615194pt;}
.y120{bottom:187.767590pt;}
.ya3{bottom:188.708903pt;}
.ybf{bottom:188.708923pt;}
.yd2{bottom:190.832926pt;}
.y89{bottom:191.375590pt;}
.y152{bottom:192.639594pt;}
.y6b{bottom:192.708903pt;}
.ye4{bottom:192.708944pt;}
.y185{bottom:194.964903pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y11f{bottom:200.428923pt;}
.y3c{bottom:203.615194pt;}
.ya2{bottom:204.708903pt;}
.ybe{bottom:204.708923pt;}
.y151{bottom:205.300927pt;}
.yd1{bottom:206.832926pt;}
.y88{bottom:207.375590pt;}
.y184{bottom:207.626236pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y6a{bottom:208.708903pt;}
.ye3{bottom:208.708944pt;}
.y11e{bottom:213.090257pt;}
.y150{bottom:217.962261pt;}
.y3b{bottom:219.615194pt;}
.y183{bottom:220.287570pt;}
.ya1{bottom:220.708903pt;}
.ybd{bottom:220.708923pt;}
.yd0{bottom:222.832926pt;}
.y87{bottom:223.375590pt;}
.y69{bottom:224.708903pt;}
.ye2{bottom:224.708944pt;}
.y14f{bottom:230.623594pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y182{bottom:232.948903pt;}
.ya0{bottom:236.708903pt;}
.ybc{bottom:236.708923pt;}
.y11d{bottom:238.402257pt;}
.ycf{bottom:238.832926pt;}
.y86{bottom:239.375590pt;}
.y68{bottom:240.708903pt;}
.ye1{bottom:240.708944pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y14e{bottom:243.284927pt;}
.y3a{bottom:243.948527pt;}
.y181{bottom:245.610236pt;}
.y9f{bottom:252.708903pt;}
.ybb{bottom:252.708944pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.yce{bottom:254.832926pt;}
.y85{bottom:255.375590pt;}
.y14d{bottom:255.946261pt;}
.y67{bottom:256.708903pt;}
.ye0{bottom:256.708944pt;}
.y180{bottom:258.271570pt;}
.y14c{bottom:268.607594pt;}
.y9e{bottom:268.708903pt;}
.yba{bottom:268.708944pt;}
.ycd{bottom:270.832926pt;}
.y17f{bottom:270.932903pt;}
.y84{bottom:271.375590pt;}
.y11c{bottom:271.714257pt;}
.y66{bottom:272.708903pt;}
.ydf{bottom:272.708944pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y14b{bottom:281.268927pt;}
.y17e{bottom:283.594236pt;}
.y39{bottom:284.281860pt;}
.y11b{bottom:284.375590pt;}
.y9d{bottom:284.708903pt;}
.yb9{bottom:284.708944pt;}
.ycc{bottom:286.832926pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y83{bottom:287.375590pt;}
.y65{bottom:288.708903pt;}
.yde{bottom:288.708944pt;}
.y14a{bottom:293.930261pt;}
.y17d{bottom:296.255570pt;}
.y9c{bottom:300.708903pt;}
.yb8{bottom:300.708944pt;}
.ycb{bottom:302.832926pt;}
.y82{bottom:303.375590pt;}
.y11a{bottom:303.708903pt;}
.y64{bottom:304.708903pt;}
.ydd{bottom:304.708944pt;}
.y149{bottom:306.591594pt;}
.y17c{bottom:308.916903pt;}
.yd{bottom:309.452000pt;}
.y9b{bottom:316.708903pt;}
.yb7{bottom:316.708944pt;}
.y148{bottom:319.252927pt;}
.y119{bottom:319.708903pt;}
.y63{bottom:320.708903pt;}
.ydc{bottom:320.708944pt;}
.y17b{bottom:321.578236pt;}
.y147{bottom:331.914261pt;}
.y38{bottom:332.281860pt;}
.y9a{bottom:332.708903pt;}
.yb6{bottom:332.708944pt;}
.y17a{bottom:334.239570pt;}
.yca{bottom:334.832926pt;}
.y81{bottom:335.375590pt;}
.y118{bottom:335.708903pt;}
.y62{bottom:336.708903pt;}
.ydb{bottom:336.708944pt;}
.yc{bottom:343.809333pt;}
.y146{bottom:344.575594pt;}
.y179{bottom:346.900903pt;}
.y37{bottom:348.281860pt;}
.y99{bottom:348.708903pt;}
.y117{bottom:351.708903pt;}
.y61{bottom:352.708903pt;}
.yda{bottom:352.708944pt;}
.y145{bottom:357.236927pt;}
.y178{bottom:359.562236pt;}
.yb{bottom:362.706666pt;}
.y98{bottom:364.708903pt;}
.yb5{bottom:364.708944pt;}
.y80{bottom:367.375610pt;}
.y116{bottom:367.708903pt;}
.y60{bottom:368.708903pt;}
.yd9{bottom:368.708944pt;}
.y144{bottom:369.898261pt;}
.yc9{bottom:370.832926pt;}
.y177{bottom:372.223570pt;}
.y97{bottom:380.708903pt;}
.y36{bottom:380.948527pt;}
.y143{bottom:382.559594pt;}
.y115{bottom:383.708903pt;}
.y5f{bottom:384.708903pt;}
.yd8{bottom:384.708944pt;}
.y176{bottom:384.884903pt;}
.yc8{bottom:386.832926pt;}
.y142{bottom:395.220927pt;}
.y96{bottom:396.708903pt;}
.y35{bottom:396.948527pt;}
.y175{bottom:397.546236pt;}
.y114{bottom:399.708903pt;}
.y5e{bottom:400.708903pt;}
.yb4{bottom:400.708944pt;}
.yc7{bottom:402.832926pt;}
.y141{bottom:407.882261pt;}
.y174{bottom:410.207570pt;}
.y95{bottom:412.708903pt;}
.y34{bottom:412.948527pt;}
.y7f{bottom:415.375570pt;}
.y113{bottom:415.708903pt;}
.y5d{bottom:416.708903pt;}
.yb3{bottom:416.708944pt;}
.yc6{bottom:418.832926pt;}
.y140{bottom:420.543594pt;}
.y190{bottom:422.858236pt;}
.y173{bottom:422.868903pt;}
.y94{bottom:428.708903pt;}
.y33{bottom:428.948527pt;}
.y7e{bottom:431.375570pt;}
.y112{bottom:431.708903pt;}
.y5c{bottom:432.708903pt;}
.yb2{bottom:432.708944pt;}
.y13f{bottom:433.204927pt;}
.y18f{bottom:435.519570pt;}
.y172{bottom:435.530236pt;}
.y93{bottom:444.708903pt;}
.y32{bottom:444.948527pt;}
.y13e{bottom:445.866261pt;}
.ya{bottom:446.990669pt;}
.y7d{bottom:447.375570pt;}
.y111{bottom:447.708903pt;}
.y171{bottom:448.191570pt;}
.y5b{bottom:448.708903pt;}
.yb1{bottom:448.708944pt;}
.yc5{bottom:450.832926pt;}
.y13d{bottom:458.527594pt;}
.yec{bottom:460.708903pt;}
.y170{bottom:460.852903pt;}
.y31{bottom:460.948527pt;}
.y9{bottom:462.990669pt;}
.y7c{bottom:463.375570pt;}
.y110{bottom:463.708903pt;}
.y5a{bottom:464.708903pt;}
.yb0{bottom:464.708944pt;}
.y13c{bottom:471.188927pt;}
.y16f{bottom:473.514236pt;}
.y92{bottom:476.708903pt;}
.y30{bottom:476.948527pt;}
.y8{bottom:478.990666pt;}
.y7b{bottom:479.375570pt;}
.y10f{bottom:479.708903pt;}
.y59{bottom:480.708903pt;}
.yaf{bottom:480.708944pt;}
.y13b{bottom:483.850261pt;}
.y16e{bottom:486.175570pt;}
.yeb{bottom:492.708903pt;}
.y2f{bottom:492.948527pt;}
.yd7{bottom:493.190267pt;}
.y7{bottom:494.990666pt;}
.y7a{bottom:495.375570pt;}
.y10e{bottom:495.708903pt;}
.y13a{bottom:496.511594pt;}
.y58{bottom:496.708903pt;}
.yae{bottom:496.708944pt;}
.y16d{bottom:498.836903pt;}
.yea{bottom:508.708903pt;}
.y2e{bottom:508.948527pt;}
.y139{bottom:509.172927pt;}
.y79{bottom:511.375570pt;}
.y16c{bottom:511.498236pt;}
.y10d{bottom:511.708903pt;}
.y57{bottom:512.708903pt;}
.yad{bottom:512.708944pt;}
.y138{bottom:521.834261pt;}
.y16b{bottom:524.159570pt;}
.ye9{bottom:524.708903pt;}
.y2d{bottom:524.948527pt;}
.y10c{bottom:527.708903pt;}
.y56{bottom:528.708903pt;}
.yac{bottom:528.708944pt;}
.y137{bottom:534.495594pt;}
.y16a{bottom:536.820903pt;}
.ye8{bottom:540.708903pt;}
.y2c{bottom:540.948527pt;}
.y10b{bottom:543.708903pt;}
.y78{bottom:544.042236pt;}
.y55{bottom:544.708903pt;}
.yab{bottom:544.708944pt;}
.y136{bottom:547.156927pt;}
.y169{bottom:549.482236pt;}
.ye7{bottom:556.708903pt;}
.y2b{bottom:556.948527pt;}
.y10a{bottom:559.708903pt;}
.y135{bottom:559.818261pt;}
.y77{bottom:560.042236pt;}
.y54{bottom:560.708903pt;}
.y168{bottom:562.143570pt;}
.y134{bottom:572.479594pt;}
.yfb{bottom:572.708903pt;}
.y2a{bottom:572.948527pt;}
.y167{bottom:574.804903pt;}
.y109{bottom:575.708903pt;}
.y76{bottom:576.042236pt;}
.y53{bottom:576.708903pt;}
.yaa{bottom:576.708944pt;}
.y133{bottom:585.140927pt;}
.y166{bottom:587.466236pt;}
.ye6{bottom:588.708903pt;}
.y29{bottom:588.948527pt;}
.y108{bottom:591.708903pt;}
.y75{bottom:592.042236pt;}
.y52{bottom:592.708903pt;}
.y132{bottom:597.802261pt;}
.y165{bottom:600.127570pt;}
.yfa{bottom:604.708903pt;}
.y28{bottom:604.948527pt;}
.y107{bottom:607.708903pt;}
.y74{bottom:608.042236pt;}
.y51{bottom:608.708903pt;}
.y131{bottom:610.463594pt;}
.y164{bottom:612.788903pt;}
.ye5{bottom:620.708903pt;}
.y130{bottom:623.124927pt;}
.y106{bottom:623.708903pt;}
.y50{bottom:624.708903pt;}
.y163{bottom:625.450236pt;}
.y12f{bottom:635.786261pt;}
.yf9{bottom:636.708903pt;}
.y162{bottom:638.111570pt;}
.y105{bottom:639.708903pt;}
.y4f{bottom:640.708903pt;}
.y6{bottom:645.598667pt;}
.y27{bottom:648.053063pt;}
.y12e{bottom:648.447594pt;}
.y161{bottom:650.772903pt;}
.yf8{bottom:652.708903pt;}
.y104{bottom:655.708903pt;}
.y4e{bottom:656.708903pt;}
.y26{bottom:660.714396pt;}
.y12d{bottom:661.108927pt;}
.y160{bottom:663.434236pt;}
.yf7{bottom:668.708903pt;}
.y3{bottom:668.977329pt;}
.y103{bottom:671.708903pt;}
.y4d{bottom:672.708903pt;}
.y15f{bottom:676.095570pt;}
.yf6{bottom:684.708903pt;}
.y102{bottom:687.708903pt;}
.y4c{bottom:688.708903pt;}
.y15e{bottom:688.756903pt;}
.y12c{bottom:690.042236pt;}
.y25{bottom:694.357503pt;}
.yf5{bottom:700.708903pt;}
.y15d{bottom:701.418236pt;}
.y101{bottom:703.708903pt;}
.y4b{bottom:704.708903pt;}
.y15c{bottom:714.079570pt;}
.yf4{bottom:716.708903pt;}
.y100{bottom:719.708903pt;}
.y4a{bottom:720.708903pt;}
.y15b{bottom:726.740903pt;}
.y24{bottom:732.351581pt;}
.yff{bottom:735.708903pt;}
.y49{bottom:736.708903pt;}
.y12b{bottom:739.402236pt;}
.yf3{bottom:748.708903pt;}
.yfe{bottom:751.708903pt;}
.y12a{bottom:752.063570pt;}
.y23{bottom:752.354248pt;}
.y48{bottom:752.708903pt;}
.y129{bottom:764.724903pt;}
.yfd{bottom:767.708903pt;}
.y47{bottom:768.708903pt;}
.y128{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y46{bottom:784.708903pt;}
.y127{bottom:790.047570pt;}
.yfc{bottom:799.708903pt;}
.y45{bottom:800.708903pt;}
.y126{bottom:802.708903pt;}
.y22{bottom:822.992964pt;}
.y73{bottom:835.262533pt;}
.y91{bottom:835.654126pt;}
.y44{bottom:835.654289pt;}
.y21{bottom:835.654297pt;}
.y90{bottom:836.112793pt;}
.y43{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h14{height:26.043733pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h13{height:37.205333pt;}
.hb{height:37.376000pt;}
.h17{height:37.802667pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h16{height:43.648000pt;}
.hf{height:46.506667pt;}
.h10{height:47.253333pt;}
.h15{height:47.680000pt;}
.h2{height:48.960000pt;}
.he{height:52.746667pt;}
.h12{height:54.560000pt;}
.hd{height:57.658667pt;}
.h11{height:58.021333pt;}
.hc{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x9{left:68.976400pt;}
.x7{left:83.149602pt;}
.x8{left:86.932800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:431.874146pt;}
.xa{left:497.529053pt;}
}




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