
    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_767aabcdee726368a366a358.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_708ce59fcc2ff89f5cae66a8.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_da4f90dddd8af7157b89be42.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_7bb4dfad5802c1d171f76999.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab2d6dc1d6c16471b91bb376.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_4a3933476f0f91a7e93e1bae.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_d63a39af1da8aad726584134.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d43e18f41bd2276a3b04868b.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_6839f56132e432e978d4840d.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_c7b6178d1ea8a237865a2828.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3030ed31cfb27e2bd3f0fe22.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d61d21ef827ccf3d867fbd05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.877441;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;}
.ls94{letter-spacing:-3.840000px;}
.ls1d{letter-spacing:-2.152200px;}
.ls1c{letter-spacing:-1.899000px;}
.ls1b{letter-spacing:-0.780000px;}
.ls56{letter-spacing:-0.480000px;}
.ls71{letter-spacing:-0.360000px;}
.ls93{letter-spacing:-0.336000px;}
.ls48{letter-spacing:-0.300000px;}
.ls3a{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.225000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.096000px;}
.ls47{letter-spacing:-0.060000px;}
.ls73{letter-spacing:-0.048000px;}
.ls1a{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls64{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls83{letter-spacing:0.096000px;}
.ls29{letter-spacing:0.120000px;}
.ls8d{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.180000px;}
.ls80{letter-spacing:0.192000px;}
.ls3f{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.300000px;}
.ls8c{letter-spacing:0.336000px;}
.ls39{letter-spacing:0.360000px;}
.ls70{letter-spacing:0.384000px;}
.ls41{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls7a{letter-spacing:0.528000px;}
.ls13{letter-spacing:0.540000px;}
.ls7e{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.624000px;}
.ls46{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.768000px;}
.lsc{letter-spacing:0.780000px;}
.ls67{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.840000px;}
.ls7f{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.900000px;}
.ls7b{letter-spacing:0.912000px;}
.ls32{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.020000px;}
.ls10{letter-spacing:1.080000px;}
.ls63{letter-spacing:1.104000px;}
.lsd{letter-spacing:1.140000px;}
.ls68{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.200000px;}
.ls4b{letter-spacing:1.248000px;}
.ls20{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.320000px;}
.ls89{letter-spacing:1.344000px;}
.ls18{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls44{letter-spacing:1.440000px;}
.ls85{letter-spacing:1.488000px;}
.ls16{letter-spacing:1.500000px;}
.ls7{letter-spacing:1.560000px;}
.ls28{letter-spacing:1.620000px;}
.ls8a{letter-spacing:1.632000px;}
.ls9{letter-spacing:1.680000px;}
.ls19{letter-spacing:1.740000px;}
.ls60{letter-spacing:1.776000px;}
.ls35{letter-spacing:1.800000px;}
.ls40{letter-spacing:1.860000px;}
.ls2f{letter-spacing:1.920000px;}
.ls8f{letter-spacing:1.968000px;}
.ls2e{letter-spacing:1.980000px;}
.ls84{letter-spacing:2.016000px;}
.ls25{letter-spacing:2.040000px;}
.ls66{letter-spacing:2.064000px;}
.ls8e{letter-spacing:2.112000px;}
.ls36{letter-spacing:2.160000px;}
.ls62{letter-spacing:2.208000px;}
.ls31{letter-spacing:2.220000px;}
.ls87{letter-spacing:2.256000px;}
.ls27{letter-spacing:2.280000px;}
.ls4e{letter-spacing:2.340000px;}
.ls77{letter-spacing:2.352000px;}
.ls2b{letter-spacing:2.400000px;}
.ls51{letter-spacing:2.460000px;}
.ls90{letter-spacing:2.496000px;}
.ls23{letter-spacing:2.520000px;}
.ls1f{letter-spacing:2.580000px;}
.ls5{letter-spacing:2.640000px;}
.lsf{letter-spacing:2.700000px;}
.ls75{letter-spacing:2.736000px;}
.ls38{letter-spacing:2.760000px;}
.ls17{letter-spacing:2.820000px;}
.ls34{letter-spacing:2.880000px;}
.ls2a{letter-spacing:2.940000px;}
.ls6e{letter-spacing:2.976000px;}
.ls82{letter-spacing:3.024000px;}
.ls22{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.120000px;}
.ls52{letter-spacing:3.180000px;}
.ls7c{letter-spacing:3.216000px;}
.ls26{letter-spacing:3.240000px;}
.ls4c{letter-spacing:3.300000px;}
.ls81{letter-spacing:3.312000px;}
.ls4a{letter-spacing:3.360000px;}
.ls57{letter-spacing:3.420000px;}
.ls43{letter-spacing:3.480000px;}
.ls2c{letter-spacing:3.600000px;}
.ls42{letter-spacing:3.660000px;}
.ls78{letter-spacing:3.744000px;}
.ls30{letter-spacing:3.780000px;}
.lse{letter-spacing:3.840000px;}
.ls6d{letter-spacing:3.984000px;}
.ls4d{letter-spacing:4.080000px;}
.ls92{letter-spacing:4.128000px;}
.ls5d{letter-spacing:4.200000px;}
.ls72{letter-spacing:4.260000px;}
.ls6b{letter-spacing:4.272000px;}
.ls4f{letter-spacing:4.320000px;}
.ls76{letter-spacing:4.368000px;}
.ls3e{letter-spacing:4.380000px;}
.ls54{letter-spacing:4.440000px;}
.ls53{letter-spacing:4.560000px;}
.ls86{letter-spacing:4.656000px;}
.ls88{letter-spacing:4.752000px;}
.ls6a{letter-spacing:4.753800px;}
.ls7d{letter-spacing:4.800000px;}
.ls3{letter-spacing:4.980000px;}
.ls3d{letter-spacing:5.040000px;}
.ls45{letter-spacing:5.220000px;}
.ls59{letter-spacing:5.340000px;}
.ls50{letter-spacing:5.580000px;}
.ls8b{letter-spacing:5.616000px;}
.ls58{letter-spacing:5.700000px;}
.ls5e{letter-spacing:5.880000px;}
.ls37{letter-spacing:6.060000px;}
.ls55{letter-spacing:6.480000px;}
.ls33{letter-spacing:6.600000px;}
.ls49{letter-spacing:6.660000px;}
.ls5f{letter-spacing:6.780000px;}
.ls5b{letter-spacing:6.840000px;}
.ls91{letter-spacing:7.296000px;}
.ls5a{letter-spacing:7.560000px;}
.ls5c{letter-spacing:9.180000px;}
.ls1{letter-spacing:59.533476px;}
.ls0{letter-spacing:59.538000px;}
.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;}
}
.ws7d{word-spacing:-49.248000px;}
.ws62{word-spacing:-19.320000px;}
.ws15{word-spacing:-18.240000px;}
.ws59{word-spacing:-17.400000px;}
.ws16{word-spacing:-17.280000px;}
.ws5a{word-spacing:-17.160000px;}
.ws7e{word-spacing:-16.800000px;}
.ws26{word-spacing:-16.680000px;}
.ws18{word-spacing:-16.500000px;}
.ws58{word-spacing:-16.320000px;}
.ws1{word-spacing:-15.720000px;}
.ws1a{word-spacing:-15.180000px;}
.ws17{word-spacing:-15.000000px;}
.ws7a{word-spacing:-14.976000px;}
.ws19{word-spacing:-14.880000px;}
.ws79{word-spacing:-14.352000px;}
.ws82{word-spacing:-13.632000px;}
.ws80{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.344000px;}
.ws64{word-spacing:-12.816000px;}
.ws63{word-spacing:-12.768000px;}
.ws7c{word-spacing:-12.720000px;}
.ws81{word-spacing:-12.432000px;}
.ws65{word-spacing:-12.288000px;}
.ws2{word-spacing:-12.285000px;}
.ws7b{word-spacing:-12.240000px;}
.ws7f{word-spacing:-12.192000px;}
.ws83{word-spacing:-12.096000px;}
.ws66{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws8c{word-spacing:-4.800000px;}
.ws6d{word-spacing:-4.260000px;}
.wsd{word-spacing:-3.840000px;}
.ws9c{word-spacing:-3.312000px;}
.ws1b{word-spacing:-3.240000px;}
.ws5{word-spacing:-2.886000px;}
.ws6a{word-spacing:-2.760000px;}
.ws84{word-spacing:-2.736000px;}
.ws85{word-spacing:-2.400000px;}
.ws6c{word-spacing:-1.920000px;}
.ws6f{word-spacing:-1.800000px;}
.ws96{word-spacing:-1.632000px;}
.ws42{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.560000px;}
.ws92{word-spacing:-1.440000px;}
.ws88{word-spacing:-1.392000px;}
.ws95{word-spacing:-1.344000px;}
.ws22{word-spacing:-1.200000px;}
.ws12{word-spacing:-1.140000px;}
.ws87{word-spacing:-1.104000px;}
.ws3e{word-spacing:-1.080000px;}
.ws2a{word-spacing:-1.020000px;}
.ws6e{word-spacing:-0.960000px;}
.ws94{word-spacing:-0.816000px;}
.ws89{word-spacing:-0.768000px;}
.ws67{word-spacing:-0.720000px;}
.ws8d{word-spacing:-0.672000px;}
.ws68{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws99{word-spacing:-0.432000px;}
.ws3b{word-spacing:-0.420000px;}
.ws30{word-spacing:-0.360000px;}
.ws9a{word-spacing:-0.336000px;}
.ws5b{word-spacing:-0.300000px;}
.ws78{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.240000px;}
.ws90{word-spacing:-0.192000px;}
.ws39{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.120000px;}
.ws93{word-spacing:-0.096000px;}
.ws24{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws75{word-spacing:0.048000px;}
.ws46{word-spacing:0.060000px;}
.ws21{word-spacing:0.120000px;}
.ws3d{word-spacing:0.180000px;}
.ws14{word-spacing:0.225000px;}
.ws1f{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws35{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws33{word-spacing:0.480000px;}
.ws8f{word-spacing:0.528000px;}
.ws3c{word-spacing:0.540000px;}
.ws23{word-spacing:0.600000px;}
.ws36{word-spacing:0.720000px;}
.ws8b{word-spacing:0.768000px;}
.ws60{word-spacing:0.840000px;}
.ws34{word-spacing:0.900000px;}
.ws40{word-spacing:0.960000px;}
.ws70{word-spacing:1.200000px;}
.ws4b{word-spacing:1.248000px;}
.ws20{word-spacing:1.260000px;}
.ws77{word-spacing:1.296000px;}
.ws2e{word-spacing:1.320000px;}
.ws91{word-spacing:1.344000px;}
.wsf{word-spacing:1.380000px;}
.ws9d{word-spacing:1.392000px;}
.ws48{word-spacing:1.440000px;}
.ws74{word-spacing:1.488000px;}
.ws52{word-spacing:1.500000px;}
.ws69{word-spacing:1.560000px;}
.ws2b{word-spacing:1.800000px;}
.wsb{word-spacing:1.860000px;}
.ws6{word-spacing:1.899000px;}
.ws5d{word-spacing:1.920000px;}
.ws31{word-spacing:1.980000px;}
.ws1e{word-spacing:2.040000px;}
.ws2f{word-spacing:2.100000px;}
.ws7{word-spacing:2.152200px;}
.ws55{word-spacing:2.160000px;}
.ws50{word-spacing:2.220000px;}
.ws3a{word-spacing:2.280000px;}
.ws2d{word-spacing:2.340000px;}
.ws11{word-spacing:2.400000px;}
.ws8a{word-spacing:2.448000px;}
.ws44{word-spacing:2.520000px;}
.ws32{word-spacing:2.580000px;}
.ws1d{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.ws29{word-spacing:2.760000px;}
.ws98{word-spacing:2.832000px;}
.ws54{word-spacing:2.880000px;}
.ws43{word-spacing:2.940000px;}
.ws4e{word-spacing:3.000000px;}
.ws97{word-spacing:3.024000px;}
.ws37{word-spacing:3.060000px;}
.ws8e{word-spacing:3.168000px;}
.ws4d{word-spacing:3.180000px;}
.ws72{word-spacing:3.312000px;}
.ws53{word-spacing:3.420000px;}
.ws57{word-spacing:3.480000px;}
.ws41{word-spacing:3.540000px;}
.ws76{word-spacing:3.552000px;}
.ws56{word-spacing:3.600000px;}
.ws28{word-spacing:3.660000px;}
.ws9b{word-spacing:3.696000px;}
.ws27{word-spacing:3.720000px;}
.ws47{word-spacing:3.780000px;}
.ws86{word-spacing:3.792000px;}
.ws9e{word-spacing:3.840000px;}
.ws6b{word-spacing:3.900000px;}
.ws71{word-spacing:3.936000px;}
.ws5c{word-spacing:3.960000px;}
.ws73{word-spacing:3.984000px;}
.ws5f{word-spacing:4.020000px;}
.ws4f{word-spacing:4.080000px;}
.ws38{word-spacing:4.140000px;}
.wsc{word-spacing:4.200000px;}
.ws4c{word-spacing:4.260000px;}
.ws51{word-spacing:4.320000px;}
.ws45{word-spacing:4.380000px;}
.ws3f{word-spacing:4.560000px;}
.ws1c{word-spacing:4.680000px;}
.ws13{word-spacing:4.740000px;}
.ws25{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws4a{word-spacing:297.168000px;}
._a{margin-left:-2897.391000px;}
._39{margin-left:-2874.825000px;}
._d{margin-left:-2873.583000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.216200px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-4.305000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.077000px;}
._7{width:1.020000px;}
._8{width:2.580000px;}
._c{width:3.720000px;}
._b{width:4.740000px;}
._9{width:6.060000px;}
._38{width:7.890000px;}
._6{width:8.940000px;}
._37{width:56.016000px;}
._2c{width:58.080000px;}
._35{width:60.720000px;}
._2b{width:63.408000px;}
._2a{width:64.752000px;}
._33{width:66.048000px;}
._2e{width:67.344000px;}
._1b{width:79.350000px;}
._1c{width:90.816000px;}
._1a{width:92.592000px;}
._19{width:114.816000px;}
._1e{width:138.816000px;}
._36{width:171.264000px;}
._28{width:175.152000px;}
._34{width:176.592000px;}
._2f{width:177.936000px;}
._27{width:187.152000px;}
._31{width:193.968000px;}
._26{width:198.480000px;}
._15{width:209.184000px;}
._2d{width:210.672000px;}
._17{width:214.128000px;}
._14{width:221.184000px;}
._16{width:226.128000px;}
._13{width:233.184000px;}
._25{width:235.440000px;}
._12{width:242.496000px;}
._18{width:245.808000px;}
._11{width:267.792000px;}
._1d{width:280.464000px;}
._20{width:285.168000px;}
._32{width:290.688000px;}
._30{width:307.152000px;}
._21{width:333.168000px;}
._29{width:387.408000px;}
._24{width:391.680000px;}
._23{width:395.664000px;}
._10{width:441.024000px;}
._f{width:454.368000px;}
._1f{width:462.960000px;}
._22{width:1263.168000px;}
._e{width:1302.576000px;}
.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;}
.y2f{bottom:47.777250px;}
.y16c{bottom:77.121900px;}
.y1ae{bottom:80.263500px;}
.y13b{bottom:83.230350px;}
.y65{bottom:83.770350px;}
.y11d{bottom:83.800350px;}
.y71{bottom:83.920350px;}
.y2c{bottom:88.026750px;}
.y16b{bottom:92.121900px;}
.yb9{bottom:92.300550px;}
.yf2{bottom:92.474100px;}
.y1ad{bottom:95.263500px;}
.ya9{bottom:101.330250px;}
.y64{bottom:101.770350px;}
.y70{bottom:101.920350px;}
.y2b{bottom:103.023000px;}
.y16a{bottom:107.121900px;}
.yb8{bottom:108.548550px;}
.yf1{bottom:108.974100px;}
.y1ac{bottom:110.263500px;}
.y75{bottom:119.365350px;}
.y11c{bottom:119.395350px;}
.y13a{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y6f{bottom:119.920350px;}
.y169{bottom:122.121900px;}
.yb7{bottom:124.796550px;}
.yf0{bottom:125.222100px;}
.y1ab{bottom:125.263500px;}
.y168{bottom:137.121900px;}
.y74{bottom:137.365350px;}
.y139{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y6e{bottom:137.920350px;}
.y1aa{bottom:140.263500px;}
.yb6{bottom:141.044550px;}
.yef{bottom:141.722100px;}
.y167{bottom:152.121900px;}
.y1a9{bottom:155.263500px;}
.y138{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y6d{bottom:155.920350px;}
.yb5{bottom:157.292550px;}
.yee{bottom:157.970100px;}
.y166{bottom:167.121900px;}
.y28{bottom:167.746800px;}
.y1a8{bottom:170.263500px;}
.y73{bottom:173.230350px;}
.y137{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y6c{bottom:173.920350px;}
.y11b{bottom:173.935350px;}
.yed{bottom:174.470100px;}
.y165{bottom:182.121900px;}
.y1a7{bottom:185.263500px;}
.y27{bottom:185.746800px;}
.yb4{bottom:186.296550px;}
.yec{bottom:190.718100px;}
.y136{bottom:191.230350px;}
.y5f{bottom:191.770350px;}
.y6b{bottom:191.920350px;}
.y11a{bottom:191.935350px;}
.y164{bottom:197.121900px;}
.y1a6{bottom:200.263500px;}
.yb3{bottom:202.544550px;}
.y26{bottom:203.746800px;}
.yeb{bottom:207.218100px;}
.y5e{bottom:209.770350px;}
.y6a{bottom:209.920350px;}
.y119{bottom:209.935350px;}
.y163{bottom:212.121900px;}
.y1a5{bottom:215.263500px;}
.yb2{bottom:218.792550px;}
.y25{bottom:221.746800px;}
.yea{bottom:223.466100px;}
.y162{bottom:227.121900px;}
.y135{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y69{bottom:227.920350px;}
.y118{bottom:227.935350px;}
.y1a4{bottom:230.263500px;}
.y24{bottom:239.746800px;}
.ye9{bottom:239.966100px;}
.y161{bottom:242.121900px;}
.y1a3{bottom:245.263500px;}
.y134{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.yfe{bottom:245.920350px;}
.y117{bottom:245.935350px;}
.yb1{bottom:247.796550px;}
.ye8{bottom:256.214100px;}
.y160{bottom:257.121900px;}
.y23{bottom:257.746800px;}
.y1a2{bottom:260.263500px;}
.y68{bottom:263.515350px;}
.y133{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.yfd{bottom:263.920350px;}
.y116{bottom:263.935350px;}
.y15f{bottom:272.121900px;}
.ye7{bottom:272.714100px;}
.y1a1{bottom:275.263500px;}
.y22{bottom:275.746800px;}
.yb0{bottom:280.187700px;}
.y132{bottom:281.230350px;}
.y5a{bottom:281.770350px;}
.yfc{bottom:281.920350px;}
.y115{bottom:281.935350px;}
.y15e{bottom:287.121900px;}
.ye6{bottom:288.962100px;}
.y1a0{bottom:290.263500px;}
.y21{bottom:293.746800px;}
.yaf{bottom:299.687700px;}
.y59{bottom:299.770350px;}
.yfb{bottom:299.920350px;}
.y114{bottom:299.935350px;}
.y15d{bottom:302.121900px;}
.y19f{bottom:305.263500px;}
.ye5{bottom:305.462100px;}
.y20{bottom:311.746800px;}
.y15c{bottom:317.121900px;}
.y131{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.yfa{bottom:317.920350px;}
.y113{bottom:317.935350px;}
.yae{bottom:319.187700px;}
.y19e{bottom:320.263500px;}
.ye4{bottom:321.710100px;}
.ye2{bottom:321.737700px;}
.y1f{bottom:329.746800px;}
.y15b{bottom:332.121900px;}
.y19d{bottom:335.263500px;}
.y130{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.yf9{bottom:335.920350px;}
.y112{bottom:335.935350px;}
.ye3{bottom:338.210100px;}
.ye1{bottom:338.237700px;}
.y15a{bottom:347.121900px;}
.y1e{bottom:347.746800px;}
.y19c{bottom:350.263500px;}
.y12f{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.yf8{bottom:353.920350px;}
.y111{bottom:353.935350px;}
.y159{bottom:362.121900px;}
.yac{bottom:363.675300px;}
.y19b{bottom:365.263500px;}
.y1d{bottom:365.746800px;}
.ye0{bottom:367.241700px;}
.y12e{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.yf7{bottom:371.920350px;}
.y110{bottom:371.935350px;}
.y158{bottom:377.121900px;}
.yab{bottom:379.419300px;}
.y19a{bottom:380.263500px;}
.ydf{bottom:383.741700px;}
.y1c{bottom:383.746800px;}
.y12d{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.yf6{bottom:389.920350px;}
.y10f{bottom:389.935350px;}
.y157{bottom:392.121900px;}
.y199{bottom:395.263500px;}
.yde{bottom:399.989700px;}
.y1b{bottom:401.746800px;}
.y156{bottom:407.121900px;}
.y12c{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.yf5{bottom:407.920350px;}
.y10e{bottom:407.935350px;}
.y198{bottom:410.263500px;}
.ydd{bottom:416.489700px;}
.y1a{bottom:419.746800px;}
.y155{bottom:422.121900px;}
.y197{bottom:425.263500px;}
.y12b{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y10d{bottom:425.935350px;}
.ydc{bottom:432.737700px;}
.y154{bottom:437.121900px;}
.y19{bottom:437.746800px;}
.y196{bottom:440.263500px;}
.yf4{bottom:443.515350px;}
.y12a{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y10c{bottom:443.935350px;}
.ydb{bottom:449.237700px;}
.y153{bottom:452.121900px;}
.y195{bottom:455.263500px;}
.y2a{bottom:455.746800px;}
.y129{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.ya8{bottom:461.785350px;}
.y87{bottom:461.920350px;}
.y10b{bottom:461.935350px;}
.yda{bottom:465.485700px;}
.y152{bottom:467.121900px;}
.y194{bottom:470.263500px;}
.y18{bottom:473.344050px;}
.y29{bottom:473.746800px;}
.y128{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.ya7{bottom:479.785350px;}
.y86{bottom:479.920350px;}
.y10a{bottom:479.935350px;}
.yd9{bottom:481.985700px;}
.y151{bottom:482.121900px;}
.y193{bottom:485.263500px;}
.y150{bottom:497.121900px;}
.y127{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.ya6{bottom:497.785350px;}
.y85{bottom:497.920350px;}
.y109{bottom:497.935350px;}
.yd8{bottom:498.233700px;}
.y192{bottom:500.263500px;}
.y14f{bottom:512.121900px;}
.yd7{bottom:514.733700px;}
.y191{bottom:515.263500px;}
.y126{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.ya5{bottom:515.785350px;}
.y84{bottom:515.920350px;}
.y108{bottom:515.935350px;}
.y14e{bottom:527.121900px;}
.y190{bottom:530.263500px;}
.yd6{bottom:530.981700px;}
.y125{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.ya4{bottom:533.785350px;}
.y83{bottom:533.920350px;}
.y107{bottom:533.935350px;}
.y14d{bottom:542.121900px;}
.y18f{bottom:545.263500px;}
.yd5{bottom:547.481700px;}
.y17{bottom:548.464200px;}
.y124{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.ya3{bottom:551.785350px;}
.y82{bottom:551.920350px;}
.y106{bottom:551.935350px;}
.y14c{bottom:557.121900px;}
.y18e{bottom:560.263500px;}
.yd4{bottom:563.729700px;}
.yd2{bottom:563.761200px;}
.y67{bottom:569.365350px;}
.y123{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.ya2{bottom:569.785350px;}
.y81{bottom:569.920350px;}
.y105{bottom:569.935350px;}
.y14b{bottom:572.121900px;}
.y18d{bottom:575.263500px;}
.y16{bottom:575.809200px;}
.yd3{bottom:580.229700px;}
.yd1{bottom:580.261200px;}
.y14a{bottom:587.121900px;}
.y122{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.ya1{bottom:587.785350px;}
.y80{bottom:587.920350px;}
.y104{bottom:587.935350px;}
.y18c{bottom:590.263500px;}
.y15{bottom:593.809200px;}
.yd0{bottom:596.509200px;}
.y149{bottom:602.121900px;}
.y66{bottom:605.230350px;}
.y18b{bottom:605.263500px;}
.y121{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.ya0{bottom:605.785350px;}
.y7f{bottom:605.920350px;}
.y103{bottom:605.935350px;}
.y14{bottom:611.809200px;}
.ycf{bottom:613.009200px;}
.y148{bottom:617.121900px;}
.y18a{bottom:620.263500px;}
.y120{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y9f{bottom:623.785350px;}
.y7e{bottom:623.920350px;}
.y102{bottom:623.935350px;}
.y13{bottom:629.809200px;}
.y147{bottom:632.121900px;}
.y189{bottom:635.263500px;}
.y11f{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y9e{bottom:641.785350px;}
.y7d{bottom:641.920350px;}
.y101{bottom:641.935350px;}
.yce{bottom:642.013200px;}
.y146{bottom:647.121900px;}
.y12{bottom:647.809200px;}
.y188{bottom:650.263500px;}
.ycd{bottom:658.513200px;}
.y45{bottom:659.770350px;}
.y9d{bottom:659.785350px;}
.y7c{bottom:659.920350px;}
.y145{bottom:662.121900px;}
.y187{bottom:665.263500px;}
.y11{bottom:665.809200px;}
.ycc{bottom:674.761200px;}
.y144{bottom:677.121900px;}
.y11e{bottom:677.230350px;}
.y100{bottom:677.530350px;}
.y44{bottom:677.770350px;}
.y9c{bottom:677.785350px;}
.y7b{bottom:677.920350px;}
.y186{bottom:680.263500px;}
.y10{bottom:683.809200px;}
.ycb{bottom:691.261200px;}
.y143{bottom:692.121900px;}
.y185{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.y9b{bottom:695.785350px;}
.y7a{bottom:695.920350px;}
.yf{bottom:701.809200px;}
.y142{bottom:707.121900px;}
.yca{bottom:707.509200px;}
.y184{bottom:710.263500px;}
.y42{bottom:713.770350px;}
.y9a{bottom:713.785350px;}
.y79{bottom:713.920350px;}
.ye{bottom:719.809200px;}
.y141{bottom:722.121900px;}
.yc9{bottom:724.009200px;}
.y183{bottom:725.263500px;}
.yad{bottom:728.091300px;}
.y41{bottom:731.770350px;}
.y99{bottom:731.785350px;}
.y78{bottom:731.920350px;}
.y140{bottom:737.121900px;}
.yd{bottom:737.809200px;}
.yc8{bottom:740.257200px;}
.y182{bottom:740.263500px;}
.y40{bottom:749.770350px;}
.y98{bottom:749.785350px;}
.y77{bottom:749.920350px;}
.y13f{bottom:752.121900px;}
.y181{bottom:755.263500px;}
.yc{bottom:755.809200px;}
.yc7{bottom:756.757200px;}
.y3f{bottom:767.770350px;}
.y97{bottom:767.785350px;}
.y180{bottom:770.263500px;}
.yb{bottom:773.809200px;}
.y13e{bottom:785.230350px;}
.y17f{bottom:785.263500px;}
.y76{bottom:785.515350px;}
.yc6{bottom:785.761200px;}
.y3e{bottom:785.770350px;}
.y96{bottom:785.785350px;}
.y17e{bottom:800.263500px;}
.yc5{bottom:802.009200px;}
.y3d{bottom:803.770350px;}
.y95{bottom:803.785350px;}
.y17d{bottom:815.263500px;}
.ya{bottom:818.967300px;}
.y3c{bottom:821.770350px;}
.y94{bottom:821.785350px;}
.y17c{bottom:830.263500px;}
.yc4{bottom:831.013200px;}
.y9{bottom:831.418050px;}
.y3b{bottom:839.770350px;}
.y93{bottom:839.785350px;}
.y17b{bottom:845.263500px;}
.y3a{bottom:857.770350px;}
.y92{bottom:857.785350px;}
.y17a{bottom:860.263500px;}
.y8{bottom:863.133600px;}
.yc3{bottom:863.412600px;}
.y179{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.y91{bottom:875.785350px;}
.y7{bottom:876.633600px;}
.yc2{bottom:882.912600px;}
.y178{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.y90{bottom:893.785350px;}
.y6{bottom:895.558950px;}
.yc1{bottom:902.412600px;}
.y177{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.y8f{bottom:911.785350px;}
.y176{bottom:920.263500px;}
.yc0{bottom:921.912600px;}
.y5{bottom:924.280950px;}
.y36{bottom:929.770350px;}
.y8e{bottom:929.785350px;}
.y175{bottom:935.263500px;}
.y13d{bottom:947.365350px;}
.y35{bottom:947.770350px;}
.y8d{bottom:947.785350px;}
.y174{bottom:950.263500px;}
.y173{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.y8c{bottom:965.785350px;}
.y4{bottom:970.496850px;}
.y172{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.ybd{bottom:983.772600px;}
.y8b{bottom:983.785350px;}
.y171{bottom:995.263500px;}
.y13c{bottom:1001.365350px;}
.y32{bottom:1001.770350px;}
.ybc{bottom:1001.772600px;}
.y8a{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y170{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.ybf{bottom:1019.772600px;}
.y89{bottom:1019.785350px;}
.y16f{bottom:1025.263500px;}
.ybb{bottom:1037.367600px;}
.yff{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.ybe{bottom:1037.772600px;}
.y88{bottom:1037.785350px;}
.y16e{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y16d{bottom:1132.413900px;}
.yaa{bottom:1132.418250px;}
.y72{bottom:1132.418700px;}
.y1af{bottom:1132.423500px;}
.yf3{bottom:1132.442100px;}
.yba{bottom:1132.448550px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h10{height:33.351562px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.hb{height:41.689453px;}
.h11{height:42.023438px;}
.h9{height:43.681641px;}
.ha{height:43.740234px;}
.hf{height:52.529297px;}
.h3{height:56.786133px;}
.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;}
.xb{left:76.535400px;}
.x1d{left:78.646650px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x3c{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.585400px;}
.x1a{left:119.578650px;}
.x3d{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x33{left:187.210650px;}
.x34{left:189.340350px;}
.x2e{left:208.438650px;}
.x2a{left:209.818650px;}
.x39{left:211.390350px;}
.x5{left:212.876400px;}
.x19{left:219.597300px;}
.x18{left:222.813300px;}
.x17{left:250.293300px;}
.x1c{left:256.834650px;}
.x1b{left:280.066650px;}
.x1e{left:320.482650px;}
.x1f{left:335.386650px;}
.x20{left:401.266650px;}
.x21{left:419.170650px;}
.xa{left:455.041500px;}
.xe{left:457.130400px;}
.x12{left:478.345350px;}
.x7{left:480.456000px;}
.x22{left:482.050650px;}
.xd{left:491.150400px;}
.x35{left:496.804350px;}
.x23{left:499.954650px;}
.x3b{left:503.858400px;}
.x13{left:512.365350px;}
.x8{left:514.491000px;}
.xf{left:525.291600px;}
.x36{left:556.419450px;}
.x24{left:560.278650px;}
.x2b{left:562.810650px;}
.x2f{left:565.762650px;}
.x25{left:580.738650px;}
.x3a{left:596.110350px;}
.x38{left:600.685350px;}
.x14{left:612.910350px;}
.x32{left:637.102650px;}
.x26{left:640.618650px;}
.x2c{left:643.594650px;}
.x37{left:645.075450px;}
.x30{left:646.546650px;}
.x27{left:661.522650px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x28{left:717.982650px;}
.x31{left:722.830650px;}
.x2d{left:724.378650px;}
.x10{left:729.282150px;}
.x29{left:742.306650px;}
.x3e{left:744.763050px;}
.x15{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls94{letter-spacing:-3.413333pt;}
.ls1d{letter-spacing:-1.913067pt;}
.ls1c{letter-spacing:-1.688000pt;}
.ls1b{letter-spacing:-0.693333pt;}
.ls56{letter-spacing:-0.426667pt;}
.ls71{letter-spacing:-0.320000pt;}
.ls93{letter-spacing:-0.298667pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls3a{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.200000pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.085333pt;}
.ls47{letter-spacing:-0.053333pt;}
.ls73{letter-spacing:-0.042667pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls64{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls83{letter-spacing:0.085333pt;}
.ls29{letter-spacing:0.106667pt;}
.ls8d{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls80{letter-spacing:0.170667pt;}
.ls3f{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.266667pt;}
.ls8c{letter-spacing:0.298667pt;}
.ls39{letter-spacing:0.320000pt;}
.ls70{letter-spacing:0.341333pt;}
.ls41{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls7a{letter-spacing:0.469333pt;}
.ls13{letter-spacing:0.480000pt;}
.ls7e{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls46{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.682667pt;}
.lsc{letter-spacing:0.693333pt;}
.ls67{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls7f{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls7b{letter-spacing:0.810667pt;}
.ls32{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls63{letter-spacing:0.981333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls68{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.066667pt;}
.ls4b{letter-spacing:1.109333pt;}
.ls20{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls89{letter-spacing:1.194667pt;}
.ls18{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls44{letter-spacing:1.280000pt;}
.ls85{letter-spacing:1.322667pt;}
.ls16{letter-spacing:1.333333pt;}
.ls7{letter-spacing:1.386667pt;}
.ls28{letter-spacing:1.440000pt;}
.ls8a{letter-spacing:1.450667pt;}
.ls9{letter-spacing:1.493333pt;}
.ls19{letter-spacing:1.546667pt;}
.ls60{letter-spacing:1.578667pt;}
.ls35{letter-spacing:1.600000pt;}
.ls40{letter-spacing:1.653333pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls8f{letter-spacing:1.749333pt;}
.ls2e{letter-spacing:1.760000pt;}
.ls84{letter-spacing:1.792000pt;}
.ls25{letter-spacing:1.813333pt;}
.ls66{letter-spacing:1.834667pt;}
.ls8e{letter-spacing:1.877333pt;}
.ls36{letter-spacing:1.920000pt;}
.ls62{letter-spacing:1.962667pt;}
.ls31{letter-spacing:1.973333pt;}
.ls87{letter-spacing:2.005333pt;}
.ls27{letter-spacing:2.026667pt;}
.ls4e{letter-spacing:2.080000pt;}
.ls77{letter-spacing:2.090667pt;}
.ls2b{letter-spacing:2.133333pt;}
.ls51{letter-spacing:2.186667pt;}
.ls90{letter-spacing:2.218667pt;}
.ls23{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.293333pt;}
.ls5{letter-spacing:2.346667pt;}
.lsf{letter-spacing:2.400000pt;}
.ls75{letter-spacing:2.432000pt;}
.ls38{letter-spacing:2.453333pt;}
.ls17{letter-spacing:2.506667pt;}
.ls34{letter-spacing:2.560000pt;}
.ls2a{letter-spacing:2.613333pt;}
.ls6e{letter-spacing:2.645333pt;}
.ls82{letter-spacing:2.688000pt;}
.ls22{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:2.773333pt;}
.ls52{letter-spacing:2.826667pt;}
.ls7c{letter-spacing:2.858667pt;}
.ls26{letter-spacing:2.880000pt;}
.ls4c{letter-spacing:2.933333pt;}
.ls81{letter-spacing:2.944000pt;}
.ls4a{letter-spacing:2.986667pt;}
.ls57{letter-spacing:3.040000pt;}
.ls43{letter-spacing:3.093333pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls42{letter-spacing:3.253333pt;}
.ls78{letter-spacing:3.328000pt;}
.ls30{letter-spacing:3.360000pt;}
.lse{letter-spacing:3.413333pt;}
.ls6d{letter-spacing:3.541333pt;}
.ls4d{letter-spacing:3.626667pt;}
.ls92{letter-spacing:3.669333pt;}
.ls5d{letter-spacing:3.733333pt;}
.ls72{letter-spacing:3.786667pt;}
.ls6b{letter-spacing:3.797333pt;}
.ls4f{letter-spacing:3.840000pt;}
.ls76{letter-spacing:3.882667pt;}
.ls3e{letter-spacing:3.893333pt;}
.ls54{letter-spacing:3.946667pt;}
.ls53{letter-spacing:4.053333pt;}
.ls86{letter-spacing:4.138667pt;}
.ls88{letter-spacing:4.224000pt;}
.ls6a{letter-spacing:4.225600pt;}
.ls7d{letter-spacing:4.266667pt;}
.ls3{letter-spacing:4.426667pt;}
.ls3d{letter-spacing:4.480000pt;}
.ls45{letter-spacing:4.640000pt;}
.ls59{letter-spacing:4.746667pt;}
.ls50{letter-spacing:4.960000pt;}
.ls8b{letter-spacing:4.992000pt;}
.ls58{letter-spacing:5.066667pt;}
.ls5e{letter-spacing:5.226667pt;}
.ls37{letter-spacing:5.386667pt;}
.ls55{letter-spacing:5.760000pt;}
.ls33{letter-spacing:5.866667pt;}
.ls49{letter-spacing:5.920000pt;}
.ls5f{letter-spacing:6.026667pt;}
.ls5b{letter-spacing:6.080000pt;}
.ls91{letter-spacing:6.485333pt;}
.ls5a{letter-spacing:6.720000pt;}
.ls5c{letter-spacing:8.160000pt;}
.ls1{letter-spacing:52.918645pt;}
.ls0{letter-spacing:52.922667pt;}
.ws7d{word-spacing:-43.776000pt;}
.ws62{word-spacing:-17.173333pt;}
.ws15{word-spacing:-16.213333pt;}
.ws59{word-spacing:-15.466667pt;}
.ws16{word-spacing:-15.360000pt;}
.ws5a{word-spacing:-15.253333pt;}
.ws7e{word-spacing:-14.933333pt;}
.ws26{word-spacing:-14.826667pt;}
.ws18{word-spacing:-14.666667pt;}
.ws58{word-spacing:-14.506667pt;}
.ws1{word-spacing:-13.973333pt;}
.ws1a{word-spacing:-13.493333pt;}
.ws17{word-spacing:-13.333333pt;}
.ws7a{word-spacing:-13.312000pt;}
.ws19{word-spacing:-13.226667pt;}
.ws79{word-spacing:-12.757333pt;}
.ws82{word-spacing:-12.117333pt;}
.ws80{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.861333pt;}
.ws64{word-spacing:-11.392000pt;}
.ws63{word-spacing:-11.349333pt;}
.ws7c{word-spacing:-11.306667pt;}
.ws81{word-spacing:-11.050667pt;}
.ws65{word-spacing:-10.922667pt;}
.ws2{word-spacing:-10.920000pt;}
.ws7b{word-spacing:-10.880000pt;}
.ws7f{word-spacing:-10.837333pt;}
.ws83{word-spacing:-10.752000pt;}
.ws66{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws8c{word-spacing:-4.266667pt;}
.ws6d{word-spacing:-3.786667pt;}
.wsd{word-spacing:-3.413333pt;}
.ws9c{word-spacing:-2.944000pt;}
.ws1b{word-spacing:-2.880000pt;}
.ws5{word-spacing:-2.565333pt;}
.ws6a{word-spacing:-2.453333pt;}
.ws84{word-spacing:-2.432000pt;}
.ws85{word-spacing:-2.133333pt;}
.ws6c{word-spacing:-1.706667pt;}
.ws6f{word-spacing:-1.600000pt;}
.ws96{word-spacing:-1.450667pt;}
.ws42{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.386667pt;}
.ws92{word-spacing:-1.280000pt;}
.ws88{word-spacing:-1.237333pt;}
.ws95{word-spacing:-1.194667pt;}
.ws22{word-spacing:-1.066667pt;}
.ws12{word-spacing:-1.013333pt;}
.ws87{word-spacing:-0.981333pt;}
.ws3e{word-spacing:-0.960000pt;}
.ws2a{word-spacing:-0.906667pt;}
.ws6e{word-spacing:-0.853333pt;}
.ws94{word-spacing:-0.725333pt;}
.ws89{word-spacing:-0.682667pt;}
.ws67{word-spacing:-0.640000pt;}
.ws8d{word-spacing:-0.597333pt;}
.ws68{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws99{word-spacing:-0.384000pt;}
.ws3b{word-spacing:-0.373333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws9a{word-spacing:-0.298667pt;}
.ws5b{word-spacing:-0.266667pt;}
.ws78{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.213333pt;}
.ws90{word-spacing:-0.170667pt;}
.ws39{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.106667pt;}
.ws93{word-spacing:-0.085333pt;}
.ws24{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws75{word-spacing:0.042667pt;}
.ws46{word-spacing:0.053333pt;}
.ws21{word-spacing:0.106667pt;}
.ws3d{word-spacing:0.160000pt;}
.ws14{word-spacing:0.200000pt;}
.ws1f{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws35{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws33{word-spacing:0.426667pt;}
.ws8f{word-spacing:0.469333pt;}
.ws3c{word-spacing:0.480000pt;}
.ws23{word-spacing:0.533333pt;}
.ws36{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.682667pt;}
.ws60{word-spacing:0.746667pt;}
.ws34{word-spacing:0.800000pt;}
.ws40{word-spacing:0.853333pt;}
.ws70{word-spacing:1.066667pt;}
.ws4b{word-spacing:1.109333pt;}
.ws20{word-spacing:1.120000pt;}
.ws77{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.173333pt;}
.ws91{word-spacing:1.194667pt;}
.wsf{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.237333pt;}
.ws48{word-spacing:1.280000pt;}
.ws74{word-spacing:1.322667pt;}
.ws52{word-spacing:1.333333pt;}
.ws69{word-spacing:1.386667pt;}
.ws2b{word-spacing:1.600000pt;}
.wsb{word-spacing:1.653333pt;}
.ws6{word-spacing:1.688000pt;}
.ws5d{word-spacing:1.706667pt;}
.ws31{word-spacing:1.760000pt;}
.ws1e{word-spacing:1.813333pt;}
.ws2f{word-spacing:1.866667pt;}
.ws7{word-spacing:1.913067pt;}
.ws55{word-spacing:1.920000pt;}
.ws50{word-spacing:1.973333pt;}
.ws3a{word-spacing:2.026667pt;}
.ws2d{word-spacing:2.080000pt;}
.ws11{word-spacing:2.133333pt;}
.ws8a{word-spacing:2.176000pt;}
.ws44{word-spacing:2.240000pt;}
.ws32{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.ws29{word-spacing:2.453333pt;}
.ws98{word-spacing:2.517333pt;}
.ws54{word-spacing:2.560000pt;}
.ws43{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.666667pt;}
.ws97{word-spacing:2.688000pt;}
.ws37{word-spacing:2.720000pt;}
.ws8e{word-spacing:2.816000pt;}
.ws4d{word-spacing:2.826667pt;}
.ws72{word-spacing:2.944000pt;}
.ws53{word-spacing:3.040000pt;}
.ws57{word-spacing:3.093333pt;}
.ws41{word-spacing:3.146667pt;}
.ws76{word-spacing:3.157333pt;}
.ws56{word-spacing:3.200000pt;}
.ws28{word-spacing:3.253333pt;}
.ws9b{word-spacing:3.285333pt;}
.ws27{word-spacing:3.306667pt;}
.ws47{word-spacing:3.360000pt;}
.ws86{word-spacing:3.370667pt;}
.ws9e{word-spacing:3.413333pt;}
.ws6b{word-spacing:3.466667pt;}
.ws71{word-spacing:3.498667pt;}
.ws5c{word-spacing:3.520000pt;}
.ws73{word-spacing:3.541333pt;}
.ws5f{word-spacing:3.573333pt;}
.ws4f{word-spacing:3.626667pt;}
.ws38{word-spacing:3.680000pt;}
.wsc{word-spacing:3.733333pt;}
.ws4c{word-spacing:3.786667pt;}
.ws51{word-spacing:3.840000pt;}
.ws45{word-spacing:3.893333pt;}
.ws3f{word-spacing:4.053333pt;}
.ws1c{word-spacing:4.160000pt;}
.ws13{word-spacing:4.213333pt;}
.ws25{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws4a{word-spacing:264.149333pt;}
._a{margin-left:-2575.458667pt;}
._39{margin-left:-2555.400000pt;}
._d{margin-left:-2554.296000pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.414400pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.826667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.957333pt;}
._7{width:0.906667pt;}
._8{width:2.293333pt;}
._c{width:3.306667pt;}
._b{width:4.213333pt;}
._9{width:5.386667pt;}
._38{width:7.013333pt;}
._6{width:7.946667pt;}
._37{width:49.792000pt;}
._2c{width:51.626667pt;}
._35{width:53.973333pt;}
._2b{width:56.362667pt;}
._2a{width:57.557333pt;}
._33{width:58.709333pt;}
._2e{width:59.861333pt;}
._1b{width:70.533333pt;}
._1c{width:80.725333pt;}
._1a{width:82.304000pt;}
._19{width:102.058667pt;}
._1e{width:123.392000pt;}
._36{width:152.234667pt;}
._28{width:155.690667pt;}
._34{width:156.970667pt;}
._2f{width:158.165333pt;}
._27{width:166.357333pt;}
._31{width:172.416000pt;}
._26{width:176.426667pt;}
._15{width:185.941333pt;}
._2d{width:187.264000pt;}
._17{width:190.336000pt;}
._14{width:196.608000pt;}
._16{width:201.002667pt;}
._13{width:207.274667pt;}
._25{width:209.280000pt;}
._12{width:215.552000pt;}
._18{width:218.496000pt;}
._11{width:238.037333pt;}
._1d{width:249.301333pt;}
._20{width:253.482667pt;}
._32{width:258.389333pt;}
._30{width:273.024000pt;}
._21{width:296.149333pt;}
._29{width:344.362667pt;}
._24{width:348.160000pt;}
._23{width:351.701333pt;}
._10{width:392.021333pt;}
._f{width:403.882667pt;}
._1f{width:411.520000pt;}
._22{width:1122.816000pt;}
._e{width:1157.845333pt;}
.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;}
.y2f{bottom:42.468667pt;}
.y16c{bottom:68.552800pt;}
.y1ae{bottom:71.345333pt;}
.y13b{bottom:73.982533pt;}
.y65{bottom:74.462533pt;}
.y11d{bottom:74.489200pt;}
.y71{bottom:74.595867pt;}
.y2c{bottom:78.246000pt;}
.y16b{bottom:81.886133pt;}
.yb9{bottom:82.044933pt;}
.yf2{bottom:82.199200pt;}
.y1ad{bottom:84.678667pt;}
.ya9{bottom:90.071333pt;}
.y64{bottom:90.462533pt;}
.y70{bottom:90.595867pt;}
.y2b{bottom:91.576000pt;}
.y16a{bottom:95.219467pt;}
.yb8{bottom:96.487600pt;}
.yf1{bottom:96.865867pt;}
.y1ac{bottom:98.012000pt;}
.y75{bottom:106.102533pt;}
.y11c{bottom:106.129200pt;}
.y13a{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y6f{bottom:106.595867pt;}
.y169{bottom:108.552800pt;}
.yb7{bottom:110.930267pt;}
.yf0{bottom:111.308533pt;}
.y1ab{bottom:111.345333pt;}
.y168{bottom:121.886133pt;}
.y74{bottom:122.102533pt;}
.y139{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y6e{bottom:122.595867pt;}
.y1aa{bottom:124.678667pt;}
.yb6{bottom:125.372933pt;}
.yef{bottom:125.975200pt;}
.y167{bottom:135.219467pt;}
.y1a9{bottom:138.012000pt;}
.y138{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y6d{bottom:138.595867pt;}
.yb5{bottom:139.815600pt;}
.yee{bottom:140.417867pt;}
.y166{bottom:148.552800pt;}
.y28{bottom:149.108267pt;}
.y1a8{bottom:151.345333pt;}
.y73{bottom:153.982533pt;}
.y137{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y6c{bottom:154.595867pt;}
.y11b{bottom:154.609200pt;}
.yed{bottom:155.084533pt;}
.y165{bottom:161.886133pt;}
.y1a7{bottom:164.678667pt;}
.y27{bottom:165.108267pt;}
.yb4{bottom:165.596933pt;}
.yec{bottom:169.527200pt;}
.y136{bottom:169.982533pt;}
.y5f{bottom:170.462533pt;}
.y6b{bottom:170.595867pt;}
.y11a{bottom:170.609200pt;}
.y164{bottom:175.219467pt;}
.y1a6{bottom:178.012000pt;}
.yb3{bottom:180.039600pt;}
.y26{bottom:181.108267pt;}
.yeb{bottom:184.193867pt;}
.y5e{bottom:186.462533pt;}
.y6a{bottom:186.595867pt;}
.y119{bottom:186.609200pt;}
.y163{bottom:188.552800pt;}
.y1a5{bottom:191.345333pt;}
.yb2{bottom:194.482267pt;}
.y25{bottom:197.108267pt;}
.yea{bottom:198.636533pt;}
.y162{bottom:201.886133pt;}
.y135{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y69{bottom:202.595867pt;}
.y118{bottom:202.609200pt;}
.y1a4{bottom:204.678667pt;}
.y24{bottom:213.108267pt;}
.ye9{bottom:213.303200pt;}
.y161{bottom:215.219467pt;}
.y1a3{bottom:218.012000pt;}
.y134{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.yfe{bottom:218.595867pt;}
.y117{bottom:218.609200pt;}
.yb1{bottom:220.263600pt;}
.ye8{bottom:227.745867pt;}
.y160{bottom:228.552800pt;}
.y23{bottom:229.108267pt;}
.y1a2{bottom:231.345333pt;}
.y68{bottom:234.235867pt;}
.y133{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.yfd{bottom:234.595867pt;}
.y116{bottom:234.609200pt;}
.y15f{bottom:241.886133pt;}
.ye7{bottom:242.412533pt;}
.y1a1{bottom:244.678667pt;}
.y22{bottom:245.108267pt;}
.yb0{bottom:249.055733pt;}
.y132{bottom:249.982533pt;}
.y5a{bottom:250.462533pt;}
.yfc{bottom:250.595867pt;}
.y115{bottom:250.609200pt;}
.y15e{bottom:255.219467pt;}
.ye6{bottom:256.855200pt;}
.y1a0{bottom:258.012000pt;}
.y21{bottom:261.108267pt;}
.yaf{bottom:266.389067pt;}
.y59{bottom:266.462533pt;}
.yfb{bottom:266.595867pt;}
.y114{bottom:266.609200pt;}
.y15d{bottom:268.552800pt;}
.y19f{bottom:271.345333pt;}
.ye5{bottom:271.521867pt;}
.y20{bottom:277.108267pt;}
.y15c{bottom:281.886133pt;}
.y131{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.yfa{bottom:282.595867pt;}
.y113{bottom:282.609200pt;}
.yae{bottom:283.722400pt;}
.y19e{bottom:284.678667pt;}
.ye4{bottom:285.964533pt;}
.ye2{bottom:285.989067pt;}
.y1f{bottom:293.108267pt;}
.y15b{bottom:295.219467pt;}
.y19d{bottom:298.012000pt;}
.y130{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.yf9{bottom:298.595867pt;}
.y112{bottom:298.609200pt;}
.ye3{bottom:300.631200pt;}
.ye1{bottom:300.655733pt;}
.y15a{bottom:308.552800pt;}
.y1e{bottom:309.108267pt;}
.y19c{bottom:311.345333pt;}
.y12f{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.yf8{bottom:314.595867pt;}
.y111{bottom:314.609200pt;}
.y159{bottom:321.886133pt;}
.yac{bottom:323.266933pt;}
.y19b{bottom:324.678667pt;}
.y1d{bottom:325.108267pt;}
.ye0{bottom:326.437067pt;}
.y12e{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.yf7{bottom:330.595867pt;}
.y110{bottom:330.609200pt;}
.y158{bottom:335.219467pt;}
.yab{bottom:337.261600pt;}
.y19a{bottom:338.012000pt;}
.ydf{bottom:341.103733pt;}
.y1c{bottom:341.108267pt;}
.y12d{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.yf6{bottom:346.595867pt;}
.y10f{bottom:346.609200pt;}
.y157{bottom:348.552800pt;}
.y199{bottom:351.345333pt;}
.yde{bottom:355.546400pt;}
.y1b{bottom:357.108267pt;}
.y156{bottom:361.886133pt;}
.y12c{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.yf5{bottom:362.595867pt;}
.y10e{bottom:362.609200pt;}
.y198{bottom:364.678667pt;}
.ydd{bottom:370.213067pt;}
.y1a{bottom:373.108267pt;}
.y155{bottom:375.219467pt;}
.y197{bottom:378.012000pt;}
.y12b{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y10d{bottom:378.609200pt;}
.ydc{bottom:384.655733pt;}
.y154{bottom:388.552800pt;}
.y19{bottom:389.108267pt;}
.y196{bottom:391.345333pt;}
.yf4{bottom:394.235867pt;}
.y12a{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y10c{bottom:394.609200pt;}
.ydb{bottom:399.322400pt;}
.y153{bottom:401.886133pt;}
.y195{bottom:404.678667pt;}
.y2a{bottom:405.108267pt;}
.y129{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.ya8{bottom:410.475867pt;}
.y87{bottom:410.595867pt;}
.y10b{bottom:410.609200pt;}
.yda{bottom:413.765067pt;}
.y152{bottom:415.219467pt;}
.y194{bottom:418.012000pt;}
.y18{bottom:420.750267pt;}
.y29{bottom:421.108267pt;}
.y128{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.ya7{bottom:426.475867pt;}
.y86{bottom:426.595867pt;}
.y10a{bottom:426.609200pt;}
.yd9{bottom:428.431733pt;}
.y151{bottom:428.552800pt;}
.y193{bottom:431.345333pt;}
.y150{bottom:441.886133pt;}
.y127{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.ya6{bottom:442.475867pt;}
.y85{bottom:442.595867pt;}
.y109{bottom:442.609200pt;}
.yd8{bottom:442.874400pt;}
.y192{bottom:444.678667pt;}
.y14f{bottom:455.219467pt;}
.yd7{bottom:457.541067pt;}
.y191{bottom:458.012000pt;}
.y126{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.ya5{bottom:458.475867pt;}
.y84{bottom:458.595867pt;}
.y108{bottom:458.609200pt;}
.y14e{bottom:468.552800pt;}
.y190{bottom:471.345333pt;}
.yd6{bottom:471.983733pt;}
.y125{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.ya4{bottom:474.475867pt;}
.y83{bottom:474.595867pt;}
.y107{bottom:474.609200pt;}
.y14d{bottom:481.886133pt;}
.y18f{bottom:484.678667pt;}
.yd5{bottom:486.650400pt;}
.y17{bottom:487.523733pt;}
.y124{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.ya3{bottom:490.475867pt;}
.y82{bottom:490.595867pt;}
.y106{bottom:490.609200pt;}
.y14c{bottom:495.219467pt;}
.y18e{bottom:498.012000pt;}
.yd4{bottom:501.093067pt;}
.yd2{bottom:501.121067pt;}
.y67{bottom:506.102533pt;}
.y123{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.ya2{bottom:506.475867pt;}
.y81{bottom:506.595867pt;}
.y105{bottom:506.609200pt;}
.y14b{bottom:508.552800pt;}
.y18d{bottom:511.345333pt;}
.y16{bottom:511.830400pt;}
.yd3{bottom:515.759733pt;}
.yd1{bottom:515.787733pt;}
.y14a{bottom:521.886133pt;}
.y122{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.ya1{bottom:522.475867pt;}
.y80{bottom:522.595867pt;}
.y104{bottom:522.609200pt;}
.y18c{bottom:524.678667pt;}
.y15{bottom:527.830400pt;}
.yd0{bottom:530.230400pt;}
.y149{bottom:535.219467pt;}
.y66{bottom:537.982533pt;}
.y18b{bottom:538.012000pt;}
.y121{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.ya0{bottom:538.475867pt;}
.y7f{bottom:538.595867pt;}
.y103{bottom:538.609200pt;}
.y14{bottom:543.830400pt;}
.ycf{bottom:544.897067pt;}
.y148{bottom:548.552800pt;}
.y18a{bottom:551.345333pt;}
.y120{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y9f{bottom:554.475867pt;}
.y7e{bottom:554.595867pt;}
.y102{bottom:554.609200pt;}
.y13{bottom:559.830400pt;}
.y147{bottom:561.886133pt;}
.y189{bottom:564.678667pt;}
.y11f{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y9e{bottom:570.475867pt;}
.y7d{bottom:570.595867pt;}
.y101{bottom:570.609200pt;}
.yce{bottom:570.678400pt;}
.y146{bottom:575.219467pt;}
.y12{bottom:575.830400pt;}
.y188{bottom:578.012000pt;}
.ycd{bottom:585.345067pt;}
.y45{bottom:586.462533pt;}
.y9d{bottom:586.475867pt;}
.y7c{bottom:586.595867pt;}
.y145{bottom:588.552800pt;}
.y187{bottom:591.345333pt;}
.y11{bottom:591.830400pt;}
.ycc{bottom:599.787733pt;}
.y144{bottom:601.886133pt;}
.y11e{bottom:601.982533pt;}
.y100{bottom:602.249200pt;}
.y44{bottom:602.462533pt;}
.y9c{bottom:602.475867pt;}
.y7b{bottom:602.595867pt;}
.y186{bottom:604.678667pt;}
.y10{bottom:607.830400pt;}
.ycb{bottom:614.454400pt;}
.y143{bottom:615.219467pt;}
.y185{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.y9b{bottom:618.475867pt;}
.y7a{bottom:618.595867pt;}
.yf{bottom:623.830400pt;}
.y142{bottom:628.552800pt;}
.yca{bottom:628.897067pt;}
.y184{bottom:631.345333pt;}
.y42{bottom:634.462533pt;}
.y9a{bottom:634.475867pt;}
.y79{bottom:634.595867pt;}
.ye{bottom:639.830400pt;}
.y141{bottom:641.886133pt;}
.yc9{bottom:643.563733pt;}
.y183{bottom:644.678667pt;}
.yad{bottom:647.192267pt;}
.y41{bottom:650.462533pt;}
.y99{bottom:650.475867pt;}
.y78{bottom:650.595867pt;}
.y140{bottom:655.219467pt;}
.yd{bottom:655.830400pt;}
.yc8{bottom:658.006400pt;}
.y182{bottom:658.012000pt;}
.y40{bottom:666.462533pt;}
.y98{bottom:666.475867pt;}
.y77{bottom:666.595867pt;}
.y13f{bottom:668.552800pt;}
.y181{bottom:671.345333pt;}
.yc{bottom:671.830400pt;}
.yc7{bottom:672.673067pt;}
.y3f{bottom:682.462533pt;}
.y97{bottom:682.475867pt;}
.y180{bottom:684.678667pt;}
.yb{bottom:687.830400pt;}
.y13e{bottom:697.982533pt;}
.y17f{bottom:698.012000pt;}
.y76{bottom:698.235867pt;}
.yc6{bottom:698.454400pt;}
.y3e{bottom:698.462533pt;}
.y96{bottom:698.475867pt;}
.y17e{bottom:711.345333pt;}
.yc5{bottom:712.897067pt;}
.y3d{bottom:714.462533pt;}
.y95{bottom:714.475867pt;}
.y17d{bottom:724.678667pt;}
.ya{bottom:727.970933pt;}
.y3c{bottom:730.462533pt;}
.y94{bottom:730.475867pt;}
.y17c{bottom:738.012000pt;}
.yc4{bottom:738.678400pt;}
.y9{bottom:739.038267pt;}
.y3b{bottom:746.462533pt;}
.y93{bottom:746.475867pt;}
.y17b{bottom:751.345333pt;}
.y3a{bottom:762.462533pt;}
.y92{bottom:762.475867pt;}
.y17a{bottom:764.678667pt;}
.y8{bottom:767.229867pt;}
.yc3{bottom:767.477867pt;}
.y179{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.y91{bottom:778.475867pt;}
.y7{bottom:779.229867pt;}
.yc2{bottom:784.811200pt;}
.y178{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.y90{bottom:794.475867pt;}
.y6{bottom:796.052400pt;}
.yc1{bottom:802.144533pt;}
.y177{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.y8f{bottom:810.475867pt;}
.y176{bottom:818.012000pt;}
.yc0{bottom:819.477867pt;}
.y5{bottom:821.583067pt;}
.y36{bottom:826.462533pt;}
.y8e{bottom:826.475867pt;}
.y175{bottom:831.345333pt;}
.y13d{bottom:842.102533pt;}
.y35{bottom:842.462533pt;}
.y8d{bottom:842.475867pt;}
.y174{bottom:844.678667pt;}
.y173{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.y8c{bottom:858.475867pt;}
.y4{bottom:862.663867pt;}
.y172{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.ybd{bottom:874.464533pt;}
.y8b{bottom:874.475867pt;}
.y171{bottom:884.678667pt;}
.y13c{bottom:890.102533pt;}
.y32{bottom:890.462533pt;}
.ybc{bottom:890.464533pt;}
.y8a{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y170{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.ybf{bottom:906.464533pt;}
.y89{bottom:906.475867pt;}
.y16f{bottom:911.345333pt;}
.ybb{bottom:922.104533pt;}
.yff{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.ybe{bottom:922.464533pt;}
.y88{bottom:922.475867pt;}
.y16e{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y16d{bottom:1006.590133pt;}
.yaa{bottom:1006.594000pt;}
.y72{bottom:1006.594400pt;}
.y1af{bottom:1006.598667pt;}
.yf3{bottom:1006.615200pt;}
.yba{bottom:1006.620933pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h10{height:29.645833pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.hb{height:37.057292pt;}
.h11{height:37.354167pt;}
.h9{height:38.828125pt;}
.ha{height:38.880208pt;}
.hf{height:46.692708pt;}
.h3{height:50.476562pt;}
.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;}
.xb{left:68.031467pt;}
.x1d{left:69.908133pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x3c{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.298133pt;}
.x1a{left:106.292133pt;}
.x3d{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x33{left:166.409467pt;}
.x34{left:168.302533pt;}
.x2e{left:185.278800pt;}
.x2a{left:186.505467pt;}
.x39{left:187.902533pt;}
.x5{left:189.223467pt;}
.x19{left:195.197600pt;}
.x18{left:198.056267pt;}
.x17{left:222.482933pt;}
.x1c{left:228.297467pt;}
.x1b{left:248.948133pt;}
.x1e{left:284.873467pt;}
.x1f{left:298.121467pt;}
.x20{left:356.681467pt;}
.x21{left:372.596133pt;}
.xa{left:404.481333pt;}
.xe{left:406.338133pt;}
.x12{left:425.195867pt;}
.x7{left:427.072000pt;}
.x22{left:428.489467pt;}
.xd{left:436.578133pt;}
.x35{left:441.603867pt;}
.x23{left:444.404133pt;}
.x3b{left:447.874133pt;}
.x13{left:455.435867pt;}
.x8{left:457.325333pt;}
.xf{left:466.925867pt;}
.x36{left:494.595067pt;}
.x24{left:498.025467pt;}
.x2b{left:500.276133pt;}
.x2f{left:502.900133pt;}
.x25{left:516.212133pt;}
.x3a{left:529.875867pt;}
.x38{left:533.942533pt;}
.x14{left:544.809200pt;}
.x32{left:566.313467pt;}
.x26{left:569.438800pt;}
.x2c{left:572.084133pt;}
.x37{left:573.400400pt;}
.x30{left:574.708133pt;}
.x27{left:588.020133pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x28{left:638.206800pt;}
.x31{left:642.516133pt;}
.x2d{left:643.892133pt;}
.x10{left:648.250800pt;}
.x29{left:659.828133pt;}
.x3e{left:662.011600pt;}
.x15{left:667.148400pt;}
}




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