
    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_f32e9c29eb6016114ec3c98c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_838e62438df9a2ec17870cb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_944403a4a37d83485de30fe3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_3f1df06e6b3d4052dcdbfb83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_fb59efd99d0785bfd43ccdd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2b45fb5f5850a03d0f25f257.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_07f4d72a167d4a83b70ff999.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5026be240a05cd6469efbde6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_77a32018626176291fbe9460.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_c77391339aa024a0f72a60c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120605;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:-21.701400px;}
.v3{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls5c{letter-spacing:-5.280000px;}
.ls92{letter-spacing:-2.640000px;}
.ls8e{letter-spacing:-1.152000px;}
.ls5{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8c{letter-spacing:-0.336000px;}
.ls93{letter-spacing:-0.288000px;}
.ls58{letter-spacing:-0.240000px;}
.ls34{letter-spacing:-0.180000px;}
.ls8b{letter-spacing:-0.144000px;}
.ls5b{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.096000px;}
.ls48{letter-spacing:-0.060000px;}
.ls6c{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.005676px;}
.ls6a{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls7b{letter-spacing:0.096000px;}
.ls3d{letter-spacing:0.119400px;}
.ls45{letter-spacing:0.120000px;}
.ls72{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls85{letter-spacing:0.192000px;}
.ls21{letter-spacing:0.240000px;}
.ls54{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.420000px;}
.ls89{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.480000px;}
.ls70{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls73{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls4f{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.672000px;}
.ls2d{letter-spacing:0.720000px;}
.ls6d{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.780000px;}
.ls82{letter-spacing:0.816000px;}
.ls26{letter-spacing:0.840000px;}
.ls76{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.900000px;}
.ls90{letter-spacing:0.912000px;}
.ls41{letter-spacing:0.943800px;}
.ls47{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.056000px;}
.ls7{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.140000px;}
.ls77{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.200000px;}
.ls75{letter-spacing:1.248000px;}
.ls2a{letter-spacing:1.260000px;}
.ls23{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.344000px;}
.ls10{letter-spacing:1.380000px;}
.ls7f{letter-spacing:1.392000px;}
.ls1a{letter-spacing:1.440000px;}
.ls8a{letter-spacing:1.488000px;}
.ls1d{letter-spacing:1.500000px;}
.ls81{letter-spacing:1.536000px;}
.ls3f{letter-spacing:1.560000px;}
.ls8f{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.620000px;}
.ls84{letter-spacing:1.632000px;}
.ls3e{letter-spacing:1.680000px;}
.ls3a{letter-spacing:1.740000px;}
.ls68{letter-spacing:1.776000px;}
.ls8{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.824000px;}
.ls12{letter-spacing:1.860000px;}
.lsb{letter-spacing:1.920000px;}
.ls6f{letter-spacing:1.968000px;}
.ls18{letter-spacing:1.980000px;}
.ls7c{letter-spacing:2.016000px;}
.ls46{letter-spacing:2.040000px;}
.ls5f{letter-spacing:2.064000px;}
.ls4c{letter-spacing:2.100000px;}
.ls53{letter-spacing:2.160000px;}
.ls67{letter-spacing:2.208000px;}
.ls17{letter-spacing:2.220000px;}
.ls78{letter-spacing:2.256000px;}
.ls2b{letter-spacing:2.280000px;}
.ls61{letter-spacing:2.340000px;}
.ls1f{letter-spacing:2.400000px;}
.ls88{letter-spacing:2.448000px;}
.ls1c{letter-spacing:2.460000px;}
.ls91{letter-spacing:2.520000px;}
.ls20{letter-spacing:2.580000px;}
.ls14{letter-spacing:2.640000px;}
.ls33{letter-spacing:2.700000px;}
.ls74{letter-spacing:2.736000px;}
.ls50{letter-spacing:2.760000px;}
.ls2c{letter-spacing:2.820000px;}
.ls32{letter-spacing:2.880000px;}
.ls7a{letter-spacing:2.928000px;}
.ls44{letter-spacing:2.940000px;}
.ls6b{letter-spacing:2.976000px;}
.ls43{letter-spacing:3.000000px;}
.ls11{letter-spacing:3.060000px;}
.ls4e{letter-spacing:3.120000px;}
.ls3b{letter-spacing:3.180000px;}
.ls7e{letter-spacing:3.216000px;}
.lsd{letter-spacing:3.240000px;}
.ls55{letter-spacing:3.300000px;}
.ls16{letter-spacing:3.360000px;}
.ls66{letter-spacing:3.408000px;}
.ls49{letter-spacing:3.420000px;}
.ls5d{letter-spacing:3.480000px;}
.ls57{letter-spacing:3.540000px;}
.ls4d{letter-spacing:3.660000px;}
.ls37{letter-spacing:3.720000px;}
.ls2e{letter-spacing:3.780000px;}
.ls80{letter-spacing:3.792000px;}
.ls31{letter-spacing:3.900000px;}
.ls36{letter-spacing:3.960000px;}
.ls7d{letter-spacing:4.080000px;}
.ls4b{letter-spacing:4.140000px;}
.ls60{letter-spacing:4.200000px;}
.ls27{letter-spacing:4.260000px;}
.ls87{letter-spacing:4.272000px;}
.ls3c{letter-spacing:4.500000px;}
.ls71{letter-spacing:4.512000px;}
.ls83{letter-spacing:4.560000px;}
.ls13{letter-spacing:4.680000px;}
.ls59{letter-spacing:4.800000px;}
.ls39{letter-spacing:4.860000px;}
.ls51{letter-spacing:4.980000px;}
.ls63{letter-spacing:5.160000px;}
.ls62{letter-spacing:5.280000px;}
.ls35{letter-spacing:5.340000px;}
.ls5a{letter-spacing:5.640000px;}
.ls30{letter-spacing:5.820000px;}
.ls4a{letter-spacing:6.120000px;}
.ls52{letter-spacing:6.180000px;}
.ls56{letter-spacing:6.300000px;}
.ls1e{letter-spacing:6.840000px;}
.ls42{letter-spacing:7.320000px;}
.ls65{letter-spacing:7.620000px;}
.ls64{letter-spacing:8.340000px;}
.ls38{letter-spacing:8.640000px;}
.ls0{letter-spacing:59.532876px;}
.ls1{letter-spacing:59.533476px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws49{word-spacing:-21.120000px;}
.ws6d{word-spacing:-19.800000px;}
.ws35{word-spacing:-19.500000px;}
.ws34{word-spacing:-18.720000px;}
.ws4a{word-spacing:-18.120000px;}
.ws36{word-spacing:-17.880000px;}
.wsb{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.514000px;}
.wsc{word-spacing:-17.460000px;}
.ws80{word-spacing:-17.400000px;}
.ws56{word-spacing:-17.220000px;}
.ws6f{word-spacing:-17.040000px;}
.ws78{word-spacing:-16.980000px;}
.ws4{word-spacing:-16.680000px;}
.ws37{word-spacing:-16.560000px;}
.wse{word-spacing:-16.440000px;}
.ws79{word-spacing:-16.380000px;}
.ws5{word-spacing:-16.320000px;}
.ws53{word-spacing:-16.200000px;}
.ws7a{word-spacing:-16.140000px;}
.ws70{word-spacing:-15.900000px;}
.ws7f{word-spacing:-15.840000px;}
.ws6e{word-spacing:-15.720000px;}
.ws54{word-spacing:-15.660000px;}
.wsb5{word-spacing:-15.600000px;}
.ws38{word-spacing:-15.480000px;}
.ws10{word-spacing:-15.420000px;}
.ws7b{word-spacing:-15.180000px;}
.ws55{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.060000px;}
.wsd{word-spacing:-15.000000px;}
.wsb4{word-spacing:-14.928000px;}
.ws93{word-spacing:-14.208000px;}
.ws95{word-spacing:-14.064000px;}
.ws7{word-spacing:-13.344000px;}
.ws82{word-spacing:-12.768000px;}
.ws6{word-spacing:-12.510000px;}
.ws92{word-spacing:-12.288000px;}
.ws97{word-spacing:-12.192000px;}
.ws96{word-spacing:-12.096000px;}
.ws94{word-spacing:-12.048000px;}
.ws33{word-spacing:-12.000000px;}
.ws81{word-spacing:-11.952000px;}
.ws91{word-spacing:-11.856000px;}
.ws98{word-spacing:-10.848000px;}
.ws1{word-spacing:-10.210662px;}
.wsb3{word-spacing:-9.360000px;}
.ws39{word-spacing:-8.745000px;}
.wsad{word-spacing:-4.560000px;}
.ws2a{word-spacing:-3.780000px;}
.ws68{word-spacing:-3.420000px;}
.ws88{word-spacing:-3.180000px;}
.wsa0{word-spacing:-2.976000px;}
.ws9{word-spacing:-2.886000px;}
.ws4e{word-spacing:-2.880000px;}
.ws86{word-spacing:-2.760000px;}
.ws9e{word-spacing:-2.736000px;}
.ws1b{word-spacing:-2.700000px;}
.ws32{word-spacing:-2.640000px;}
.ws26{word-spacing:-2.460000px;}
.ws4d{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.220000px;}
.wsa7{word-spacing:-2.064000px;}
.ws9c{word-spacing:-2.016000px;}
.ws21{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.920000px;}
.ws3f{word-spacing:-1.860000px;}
.ws84{word-spacing:-1.800000px;}
.ws62{word-spacing:-1.740000px;}
.ws5c{word-spacing:-1.680000px;}
.ws1f{word-spacing:-1.620000px;}
.wsb2{word-spacing:-1.536000px;}
.ws20{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.380000px;}
.wsa1{word-spacing:-1.344000px;}
.ws2e{word-spacing:-1.200000px;}
.ws7d{word-spacing:-1.140000px;}
.ws24{word-spacing:-0.840000px;}
.ws85{word-spacing:-0.780000px;}
.ws8d{word-spacing:-0.768000px;}
.ws29{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.660000px;}
.ws73{word-spacing:-0.600000px;}
.ws3e{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.480000px;}
.wsaf{word-spacing:-0.432000px;}
.ws43{word-spacing:-0.420000px;}
.wsa8{word-spacing:-0.336000px;}
.ws66{word-spacing:-0.300000px;}
.ws9d{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.240000px;}
.wsae{word-spacing:-0.192000px;}
.ws30{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.120000px;}
.ws3b{word-spacing:-0.060000px;}
.wsa2{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsaa{word-spacing:0.048000px;}
.ws42{word-spacing:0.060000px;}
.wsa4{word-spacing:0.096000px;}
.ws63{word-spacing:0.120000px;}
.wsbb{word-spacing:0.144000px;}
.ws9b{word-spacing:0.192000px;}
.ws28{word-spacing:0.240000px;}
.wsb7{word-spacing:0.288000px;}
.ws9a{word-spacing:0.336000px;}
.wsa{word-spacing:0.360000px;}
.ws41{word-spacing:0.480000px;}
.ws45{word-spacing:0.540000px;}
.ws17{word-spacing:0.600000px;}
.ws69{word-spacing:0.660000px;}
.ws77{word-spacing:0.672000px;}
.wsba{word-spacing:0.768000px;}
.ws60{word-spacing:0.840000px;}
.ws46{word-spacing:0.900000px;}
.ws4c{word-spacing:0.960000px;}
.ws7c{word-spacing:1.080000px;}
.ws76{word-spacing:1.104000px;}
.ws64{word-spacing:1.140000px;}
.wsa9{word-spacing:1.392000px;}
.ws19{word-spacing:1.500000px;}
.wsb8{word-spacing:1.536000px;}
.ws58{word-spacing:1.620000px;}
.ws83{word-spacing:1.740000px;}
.ws16{word-spacing:1.800000px;}
.ws90{word-spacing:1.872000px;}
.ws40{word-spacing:1.920000px;}
.ws4f{word-spacing:1.980000px;}
.ws9f{word-spacing:2.016000px;}
.ws7e{word-spacing:2.064000px;}
.ws14{word-spacing:2.100000px;}
.wsb0{word-spacing:2.160000px;}
.ws1e{word-spacing:2.220000px;}
.wsac{word-spacing:2.256000px;}
.ws44{word-spacing:2.280000px;}
.ws71{word-spacing:2.340000px;}
.wsab{word-spacing:2.448000px;}
.ws4b{word-spacing:2.544000px;}
.ws22{word-spacing:2.640000px;}
.wsa6{word-spacing:2.688000px;}
.ws75{word-spacing:2.736000px;}
.ws99{word-spacing:2.784000px;}
.ws3d{word-spacing:2.880000px;}
.ws5f{word-spacing:2.928000px;}
.ws8f{word-spacing:2.976000px;}
.ws6c{word-spacing:3.024000px;}
.ws89{word-spacing:3.120000px;}
.ws8e{word-spacing:3.168000px;}
.ws2b{word-spacing:3.240000px;}
.ws6b{word-spacing:3.264000px;}
.ws8a{word-spacing:3.300000px;}
.wsa5{word-spacing:3.312000px;}
.ws65{word-spacing:3.360000px;}
.wsb6{word-spacing:3.408000px;}
.ws48{word-spacing:3.480000px;}
.ws1d{word-spacing:3.540000px;}
.wsb9{word-spacing:3.552000px;}
.ws47{word-spacing:3.600000px;}
.ws3a{word-spacing:3.660000px;}
.wsa3{word-spacing:3.696000px;}
.ws5b{word-spacing:3.720000px;}
.ws59{word-spacing:3.744000px;}
.ws1a{word-spacing:3.780000px;}
.wsb1{word-spacing:3.792000px;}
.ws18{word-spacing:3.840000px;}
.ws52{word-spacing:3.888000px;}
.ws5d{word-spacing:3.936000px;}
.ws72{word-spacing:3.960000px;}
.ws51{word-spacing:3.984000px;}
.ws61{word-spacing:4.020000px;}
.ws27{word-spacing:4.200000px;}
.ws5e{word-spacing:4.224000px;}
.ws15{word-spacing:4.320000px;}
.ws67{word-spacing:4.440000px;}
.ws50{word-spacing:4.500000px;}
.ws3c{word-spacing:4.620000px;}
.ws87{word-spacing:4.680000px;}
.ws11{word-spacing:4.740000px;}
.ws2c{word-spacing:4.800000px;}
.ws2f{word-spacing:4.860000px;}
.ws12{word-spacing:4.920000px;}
.ws13{word-spacing:4.980000px;}
.ws74{word-spacing:5.280000px;}
.ws8c{word-spacing:5.460000px;}
.ws8b{word-spacing:5.520000px;}
.ws1c{word-spacing:7.620000px;}
.ws3{word-spacing:49.321428px;}
._d{margin-left:-2898.096000px;}
._2c{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-8.097000px;}
._7{margin-left:-6.543000px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.197000px;}
._8{width:1.200000px;}
._a{width:2.970000px;}
._2d{width:4.140000px;}
._c{width:5.280000px;}
._b{width:6.480000px;}
._9{width:7.740000px;}
._3{width:60.282042px;}
._12{width:62.496000px;}
._10{width:71.190000px;}
._11{width:76.176000px;}
._27{width:129.120000px;}
._1b{width:135.744000px;}
._13{width:174.384000px;}
._19{width:184.332000px;}
._18{width:188.499000px;}
._25{width:197.724000px;}
._2a{width:217.056000px;}
._1f{width:220.464000px;}
._28{width:237.456000px;}
._16{width:241.593000px;}
._1d{width:257.040000px;}
._17{width:274.956000px;}
._29{width:424.896000px;}
._20{width:526.608000px;}
._2b{width:577.056000px;}
._26{width:595.776000px;}
._1c{width:603.696000px;}
._22{width:651.744000px;}
._24{width:659.712000px;}
._e{width:669.936000px;}
._15{width:697.008000px;}
._f{width:827.568000px;}
._14{width:952.128000px;}
._21{width:1385.472000px;}
._1e{width:1401.504000px;}
._1a{width:1428.144000px;}
._23{width:1476.144000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y19e{bottom:80.263500px;}
.y7c{bottom:83.635350px;}
.yd8{bottom:83.770350px;}
.y62{bottom:83.772600px;}
.y122{bottom:84.286950px;}
.yf2{bottom:84.369900px;}
.y119{bottom:84.371250px;}
.y11d{bottom:84.499950px;}
.y2a{bottom:88.333800px;}
.y15c{bottom:95.121900px;}
.y19d{bottom:95.263500px;}
.yb5{bottom:97.068450px;}
.yf1{bottom:100.113900px;}
.y118{bottom:100.115250px;}
.y11c{bottom:100.243950px;}
.y7b{bottom:101.635350px;}
.yd7{bottom:101.770350px;}
.y61{bottom:101.772600px;}
.y29{bottom:103.330050px;}
.y15b{bottom:110.121900px;}
.y19c{bottom:110.263500px;}
.yb4{bottom:113.316450px;}
.yf0{bottom:115.857900px;}
.y117{bottom:115.859250px;}
.y11b{bottom:115.987950px;}
.y28{bottom:118.330050px;}
.ydf{bottom:119.509350px;}
.y7a{bottom:119.635350px;}
.yd6{bottom:119.770350px;}
.y60{bottom:119.772600px;}
.y15a{bottom:125.121900px;}
.y19b{bottom:125.263500px;}
.yb3{bottom:129.564450px;}
.y11a{bottom:131.731950px;}
.yde{bottom:137.509350px;}
.y79{bottom:137.635350px;}
.yd5{bottom:137.770350px;}
.y5f{bottom:137.772600px;}
.y159{bottom:140.121900px;}
.y19a{bottom:140.263500px;}
.yb2{bottom:146.064450px;}
.y158{bottom:155.121900px;}
.y199{bottom:155.263500px;}
.ydd{bottom:155.509350px;}
.y12b{bottom:155.635350px;}
.yd4{bottom:155.770350px;}
.y5e{bottom:155.772600px;}
.yb1{bottom:162.312450px;}
.y157{bottom:170.121900px;}
.y198{bottom:170.263500px;}
.y78{bottom:173.230350px;}
.ydc{bottom:173.509350px;}
.y12a{bottom:173.635350px;}
.yd3{bottom:173.770350px;}
.y5d{bottom:173.772600px;}
.yb0{bottom:178.812450px;}
.y156{bottom:185.121900px;}
.y197{bottom:185.263500px;}
.ydb{bottom:191.509350px;}
.y129{bottom:191.635350px;}
.yd2{bottom:191.770350px;}
.y5c{bottom:191.772600px;}
.yaf{bottom:195.060450px;}
.y155{bottom:200.121900px;}
.y196{bottom:200.263500px;}
.y128{bottom:209.635350px;}
.yd1{bottom:209.770350px;}
.y5b{bottom:209.772600px;}
.yae{bottom:211.560450px;}
.y154{bottom:215.121900px;}
.y195{bottom:215.263500px;}
.yda{bottom:227.365350px;}
.y127{bottom:227.635350px;}
.y77{bottom:227.770350px;}
.y5a{bottom:227.772600px;}
.yad{bottom:228.060450px;}
.y153{bottom:230.121900px;}
.y194{bottom:230.263500px;}
.yac{bottom:244.423350px;}
.y152{bottom:245.121900px;}
.y193{bottom:245.263500px;}
.y126{bottom:245.635350px;}
.y76{bottom:245.770350px;}
.y59{bottom:245.772600px;}
.y151{bottom:260.121900px;}
.y192{bottom:260.263500px;}
.yab{bottom:260.923350px;}
.yd9{bottom:263.230350px;}
.y125{bottom:263.635350px;}
.y75{bottom:263.770350px;}
.y58{bottom:263.772600px;}
.y27{bottom:267.054900px;}
.y150{bottom:275.121900px;}
.y191{bottom:275.263500px;}
.yaa{bottom:277.171350px;}
.y124{bottom:281.635350px;}
.y74{bottom:281.770350px;}
.y57{bottom:281.772600px;}
.y26{bottom:285.064200px;}
.y14f{bottom:290.121900px;}
.y190{bottom:290.263500px;}
.ya9{bottom:293.419350px;}
.y73{bottom:299.770350px;}
.y56{bottom:299.772600px;}
.y14e{bottom:305.121900px;}
.y18f{bottom:305.263500px;}
.ya8{bottom:309.667350px;}
.y25{bottom:312.409200px;}
.y123{bottom:317.230350px;}
.y72{bottom:317.770350px;}
.y55{bottom:317.772600px;}
.y14d{bottom:320.121900px;}
.y18e{bottom:320.263500px;}
.ya7{bottom:325.915350px;}
.y24{bottom:330.409200px;}
.y14c{bottom:335.121900px;}
.y18d{bottom:335.263500px;}
.y71{bottom:335.770350px;}
.y54{bottom:335.772600px;}
.ya6{bottom:342.415350px;}
.y23{bottom:348.409200px;}
.y14b{bottom:350.121900px;}
.y18c{bottom:350.263500px;}
.y70{bottom:353.770350px;}
.y53{bottom:353.772600px;}
.ya5{bottom:358.663350px;}
.y14a{bottom:365.121900px;}
.y18b{bottom:365.263500px;}
.y22{bottom:366.409200px;}
.y6f{bottom:371.770350px;}
.y52{bottom:371.772600px;}
.ya4{bottom:374.911350px;}
.y149{bottom:380.121900px;}
.y18a{bottom:380.263500px;}
.y21{bottom:384.409200px;}
.y6e{bottom:389.770350px;}
.y51{bottom:389.772600px;}
.ya3{bottom:391.159350px;}
.y148{bottom:395.121900px;}
.y189{bottom:395.263500px;}
.y20{bottom:402.409200px;}
.ya2{bottom:407.407350px;}
.y6d{bottom:407.770350px;}
.y50{bottom:407.772600px;}
.y147{bottom:410.121900px;}
.y188{bottom:410.263500px;}
.y1f{bottom:420.409200px;}
.ya1{bottom:423.655350px;}
.y187{bottom:425.263500px;}
.y6c{bottom:425.770350px;}
.y4f{bottom:425.772600px;}
.y1e{bottom:438.409200px;}
.ya0{bottom:440.155350px;}
.y186{bottom:440.263500px;}
.y146{bottom:443.245350px;}
.y6b{bottom:443.770350px;}
.y4e{bottom:443.772600px;}
.y185{bottom:455.263500px;}
.y9f{bottom:456.403350px;}
.y1d{bottom:456.409200px;}
.y6a{bottom:461.770350px;}
.y4d{bottom:461.772600px;}
.y184{bottom:470.263500px;}
.y9e{bottom:472.903350px;}
.y1c{bottom:474.409200px;}
.y69{bottom:479.770350px;}
.y4c{bottom:479.772600px;}
.y183{bottom:485.263500px;}
.y9d{bottom:489.151350px;}
.y1b{bottom:492.409200px;}
.y121{bottom:495.941400px;}
.y68{bottom:497.770350px;}
.y4b{bottom:497.772600px;}
.y145{bottom:497.785350px;}
.y182{bottom:500.263500px;}
.y9c{bottom:505.399350px;}
.y1a{bottom:510.409200px;}
.y120{bottom:511.685400px;}
.y181{bottom:515.263500px;}
.y144{bottom:515.380350px;}
.y67{bottom:515.770350px;}
.y4a{bottom:515.772600px;}
.y9b{bottom:521.899350px;}
.y11f{bottom:527.429400px;}
.y180{bottom:530.263500px;}
.y66{bottom:533.770350px;}
.y49{bottom:533.772600px;}
.y9a{bottom:538.147350px;}
.y17f{bottom:545.263500px;}
.y143{bottom:551.380350px;}
.y65{bottom:551.770350px;}
.y48{bottom:551.772600px;}
.y99{bottom:554.647350px;}
.y19{bottom:555.567300px;}
.y17e{bottom:560.263500px;}
.y18{bottom:568.018050px;}
.yd0{bottom:569.770350px;}
.y47{bottom:569.772600px;}
.y98{bottom:570.895350px;}
.y17d{bottom:575.263500px;}
.y97{bottom:587.395350px;}
.ycf{bottom:587.770350px;}
.y46{bottom:587.772600px;}
.y142{bottom:587.785350px;}
.y17c{bottom:590.263500px;}
.y17{bottom:599.733600px;}
.y96{bottom:603.643350px;}
.y17b{bottom:605.263500px;}
.yce{bottom:605.770350px;}
.y45{bottom:605.772600px;}
.y141{bottom:605.785350px;}
.y115{bottom:605.927100px;}
.yfe{bottom:617.312100px;}
.y16{bottom:618.658950px;}
.y95{bottom:620.143350px;}
.y17a{bottom:620.263500px;}
.y140{bottom:623.380350px;}
.ycd{bottom:623.770350px;}
.y44{bottom:623.772600px;}
.y114{bottom:623.927100px;}
.y15{bottom:632.158950px;}
.y179{bottom:635.263500px;}
.yfd{bottom:635.312100px;}
.y94{bottom:636.391350px;}
.y14{bottom:640.233600px;}
.ycc{bottom:641.770350px;}
.y43{bottom:641.772600px;}
.y113{bottom:641.927100px;}
.y178{bottom:650.263500px;}
.y93{bottom:652.639350px;}
.yfc{bottom:653.312100px;}
.y13{bottom:659.158800px;}
.ycb{bottom:659.770350px;}
.y42{bottom:659.772600px;}
.y13f{bottom:659.785350px;}
.y112{bottom:659.927100px;}
.y177{bottom:665.263500px;}
.y92{bottom:668.887350px;}
.yfb{bottom:671.312100px;}
.y12{bottom:672.658800px;}
.y13e{bottom:677.380350px;}
.yca{bottom:677.770350px;}
.y41{bottom:677.772600px;}
.y111{bottom:677.927100px;}
.y176{bottom:680.263500px;}
.y11{bottom:680.733600px;}
.y91{bottom:685.135350px;}
.yfa{bottom:689.312100px;}
.y175{bottom:695.263500px;}
.yc9{bottom:695.770350px;}
.y40{bottom:695.772600px;}
.y110{bottom:695.927100px;}
.y10{bottom:699.658800px;}
.y90{bottom:701.635350px;}
.yf9{bottom:707.312100px;}
.yf{bottom:707.733600px;}
.y174{bottom:710.263500px;}
.yc8{bottom:713.770350px;}
.y3f{bottom:713.772600px;}
.y13d{bottom:713.785350px;}
.y10f{bottom:713.927100px;}
.y8f{bottom:718.135350px;}
.y173{bottom:725.263500px;}
.ye{bottom:726.658800px;}
.yc7{bottom:731.770350px;}
.y3e{bottom:731.772600px;}
.y13c{bottom:731.785350px;}
.y10e{bottom:731.927100px;}
.y8e{bottom:734.383350px;}
.yd{bottom:734.733600px;}
.yef{bottom:740.170350px;}
.y172{bottom:740.263500px;}
.yf8{bottom:742.805250px;}
.yc6{bottom:749.770350px;}
.y3d{bottom:749.772600px;}
.y13b{bottom:749.785350px;}
.y10d{bottom:749.927100px;}
.y8d{bottom:750.631350px;}
.yc{bottom:753.658800px;}
.y171{bottom:755.263500px;}
.yf7{bottom:757.805250px;}
.yee{bottom:758.170350px;}
.yb{bottom:761.733600px;}
.y8c{bottom:767.131350px;}
.yc5{bottom:767.770350px;}
.y3c{bottom:767.772600px;}
.y13a{bottom:767.785350px;}
.y170{bottom:770.263500px;}
.yf6{bottom:772.805250px;}
.yed{bottom:776.170350px;}
.ya{bottom:780.658950px;}
.y8b{bottom:783.379350px;}
.y16f{bottom:785.263500px;}
.y10c{bottom:785.522100px;}
.yc4{bottom:785.770350px;}
.y3b{bottom:785.772600px;}
.y139{bottom:785.785350px;}
.yec{bottom:794.170350px;}
.y8a{bottom:799.879350px;}
.y16e{bottom:800.263500px;}
.yc3{bottom:803.770350px;}
.y3a{bottom:803.772600px;}
.y138{bottom:803.785350px;}
.yf5{bottom:803.920350px;}
.y9{bottom:809.386200px;}
.yeb{bottom:812.170350px;}
.y16d{bottom:815.263500px;}
.y89{bottom:816.379350px;}
.yf4{bottom:821.515350px;}
.yc2{bottom:821.770350px;}
.y39{bottom:821.772600px;}
.y10b{bottom:821.777100px;}
.y137{bottom:821.785350px;}
.yea{bottom:830.170350px;}
.y16c{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y88{bottom:832.879350px;}
.y136{bottom:839.380350px;}
.yc1{bottom:839.770350px;}
.y38{bottom:839.772600px;}
.y10a{bottom:839.777100px;}
.y16b{bottom:845.263500px;}
.ye9{bottom:848.170350px;}
.y87{bottom:849.127350px;}
.y7{bottom:851.380950px;}
.yc0{bottom:857.770350px;}
.y37{bottom:857.772600px;}
.y109{bottom:857.777100px;}
.y16a{bottom:860.263500px;}
.y86{bottom:865.627350px;}
.ye8{bottom:866.170350px;}
.y169{bottom:875.263500px;}
.ybf{bottom:875.770350px;}
.y36{bottom:875.772600px;}
.y108{bottom:875.777100px;}
.y135{bottom:875.785350px;}
.y85{bottom:881.875350px;}
.ye7{bottom:884.170350px;}
.y168{bottom:890.263500px;}
.ybe{bottom:893.770350px;}
.y35{bottom:893.772600px;}
.y107{bottom:893.777100px;}
.y134{bottom:893.785350px;}
.y6{bottom:897.543600px;}
.y84{bottom:898.375350px;}
.ye6{bottom:902.170350px;}
.y167{bottom:905.263500px;}
.ybd{bottom:911.770350px;}
.y34{bottom:911.772600px;}
.y106{bottom:911.777100px;}
.y133{bottom:911.785350px;}
.y83{bottom:914.623350px;}
.ye5{bottom:920.170350px;}
.y166{bottom:920.263500px;}
.ybc{bottom:929.770350px;}
.y33{bottom:929.772600px;}
.y105{bottom:929.777100px;}
.y132{bottom:929.785350px;}
.y82{bottom:931.123350px;}
.y5{bottom:934.004400px;}
.y165{bottom:935.263500px;}
.ye4{bottom:938.170350px;}
.y81{bottom:947.371350px;}
.ybb{bottom:947.770350px;}
.y32{bottom:947.772600px;}
.y104{bottom:947.777100px;}
.y131{bottom:947.785350px;}
.y164{bottom:950.263500px;}
.y163{bottom:965.263500px;}
.yba{bottom:965.770350px;}
.y31{bottom:965.772600px;}
.y103{bottom:965.777100px;}
.y130{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.ye3{bottom:973.663500px;}
.y80{bottom:976.375350px;}
.y162{bottom:980.263500px;}
.yb9{bottom:983.770350px;}
.y30{bottom:983.772600px;}
.y102{bottom:983.777100px;}
.y12f{bottom:983.785350px;}
.ye2{bottom:988.663500px;}
.y161{bottom:995.263500px;}
.yb8{bottom:1001.770350px;}
.y2f{bottom:1001.772600px;}
.y101{bottom:1001.777100px;}
.y12e{bottom:1001.785350px;}
.y7f{bottom:1005.379350px;}
.y3{bottom:1006.926000px;}
.y160{bottom:1010.263500px;}
.yb7{bottom:1019.770350px;}
.y64{bottom:1019.772600px;}
.ye1{bottom:1019.776200px;}
.y100{bottom:1019.777100px;}
.y12d{bottom:1019.785350px;}
.y15f{bottom:1025.263500px;}
.y116{bottom:1037.365350px;}
.y2e{bottom:1037.367600px;}
.ye0{bottom:1037.371200px;}
.y12c{bottom:1037.380350px;}
.y7e{bottom:1037.770350px;}
.y63{bottom:1037.772600px;}
.yff{bottom:1037.777100px;}
.y15e{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y15d{bottom:1132.413900px;}
.y7d{bottom:1132.418700px;}
.y19f{bottom:1132.423500px;}
.yf3{bottom:1132.425900px;}
.y11e{bottom:1132.435950px;}
.yb6{bottom:1132.440450px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h13{height:33.328125px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h16{height:42.023438px;}
.h12{height:42.117188px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h11{height:52.529297px;}
.h10{height:52.646484px;}
.h17{height:54.266484px;}
.h15{height:54.609375px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h14{height:58.955900px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x11{left:99.933600px;}
.x24{left:102.047400px;}
.x4{left:106.299150px;}
.x12{left:108.441600px;}
.x9{left:110.558550px;}
.x1d{left:120.506100px;}
.x1f{left:123.307350px;}
.x3{left:125.427900px;}
.x22{left:126.740400px;}
.x20{left:131.811000px;}
.xf{left:163.545600px;}
.x26{left:190.160400px;}
.x5{left:191.338500px;}
.x23{left:201.785400px;}
.x1e{left:223.061100px;}
.x10{left:288.753600px;}
.x14{left:308.217600px;}
.x13{left:371.985600px;}
.x7{left:455.041500px;}
.xa{left:457.088550px;}
.x21{left:478.341000px;}
.x28{left:482.598300px;}
.xb{left:491.108550px;}
.x1c{left:496.873950px;}
.x2a{left:503.875350px;}
.x19{left:510.928950px;}
.x1a{left:512.293950px;}
.xc{left:525.269400px;}
.x15{left:563.421600px;}
.x1b{left:566.893950px;}
.x27{left:574.850400px;}
.x18{left:583.038900px;}
.x17{left:591.648900px;}
.x25{left:600.685350px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x29{left:721.698300px;}
.xd{left:728.391600px;}
.x2b{left:743.870250px;}
.x16{left:749.661300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls5c{letter-spacing:-4.693333pt;}
.ls92{letter-spacing:-2.346667pt;}
.ls8e{letter-spacing:-1.024000pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8c{letter-spacing:-0.298667pt;}
.ls93{letter-spacing:-0.256000pt;}
.ls58{letter-spacing:-0.213333pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls8b{letter-spacing:-0.128000pt;}
.ls5b{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.085333pt;}
.ls48{letter-spacing:-0.053333pt;}
.ls6c{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.005045pt;}
.ls6a{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls7b{letter-spacing:0.085333pt;}
.ls3d{letter-spacing:0.106133pt;}
.ls45{letter-spacing:0.106667pt;}
.ls72{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls85{letter-spacing:0.170667pt;}
.ls21{letter-spacing:0.213333pt;}
.ls54{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.373333pt;}
.ls89{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls70{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls73{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls4f{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.597333pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls6d{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.693333pt;}
.ls82{letter-spacing:0.725333pt;}
.ls26{letter-spacing:0.746667pt;}
.ls76{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls90{letter-spacing:0.810667pt;}
.ls41{letter-spacing:0.838933pt;}
.ls47{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.938667pt;}
.ls7{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.013333pt;}
.ls77{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.066667pt;}
.ls75{letter-spacing:1.109333pt;}
.ls2a{letter-spacing:1.120000pt;}
.ls23{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.194667pt;}
.ls10{letter-spacing:1.226667pt;}
.ls7f{letter-spacing:1.237333pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls8a{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls81{letter-spacing:1.365333pt;}
.ls3f{letter-spacing:1.386667pt;}
.ls8f{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls84{letter-spacing:1.450667pt;}
.ls3e{letter-spacing:1.493333pt;}
.ls3a{letter-spacing:1.546667pt;}
.ls68{letter-spacing:1.578667pt;}
.ls8{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.621333pt;}
.ls12{letter-spacing:1.653333pt;}
.lsb{letter-spacing:1.706667pt;}
.ls6f{letter-spacing:1.749333pt;}
.ls18{letter-spacing:1.760000pt;}
.ls7c{letter-spacing:1.792000pt;}
.ls46{letter-spacing:1.813333pt;}
.ls5f{letter-spacing:1.834667pt;}
.ls4c{letter-spacing:1.866667pt;}
.ls53{letter-spacing:1.920000pt;}
.ls67{letter-spacing:1.962667pt;}
.ls17{letter-spacing:1.973333pt;}
.ls78{letter-spacing:2.005333pt;}
.ls2b{letter-spacing:2.026667pt;}
.ls61{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls88{letter-spacing:2.176000pt;}
.ls1c{letter-spacing:2.186667pt;}
.ls91{letter-spacing:2.240000pt;}
.ls20{letter-spacing:2.293333pt;}
.ls14{letter-spacing:2.346667pt;}
.ls33{letter-spacing:2.400000pt;}
.ls74{letter-spacing:2.432000pt;}
.ls50{letter-spacing:2.453333pt;}
.ls2c{letter-spacing:2.506667pt;}
.ls32{letter-spacing:2.560000pt;}
.ls7a{letter-spacing:2.602667pt;}
.ls44{letter-spacing:2.613333pt;}
.ls6b{letter-spacing:2.645333pt;}
.ls43{letter-spacing:2.666667pt;}
.ls11{letter-spacing:2.720000pt;}
.ls4e{letter-spacing:2.773333pt;}
.ls3b{letter-spacing:2.826667pt;}
.ls7e{letter-spacing:2.858667pt;}
.lsd{letter-spacing:2.880000pt;}
.ls55{letter-spacing:2.933333pt;}
.ls16{letter-spacing:2.986667pt;}
.ls66{letter-spacing:3.029333pt;}
.ls49{letter-spacing:3.040000pt;}
.ls5d{letter-spacing:3.093333pt;}
.ls57{letter-spacing:3.146667pt;}
.ls4d{letter-spacing:3.253333pt;}
.ls37{letter-spacing:3.306667pt;}
.ls2e{letter-spacing:3.360000pt;}
.ls80{letter-spacing:3.370667pt;}
.ls31{letter-spacing:3.466667pt;}
.ls36{letter-spacing:3.520000pt;}
.ls7d{letter-spacing:3.626667pt;}
.ls4b{letter-spacing:3.680000pt;}
.ls60{letter-spacing:3.733333pt;}
.ls27{letter-spacing:3.786667pt;}
.ls87{letter-spacing:3.797333pt;}
.ls3c{letter-spacing:4.000000pt;}
.ls71{letter-spacing:4.010667pt;}
.ls83{letter-spacing:4.053333pt;}
.ls13{letter-spacing:4.160000pt;}
.ls59{letter-spacing:4.266667pt;}
.ls39{letter-spacing:4.320000pt;}
.ls51{letter-spacing:4.426667pt;}
.ls63{letter-spacing:4.586667pt;}
.ls62{letter-spacing:4.693333pt;}
.ls35{letter-spacing:4.746667pt;}
.ls5a{letter-spacing:5.013333pt;}
.ls30{letter-spacing:5.173333pt;}
.ls4a{letter-spacing:5.440000pt;}
.ls52{letter-spacing:5.493333pt;}
.ls56{letter-spacing:5.600000pt;}
.ls1e{letter-spacing:6.080000pt;}
.ls42{letter-spacing:6.506667pt;}
.ls65{letter-spacing:6.773333pt;}
.ls64{letter-spacing:7.413333pt;}
.ls38{letter-spacing:7.680000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls1{letter-spacing:52.918645pt;}
.ws0{word-spacing:-31.284267pt;}
.ws49{word-spacing:-18.773333pt;}
.ws6d{word-spacing:-17.600000pt;}
.ws35{word-spacing:-17.333333pt;}
.ws34{word-spacing:-16.640000pt;}
.ws4a{word-spacing:-16.106667pt;}
.ws36{word-spacing:-15.893333pt;}
.wsb{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.568000pt;}
.wsc{word-spacing:-15.520000pt;}
.ws80{word-spacing:-15.466667pt;}
.ws56{word-spacing:-15.306667pt;}
.ws6f{word-spacing:-15.146667pt;}
.ws78{word-spacing:-15.093333pt;}
.ws4{word-spacing:-14.826667pt;}
.ws37{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.613333pt;}
.ws79{word-spacing:-14.560000pt;}
.ws5{word-spacing:-14.506667pt;}
.ws53{word-spacing:-14.400000pt;}
.ws7a{word-spacing:-14.346667pt;}
.ws70{word-spacing:-14.133333pt;}
.ws7f{word-spacing:-14.080000pt;}
.ws6e{word-spacing:-13.973333pt;}
.ws54{word-spacing:-13.920000pt;}
.wsb5{word-spacing:-13.866667pt;}
.ws38{word-spacing:-13.760000pt;}
.ws10{word-spacing:-13.706667pt;}
.ws7b{word-spacing:-13.493333pt;}
.ws55{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.386667pt;}
.wsd{word-spacing:-13.333333pt;}
.wsb4{word-spacing:-13.269333pt;}
.ws93{word-spacing:-12.629333pt;}
.ws95{word-spacing:-12.501333pt;}
.ws7{word-spacing:-11.861333pt;}
.ws82{word-spacing:-11.349333pt;}
.ws6{word-spacing:-11.120000pt;}
.ws92{word-spacing:-10.922667pt;}
.ws97{word-spacing:-10.837333pt;}
.ws96{word-spacing:-10.752000pt;}
.ws94{word-spacing:-10.709333pt;}
.ws33{word-spacing:-10.666667pt;}
.ws81{word-spacing:-10.624000pt;}
.ws91{word-spacing:-10.538667pt;}
.ws98{word-spacing:-9.642667pt;}
.ws1{word-spacing:-9.076144pt;}
.wsb3{word-spacing:-8.320000pt;}
.ws39{word-spacing:-7.773333pt;}
.wsad{word-spacing:-4.053333pt;}
.ws2a{word-spacing:-3.360000pt;}
.ws68{word-spacing:-3.040000pt;}
.ws88{word-spacing:-2.826667pt;}
.wsa0{word-spacing:-2.645333pt;}
.ws9{word-spacing:-2.565333pt;}
.ws4e{word-spacing:-2.560000pt;}
.ws86{word-spacing:-2.453333pt;}
.ws9e{word-spacing:-2.432000pt;}
.ws1b{word-spacing:-2.400000pt;}
.ws32{word-spacing:-2.346667pt;}
.ws26{word-spacing:-2.186667pt;}
.ws4d{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.973333pt;}
.wsa7{word-spacing:-1.834667pt;}
.ws9c{word-spacing:-1.792000pt;}
.ws21{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.706667pt;}
.ws3f{word-spacing:-1.653333pt;}
.ws84{word-spacing:-1.600000pt;}
.ws62{word-spacing:-1.546667pt;}
.ws5c{word-spacing:-1.493333pt;}
.ws1f{word-spacing:-1.440000pt;}
.wsb2{word-spacing:-1.365333pt;}
.ws20{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.226667pt;}
.wsa1{word-spacing:-1.194667pt;}
.ws2e{word-spacing:-1.066667pt;}
.ws7d{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.746667pt;}
.ws85{word-spacing:-0.693333pt;}
.ws8d{word-spacing:-0.682667pt;}
.ws29{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws73{word-spacing:-0.533333pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.426667pt;}
.wsaf{word-spacing:-0.384000pt;}
.ws43{word-spacing:-0.373333pt;}
.wsa8{word-spacing:-0.298667pt;}
.ws66{word-spacing:-0.266667pt;}
.ws9d{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.213333pt;}
.wsae{word-spacing:-0.170667pt;}
.ws30{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.106667pt;}
.ws3b{word-spacing:-0.053333pt;}
.wsa2{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.042667pt;}
.ws42{word-spacing:0.053333pt;}
.wsa4{word-spacing:0.085333pt;}
.ws63{word-spacing:0.106667pt;}
.wsbb{word-spacing:0.128000pt;}
.ws9b{word-spacing:0.170667pt;}
.ws28{word-spacing:0.213333pt;}
.wsb7{word-spacing:0.256000pt;}
.ws9a{word-spacing:0.298667pt;}
.wsa{word-spacing:0.320000pt;}
.ws41{word-spacing:0.426667pt;}
.ws45{word-spacing:0.480000pt;}
.ws17{word-spacing:0.533333pt;}
.ws69{word-spacing:0.586667pt;}
.ws77{word-spacing:0.597333pt;}
.wsba{word-spacing:0.682667pt;}
.ws60{word-spacing:0.746667pt;}
.ws46{word-spacing:0.800000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws7c{word-spacing:0.960000pt;}
.ws76{word-spacing:0.981333pt;}
.ws64{word-spacing:1.013333pt;}
.wsa9{word-spacing:1.237333pt;}
.ws19{word-spacing:1.333333pt;}
.wsb8{word-spacing:1.365333pt;}
.ws58{word-spacing:1.440000pt;}
.ws83{word-spacing:1.546667pt;}
.ws16{word-spacing:1.600000pt;}
.ws90{word-spacing:1.664000pt;}
.ws40{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.760000pt;}
.ws9f{word-spacing:1.792000pt;}
.ws7e{word-spacing:1.834667pt;}
.ws14{word-spacing:1.866667pt;}
.wsb0{word-spacing:1.920000pt;}
.ws1e{word-spacing:1.973333pt;}
.wsac{word-spacing:2.005333pt;}
.ws44{word-spacing:2.026667pt;}
.ws71{word-spacing:2.080000pt;}
.wsab{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.261333pt;}
.ws22{word-spacing:2.346667pt;}
.wsa6{word-spacing:2.389333pt;}
.ws75{word-spacing:2.432000pt;}
.ws99{word-spacing:2.474667pt;}
.ws3d{word-spacing:2.560000pt;}
.ws5f{word-spacing:2.602667pt;}
.ws8f{word-spacing:2.645333pt;}
.ws6c{word-spacing:2.688000pt;}
.ws89{word-spacing:2.773333pt;}
.ws8e{word-spacing:2.816000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.901333pt;}
.ws8a{word-spacing:2.933333pt;}
.wsa5{word-spacing:2.944000pt;}
.ws65{word-spacing:2.986667pt;}
.wsb6{word-spacing:3.029333pt;}
.ws48{word-spacing:3.093333pt;}
.ws1d{word-spacing:3.146667pt;}
.wsb9{word-spacing:3.157333pt;}
.ws47{word-spacing:3.200000pt;}
.ws3a{word-spacing:3.253333pt;}
.wsa3{word-spacing:3.285333pt;}
.ws5b{word-spacing:3.306667pt;}
.ws59{word-spacing:3.328000pt;}
.ws1a{word-spacing:3.360000pt;}
.wsb1{word-spacing:3.370667pt;}
.ws18{word-spacing:3.413333pt;}
.ws52{word-spacing:3.456000pt;}
.ws5d{word-spacing:3.498667pt;}
.ws72{word-spacing:3.520000pt;}
.ws51{word-spacing:3.541333pt;}
.ws61{word-spacing:3.573333pt;}
.ws27{word-spacing:3.733333pt;}
.ws5e{word-spacing:3.754667pt;}
.ws15{word-spacing:3.840000pt;}
.ws67{word-spacing:3.946667pt;}
.ws50{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.106667pt;}
.ws87{word-spacing:4.160000pt;}
.ws11{word-spacing:4.213333pt;}
.ws2c{word-spacing:4.266667pt;}
.ws2f{word-spacing:4.320000pt;}
.ws12{word-spacing:4.373333pt;}
.ws13{word-spacing:4.426667pt;}
.ws74{word-spacing:4.693333pt;}
.ws8c{word-spacing:4.853333pt;}
.ws8b{word-spacing:4.906667pt;}
.ws1c{word-spacing:6.773333pt;}
.ws3{word-spacing:43.841269pt;}
._d{margin-left:-2576.085333pt;}
._2c{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-7.197333pt;}
._7{margin-left:-5.816000pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.064000pt;}
._8{width:1.066667pt;}
._a{width:2.640000pt;}
._2d{width:3.680000pt;}
._c{width:4.693333pt;}
._b{width:5.760000pt;}
._9{width:6.880000pt;}
._3{width:53.584037pt;}
._12{width:55.552000pt;}
._10{width:63.280000pt;}
._11{width:67.712000pt;}
._27{width:114.773333pt;}
._1b{width:120.661333pt;}
._13{width:155.008000pt;}
._19{width:163.850667pt;}
._18{width:167.554667pt;}
._25{width:175.754667pt;}
._2a{width:192.938667pt;}
._1f{width:195.968000pt;}
._28{width:211.072000pt;}
._16{width:214.749333pt;}
._1d{width:228.480000pt;}
._17{width:244.405333pt;}
._29{width:377.685333pt;}
._20{width:468.096000pt;}
._2b{width:512.938667pt;}
._26{width:529.578667pt;}
._1c{width:536.618667pt;}
._22{width:579.328000pt;}
._24{width:586.410667pt;}
._e{width:595.498667pt;}
._15{width:619.562667pt;}
._f{width:735.616000pt;}
._14{width:846.336000pt;}
._21{width:1231.530667pt;}
._1e{width:1245.781333pt;}
._1a{width:1269.461333pt;}
._23{width:1312.128000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y19e{bottom:71.345333pt;}
.y7c{bottom:74.342533pt;}
.yd8{bottom:74.462533pt;}
.y62{bottom:74.464533pt;}
.y122{bottom:74.921733pt;}
.yf2{bottom:74.995467pt;}
.y119{bottom:74.996667pt;}
.y11d{bottom:75.111067pt;}
.y2a{bottom:78.518933pt;}
.y15c{bottom:84.552800pt;}
.y19d{bottom:84.678667pt;}
.yb5{bottom:86.283067pt;}
.yf1{bottom:88.990133pt;}
.y118{bottom:88.991333pt;}
.y11c{bottom:89.105733pt;}
.y7b{bottom:90.342533pt;}
.yd7{bottom:90.462533pt;}
.y61{bottom:90.464533pt;}
.y29{bottom:91.848933pt;}
.y15b{bottom:97.886133pt;}
.y19c{bottom:98.012000pt;}
.yb4{bottom:100.725733pt;}
.yf0{bottom:102.984800pt;}
.y117{bottom:102.986000pt;}
.y11b{bottom:103.100400pt;}
.y28{bottom:105.182267pt;}
.ydf{bottom:106.230533pt;}
.y7a{bottom:106.342533pt;}
.yd6{bottom:106.462533pt;}
.y60{bottom:106.464533pt;}
.y15a{bottom:111.219467pt;}
.y19b{bottom:111.345333pt;}
.yb3{bottom:115.168400pt;}
.y11a{bottom:117.095067pt;}
.yde{bottom:122.230533pt;}
.y79{bottom:122.342533pt;}
.yd5{bottom:122.462533pt;}
.y5f{bottom:122.464533pt;}
.y159{bottom:124.552800pt;}
.y19a{bottom:124.678667pt;}
.yb2{bottom:129.835067pt;}
.y158{bottom:137.886133pt;}
.y199{bottom:138.012000pt;}
.ydd{bottom:138.230533pt;}
.y12b{bottom:138.342533pt;}
.yd4{bottom:138.462533pt;}
.y5e{bottom:138.464533pt;}
.yb1{bottom:144.277733pt;}
.y157{bottom:151.219467pt;}
.y198{bottom:151.345333pt;}
.y78{bottom:153.982533pt;}
.ydc{bottom:154.230533pt;}
.y12a{bottom:154.342533pt;}
.yd3{bottom:154.462533pt;}
.y5d{bottom:154.464533pt;}
.yb0{bottom:158.944400pt;}
.y156{bottom:164.552800pt;}
.y197{bottom:164.678667pt;}
.ydb{bottom:170.230533pt;}
.y129{bottom:170.342533pt;}
.yd2{bottom:170.462533pt;}
.y5c{bottom:170.464533pt;}
.yaf{bottom:173.387067pt;}
.y155{bottom:177.886133pt;}
.y196{bottom:178.012000pt;}
.y128{bottom:186.342533pt;}
.yd1{bottom:186.462533pt;}
.y5b{bottom:186.464533pt;}
.yae{bottom:188.053733pt;}
.y154{bottom:191.219467pt;}
.y195{bottom:191.345333pt;}
.yda{bottom:202.102533pt;}
.y127{bottom:202.342533pt;}
.y77{bottom:202.462533pt;}
.y5a{bottom:202.464533pt;}
.yad{bottom:202.720400pt;}
.y153{bottom:204.552800pt;}
.y194{bottom:204.678667pt;}
.yac{bottom:217.265200pt;}
.y152{bottom:217.886133pt;}
.y193{bottom:218.012000pt;}
.y126{bottom:218.342533pt;}
.y76{bottom:218.462533pt;}
.y59{bottom:218.464533pt;}
.y151{bottom:231.219467pt;}
.y192{bottom:231.345333pt;}
.yab{bottom:231.931867pt;}
.yd9{bottom:233.982533pt;}
.y125{bottom:234.342533pt;}
.y75{bottom:234.462533pt;}
.y58{bottom:234.464533pt;}
.y27{bottom:237.382133pt;}
.y150{bottom:244.552800pt;}
.y191{bottom:244.678667pt;}
.yaa{bottom:246.374533pt;}
.y124{bottom:250.342533pt;}
.y74{bottom:250.462533pt;}
.y57{bottom:250.464533pt;}
.y26{bottom:253.390400pt;}
.y14f{bottom:257.886133pt;}
.y190{bottom:258.012000pt;}
.ya9{bottom:260.817200pt;}
.y73{bottom:266.462533pt;}
.y56{bottom:266.464533pt;}
.y14e{bottom:271.219467pt;}
.y18f{bottom:271.345333pt;}
.ya8{bottom:275.259867pt;}
.y25{bottom:277.697067pt;}
.y123{bottom:281.982533pt;}
.y72{bottom:282.462533pt;}
.y55{bottom:282.464533pt;}
.y14d{bottom:284.552800pt;}
.y18e{bottom:284.678667pt;}
.ya7{bottom:289.702533pt;}
.y24{bottom:293.697067pt;}
.y14c{bottom:297.886133pt;}
.y18d{bottom:298.012000pt;}
.y71{bottom:298.462533pt;}
.y54{bottom:298.464533pt;}
.ya6{bottom:304.369200pt;}
.y23{bottom:309.697067pt;}
.y14b{bottom:311.219467pt;}
.y18c{bottom:311.345333pt;}
.y70{bottom:314.462533pt;}
.y53{bottom:314.464533pt;}
.ya5{bottom:318.811867pt;}
.y14a{bottom:324.552800pt;}
.y18b{bottom:324.678667pt;}
.y22{bottom:325.697067pt;}
.y6f{bottom:330.462533pt;}
.y52{bottom:330.464533pt;}
.ya4{bottom:333.254533pt;}
.y149{bottom:337.886133pt;}
.y18a{bottom:338.012000pt;}
.y21{bottom:341.697067pt;}
.y6e{bottom:346.462533pt;}
.y51{bottom:346.464533pt;}
.ya3{bottom:347.697200pt;}
.y148{bottom:351.219467pt;}
.y189{bottom:351.345333pt;}
.y20{bottom:357.697067pt;}
.ya2{bottom:362.139867pt;}
.y6d{bottom:362.462533pt;}
.y50{bottom:362.464533pt;}
.y147{bottom:364.552800pt;}
.y188{bottom:364.678667pt;}
.y1f{bottom:373.697067pt;}
.ya1{bottom:376.582533pt;}
.y187{bottom:378.012000pt;}
.y6c{bottom:378.462533pt;}
.y4f{bottom:378.464533pt;}
.y1e{bottom:389.697067pt;}
.ya0{bottom:391.249200pt;}
.y186{bottom:391.345333pt;}
.y146{bottom:393.995867pt;}
.y6b{bottom:394.462533pt;}
.y4e{bottom:394.464533pt;}
.y185{bottom:404.678667pt;}
.y9f{bottom:405.691867pt;}
.y1d{bottom:405.697067pt;}
.y6a{bottom:410.462533pt;}
.y4d{bottom:410.464533pt;}
.y184{bottom:418.012000pt;}
.y9e{bottom:420.358533pt;}
.y1c{bottom:421.697067pt;}
.y69{bottom:426.462533pt;}
.y4c{bottom:426.464533pt;}
.y183{bottom:431.345333pt;}
.y9d{bottom:434.801200pt;}
.y1b{bottom:437.697067pt;}
.y121{bottom:440.836800pt;}
.y68{bottom:442.462533pt;}
.y4b{bottom:442.464533pt;}
.y145{bottom:442.475867pt;}
.y182{bottom:444.678667pt;}
.y9c{bottom:449.243867pt;}
.y1a{bottom:453.697067pt;}
.y120{bottom:454.831467pt;}
.y181{bottom:458.012000pt;}
.y144{bottom:458.115867pt;}
.y67{bottom:458.462533pt;}
.y4a{bottom:458.464533pt;}
.y9b{bottom:463.910533pt;}
.y11f{bottom:468.826133pt;}
.y180{bottom:471.345333pt;}
.y66{bottom:474.462533pt;}
.y49{bottom:474.464533pt;}
.y9a{bottom:478.353200pt;}
.y17f{bottom:484.678667pt;}
.y143{bottom:490.115867pt;}
.y65{bottom:490.462533pt;}
.y48{bottom:490.464533pt;}
.y99{bottom:493.019867pt;}
.y19{bottom:493.837600pt;}
.y17e{bottom:498.012000pt;}
.y18{bottom:504.904933pt;}
.yd0{bottom:506.462533pt;}
.y47{bottom:506.464533pt;}
.y98{bottom:507.462533pt;}
.y17d{bottom:511.345333pt;}
.y97{bottom:522.129200pt;}
.ycf{bottom:522.462533pt;}
.y46{bottom:522.464533pt;}
.y142{bottom:522.475867pt;}
.y17c{bottom:524.678667pt;}
.y17{bottom:533.096533pt;}
.y96{bottom:536.571867pt;}
.y17b{bottom:538.012000pt;}
.yce{bottom:538.462533pt;}
.y45{bottom:538.464533pt;}
.y141{bottom:538.475867pt;}
.y115{bottom:538.601867pt;}
.yfe{bottom:548.721867pt;}
.y16{bottom:549.919067pt;}
.y95{bottom:551.238533pt;}
.y17a{bottom:551.345333pt;}
.y140{bottom:554.115867pt;}
.ycd{bottom:554.462533pt;}
.y44{bottom:554.464533pt;}
.y114{bottom:554.601867pt;}
.y15{bottom:561.919067pt;}
.y179{bottom:564.678667pt;}
.yfd{bottom:564.721867pt;}
.y94{bottom:565.681200pt;}
.y14{bottom:569.096533pt;}
.ycc{bottom:570.462533pt;}
.y43{bottom:570.464533pt;}
.y113{bottom:570.601867pt;}
.y178{bottom:578.012000pt;}
.y93{bottom:580.123867pt;}
.yfc{bottom:580.721867pt;}
.y13{bottom:585.918933pt;}
.ycb{bottom:586.462533pt;}
.y42{bottom:586.464533pt;}
.y13f{bottom:586.475867pt;}
.y112{bottom:586.601867pt;}
.y177{bottom:591.345333pt;}
.y92{bottom:594.566533pt;}
.yfb{bottom:596.721867pt;}
.y12{bottom:597.918933pt;}
.y13e{bottom:602.115867pt;}
.yca{bottom:602.462533pt;}
.y41{bottom:602.464533pt;}
.y111{bottom:602.601867pt;}
.y176{bottom:604.678667pt;}
.y11{bottom:605.096533pt;}
.y91{bottom:609.009200pt;}
.yfa{bottom:612.721867pt;}
.y175{bottom:618.012000pt;}
.yc9{bottom:618.462533pt;}
.y40{bottom:618.464533pt;}
.y110{bottom:618.601867pt;}
.y10{bottom:621.918933pt;}
.y90{bottom:623.675867pt;}
.yf9{bottom:628.721867pt;}
.yf{bottom:629.096533pt;}
.y174{bottom:631.345333pt;}
.yc8{bottom:634.462533pt;}
.y3f{bottom:634.464533pt;}
.y13d{bottom:634.475867pt;}
.y10f{bottom:634.601867pt;}
.y8f{bottom:638.342533pt;}
.y173{bottom:644.678667pt;}
.ye{bottom:645.918933pt;}
.yc7{bottom:650.462533pt;}
.y3e{bottom:650.464533pt;}
.y13c{bottom:650.475867pt;}
.y10e{bottom:650.601867pt;}
.y8e{bottom:652.785200pt;}
.yd{bottom:653.096533pt;}
.yef{bottom:657.929200pt;}
.y172{bottom:658.012000pt;}
.yf8{bottom:660.271333pt;}
.yc6{bottom:666.462533pt;}
.y3d{bottom:666.464533pt;}
.y13b{bottom:666.475867pt;}
.y10d{bottom:666.601867pt;}
.y8d{bottom:667.227867pt;}
.yc{bottom:669.918933pt;}
.y171{bottom:671.345333pt;}
.yf7{bottom:673.604667pt;}
.yee{bottom:673.929200pt;}
.yb{bottom:677.096533pt;}
.y8c{bottom:681.894533pt;}
.yc5{bottom:682.462533pt;}
.y3c{bottom:682.464533pt;}
.y13a{bottom:682.475867pt;}
.y170{bottom:684.678667pt;}
.yf6{bottom:686.938000pt;}
.yed{bottom:689.929200pt;}
.ya{bottom:693.919067pt;}
.y8b{bottom:696.337200pt;}
.y16f{bottom:698.012000pt;}
.y10c{bottom:698.241867pt;}
.yc4{bottom:698.462533pt;}
.y3b{bottom:698.464533pt;}
.y139{bottom:698.475867pt;}
.yec{bottom:705.929200pt;}
.y8a{bottom:711.003867pt;}
.y16e{bottom:711.345333pt;}
.yc3{bottom:714.462533pt;}
.y3a{bottom:714.464533pt;}
.y138{bottom:714.475867pt;}
.yf5{bottom:714.595867pt;}
.y9{bottom:719.454400pt;}
.yeb{bottom:721.929200pt;}
.y16d{bottom:724.678667pt;}
.y89{bottom:725.670533pt;}
.yf4{bottom:730.235867pt;}
.yc2{bottom:730.462533pt;}
.y39{bottom:730.464533pt;}
.y10b{bottom:730.468533pt;}
.y137{bottom:730.475867pt;}
.yea{bottom:737.929200pt;}
.y16c{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y88{bottom:740.337200pt;}
.y136{bottom:746.115867pt;}
.yc1{bottom:746.462533pt;}
.y38{bottom:746.464533pt;}
.y10a{bottom:746.468533pt;}
.y16b{bottom:751.345333pt;}
.ye9{bottom:753.929200pt;}
.y87{bottom:754.779867pt;}
.y7{bottom:756.783067pt;}
.yc0{bottom:762.462533pt;}
.y37{bottom:762.464533pt;}
.y109{bottom:762.468533pt;}
.y16a{bottom:764.678667pt;}
.y86{bottom:769.446533pt;}
.ye8{bottom:769.929200pt;}
.y169{bottom:778.012000pt;}
.ybf{bottom:778.462533pt;}
.y36{bottom:778.464533pt;}
.y108{bottom:778.468533pt;}
.y135{bottom:778.475867pt;}
.y85{bottom:783.889200pt;}
.ye7{bottom:785.929200pt;}
.y168{bottom:791.345333pt;}
.ybe{bottom:794.462533pt;}
.y35{bottom:794.464533pt;}
.y107{bottom:794.468533pt;}
.y134{bottom:794.475867pt;}
.y6{bottom:797.816533pt;}
.y84{bottom:798.555867pt;}
.ye6{bottom:801.929200pt;}
.y167{bottom:804.678667pt;}
.ybd{bottom:810.462533pt;}
.y34{bottom:810.464533pt;}
.y106{bottom:810.468533pt;}
.y133{bottom:810.475867pt;}
.y83{bottom:812.998533pt;}
.ye5{bottom:817.929200pt;}
.y166{bottom:818.012000pt;}
.ybc{bottom:826.462533pt;}
.y33{bottom:826.464533pt;}
.y105{bottom:826.468533pt;}
.y132{bottom:826.475867pt;}
.y82{bottom:827.665200pt;}
.y5{bottom:830.226133pt;}
.y165{bottom:831.345333pt;}
.ye4{bottom:833.929200pt;}
.y81{bottom:842.107867pt;}
.ybb{bottom:842.462533pt;}
.y32{bottom:842.464533pt;}
.y104{bottom:842.468533pt;}
.y131{bottom:842.475867pt;}
.y164{bottom:844.678667pt;}
.y163{bottom:858.012000pt;}
.yba{bottom:858.462533pt;}
.y31{bottom:858.464533pt;}
.y103{bottom:858.468533pt;}
.y130{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.ye3{bottom:865.478667pt;}
.y80{bottom:867.889200pt;}
.y162{bottom:871.345333pt;}
.yb9{bottom:874.462533pt;}
.y30{bottom:874.464533pt;}
.y102{bottom:874.468533pt;}
.y12f{bottom:874.475867pt;}
.ye2{bottom:878.812000pt;}
.y161{bottom:884.678667pt;}
.yb8{bottom:890.462533pt;}
.y2f{bottom:890.464533pt;}
.y101{bottom:890.468533pt;}
.y12e{bottom:890.475867pt;}
.y7f{bottom:893.670533pt;}
.y3{bottom:895.045333pt;}
.y160{bottom:898.012000pt;}
.yb7{bottom:906.462533pt;}
.y64{bottom:906.464533pt;}
.ye1{bottom:906.467733pt;}
.y100{bottom:906.468533pt;}
.y12d{bottom:906.475867pt;}
.y15f{bottom:911.345333pt;}
.y116{bottom:922.102533pt;}
.y2e{bottom:922.104533pt;}
.ye0{bottom:922.107733pt;}
.y12c{bottom:922.115867pt;}
.y7e{bottom:922.462533pt;}
.y63{bottom:922.464533pt;}
.yff{bottom:922.468533pt;}
.y15e{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y15d{bottom:1006.590133pt;}
.y7d{bottom:1006.594400pt;}
.y19f{bottom:1006.598667pt;}
.yf3{bottom:1006.600800pt;}
.y11e{bottom:1006.609733pt;}
.yb6{bottom:1006.613733pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h13{height:29.625000pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h16{height:37.354167pt;}
.h12{height:37.437500pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h11{height:46.692708pt;}
.h10{height:46.796875pt;}
.h17{height:48.236875pt;}
.h15{height:48.541667pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h14{height:52.405245pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x11{left:88.829867pt;}
.x24{left:90.708800pt;}
.x4{left:94.488133pt;}
.x12{left:96.392533pt;}
.x9{left:98.274267pt;}
.x1d{left:107.116533pt;}
.x1f{left:109.606533pt;}
.x3{left:111.491467pt;}
.x22{left:112.658133pt;}
.x20{left:117.165333pt;}
.xf{left:145.373867pt;}
.x26{left:169.031467pt;}
.x5{left:170.078667pt;}
.x23{left:179.364800pt;}
.x1e{left:198.276533pt;}
.x10{left:256.669867pt;}
.x14{left:273.971200pt;}
.x13{left:330.653867pt;}
.x7{left:404.481333pt;}
.xa{left:406.300933pt;}
.x21{left:425.192000pt;}
.x28{left:428.976267pt;}
.xb{left:436.540933pt;}
.x1c{left:441.665733pt;}
.x2a{left:447.889200pt;}
.x19{left:454.159067pt;}
.x1a{left:455.372400pt;}
.xc{left:466.906133pt;}
.x15{left:500.819200pt;}
.x1b{left:503.905733pt;}
.x27{left:510.978133pt;}
.x18{left:518.256800pt;}
.x17{left:525.910133pt;}
.x25{left:533.942533pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x29{left:641.509600pt;}
.xd{left:647.459200pt;}
.x2b{left:661.218000pt;}
.x16{left:666.365600pt;}
}




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