
    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_d200bb7204b6b672782cee82.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_40aa683083cfb9a66973b0ac.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_90bb681b26e44cc426252d58.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_35b1bafb8b7324ad05533931.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_55e3eea5d34deb8bc9e5838d.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_4c3bd90359aed9834a111f73.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62f181f6e85c0e24ca0d5290.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cbb347f115e3180b83a9098c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b634c2d6318d6a9c2153fdc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_559df1eb27a9b71e8894ce50.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e705a12ccdd0640156ce4a22.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;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls47{letter-spacing:-8.100000px;}
.ls2c{letter-spacing:-7.740000px;}
.ls2f{letter-spacing:-6.660000px;}
.ls3d{letter-spacing:-6.192000px;}
.ls48{letter-spacing:-5.700000px;}
.ls49{letter-spacing:-5.100000px;}
.ls50{letter-spacing:-3.840000px;}
.ls3e{letter-spacing:-1.776000px;}
.ls7{letter-spacing:-0.780000px;}
.ls46{letter-spacing:-0.360000px;}
.ls87{letter-spacing:-0.336000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.096000px;}
.ls30{letter-spacing:-0.060000px;}
.ls86{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003540px;}
.ls72{letter-spacing:0.048000px;}
.ls33{letter-spacing:0.060000px;}
.ls68{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.192000px;}
.ls21{letter-spacing:0.240000px;}
.ls3a{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.300000px;}
.ls73{letter-spacing:0.336000px;}
.ls28{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.420000px;}
.ls5a{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.480000px;}
.ls60{letter-spacing:0.528000px;}
.ls12{letter-spacing:0.540000px;}
.ls67{letter-spacing:0.576000px;}
.ls24{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls70{letter-spacing:0.672000px;}
.ls22{letter-spacing:0.720000px;}
.ls69{letter-spacing:0.768000px;}
.ls40{letter-spacing:0.780000px;}
.ls58{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.ls57{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.lse{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.020000px;}
.ls81{letter-spacing:1.056000px;}
.ls1a{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.140000px;}
.ls63{letter-spacing:1.152000px;}
.ls3c{letter-spacing:1.200000px;}
.ls5b{letter-spacing:1.248000px;}
.ls27{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.296000px;}
.ls17{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.344000px;}
.ls34{letter-spacing:1.380000px;}
.ls5e{letter-spacing:1.392000px;}
.ls23{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.500000px;}
.ls5c{letter-spacing:1.536000px;}
.ls19{letter-spacing:1.560000px;}
.ls75{letter-spacing:1.584000px;}
.ls35{letter-spacing:1.620000px;}
.ls6e{letter-spacing:1.632000px;}
.lsb{letter-spacing:1.680000px;}
.ls78{letter-spacing:1.728000px;}
.ls4{letter-spacing:1.740000px;}
.ls71{letter-spacing:1.776000px;}
.ls39{letter-spacing:1.800000px;}
.ls6a{letter-spacing:1.824000px;}
.ls13{letter-spacing:1.860000px;}
.ls7f{letter-spacing:1.872000px;}
.ls1f{letter-spacing:1.920000px;}
.ls76{letter-spacing:1.968000px;}
.ls2b{letter-spacing:1.980000px;}
.ls61{letter-spacing:2.016000px;}
.ls38{letter-spacing:2.040000px;}
.ls65{letter-spacing:2.064000px;}
.ls43{letter-spacing:2.100000px;}
.ls7e{letter-spacing:2.112000px;}
.ls1b{letter-spacing:2.160000px;}
.ls7d{letter-spacing:2.208000px;}
.ls59{letter-spacing:2.256000px;}
.ls36{letter-spacing:2.280000px;}
.ls88{letter-spacing:2.304000px;}
.ls1e{letter-spacing:2.340000px;}
.ls82{letter-spacing:2.352000px;}
.ls14{letter-spacing:2.400000px;}
.ls9{letter-spacing:2.460000px;}
.ls6c{letter-spacing:2.496000px;}
.ls20{letter-spacing:2.520000px;}
.ls79{letter-spacing:2.544000px;}
.ls1c{letter-spacing:2.580000px;}
.ls44{letter-spacing:2.640000px;}
.ls64{letter-spacing:2.688000px;}
.ls15{letter-spacing:2.700000px;}
.ls56{letter-spacing:2.832000px;}
.ls3{letter-spacing:2.880000px;}
.ls6d{letter-spacing:2.928000px;}
.ls10{letter-spacing:2.940000px;}
.ls7c{letter-spacing:2.976000px;}
.ls85{letter-spacing:3.024000px;}
.ls8{letter-spacing:3.060000px;}
.ls83{letter-spacing:3.072000px;}
.lsf{letter-spacing:3.120000px;}
.ls77{letter-spacing:3.168000px;}
.ls26{letter-spacing:3.180000px;}
.ls84{letter-spacing:3.216000px;}
.ls16{letter-spacing:3.240000px;}
.ls80{letter-spacing:3.312000px;}
.ls25{letter-spacing:3.420000px;}
.ls4c{letter-spacing:3.480000px;}
.ls4a{letter-spacing:3.540000px;}
.ls37{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.660000px;}
.ls41{letter-spacing:3.840000px;}
.ls31{letter-spacing:3.900000px;}
.ls3f{letter-spacing:4.080000px;}
.ls5f{letter-spacing:4.176000px;}
.ls4d{letter-spacing:4.320000px;}
.ls51{letter-spacing:4.920000px;}
.ls54{letter-spacing:5.880000px;}
.ls53{letter-spacing:6.240000px;}
.ls4f{letter-spacing:6.420000px;}
.ls4b{letter-spacing:7.260000px;}
.ls45{letter-spacing:7.560000px;}
.ls4e{letter-spacing:7.860000px;}
.ls1{letter-spacing:59.532276px;}
.ls0{letter-spacing:59.532876px;}
.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;}
.ws68{word-spacing:-19.020000px;}
.ws2f{word-spacing:-18.900000px;}
.ws30{word-spacing:-17.880000px;}
.ws2{word-spacing:-17.514000px;}
.wse{word-spacing:-17.160000px;}
.wsf{word-spacing:-16.920000px;}
.ws5{word-spacing:-16.680000px;}
.ws4b{word-spacing:-16.380000px;}
.ws4c{word-spacing:-15.900000px;}
.ws4a{word-spacing:-15.840000px;}
.ws31{word-spacing:-15.660000px;}
.ws66{word-spacing:-15.600000px;}
.ws67{word-spacing:-15.420000px;}
.ws4f{word-spacing:-15.300000px;}
.ws4e{word-spacing:-15.120000px;}
.ws4d{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.208000px;}
.ws7a{word-spacing:-14.064000px;}
.ws7e{word-spacing:-14.016000px;}
.ws9c{word-spacing:-13.632000px;}
.ws9b{word-spacing:-13.440000px;}
.ws78{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.344000px;}
.ws9e{word-spacing:-13.248000px;}
.ws76{word-spacing:-12.864000px;}
.ws7b{word-spacing:-12.624000px;}
.ws7d{word-spacing:-12.576000px;}
.ws6{word-spacing:-12.510000px;}
.ws7f{word-spacing:-12.480000px;}
.ws77{word-spacing:-12.432000px;}
.ws79{word-spacing:-12.336000px;}
.ws32{word-spacing:-12.288000px;}
.wsa3{word-spacing:-12.240000px;}
.ws9f{word-spacing:-12.192000px;}
.wsa0{word-spacing:-12.144000px;}
.ws9d{word-spacing:-12.048000px;}
.ws49{word-spacing:-12.000000px;}
.wsa2{word-spacing:-11.952000px;}
.ws7c{word-spacing:-11.904000px;}
.ws4{word-spacing:-10.210662px;}
.ws10{word-spacing:-7.260000px;}
.ws81{word-spacing:-5.880000px;}
.ws35{word-spacing:-3.900000px;}
.wsb4{word-spacing:-3.216000px;}
.ws57{word-spacing:-3.180000px;}
.ws18{word-spacing:-3.060000px;}
.ws9{word-spacing:-2.886000px;}
.ws90{word-spacing:-2.832000px;}
.ws5a{word-spacing:-2.640000px;}
.ws8d{word-spacing:-2.496000px;}
.ws22{word-spacing:-2.160000px;}
.ws8b{word-spacing:-2.064000px;}
.ws58{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.776000px;}
.wsa4{word-spacing:-1.728000px;}
.ws91{word-spacing:-1.680000px;}
.ws60{word-spacing:-1.620000px;}
.ws88{word-spacing:-1.536000px;}
.ws50{word-spacing:-1.440000px;}
.ws86{word-spacing:-1.392000px;}
.wsa5{word-spacing:-1.344000px;}
.ws3b{word-spacing:-1.320000px;}
.ws80{word-spacing:-1.260000px;}
.ws96{word-spacing:-1.200000px;}
.ws8a{word-spacing:-1.152000px;}
.ws17{word-spacing:-1.140000px;}
.ws2d{word-spacing:-1.020000px;}
.ws56{word-spacing:-0.900000px;}
.ws85{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.840000px;}
.ws34{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.600000px;}
.wsaf{word-spacing:-0.528000px;}
.ws92{word-spacing:-0.480000px;}
.ws84{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.420000px;}
.wsb1{word-spacing:-0.384000px;}
.ws36{word-spacing:-0.360000px;}
.wsaa{word-spacing:-0.336000px;}
.ws54{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.288000px;}
.ws51{word-spacing:-0.240000px;}
.wsb0{word-spacing:-0.192000px;}
.ws1e{word-spacing:-0.180000px;}
.ws16{word-spacing:-0.120000px;}
.ws38{word-spacing:-0.060000px;}
.wsab{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws5f{word-spacing:0.120000px;}
.ws5b{word-spacing:0.180000px;}
.ws98{word-spacing:0.192000px;}
.ws1f{word-spacing:0.240000px;}
.ws94{word-spacing:0.288000px;}
.ws25{word-spacing:0.300000px;}
.ws3a{word-spacing:0.360000px;}
.ws3c{word-spacing:0.420000px;}
.ws8c{word-spacing:0.432000px;}
.ws20{word-spacing:0.480000px;}
.ws6d{word-spacing:0.600000px;}
.ws87{word-spacing:0.672000px;}
.ws2c{word-spacing:0.720000px;}
.ws6e{word-spacing:0.780000px;}
.ws5d{word-spacing:0.840000px;}
.wsae{word-spacing:1.008000px;}
.ws26{word-spacing:1.020000px;}
.ws29{word-spacing:1.080000px;}
.ws74{word-spacing:1.200000px;}
.wsb3{word-spacing:1.296000px;}
.ws3d{word-spacing:1.320000px;}
.wsa7{word-spacing:1.344000px;}
.ws1d{word-spacing:1.380000px;}
.ws65{word-spacing:1.560000px;}
.ws2e{word-spacing:1.620000px;}
.wsa{word-spacing:1.680000px;}
.ws5e{word-spacing:1.740000px;}
.ws13{word-spacing:1.860000px;}
.ws9a{word-spacing:1.872000px;}
.ws27{word-spacing:1.920000px;}
.ws39{word-spacing:1.980000px;}
.ws64{word-spacing:2.040000px;}
.wsd{word-spacing:2.100000px;}
.ws89{word-spacing:2.112000px;}
.ws12{word-spacing:2.160000px;}
.wsa6{word-spacing:2.208000px;}
.ws8f{word-spacing:2.256000px;}
.ws24{word-spacing:2.340000px;}
.wsa8{word-spacing:2.400000px;}
.ws1c{word-spacing:2.460000px;}
.ws6c{word-spacing:2.520000px;}
.ws61{word-spacing:2.640000px;}
.ws19{word-spacing:2.820000px;}
.ws6b{word-spacing:2.880000px;}
.ws72{word-spacing:2.940000px;}
.ws1a{word-spacing:3.000000px;}
.ws83{word-spacing:3.072000px;}
.wsb2{word-spacing:3.216000px;}
.ws63{word-spacing:3.240000px;}
.ws95{word-spacing:3.264000px;}
.ws3e{word-spacing:3.408000px;}
.ws8e{word-spacing:3.456000px;}
.wsac{word-spacing:3.648000px;}
.ws33{word-spacing:3.660000px;}
.wsb5{word-spacing:3.696000px;}
.ws37{word-spacing:3.720000px;}
.ws93{word-spacing:3.792000px;}
.ws6a{word-spacing:3.840000px;}
.wsa9{word-spacing:3.888000px;}
.ws6f{word-spacing:3.900000px;}
.ws82{word-spacing:3.936000px;}
.ws71{word-spacing:3.960000px;}
.ws40{word-spacing:3.984000px;}
.ws69{word-spacing:4.020000px;}
.ws1b{word-spacing:4.080000px;}
.ws70{word-spacing:4.140000px;}
.ws23{word-spacing:4.260000px;}
.ws52{word-spacing:4.320000px;}
.ws2b{word-spacing:4.380000px;}
.ws2a{word-spacing:4.500000px;}
.ws15{word-spacing:4.620000px;}
.ws11{word-spacing:4.680000px;}
.ws73{word-spacing:4.800000px;}
.ws97{word-spacing:4.848000px;}
.wsb{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws62{word-spacing:5.100000px;}
.ws75{word-spacing:5.520000px;}
.ws59{word-spacing:5.700000px;}
.ws3f{word-spacing:6.192000px;}
.ws21{word-spacing:6.660000px;}
.ws14{word-spacing:7.740000px;}
.ws53{word-spacing:8.100000px;}
.ws3{word-spacing:49.320456px;}
.ws1{word-spacing:49.322028px;}
.ws41{word-spacing:103.152000px;}
.ws47{word-spacing:165.120000px;}
.ws45{word-spacing:177.120000px;}
.ws42{word-spacing:195.120000px;}
.ws43{word-spacing:207.120000px;}
.ws46{word-spacing:211.536000px;}
.ws44{word-spacing:219.120000px;}
.ws48{word-spacing:357.648000px;}
._b{margin-left:-2898.144000px;}
._5b{margin-left:-2874.336000px;}
._a{margin-left:-8.430000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.450000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._5{width:1.080000px;}
._9{width:2.940000px;}
._6{width:4.920000px;}
._8{width:6.000000px;}
._7{width:7.920000px;}
._5a{width:9.030000px;}
._5c{width:11.340000px;}
._10{width:121.776000px;}
._e{width:131.136000px;}
._f{width:143.088000px;}
._c{width:166.416000px;}
._1f{width:177.120000px;}
._14{width:189.120000px;}
._44{width:197.784000px;}
._18{width:201.120000px;}
._20{width:207.120000px;}
._4e{width:208.272000px;}
._46{width:209.994000px;}
._15{width:219.120000px;}
._19{width:231.120000px;}
._1a{width:244.656000px;}
._56{width:259.002000px;}
._4a{width:270.114000px;}
._13{width:286.176000px;}
._50{width:295.002000px;}
._12{width:313.104000px;}
._24{width:314.448000px;}
._55{width:316.902000px;}
._1b{width:328.326000px;}
._17{width:335.760000px;}
._59{width:337.200000px;}
._45{width:344.598000px;}
._3a{width:347.760000px;}
._22{width:351.744000px;}
._32{width:354.432000px;}
._25{width:356.154000px;}
._16{width:359.376000px;}
._1c{width:361.104000px;}
._2e{width:363.360000px;}
._37{width:366.432000px;}
._40{width:374.982000px;}
._43{width:376.992000px;}
._4d{width:381.552000px;}
._42{width:382.608000px;}
._4b{width:386.736000px;}
._2b{width:388.278000px;}
._48{width:389.754000px;}
._33{width:394.032000px;}
._2c{width:397.968000px;}
._51{width:400.416000px;}
._3b{width:402.000000px;}
._26{width:404.688000px;}
._38{width:410.064000px;}
._11{width:411.360000px;}
._4f{width:414.528000px;}
._53{width:423.552000px;}
._23{width:434.064000px;}
._28{width:435.360000px;}
._3c{width:447.360000px;}
._35{width:451.344000px;}
._39{width:459.312000px;}
._31{width:463.392000px;}
._3e{width:465.450000px;}
._1d{width:475.014000px;}
._49{width:477.168000px;}
._21{width:484.656000px;}
._36{width:500.688000px;}
._4c{width:505.872000px;}
._d{width:521.088000px;}
._57{width:530.640000px;}
._47{width:555.936000px;}
._54{width:562.851000px;}
._41{width:573.984000px;}
._27{width:611.766000px;}
._2a{width:623.232000px;}
._30{width:636.144000px;}
._2d{width:644.592000px;}
._3f{width:647.232000px;}
._52{width:653.184000px;}
._29{width:660.576000px;}
._3d{width:661.920000px;}
._34{width:667.248000px;}
._1e{width:671.232000px;}
._2f{width:677.478000px;}
._58{width:1202.970000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.y30{bottom:47.777250px;}
.y17d{bottom:80.263500px;}
.y6c{bottom:83.635350px;}
.y76{bottom:83.661150px;}
.y66{bottom:83.770350px;}
.ydf{bottom:83.772600px;}
.y13c{bottom:86.121900px;}
.y2d{bottom:88.026750px;}
.ya9{bottom:94.332300px;}
.y17c{bottom:95.263500px;}
.y75{bottom:99.405150px;}
.y13b{bottom:101.121900px;}
.y108{bottom:101.230350px;}
.y6b{bottom:101.635350px;}
.y65{bottom:101.770350px;}
.yde{bottom:101.772600px;}
.y2c{bottom:103.023000px;}
.y17b{bottom:110.263500px;}
.y74{bottom:115.149150px;}
.y13a{bottom:116.121900px;}
.y6a{bottom:119.635350px;}
.y64{bottom:119.770350px;}
.ydd{bottom:119.772600px;}
.ya8{bottom:123.336300px;}
.y17a{bottom:125.263500px;}
.y139{bottom:131.121900px;}
.y69{bottom:137.635350px;}
.y63{bottom:137.770350px;}
.ydc{bottom:137.772600px;}
.ya7{bottom:139.584300px;}
.y179{bottom:140.263500px;}
.y138{bottom:146.121900px;}
.y178{bottom:155.263500px;}
.y68{bottom:155.635350px;}
.y62{bottom:155.770350px;}
.ydb{bottom:155.772600px;}
.ya6{bottom:155.832300px;}
.y137{bottom:161.121900px;}
.y29{bottom:168.774300px;}
.y177{bottom:170.263500px;}
.ya5{bottom:172.080300px;}
.y73{bottom:173.635350px;}
.y61{bottom:173.770350px;}
.yda{bottom:173.772600px;}
.y136{bottom:176.121900px;}
.y176{bottom:185.263500px;}
.y28{bottom:186.774300px;}
.ya4{bottom:188.328300px;}
.y135{bottom:191.121900px;}
.y67{bottom:191.230350px;}
.y72{bottom:191.635350px;}
.y60{bottom:191.770350px;}
.yd9{bottom:191.772600px;}
.y175{bottom:200.263500px;}
.ya3{bottom:204.576300px;}
.y2b{bottom:204.774300px;}
.y134{bottom:206.121900px;}
.y71{bottom:209.635350px;}
.y5f{bottom:209.770350px;}
.yd8{bottom:209.772600px;}
.y174{bottom:215.263500px;}
.ya2{bottom:220.824300px;}
.y133{bottom:221.121900px;}
.y27{bottom:222.371550px;}
.y2a{bottom:222.774300px;}
.y70{bottom:227.635350px;}
.y5e{bottom:227.770350px;}
.yd7{bottom:227.772600px;}
.y173{bottom:230.263500px;}
.y132{bottom:236.121900px;}
.ya1{bottom:237.072300px;}
.y172{bottom:245.263500px;}
.y6f{bottom:245.635350px;}
.y5d{bottom:245.770350px;}
.yd6{bottom:245.772600px;}
.y131{bottom:251.121900px;}
.ya0{bottom:253.320300px;}
.y171{bottom:260.263500px;}
.y107{bottom:263.635350px;}
.y5c{bottom:263.770350px;}
.yd5{bottom:263.772600px;}
.y130{bottom:266.121900px;}
.y9f{bottom:269.568300px;}
.y170{bottom:275.263500px;}
.y12f{bottom:281.121900px;}
.y6e{bottom:281.230350px;}
.y106{bottom:281.635350px;}
.y5b{bottom:281.770350px;}
.yd4{bottom:281.772600px;}
.y9e{bottom:285.816300px;}
.y16f{bottom:290.263500px;}
.y12e{bottom:296.121900px;}
.y26{bottom:297.514200px;}
.y105{bottom:299.635350px;}
.y5a{bottom:299.770350px;}
.yd3{bottom:299.772600px;}
.y9d{bottom:302.064300px;}
.y16e{bottom:305.263500px;}
.y12d{bottom:311.121900px;}
.y104{bottom:317.635350px;}
.y59{bottom:317.770350px;}
.yd2{bottom:317.772600px;}
.y9c{bottom:318.312300px;}
.y16d{bottom:320.263500px;}
.y25{bottom:324.859200px;}
.y12c{bottom:326.121900px;}
.y103{bottom:335.230350px;}
.y16c{bottom:335.263500px;}
.y58{bottom:335.770350px;}
.yd1{bottom:335.772600px;}
.y12b{bottom:341.121900px;}
.y24{bottom:342.859200px;}
.y9b{bottom:347.316300px;}
.y16b{bottom:350.263500px;}
.y57{bottom:353.770350px;}
.yd0{bottom:353.772600px;}
.y12a{bottom:356.121900px;}
.y23{bottom:360.859200px;}
.y9a{bottom:363.816300px;}
.y16a{bottom:365.263500px;}
.y129{bottom:371.121900px;}
.y102{bottom:371.635350px;}
.y56{bottom:371.770350px;}
.ycf{bottom:371.772600px;}
.y22{bottom:378.859200px;}
.y169{bottom:380.263500px;}
.y128{bottom:386.121900px;}
.y101{bottom:389.635350px;}
.y55{bottom:389.770350px;}
.yce{bottom:389.772600px;}
.y168{bottom:395.263500px;}
.y99{bottom:396.207450px;}
.y21{bottom:396.859200px;}
.y127{bottom:401.121900px;}
.y100{bottom:407.635350px;}
.y54{bottom:407.770350px;}
.ycd{bottom:407.772600px;}
.y167{bottom:410.263500px;}
.y20{bottom:414.859200px;}
.y98{bottom:415.707450px;}
.y126{bottom:416.121900px;}
.y166{bottom:425.263500px;}
.yff{bottom:425.635350px;}
.y53{bottom:425.770350px;}
.ycc{bottom:425.772600px;}
.y125{bottom:431.121900px;}
.y1f{bottom:432.859200px;}
.y165{bottom:440.263500px;}
.yfe{bottom:443.635350px;}
.y52{bottom:443.770350px;}
.ycb{bottom:443.772600px;}
.y124{bottom:446.121900px;}
.y1e{bottom:450.859200px;}
.y164{bottom:455.263500px;}
.y123{bottom:461.121900px;}
.yfd{bottom:461.635350px;}
.y51{bottom:461.770350px;}
.yca{bottom:461.772600px;}
.y1d{bottom:468.859200px;}
.y163{bottom:470.263500px;}
.y97{bottom:472.856100px;}
.y122{bottom:476.121900px;}
.yfc{bottom:479.635350px;}
.y50{bottom:479.770350px;}
.yc9{bottom:479.772600px;}
.y162{bottom:485.263500px;}
.y1c{bottom:486.859200px;}
.y96{bottom:489.104100px;}
.y121{bottom:491.121900px;}
.yfb{bottom:497.635350px;}
.y4f{bottom:497.770350px;}
.yc8{bottom:497.772600px;}
.y161{bottom:500.263500px;}
.y1b{bottom:504.859200px;}
.y95{bottom:505.352100px;}
.y120{bottom:506.121900px;}
.y160{bottom:515.263500px;}
.yfa{bottom:515.635350px;}
.y4e{bottom:515.770350px;}
.yc7{bottom:515.772600px;}
.y11f{bottom:521.121900px;}
.y94{bottom:521.600100px;}
.y1a{bottom:522.859200px;}
.y15f{bottom:530.263500px;}
.yf9{bottom:533.635350px;}
.y4d{bottom:533.770350px;}
.yc6{bottom:533.772600px;}
.y11e{bottom:536.121900px;}
.y93{bottom:537.848100px;}
.y19{bottom:540.859200px;}
.y15e{bottom:545.263500px;}
.y11d{bottom:551.121900px;}
.yf8{bottom:551.635350px;}
.y4c{bottom:551.770350px;}
.yc5{bottom:551.772600px;}
.y92{bottom:554.096100px;}
.y18{bottom:558.859200px;}
.y15d{bottom:560.263500px;}
.y11c{bottom:566.121900px;}
.yf7{bottom:569.635350px;}
.y4b{bottom:569.770350px;}
.yc4{bottom:569.772600px;}
.y91{bottom:570.344100px;}
.y15c{bottom:575.263500px;}
.y17{bottom:576.859200px;}
.y11b{bottom:581.121900px;}
.y90{bottom:586.592100px;}
.yf6{bottom:587.635350px;}
.y4a{bottom:587.770350px;}
.yc3{bottom:587.772600px;}
.y15b{bottom:590.263500px;}
.y16{bottom:594.859200px;}
.y11a{bottom:596.121900px;}
.y8f{bottom:602.840100px;}
.y15a{bottom:605.263500px;}
.yf5{bottom:605.635350px;}
.y49{bottom:605.770350px;}
.yc2{bottom:605.772600px;}
.y119{bottom:611.121900px;}
.y8e{bottom:619.088100px;}
.y159{bottom:620.263500px;}
.yf4{bottom:623.635350px;}
.y48{bottom:623.770350px;}
.yc1{bottom:623.772600px;}
.y118{bottom:626.121900px;}
.y158{bottom:635.263500px;}
.y8d{bottom:635.336100px;}
.y15{bottom:640.017300px;}
.y117{bottom:641.121900px;}
.yf3{bottom:641.635350px;}
.y47{bottom:641.770350px;}
.yc0{bottom:641.772600px;}
.y157{bottom:650.263500px;}
.y8c{bottom:651.584100px;}
.y14{bottom:652.468050px;}
.y116{bottom:656.121900px;}
.yf2{bottom:659.635350px;}
.y46{bottom:659.770350px;}
.ybf{bottom:659.772600px;}
.y156{bottom:665.263500px;}
.y8b{bottom:667.903350px;}
.y115{bottom:671.121900px;}
.yf1{bottom:677.635350px;}
.y45{bottom:677.770350px;}
.ybe{bottom:677.772600px;}
.y155{bottom:680.263500px;}
.y8a{bottom:684.151350px;}
.y114{bottom:686.121900px;}
.y13{bottom:689.608950px;}
.y196{bottom:695.263500px;}
.y154{bottom:695.265900px;}
.yf0{bottom:695.635350px;}
.y44{bottom:695.770350px;}
.ybd{bottom:695.772600px;}
.y89{bottom:700.399350px;}
.y113{bottom:701.121900px;}
.y12{bottom:703.108950px;}
.y195{bottom:710.263500px;}
.y153{bottom:710.265900px;}
.yef{bottom:713.635350px;}
.y43{bottom:713.770350px;}
.ybc{bottom:713.772600px;}
.y112{bottom:716.121900px;}
.y11{bottom:716.608950px;}
.y88{bottom:716.647350px;}
.y10{bottom:724.683600px;}
.y194{bottom:725.263500px;}
.y152{bottom:725.265900px;}
.y111{bottom:731.121900px;}
.yee{bottom:731.635350px;}
.y42{bottom:731.770350px;}
.ybb{bottom:731.772600px;}
.y87{bottom:732.895350px;}
.y193{bottom:740.263500px;}
.y151{bottom:740.265900px;}
.yf{bottom:743.608950px;}
.y110{bottom:746.121900px;}
.y86{bottom:749.143350px;}
.yed{bottom:749.635350px;}
.y41{bottom:749.770350px;}
.yba{bottom:749.772600px;}
.ye{bottom:751.683600px;}
.y192{bottom:755.263500px;}
.y150{bottom:755.265900px;}
.y10f{bottom:761.121900px;}
.y85{bottom:765.391350px;}
.yec{bottom:767.230350px;}
.y40{bottom:767.770350px;}
.yb9{bottom:767.772600px;}
.y191{bottom:770.263500px;}
.y14f{bottom:770.265900px;}
.yd{bottom:770.608950px;}
.y10e{bottom:776.121900px;}
.yc{bottom:778.683600px;}
.y84{bottom:781.639350px;}
.y190{bottom:785.263500px;}
.y14e{bottom:785.265900px;}
.y3f{bottom:785.770350px;}
.yb8{bottom:785.772600px;}
.y10d{bottom:791.121900px;}
.yb{bottom:797.608950px;}
.y83{bottom:797.887350px;}
.y18f{bottom:800.263500px;}
.y14d{bottom:800.265900px;}
.yeb{bottom:803.635350px;}
.y3e{bottom:803.770350px;}
.yb7{bottom:803.772600px;}
.ya{bottom:805.683600px;}
.y10c{bottom:806.121900px;}
.y82{bottom:814.135350px;}
.y18e{bottom:815.263500px;}
.y14c{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.yea{bottom:821.635350px;}
.y3d{bottom:821.770350px;}
.yb6{bottom:821.772600px;}
.y18d{bottom:830.263500px;}
.y14b{bottom:830.265900px;}
.y81{bottom:830.383350px;}
.y8{bottom:838.108950px;}
.y10b{bottom:839.230350px;}
.ye9{bottom:839.635350px;}
.y3c{bottom:839.770350px;}
.yb5{bottom:839.772600px;}
.y18c{bottom:845.263500px;}
.y14a{bottom:845.265900px;}
.y80{bottom:846.631350px;}
.ye8{bottom:857.635350px;}
.y3b{bottom:857.770350px;}
.yb4{bottom:857.772600px;}
.y18b{bottom:860.263500px;}
.y149{bottom:860.265900px;}
.y7f{bottom:862.879350px;}
.y7{bottom:866.836200px;}
.y18a{bottom:875.263500px;}
.y148{bottom:875.265900px;}
.ye7{bottom:875.635350px;}
.y3a{bottom:875.770350px;}
.yb3{bottom:875.772600px;}
.y7e{bottom:879.127350px;}
.y6{bottom:887.830950px;}
.y189{bottom:890.263500px;}
.y147{bottom:890.265900px;}
.ye6{bottom:893.635350px;}
.y39{bottom:893.770350px;}
.yb2{bottom:893.772600px;}
.y7d{bottom:895.375350px;}
.y188{bottom:905.263500px;}
.y146{bottom:905.265900px;}
.y7c{bottom:911.623350px;}
.ye5{bottom:911.635350px;}
.y38{bottom:911.770350px;}
.yb1{bottom:911.772600px;}
.y187{bottom:920.263500px;}
.y145{bottom:920.265900px;}
.y7b{bottom:927.871350px;}
.ye4{bottom:929.635350px;}
.y37{bottom:929.770350px;}
.yb0{bottom:929.772600px;}
.y5{bottom:934.004400px;}
.y186{bottom:935.263500px;}
.y144{bottom:935.265900px;}
.y10a{bottom:947.365350px;}
.ye3{bottom:947.635350px;}
.y36{bottom:947.770350px;}
.yaf{bottom:947.772600px;}
.y185{bottom:950.263500px;}
.y143{bottom:950.265900px;}
.y7a{bottom:956.875350px;}
.y184{bottom:965.263500px;}
.y142{bottom:965.265900px;}
.y35{bottom:965.770350px;}
.yae{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y183{bottom:980.263500px;}
.y141{bottom:980.265900px;}
.ye2{bottom:983.230350px;}
.y34{bottom:983.770350px;}
.yad{bottom:983.772600px;}
.y79{bottom:985.879350px;}
.y182{bottom:995.263500px;}
.y140{bottom:995.265900px;}
.y109{bottom:1001.365350px;}
.y33{bottom:1001.770350px;}
.yac{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y181{bottom:1010.263500px;}
.y13f{bottom:1010.265900px;}
.y78{bottom:1018.270350px;}
.y32{bottom:1019.770350px;}
.ye1{bottom:1019.772600px;}
.y180{bottom:1025.263500px;}
.y13e{bottom:1025.265900px;}
.yab{bottom:1037.367600px;}
.y31{bottom:1037.770350px;}
.ye0{bottom:1037.772600px;}
.y17f{bottom:1040.263500px;}
.y13d{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y6d{bottom:1132.418700px;}
.y77{bottom:1132.421700px;}
.y17e{bottom:1132.423500px;}
.yaa{bottom:1132.476300px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.099797px;}
.ha{height:19.125417px;}
.hb{height:28.412109px;}
.h2{height:30.597656px;}
.h9{height:32.761230px;}
.h10{height:32.783203px;}
.h8{height:32.805176px;}
.h13{height:33.351562px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.hf{height:41.689453px;}
.he{height:43.681641px;}
.hd{height:43.710938px;}
.hc{height:43.740234px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x16{left:78.663600px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x22{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.540400px;}
.x20{left:123.307350px;}
.x3{left:125.427750px;}
.x6{left:131.811000px;}
.x5{left:212.876400px;}
.x1f{left:215.545350px;}
.x1d{left:220.137450px;}
.x11{left:232.360350px;}
.x15{left:274.647600px;}
.x17{left:318.373350px;}
.x18{left:432.013350px;}
.x19{left:445.861350px;}
.x9{left:455.041500px;}
.xc{left:457.040400px;}
.x12{left:478.330350px;}
.x7{left:480.471000px;}
.x23{left:482.615400px;}
.xd{left:491.060400px;}
.x21{left:503.899350px;}
.x13{left:512.350350px;}
.xe{left:525.306600px;}
.x1a{left:540.325350px;}
.x1b{left:552.157350px;}
.x1e{left:570.676200px;}
.x10{left:663.492300px;}
.x1c{left:664.897350px;}
.x2{left:693.365400px;}
.xf{left:735.065400px;}
.x14{left:756.325200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls47{letter-spacing:-7.200000pt;}
.ls2c{letter-spacing:-6.880000pt;}
.ls2f{letter-spacing:-5.920000pt;}
.ls3d{letter-spacing:-5.504000pt;}
.ls48{letter-spacing:-5.066667pt;}
.ls49{letter-spacing:-4.533333pt;}
.ls50{letter-spacing:-3.413333pt;}
.ls3e{letter-spacing:-1.578667pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls46{letter-spacing:-0.320000pt;}
.ls87{letter-spacing:-0.298667pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.085333pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls86{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003147pt;}
.ls72{letter-spacing:0.042667pt;}
.ls33{letter-spacing:0.053333pt;}
.ls68{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.170667pt;}
.ls21{letter-spacing:0.213333pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.266667pt;}
.ls73{letter-spacing:0.298667pt;}
.ls28{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls60{letter-spacing:0.469333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls67{letter-spacing:0.512000pt;}
.ls24{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls70{letter-spacing:0.597333pt;}
.ls22{letter-spacing:0.640000pt;}
.ls69{letter-spacing:0.682667pt;}
.ls40{letter-spacing:0.693333pt;}
.ls58{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls57{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.lse{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls81{letter-spacing:0.938667pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls63{letter-spacing:1.024000pt;}
.ls3c{letter-spacing:1.066667pt;}
.ls5b{letter-spacing:1.109333pt;}
.ls27{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.152000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.194667pt;}
.ls34{letter-spacing:1.226667pt;}
.ls5e{letter-spacing:1.237333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.333333pt;}
.ls5c{letter-spacing:1.365333pt;}
.ls19{letter-spacing:1.386667pt;}
.ls75{letter-spacing:1.408000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls6e{letter-spacing:1.450667pt;}
.lsb{letter-spacing:1.493333pt;}
.ls78{letter-spacing:1.536000pt;}
.ls4{letter-spacing:1.546667pt;}
.ls71{letter-spacing:1.578667pt;}
.ls39{letter-spacing:1.600000pt;}
.ls6a{letter-spacing:1.621333pt;}
.ls13{letter-spacing:1.653333pt;}
.ls7f{letter-spacing:1.664000pt;}
.ls1f{letter-spacing:1.706667pt;}
.ls76{letter-spacing:1.749333pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls61{letter-spacing:1.792000pt;}
.ls38{letter-spacing:1.813333pt;}
.ls65{letter-spacing:1.834667pt;}
.ls43{letter-spacing:1.866667pt;}
.ls7e{letter-spacing:1.877333pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls7d{letter-spacing:1.962667pt;}
.ls59{letter-spacing:2.005333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls88{letter-spacing:2.048000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls82{letter-spacing:2.090667pt;}
.ls14{letter-spacing:2.133333pt;}
.ls9{letter-spacing:2.186667pt;}
.ls6c{letter-spacing:2.218667pt;}
.ls20{letter-spacing:2.240000pt;}
.ls79{letter-spacing:2.261333pt;}
.ls1c{letter-spacing:2.293333pt;}
.ls44{letter-spacing:2.346667pt;}
.ls64{letter-spacing:2.389333pt;}
.ls15{letter-spacing:2.400000pt;}
.ls56{letter-spacing:2.517333pt;}
.ls3{letter-spacing:2.560000pt;}
.ls6d{letter-spacing:2.602667pt;}
.ls10{letter-spacing:2.613333pt;}
.ls7c{letter-spacing:2.645333pt;}
.ls85{letter-spacing:2.688000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls83{letter-spacing:2.730667pt;}
.lsf{letter-spacing:2.773333pt;}
.ls77{letter-spacing:2.816000pt;}
.ls26{letter-spacing:2.826667pt;}
.ls84{letter-spacing:2.858667pt;}
.ls16{letter-spacing:2.880000pt;}
.ls80{letter-spacing:2.944000pt;}
.ls25{letter-spacing:3.040000pt;}
.ls4c{letter-spacing:3.093333pt;}
.ls4a{letter-spacing:3.146667pt;}
.ls37{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.253333pt;}
.ls41{letter-spacing:3.413333pt;}
.ls31{letter-spacing:3.466667pt;}
.ls3f{letter-spacing:3.626667pt;}
.ls5f{letter-spacing:3.712000pt;}
.ls4d{letter-spacing:3.840000pt;}
.ls51{letter-spacing:4.373333pt;}
.ls54{letter-spacing:5.226667pt;}
.ls53{letter-spacing:5.546667pt;}
.ls4f{letter-spacing:5.706667pt;}
.ls4b{letter-spacing:6.453333pt;}
.ls45{letter-spacing:6.720000pt;}
.ls4e{letter-spacing:6.986667pt;}
.ls1{letter-spacing:52.917579pt;}
.ls0{letter-spacing:52.918112pt;}
.ws0{word-spacing:-31.284267pt;}
.ws68{word-spacing:-16.906667pt;}
.ws2f{word-spacing:-16.800000pt;}
.ws30{word-spacing:-15.893333pt;}
.ws2{word-spacing:-15.568000pt;}
.wse{word-spacing:-15.253333pt;}
.wsf{word-spacing:-15.040000pt;}
.ws5{word-spacing:-14.826667pt;}
.ws4b{word-spacing:-14.560000pt;}
.ws4c{word-spacing:-14.133333pt;}
.ws4a{word-spacing:-14.080000pt;}
.ws31{word-spacing:-13.920000pt;}
.ws66{word-spacing:-13.866667pt;}
.ws67{word-spacing:-13.706667pt;}
.ws4f{word-spacing:-13.600000pt;}
.ws4e{word-spacing:-13.440000pt;}
.ws4d{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-12.629333pt;}
.ws7a{word-spacing:-12.501333pt;}
.ws7e{word-spacing:-12.458667pt;}
.ws9c{word-spacing:-12.117333pt;}
.ws9b{word-spacing:-11.946667pt;}
.ws78{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws9e{word-spacing:-11.776000pt;}
.ws76{word-spacing:-11.434667pt;}
.ws7b{word-spacing:-11.221333pt;}
.ws7d{word-spacing:-11.178667pt;}
.ws6{word-spacing:-11.120000pt;}
.ws7f{word-spacing:-11.093333pt;}
.ws77{word-spacing:-11.050667pt;}
.ws79{word-spacing:-10.965333pt;}
.ws32{word-spacing:-10.922667pt;}
.wsa3{word-spacing:-10.880000pt;}
.ws9f{word-spacing:-10.837333pt;}
.wsa0{word-spacing:-10.794667pt;}
.ws9d{word-spacing:-10.709333pt;}
.ws49{word-spacing:-10.666667pt;}
.wsa2{word-spacing:-10.624000pt;}
.ws7c{word-spacing:-10.581333pt;}
.ws4{word-spacing:-9.076144pt;}
.ws10{word-spacing:-6.453333pt;}
.ws81{word-spacing:-5.226667pt;}
.ws35{word-spacing:-3.466667pt;}
.wsb4{word-spacing:-2.858667pt;}
.ws57{word-spacing:-2.826667pt;}
.ws18{word-spacing:-2.720000pt;}
.ws9{word-spacing:-2.565333pt;}
.ws90{word-spacing:-2.517333pt;}
.ws5a{word-spacing:-2.346667pt;}
.ws8d{word-spacing:-2.218667pt;}
.ws22{word-spacing:-1.920000pt;}
.ws8b{word-spacing:-1.834667pt;}
.ws58{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.578667pt;}
.wsa4{word-spacing:-1.536000pt;}
.ws91{word-spacing:-1.493333pt;}
.ws60{word-spacing:-1.440000pt;}
.ws88{word-spacing:-1.365333pt;}
.ws50{word-spacing:-1.280000pt;}
.ws86{word-spacing:-1.237333pt;}
.wsa5{word-spacing:-1.194667pt;}
.ws3b{word-spacing:-1.173333pt;}
.ws80{word-spacing:-1.120000pt;}
.ws96{word-spacing:-1.066667pt;}
.ws8a{word-spacing:-1.024000pt;}
.ws17{word-spacing:-1.013333pt;}
.ws2d{word-spacing:-0.906667pt;}
.ws56{word-spacing:-0.800000pt;}
.ws85{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.746667pt;}
.ws34{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.533333pt;}
.wsaf{word-spacing:-0.469333pt;}
.ws92{word-spacing:-0.426667pt;}
.ws84{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.373333pt;}
.wsb1{word-spacing:-0.341333pt;}
.ws36{word-spacing:-0.320000pt;}
.wsaa{word-spacing:-0.298667pt;}
.ws54{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.256000pt;}
.ws51{word-spacing:-0.213333pt;}
.wsb0{word-spacing:-0.170667pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws16{word-spacing:-0.106667pt;}
.ws38{word-spacing:-0.053333pt;}
.wsab{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.160000pt;}
.ws98{word-spacing:0.170667pt;}
.ws1f{word-spacing:0.213333pt;}
.ws94{word-spacing:0.256000pt;}
.ws25{word-spacing:0.266667pt;}
.ws3a{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.373333pt;}
.ws8c{word-spacing:0.384000pt;}
.ws20{word-spacing:0.426667pt;}
.ws6d{word-spacing:0.533333pt;}
.ws87{word-spacing:0.597333pt;}
.ws2c{word-spacing:0.640000pt;}
.ws6e{word-spacing:0.693333pt;}
.ws5d{word-spacing:0.746667pt;}
.wsae{word-spacing:0.896000pt;}
.ws26{word-spacing:0.906667pt;}
.ws29{word-spacing:0.960000pt;}
.ws74{word-spacing:1.066667pt;}
.wsb3{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.173333pt;}
.wsa7{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.226667pt;}
.ws65{word-spacing:1.386667pt;}
.ws2e{word-spacing:1.440000pt;}
.wsa{word-spacing:1.493333pt;}
.ws5e{word-spacing:1.546667pt;}
.ws13{word-spacing:1.653333pt;}
.ws9a{word-spacing:1.664000pt;}
.ws27{word-spacing:1.706667pt;}
.ws39{word-spacing:1.760000pt;}
.ws64{word-spacing:1.813333pt;}
.wsd{word-spacing:1.866667pt;}
.ws89{word-spacing:1.877333pt;}
.ws12{word-spacing:1.920000pt;}
.wsa6{word-spacing:1.962667pt;}
.ws8f{word-spacing:2.005333pt;}
.ws24{word-spacing:2.080000pt;}
.wsa8{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.186667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws61{word-spacing:2.346667pt;}
.ws19{word-spacing:2.506667pt;}
.ws6b{word-spacing:2.560000pt;}
.ws72{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.666667pt;}
.ws83{word-spacing:2.730667pt;}
.wsb2{word-spacing:2.858667pt;}
.ws63{word-spacing:2.880000pt;}
.ws95{word-spacing:2.901333pt;}
.ws3e{word-spacing:3.029333pt;}
.ws8e{word-spacing:3.072000pt;}
.wsac{word-spacing:3.242667pt;}
.ws33{word-spacing:3.253333pt;}
.wsb5{word-spacing:3.285333pt;}
.ws37{word-spacing:3.306667pt;}
.ws93{word-spacing:3.370667pt;}
.ws6a{word-spacing:3.413333pt;}
.wsa9{word-spacing:3.456000pt;}
.ws6f{word-spacing:3.466667pt;}
.ws82{word-spacing:3.498667pt;}
.ws71{word-spacing:3.520000pt;}
.ws40{word-spacing:3.541333pt;}
.ws69{word-spacing:3.573333pt;}
.ws1b{word-spacing:3.626667pt;}
.ws70{word-spacing:3.680000pt;}
.ws23{word-spacing:3.786667pt;}
.ws52{word-spacing:3.840000pt;}
.ws2b{word-spacing:3.893333pt;}
.ws2a{word-spacing:4.000000pt;}
.ws15{word-spacing:4.106667pt;}
.ws11{word-spacing:4.160000pt;}
.ws73{word-spacing:4.266667pt;}
.ws97{word-spacing:4.309333pt;}
.wsb{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws62{word-spacing:4.533333pt;}
.ws75{word-spacing:4.906667pt;}
.ws59{word-spacing:5.066667pt;}
.ws3f{word-spacing:5.504000pt;}
.ws21{word-spacing:5.920000pt;}
.ws14{word-spacing:6.880000pt;}
.ws53{word-spacing:7.200000pt;}
.ws3{word-spacing:43.840405pt;}
.ws1{word-spacing:43.841803pt;}
.ws41{word-spacing:91.690667pt;}
.ws47{word-spacing:146.773333pt;}
.ws45{word-spacing:157.440000pt;}
.ws42{word-spacing:173.440000pt;}
.ws43{word-spacing:184.106667pt;}
.ws46{word-spacing:188.032000pt;}
.ws44{word-spacing:194.773333pt;}
.ws48{word-spacing:317.909333pt;}
._b{margin-left:-2576.128000pt;}
._5b{margin-left:-2554.965333pt;}
._a{margin-left:-7.493333pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.066667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._5{width:0.960000pt;}
._9{width:2.613333pt;}
._6{width:4.373333pt;}
._8{width:5.333333pt;}
._7{width:7.040000pt;}
._5a{width:8.026667pt;}
._5c{width:10.080000pt;}
._10{width:108.245333pt;}
._e{width:116.565333pt;}
._f{width:127.189333pt;}
._c{width:147.925333pt;}
._1f{width:157.440000pt;}
._14{width:168.106667pt;}
._44{width:175.808000pt;}
._18{width:178.773333pt;}
._20{width:184.106667pt;}
._4e{width:185.130667pt;}
._46{width:186.661333pt;}
._15{width:194.773333pt;}
._19{width:205.440000pt;}
._1a{width:217.472000pt;}
._56{width:230.224000pt;}
._4a{width:240.101333pt;}
._13{width:254.378667pt;}
._50{width:262.224000pt;}
._12{width:278.314667pt;}
._24{width:279.509333pt;}
._55{width:281.690667pt;}
._1b{width:291.845333pt;}
._17{width:298.453333pt;}
._59{width:299.733333pt;}
._45{width:306.309333pt;}
._3a{width:309.120000pt;}
._22{width:312.661333pt;}
._32{width:315.050667pt;}
._25{width:316.581333pt;}
._16{width:319.445333pt;}
._1c{width:320.981333pt;}
._2e{width:322.986667pt;}
._37{width:325.717333pt;}
._40{width:333.317333pt;}
._43{width:335.104000pt;}
._4d{width:339.157333pt;}
._42{width:340.096000pt;}
._4b{width:343.765333pt;}
._2b{width:345.136000pt;}
._48{width:346.448000pt;}
._33{width:350.250667pt;}
._2c{width:353.749333pt;}
._51{width:355.925333pt;}
._3b{width:357.333333pt;}
._26{width:359.722667pt;}
._38{width:364.501333pt;}
._11{width:365.653333pt;}
._4f{width:368.469333pt;}
._53{width:376.490667pt;}
._23{width:385.834667pt;}
._28{width:386.986667pt;}
._3c{width:397.653333pt;}
._35{width:401.194667pt;}
._39{width:408.277333pt;}
._31{width:411.904000pt;}
._3e{width:413.733333pt;}
._1d{width:422.234667pt;}
._49{width:424.149333pt;}
._21{width:430.805333pt;}
._36{width:445.056000pt;}
._4c{width:449.664000pt;}
._d{width:463.189333pt;}
._57{width:471.680000pt;}
._47{width:494.165333pt;}
._54{width:500.312000pt;}
._41{width:510.208000pt;}
._27{width:543.792000pt;}
._2a{width:553.984000pt;}
._30{width:565.461333pt;}
._2d{width:572.970667pt;}
._3f{width:575.317333pt;}
._52{width:580.608000pt;}
._29{width:587.178667pt;}
._3d{width:588.373333pt;}
._34{width:593.109333pt;}
._1e{width:596.650667pt;}
._2f{width:602.202667pt;}
._58{width:1069.306667pt;}
.fs5{font-size:23.320000pt;}
.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;}
.y30{bottom:42.468667pt;}
.y17d{bottom:71.345333pt;}
.y6c{bottom:74.342533pt;}
.y76{bottom:74.365467pt;}
.y66{bottom:74.462533pt;}
.ydf{bottom:74.464533pt;}
.y13c{bottom:76.552800pt;}
.y2d{bottom:78.246000pt;}
.ya9{bottom:83.850933pt;}
.y17c{bottom:84.678667pt;}
.y75{bottom:88.360133pt;}
.y13b{bottom:89.886133pt;}
.y108{bottom:89.982533pt;}
.y6b{bottom:90.342533pt;}
.y65{bottom:90.462533pt;}
.yde{bottom:90.464533pt;}
.y2c{bottom:91.576000pt;}
.y17b{bottom:98.012000pt;}
.y74{bottom:102.354800pt;}
.y13a{bottom:103.219467pt;}
.y6a{bottom:106.342533pt;}
.y64{bottom:106.462533pt;}
.ydd{bottom:106.464533pt;}
.ya8{bottom:109.632267pt;}
.y17a{bottom:111.345333pt;}
.y139{bottom:116.552800pt;}
.y69{bottom:122.342533pt;}
.y63{bottom:122.462533pt;}
.ydc{bottom:122.464533pt;}
.ya7{bottom:124.074933pt;}
.y179{bottom:124.678667pt;}
.y138{bottom:129.886133pt;}
.y178{bottom:138.012000pt;}
.y68{bottom:138.342533pt;}
.y62{bottom:138.462533pt;}
.ydb{bottom:138.464533pt;}
.ya6{bottom:138.517600pt;}
.y137{bottom:143.219467pt;}
.y29{bottom:150.021600pt;}
.y177{bottom:151.345333pt;}
.ya5{bottom:152.960267pt;}
.y73{bottom:154.342533pt;}
.y61{bottom:154.462533pt;}
.yda{bottom:154.464533pt;}
.y136{bottom:156.552800pt;}
.y176{bottom:164.678667pt;}
.y28{bottom:166.021600pt;}
.ya4{bottom:167.402933pt;}
.y135{bottom:169.886133pt;}
.y67{bottom:169.982533pt;}
.y72{bottom:170.342533pt;}
.y60{bottom:170.462533pt;}
.yd9{bottom:170.464533pt;}
.y175{bottom:178.012000pt;}
.ya3{bottom:181.845600pt;}
.y2b{bottom:182.021600pt;}
.y134{bottom:183.219467pt;}
.y71{bottom:186.342533pt;}
.y5f{bottom:186.462533pt;}
.yd8{bottom:186.464533pt;}
.y174{bottom:191.345333pt;}
.ya2{bottom:196.288267pt;}
.y133{bottom:196.552800pt;}
.y27{bottom:197.663600pt;}
.y2a{bottom:198.021600pt;}
.y70{bottom:202.342533pt;}
.y5e{bottom:202.462533pt;}
.yd7{bottom:202.464533pt;}
.y173{bottom:204.678667pt;}
.y132{bottom:209.886133pt;}
.ya1{bottom:210.730933pt;}
.y172{bottom:218.012000pt;}
.y6f{bottom:218.342533pt;}
.y5d{bottom:218.462533pt;}
.yd6{bottom:218.464533pt;}
.y131{bottom:223.219467pt;}
.ya0{bottom:225.173600pt;}
.y171{bottom:231.345333pt;}
.y107{bottom:234.342533pt;}
.y5c{bottom:234.462533pt;}
.yd5{bottom:234.464533pt;}
.y130{bottom:236.552800pt;}
.y9f{bottom:239.616267pt;}
.y170{bottom:244.678667pt;}
.y12f{bottom:249.886133pt;}
.y6e{bottom:249.982533pt;}
.y106{bottom:250.342533pt;}
.y5b{bottom:250.462533pt;}
.yd4{bottom:250.464533pt;}
.y9e{bottom:254.058933pt;}
.y16f{bottom:258.012000pt;}
.y12e{bottom:263.219467pt;}
.y26{bottom:264.457067pt;}
.y105{bottom:266.342533pt;}
.y5a{bottom:266.462533pt;}
.yd3{bottom:266.464533pt;}
.y9d{bottom:268.501600pt;}
.y16e{bottom:271.345333pt;}
.y12d{bottom:276.552800pt;}
.y104{bottom:282.342533pt;}
.y59{bottom:282.462533pt;}
.yd2{bottom:282.464533pt;}
.y9c{bottom:282.944267pt;}
.y16d{bottom:284.678667pt;}
.y25{bottom:288.763733pt;}
.y12c{bottom:289.886133pt;}
.y103{bottom:297.982533pt;}
.y16c{bottom:298.012000pt;}
.y58{bottom:298.462533pt;}
.yd1{bottom:298.464533pt;}
.y12b{bottom:303.219467pt;}
.y24{bottom:304.763733pt;}
.y9b{bottom:308.725600pt;}
.y16b{bottom:311.345333pt;}
.y57{bottom:314.462533pt;}
.yd0{bottom:314.464533pt;}
.y12a{bottom:316.552800pt;}
.y23{bottom:320.763733pt;}
.y9a{bottom:323.392267pt;}
.y16a{bottom:324.678667pt;}
.y129{bottom:329.886133pt;}
.y102{bottom:330.342533pt;}
.y56{bottom:330.462533pt;}
.ycf{bottom:330.464533pt;}
.y22{bottom:336.763733pt;}
.y169{bottom:338.012000pt;}
.y128{bottom:343.219467pt;}
.y101{bottom:346.342533pt;}
.y55{bottom:346.462533pt;}
.yce{bottom:346.464533pt;}
.y168{bottom:351.345333pt;}
.y99{bottom:352.184400pt;}
.y21{bottom:352.763733pt;}
.y127{bottom:356.552800pt;}
.y100{bottom:362.342533pt;}
.y54{bottom:362.462533pt;}
.ycd{bottom:362.464533pt;}
.y167{bottom:364.678667pt;}
.y20{bottom:368.763733pt;}
.y98{bottom:369.517733pt;}
.y126{bottom:369.886133pt;}
.y166{bottom:378.012000pt;}
.yff{bottom:378.342533pt;}
.y53{bottom:378.462533pt;}
.ycc{bottom:378.464533pt;}
.y125{bottom:383.219467pt;}
.y1f{bottom:384.763733pt;}
.y165{bottom:391.345333pt;}
.yfe{bottom:394.342533pt;}
.y52{bottom:394.462533pt;}
.ycb{bottom:394.464533pt;}
.y124{bottom:396.552800pt;}
.y1e{bottom:400.763733pt;}
.y164{bottom:404.678667pt;}
.y123{bottom:409.886133pt;}
.yfd{bottom:410.342533pt;}
.y51{bottom:410.462533pt;}
.yca{bottom:410.464533pt;}
.y1d{bottom:416.763733pt;}
.y163{bottom:418.012000pt;}
.y97{bottom:420.316533pt;}
.y122{bottom:423.219467pt;}
.yfc{bottom:426.342533pt;}
.y50{bottom:426.462533pt;}
.yc9{bottom:426.464533pt;}
.y162{bottom:431.345333pt;}
.y1c{bottom:432.763733pt;}
.y96{bottom:434.759200pt;}
.y121{bottom:436.552800pt;}
.yfb{bottom:442.342533pt;}
.y4f{bottom:442.462533pt;}
.yc8{bottom:442.464533pt;}
.y161{bottom:444.678667pt;}
.y1b{bottom:448.763733pt;}
.y95{bottom:449.201867pt;}
.y120{bottom:449.886133pt;}
.y160{bottom:458.012000pt;}
.yfa{bottom:458.342533pt;}
.y4e{bottom:458.462533pt;}
.yc7{bottom:458.464533pt;}
.y11f{bottom:463.219467pt;}
.y94{bottom:463.644533pt;}
.y1a{bottom:464.763733pt;}
.y15f{bottom:471.345333pt;}
.yf9{bottom:474.342533pt;}
.y4d{bottom:474.462533pt;}
.yc6{bottom:474.464533pt;}
.y11e{bottom:476.552800pt;}
.y93{bottom:478.087200pt;}
.y19{bottom:480.763733pt;}
.y15e{bottom:484.678667pt;}
.y11d{bottom:489.886133pt;}
.yf8{bottom:490.342533pt;}
.y4c{bottom:490.462533pt;}
.yc5{bottom:490.464533pt;}
.y92{bottom:492.529867pt;}
.y18{bottom:496.763733pt;}
.y15d{bottom:498.012000pt;}
.y11c{bottom:503.219467pt;}
.yf7{bottom:506.342533pt;}
.y4b{bottom:506.462533pt;}
.yc4{bottom:506.464533pt;}
.y91{bottom:506.972533pt;}
.y15c{bottom:511.345333pt;}
.y17{bottom:512.763733pt;}
.y11b{bottom:516.552800pt;}
.y90{bottom:521.415200pt;}
.yf6{bottom:522.342533pt;}
.y4a{bottom:522.462533pt;}
.yc3{bottom:522.464533pt;}
.y15b{bottom:524.678667pt;}
.y16{bottom:528.763733pt;}
.y11a{bottom:529.886133pt;}
.y8f{bottom:535.857867pt;}
.y15a{bottom:538.012000pt;}
.yf5{bottom:538.342533pt;}
.y49{bottom:538.462533pt;}
.yc2{bottom:538.464533pt;}
.y119{bottom:543.219467pt;}
.y8e{bottom:550.300533pt;}
.y159{bottom:551.345333pt;}
.yf4{bottom:554.342533pt;}
.y48{bottom:554.462533pt;}
.yc1{bottom:554.464533pt;}
.y118{bottom:556.552800pt;}
.y158{bottom:564.678667pt;}
.y8d{bottom:564.743200pt;}
.y15{bottom:568.904267pt;}
.y117{bottom:569.886133pt;}
.yf3{bottom:570.342533pt;}
.y47{bottom:570.462533pt;}
.yc0{bottom:570.464533pt;}
.y157{bottom:578.012000pt;}
.y8c{bottom:579.185867pt;}
.y14{bottom:579.971600pt;}
.y116{bottom:583.219467pt;}
.yf2{bottom:586.342533pt;}
.y46{bottom:586.462533pt;}
.ybf{bottom:586.464533pt;}
.y156{bottom:591.345333pt;}
.y8b{bottom:593.691867pt;}
.y115{bottom:596.552800pt;}
.yf1{bottom:602.342533pt;}
.y45{bottom:602.462533pt;}
.ybe{bottom:602.464533pt;}
.y155{bottom:604.678667pt;}
.y8a{bottom:608.134533pt;}
.y114{bottom:609.886133pt;}
.y13{bottom:612.985733pt;}
.y196{bottom:618.012000pt;}
.y154{bottom:618.014133pt;}
.yf0{bottom:618.342533pt;}
.y44{bottom:618.462533pt;}
.ybd{bottom:618.464533pt;}
.y89{bottom:622.577200pt;}
.y113{bottom:623.219467pt;}
.y12{bottom:624.985733pt;}
.y195{bottom:631.345333pt;}
.y153{bottom:631.347467pt;}
.yef{bottom:634.342533pt;}
.y43{bottom:634.462533pt;}
.ybc{bottom:634.464533pt;}
.y112{bottom:636.552800pt;}
.y11{bottom:636.985733pt;}
.y88{bottom:637.019867pt;}
.y10{bottom:644.163200pt;}
.y194{bottom:644.678667pt;}
.y152{bottom:644.680800pt;}
.y111{bottom:649.886133pt;}
.yee{bottom:650.342533pt;}
.y42{bottom:650.462533pt;}
.ybb{bottom:650.464533pt;}
.y87{bottom:651.462533pt;}
.y193{bottom:658.012000pt;}
.y151{bottom:658.014133pt;}
.yf{bottom:660.985733pt;}
.y110{bottom:663.219467pt;}
.y86{bottom:665.905200pt;}
.yed{bottom:666.342533pt;}
.y41{bottom:666.462533pt;}
.yba{bottom:666.464533pt;}
.ye{bottom:668.163200pt;}
.y192{bottom:671.345333pt;}
.y150{bottom:671.347467pt;}
.y10f{bottom:676.552800pt;}
.y85{bottom:680.347867pt;}
.yec{bottom:681.982533pt;}
.y40{bottom:682.462533pt;}
.yb9{bottom:682.464533pt;}
.y191{bottom:684.678667pt;}
.y14f{bottom:684.680800pt;}
.yd{bottom:684.985733pt;}
.y10e{bottom:689.886133pt;}
.yc{bottom:692.163200pt;}
.y84{bottom:694.790533pt;}
.y190{bottom:698.012000pt;}
.y14e{bottom:698.014133pt;}
.y3f{bottom:698.462533pt;}
.yb8{bottom:698.464533pt;}
.y10d{bottom:703.219467pt;}
.yb{bottom:708.985733pt;}
.y83{bottom:709.233200pt;}
.y18f{bottom:711.345333pt;}
.y14d{bottom:711.347467pt;}
.yeb{bottom:714.342533pt;}
.y3e{bottom:714.462533pt;}
.yb7{bottom:714.464533pt;}
.ya{bottom:716.163200pt;}
.y10c{bottom:716.552800pt;}
.y82{bottom:723.675867pt;}
.y18e{bottom:724.678667pt;}
.y14c{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.yea{bottom:730.342533pt;}
.y3d{bottom:730.462533pt;}
.yb6{bottom:730.464533pt;}
.y18d{bottom:738.012000pt;}
.y14b{bottom:738.014133pt;}
.y81{bottom:738.118533pt;}
.y8{bottom:744.985733pt;}
.y10b{bottom:745.982533pt;}
.ye9{bottom:746.342533pt;}
.y3c{bottom:746.462533pt;}
.yb5{bottom:746.464533pt;}
.y18c{bottom:751.345333pt;}
.y14a{bottom:751.347467pt;}
.y80{bottom:752.561200pt;}
.ye8{bottom:762.342533pt;}
.y3b{bottom:762.462533pt;}
.yb4{bottom:762.464533pt;}
.y18b{bottom:764.678667pt;}
.y149{bottom:764.680800pt;}
.y7f{bottom:767.003867pt;}
.y7{bottom:770.521067pt;}
.y18a{bottom:778.012000pt;}
.y148{bottom:778.014133pt;}
.ye7{bottom:778.342533pt;}
.y3a{bottom:778.462533pt;}
.yb3{bottom:778.464533pt;}
.y7e{bottom:781.446533pt;}
.y6{bottom:789.183067pt;}
.y189{bottom:791.345333pt;}
.y147{bottom:791.347467pt;}
.ye6{bottom:794.342533pt;}
.y39{bottom:794.462533pt;}
.yb2{bottom:794.464533pt;}
.y7d{bottom:795.889200pt;}
.y188{bottom:804.678667pt;}
.y146{bottom:804.680800pt;}
.y7c{bottom:810.331867pt;}
.ye5{bottom:810.342533pt;}
.y38{bottom:810.462533pt;}
.yb1{bottom:810.464533pt;}
.y187{bottom:818.012000pt;}
.y145{bottom:818.014133pt;}
.y7b{bottom:824.774533pt;}
.ye4{bottom:826.342533pt;}
.y37{bottom:826.462533pt;}
.yb0{bottom:826.464533pt;}
.y5{bottom:830.226133pt;}
.y186{bottom:831.345333pt;}
.y144{bottom:831.347467pt;}
.y10a{bottom:842.102533pt;}
.ye3{bottom:842.342533pt;}
.y36{bottom:842.462533pt;}
.yaf{bottom:842.464533pt;}
.y185{bottom:844.678667pt;}
.y143{bottom:844.680800pt;}
.y7a{bottom:850.555867pt;}
.y184{bottom:858.012000pt;}
.y142{bottom:858.014133pt;}
.y35{bottom:858.462533pt;}
.yae{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y183{bottom:871.345333pt;}
.y141{bottom:871.347467pt;}
.ye2{bottom:873.982533pt;}
.y34{bottom:874.462533pt;}
.yad{bottom:874.464533pt;}
.y79{bottom:876.337200pt;}
.y182{bottom:884.678667pt;}
.y140{bottom:884.680800pt;}
.y109{bottom:890.102533pt;}
.y33{bottom:890.462533pt;}
.yac{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y181{bottom:898.012000pt;}
.y13f{bottom:898.014133pt;}
.y78{bottom:905.129200pt;}
.y32{bottom:906.462533pt;}
.ye1{bottom:906.464533pt;}
.y180{bottom:911.345333pt;}
.y13e{bottom:911.347467pt;}
.yab{bottom:922.104533pt;}
.y31{bottom:922.462533pt;}
.ye0{bottom:922.464533pt;}
.y17f{bottom:924.678667pt;}
.y13d{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y6d{bottom:1006.594400pt;}
.y77{bottom:1006.597067pt;}
.y17e{bottom:1006.598667pt;}
.yaa{bottom:1006.645600pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:16.977598pt;}
.ha{height:17.000371pt;}
.hb{height:25.255208pt;}
.h2{height:27.197917pt;}
.h9{height:29.121094pt;}
.h10{height:29.140625pt;}
.h8{height:29.160156pt;}
.h13{height:29.645833pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.hf{height:37.057292pt;}
.he{height:38.828125pt;}
.hd{height:38.854167pt;}
.hc{height:38.880208pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x16{left:69.923200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x22{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.258133pt;}
.x20{left:109.606533pt;}
.x3{left:111.491333pt;}
.x6{left:117.165333pt;}
.x5{left:189.223467pt;}
.x1f{left:191.595867pt;}
.x1d{left:195.677733pt;}
.x11{left:206.542533pt;}
.x15{left:244.131200pt;}
.x17{left:282.998533pt;}
.x18{left:384.011867pt;}
.x19{left:396.321200pt;}
.x9{left:404.481333pt;}
.xc{left:406.258133pt;}
.x12{left:425.182533pt;}
.x7{left:427.085333pt;}
.x23{left:428.991467pt;}
.xd{left:436.498133pt;}
.x21{left:447.910533pt;}
.x13{left:455.422533pt;}
.xe{left:466.939200pt;}
.x1a{left:480.289200pt;}
.x1b{left:490.806533pt;}
.x1e{left:507.267733pt;}
.x10{left:589.770933pt;}
.x1c{left:591.019867pt;}
.x2{left:616.324800pt;}
.xf{left:653.391467pt;}
.x14{left:672.289067pt;}
}




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