
    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_fa669baf278ed3e5a7c59533.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_480a4a06735400a63c52be5c.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_6c181537f3eac54fd656f809.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a359ff97fef6a1a40ab7a707.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_51bf4bd8b880abba5c4acbdb.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_e6e3f2f7618cd29d22f06429.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3157e89ccac0fcbb2222a316.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1d9a5490871b45011894661.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_de07c6d5ccfbdefb1edb6499.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_234c1b1e275ffc3ec61e375a.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v4{vertical-align:-28.263000px;}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls14{letter-spacing:-8.160000px;}
.ls67{letter-spacing:-7.740000px;}
.ls5a{letter-spacing:-7.260000px;}
.ls34{letter-spacing:-6.540000px;}
.ls61{letter-spacing:-6.120000px;}
.ls5f{letter-spacing:-5.760000px;}
.ls59{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-0.780000px;}
.ls54{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.600000px;}
.ls82{letter-spacing:-0.528000px;}
.ls10{letter-spacing:-0.506400px;}
.ls81{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.ls5e{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.349800px;}
.ls11{letter-spacing:-0.300000px;}
.ls80{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.060000px;}
.ls48{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls78{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.096000px;}
.ls31{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls7f{letter-spacing:0.192000px;}
.ls45{letter-spacing:0.209880px;}
.ls1f{letter-spacing:0.240000px;}
.ls6d{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.ls74{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.420000px;}
.ls6e{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls56{letter-spacing:0.489720px;}
.ls86{letter-spacing:0.528000px;}
.ls3e{letter-spacing:0.540000px;}
.ls4c{letter-spacing:0.559680px;}
.ls2e{letter-spacing:0.600000px;}
.ls2a{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.720000px;}
.ls88{letter-spacing:0.768000px;}
.ls55{letter-spacing:0.769560px;}
.ls24{letter-spacing:0.780000px;}
.ls53{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls87{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.900000px;}
.ls7e{letter-spacing:0.912000px;}
.ls60{letter-spacing:0.944460px;}
.ls22{letter-spacing:0.960000px;}
.ls6f{letter-spacing:1.008000px;}
.ls4a{letter-spacing:1.014420px;}
.ls30{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.049400px;}
.ls77{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls7c{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.140000px;}
.ls2{letter-spacing:1.200000px;}
.ls76{letter-spacing:1.248000px;}
.ls6{letter-spacing:1.260000px;}
.ls8a{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.320000px;}
.ls71{letter-spacing:1.344000px;}
.ls23{letter-spacing:1.380000px;}
.ls52{letter-spacing:1.392000px;}
.ls18{letter-spacing:1.440000px;}
.ls83{letter-spacing:1.488000px;}
.ls26{letter-spacing:1.500000px;}
.ls8b{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.560000px;}
.ls73{letter-spacing:1.584000px;}
.ls5d{letter-spacing:1.587600px;}
.ls12{letter-spacing:1.620000px;}
.ls7d{letter-spacing:1.632000px;}
.ls1c{letter-spacing:1.680000px;}
.ls79{letter-spacing:1.728000px;}
.ls15{letter-spacing:1.740000px;}
.ls70{letter-spacing:1.776000px;}
.lsc{letter-spacing:1.800000px;}
.ls84{letter-spacing:1.824000px;}
.ls17{letter-spacing:1.860000px;}
.ls20{letter-spacing:1.920000px;}
.ls89{letter-spacing:1.968000px;}
.ls1d{letter-spacing:1.980000px;}
.ls40{letter-spacing:2.040000px;}
.ls7b{letter-spacing:2.064000px;}
.ls2f{letter-spacing:2.100000px;}
.ls85{letter-spacing:2.112000px;}
.ls39{letter-spacing:2.160000px;}
.ls43{letter-spacing:2.220000px;}
.ls2b{letter-spacing:2.280000px;}
.ls75{letter-spacing:2.304000px;}
.ls1a{letter-spacing:2.340000px;}
.ls49{letter-spacing:2.400000px;}
.ls38{letter-spacing:2.460000px;}
.ls5c{letter-spacing:2.520000px;}
.ls16{letter-spacing:2.580000px;}
.ls5b{letter-spacing:2.640000px;}
.ls8e{letter-spacing:2.688000px;}
.ls6b{letter-spacing:2.700000px;}
.lsd{letter-spacing:2.760000px;}
.ls2d{letter-spacing:2.820000px;}
.ls2c{letter-spacing:2.880000px;}
.ls4e{letter-spacing:2.940000px;}
.ls42{letter-spacing:3.000000px;}
.ls37{letter-spacing:3.060000px;}
.ls68{letter-spacing:3.120000px;}
.ls19{letter-spacing:3.240000px;}
.ls4f{letter-spacing:3.360000px;}
.ls44{letter-spacing:3.420000px;}
.ls3c{letter-spacing:3.540000px;}
.ls64{letter-spacing:3.600000px;}
.ls3f{letter-spacing:3.660000px;}
.ls6a{letter-spacing:3.720000px;}
.ls3a{letter-spacing:3.780000px;}
.ls4b{letter-spacing:3.900000px;}
.ls66{letter-spacing:3.960000px;}
.ls28{letter-spacing:4.080000px;}
.ls3d{letter-spacing:4.380000px;}
.ls65{letter-spacing:4.440000px;}
.ls36{letter-spacing:4.500000px;}
.ls27{letter-spacing:4.680000px;}
.ls3b{letter-spacing:4.980000px;}
.ls8c{letter-spacing:5.040000px;}
.ls51{letter-spacing:5.220000px;}
.ls72{letter-spacing:5.376000px;}
.ls63{letter-spacing:5.400000px;}
.ls7a{letter-spacing:5.712000px;}
.ls62{letter-spacing:5.880000px;}
.ls69{letter-spacing:6.240000px;}
.ls50{letter-spacing:7.200000px;}
.ls6c{letter-spacing:7.620000px;}
.ls41{letter-spacing:9.240000px;}
.ls0{letter-spacing:59.533476px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws5c{word-spacing:-20.220000px;}
.ws58{word-spacing:-18.060000px;}
.ws9d{word-spacing:-18.000000px;}
.ws7a{word-spacing:-17.400000px;}
.ws57{word-spacing:-17.220000px;}
.ws17{word-spacing:-17.100000px;}
.ws53{word-spacing:-16.920000px;}
.ws31{word-spacing:-16.680000px;}
.ws7b{word-spacing:-16.560000px;}
.ws5d{word-spacing:-16.200000px;}
.ws79{word-spacing:-16.140000px;}
.ws9c{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.900000px;}
.ws90{word-spacing:-15.840000px;}
.ws8f{word-spacing:-15.480000px;}
.ws15{word-spacing:-15.360000px;}
.ws13{word-spacing:-15.180000px;}
.ws4{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws5e{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.760000px;}
.wsbb{word-spacing:-13.968000px;}
.ws9e{word-spacing:-13.776000px;}
.wsa1{word-spacing:-13.632000px;}
.wsb8{word-spacing:-13.488000px;}
.ws9f{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.344000px;}
.wsa0{word-spacing:-13.248000px;}
.wsa3{word-spacing:-12.912000px;}
.wsb7{word-spacing:-12.720000px;}
.ws2{word-spacing:-12.510000px;}
.wsb9{word-spacing:-12.096000px;}
.wsa2{word-spacing:-12.000000px;}
.wsba{word-spacing:-11.952000px;}
.ws74{word-spacing:-11.040000px;}
.ws1{word-spacing:-10.210662px;}
.ws33{word-spacing:-9.794400px;}
.ws4c{word-spacing:-9.759420px;}
.ws7c{word-spacing:-9.689460px;}
.ws59{word-spacing:-9.514560px;}
.ws4d{word-spacing:-9.304680px;}
.ws5a{word-spacing:-9.234720px;}
.ws30{word-spacing:-8.954880px;}
.ws32{word-spacing:-8.745000px;}
.ws5b{word-spacing:-8.395200px;}
.ws76{word-spacing:-8.256000px;}
.ws73{word-spacing:-5.568000px;}
.ws38{word-spacing:-4.380000px;}
.ws78{word-spacing:-4.272000px;}
.ws26{word-spacing:-4.080000px;}
.wsca{word-spacing:-3.900000px;}
.ws91{word-spacing:-3.780000px;}
.wsa6{word-spacing:-3.720000px;}
.ws3a{word-spacing:-3.660000px;}
.wsa7{word-spacing:-3.300000px;}
.ws1a{word-spacing:-3.240000px;}
.wsa5{word-spacing:-3.120000px;}
.ws40{word-spacing:-3.060000px;}
.ws8b{word-spacing:-3.000000px;}
.ws54{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.wsaa{word-spacing:-2.700000px;}
.wsc8{word-spacing:-2.688000px;}
.ws18{word-spacing:-2.580000px;}
.ws81{word-spacing:-2.460000px;}
.wsa4{word-spacing:-2.400000px;}
.ws1b{word-spacing:-2.340000px;}
.wsaf{word-spacing:-2.304000px;}
.ws92{word-spacing:-2.280000px;}
.ws25{word-spacing:-2.220000px;}
.ws6b{word-spacing:-2.100000px;}
.wsb2{word-spacing:-2.064000px;}
.ws3b{word-spacing:-2.040000px;}
.ws29{word-spacing:-1.980000px;}
.wsc6{word-spacing:-1.968000px;}
.ws27{word-spacing:-1.920000px;}
.ws2b{word-spacing:-1.860000px;}
.wsbe{word-spacing:-1.824000px;}
.wsac{word-spacing:-1.776000px;}
.ws4e{word-spacing:-1.740000px;}
.wsb1{word-spacing:-1.728000px;}
.ws6d{word-spacing:-1.680000px;}
.ws89{word-spacing:-1.620000px;}
.wsae{word-spacing:-1.584000px;}
.ws9b{word-spacing:-1.560000px;}
.ws75{word-spacing:-1.536000px;}
.ws94{word-spacing:-1.500000px;}
.wsbd{word-spacing:-1.488000px;}
.ws52{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.380000px;}
.ws66{word-spacing:-1.320000px;}
.wsc2{word-spacing:-1.296000px;}
.ws2a{word-spacing:-1.260000px;}
.ws71{word-spacing:-1.200000px;}
.ws6e{word-spacing:-1.140000px;}
.ws28{word-spacing:-1.080000px;}
.ws3e{word-spacing:-1.020000px;}
.wsbc{word-spacing:-1.008000px;}
.ws4f{word-spacing:-0.960000px;}
.wsc0{word-spacing:-0.912000px;}
.ws20{word-spacing:-0.900000px;}
.ws77{word-spacing:-0.864000px;}
.ws68{word-spacing:-0.840000px;}
.wsbf{word-spacing:-0.816000px;}
.ws41{word-spacing:-0.780000px;}
.ws2d{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.660000px;}
.ws36{word-spacing:-0.600000px;}
.ws65{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.480000px;}
.wsab{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.420000px;}
.ws24{word-spacing:-0.360000px;}
.wsc3{word-spacing:-0.336000px;}
.ws12{word-spacing:-0.300000px;}
.wsb5{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.240000px;}
.wsb6{word-spacing:-0.192000px;}
.wse{word-spacing:-0.180000px;}
.ws47{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.120000px;}
.wsb0{word-spacing:-0.096000px;}
.wsa9{word-spacing:-0.060000px;}
.wsc1{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws4b{word-spacing:0.048000px;}
.ws3f{word-spacing:0.060000px;}
.ws7e{word-spacing:0.120000px;}
.ws2f{word-spacing:0.180000px;}
.ws1d{word-spacing:0.240000px;}
.ws8{word-spacing:0.300000px;}
.ws4a{word-spacing:0.336000px;}
.ws6a{word-spacing:0.420000px;}
.ws19{word-spacing:0.480000px;}
.wsb4{word-spacing:0.528000px;}
.ws6c{word-spacing:0.600000px;}
.ws85{word-spacing:0.720000px;}
.ws42{word-spacing:0.780000px;}
.ws35{word-spacing:0.900000px;}
.ws84{word-spacing:1.020000px;}
.ws7f{word-spacing:1.080000px;}
.ws44{word-spacing:1.140000px;}
.wsad{word-spacing:1.296000px;}
.ws45{word-spacing:1.440000px;}
.ws93{word-spacing:1.560000px;}
.ws55{word-spacing:1.728000px;}
.ws63{word-spacing:1.740000px;}
.wsb3{word-spacing:1.776000px;}
.ws98{word-spacing:1.800000px;}
.ws61{word-spacing:1.860000px;}
.ws8e{word-spacing:1.872000px;}
.ws56{word-spacing:1.968000px;}
.ws8d{word-spacing:2.040000px;}
.ws69{word-spacing:2.100000px;}
.ws5f{word-spacing:2.160000px;}
.wsc4{word-spacing:2.304000px;}
.ws8a{word-spacing:2.340000px;}
.ws82{word-spacing:2.400000px;}
.wsc9{word-spacing:2.448000px;}
.ws83{word-spacing:2.460000px;}
.ws49{word-spacing:2.544000px;}
.wsb{word-spacing:2.640000px;}
.ws51{word-spacing:2.700000px;}
.ws3d{word-spacing:2.820000px;}
.ws9a{word-spacing:2.880000px;}
.ws80{word-spacing:2.940000px;}
.ws99{word-spacing:3.000000px;}
.ws87{word-spacing:3.060000px;}
.wsc7{word-spacing:3.072000px;}
.ws96{word-spacing:3.120000px;}
.ws21{word-spacing:3.240000px;}
.wscb{word-spacing:3.300000px;}
.ws60{word-spacing:3.360000px;}
.ws62{word-spacing:3.420000px;}
.ws1f{word-spacing:3.480000px;}
.ws1c{word-spacing:3.540000px;}
.wsc5{word-spacing:3.600000px;}
.ws6f{word-spacing:3.660000px;}
.ws70{word-spacing:3.720000px;}
.ws3c{word-spacing:3.840000px;}
.ws22{word-spacing:3.900000px;}
.ws46{word-spacing:3.936000px;}
.ws48{word-spacing:3.984000px;}
.ws43{word-spacing:4.020000px;}
.ws64{word-spacing:4.080000px;}
.ws7d{word-spacing:4.260000px;}
.ws2e{word-spacing:4.320000px;}
.ws86{word-spacing:4.440000px;}
.ws10{word-spacing:4.500000px;}
.ws39{word-spacing:4.560000px;}
.ws34{word-spacing:4.620000px;}
.ws1e{word-spacing:4.740000px;}
.ws97{word-spacing:4.800000px;}
.wsa{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.wsa8{word-spacing:5.520000px;}
.ws88{word-spacing:5.760000px;}
.ws8c{word-spacing:6.120000px;}
.ws67{word-spacing:6.240000px;}
.ws23{word-spacing:6.540000px;}
.ws72{word-spacing:7.260000px;}
.ws95{word-spacing:7.740000px;}
.ws11{word-spacing:8.160000px;}
._e{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._f{margin-left:-9.374400px;}
._5{margin-left:-7.620000px;}
._11{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._7{margin-left:-4.371600px;}
._6{margin-left:-3.360000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._2{width:1.266000px;}
._8{width:2.874000px;}
._a{width:4.200000px;}
._9{width:5.400000px;}
._c{width:6.660000px;}
._b{width:7.920000px;}
._d{width:9.120000px;}
._3{width:59.513814px;}
._12{width:71.040000px;}
._13{width:91.056000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.yef{bottom:82.928850px;}
.yf2{bottom:83.460300px;}
.y9f{bottom:83.554950px;}
.ya3{bottom:83.755800px;}
.y5f{bottom:83.770350px;}
.ya6{bottom:83.885550px;}
.y75{bottom:83.920350px;}
.ya4{bottom:84.216150px;}
.y9c{bottom:86.170350px;}
.y1a{bottom:88.029450px;}
.y170{bottom:89.121900px;}
.y1b1{bottom:95.263500px;}
.yee{bottom:98.672850px;}
.yf1{bottom:99.204300px;}
.y9e{bottom:99.298950px;}
.ya2{bottom:99.499800px;}
.ya5{bottom:99.629550px;}
.y13a{bottom:101.635350px;}
.y7c{bottom:101.770350px;}
.y74{bottom:101.920350px;}
.y19{bottom:103.023000px;}
.y16f{bottom:104.121900px;}
.y9b{bottom:104.170350px;}
.yc2{bottom:104.312100px;}
.yd4{bottom:107.405250px;}
.y1b0{bottom:110.263500px;}
.y9d{bottom:115.042950px;}
.ya1{bottom:115.243800px;}
.y16e{bottom:119.121900px;}
.y139{bottom:119.230350px;}
.y5e{bottom:119.365350px;}
.yf3{bottom:119.515350px;}
.y7b{bottom:119.770350px;}
.y73{bottom:119.920350px;}
.y9a{bottom:122.170350px;}
.yc1{bottom:122.312100px;}
.yd3{bottom:122.405250px;}
.y1af{bottom:125.263500px;}
.ya0{bottom:130.987800px;}
.y16d{bottom:134.121900px;}
.yaa{bottom:135.550950px;}
.yd2{bottom:137.405250px;}
.y7a{bottom:137.770350px;}
.y72{bottom:137.920350px;}
.y99{bottom:140.170350px;}
.y1ae{bottom:140.263500px;}
.yc0{bottom:140.312100px;}
.y16c{bottom:149.121900px;}
.ya9{bottom:151.294950px;}
.yd1{bottom:152.405250px;}
.y5d{bottom:155.230350px;}
.y1ad{bottom:155.263500px;}
.y138{bottom:155.635350px;}
.y79{bottom:155.770350px;}
.y71{bottom:155.920350px;}
.y98{bottom:158.170350px;}
.ybf{bottom:158.312100px;}
.y16b{bottom:164.121900px;}
.ya8{bottom:167.038950px;}
.yd0{bottom:167.405250px;}
.y1ac{bottom:170.263500px;}
.y28{bottom:173.276550px;}
.y137{bottom:173.635350px;}
.y78{bottom:173.770350px;}
.y70{bottom:173.920350px;}
.y97{bottom:176.170350px;}
.ybe{bottom:176.312100px;}
.y16a{bottom:179.121900px;}
.ycf{bottom:182.405250px;}
.y1ab{bottom:185.263500px;}
.y27{bottom:191.276550px;}
.y136{bottom:191.635350px;}
.y77{bottom:191.770350px;}
.y6f{bottom:191.920350px;}
.y169{bottom:194.121900px;}
.y96{bottom:194.170350px;}
.ybd{bottom:194.312100px;}
.yce{bottom:197.405250px;}
.y1aa{bottom:200.263500px;}
.y168{bottom:209.121900px;}
.y26{bottom:209.276550px;}
.y135{bottom:209.635350px;}
.y5c{bottom:209.770350px;}
.y6e{bottom:209.920350px;}
.y95{bottom:212.170350px;}
.ybc{bottom:212.312100px;}
.ycd{bottom:212.405250px;}
.y1a9{bottom:215.263500px;}
.y167{bottom:224.121900px;}
.y25{bottom:227.276550px;}
.y134{bottom:227.635350px;}
.y5b{bottom:227.770350px;}
.y6d{bottom:227.920350px;}
.y94{bottom:230.170350px;}
.y1a8{bottom:230.263500px;}
.ybb{bottom:230.312100px;}
.y166{bottom:239.121900px;}
.y1a7{bottom:245.263500px;}
.y24{bottom:245.276550px;}
.y133{bottom:245.635350px;}
.y5a{bottom:245.770350px;}
.y6c{bottom:245.920350px;}
.y93{bottom:248.170350px;}
.yba{bottom:248.312100px;}
.y165{bottom:254.121900px;}
.y1a6{bottom:260.263500px;}
.y23{bottom:263.276550px;}
.y132{bottom:263.635350px;}
.y59{bottom:263.770350px;}
.y6b{bottom:263.920350px;}
.y92{bottom:266.170350px;}
.yb9{bottom:266.312100px;}
.y164{bottom:269.121900px;}
.y1a5{bottom:275.263500px;}
.y22{bottom:281.276550px;}
.ycc{bottom:281.515350px;}
.y131{bottom:281.635350px;}
.y58{bottom:281.770350px;}
.y6a{bottom:281.920350px;}
.y163{bottom:284.121900px;}
.y91{bottom:284.170350px;}
.yb8{bottom:284.312100px;}
.y1a4{bottom:290.263500px;}
.y162{bottom:299.121900px;}
.y130{bottom:299.230350px;}
.y21{bottom:299.276550px;}
.y57{bottom:299.770350px;}
.y69{bottom:299.920350px;}
.y90{bottom:302.170350px;}
.yb7{bottom:302.312100px;}
.y1a3{bottom:305.263500px;}
.y161{bottom:314.121900px;}
.y20{bottom:317.276550px;}
.y56{bottom:317.770350px;}
.y68{bottom:317.920350px;}
.y8f{bottom:320.170350px;}
.y1a2{bottom:320.263500px;}
.yb6{bottom:320.312100px;}
.y160{bottom:329.121900px;}
.y1a1{bottom:335.263500px;}
.y1f{bottom:335.276550px;}
.y12f{bottom:335.635350px;}
.y55{bottom:335.770350px;}
.y67{bottom:335.920350px;}
.y8e{bottom:338.170350px;}
.yb5{bottom:338.312100px;}
.y15f{bottom:344.121900px;}
.y1a0{bottom:350.263500px;}
.y1e{bottom:353.276550px;}
.y12e{bottom:353.635350px;}
.y54{bottom:353.770350px;}
.y66{bottom:353.920350px;}
.y8d{bottom:356.170350px;}
.yb4{bottom:356.312100px;}
.y15e{bottom:359.121900px;}
.y19f{bottom:365.263500px;}
.y1d{bottom:371.276550px;}
.y12d{bottom:371.635350px;}
.y53{bottom:371.770350px;}
.y65{bottom:371.920350px;}
.y15d{bottom:374.121900px;}
.y8c{bottom:374.170350px;}
.yb3{bottom:374.312100px;}
.y19e{bottom:380.263500px;}
.y15c{bottom:389.121900px;}
.y1c{bottom:389.276550px;}
.y12c{bottom:389.635350px;}
.y52{bottom:389.770350px;}
.y64{bottom:389.920350px;}
.y8b{bottom:392.170350px;}
.yb2{bottom:392.320350px;}
.y19d{bottom:395.263500px;}
.y15b{bottom:404.121900px;}
.y2a{bottom:407.276550px;}
.y12b{bottom:407.635350px;}
.y51{bottom:407.770350px;}
.y63{bottom:407.920350px;}
.y8a{bottom:410.170350px;}
.y19c{bottom:410.263500px;}
.yb1{bottom:410.320350px;}
.y1cb{bottom:410.912100px;}
.y15a{bottom:419.121900px;}
.y1b{bottom:424.871550px;}
.y19b{bottom:425.263500px;}
.y29{bottom:425.276550px;}
.y12a{bottom:425.635350px;}
.y50{bottom:425.770350px;}
.y62{bottom:425.920350px;}
.y89{bottom:428.170350px;}
.yb0{bottom:428.320350px;}
.y1ca{bottom:428.912100px;}
.y159{bottom:434.121900px;}
.y19a{bottom:440.263500px;}
.y129{bottom:443.635350px;}
.y4f{bottom:443.770350px;}
.y61{bottom:443.920350px;}
.y88{bottom:446.170350px;}
.yaf{bottom:446.320350px;}
.y1c9{bottom:446.912100px;}
.y158{bottom:449.121900px;}
.y199{bottom:455.263500px;}
.y128{bottom:461.635350px;}
.y4e{bottom:461.770350px;}
.y157{bottom:464.121900px;}
.y87{bottom:464.170350px;}
.yae{bottom:464.320350px;}
.y1c8{bottom:464.912100px;}
.y198{bottom:470.263500px;}
.y156{bottom:479.121900px;}
.y60{bottom:479.515350px;}
.y127{bottom:479.635350px;}
.y4d{bottom:479.770350px;}
.y112{bottom:479.785350px;}
.y86{bottom:482.170350px;}
.y1c7{bottom:482.912100px;}
.y197{bottom:485.263500px;}
.y155{bottom:494.121900px;}
.y126{bottom:497.230350px;}
.y4c{bottom:497.770350px;}
.y111{bottom:497.785350px;}
.yad{bottom:497.920350px;}
.y18{bottom:498.058500px;}
.y85{bottom:500.185350px;}
.y196{bottom:500.263500px;}
.y154{bottom:509.121900px;}
.y195{bottom:515.263500px;}
.yac{bottom:515.515350px;}
.y4b{bottom:515.770350px;}
.y110{bottom:515.785350px;}
.y17{bottom:516.064200px;}
.y84{bottom:518.185350px;}
.y1c6{bottom:518.912100px;}
.y153{bottom:524.121900px;}
.y194{bottom:530.263500px;}
.y125{bottom:533.635350px;}
.y4a{bottom:533.770350px;}
.y10f{bottom:533.785350px;}
.y83{bottom:536.185350px;}
.y152{bottom:539.121900px;}
.y16{bottom:543.409200px;}
.y193{bottom:545.263500px;}
.y124{bottom:551.635350px;}
.y49{bottom:551.770350px;}
.y10e{bottom:551.785350px;}
.y151{bottom:554.121900px;}
.y82{bottom:554.185350px;}
.y1c5{bottom:554.912100px;}
.y192{bottom:560.263500px;}
.y15{bottom:561.409200px;}
.y150{bottom:569.121900px;}
.y123{bottom:569.635350px;}
.y48{bottom:569.770350px;}
.y10d{bottom:569.785350px;}
.y81{bottom:572.185350px;}
.y1c4{bottom:572.912100px;}
.y191{bottom:575.263500px;}
.y14{bottom:579.409200px;}
.y14f{bottom:584.121900px;}
.y122{bottom:587.635350px;}
.y47{bottom:587.770350px;}
.y10c{bottom:587.785350px;}
.y80{bottom:590.185350px;}
.y190{bottom:590.263500px;}
.y1c3{bottom:590.912100px;}
.y13{bottom:597.409200px;}
.y14e{bottom:599.121900px;}
.y18f{bottom:605.263500px;}
.yed{bottom:605.365350px;}
.y121{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.y10b{bottom:605.785350px;}
.y1c2{bottom:608.914350px;}
.y14d{bottom:614.121900px;}
.y12{bottom:615.409200px;}
.y18e{bottom:620.263500px;}
.y120{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.y7f{bottom:623.785350px;}
.y1c1{bottom:626.914350px;}
.y14c{bottom:629.121900px;}
.y11{bottom:633.409200px;}
.y18d{bottom:635.263500px;}
.yec{bottom:641.230350px;}
.y7e{bottom:641.380350px;}
.y11f{bottom:641.635350px;}
.y44{bottom:641.770350px;}
.yeb{bottom:641.772600px;}
.y10a{bottom:641.785350px;}
.y14b{bottom:644.121900px;}
.y18c{bottom:650.263500px;}
.y10{bottom:651.409200px;}
.y14a{bottom:659.121900px;}
.y11e{bottom:659.635350px;}
.y43{bottom:659.770350px;}
.yea{bottom:659.772600px;}
.y109{bottom:659.785350px;}
.y1c0{bottom:662.914350px;}
.y18b{bottom:665.263500px;}
.yf{bottom:669.409200px;}
.y149{bottom:674.121900px;}
.y7d{bottom:677.230350px;}
.y11d{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.ye9{bottom:677.772600px;}
.y108{bottom:677.785350px;}
.y18a{bottom:680.263500px;}
.ye{bottom:687.409200px;}
.y148{bottom:689.121900px;}
.y189{bottom:695.263500px;}
.y11c{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.ye8{bottom:695.772600px;}
.y107{bottom:695.785350px;}
.y1bf{bottom:698.914350px;}
.y147{bottom:704.121900px;}
.y188{bottom:710.263500px;}
.y11b{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.ye7{bottom:713.772600px;}
.y106{bottom:713.785350px;}
.y1be{bottom:716.914350px;}
.y146{bottom:719.121900px;}
.y187{bottom:725.263500px;}
.y11a{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.ye6{bottom:731.772600px;}
.y105{bottom:731.785350px;}
.yd{bottom:732.567300px;}
.y145{bottom:734.121900px;}
.y186{bottom:740.263500px;}
.yc{bottom:745.018050px;}
.y144{bottom:749.121900px;}
.y119{bottom:749.635350px;}
.y3e{bottom:749.770350px;}
.ye5{bottom:749.772600px;}
.y104{bottom:749.785350px;}
.y1bd{bottom:752.914350px;}
.y185{bottom:755.263500px;}
.y143{bottom:764.121900px;}
.y118{bottom:767.635350px;}
.y3d{bottom:767.770350px;}
.ye4{bottom:767.772600px;}
.y103{bottom:767.785350px;}
.y184{bottom:770.263500px;}
.y1bc{bottom:770.914350px;}
.yb{bottom:776.733600px;}
.y142{bottom:779.121900px;}
.y183{bottom:785.263500px;}
.y117{bottom:785.635350px;}
.y3c{bottom:785.770350px;}
.ye3{bottom:785.772600px;}
.y102{bottom:785.785350px;}
.ya{bottom:790.233600px;}
.y141{bottom:794.121900px;}
.y182{bottom:800.263500px;}
.y116{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.ye2{bottom:803.772600px;}
.y101{bottom:803.785350px;}
.y1bb{bottom:806.914350px;}
.y140{bottom:809.121900px;}
.y181{bottom:815.263500px;}
.y115{bottom:821.635350px;}
.y3a{bottom:821.770350px;}
.ye1{bottom:821.772600px;}
.y100{bottom:821.785350px;}
.y8{bottom:822.658950px;}
.y13f{bottom:824.121900px;}
.y1ba{bottom:824.914350px;}
.y180{bottom:830.263500px;}
.y114{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.ye0{bottom:839.772600px;}
.yff{bottom:839.785350px;}
.y1b9{bottom:842.914350px;}
.y17f{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y13e{bottom:857.245350px;}
.y38{bottom:857.770350px;}
.ydf{bottom:857.772600px;}
.yfe{bottom:857.785350px;}
.y17e{bottom:860.263500px;}
.y113{bottom:875.230350px;}
.y17d{bottom:875.263500px;}
.y37{bottom:875.770350px;}
.yde{bottom:875.772600px;}
.yfd{bottom:875.785350px;}
.y1b8{bottom:878.914350px;}
.y17c{bottom:890.263500px;}
.y36{bottom:893.770350px;}
.ydd{bottom:893.772600px;}
.ycb{bottom:893.777100px;}
.yfc{bottom:893.785350px;}
.y1b7{bottom:896.914350px;}
.y6{bottom:897.606900px;}
.y17b{bottom:905.263500px;}
.y35{bottom:911.770350px;}
.ydc{bottom:911.772600px;}
.yca{bottom:911.777100px;}
.yfb{bottom:911.785350px;}
.y1b6{bottom:914.914350px;}
.y17a{bottom:920.263500px;}
.y13d{bottom:929.380350px;}
.y34{bottom:929.770350px;}
.ydb{bottom:929.772600px;}
.yc9{bottom:929.777100px;}
.yfa{bottom:929.785350px;}
.y1b5{bottom:932.914350px;}
.y5{bottom:934.036050px;}
.y179{bottom:935.263500px;}
.y33{bottom:947.770350px;}
.yda{bottom:947.772600px;}
.yc8{bottom:947.777100px;}
.yf9{bottom:947.785350px;}
.y178{bottom:950.263500px;}
.y1b4{bottom:950.914350px;}
.y177{bottom:965.263500px;}
.y13c{bottom:965.380350px;}
.y32{bottom:965.770350px;}
.yd9{bottom:965.772600px;}
.yc7{bottom:965.777100px;}
.yf8{bottom:965.785350px;}
.y1b3{bottom:968.914350px;}
.y4{bottom:970.496850px;}
.y176{bottom:980.263500px;}
.y31{bottom:983.770350px;}
.yd8{bottom:983.772600px;}
.yc6{bottom:983.777100px;}
.yf7{bottom:983.785350px;}
.y175{bottom:995.263500px;}
.y30{bottom:1001.770350px;}
.yd7{bottom:1001.772600px;}
.yc5{bottom:1001.777100px;}
.yf6{bottom:1001.785350px;}
.y1b2{bottom:1004.509350px;}
.y3{bottom:1006.926000px;}
.y174{bottom:1010.263500px;}
.y2f{bottom:1019.770350px;}
.yc4{bottom:1019.777100px;}
.yf5{bottom:1019.785350px;}
.y173{bottom:1025.263500px;}
.yd6{bottom:1037.367600px;}
.y13b{bottom:1037.380350px;}
.y2e{bottom:1037.770350px;}
.yc3{bottom:1037.777100px;}
.yf4{bottom:1037.785350px;}
.y172{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y171{bottom:1132.413900px;}
.y76{bottom:1132.418700px;}
.yd5{bottom:1132.421250px;}
.ya7{bottom:1132.421700px;}
.yf0{bottom:1132.424850px;}
.yab{bottom:1132.426950px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.099797px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.h7{height:32.805176px;}
.hc{height:32.815976px;}
.hf{height:34.945312px;}
.h10{height:34.968750px;}
.h14{height:41.660156px;}
.h13{height:42.117188px;}
.hd{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.he{height:52.646484px;}
.h18{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:58.895900px;}
.h15{height:58.922900px;}
.h16{height:58.928900px;}
.h17{height:58.946900px;}
.h11{height:58.955900px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:70.582650px;}
.xc{left:76.535400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x4{left:106.299150px;}
.x19{left:108.430350px;}
.xd{left:110.570400px;}
.x23{left:123.307350px;}
.x3{left:125.427900px;}
.x7{left:131.816400px;}
.xe{left:144.755400px;}
.x1a{left:186.415350px;}
.x20{left:190.130400px;}
.x5{left:191.337600px;}
.x6{left:212.876400px;}
.xb{left:455.041500px;}
.xf{left:457.115400px;}
.x13{left:478.360350px;}
.x9{left:480.491400px;}
.x22{left:482.598600px;}
.x10{left:491.135400px;}
.x24{left:503.863350px;}
.x1b{left:508.110300px;}
.x14{left:512.359500px;}
.x8{left:514.496400px;}
.x16{left:521.029500px;}
.x17{left:548.209500px;}
.x21{left:574.805400px;}
.x1c{left:579.431850px;}
.x15{left:612.889500px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:721.717650px;}
.x11{left:728.391600px;}
.x1e{left:743.863350px;}
.x18{left:749.651400px;}
@media print{
.v4{vertical-align:-25.122667pt;}
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls14{letter-spacing:-7.253333pt;}
.ls67{letter-spacing:-6.880000pt;}
.ls5a{letter-spacing:-6.453333pt;}
.ls34{letter-spacing:-5.813333pt;}
.ls61{letter-spacing:-5.440000pt;}
.ls5f{letter-spacing:-5.120000pt;}
.ls59{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls54{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.533333pt;}
.ls82{letter-spacing:-0.469333pt;}
.ls10{letter-spacing:-0.450133pt;}
.ls81{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls5e{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.310933pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls80{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls48{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls78{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.085333pt;}
.ls31{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7f{letter-spacing:0.170667pt;}
.ls45{letter-spacing:0.186560pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls6d{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls74{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls6e{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls56{letter-spacing:0.435307pt;}
.ls86{letter-spacing:0.469333pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls4c{letter-spacing:0.497493pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls88{letter-spacing:0.682667pt;}
.ls55{letter-spacing:0.684053pt;}
.ls24{letter-spacing:0.693333pt;}
.ls53{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls87{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls7e{letter-spacing:0.810667pt;}
.ls60{letter-spacing:0.839520pt;}
.ls22{letter-spacing:0.853333pt;}
.ls6f{letter-spacing:0.896000pt;}
.ls4a{letter-spacing:0.901707pt;}
.ls30{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.932800pt;}
.ls77{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls7c{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.013333pt;}
.ls2{letter-spacing:1.066667pt;}
.ls76{letter-spacing:1.109333pt;}
.ls6{letter-spacing:1.120000pt;}
.ls8a{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls71{letter-spacing:1.194667pt;}
.ls23{letter-spacing:1.226667pt;}
.ls52{letter-spacing:1.237333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls83{letter-spacing:1.322667pt;}
.ls26{letter-spacing:1.333333pt;}
.ls8b{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.386667pt;}
.ls73{letter-spacing:1.408000pt;}
.ls5d{letter-spacing:1.411200pt;}
.ls12{letter-spacing:1.440000pt;}
.ls7d{letter-spacing:1.450667pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls79{letter-spacing:1.536000pt;}
.ls15{letter-spacing:1.546667pt;}
.ls70{letter-spacing:1.578667pt;}
.lsc{letter-spacing:1.600000pt;}
.ls84{letter-spacing:1.621333pt;}
.ls17{letter-spacing:1.653333pt;}
.ls20{letter-spacing:1.706667pt;}
.ls89{letter-spacing:1.749333pt;}
.ls1d{letter-spacing:1.760000pt;}
.ls40{letter-spacing:1.813333pt;}
.ls7b{letter-spacing:1.834667pt;}
.ls2f{letter-spacing:1.866667pt;}
.ls85{letter-spacing:1.877333pt;}
.ls39{letter-spacing:1.920000pt;}
.ls43{letter-spacing:1.973333pt;}
.ls2b{letter-spacing:2.026667pt;}
.ls75{letter-spacing:2.048000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls49{letter-spacing:2.133333pt;}
.ls38{letter-spacing:2.186667pt;}
.ls5c{letter-spacing:2.240000pt;}
.ls16{letter-spacing:2.293333pt;}
.ls5b{letter-spacing:2.346667pt;}
.ls8e{letter-spacing:2.389333pt;}
.ls6b{letter-spacing:2.400000pt;}
.lsd{letter-spacing:2.453333pt;}
.ls2d{letter-spacing:2.506667pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls4e{letter-spacing:2.613333pt;}
.ls42{letter-spacing:2.666667pt;}
.ls37{letter-spacing:2.720000pt;}
.ls68{letter-spacing:2.773333pt;}
.ls19{letter-spacing:2.880000pt;}
.ls4f{letter-spacing:2.986667pt;}
.ls44{letter-spacing:3.040000pt;}
.ls3c{letter-spacing:3.146667pt;}
.ls64{letter-spacing:3.200000pt;}
.ls3f{letter-spacing:3.253333pt;}
.ls6a{letter-spacing:3.306667pt;}
.ls3a{letter-spacing:3.360000pt;}
.ls4b{letter-spacing:3.466667pt;}
.ls66{letter-spacing:3.520000pt;}
.ls28{letter-spacing:3.626667pt;}
.ls3d{letter-spacing:3.893333pt;}
.ls65{letter-spacing:3.946667pt;}
.ls36{letter-spacing:4.000000pt;}
.ls27{letter-spacing:4.160000pt;}
.ls3b{letter-spacing:4.426667pt;}
.ls8c{letter-spacing:4.480000pt;}
.ls51{letter-spacing:4.640000pt;}
.ls72{letter-spacing:4.778667pt;}
.ls63{letter-spacing:4.800000pt;}
.ls7a{letter-spacing:5.077333pt;}
.ls62{letter-spacing:5.226667pt;}
.ls69{letter-spacing:5.546667pt;}
.ls50{letter-spacing:6.400000pt;}
.ls6c{letter-spacing:6.773333pt;}
.ls41{letter-spacing:8.213333pt;}
.ls0{letter-spacing:52.918645pt;}
.ws0{word-spacing:-31.284267pt;}
.ws5c{word-spacing:-17.973333pt;}
.ws58{word-spacing:-16.053333pt;}
.ws9d{word-spacing:-16.000000pt;}
.ws7a{word-spacing:-15.466667pt;}
.ws57{word-spacing:-15.306667pt;}
.ws17{word-spacing:-15.200000pt;}
.ws53{word-spacing:-15.040000pt;}
.ws31{word-spacing:-14.826667pt;}
.ws7b{word-spacing:-14.720000pt;}
.ws5d{word-spacing:-14.400000pt;}
.ws79{word-spacing:-14.346667pt;}
.ws9c{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.133333pt;}
.ws90{word-spacing:-14.080000pt;}
.ws8f{word-spacing:-13.760000pt;}
.ws15{word-spacing:-13.653333pt;}
.ws13{word-spacing:-13.493333pt;}
.ws4{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws5e{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.120000pt;}
.wsbb{word-spacing:-12.416000pt;}
.ws9e{word-spacing:-12.245333pt;}
.wsa1{word-spacing:-12.117333pt;}
.wsb8{word-spacing:-11.989333pt;}
.ws9f{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsa0{word-spacing:-11.776000pt;}
.wsa3{word-spacing:-11.477333pt;}
.wsb7{word-spacing:-11.306667pt;}
.ws2{word-spacing:-11.120000pt;}
.wsb9{word-spacing:-10.752000pt;}
.wsa2{word-spacing:-10.666667pt;}
.wsba{word-spacing:-10.624000pt;}
.ws74{word-spacing:-9.813333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws33{word-spacing:-8.706133pt;}
.ws4c{word-spacing:-8.675040pt;}
.ws7c{word-spacing:-8.612853pt;}
.ws59{word-spacing:-8.457387pt;}
.ws4d{word-spacing:-8.270827pt;}
.ws5a{word-spacing:-8.208640pt;}
.ws30{word-spacing:-7.959893pt;}
.ws32{word-spacing:-7.773333pt;}
.ws5b{word-spacing:-7.462400pt;}
.ws76{word-spacing:-7.338667pt;}
.ws73{word-spacing:-4.949333pt;}
.ws38{word-spacing:-3.893333pt;}
.ws78{word-spacing:-3.797333pt;}
.ws26{word-spacing:-3.626667pt;}
.wsca{word-spacing:-3.466667pt;}
.ws91{word-spacing:-3.360000pt;}
.wsa6{word-spacing:-3.306667pt;}
.ws3a{word-spacing:-3.253333pt;}
.wsa7{word-spacing:-2.933333pt;}
.ws1a{word-spacing:-2.880000pt;}
.wsa5{word-spacing:-2.773333pt;}
.ws40{word-spacing:-2.720000pt;}
.ws8b{word-spacing:-2.666667pt;}
.ws54{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.wsaa{word-spacing:-2.400000pt;}
.wsc8{word-spacing:-2.389333pt;}
.ws18{word-spacing:-2.293333pt;}
.ws81{word-spacing:-2.186667pt;}
.wsa4{word-spacing:-2.133333pt;}
.ws1b{word-spacing:-2.080000pt;}
.wsaf{word-spacing:-2.048000pt;}
.ws92{word-spacing:-2.026667pt;}
.ws25{word-spacing:-1.973333pt;}
.ws6b{word-spacing:-1.866667pt;}
.wsb2{word-spacing:-1.834667pt;}
.ws3b{word-spacing:-1.813333pt;}
.ws29{word-spacing:-1.760000pt;}
.wsc6{word-spacing:-1.749333pt;}
.ws27{word-spacing:-1.706667pt;}
.ws2b{word-spacing:-1.653333pt;}
.wsbe{word-spacing:-1.621333pt;}
.wsac{word-spacing:-1.578667pt;}
.ws4e{word-spacing:-1.546667pt;}
.wsb1{word-spacing:-1.536000pt;}
.ws6d{word-spacing:-1.493333pt;}
.ws89{word-spacing:-1.440000pt;}
.wsae{word-spacing:-1.408000pt;}
.ws9b{word-spacing:-1.386667pt;}
.ws75{word-spacing:-1.365333pt;}
.ws94{word-spacing:-1.333333pt;}
.wsbd{word-spacing:-1.322667pt;}
.ws52{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.226667pt;}
.ws66{word-spacing:-1.173333pt;}
.wsc2{word-spacing:-1.152000pt;}
.ws2a{word-spacing:-1.120000pt;}
.ws71{word-spacing:-1.066667pt;}
.ws6e{word-spacing:-1.013333pt;}
.ws28{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.906667pt;}
.wsbc{word-spacing:-0.896000pt;}
.ws4f{word-spacing:-0.853333pt;}
.wsc0{word-spacing:-0.810667pt;}
.ws20{word-spacing:-0.800000pt;}
.ws77{word-spacing:-0.768000pt;}
.ws68{word-spacing:-0.746667pt;}
.wsbf{word-spacing:-0.725333pt;}
.ws41{word-spacing:-0.693333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.586667pt;}
.ws36{word-spacing:-0.533333pt;}
.ws65{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.426667pt;}
.wsab{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws24{word-spacing:-0.320000pt;}
.wsc3{word-spacing:-0.298667pt;}
.ws12{word-spacing:-0.266667pt;}
.wsb5{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.213333pt;}
.wsb6{word-spacing:-0.170667pt;}
.wse{word-spacing:-0.160000pt;}
.ws47{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106667pt;}
.wsb0{word-spacing:-0.085333pt;}
.wsa9{word-spacing:-0.053333pt;}
.wsc1{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.042667pt;}
.ws3f{word-spacing:0.053333pt;}
.ws7e{word-spacing:0.106667pt;}
.ws2f{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.213333pt;}
.ws8{word-spacing:0.266667pt;}
.ws4a{word-spacing:0.298667pt;}
.ws6a{word-spacing:0.373333pt;}
.ws19{word-spacing:0.426667pt;}
.wsb4{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.533333pt;}
.ws85{word-spacing:0.640000pt;}
.ws42{word-spacing:0.693333pt;}
.ws35{word-spacing:0.800000pt;}
.ws84{word-spacing:0.906667pt;}
.ws7f{word-spacing:0.960000pt;}
.ws44{word-spacing:1.013333pt;}
.wsad{word-spacing:1.152000pt;}
.ws45{word-spacing:1.280000pt;}
.ws93{word-spacing:1.386667pt;}
.ws55{word-spacing:1.536000pt;}
.ws63{word-spacing:1.546667pt;}
.wsb3{word-spacing:1.578667pt;}
.ws98{word-spacing:1.600000pt;}
.ws61{word-spacing:1.653333pt;}
.ws8e{word-spacing:1.664000pt;}
.ws56{word-spacing:1.749333pt;}
.ws8d{word-spacing:1.813333pt;}
.ws69{word-spacing:1.866667pt;}
.ws5f{word-spacing:1.920000pt;}
.wsc4{word-spacing:2.048000pt;}
.ws8a{word-spacing:2.080000pt;}
.ws82{word-spacing:2.133333pt;}
.wsc9{word-spacing:2.176000pt;}
.ws83{word-spacing:2.186667pt;}
.ws49{word-spacing:2.261333pt;}
.wsb{word-spacing:2.346667pt;}
.ws51{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.506667pt;}
.ws9a{word-spacing:2.560000pt;}
.ws80{word-spacing:2.613333pt;}
.ws99{word-spacing:2.666667pt;}
.ws87{word-spacing:2.720000pt;}
.wsc7{word-spacing:2.730667pt;}
.ws96{word-spacing:2.773333pt;}
.ws21{word-spacing:2.880000pt;}
.wscb{word-spacing:2.933333pt;}
.ws60{word-spacing:2.986667pt;}
.ws62{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.093333pt;}
.ws1c{word-spacing:3.146667pt;}
.wsc5{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.253333pt;}
.ws70{word-spacing:3.306667pt;}
.ws3c{word-spacing:3.413333pt;}
.ws22{word-spacing:3.466667pt;}
.ws46{word-spacing:3.498667pt;}
.ws48{word-spacing:3.541333pt;}
.ws43{word-spacing:3.573333pt;}
.ws64{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.786667pt;}
.ws2e{word-spacing:3.840000pt;}
.ws86{word-spacing:3.946667pt;}
.ws10{word-spacing:4.000000pt;}
.ws39{word-spacing:4.053333pt;}
.ws34{word-spacing:4.106667pt;}
.ws1e{word-spacing:4.213333pt;}
.ws97{word-spacing:4.266667pt;}
.wsa{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.wsa8{word-spacing:4.906667pt;}
.ws88{word-spacing:5.120000pt;}
.ws8c{word-spacing:5.440000pt;}
.ws67{word-spacing:5.546667pt;}
.ws23{word-spacing:5.813333pt;}
.ws72{word-spacing:6.453333pt;}
.ws95{word-spacing:6.880000pt;}
.ws11{word-spacing:7.253333pt;}
._e{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._f{margin-left:-8.332800pt;}
._5{margin-left:-6.773333pt;}
._11{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._7{margin-left:-3.885867pt;}
._6{margin-left:-2.986667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._2{width:1.125333pt;}
._8{width:2.554667pt;}
._a{width:3.733333pt;}
._9{width:4.800000pt;}
._c{width:5.920000pt;}
._b{width:7.040000pt;}
._d{width:8.106667pt;}
._3{width:52.901168pt;}
._12{width:63.146667pt;}
._13{width:80.938667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.yef{bottom:73.714533pt;}
.yf2{bottom:74.186933pt;}
.y9f{bottom:74.271067pt;}
.ya3{bottom:74.449600pt;}
.y5f{bottom:74.462533pt;}
.ya6{bottom:74.564933pt;}
.y75{bottom:74.595867pt;}
.ya4{bottom:74.858800pt;}
.y9c{bottom:76.595867pt;}
.y1a{bottom:78.248400pt;}
.y170{bottom:79.219467pt;}
.y1b1{bottom:84.678667pt;}
.yee{bottom:87.709200pt;}
.yf1{bottom:88.181600pt;}
.y9e{bottom:88.265733pt;}
.ya2{bottom:88.444267pt;}
.ya5{bottom:88.559600pt;}
.y13a{bottom:90.342533pt;}
.y7c{bottom:90.462533pt;}
.y74{bottom:90.595867pt;}
.y19{bottom:91.576000pt;}
.y16f{bottom:92.552800pt;}
.y9b{bottom:92.595867pt;}
.yc2{bottom:92.721867pt;}
.yd4{bottom:95.471333pt;}
.y1b0{bottom:98.012000pt;}
.y9d{bottom:102.260400pt;}
.ya1{bottom:102.438933pt;}
.y16e{bottom:105.886133pt;}
.y139{bottom:105.982533pt;}
.y5e{bottom:106.102533pt;}
.yf3{bottom:106.235867pt;}
.y7b{bottom:106.462533pt;}
.y73{bottom:106.595867pt;}
.y9a{bottom:108.595867pt;}
.yc1{bottom:108.721867pt;}
.yd3{bottom:108.804667pt;}
.y1af{bottom:111.345333pt;}
.ya0{bottom:116.433600pt;}
.y16d{bottom:119.219467pt;}
.yaa{bottom:120.489733pt;}
.yd2{bottom:122.138000pt;}
.y7a{bottom:122.462533pt;}
.y72{bottom:122.595867pt;}
.y99{bottom:124.595867pt;}
.y1ae{bottom:124.678667pt;}
.yc0{bottom:124.721867pt;}
.y16c{bottom:132.552800pt;}
.ya9{bottom:134.484400pt;}
.yd1{bottom:135.471333pt;}
.y5d{bottom:137.982533pt;}
.y1ad{bottom:138.012000pt;}
.y138{bottom:138.342533pt;}
.y79{bottom:138.462533pt;}
.y71{bottom:138.595867pt;}
.y98{bottom:140.595867pt;}
.ybf{bottom:140.721867pt;}
.y16b{bottom:145.886133pt;}
.ya8{bottom:148.479067pt;}
.yd0{bottom:148.804667pt;}
.y1ac{bottom:151.345333pt;}
.y28{bottom:154.023600pt;}
.y137{bottom:154.342533pt;}
.y78{bottom:154.462533pt;}
.y70{bottom:154.595867pt;}
.y97{bottom:156.595867pt;}
.ybe{bottom:156.721867pt;}
.y16a{bottom:159.219467pt;}
.ycf{bottom:162.138000pt;}
.y1ab{bottom:164.678667pt;}
.y27{bottom:170.023600pt;}
.y136{bottom:170.342533pt;}
.y77{bottom:170.462533pt;}
.y6f{bottom:170.595867pt;}
.y169{bottom:172.552800pt;}
.y96{bottom:172.595867pt;}
.ybd{bottom:172.721867pt;}
.yce{bottom:175.471333pt;}
.y1aa{bottom:178.012000pt;}
.y168{bottom:185.886133pt;}
.y26{bottom:186.023600pt;}
.y135{bottom:186.342533pt;}
.y5c{bottom:186.462533pt;}
.y6e{bottom:186.595867pt;}
.y95{bottom:188.595867pt;}
.ybc{bottom:188.721867pt;}
.ycd{bottom:188.804667pt;}
.y1a9{bottom:191.345333pt;}
.y167{bottom:199.219467pt;}
.y25{bottom:202.023600pt;}
.y134{bottom:202.342533pt;}
.y5b{bottom:202.462533pt;}
.y6d{bottom:202.595867pt;}
.y94{bottom:204.595867pt;}
.y1a8{bottom:204.678667pt;}
.ybb{bottom:204.721867pt;}
.y166{bottom:212.552800pt;}
.y1a7{bottom:218.012000pt;}
.y24{bottom:218.023600pt;}
.y133{bottom:218.342533pt;}
.y5a{bottom:218.462533pt;}
.y6c{bottom:218.595867pt;}
.y93{bottom:220.595867pt;}
.yba{bottom:220.721867pt;}
.y165{bottom:225.886133pt;}
.y1a6{bottom:231.345333pt;}
.y23{bottom:234.023600pt;}
.y132{bottom:234.342533pt;}
.y59{bottom:234.462533pt;}
.y6b{bottom:234.595867pt;}
.y92{bottom:236.595867pt;}
.yb9{bottom:236.721867pt;}
.y164{bottom:239.219467pt;}
.y1a5{bottom:244.678667pt;}
.y22{bottom:250.023600pt;}
.ycc{bottom:250.235867pt;}
.y131{bottom:250.342533pt;}
.y58{bottom:250.462533pt;}
.y6a{bottom:250.595867pt;}
.y163{bottom:252.552800pt;}
.y91{bottom:252.595867pt;}
.yb8{bottom:252.721867pt;}
.y1a4{bottom:258.012000pt;}
.y162{bottom:265.886133pt;}
.y130{bottom:265.982533pt;}
.y21{bottom:266.023600pt;}
.y57{bottom:266.462533pt;}
.y69{bottom:266.595867pt;}
.y90{bottom:268.595867pt;}
.yb7{bottom:268.721867pt;}
.y1a3{bottom:271.345333pt;}
.y161{bottom:279.219467pt;}
.y20{bottom:282.023600pt;}
.y56{bottom:282.462533pt;}
.y68{bottom:282.595867pt;}
.y8f{bottom:284.595867pt;}
.y1a2{bottom:284.678667pt;}
.yb6{bottom:284.721867pt;}
.y160{bottom:292.552800pt;}
.y1a1{bottom:298.012000pt;}
.y1f{bottom:298.023600pt;}
.y12f{bottom:298.342533pt;}
.y55{bottom:298.462533pt;}
.y67{bottom:298.595867pt;}
.y8e{bottom:300.595867pt;}
.yb5{bottom:300.721867pt;}
.y15f{bottom:305.886133pt;}
.y1a0{bottom:311.345333pt;}
.y1e{bottom:314.023600pt;}
.y12e{bottom:314.342533pt;}
.y54{bottom:314.462533pt;}
.y66{bottom:314.595867pt;}
.y8d{bottom:316.595867pt;}
.yb4{bottom:316.721867pt;}
.y15e{bottom:319.219467pt;}
.y19f{bottom:324.678667pt;}
.y1d{bottom:330.023600pt;}
.y12d{bottom:330.342533pt;}
.y53{bottom:330.462533pt;}
.y65{bottom:330.595867pt;}
.y15d{bottom:332.552800pt;}
.y8c{bottom:332.595867pt;}
.yb3{bottom:332.721867pt;}
.y19e{bottom:338.012000pt;}
.y15c{bottom:345.886133pt;}
.y1c{bottom:346.023600pt;}
.y12c{bottom:346.342533pt;}
.y52{bottom:346.462533pt;}
.y64{bottom:346.595867pt;}
.y8b{bottom:348.595867pt;}
.yb2{bottom:348.729200pt;}
.y19d{bottom:351.345333pt;}
.y15b{bottom:359.219467pt;}
.y2a{bottom:362.023600pt;}
.y12b{bottom:362.342533pt;}
.y51{bottom:362.462533pt;}
.y63{bottom:362.595867pt;}
.y8a{bottom:364.595867pt;}
.y19c{bottom:364.678667pt;}
.yb1{bottom:364.729200pt;}
.y1cb{bottom:365.255200pt;}
.y15a{bottom:372.552800pt;}
.y1b{bottom:377.663600pt;}
.y19b{bottom:378.012000pt;}
.y29{bottom:378.023600pt;}
.y12a{bottom:378.342533pt;}
.y50{bottom:378.462533pt;}
.y62{bottom:378.595867pt;}
.y89{bottom:380.595867pt;}
.yb0{bottom:380.729200pt;}
.y1ca{bottom:381.255200pt;}
.y159{bottom:385.886133pt;}
.y19a{bottom:391.345333pt;}
.y129{bottom:394.342533pt;}
.y4f{bottom:394.462533pt;}
.y61{bottom:394.595867pt;}
.y88{bottom:396.595867pt;}
.yaf{bottom:396.729200pt;}
.y1c9{bottom:397.255200pt;}
.y158{bottom:399.219467pt;}
.y199{bottom:404.678667pt;}
.y128{bottom:410.342533pt;}
.y4e{bottom:410.462533pt;}
.y157{bottom:412.552800pt;}
.y87{bottom:412.595867pt;}
.yae{bottom:412.729200pt;}
.y1c8{bottom:413.255200pt;}
.y198{bottom:418.012000pt;}
.y156{bottom:425.886133pt;}
.y60{bottom:426.235867pt;}
.y127{bottom:426.342533pt;}
.y4d{bottom:426.462533pt;}
.y112{bottom:426.475867pt;}
.y86{bottom:428.595867pt;}
.y1c7{bottom:429.255200pt;}
.y197{bottom:431.345333pt;}
.y155{bottom:439.219467pt;}
.y126{bottom:441.982533pt;}
.y4c{bottom:442.462533pt;}
.y111{bottom:442.475867pt;}
.yad{bottom:442.595867pt;}
.y18{bottom:442.718667pt;}
.y85{bottom:444.609200pt;}
.y196{bottom:444.678667pt;}
.y154{bottom:452.552800pt;}
.y195{bottom:458.012000pt;}
.yac{bottom:458.235867pt;}
.y4b{bottom:458.462533pt;}
.y110{bottom:458.475867pt;}
.y17{bottom:458.723733pt;}
.y84{bottom:460.609200pt;}
.y1c6{bottom:461.255200pt;}
.y153{bottom:465.886133pt;}
.y194{bottom:471.345333pt;}
.y125{bottom:474.342533pt;}
.y4a{bottom:474.462533pt;}
.y10f{bottom:474.475867pt;}
.y83{bottom:476.609200pt;}
.y152{bottom:479.219467pt;}
.y16{bottom:483.030400pt;}
.y193{bottom:484.678667pt;}
.y124{bottom:490.342533pt;}
.y49{bottom:490.462533pt;}
.y10e{bottom:490.475867pt;}
.y151{bottom:492.552800pt;}
.y82{bottom:492.609200pt;}
.y1c5{bottom:493.255200pt;}
.y192{bottom:498.012000pt;}
.y15{bottom:499.030400pt;}
.y150{bottom:505.886133pt;}
.y123{bottom:506.342533pt;}
.y48{bottom:506.462533pt;}
.y10d{bottom:506.475867pt;}
.y81{bottom:508.609200pt;}
.y1c4{bottom:509.255200pt;}
.y191{bottom:511.345333pt;}
.y14{bottom:515.030400pt;}
.y14f{bottom:519.219467pt;}
.y122{bottom:522.342533pt;}
.y47{bottom:522.462533pt;}
.y10c{bottom:522.475867pt;}
.y80{bottom:524.609200pt;}
.y190{bottom:524.678667pt;}
.y1c3{bottom:525.255200pt;}
.y13{bottom:531.030400pt;}
.y14e{bottom:532.552800pt;}
.y18f{bottom:538.012000pt;}
.yed{bottom:538.102533pt;}
.y121{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.y10b{bottom:538.475867pt;}
.y1c2{bottom:541.257200pt;}
.y14d{bottom:545.886133pt;}
.y12{bottom:547.030400pt;}
.y18e{bottom:551.345333pt;}
.y120{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.y7f{bottom:554.475867pt;}
.y1c1{bottom:557.257200pt;}
.y14c{bottom:559.219467pt;}
.y11{bottom:563.030400pt;}
.y18d{bottom:564.678667pt;}
.yec{bottom:569.982533pt;}
.y7e{bottom:570.115867pt;}
.y11f{bottom:570.342533pt;}
.y44{bottom:570.462533pt;}
.yeb{bottom:570.464533pt;}
.y10a{bottom:570.475867pt;}
.y14b{bottom:572.552800pt;}
.y18c{bottom:578.012000pt;}
.y10{bottom:579.030400pt;}
.y14a{bottom:585.886133pt;}
.y11e{bottom:586.342533pt;}
.y43{bottom:586.462533pt;}
.yea{bottom:586.464533pt;}
.y109{bottom:586.475867pt;}
.y1c0{bottom:589.257200pt;}
.y18b{bottom:591.345333pt;}
.yf{bottom:595.030400pt;}
.y149{bottom:599.219467pt;}
.y7d{bottom:601.982533pt;}
.y11d{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.ye9{bottom:602.464533pt;}
.y108{bottom:602.475867pt;}
.y18a{bottom:604.678667pt;}
.ye{bottom:611.030400pt;}
.y148{bottom:612.552800pt;}
.y189{bottom:618.012000pt;}
.y11c{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.ye8{bottom:618.464533pt;}
.y107{bottom:618.475867pt;}
.y1bf{bottom:621.257200pt;}
.y147{bottom:625.886133pt;}
.y188{bottom:631.345333pt;}
.y11b{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.ye7{bottom:634.464533pt;}
.y106{bottom:634.475867pt;}
.y1be{bottom:637.257200pt;}
.y146{bottom:639.219467pt;}
.y187{bottom:644.678667pt;}
.y11a{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.ye6{bottom:650.464533pt;}
.y105{bottom:650.475867pt;}
.yd{bottom:651.170933pt;}
.y145{bottom:652.552800pt;}
.y186{bottom:658.012000pt;}
.yc{bottom:662.238267pt;}
.y144{bottom:665.886133pt;}
.y119{bottom:666.342533pt;}
.y3e{bottom:666.462533pt;}
.ye5{bottom:666.464533pt;}
.y104{bottom:666.475867pt;}
.y1bd{bottom:669.257200pt;}
.y185{bottom:671.345333pt;}
.y143{bottom:679.219467pt;}
.y118{bottom:682.342533pt;}
.y3d{bottom:682.462533pt;}
.ye4{bottom:682.464533pt;}
.y103{bottom:682.475867pt;}
.y184{bottom:684.678667pt;}
.y1bc{bottom:685.257200pt;}
.yb{bottom:690.429867pt;}
.y142{bottom:692.552800pt;}
.y183{bottom:698.012000pt;}
.y117{bottom:698.342533pt;}
.y3c{bottom:698.462533pt;}
.ye3{bottom:698.464533pt;}
.y102{bottom:698.475867pt;}
.ya{bottom:702.429867pt;}
.y141{bottom:705.886133pt;}
.y182{bottom:711.345333pt;}
.y116{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.ye2{bottom:714.464533pt;}
.y101{bottom:714.475867pt;}
.y1bb{bottom:717.257200pt;}
.y140{bottom:719.219467pt;}
.y181{bottom:724.678667pt;}
.y115{bottom:730.342533pt;}
.y3a{bottom:730.462533pt;}
.ye1{bottom:730.464533pt;}
.y100{bottom:730.475867pt;}
.y8{bottom:731.252400pt;}
.y13f{bottom:732.552800pt;}
.y1ba{bottom:733.257200pt;}
.y180{bottom:738.012000pt;}
.y114{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.ye0{bottom:746.464533pt;}
.yff{bottom:746.475867pt;}
.y1b9{bottom:749.257200pt;}
.y17f{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y13e{bottom:761.995867pt;}
.y38{bottom:762.462533pt;}
.ydf{bottom:762.464533pt;}
.yfe{bottom:762.475867pt;}
.y17e{bottom:764.678667pt;}
.y113{bottom:777.982533pt;}
.y17d{bottom:778.012000pt;}
.y37{bottom:778.462533pt;}
.yde{bottom:778.464533pt;}
.yfd{bottom:778.475867pt;}
.y1b8{bottom:781.257200pt;}
.y17c{bottom:791.345333pt;}
.y36{bottom:794.462533pt;}
.ydd{bottom:794.464533pt;}
.ycb{bottom:794.468533pt;}
.yfc{bottom:794.475867pt;}
.y1b7{bottom:797.257200pt;}
.y6{bottom:797.872800pt;}
.y17b{bottom:804.678667pt;}
.y35{bottom:810.462533pt;}
.ydc{bottom:810.464533pt;}
.yca{bottom:810.468533pt;}
.yfb{bottom:810.475867pt;}
.y1b6{bottom:813.257200pt;}
.y17a{bottom:818.012000pt;}
.y13d{bottom:826.115867pt;}
.y34{bottom:826.462533pt;}
.ydb{bottom:826.464533pt;}
.yc9{bottom:826.468533pt;}
.yfa{bottom:826.475867pt;}
.y1b5{bottom:829.257200pt;}
.y5{bottom:830.254267pt;}
.y179{bottom:831.345333pt;}
.y33{bottom:842.462533pt;}
.yda{bottom:842.464533pt;}
.yc8{bottom:842.468533pt;}
.yf9{bottom:842.475867pt;}
.y178{bottom:844.678667pt;}
.y1b4{bottom:845.257200pt;}
.y177{bottom:858.012000pt;}
.y13c{bottom:858.115867pt;}
.y32{bottom:858.462533pt;}
.yd9{bottom:858.464533pt;}
.yc7{bottom:858.468533pt;}
.yf8{bottom:858.475867pt;}
.y1b3{bottom:861.257200pt;}
.y4{bottom:862.663867pt;}
.y176{bottom:871.345333pt;}
.y31{bottom:874.462533pt;}
.yd8{bottom:874.464533pt;}
.yc6{bottom:874.468533pt;}
.yf7{bottom:874.475867pt;}
.y175{bottom:884.678667pt;}
.y30{bottom:890.462533pt;}
.yd7{bottom:890.464533pt;}
.yc5{bottom:890.468533pt;}
.yf6{bottom:890.475867pt;}
.y1b2{bottom:892.897200pt;}
.y3{bottom:895.045333pt;}
.y174{bottom:898.012000pt;}
.y2f{bottom:906.462533pt;}
.yc4{bottom:906.468533pt;}
.yf5{bottom:906.475867pt;}
.y173{bottom:911.345333pt;}
.yd6{bottom:922.104533pt;}
.y13b{bottom:922.115867pt;}
.y2e{bottom:922.462533pt;}
.yc3{bottom:922.468533pt;}
.yf4{bottom:922.475867pt;}
.y172{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y171{bottom:1006.590133pt;}
.y76{bottom:1006.594400pt;}
.yd5{bottom:1006.596667pt;}
.ya7{bottom:1006.597067pt;}
.yf0{bottom:1006.599867pt;}
.yab{bottom:1006.601733pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:16.977598pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.h7{height:29.160156pt;}
.hc{height:29.169756pt;}
.hf{height:31.062500pt;}
.h10{height:31.083333pt;}
.h14{height:37.031250pt;}
.h13{height:37.437500pt;}
.hd{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.he{height:46.796875pt;}
.h18{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:52.351911pt;}
.h15{height:52.375911pt;}
.h16{height:52.381245pt;}
.h17{height:52.397245pt;}
.h11{height:52.405245pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:62.740133pt;}
.xc{left:68.031467pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4{left:94.488133pt;}
.x19{left:96.382533pt;}
.xd{left:98.284800pt;}
.x23{left:109.606533pt;}
.x3{left:111.491467pt;}
.x7{left:117.170133pt;}
.xe{left:128.671467pt;}
.x1a{left:165.702533pt;}
.x20{left:169.004800pt;}
.x5{left:170.077867pt;}
.x6{left:189.223467pt;}
.xb{left:404.481333pt;}
.xf{left:406.324800pt;}
.x13{left:425.209200pt;}
.x9{left:427.103467pt;}
.x22{left:428.976533pt;}
.x10{left:436.564800pt;}
.x24{left:447.878533pt;}
.x1b{left:451.653600pt;}
.x14{left:455.430667pt;}
.x8{left:457.330133pt;}
.x16{left:463.137333pt;}
.x17{left:487.297333pt;}
.x21{left:510.938133pt;}
.x1c{left:515.050533pt;}
.x15{left:544.790667pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:641.526800pt;}
.x11{left:647.459200pt;}
.x1e{left:661.211867pt;}
.x18{left:666.356800pt;}
}




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