
    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_fc24261e8c23682b2b554b9f.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_c83f9f3ae9c984f84f271f36.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_7653f9b238ee34e1b2dda24c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_8ae3169a1906f9f07d0ea726.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_1400ece097b9578577ae64b7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dab75686b67dcb5531d00155.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a90745d0196d44452674396.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_25a53d0de1f79429d95a86d4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_284cd1916c9114aa13fbca6a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58d4dcad1be26c66ea5583a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128418;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_0a54c39b160e8ed72443b9c3.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v5{vertical-align:-11.725200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v4{vertical-align:28.267200px;}
.v1{vertical-align:30.381600px;}
.v3{vertical-align:38.689200px;}
.v7{vertical-align:40.251600px;}
.v6{vertical-align:41.858400px;}
.ls78{letter-spacing:-2.640000px;}
.lsf{letter-spacing:-0.780000px;}
.ls4b{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.506400px;}
.ls4a{letter-spacing:-0.360000px;}
.ls6a{letter-spacing:-0.300000px;}
.ls4c{letter-spacing:-0.240000px;}
.ls38{letter-spacing:-0.180000px;}
.ls6c{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.135000px;}
.ls42{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.060000px;}
.ls6b{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls3e{letter-spacing:0.010800px;}
.ls69{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.300000px;}
.ls5e{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls6e{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.420000px;}
.ls67{letter-spacing:0.432000px;}
.ls40{letter-spacing:0.435000px;}
.ls13{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.540000px;}
.ls61{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.600000px;}
.ls58{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.672000px;}
.ls33{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.748200px;}
.ls76{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.780000px;}
.ls5f{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.ls65{letter-spacing:0.864000px;}
.ls31{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.912000px;}
.ls18{letter-spacing:0.960000px;}
.ls75{letter-spacing:1.008000px;}
.ls2f{letter-spacing:1.020000px;}
.ls60{letter-spacing:1.056000px;}
.ls3b{letter-spacing:1.067280px;}
.ls17{letter-spacing:1.080000px;}
.ls41{letter-spacing:1.084380px;}
.ls57{letter-spacing:1.104000px;}
.ls14{letter-spacing:1.140000px;}
.ls24{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.248000px;}
.lsb{letter-spacing:1.260000px;}
.ls1f{letter-spacing:1.320000px;}
.ls56{letter-spacing:1.344000px;}
.ls27{letter-spacing:1.380000px;}
.ls1b{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.500000px;}
.ls5a{letter-spacing:1.536000px;}
.ls26{letter-spacing:1.560000px;}
.ls8{letter-spacing:1.620000px;}
.ls6f{letter-spacing:1.632000px;}
.ls16{letter-spacing:1.680000px;}
.ls51{letter-spacing:1.728000px;}
.ls32{letter-spacing:1.740000px;}
.ls5c{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.824000px;}
.ls3d{letter-spacing:1.838400px;}
.ls3c{letter-spacing:1.842600px;}
.ls3a{letter-spacing:1.849800px;}
.ls5{letter-spacing:1.860000px;}
.ls5b{letter-spacing:1.872000px;}
.ls28{letter-spacing:1.920000px;}
.ls46{letter-spacing:1.980000px;}
.ls70{letter-spacing:2.016000px;}
.ls35{letter-spacing:2.040000px;}
.ls55{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.ls50{letter-spacing:2.160000px;}
.ls5d{letter-spacing:2.208000px;}
.ls22{letter-spacing:2.220000px;}
.ls6{letter-spacing:2.400000px;}
.ls30{letter-spacing:2.460000px;}
.ls77{letter-spacing:2.496000px;}
.ls2c{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.580000px;}
.ls37{letter-spacing:2.640000px;}
.ls39{letter-spacing:2.700000px;}
.ls73{letter-spacing:2.784000px;}
.ls2d{letter-spacing:2.820000px;}
.ls68{letter-spacing:2.832000px;}
.lsc{letter-spacing:2.880000px;}
.ls54{letter-spacing:2.928000px;}
.ls47{letter-spacing:2.940000px;}
.ls2{letter-spacing:3.000000px;}
.ls2a{letter-spacing:3.060000px;}
.ls64{letter-spacing:3.072000px;}
.ls25{letter-spacing:3.180000px;}
.ls49{letter-spacing:3.240000px;}
.ls63{letter-spacing:3.264000px;}
.ls21{letter-spacing:3.300000px;}
.ls53{letter-spacing:3.312000px;}
.ls71{letter-spacing:3.360000px;}
.ls6d{letter-spacing:3.456000px;}
.ls66{letter-spacing:3.504000px;}
.ls1e{letter-spacing:3.540000px;}
.ls1a{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.648000px;}
.ls48{letter-spacing:3.720000px;}
.ls4d{letter-spacing:4.140000px;}
.ls4f{letter-spacing:5.160000px;}
.ls74{letter-spacing:6.720000px;}
.ls4e{letter-spacing:9.120000px;}
.ls34{letter-spacing:18.454200px;}
.ls43{letter-spacing:37.824000px;}
.ls0{letter-spacing:59.532876px;}
.ls44{letter-spacing:61.488000px;}
.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;}
.ws70{word-spacing:-20.820000px;}
.ws47{word-spacing:-18.180000px;}
.ws30{word-spacing:-17.700000px;}
.ws35{word-spacing:-16.920000px;}
.ws33{word-spacing:-16.860000px;}
.ws37{word-spacing:-16.680000px;}
.ws46{word-spacing:-16.380000px;}
.ws34{word-spacing:-15.180000px;}
.ws2f{word-spacing:-15.000000px;}
.ws38{word-spacing:-14.940000px;}
.ws72{word-spacing:-14.928000px;}
.ws98{word-spacing:-13.824000px;}
.ws74{word-spacing:-13.776000px;}
.ws71{word-spacing:-13.680000px;}
.ws9a{word-spacing:-13.632000px;}
.ws3{word-spacing:-13.344000px;}
.ws73{word-spacing:-13.248000px;}
.ws9b{word-spacing:-12.960000px;}
.ws77{word-spacing:-12.864000px;}
.ws9c{word-spacing:-12.624000px;}
.ws2{word-spacing:-12.510000px;}
.ws76{word-spacing:-12.000000px;}
.ws75{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.210662px;}
.ws32{word-spacing:-9.829380px;}
.ws99{word-spacing:-9.360000px;}
.ws13{word-spacing:-8.745000px;}
.ws6b{word-spacing:-3.720000px;}
.ws90{word-spacing:-3.648000px;}
.ws94{word-spacing:-3.504000px;}
.ws9d{word-spacing:-3.456000px;}
.wsa1{word-spacing:-3.360000px;}
.ws7e{word-spacing:-3.312000px;}
.ws22{word-spacing:-3.300000px;}
.ws91{word-spacing:-3.264000px;}
.ws6f{word-spacing:-3.240000px;}
.ws51{word-spacing:-3.180000px;}
.ws9e{word-spacing:-3.072000px;}
.ws1e{word-spacing:-3.000000px;}
.ws68{word-spacing:-2.940000px;}
.ws80{word-spacing:-2.928000px;}
.ws5{word-spacing:-2.886000px;}
.ws95{word-spacing:-2.832000px;}
.wsa2{word-spacing:-2.784000px;}
.ws8e{word-spacing:-2.640000px;}
.ws1f{word-spacing:-2.580000px;}
.ws28{word-spacing:-2.520000px;}
.ws10{word-spacing:-2.400000px;}
.ws26{word-spacing:-2.220000px;}
.ws88{word-spacing:-2.208000px;}
.ws79{word-spacing:-2.160000px;}
.ws62{word-spacing:-2.100000px;}
.ws81{word-spacing:-2.064000px;}
.wsa0{word-spacing:-2.016000px;}
.ws65{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.920000px;}
.ws86{word-spacing:-1.872000px;}
.wsf{word-spacing:-1.860000px;}
.wsa3{word-spacing:-1.824000px;}
.ws1b{word-spacing:-1.800000px;}
.ws2b{word-spacing:-1.740000px;}
.ws7b{word-spacing:-1.728000px;}
.ws17{word-spacing:-1.680000px;}
.ws9f{word-spacing:-1.632000px;}
.ws11{word-spacing:-1.620000px;}
.ws85{word-spacing:-1.584000px;}
.ws29{word-spacing:-1.560000px;}
.ws67{word-spacing:-1.500000px;}
.ws3e{word-spacing:-1.440000px;}
.ws25{word-spacing:-1.380000px;}
.ws82{word-spacing:-1.344000px;}
.ws20{word-spacing:-1.320000px;}
.ws41{word-spacing:-1.260000px;}
.ws84{word-spacing:-1.248000px;}
.ws16{word-spacing:-1.200000px;}
.ws18{word-spacing:-1.140000px;}
.ws83{word-spacing:-1.104000px;}
.ws8f{word-spacing:-1.056000px;}
.ws2a{word-spacing:-1.020000px;}
.wsa5{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.960000px;}
.ws7d{word-spacing:-0.912000px;}
.ws3b{word-spacing:-0.900000px;}
.ws36{word-spacing:-0.868200px;}
.ws92{word-spacing:-0.864000px;}
.ws52{word-spacing:-0.840000px;}
.ws8b{word-spacing:-0.816000px;}
.ws4d{word-spacing:-0.780000px;}
.ws31{word-spacing:-0.760800px;}
.ws39{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.672000px;}
.ws12{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.600000px;}
.wsa7{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.480000px;}
.wsa6{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.420000px;}
.wsb{word-spacing:-0.360000px;}
.ws89{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.300000px;}
.ws66{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.180000px;}
.ws4f{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.060000px;}
.ws96{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws87{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws40{word-spacing:0.120000px;}
.ws93{word-spacing:0.144000px;}
.ws8a{word-spacing:0.192000px;}
.ws6e{word-spacing:0.240000px;}
.ws14{word-spacing:0.300000px;}
.ws9{word-spacing:0.420000px;}
.ws6{word-spacing:0.506400px;}
.ws6c{word-spacing:0.600000px;}
.ws6d{word-spacing:0.780000px;}
.ws63{word-spacing:1.080000px;}
.ws44{word-spacing:1.140000px;}
.ws50{word-spacing:1.260000px;}
.wsd{word-spacing:1.680000px;}
.ws69{word-spacing:1.800000px;}
.ws2c{word-spacing:1.860000px;}
.ws3a{word-spacing:1.920000px;}
.wse{word-spacing:1.980000px;}
.ws43{word-spacing:2.040000px;}
.ws97{word-spacing:2.112000px;}
.ws8d{word-spacing:2.304000px;}
.wsa4{word-spacing:2.496000px;}
.ws2d{word-spacing:2.520000px;}
.ws8c{word-spacing:2.544000px;}
.ws3f{word-spacing:2.580000px;}
.ws3d{word-spacing:3.060000px;}
.wsa{word-spacing:3.240000px;}
.ws42{word-spacing:3.600000px;}
.ws7f{word-spacing:3.648000px;}
.ws64{word-spacing:3.780000px;}
.ws7c{word-spacing:3.936000px;}
.ws45{word-spacing:3.960000px;}
.ws53{word-spacing:3.984000px;}
.ws1d{word-spacing:4.380000px;}
.ws4e{word-spacing:4.620000px;}
.ws21{word-spacing:4.740000px;}
.ws8{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws6a{word-spacing:5.280000px;}
.ws78{word-spacing:5.460000px;}
.ws7a{word-spacing:5.520000px;}
.ws49{word-spacing:25.824000px;}
.ws48{word-spacing:25.872000px;}
.ws4c{word-spacing:49.488000px;}
.ws4b{word-spacing:289.584000px;}
.ws4a{word-spacing:313.248000px;}
.ws55{word-spacing:400.032000px;}
.ws61{word-spacing:559.248000px;}
.ws5d{word-spacing:610.848000px;}
.ws5b{word-spacing:612.144000px;}
.ws59{word-spacing:618.384000px;}
.ws57{word-spacing:631.680000px;}
.ws5f{word-spacing:664.560000px;}
.ws60{word-spacing:882.720000px;}
.ws58{word-spacing:906.288000px;}
.ws5c{word-spacing:913.776000px;}
.ws5a{word-spacing:917.760000px;}
.ws5e{word-spacing:943.632000px;}
.ws56{word-spacing:956.976000px;}
._d{margin-left:-2898.144000px;}
._13{margin-left:-2874.336000px;}
._10{margin-left:-14.190000px;}
._32{margin-left:-7.740000px;}
._11{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._33{margin-left:-4.368000px;}
._4{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.110000px;}
._2{width:1.139400px;}
._b{width:2.166000px;}
._6{width:3.240000px;}
._7{width:5.160000px;}
._8{width:6.840000px;}
._9{width:7.860000px;}
._a{width:8.940000px;}
._e{width:14.885400px;}
._c{width:18.167400px;}
._12{width:23.176800px;}
._1b{width:37.872000px;}
._3{width:59.573214px;}
._1c{width:61.440000px;}
._f{width:66.215400px;}
._19{width:277.248000px;}
._18{width:301.248000px;}
._26{width:303.990000px;}
._2c{width:323.376000px;}
._1e{width:325.200000px;}
._29{width:327.510000px;}
._16{width:431.952000px;}
._15{width:437.952000px;}
._2b{width:478.272000px;}
._30{width:575.472000px;}
._2d{width:663.024000px;}
._31{width:664.560000px;}
._25{width:670.656000px;}
._2e{width:676.560000px;}
._27{width:678.624000px;}
._20{width:723.984000px;}
._21{width:734.640000px;}
._22{width:750.672000px;}
._23{width:761.328000px;}
._1f{width:780.096000px;}
._1a{width:790.704000px;}
._1d{width:801.360000px;}
._28{width:850.656000px;}
._2a{width:861.312000px;}
._2f{width:878.496000px;}
._24{width:898.656000px;}
._17{width:998.640000px;}
._14{width:1524.336000px;}
.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;}
.y2e{bottom:47.777250px;}
.y122{bottom:80.121900px;}
.y163{bottom:80.263500px;}
.yf3{bottom:83.673000px;}
.y101{bottom:83.737350px;}
.y64{bottom:83.770350px;}
.ycc{bottom:83.897250px;}
.yc9{bottom:84.322500px;}
.y2b{bottom:88.026750px;}
.yee{bottom:93.253350px;}
.y121{bottom:95.121900px;}
.y162{bottom:95.263500px;}
.y8f{bottom:96.020850px;}
.yf2{bottom:99.417000px;}
.y63{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.y100{bottom:109.249350px;}
.yed{bottom:109.556700px;}
.y120{bottom:110.121900px;}
.y161{bottom:110.263500px;}
.y8e{bottom:114.020850px;}
.y62{bottom:119.770350px;}
.y11f{bottom:125.121900px;}
.y160{bottom:125.263500px;}
.yff{bottom:125.497350px;}
.yec{bottom:125.804700px;}
.y8d{bottom:132.020850px;}
.y61{bottom:137.770350px;}
.y11e{bottom:140.121900px;}
.y15f{bottom:140.263500px;}
.yfe{bottom:141.745350px;}
.yeb{bottom:142.052700px;}
.y8c{bottom:150.020850px;}
.y11d{bottom:155.121900px;}
.y15e{bottom:155.263500px;}
.y60{bottom:155.770350px;}
.yfd{bottom:157.993350px;}
.yea{bottom:158.300700px;}
.y8b{bottom:168.020850px;}
.y27{bottom:169.872750px;}
.y11c{bottom:170.121900px;}
.y15d{bottom:170.263500px;}
.y5f{bottom:173.770350px;}
.yfc{bottom:174.241350px;}
.ye9{bottom:174.548700px;}
.y11b{bottom:185.121900px;}
.y15c{bottom:185.263500px;}
.y8a{bottom:186.020850px;}
.y26{bottom:187.872750px;}
.yfb{bottom:190.489350px;}
.ye8{bottom:190.796700px;}
.y5e{bottom:191.770350px;}
.y11a{bottom:200.121900px;}
.y15b{bottom:200.263500px;}
.y89{bottom:204.020850px;}
.y25{bottom:205.872750px;}
.yfa{bottom:206.737350px;}
.ye7{bottom:207.044700px;}
.y5d{bottom:209.770350px;}
.y119{bottom:215.121900px;}
.y15a{bottom:215.263500px;}
.y88{bottom:222.020850px;}
.yf9{bottom:222.985350px;}
.ye6{bottom:223.292700px;}
.y24{bottom:223.872750px;}
.y5c{bottom:227.770350px;}
.y118{bottom:230.121900px;}
.y159{bottom:230.263500px;}
.yf8{bottom:239.233350px;}
.ye5{bottom:239.540700px;}
.y87{bottom:240.019650px;}
.y23{bottom:241.872750px;}
.y158{bottom:245.263500px;}
.y5b{bottom:245.770350px;}
.ye4{bottom:255.788700px;}
.y86{bottom:258.019650px;}
.y22{bottom:259.872750px;}
.y157{bottom:260.263500px;}
.y117{bottom:263.232600px;}
.y5a{bottom:263.770350px;}
.yf7{bottom:270.745350px;}
.ye3{bottom:272.036700px;}
.y156{bottom:275.263500px;}
.y85{bottom:276.019650px;}
.y21{bottom:277.872750px;}
.y59{bottom:281.770350px;}
.ye2{bottom:288.284700px;}
.y155{bottom:290.263500px;}
.y84{bottom:294.019650px;}
.y20{bottom:295.872750px;}
.y58{bottom:299.770350px;}
.ye1{bottom:304.532700px;}
.y154{bottom:305.263500px;}
.yf6{bottom:305.650350px;}
.y83{bottom:312.019650px;}
.y1f{bottom:313.872750px;}
.y57{bottom:317.770350px;}
.y116{bottom:317.772600px;}
.y153{bottom:320.263500px;}
.yf5{bottom:325.150350px;}
.y1e{bottom:331.872750px;}
.y82{bottom:332.257650px;}
.ye0{bottom:333.536700px;}
.y152{bottom:335.263500px;}
.y115{bottom:335.367600px;}
.y56{bottom:335.770350px;}
.y81{bottom:341.830350px;}
.y29{bottom:349.872750px;}
.y151{bottom:350.263500px;}
.y55{bottom:353.770350px;}
.ydf{bottom:362.540700px;}
.y150{bottom:365.263500px;}
.y1d{bottom:367.470000px;}
.y28{bottom:367.872750px;}
.y114{bottom:371.367600px;}
.y80{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y14f{bottom:380.263500px;}
.y7f{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.yde{bottom:394.932600px;}
.y14e{bottom:395.263500px;}
.y7e{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y113{bottom:407.772600px;}
.y14d{bottom:410.263500px;}
.ydd{bottom:414.432600px;}
.y14c{bottom:425.265900px;}
.y112{bottom:425.367600px;}
.y7d{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y14b{bottom:440.265900px;}
.y7c{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y1c{bottom:444.514200px;}
.y14a{bottom:455.265900px;}
.yca{bottom:457.318650px;}
.yf0{bottom:461.497350px;}
.y7b{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y111{bottom:461.772600px;}
.y149{bottom:470.265900px;}
.y1b{bottom:471.859200px;}
.yef{bottom:477.253350px;}
.y110{bottom:479.367600px;}
.y7a{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y148{bottom:485.265900px;}
.y1a{bottom:489.859200px;}
.y79{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y147{bottom:500.265900px;}
.yaa{bottom:501.354900px;}
.y19{bottom:507.859200px;}
.y146{bottom:515.265900px;}
.y78{bottom:515.635350px;}
.yc8{bottom:515.769900px;}
.y4c{bottom:515.770350px;}
.y10f{bottom:515.772600px;}
.ya9{bottom:519.354900px;}
.y18{bottom:525.859200px;}
.y145{bottom:530.265900px;}
.y77{bottom:533.635350px;}
.yc7{bottom:533.769900px;}
.y4b{bottom:533.770350px;}
.y10e{bottom:533.772600px;}
.ya8{bottom:537.354900px;}
.y17{bottom:543.859200px;}
.y144{bottom:545.265900px;}
.yf4{bottom:551.230350px;}
.y76{bottom:551.635350px;}
.yc6{bottom:551.769900px;}
.y4a{bottom:551.770350px;}
.y10d{bottom:551.772600px;}
.ya7{bottom:555.354900px;}
.y143{bottom:560.265900px;}
.y16{bottom:561.859200px;}
.y10c{bottom:569.367600px;}
.y75{bottom:569.635350px;}
.yc5{bottom:569.769900px;}
.y49{bottom:569.770350px;}
.ya6{bottom:573.354900px;}
.y142{bottom:575.265900px;}
.y15{bottom:579.859200px;}
.y74{bottom:587.635350px;}
.yc4{bottom:587.769900px;}
.y48{bottom:587.770350px;}
.y141{bottom:590.265900px;}
.y14{bottom:597.859200px;}
.y140{bottom:605.265900px;}
.y73{bottom:605.635350px;}
.yc3{bottom:605.769900px;}
.y47{bottom:605.770350px;}
.y10b{bottom:605.772600px;}
.ya5{bottom:608.949900px;}
.y13{bottom:615.859200px;}
.y181{bottom:620.263500px;}
.y13f{bottom:620.265900px;}
.y72{bottom:623.635350px;}
.yc2{bottom:623.769900px;}
.y46{bottom:623.770350px;}
.y10a{bottom:623.772600px;}
.y12{bottom:633.859200px;}
.y180{bottom:635.263500px;}
.y13e{bottom:635.265900px;}
.y71{bottom:641.635350px;}
.yc1{bottom:641.769900px;}
.y45{bottom:641.770350px;}
.y109{bottom:641.772600px;}
.y17f{bottom:650.263500px;}
.y13d{bottom:650.265900px;}
.y11{bottom:651.859200px;}
.y70{bottom:659.635350px;}
.yc0{bottom:659.769900px;}
.y44{bottom:659.770350px;}
.y108{bottom:659.772600px;}
.ya4{bottom:663.489900px;}
.y17e{bottom:665.263500px;}
.y13c{bottom:665.265900px;}
.y10{bottom:669.859200px;}
.y6f{bottom:677.635350px;}
.ybf{bottom:677.769900px;}
.y43{bottom:677.770350px;}
.y107{bottom:677.772600px;}
.y17d{bottom:680.263500px;}
.y13b{bottom:680.265900px;}
.ya3{bottom:681.489900px;}
.yf{bottom:687.859200px;}
.y17c{bottom:695.263500px;}
.y13a{bottom:695.265900px;}
.y6e{bottom:695.635350px;}
.ybe{bottom:695.769900px;}
.y42{bottom:695.770350px;}
.y106{bottom:695.772600px;}
.ya2{bottom:699.489900px;}
.ye{bottom:705.859200px;}
.y17b{bottom:710.263500px;}
.y139{bottom:710.265900px;}
.y105{bottom:713.367600px;}
.y6d{bottom:713.635350px;}
.ybd{bottom:713.769900px;}
.y41{bottom:713.770350px;}
.ya1{bottom:717.489900px;}
.yd{bottom:723.859200px;}
.y17a{bottom:725.263500px;}
.y138{bottom:725.265900px;}
.y6c{bottom:731.635350px;}
.ybc{bottom:731.769900px;}
.y40{bottom:731.770350px;}
.ya0{bottom:737.727900px;}
.y179{bottom:740.263500px;}
.y137{bottom:740.265900px;}
.y9f{bottom:747.293850px;}
.y6b{bottom:749.635350px;}
.ybb{bottom:749.769900px;}
.y3f{bottom:749.770350px;}
.y104{bottom:749.772600px;}
.y178{bottom:755.263500px;}
.y136{bottom:755.265900px;}
.y6a{bottom:767.635350px;}
.yba{bottom:767.769900px;}
.y3e{bottom:767.770350px;}
.y103{bottom:767.772600px;}
.yc{bottom:769.017450px;}
.y177{bottom:770.263500px;}
.y135{bottom:770.265900px;}
.y9e{bottom:777.098850px;}
.yb{bottom:781.468200px;}
.y176{bottom:785.263500px;}
.y134{bottom:785.265900px;}
.y69{bottom:785.635350px;}
.yb9{bottom:785.769900px;}
.y3d{bottom:785.770350px;}
.yda{bottom:785.772600px;}
.y9d{bottom:795.098850px;}
.y175{bottom:800.263500px;}
.y133{bottom:800.265900px;}
.y68{bottom:803.635350px;}
.yb8{bottom:803.769900px;}
.y3c{bottom:803.770350px;}
.yd9{bottom:803.772600px;}
.y9c{bottom:813.098850px;}
.ya{bottom:813.183600px;}
.y174{bottom:815.263500px;}
.y132{bottom:815.265900px;}
.y67{bottom:821.635350px;}
.yb7{bottom:821.769900px;}
.y3b{bottom:821.770350px;}
.yd8{bottom:821.772600px;}
.y173{bottom:830.263500px;}
.y131{bottom:830.265900px;}
.y9b{bottom:831.098850px;}
.y9{bottom:832.108950px;}
.y66{bottom:839.635350px;}
.yb6{bottom:839.769900px;}
.y3a{bottom:839.770350px;}
.yd7{bottom:839.772600px;}
.y8{bottom:840.183600px;}
.y172{bottom:845.263500px;}
.y130{bottom:845.265900px;}
.y9a{bottom:849.098850px;}
.yb5{bottom:857.769900px;}
.y39{bottom:857.770350px;}
.yd6{bottom:857.772600px;}
.y7{bottom:859.108950px;}
.y171{bottom:860.263500px;}
.y12f{bottom:860.265900px;}
.y99{bottom:867.102600px;}
.y65{bottom:875.230350px;}
.y170{bottom:875.263500px;}
.y12e{bottom:875.265900px;}
.yb4{bottom:875.769900px;}
.y38{bottom:875.770350px;}
.yd5{bottom:875.772600px;}
.y6{bottom:887.830950px;}
.y97{bottom:888.595800px;}
.y16f{bottom:890.263500px;}
.y12d{bottom:890.265900px;}
.yb3{bottom:893.769900px;}
.y37{bottom:893.770350px;}
.yd4{bottom:893.772600px;}
.y98{bottom:904.167600px;}
.y16e{bottom:905.263500px;}
.y12c{bottom:905.265900px;}
.y96{bottom:907.840800px;}
.yb2{bottom:911.769900px;}
.y36{bottom:911.770350px;}
.yd3{bottom:911.772600px;}
.y16d{bottom:920.263500px;}
.y12b{bottom:920.265900px;}
.yb1{bottom:929.769900px;}
.y35{bottom:929.770350px;}
.yd2{bottom:929.772600px;}
.y5{bottom:934.004400px;}
.y16c{bottom:935.263500px;}
.y12a{bottom:935.265900px;}
.y95{bottom:937.509000px;}
.y94{bottom:947.576400px;}
.yb0{bottom:947.769900px;}
.y34{bottom:947.770350px;}
.yd1{bottom:947.772600px;}
.y16b{bottom:950.263500px;}
.y129{bottom:950.265900px;}
.y16a{bottom:965.263500px;}
.y128{bottom:965.265900px;}
.yaf{bottom:965.769900px;}
.y33{bottom:965.770350px;}
.yd0{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y169{bottom:980.263500px;}
.y127{bottom:980.265900px;}
.y92{bottom:980.399400px;}
.yae{bottom:983.769900px;}
.y32{bottom:983.770350px;}
.ycf{bottom:983.772600px;}
.y91{bottom:989.965350px;}
.y93{bottom:989.966400px;}
.y168{bottom:995.263500px;}
.y126{bottom:995.265900px;}
.yad{bottom:1001.769900px;}
.y31{bottom:1001.770350px;}
.yce{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y167{bottom:1010.263500px;}
.y125{bottom:1010.265900px;}
.yac{bottom:1019.769900px;}
.y30{bottom:1019.770350px;}
.ydc{bottom:1019.772600px;}
.y166{bottom:1025.263500px;}
.y124{bottom:1025.265900px;}
.ycd{bottom:1037.367600px;}
.yab{bottom:1037.769900px;}
.y2f{bottom:1037.770350px;}
.ydb{bottom:1037.772600px;}
.y165{bottom:1040.263500px;}
.y123{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.ycb{bottom:1132.414650px;}
.yf1{bottom:1132.417350px;}
.y90{bottom:1132.418700px;}
.y164{bottom:1132.423500px;}
.y102{bottom:1132.441350px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h1b{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h14{height:41.660156px;}
.hc{height:41.689453px;}
.h1c{height:42.117188px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h1e{height:43.804688px;}
.h18{height:52.535871px;}
.h17{height:52.567951px;}
.hd{height:52.646484px;}
.h1d{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:79.957453px;}
.h19{height:80.376356px;}
.h13{height:80.405653px;}
.h16{height:81.941053px;}
.h15{height:83.500556px;}
.h1a{height:90.914484px;}
.h11{height:91.335684px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.921300px;}
.x23{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x25{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x16{left:134.566800px;}
.x17{left:183.102450px;}
.x22{left:194.285400px;}
.x5{left:212.876400px;}
.x1e{left:220.137450px;}
.x19{left:232.362900px;}
.x15{left:292.514550px;}
.x18{left:297.394950px;}
.x13{left:350.688300px;}
.x14{left:374.050650px;}
.x20{left:426.165300px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x1a{left:478.347900px;}
.x7{left:480.471000px;}
.x24{left:482.603400px;}
.xf{left:491.090400px;}
.x26{left:503.863050px;}
.x1b{left:512.367900px;}
.x8{left:514.491000px;}
.xe{left:525.260400px;}
.x10{left:563.162250px;}
.x21{left:591.955350px;}
.x12{left:663.492300px;}
.x1c{left:686.348550px;}
.x2{left:693.365400px;}
.x11{left:735.065400px;}
.x1d{left:756.320550px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v5{vertical-align:-10.422400pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v4{vertical-align:25.126400pt;}
.v1{vertical-align:27.005867pt;}
.v3{vertical-align:34.390400pt;}
.v7{vertical-align:35.779200pt;}
.v6{vertical-align:37.207467pt;}
.ls78{letter-spacing:-2.346667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls4b{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.450133pt;}
.ls4a{letter-spacing:-0.320000pt;}
.ls6a{letter-spacing:-0.266667pt;}
.ls4c{letter-spacing:-0.213333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls6c{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.120000pt;}
.ls42{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls6b{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls3e{letter-spacing:0.009600pt;}
.ls69{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls5e{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6e{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.373333pt;}
.ls67{letter-spacing:0.384000pt;}
.ls40{letter-spacing:0.386667pt;}
.ls13{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.480000pt;}
.ls61{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.533333pt;}
.ls58{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.597333pt;}
.ls33{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.665067pt;}
.ls76{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls5f{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.ls65{letter-spacing:0.768000pt;}
.ls31{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.810667pt;}
.ls18{letter-spacing:0.853333pt;}
.ls75{letter-spacing:0.896000pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls60{letter-spacing:0.938667pt;}
.ls3b{letter-spacing:0.948693pt;}
.ls17{letter-spacing:0.960000pt;}
.ls41{letter-spacing:0.963893pt;}
.ls57{letter-spacing:0.981333pt;}
.ls14{letter-spacing:1.013333pt;}
.ls24{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.109333pt;}
.lsb{letter-spacing:1.120000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls56{letter-spacing:1.194667pt;}
.ls27{letter-spacing:1.226667pt;}
.ls1b{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.333333pt;}
.ls5a{letter-spacing:1.365333pt;}
.ls26{letter-spacing:1.386667pt;}
.ls8{letter-spacing:1.440000pt;}
.ls6f{letter-spacing:1.450667pt;}
.ls16{letter-spacing:1.493333pt;}
.ls51{letter-spacing:1.536000pt;}
.ls32{letter-spacing:1.546667pt;}
.ls5c{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.621333pt;}
.ls3d{letter-spacing:1.634133pt;}
.ls3c{letter-spacing:1.637867pt;}
.ls3a{letter-spacing:1.644267pt;}
.ls5{letter-spacing:1.653333pt;}
.ls5b{letter-spacing:1.664000pt;}
.ls28{letter-spacing:1.706667pt;}
.ls46{letter-spacing:1.760000pt;}
.ls70{letter-spacing:1.792000pt;}
.ls35{letter-spacing:1.813333pt;}
.ls55{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.ls50{letter-spacing:1.920000pt;}
.ls5d{letter-spacing:1.962667pt;}
.ls22{letter-spacing:1.973333pt;}
.ls6{letter-spacing:2.133333pt;}
.ls30{letter-spacing:2.186667pt;}
.ls77{letter-spacing:2.218667pt;}
.ls2c{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls37{letter-spacing:2.346667pt;}
.ls39{letter-spacing:2.400000pt;}
.ls73{letter-spacing:2.474667pt;}
.ls2d{letter-spacing:2.506667pt;}
.ls68{letter-spacing:2.517333pt;}
.lsc{letter-spacing:2.560000pt;}
.ls54{letter-spacing:2.602667pt;}
.ls47{letter-spacing:2.613333pt;}
.ls2{letter-spacing:2.666667pt;}
.ls2a{letter-spacing:2.720000pt;}
.ls64{letter-spacing:2.730667pt;}
.ls25{letter-spacing:2.826667pt;}
.ls49{letter-spacing:2.880000pt;}
.ls63{letter-spacing:2.901333pt;}
.ls21{letter-spacing:2.933333pt;}
.ls53{letter-spacing:2.944000pt;}
.ls71{letter-spacing:2.986667pt;}
.ls6d{letter-spacing:3.072000pt;}
.ls66{letter-spacing:3.114667pt;}
.ls1e{letter-spacing:3.146667pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.242667pt;}
.ls48{letter-spacing:3.306667pt;}
.ls4d{letter-spacing:3.680000pt;}
.ls4f{letter-spacing:4.586667pt;}
.ls74{letter-spacing:5.973333pt;}
.ls4e{letter-spacing:8.106667pt;}
.ls34{letter-spacing:16.403733pt;}
.ls43{letter-spacing:33.621333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls44{letter-spacing:54.656000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws70{word-spacing:-18.506667pt;}
.ws47{word-spacing:-16.160000pt;}
.ws30{word-spacing:-15.733333pt;}
.ws35{word-spacing:-15.040000pt;}
.ws33{word-spacing:-14.986667pt;}
.ws37{word-spacing:-14.826667pt;}
.ws46{word-spacing:-14.560000pt;}
.ws34{word-spacing:-13.493333pt;}
.ws2f{word-spacing:-13.333333pt;}
.ws38{word-spacing:-13.280000pt;}
.ws72{word-spacing:-13.269333pt;}
.ws98{word-spacing:-12.288000pt;}
.ws74{word-spacing:-12.245333pt;}
.ws71{word-spacing:-12.160000pt;}
.ws9a{word-spacing:-12.117333pt;}
.ws3{word-spacing:-11.861333pt;}
.ws73{word-spacing:-11.776000pt;}
.ws9b{word-spacing:-11.520000pt;}
.ws77{word-spacing:-11.434667pt;}
.ws9c{word-spacing:-11.221333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws76{word-spacing:-10.666667pt;}
.ws75{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws32{word-spacing:-8.737227pt;}
.ws99{word-spacing:-8.320000pt;}
.ws13{word-spacing:-7.773333pt;}
.ws6b{word-spacing:-3.306667pt;}
.ws90{word-spacing:-3.242667pt;}
.ws94{word-spacing:-3.114667pt;}
.ws9d{word-spacing:-3.072000pt;}
.wsa1{word-spacing:-2.986667pt;}
.ws7e{word-spacing:-2.944000pt;}
.ws22{word-spacing:-2.933333pt;}
.ws91{word-spacing:-2.901333pt;}
.ws6f{word-spacing:-2.880000pt;}
.ws51{word-spacing:-2.826667pt;}
.ws9e{word-spacing:-2.730667pt;}
.ws1e{word-spacing:-2.666667pt;}
.ws68{word-spacing:-2.613333pt;}
.ws80{word-spacing:-2.602667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws95{word-spacing:-2.517333pt;}
.wsa2{word-spacing:-2.474667pt;}
.ws8e{word-spacing:-2.346667pt;}
.ws1f{word-spacing:-2.293333pt;}
.ws28{word-spacing:-2.240000pt;}
.ws10{word-spacing:-2.133333pt;}
.ws26{word-spacing:-1.973333pt;}
.ws88{word-spacing:-1.962667pt;}
.ws79{word-spacing:-1.920000pt;}
.ws62{word-spacing:-1.866667pt;}
.ws81{word-spacing:-1.834667pt;}
.wsa0{word-spacing:-1.792000pt;}
.ws65{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.706667pt;}
.ws86{word-spacing:-1.664000pt;}
.wsf{word-spacing:-1.653333pt;}
.wsa3{word-spacing:-1.621333pt;}
.ws1b{word-spacing:-1.600000pt;}
.ws2b{word-spacing:-1.546667pt;}
.ws7b{word-spacing:-1.536000pt;}
.ws17{word-spacing:-1.493333pt;}
.ws9f{word-spacing:-1.450667pt;}
.ws11{word-spacing:-1.440000pt;}
.ws85{word-spacing:-1.408000pt;}
.ws29{word-spacing:-1.386667pt;}
.ws67{word-spacing:-1.333333pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws25{word-spacing:-1.226667pt;}
.ws82{word-spacing:-1.194667pt;}
.ws20{word-spacing:-1.173333pt;}
.ws41{word-spacing:-1.120000pt;}
.ws84{word-spacing:-1.109333pt;}
.ws16{word-spacing:-1.066667pt;}
.ws18{word-spacing:-1.013333pt;}
.ws83{word-spacing:-0.981333pt;}
.ws8f{word-spacing:-0.938667pt;}
.ws2a{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.853333pt;}
.ws7d{word-spacing:-0.810667pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws36{word-spacing:-0.771733pt;}
.ws92{word-spacing:-0.768000pt;}
.ws52{word-spacing:-0.746667pt;}
.ws8b{word-spacing:-0.725333pt;}
.ws4d{word-spacing:-0.693333pt;}
.ws31{word-spacing:-0.676267pt;}
.ws39{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.597333pt;}
.ws12{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.533333pt;}
.wsa7{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.426667pt;}
.wsa6{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.373333pt;}
.wsb{word-spacing:-0.320000pt;}
.ws89{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.266667pt;}
.ws66{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.160000pt;}
.ws4f{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws96{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws87{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws40{word-spacing:0.106667pt;}
.ws93{word-spacing:0.128000pt;}
.ws8a{word-spacing:0.170667pt;}
.ws6e{word-spacing:0.213333pt;}
.ws14{word-spacing:0.266667pt;}
.ws9{word-spacing:0.373333pt;}
.ws6{word-spacing:0.450133pt;}
.ws6c{word-spacing:0.533333pt;}
.ws6d{word-spacing:0.693333pt;}
.ws63{word-spacing:0.960000pt;}
.ws44{word-spacing:1.013333pt;}
.ws50{word-spacing:1.120000pt;}
.wsd{word-spacing:1.493333pt;}
.ws69{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.653333pt;}
.ws3a{word-spacing:1.706667pt;}
.wse{word-spacing:1.760000pt;}
.ws43{word-spacing:1.813333pt;}
.ws97{word-spacing:1.877333pt;}
.ws8d{word-spacing:2.048000pt;}
.wsa4{word-spacing:2.218667pt;}
.ws2d{word-spacing:2.240000pt;}
.ws8c{word-spacing:2.261333pt;}
.ws3f{word-spacing:2.293333pt;}
.ws3d{word-spacing:2.720000pt;}
.wsa{word-spacing:2.880000pt;}
.ws42{word-spacing:3.200000pt;}
.ws7f{word-spacing:3.242667pt;}
.ws64{word-spacing:3.360000pt;}
.ws7c{word-spacing:3.498667pt;}
.ws45{word-spacing:3.520000pt;}
.ws53{word-spacing:3.541333pt;}
.ws1d{word-spacing:3.893333pt;}
.ws4e{word-spacing:4.106667pt;}
.ws21{word-spacing:4.213333pt;}
.ws8{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws6a{word-spacing:4.693333pt;}
.ws78{word-spacing:4.853333pt;}
.ws7a{word-spacing:4.906667pt;}
.ws49{word-spacing:22.954667pt;}
.ws48{word-spacing:22.997333pt;}
.ws4c{word-spacing:43.989333pt;}
.ws4b{word-spacing:257.408000pt;}
.ws4a{word-spacing:278.442667pt;}
.ws55{word-spacing:355.584000pt;}
.ws61{word-spacing:497.109333pt;}
.ws5d{word-spacing:542.976000pt;}
.ws5b{word-spacing:544.128000pt;}
.ws59{word-spacing:549.674667pt;}
.ws57{word-spacing:561.493333pt;}
.ws5f{word-spacing:590.720000pt;}
.ws60{word-spacing:784.640000pt;}
.ws58{word-spacing:805.589333pt;}
.ws5c{word-spacing:812.245333pt;}
.ws5a{word-spacing:815.786667pt;}
.ws5e{word-spacing:838.784000pt;}
.ws56{word-spacing:850.645333pt;}
._d{margin-left:-2576.128000pt;}
._13{margin-left:-2554.965333pt;}
._10{margin-left:-12.613333pt;}
._32{margin-left:-6.880000pt;}
._11{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._33{margin-left:-3.882667pt;}
._4{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.986667pt;}
._2{width:1.012800pt;}
._b{width:1.925333pt;}
._6{width:2.880000pt;}
._7{width:4.586667pt;}
._8{width:6.080000pt;}
._9{width:6.986667pt;}
._a{width:7.946667pt;}
._e{width:13.231467pt;}
._c{width:16.148800pt;}
._12{width:20.601600pt;}
._1b{width:33.664000pt;}
._3{width:52.953968pt;}
._1c{width:54.613333pt;}
._f{width:58.858133pt;}
._19{width:246.442667pt;}
._18{width:267.776000pt;}
._26{width:270.213333pt;}
._2c{width:287.445333pt;}
._1e{width:289.066667pt;}
._29{width:291.120000pt;}
._16{width:383.957333pt;}
._15{width:389.290667pt;}
._2b{width:425.130667pt;}
._30{width:511.530667pt;}
._2d{width:589.354667pt;}
._31{width:590.720000pt;}
._25{width:596.138667pt;}
._2e{width:601.386667pt;}
._27{width:603.221333pt;}
._20{width:643.541333pt;}
._21{width:653.013333pt;}
._22{width:667.264000pt;}
._23{width:676.736000pt;}
._1f{width:693.418667pt;}
._1a{width:702.848000pt;}
._1d{width:712.320000pt;}
._28{width:756.138667pt;}
._2a{width:765.610667pt;}
._2f{width:780.885333pt;}
._24{width:798.805333pt;}
._17{width:887.680000pt;}
._14{width:1354.965333pt;}
.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;}
.y2e{bottom:42.468667pt;}
.y122{bottom:71.219467pt;}
.y163{bottom:71.345333pt;}
.yf3{bottom:74.376000pt;}
.y101{bottom:74.433200pt;}
.y64{bottom:74.462533pt;}
.ycc{bottom:74.575333pt;}
.yc9{bottom:74.953333pt;}
.y2b{bottom:78.246000pt;}
.yee{bottom:82.891867pt;}
.y121{bottom:84.552800pt;}
.y162{bottom:84.678667pt;}
.y8f{bottom:85.351867pt;}
.yf2{bottom:88.370667pt;}
.y63{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.y100{bottom:97.110533pt;}
.yed{bottom:97.383733pt;}
.y120{bottom:97.886133pt;}
.y161{bottom:98.012000pt;}
.y8e{bottom:101.351867pt;}
.y62{bottom:106.462533pt;}
.y11f{bottom:111.219467pt;}
.y160{bottom:111.345333pt;}
.yff{bottom:111.553200pt;}
.yec{bottom:111.826400pt;}
.y8d{bottom:117.351867pt;}
.y61{bottom:122.462533pt;}
.y11e{bottom:124.552800pt;}
.y15f{bottom:124.678667pt;}
.yfe{bottom:125.995867pt;}
.yeb{bottom:126.269067pt;}
.y8c{bottom:133.351867pt;}
.y11d{bottom:137.886133pt;}
.y15e{bottom:138.012000pt;}
.y60{bottom:138.462533pt;}
.yfd{bottom:140.438533pt;}
.yea{bottom:140.711733pt;}
.y8b{bottom:149.351867pt;}
.y27{bottom:150.998000pt;}
.y11c{bottom:151.219467pt;}
.y15d{bottom:151.345333pt;}
.y5f{bottom:154.462533pt;}
.yfc{bottom:154.881200pt;}
.ye9{bottom:155.154400pt;}
.y11b{bottom:164.552800pt;}
.y15c{bottom:164.678667pt;}
.y8a{bottom:165.351867pt;}
.y26{bottom:166.998000pt;}
.yfb{bottom:169.323867pt;}
.ye8{bottom:169.597067pt;}
.y5e{bottom:170.462533pt;}
.y11a{bottom:177.886133pt;}
.y15b{bottom:178.012000pt;}
.y89{bottom:181.351867pt;}
.y25{bottom:182.998000pt;}
.yfa{bottom:183.766533pt;}
.ye7{bottom:184.039733pt;}
.y5d{bottom:186.462533pt;}
.y119{bottom:191.219467pt;}
.y15a{bottom:191.345333pt;}
.y88{bottom:197.351867pt;}
.yf9{bottom:198.209200pt;}
.ye6{bottom:198.482400pt;}
.y24{bottom:198.998000pt;}
.y5c{bottom:202.462533pt;}
.y118{bottom:204.552800pt;}
.y159{bottom:204.678667pt;}
.yf8{bottom:212.651867pt;}
.ye5{bottom:212.925067pt;}
.y87{bottom:213.350800pt;}
.y23{bottom:214.998000pt;}
.y158{bottom:218.012000pt;}
.y5b{bottom:218.462533pt;}
.ye4{bottom:227.367733pt;}
.y86{bottom:229.350800pt;}
.y22{bottom:230.998000pt;}
.y157{bottom:231.345333pt;}
.y117{bottom:233.984533pt;}
.y5a{bottom:234.462533pt;}
.yf7{bottom:240.662533pt;}
.ye3{bottom:241.810400pt;}
.y156{bottom:244.678667pt;}
.y85{bottom:245.350800pt;}
.y21{bottom:246.998000pt;}
.y59{bottom:250.462533pt;}
.ye2{bottom:256.253067pt;}
.y155{bottom:258.012000pt;}
.y84{bottom:261.350800pt;}
.y20{bottom:262.998000pt;}
.y58{bottom:266.462533pt;}
.ye1{bottom:270.695733pt;}
.y154{bottom:271.345333pt;}
.yf6{bottom:271.689200pt;}
.y83{bottom:277.350800pt;}
.y1f{bottom:278.998000pt;}
.y57{bottom:282.462533pt;}
.y116{bottom:282.464533pt;}
.y153{bottom:284.678667pt;}
.yf5{bottom:289.022533pt;}
.y1e{bottom:294.998000pt;}
.y82{bottom:295.340133pt;}
.ye0{bottom:296.477067pt;}
.y152{bottom:298.012000pt;}
.y115{bottom:298.104533pt;}
.y56{bottom:298.462533pt;}
.y81{bottom:303.849200pt;}
.y29{bottom:310.998000pt;}
.y151{bottom:311.345333pt;}
.y55{bottom:314.462533pt;}
.ydf{bottom:322.258400pt;}
.y150{bottom:324.678667pt;}
.y1d{bottom:326.640000pt;}
.y28{bottom:326.998000pt;}
.y114{bottom:330.104533pt;}
.y80{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y14f{bottom:338.012000pt;}
.y7f{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.yde{bottom:351.051200pt;}
.y14e{bottom:351.345333pt;}
.y7e{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y113{bottom:362.464533pt;}
.y14d{bottom:364.678667pt;}
.ydd{bottom:368.384533pt;}
.y14c{bottom:378.014133pt;}
.y112{bottom:378.104533pt;}
.y7d{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y14b{bottom:391.347467pt;}
.y7c{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y1c{bottom:395.123733pt;}
.y14a{bottom:404.680800pt;}
.yca{bottom:406.505467pt;}
.yf0{bottom:410.219867pt;}
.y7b{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y111{bottom:410.464533pt;}
.y149{bottom:418.014133pt;}
.y1b{bottom:419.430400pt;}
.yef{bottom:424.225200pt;}
.y110{bottom:426.104533pt;}
.y7a{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y148{bottom:431.347467pt;}
.y1a{bottom:435.430400pt;}
.y79{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y147{bottom:444.680800pt;}
.yaa{bottom:445.648800pt;}
.y19{bottom:451.430400pt;}
.y146{bottom:458.014133pt;}
.y78{bottom:458.342533pt;}
.yc8{bottom:458.462133pt;}
.y4c{bottom:458.462533pt;}
.y10f{bottom:458.464533pt;}
.ya9{bottom:461.648800pt;}
.y18{bottom:467.430400pt;}
.y145{bottom:471.347467pt;}
.y77{bottom:474.342533pt;}
.yc7{bottom:474.462133pt;}
.y4b{bottom:474.462533pt;}
.y10e{bottom:474.464533pt;}
.ya8{bottom:477.648800pt;}
.y17{bottom:483.430400pt;}
.y144{bottom:484.680800pt;}
.yf4{bottom:489.982533pt;}
.y76{bottom:490.342533pt;}
.yc6{bottom:490.462133pt;}
.y4a{bottom:490.462533pt;}
.y10d{bottom:490.464533pt;}
.ya7{bottom:493.648800pt;}
.y143{bottom:498.014133pt;}
.y16{bottom:499.430400pt;}
.y10c{bottom:506.104533pt;}
.y75{bottom:506.342533pt;}
.yc5{bottom:506.462133pt;}
.y49{bottom:506.462533pt;}
.ya6{bottom:509.648800pt;}
.y142{bottom:511.347467pt;}
.y15{bottom:515.430400pt;}
.y74{bottom:522.342533pt;}
.yc4{bottom:522.462133pt;}
.y48{bottom:522.462533pt;}
.y141{bottom:524.680800pt;}
.y14{bottom:531.430400pt;}
.y140{bottom:538.014133pt;}
.y73{bottom:538.342533pt;}
.yc3{bottom:538.462133pt;}
.y47{bottom:538.462533pt;}
.y10b{bottom:538.464533pt;}
.ya5{bottom:541.288800pt;}
.y13{bottom:547.430400pt;}
.y181{bottom:551.345333pt;}
.y13f{bottom:551.347467pt;}
.y72{bottom:554.342533pt;}
.yc2{bottom:554.462133pt;}
.y46{bottom:554.462533pt;}
.y10a{bottom:554.464533pt;}
.y12{bottom:563.430400pt;}
.y180{bottom:564.678667pt;}
.y13e{bottom:564.680800pt;}
.y71{bottom:570.342533pt;}
.yc1{bottom:570.462133pt;}
.y45{bottom:570.462533pt;}
.y109{bottom:570.464533pt;}
.y17f{bottom:578.012000pt;}
.y13d{bottom:578.014133pt;}
.y11{bottom:579.430400pt;}
.y70{bottom:586.342533pt;}
.yc0{bottom:586.462133pt;}
.y44{bottom:586.462533pt;}
.y108{bottom:586.464533pt;}
.ya4{bottom:589.768800pt;}
.y17e{bottom:591.345333pt;}
.y13c{bottom:591.347467pt;}
.y10{bottom:595.430400pt;}
.y6f{bottom:602.342533pt;}
.ybf{bottom:602.462133pt;}
.y43{bottom:602.462533pt;}
.y107{bottom:602.464533pt;}
.y17d{bottom:604.678667pt;}
.y13b{bottom:604.680800pt;}
.ya3{bottom:605.768800pt;}
.yf{bottom:611.430400pt;}
.y17c{bottom:618.012000pt;}
.y13a{bottom:618.014133pt;}
.y6e{bottom:618.342533pt;}
.ybe{bottom:618.462133pt;}
.y42{bottom:618.462533pt;}
.y106{bottom:618.464533pt;}
.ya2{bottom:621.768800pt;}
.ye{bottom:627.430400pt;}
.y17b{bottom:631.345333pt;}
.y139{bottom:631.347467pt;}
.y105{bottom:634.104533pt;}
.y6d{bottom:634.342533pt;}
.ybd{bottom:634.462133pt;}
.y41{bottom:634.462533pt;}
.ya1{bottom:637.768800pt;}
.yd{bottom:643.430400pt;}
.y17a{bottom:644.678667pt;}
.y138{bottom:644.680800pt;}
.y6c{bottom:650.342533pt;}
.ybc{bottom:650.462133pt;}
.y40{bottom:650.462533pt;}
.ya0{bottom:655.758133pt;}
.y179{bottom:658.012000pt;}
.y137{bottom:658.014133pt;}
.y9f{bottom:664.261200pt;}
.y6b{bottom:666.342533pt;}
.ybb{bottom:666.462133pt;}
.y3f{bottom:666.462533pt;}
.y104{bottom:666.464533pt;}
.y178{bottom:671.345333pt;}
.y136{bottom:671.347467pt;}
.y6a{bottom:682.342533pt;}
.yba{bottom:682.462133pt;}
.y3e{bottom:682.462533pt;}
.y103{bottom:682.464533pt;}
.yc{bottom:683.571067pt;}
.y177{bottom:684.678667pt;}
.y135{bottom:684.680800pt;}
.y9e{bottom:690.754533pt;}
.yb{bottom:694.638400pt;}
.y176{bottom:698.012000pt;}
.y134{bottom:698.014133pt;}
.y69{bottom:698.342533pt;}
.yb9{bottom:698.462133pt;}
.y3d{bottom:698.462533pt;}
.yda{bottom:698.464533pt;}
.y9d{bottom:706.754533pt;}
.y175{bottom:711.345333pt;}
.y133{bottom:711.347467pt;}
.y68{bottom:714.342533pt;}
.yb8{bottom:714.462133pt;}
.y3c{bottom:714.462533pt;}
.yd9{bottom:714.464533pt;}
.y9c{bottom:722.754533pt;}
.ya{bottom:722.829867pt;}
.y174{bottom:724.678667pt;}
.y132{bottom:724.680800pt;}
.y67{bottom:730.342533pt;}
.yb7{bottom:730.462133pt;}
.y3b{bottom:730.462533pt;}
.yd8{bottom:730.464533pt;}
.y173{bottom:738.012000pt;}
.y131{bottom:738.014133pt;}
.y9b{bottom:738.754533pt;}
.y9{bottom:739.652400pt;}
.y66{bottom:746.342533pt;}
.yb6{bottom:746.462133pt;}
.y3a{bottom:746.462533pt;}
.yd7{bottom:746.464533pt;}
.y8{bottom:746.829867pt;}
.y172{bottom:751.345333pt;}
.y130{bottom:751.347467pt;}
.y9a{bottom:754.754533pt;}
.yb5{bottom:762.462133pt;}
.y39{bottom:762.462533pt;}
.yd6{bottom:762.464533pt;}
.y7{bottom:763.652400pt;}
.y171{bottom:764.678667pt;}
.y12f{bottom:764.680800pt;}
.y99{bottom:770.757867pt;}
.y65{bottom:777.982533pt;}
.y170{bottom:778.012000pt;}
.y12e{bottom:778.014133pt;}
.yb4{bottom:778.462133pt;}
.y38{bottom:778.462533pt;}
.yd5{bottom:778.464533pt;}
.y6{bottom:789.183067pt;}
.y97{bottom:789.862933pt;}
.y16f{bottom:791.345333pt;}
.y12d{bottom:791.347467pt;}
.yb3{bottom:794.462133pt;}
.y37{bottom:794.462533pt;}
.yd4{bottom:794.464533pt;}
.y98{bottom:803.704533pt;}
.y16e{bottom:804.678667pt;}
.y12c{bottom:804.680800pt;}
.y96{bottom:806.969600pt;}
.yb2{bottom:810.462133pt;}
.y36{bottom:810.462533pt;}
.yd3{bottom:810.464533pt;}
.y16d{bottom:818.012000pt;}
.y12b{bottom:818.014133pt;}
.yb1{bottom:826.462133pt;}
.y35{bottom:826.462533pt;}
.yd2{bottom:826.464533pt;}
.y5{bottom:830.226133pt;}
.y16c{bottom:831.345333pt;}
.y12a{bottom:831.347467pt;}
.y95{bottom:833.341333pt;}
.y94{bottom:842.290133pt;}
.yb0{bottom:842.462133pt;}
.y34{bottom:842.462533pt;}
.yd1{bottom:842.464533pt;}
.y16b{bottom:844.678667pt;}
.y129{bottom:844.680800pt;}
.y16a{bottom:858.012000pt;}
.y128{bottom:858.014133pt;}
.yaf{bottom:858.462133pt;}
.y33{bottom:858.462533pt;}
.yd0{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y169{bottom:871.345333pt;}
.y127{bottom:871.347467pt;}
.y92{bottom:871.466133pt;}
.yae{bottom:874.462133pt;}
.y32{bottom:874.462533pt;}
.ycf{bottom:874.464533pt;}
.y91{bottom:879.969200pt;}
.y93{bottom:879.970133pt;}
.y168{bottom:884.678667pt;}
.y126{bottom:884.680800pt;}
.yad{bottom:890.462133pt;}
.y31{bottom:890.462533pt;}
.yce{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y167{bottom:898.012000pt;}
.y125{bottom:898.014133pt;}
.yac{bottom:906.462133pt;}
.y30{bottom:906.462533pt;}
.ydc{bottom:906.464533pt;}
.y166{bottom:911.345333pt;}
.y124{bottom:911.347467pt;}
.ycd{bottom:922.104533pt;}
.yab{bottom:922.462133pt;}
.y2f{bottom:922.462533pt;}
.ydb{bottom:922.464533pt;}
.y165{bottom:924.678667pt;}
.y123{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.ycb{bottom:1006.590800pt;}
.yf1{bottom:1006.593200pt;}
.y90{bottom:1006.594400pt;}
.y164{bottom:1006.598667pt;}
.y102{bottom:1006.614533pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h1b{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h14{height:37.031250pt;}
.hc{height:37.057292pt;}
.h1c{height:37.437500pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h1e{height:38.937500pt;}
.h18{height:46.698552pt;}
.h17{height:46.727068pt;}
.hd{height:46.796875pt;}
.h1d{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:71.073292pt;}
.h19{height:71.445650pt;}
.h13{height:71.471692pt;}
.h16{height:72.836492pt;}
.h15{height:74.222717pt;}
.h1a{height:80.812875pt;}
.h11{height:81.187275pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818933pt;}
.x23{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x25{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x16{left:119.614933pt;}
.x17{left:162.757733pt;}
.x22{left:172.698133pt;}
.x5{left:189.223467pt;}
.x1e{left:195.677733pt;}
.x19{left:206.544800pt;}
.x15{left:260.012933pt;}
.x18{left:264.351067pt;}
.x13{left:311.722933pt;}
.x14{left:332.489467pt;}
.x20{left:378.813600pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x1a{left:425.198133pt;}
.x7{left:427.085333pt;}
.x24{left:428.980800pt;}
.xf{left:436.524800pt;}
.x26{left:447.878267pt;}
.x1b{left:455.438133pt;}
.x8{left:457.325333pt;}
.xe{left:466.898133pt;}
.x10{left:500.588667pt;}
.x21{left:526.182533pt;}
.x12{left:589.770933pt;}
.x1c{left:610.087600pt;}
.x2{left:616.324800pt;}
.x11{left:653.391467pt;}
.x1d{left:672.284933pt;}
}




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