
    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_489fd3c2b192cf6aafc73af7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_7c37cc430a3482b437872399.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_8dd4103d702dcea3fc6d4e71.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760000;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_b61a3205ffc942ca4b531a99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_8e04ace10ebb60f096e9e609.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.743000;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_73ba01710882eb900c78c991.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_73ba01710882eb900c78c991.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.009000;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_9486e92848eedc82f8dfd777.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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:-16.800000px;}
.v5{vertical-align:-13.439400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.091400px;}
.v6{vertical-align:18.000000px;}
.v1{vertical-align:20.160000px;}
.v3{vertical-align:22.152600px;}
.ls7{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.425000px;}
.ls5{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.800000px;}
.lsc{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.464136px;}
.ls9{letter-spacing:36.000000px;}
.ls10{letter-spacing:169.845600px;}
.lsa{letter-spacing:1080.718800px;}
.lsf{letter-spacing:1105.373400px;}
.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:-17.853624px;}
.ws4{word-spacing:-15.675000px;}
.ws18{word-spacing:-15.300000px;}
.ws3{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.700000px;}
.ws2{word-spacing:-9.750000px;}
.ws74{word-spacing:-7.800000px;}
.ws58{word-spacing:-7.500000px;}
.ws13{word-spacing:-7.416000px;}
.ws5b{word-spacing:-6.360000px;}
.ws96{word-spacing:-6.240000px;}
.ws9e{word-spacing:-6.000000px;}
.wsf{word-spacing:-5.616000px;}
.wsc{word-spacing:-4.752000px;}
.ws11{word-spacing:-4.392000px;}
.wscd{word-spacing:-4.320000px;}
.wsa{word-spacing:-4.176000px;}
.ws4f{word-spacing:-3.480000px;}
.wsc1{word-spacing:-3.360000px;}
.ws57{word-spacing:-3.240000px;}
.ws86{word-spacing:-3.000000px;}
.wsae{word-spacing:-2.760000px;}
.ws45{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.640000px;}
.wsa4{word-spacing:-2.580000px;}
.wsa5{word-spacing:-2.520000px;}
.ws3a{word-spacing:-2.460000px;}
.ws82{word-spacing:-2.400000px;}
.ws5c{word-spacing:-2.340000px;}
.wsdf{word-spacing:-2.304000px;}
.ws9c{word-spacing:-2.280000px;}
.wsd9{word-spacing:-2.268000px;}
.ws24{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.040000px;}
.wse5{word-spacing:-2.016000px;}
.ws80{word-spacing:-1.920000px;}
.ws35{word-spacing:-1.860000px;}
.ws23{word-spacing:-1.800000px;}
.wsd5{word-spacing:-1.776000px;}
.wsc6{word-spacing:-1.680000px;}
.ws9{word-spacing:-1.512000px;}
.ws5{word-spacing:-1.500000px;}
.wsdc{word-spacing:-1.488000px;}
.ws50{word-spacing:-1.440000px;}
.ws32{word-spacing:-1.380000px;}
.ws49{word-spacing:-1.260000px;}
.wse9{word-spacing:-1.248000px;}
.ws36{word-spacing:-1.200000px;}
.wsb4{word-spacing:-1.140000px;}
.wsea{word-spacing:-0.864000px;}
.wsa8{word-spacing:-0.660000px;}
.wsf5{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.576000px;}
.wsbe{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.420000px;}
.ws5e{word-spacing:-0.300000px;}
.ws47{word-spacing:-0.240000px;}
.wsd4{word-spacing:-0.216000px;}
.wsc5{word-spacing:-0.120000px;}
.ws6{word-spacing:0.000000px;}
.ws48{word-spacing:0.120000px;}
.wse2{word-spacing:0.144000px;}
.ws6e{word-spacing:0.240000px;}
.ws34{word-spacing:0.300000px;}
.wsec{word-spacing:0.432000px;}
.wsf6{word-spacing:0.576000px;}
.ws65{word-spacing:0.600000px;}
.wsdd{word-spacing:0.624000px;}
.ws1b{word-spacing:0.660000px;}
.wsee{word-spacing:0.672000px;}
.wsf1{word-spacing:0.768000px;}
.ws4e{word-spacing:0.780000px;}
.ws14{word-spacing:0.864000px;}
.ws7d{word-spacing:0.900000px;}
.ws77{word-spacing:0.960000px;}
.wsbb{word-spacing:1.200000px;}
.ws27{word-spacing:1.260000px;}
.ws30{word-spacing:1.320000px;}
.wse1{word-spacing:1.344000px;}
.wse4{word-spacing:1.392000px;}
.ws76{word-spacing:1.440000px;}
.wsaf{word-spacing:1.560000px;}
.ws8c{word-spacing:1.620000px;}
.ws17{word-spacing:1.728000px;}
.ws75{word-spacing:1.800000px;}
.ws33{word-spacing:2.040000px;}
.ws1c{word-spacing:2.160000px;}
.wse8{word-spacing:2.208000px;}
.ws6c{word-spacing:2.220000px;}
.ws39{word-spacing:2.280000px;}
.ws44{word-spacing:2.400000px;}
.wsa7{word-spacing:2.460000px;}
.ws9b{word-spacing:2.520000px;}
.wsef{word-spacing:2.544000px;}
.wsab{word-spacing:2.580000px;}
.ws3c{word-spacing:2.640000px;}
.ws41{word-spacing:2.700000px;}
.wsf0{word-spacing:2.736000px;}
.wsd8{word-spacing:2.754000px;}
.ws54{word-spacing:2.760000px;}
.ws94{word-spacing:2.880000px;}
.ws68{word-spacing:2.940000px;}
.wsb{word-spacing:2.952000px;}
.ws88{word-spacing:3.180000px;}
.wsc8{word-spacing:3.240000px;}
.ws93{word-spacing:3.360000px;}
.wse6{word-spacing:3.456000px;}
.ws28{word-spacing:3.480000px;}
.ws92{word-spacing:3.540000px;}
.wsd2{word-spacing:3.600000px;}
.ws8{word-spacing:3.751344px;}
.ws63{word-spacing:3.960000px;}
.ws83{word-spacing:4.020000px;}
.wse7{word-spacing:4.032000px;}
.wsa3{word-spacing:4.080000px;}
.ws3f{word-spacing:4.320000px;}
.ws72{word-spacing:4.380000px;}
.wsf8{word-spacing:4.464000px;}
.ws37{word-spacing:4.740000px;}
.wsac{word-spacing:4.800000px;}
.ws89{word-spacing:4.920000px;}
.ws6f{word-spacing:4.980000px;}
.wsed{word-spacing:5.136000px;}
.wsc7{word-spacing:5.220000px;}
.ws62{word-spacing:5.280000px;}
.wsf7{word-spacing:5.328000px;}
.ws70{word-spacing:5.340000px;}
.ws59{word-spacing:5.400000px;}
.ws29{word-spacing:5.460000px;}
.ws52{word-spacing:5.520000px;}
.ws1d{word-spacing:5.700000px;}
.ws60{word-spacing:5.820000px;}
.wse{word-spacing:5.832000px;}
.wsda{word-spacing:5.856000px;}
.ws66{word-spacing:6.000000px;}
.wsa1{word-spacing:6.120000px;}
.ws87{word-spacing:6.180000px;}
.wscb{word-spacing:6.240000px;}
.ws21{word-spacing:6.420000px;}
.ws8d{word-spacing:6.540000px;}
.ws51{word-spacing:6.720000px;}
.ws6b{word-spacing:6.840000px;}
.wsa2{word-spacing:6.900000px;}
.wse3{word-spacing:6.960000px;}
.ws10{word-spacing:6.984000px;}
.ws8a{word-spacing:7.020000px;}
.ws7c{word-spacing:7.080000px;}
.ws78{word-spacing:7.140000px;}
.wsf2{word-spacing:7.296000px;}
.wsc0{word-spacing:7.320000px;}
.ws43{word-spacing:7.380000px;}
.ws2d{word-spacing:7.440000px;}
.wsa0{word-spacing:7.560000px;}
.wsde{word-spacing:7.632000px;}
.ws2b{word-spacing:7.680000px;}
.ws1e{word-spacing:7.740000px;}
.ws6a{word-spacing:7.860000px;}
.ws9a{word-spacing:7.920000px;}
.ws7f{word-spacing:8.220000px;}
.ws2e{word-spacing:8.340000px;}
.wsb6{word-spacing:8.400000px;}
.ws25{word-spacing:8.460000px;}
.ws12{word-spacing:8.568000px;}
.ws5f{word-spacing:8.580000px;}
.ws4b{word-spacing:8.640000px;}
.wsb9{word-spacing:8.760000px;}
.ws8f{word-spacing:8.880000px;}
.wsca{word-spacing:9.060000px;}
.wsa6{word-spacing:9.120000px;}
.ws53{word-spacing:9.240000px;}
.ws2f{word-spacing:9.300000px;}
.ws98{word-spacing:9.420000px;}
.ws46{word-spacing:9.660000px;}
.wsad{word-spacing:9.720000px;}
.ws22{word-spacing:9.780000px;}
.ws1a{word-spacing:9.900000px;}
.ws9d{word-spacing:9.960000px;}
.wsf9{word-spacing:10.224000px;}
.wsb7{word-spacing:10.260000px;}
.wscc{word-spacing:10.440000px;}
.ws97{word-spacing:10.560000px;}
.ws7a{word-spacing:10.620000px;}
.ws16{word-spacing:10.800000px;}
.ws6d{word-spacing:10.920000px;}
.wsd{word-spacing:10.944000px;}
.ws69{word-spacing:10.980000px;}
.ws2a{word-spacing:11.280000px;}
.wsba{word-spacing:11.340000px;}
.wsd7{word-spacing:11.448000px;}
.ws84{word-spacing:11.580000px;}
.ws5d{word-spacing:11.700000px;}
.wsdb{word-spacing:12.048000px;}
.ws19{word-spacing:12.060000px;}
.ws81{word-spacing:12.360000px;}
.wsf4{word-spacing:12.480000px;}
.ws42{word-spacing:12.900000px;}
.ws3b{word-spacing:13.020000px;}
.ws4a{word-spacing:13.080000px;}
.ws85{word-spacing:13.200000px;}
.ws95{word-spacing:13.260000px;}
.ws2c{word-spacing:13.440000px;}
.wsf3{word-spacing:13.536000px;}
.wsb1{word-spacing:13.560000px;}
.wsc2{word-spacing:13.620000px;}
.wseb{word-spacing:14.064000px;}
.ws40{word-spacing:14.340000px;}
.ws71{word-spacing:14.460000px;}
.wsb3{word-spacing:14.640000px;}
.ws61{word-spacing:14.940000px;}
.ws91{word-spacing:15.480000px;}
.ws67{word-spacing:15.660000px;}
.ws8b{word-spacing:15.720000px;}
.wsb2{word-spacing:16.320000px;}
.wsc9{word-spacing:16.380000px;}
.ws4d{word-spacing:16.440000px;}
.wsc3{word-spacing:16.500000px;}
.ws1f{word-spacing:16.560000px;}
.ws7b{word-spacing:16.620000px;}
.ws8e{word-spacing:16.860000px;}
.wsb8{word-spacing:16.920000px;}
.wse0{word-spacing:17.040000px;}
.wsbf{word-spacing:17.280000px;}
.ws99{word-spacing:17.580000px;}
.ws20{word-spacing:18.060000px;}
.ws55{word-spacing:18.300000px;}
.ws4c{word-spacing:18.360000px;}
.wsd1{word-spacing:18.540000px;}
.ws3e{word-spacing:19.020000px;}
.wsbd{word-spacing:19.560000px;}
.wsb5{word-spacing:20.100000px;}
.wsaa{word-spacing:20.580000px;}
.ws5a{word-spacing:21.360000px;}
.ws79{word-spacing:21.540000px;}
.wsa9{word-spacing:21.720000px;}
.wsc4{word-spacing:22.920000px;}
.ws31{word-spacing:23.580000px;}
.ws64{word-spacing:23.700000px;}
.wsd3{word-spacing:23.880000px;}
.ws90{word-spacing:24.420000px;}
.ws7e{word-spacing:25.320000px;}
.ws38{word-spacing:26.160000px;}
.ws9f{word-spacing:34.224000px;}
.wsd6{word-spacing:36.000000px;}
.wsbc{word-spacing:43.980000px;}
.ws3d{word-spacing:47.400000px;}
.wscf{word-spacing:145.296000px;}
.wsd0{word-spacing:155.280000px;}
.wsce{word-spacing:437.439000px;}
.ws73{word-spacing:1353.493200px;}
._6{margin-left:-1653.335400px;}
._a{margin-left:-25.800000px;}
._10{margin-left:-22.612344px;}
._64{margin-left:-20.064000px;}
._9{margin-left:-17.332344px;}
._e{margin-left:-14.812344px;}
._d{margin-left:-13.012344px;}
._11{margin-left:-11.880000px;}
._f{margin-left:-10.648344px;}
._2{margin-left:-9.324000px;}
._8{margin-left:-7.732344px;}
._7{margin-left:-6.660000px;}
._c{margin-left:-5.640000px;}
._3{margin-left:-4.620000px;}
._4{margin-left:-2.932344px;}
._0{margin-left:-1.687656px;}
._1{width:1.844411px;}
._63{width:3.316344px;}
._b{width:4.695312px;}
._62{width:5.856000px;}
._5d{width:7.488000px;}
._5f{width:8.832000px;}
._5{width:10.800000px;}
._5b{width:12.144000px;}
._5e{width:14.400000px;}
._60{width:16.656000px;}
._61{width:17.856000px;}
._5c{width:19.488000px;}
._38{width:36.000000px;}
._17{width:42.000000px;}
._5a{width:71.997600px;}
._54{width:167.258400px;}
._52{width:181.488000px;}
._53{width:196.752000px;}
._56{width:199.444344px;}
._55{width:229.392000px;}
._57{width:254.736000px;}
._58{width:318.096000px;}
._34{width:362.448000px;}
._33{width:381.648000px;}
._48{width:412.896000px;}
._51{width:414.912000px;}
._59{width:423.792000px;}
._3b{width:454.896000px;}
._3a{width:474.096000px;}
._4c{width:486.576000px;}
._37{width:510.576000px;}
._47{width:530.568000px;}
._39{width:556.080000px;}
._36{width:572.064000px;}
._13{width:576.688800px;}
._3d{width:584.064000px;}
._50{width:586.704000px;}
._4b{width:596.356344px;}
._3f{width:608.064000px;}
._25{width:651.216000px;}
._16{width:664.224000px;}
._23{width:666.148344px;}
._14{width:697.872000px;}
._2a{width:703.207656px;}
._2e{width:725.280000px;}
._27{width:749.280000px;}
._1b{width:766.896000px;}
._1d{width:778.896000px;}
._19{width:790.896000px;}
._21{width:793.828344px;}
._31{width:802.896000px;}
._2d{width:837.000000px;}
._45{width:850.224000px;}
._44{width:879.696000px;}
._43{width:897.168000px;}
._4e{width:901.056000px;}
._26{width:902.959656px;}
._40{width:926.352000px;}
._4d{width:947.712000px;}
._49{width:950.592000px;}
._46{width:954.720000px;}
._35{width:979.471933px;}
._3e{width:1001.472000px;}
._28{width:1029.648000px;}
._15{width:1032.144000px;}
._2b{width:1043.760000px;}
._22{width:1049.088000px;}
._32{width:1061.724000px;}
._42{width:1064.832000px;}
._3c{width:1067.472000px;}
._4a{width:1070.112000px;}
._12{width:1072.896000px;}
._24{width:1088.304000px;}
._4f{width:1091.472000px;}
._41{width:1205.760000px;}
._29{width:1219.488000px;}
._30{width:1336.704000px;}
._1f{width:1338.868344px;}
._20{width:1346.884344px;}
._1a{width:1355.184000px;}
._1c{width:1379.184000px;}
._18{width:1403.184000px;}
._1e{width:1435.200000px;}
._2f{width:1449.456000px;}
._2c{width:1450.704000px;}
.fc3{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:6.000000px;}
.fsd{font-size:31.200000px;}
.fs3{font-size:31.261200px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs2{font-size:44.412000px;}
.fs7{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:214.062000px;}
.y0{bottom:0.000000px;}
.ya{bottom:11.833200px;}
.yc{bottom:26.197950px;}
.yc7{bottom:86.678250px;}
.y33{bottom:93.260250px;}
.y105{bottom:97.558050px;}
.y72{bottom:97.992900px;}
.y106{bottom:98.008050px;}
.ya7{bottom:99.117900px;}
.yc6{bottom:102.428250px;}
.y116{bottom:103.421250px;}
.y14d{bottom:107.112600px;}
.y32{bottom:109.757250px;}
.y104{bottom:113.308050px;}
.y71{bottom:113.742900px;}
.ya6{bottom:114.867900px;}
.y8{bottom:116.923050px;}
.y14c{bottom:118.035600px;}
.yc5{bottom:118.178250px;}
.y115{bottom:119.918250px;}
.y31{bottom:126.254250px;}
.y103{bottom:129.058050px;}
.y70{bottom:129.492900px;}
.y7{bottom:129.667050px;}
.y1{bottom:130.262700px;}
.ya5{bottom:130.617900px;}
.y14b{bottom:132.279600px;}
.yc4{bottom:133.928250px;}
.y114{bottom:136.415250px;}
.y6{bottom:142.411050px;}
.y30{bottom:142.751250px;}
.y102{bottom:144.808050px;}
.y6f{bottom:145.242900px;}
.ya4{bottom:146.367900px;}
.yc3{bottom:149.678250px;}
.y5{bottom:155.155050px;}
.y2f{bottom:159.248250px;}
.y101{bottom:160.558050px;}
.y113{bottom:160.790250px;}
.y6e{bottom:160.992900px;}
.y14a{bottom:161.907600px;}
.ya3{bottom:162.117900px;}
.yc2{bottom:165.428250px;}
.y2e{bottom:175.745250px;}
.y100{bottom:176.308050px;}
.y149{bottom:177.651600px;}
.ya2{bottom:177.867900px;}
.yc1{bottom:181.178250px;}
.y6d{bottom:184.617900px;}
.y4{bottom:191.175300px;}
.yff{bottom:192.058050px;}
.y2d{bottom:192.242250px;}
.y148{bottom:193.395600px;}
.ya1{bottom:193.617900px;}
.yc0{bottom:196.928250px;}
.y112{bottom:201.290250px;}
.y3{bottom:203.919300px;}
.yfe{bottom:207.808050px;}
.y2c{bottom:208.739250px;}
.y147{bottom:209.139600px;}
.ya0{bottom:209.367900px;}
.ybf{bottom:212.678250px;}
.y2{bottom:216.663300px;}
.y111{bottom:217.490250px;}
.yfd{bottom:223.558050px;}
.y146{bottom:224.883600px;}
.y9f{bottom:225.117900px;}
.y2b{bottom:225.236250px;}
.y6c{bottom:225.867900px;}
.ybe{bottom:228.428250px;}
.y110{bottom:233.690250px;}
.yfc{bottom:239.308050px;}
.y145{bottom:240.618600px;}
.y9e{bottom:240.867900px;}
.y6b{bottom:241.617900px;}
.ybd{bottom:244.178250px;}
.y10f{bottom:249.890250px;}
.yfb{bottom:255.058050px;}
.y9d{bottom:256.617900px;}
.y6a{bottom:257.367900px;}
.ybc{bottom:259.928250px;}
.y144{bottom:265.746600px;}
.y10e{bottom:266.090250px;}
.yfa{bottom:270.808050px;}
.y2a{bottom:272.305200px;}
.y9c{bottom:272.367900px;}
.y69{bottom:273.117900px;}
.ybb{bottom:275.678250px;}
.y10d{bottom:282.290250px;}
.yf9{bottom:286.558050px;}
.y143{bottom:287.502600px;}
.y9b{bottom:288.117900px;}
.y68{bottom:288.867900px;}
.yba{bottom:291.428250px;}
.y10c{bottom:298.490250px;}
.yf8{bottom:302.308050px;}
.y9a{bottom:303.867900px;}
.y67{bottom:304.617900px;}
.yb9{bottom:307.178250px;}
.y29{bottom:308.191200px;}
.y10b{bottom:314.690250px;}
.yc8{bottom:315.053250px;}
.y142{bottom:315.258600px;}
.yf7{bottom:318.058050px;}
.y99{bottom:319.617900px;}
.y66{bottom:320.367900px;}
.yb8{bottom:322.928250px;}
.y28{bottom:329.197200px;}
.y10a{bottom:330.890250px;}
.y141{bottom:332.502600px;}
.yf6{bottom:333.808050px;}
.y98{bottom:335.367900px;}
.y65{bottom:336.117900px;}
.yb7{bottom:338.678250px;}
.yf5{bottom:349.558050px;}
.y27{bottom:350.203200px;}
.y97{bottom:351.117900px;}
.y64{bottom:351.867900px;}
.yb6{bottom:354.428250px;}
.yf4{bottom:365.308050px;}
.y63{bottom:367.617900px;}
.yb5{bottom:370.178250px;}
.y26{bottom:371.209200px;}
.y96{bottom:374.742900px;}
.y140{bottom:379.155900px;}
.yf3{bottom:381.058050px;}
.y62{bottom:383.367900px;}
.yb4{bottom:385.928250px;}
.y13f{bottom:390.078900px;}
.y25{bottom:392.215200px;}
.yf2{bottom:396.808050px;}
.y61{bottom:399.117900px;}
.yb3{bottom:401.678250px;}
.y95{bottom:411.492900px;}
.yf1{bottom:412.558050px;}
.y24{bottom:413.221200px;}
.y60{bottom:414.867900px;}
.yb2{bottom:417.428250px;}
.y13e{bottom:419.706900px;}
.y94{bottom:427.242900px;}
.yf0{bottom:428.308050px;}
.y5f{bottom:430.617900px;}
.yb1{bottom:433.178250px;}
.y23{bottom:434.227200px;}
.y13d{bottom:435.450900px;}
.y93{bottom:442.992900px;}
.yef{bottom:444.058050px;}
.y5e{bottom:446.367900px;}
.yb0{bottom:448.928250px;}
.y13c{bottom:451.194900px;}
.y22{bottom:455.233200px;}
.y92{bottom:458.742900px;}
.yee{bottom:459.808050px;}
.yaf{bottom:464.678250px;}
.y13b{bottom:466.938900px;}
.y5d{bottom:469.992900px;}
.y91{bottom:474.492900px;}
.yed{bottom:475.558050px;}
.y21{bottom:476.239200px;}
.y171{bottom:478.003050px;}
.y19b{bottom:478.545900px;}
.yae{bottom:480.428250px;}
.y13a{bottom:482.682900px;}
.y90{bottom:490.242900px;}
.yec{bottom:491.308050px;}
.y170{bottom:492.403050px;}
.yad{bottom:496.178250px;}
.y19a{bottom:496.545900px;}
.y20{bottom:497.245200px;}
.y139{bottom:498.426900px;}
.y8f{bottom:505.992900px;}
.y16f{bottom:506.803050px;}
.yeb{bottom:507.058050px;}
.y5c{bottom:511.242900px;}
.yac{bottom:511.928250px;}
.y138{bottom:514.248900px;}
.y1f{bottom:518.251200px;}
.y16e{bottom:521.203050px;}
.y8e{bottom:521.742900px;}
.yea{bottom:522.808050px;}
.y5b{bottom:526.992900px;}
.yab{bottom:527.678250px;}
.y137{bottom:529.992900px;}
.y199{bottom:532.843050px;}
.y16d{bottom:535.603050px;}
.y8d{bottom:537.492900px;}
.ye9{bottom:538.558050px;}
.y1e{bottom:539.257200px;}
.y5a{bottom:542.742900px;}
.yaa{bottom:543.428250px;}
.y136{bottom:545.736900px;}
.y198{bottom:547.087050px;}
.y16c{bottom:550.003050px;}
.ye8{bottom:554.308050px;}
.y59{bottom:558.492900px;}
.ya9{bottom:559.178250px;}
.y1d{bottom:560.263200px;}
.y8c{bottom:561.117900px;}
.y197{bottom:561.331050px;}
.y135{bottom:561.480900px;}
.y16b{bottom:564.403050px;}
.ye7{bottom:570.058050px;}
.y58{bottom:574.242900px;}
.ya8{bottom:574.928250px;}
.y196{bottom:575.575050px;}
.y134{bottom:577.224900px;}
.y16a{bottom:578.803050px;}
.y1c{bottom:581.269200px;}
.ye6{bottom:585.808050px;}
.y195{bottom:589.819050px;}
.y57{bottom:589.992900px;}
.y133{bottom:592.968900px;}
.y169{bottom:593.203050px;}
.y8b{bottom:597.867900px;}
.ye5{bottom:601.558050px;}
.y1b{bottom:602.275200px;}
.y194{bottom:604.063050px;}
.y56{bottom:605.742900px;}
.y168{bottom:607.603050px;}
.y132{bottom:608.712900px;}
.y8a{bottom:613.617900px;}
.y193{bottom:618.307050px;}
.ye4{bottom:619.840050px;}
.y55{bottom:621.492900px;}
.y167{bottom:622.003050px;}
.y1a{bottom:623.281200px;}
.y131{bottom:624.456900px;}
.y89{bottom:629.367900px;}
.y192{bottom:632.551050px;}
.y166{bottom:636.403050px;}
.y54{bottom:637.242900px;}
.ye3{bottom:637.443900px;}
.y130{bottom:640.200900px;}
.y19{bottom:644.287200px;}
.y109{bottom:646.476450px;}
.y191{bottom:646.795050px;}
.ye2{bottom:648.355050px;}
.y165{bottom:650.803050px;}
.y53{bottom:652.992900px;}
.y12f{bottom:655.944900px;}
.y108{bottom:660.720450px;}
.y190{bottom:661.039050px;}
.y164{bottom:665.203050px;}
.y18{bottom:665.293200px;}
.y52{bottom:668.742900px;}
.y12e{bottom:671.688900px;}
.y107{bottom:674.964450px;}
.y18f{bottom:675.283050px;}
.ye1{bottom:677.983050px;}
.y163{bottom:679.603050px;}
.y51{bottom:684.492900px;}
.y17{bottom:686.299200px;}
.y12d{bottom:687.432900px;}
.y18e{bottom:689.527050px;}
.y88{bottom:692.367900px;}
.ye0{bottom:693.727050px;}
.y162{bottom:694.003050px;}
.y50{bottom:700.242900px;}
.y12c{bottom:703.176900px;}
.y18d{bottom:703.771050px;}
.y16{bottom:707.305200px;}
.y87{bottom:708.117900px;}
.y161{bottom:708.403050px;}
.ydf{bottom:709.471050px;}
.y4f{bottom:715.992900px;}
.y18c{bottom:718.015050px;}
.y12b{bottom:718.998900px;}
.y160{bottom:722.947050px;}
.y86{bottom:723.867900px;}
.yde{bottom:725.215050px;}
.y4e{bottom:731.742900px;}
.y18b{bottom:732.259050px;}
.y12a{bottom:734.742900px;}
.y15{bottom:737.305350px;}
.y15f{bottom:737.491050px;}
.y85{bottom:739.617900px;}
.ydd{bottom:741.046050px;}
.y18a{bottom:746.503050px;}
.y4d{bottom:747.492900px;}
.y129{bottom:750.486900px;}
.y15e{bottom:752.035050px;}
.y84{bottom:755.367900px;}
.ydc{bottom:756.790050px;}
.y189{bottom:760.747050px;}
.y4c{bottom:763.242900px;}
.y128{bottom:766.230900px;}
.y15d{bottom:766.579050px;}
.y83{bottom:771.117900px;}
.ydb{bottom:772.534050px;}
.y188{bottom:774.991050px;}
.y4b{bottom:778.992900px;}
.y15c{bottom:781.123050px;}
.y127{bottom:781.974900px;}
.y82{bottom:786.867900px;}
.yda{bottom:788.278050px;}
.y187{bottom:789.235050px;}
.y4a{bottom:794.742900px;}
.y15b{bottom:795.667050px;}
.y126{bottom:797.718900px;}
.y81{bottom:802.617900px;}
.y186{bottom:803.479050px;}
.yd9{bottom:804.022050px;}
.y14{bottom:809.305350px;}
.y15a{bottom:810.211050px;}
.y49{bottom:810.492900px;}
.y125{bottom:813.462900px;}
.y185{bottom:817.723050px;}
.y80{bottom:818.367900px;}
.yd8{bottom:819.766050px;}
.y159{bottom:824.755050px;}
.y48{bottom:826.242900px;}
.y124{bottom:829.206900px;}
.y13{bottom:831.505350px;}
.y184{bottom:831.967050px;}
.y7f{bottom:834.117900px;}
.yd7{bottom:835.510050px;}
.y158{bottom:839.311050px;}
.y47{bottom:841.992900px;}
.y123{bottom:844.950900px;}
.y183{bottom:846.211050px;}
.y12{bottom:849.505350px;}
.y7e{bottom:849.867900px;}
.yd6{bottom:851.254050px;}
.y157{bottom:853.855050px;}
.y46{bottom:857.742900px;}
.y182{bottom:860.455050px;}
.y122{bottom:860.694900px;}
.y7d{bottom:865.617900px;}
.yd5{bottom:866.998050px;}
.y11{bottom:867.505350px;}
.y156{bottom:868.399050px;}
.y45{bottom:873.492900px;}
.y181{bottom:874.699050px;}
.y121{bottom:876.438900px;}
.y7c{bottom:881.367900px;}
.yd4{bottom:882.742050px;}
.y155{bottom:882.943050px;}
.y180{bottom:888.943050px;}
.y44{bottom:889.242900px;}
.y120{bottom:892.182900px;}
.y7b{bottom:897.117900px;}
.yd3{bottom:898.486050px;}
.y10{bottom:899.305350px;}
.y17f{bottom:903.187050px;}
.y43{bottom:904.992900px;}
.y154{bottom:905.367900px;}
.y11f{bottom:907.926900px;}
.y7a{bottom:912.867900px;}
.yd2{bottom:914.230050px;}
.y17e{bottom:917.431050px;}
.y42{bottom:920.742900px;}
.y11e{bottom:923.703900px;}
.yd1{bottom:929.974050px;}
.y17d{bottom:931.675050px;}
.y41{bottom:936.492900px;}
.y11d{bottom:939.447900px;}
.yd0{bottom:945.718050px;}
.y17c{bottom:945.919050px;}
.y153{bottom:946.617900px;}
.yf{bottom:947.299350px;}
.y40{bottom:952.242900px;}
.y11c{bottom:955.191900px;}
.y17b{bottom:960.163050px;}
.ycf{bottom:961.462050px;}
.y3f{bottom:967.992900px;}
.y11b{bottom:970.935900px;}
.y152{bottom:970.992900px;}
.ye{bottom:971.302350px;}
.y17a{bottom:974.407050px;}
.y79{bottom:975.867900px;}
.yce{bottom:977.206050px;}
.y3e{bottom:983.742900px;}
.y11a{bottom:986.679900px;}
.y179{bottom:988.651050px;}
.y78{bottom:991.617900px;}
.ycd{bottom:992.950050px;}
.yd{bottom:995.305350px;}
.y3d{bottom:999.492900px;}
.y119{bottom:1002.423900px;}
.y178{bottom:1002.895050px;}
.y77{bottom:1007.367900px;}
.y151{bottom:1012.251900px;}
.y3c{bottom:1015.242900px;}
.y177{bottom:1017.139050px;}
.ycc{bottom:1018.078050px;}
.y118{bottom:1018.167900px;}
.y76{bottom:1023.117900px;}
.y150{bottom:1028.748900px;}
.y3b{bottom:1030.992900px;}
.y176{bottom:1031.383050px;}
.ycb{bottom:1038.795900px;}
.y75{bottom:1038.867900px;}
.y9{bottom:1040.542500px;}
.y36{bottom:1041.769800px;}
.yb{bottom:1043.157750px;}
.y117{bottom:1043.295900px;}
.y14f{bottom:1045.245900px;}
.y175{bottom:1045.627050px;}
.y3a{bottom:1046.742900px;}
.y74{bottom:1054.617900px;}
.y174{bottom:1059.871050px;}
.y14e{bottom:1061.742900px;}
.y39{bottom:1062.492900px;}
.y73{bottom:1070.367900px;}
.yca{bottom:1071.051900px;}
.y173{bottom:1074.115050px;}
.y38{bottom:1086.117900px;}
.yc9{bottom:1088.295900px;}
.y172{bottom:1088.359050px;}
.y37{bottom:1124.437650px;}
.y35{bottom:1179.921150px;}
.y34{bottom:1181.421150px;}
.h11{height:4.368000px;}
.h16{height:22.713600px;}
.h6{height:23.164549px;}
.h2{height:24.984000px;}
.ha{height:28.392000px;}
.h5{height:32.909292px;}
.h3{height:34.944000px;}
.h13{height:35.184000px;}
.h15{height:35.805000px;}
.h18{height:35.841600px;}
.h17{height:36.021600px;}
.h1a{height:36.189600px;}
.hf{height:39.312000px;}
.h10{height:41.040000px;}
.hc{height:43.200000px;}
.hb{height:43.680000px;}
.he{height:51.840000px;}
.hd{height:52.272000px;}
.h19{height:52.944000px;}
.h9{height:53.856000px;}
.h14{height:57.096600px;}
.h8{height:60.480000px;}
.h12{height:61.572000px;}
.h4{height:68.883000px;}
.h7{height:158.619942px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:182.250000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:9.129900px;}
.xa{left:68.031450px;}
.x5{left:76.342350px;}
.x3{left:79.260150px;}
.xb{left:86.031450px;}
.x18{left:89.031450px;}
.x6{left:93.543300px;}
.x7{left:111.543300px;}
.x16{left:149.550150px;}
.x15{left:248.478150px;}
.x17{left:249.571050px;}
.x11{left:293.684700px;}
.x14{left:297.332700px;}
.xd{left:367.773450px;}
.x9{left:386.037300px;}
.x10{left:435.812700px;}
.xc{left:442.701450px;}
.x13{left:460.701450px;}
.x19{left:463.695450px;}
.xe{left:468.213300px;}
.x12{left:478.585800px;}
.xf{left:486.228300px;}
.x1{left:611.220450px;}
.x2{left:642.691500px;}
.x4{left:722.757150px;}
@media print{
.v2{vertical-align:-14.933333pt;}
.v5{vertical-align:-11.946133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.636800pt;}
.v6{vertical-align:16.000000pt;}
.v1{vertical-align:17.920000pt;}
.v3{vertical-align:19.691200pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.800000pt;}
.ls6{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.266667pt;}
.ls5{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.600000pt;}
.lsc{letter-spacing:2.133333pt;}
.ls0{letter-spacing:3.079232pt;}
.ls9{letter-spacing:32.000000pt;}
.ls10{letter-spacing:150.973867pt;}
.lsa{letter-spacing:960.638933pt;}
.lsf{letter-spacing:982.554133pt;}
.ws0{word-spacing:-15.869888pt;}
.ws4{word-spacing:-13.933333pt;}
.ws18{word-spacing:-13.600000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.400000pt;}
.ws2{word-spacing:-8.666667pt;}
.ws74{word-spacing:-6.933333pt;}
.ws58{word-spacing:-6.666667pt;}
.ws13{word-spacing:-6.592000pt;}
.ws5b{word-spacing:-5.653333pt;}
.ws96{word-spacing:-5.546667pt;}
.ws9e{word-spacing:-5.333333pt;}
.wsf{word-spacing:-4.992000pt;}
.wsc{word-spacing:-4.224000pt;}
.ws11{word-spacing:-3.904000pt;}
.wscd{word-spacing:-3.840000pt;}
.wsa{word-spacing:-3.712000pt;}
.ws4f{word-spacing:-3.093333pt;}
.wsc1{word-spacing:-2.986667pt;}
.ws57{word-spacing:-2.880000pt;}
.ws86{word-spacing:-2.666667pt;}
.wsae{word-spacing:-2.453333pt;}
.ws45{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.346667pt;}
.wsa4{word-spacing:-2.293333pt;}
.wsa5{word-spacing:-2.240000pt;}
.ws3a{word-spacing:-2.186667pt;}
.ws82{word-spacing:-2.133333pt;}
.ws5c{word-spacing:-2.080000pt;}
.wsdf{word-spacing:-2.048000pt;}
.ws9c{word-spacing:-2.026667pt;}
.wsd9{word-spacing:-2.016000pt;}
.ws24{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.813333pt;}
.wse5{word-spacing:-1.792000pt;}
.ws80{word-spacing:-1.706667pt;}
.ws35{word-spacing:-1.653333pt;}
.ws23{word-spacing:-1.600000pt;}
.wsd5{word-spacing:-1.578667pt;}
.wsc6{word-spacing:-1.493333pt;}
.ws9{word-spacing:-1.344000pt;}
.ws5{word-spacing:-1.333333pt;}
.wsdc{word-spacing:-1.322667pt;}
.ws50{word-spacing:-1.280000pt;}
.ws32{word-spacing:-1.226667pt;}
.ws49{word-spacing:-1.120000pt;}
.wse9{word-spacing:-1.109333pt;}
.ws36{word-spacing:-1.066667pt;}
.wsb4{word-spacing:-1.013333pt;}
.wsea{word-spacing:-0.768000pt;}
.wsa8{word-spacing:-0.586667pt;}
.wsf5{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.512000pt;}
.wsbe{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.373333pt;}
.ws5e{word-spacing:-0.266667pt;}
.ws47{word-spacing:-0.213333pt;}
.wsd4{word-spacing:-0.192000pt;}
.wsc5{word-spacing:-0.106667pt;}
.ws6{word-spacing:0.000000pt;}
.ws48{word-spacing:0.106667pt;}
.wse2{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.213333pt;}
.ws34{word-spacing:0.266667pt;}
.wsec{word-spacing:0.384000pt;}
.wsf6{word-spacing:0.512000pt;}
.ws65{word-spacing:0.533333pt;}
.wsdd{word-spacing:0.554667pt;}
.ws1b{word-spacing:0.586667pt;}
.wsee{word-spacing:0.597333pt;}
.wsf1{word-spacing:0.682667pt;}
.ws4e{word-spacing:0.693333pt;}
.ws14{word-spacing:0.768000pt;}
.ws7d{word-spacing:0.800000pt;}
.ws77{word-spacing:0.853333pt;}
.wsbb{word-spacing:1.066667pt;}
.ws27{word-spacing:1.120000pt;}
.ws30{word-spacing:1.173333pt;}
.wse1{word-spacing:1.194667pt;}
.wse4{word-spacing:1.237333pt;}
.ws76{word-spacing:1.280000pt;}
.wsaf{word-spacing:1.386667pt;}
.ws8c{word-spacing:1.440000pt;}
.ws17{word-spacing:1.536000pt;}
.ws75{word-spacing:1.600000pt;}
.ws33{word-spacing:1.813333pt;}
.ws1c{word-spacing:1.920000pt;}
.wse8{word-spacing:1.962667pt;}
.ws6c{word-spacing:1.973333pt;}
.ws39{word-spacing:2.026667pt;}
.ws44{word-spacing:2.133333pt;}
.wsa7{word-spacing:2.186667pt;}
.ws9b{word-spacing:2.240000pt;}
.wsef{word-spacing:2.261333pt;}
.wsab{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.346667pt;}
.ws41{word-spacing:2.400000pt;}
.wsf0{word-spacing:2.432000pt;}
.wsd8{word-spacing:2.448000pt;}
.ws54{word-spacing:2.453333pt;}
.ws94{word-spacing:2.560000pt;}
.ws68{word-spacing:2.613333pt;}
.wsb{word-spacing:2.624000pt;}
.ws88{word-spacing:2.826667pt;}
.wsc8{word-spacing:2.880000pt;}
.ws93{word-spacing:2.986667pt;}
.wse6{word-spacing:3.072000pt;}
.ws28{word-spacing:3.093333pt;}
.ws92{word-spacing:3.146667pt;}
.wsd2{word-spacing:3.200000pt;}
.ws8{word-spacing:3.334528pt;}
.ws63{word-spacing:3.520000pt;}
.ws83{word-spacing:3.573333pt;}
.wse7{word-spacing:3.584000pt;}
.wsa3{word-spacing:3.626667pt;}
.ws3f{word-spacing:3.840000pt;}
.ws72{word-spacing:3.893333pt;}
.wsf8{word-spacing:3.968000pt;}
.ws37{word-spacing:4.213333pt;}
.wsac{word-spacing:4.266667pt;}
.ws89{word-spacing:4.373333pt;}
.ws6f{word-spacing:4.426667pt;}
.wsed{word-spacing:4.565333pt;}
.wsc7{word-spacing:4.640000pt;}
.ws62{word-spacing:4.693333pt;}
.wsf7{word-spacing:4.736000pt;}
.ws70{word-spacing:4.746667pt;}
.ws59{word-spacing:4.800000pt;}
.ws29{word-spacing:4.853333pt;}
.ws52{word-spacing:4.906667pt;}
.ws1d{word-spacing:5.066667pt;}
.ws60{word-spacing:5.173333pt;}
.wse{word-spacing:5.184000pt;}
.wsda{word-spacing:5.205333pt;}
.ws66{word-spacing:5.333333pt;}
.wsa1{word-spacing:5.440000pt;}
.ws87{word-spacing:5.493333pt;}
.wscb{word-spacing:5.546667pt;}
.ws21{word-spacing:5.706667pt;}
.ws8d{word-spacing:5.813333pt;}
.ws51{word-spacing:5.973333pt;}
.ws6b{word-spacing:6.080000pt;}
.wsa2{word-spacing:6.133333pt;}
.wse3{word-spacing:6.186667pt;}
.ws10{word-spacing:6.208000pt;}
.ws8a{word-spacing:6.240000pt;}
.ws7c{word-spacing:6.293333pt;}
.ws78{word-spacing:6.346667pt;}
.wsf2{word-spacing:6.485333pt;}
.wsc0{word-spacing:6.506667pt;}
.ws43{word-spacing:6.560000pt;}
.ws2d{word-spacing:6.613333pt;}
.wsa0{word-spacing:6.720000pt;}
.wsde{word-spacing:6.784000pt;}
.ws2b{word-spacing:6.826667pt;}
.ws1e{word-spacing:6.880000pt;}
.ws6a{word-spacing:6.986667pt;}
.ws9a{word-spacing:7.040000pt;}
.ws7f{word-spacing:7.306667pt;}
.ws2e{word-spacing:7.413333pt;}
.wsb6{word-spacing:7.466667pt;}
.ws25{word-spacing:7.520000pt;}
.ws12{word-spacing:7.616000pt;}
.ws5f{word-spacing:7.626667pt;}
.ws4b{word-spacing:7.680000pt;}
.wsb9{word-spacing:7.786667pt;}
.ws8f{word-spacing:7.893333pt;}
.wsca{word-spacing:8.053333pt;}
.wsa6{word-spacing:8.106667pt;}
.ws53{word-spacing:8.213333pt;}
.ws2f{word-spacing:8.266667pt;}
.ws98{word-spacing:8.373333pt;}
.ws46{word-spacing:8.586667pt;}
.wsad{word-spacing:8.640000pt;}
.ws22{word-spacing:8.693333pt;}
.ws1a{word-spacing:8.800000pt;}
.ws9d{word-spacing:8.853333pt;}
.wsf9{word-spacing:9.088000pt;}
.wsb7{word-spacing:9.120000pt;}
.wscc{word-spacing:9.280000pt;}
.ws97{word-spacing:9.386667pt;}
.ws7a{word-spacing:9.440000pt;}
.ws16{word-spacing:9.600000pt;}
.ws6d{word-spacing:9.706667pt;}
.wsd{word-spacing:9.728000pt;}
.ws69{word-spacing:9.760000pt;}
.ws2a{word-spacing:10.026667pt;}
.wsba{word-spacing:10.080000pt;}
.wsd7{word-spacing:10.176000pt;}
.ws84{word-spacing:10.293333pt;}
.ws5d{word-spacing:10.400000pt;}
.wsdb{word-spacing:10.709333pt;}
.ws19{word-spacing:10.720000pt;}
.ws81{word-spacing:10.986667pt;}
.wsf4{word-spacing:11.093333pt;}
.ws42{word-spacing:11.466667pt;}
.ws3b{word-spacing:11.573333pt;}
.ws4a{word-spacing:11.626667pt;}
.ws85{word-spacing:11.733333pt;}
.ws95{word-spacing:11.786667pt;}
.ws2c{word-spacing:11.946667pt;}
.wsf3{word-spacing:12.032000pt;}
.wsb1{word-spacing:12.053333pt;}
.wsc2{word-spacing:12.106667pt;}
.wseb{word-spacing:12.501333pt;}
.ws40{word-spacing:12.746667pt;}
.ws71{word-spacing:12.853333pt;}
.wsb3{word-spacing:13.013333pt;}
.ws61{word-spacing:13.280000pt;}
.ws91{word-spacing:13.760000pt;}
.ws67{word-spacing:13.920000pt;}
.ws8b{word-spacing:13.973333pt;}
.wsb2{word-spacing:14.506667pt;}
.wsc9{word-spacing:14.560000pt;}
.ws4d{word-spacing:14.613333pt;}
.wsc3{word-spacing:14.666667pt;}
.ws1f{word-spacing:14.720000pt;}
.ws7b{word-spacing:14.773333pt;}
.ws8e{word-spacing:14.986667pt;}
.wsb8{word-spacing:15.040000pt;}
.wse0{word-spacing:15.146667pt;}
.wsbf{word-spacing:15.360000pt;}
.ws99{word-spacing:15.626667pt;}
.ws20{word-spacing:16.053333pt;}
.ws55{word-spacing:16.266667pt;}
.ws4c{word-spacing:16.320000pt;}
.wsd1{word-spacing:16.480000pt;}
.ws3e{word-spacing:16.906667pt;}
.wsbd{word-spacing:17.386667pt;}
.wsb5{word-spacing:17.866667pt;}
.wsaa{word-spacing:18.293333pt;}
.ws5a{word-spacing:18.986667pt;}
.ws79{word-spacing:19.146667pt;}
.wsa9{word-spacing:19.306667pt;}
.wsc4{word-spacing:20.373333pt;}
.ws31{word-spacing:20.960000pt;}
.ws64{word-spacing:21.066667pt;}
.wsd3{word-spacing:21.226667pt;}
.ws90{word-spacing:21.706667pt;}
.ws7e{word-spacing:22.506667pt;}
.ws38{word-spacing:23.253333pt;}
.ws9f{word-spacing:30.421333pt;}
.wsd6{word-spacing:32.000000pt;}
.wsbc{word-spacing:39.093333pt;}
.ws3d{word-spacing:42.133333pt;}
.wscf{word-spacing:129.152000pt;}
.wsd0{word-spacing:138.026667pt;}
.wsce{word-spacing:388.834667pt;}
.ws73{word-spacing:1203.105067pt;}
._6{margin-left:-1469.631467pt;}
._a{margin-left:-22.933333pt;}
._10{margin-left:-20.099861pt;}
._64{margin-left:-17.834667pt;}
._9{margin-left:-15.406528pt;}
._e{margin-left:-13.166528pt;}
._d{margin-left:-11.566528pt;}
._11{margin-left:-10.560000pt;}
._f{margin-left:-9.465195pt;}
._2{margin-left:-8.288000pt;}
._8{margin-left:-6.873195pt;}
._7{margin-left:-5.920000pt;}
._c{margin-left:-5.013333pt;}
._3{margin-left:-4.106667pt;}
._4{margin-left:-2.606528pt;}
._0{margin-left:-1.500139pt;}
._1{width:1.639476pt;}
._63{width:2.947861pt;}
._b{width:4.173611pt;}
._62{width:5.205333pt;}
._5d{width:6.656000pt;}
._5f{width:7.850667pt;}
._5{width:9.600000pt;}
._5b{width:10.794667pt;}
._5e{width:12.800000pt;}
._60{width:14.805333pt;}
._61{width:15.872000pt;}
._5c{width:17.322667pt;}
._38{width:32.000000pt;}
._17{width:37.333333pt;}
._5a{width:63.997867pt;}
._54{width:148.674133pt;}
._52{width:161.322667pt;}
._53{width:174.890667pt;}
._56{width:177.283861pt;}
._55{width:203.904000pt;}
._57{width:226.432000pt;}
._58{width:282.752000pt;}
._34{width:322.176000pt;}
._33{width:339.242667pt;}
._48{width:367.018667pt;}
._51{width:368.810667pt;}
._59{width:376.704000pt;}
._3b{width:404.352000pt;}
._3a{width:421.418667pt;}
._4c{width:432.512000pt;}
._37{width:453.845333pt;}
._47{width:471.616000pt;}
._39{width:494.293333pt;}
._36{width:508.501333pt;}
._13{width:512.612267pt;}
._3d{width:519.168000pt;}
._50{width:521.514667pt;}
._4b{width:530.094528pt;}
._3f{width:540.501333pt;}
._25{width:578.858667pt;}
._16{width:590.421333pt;}
._23{width:592.131861pt;}
._14{width:620.330667pt;}
._2a{width:625.073472pt;}
._2e{width:644.693333pt;}
._27{width:666.026667pt;}
._1b{width:681.685333pt;}
._1d{width:692.352000pt;}
._19{width:703.018667pt;}
._21{width:705.625195pt;}
._31{width:713.685333pt;}
._2d{width:744.000000pt;}
._45{width:755.754667pt;}
._44{width:781.952000pt;}
._43{width:797.482667pt;}
._4e{width:800.938667pt;}
._26{width:802.630805pt;}
._40{width:823.424000pt;}
._4d{width:842.410667pt;}
._49{width:844.970667pt;}
._46{width:848.640000pt;}
._35{width:870.641718pt;}
._3e{width:890.197333pt;}
._28{width:915.242667pt;}
._15{width:917.461333pt;}
._2b{width:927.786667pt;}
._22{width:932.522667pt;}
._32{width:943.754667pt;}
._42{width:946.517333pt;}
._3c{width:948.864000pt;}
._4a{width:951.210667pt;}
._12{width:953.685333pt;}
._24{width:967.381333pt;}
._4f{width:970.197333pt;}
._41{width:1071.786667pt;}
._29{width:1083.989333pt;}
._30{width:1188.181333pt;}
._1f{width:1190.105195pt;}
._20{width:1197.230528pt;}
._1a{width:1204.608000pt;}
._1c{width:1225.941333pt;}
._18{width:1247.274667pt;}
._1e{width:1275.733333pt;}
._2f{width:1288.405333pt;}
._2c{width:1289.514667pt;}
.fsc{font-size:5.333333pt;}
.fsd{font-size:27.733333pt;}
.fs3{font-size:27.787733pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs2{font-size:39.477333pt;}
.fs7{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:190.277333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:10.518400pt;}
.yc{bottom:23.287067pt;}
.yc7{bottom:77.047333pt;}
.y33{bottom:82.898000pt;}
.y105{bottom:86.718267pt;}
.y72{bottom:87.104800pt;}
.y106{bottom:87.118267pt;}
.ya7{bottom:88.104800pt;}
.yc6{bottom:91.047333pt;}
.y116{bottom:91.930000pt;}
.y14d{bottom:95.211200pt;}
.y32{bottom:97.562000pt;}
.y104{bottom:100.718267pt;}
.y71{bottom:101.104800pt;}
.ya6{bottom:102.104800pt;}
.y8{bottom:103.931600pt;}
.y14c{bottom:104.920533pt;}
.yc5{bottom:105.047333pt;}
.y115{bottom:106.594000pt;}
.y31{bottom:112.226000pt;}
.y103{bottom:114.718267pt;}
.y70{bottom:115.104800pt;}
.y7{bottom:115.259600pt;}
.y1{bottom:115.789067pt;}
.ya5{bottom:116.104800pt;}
.y14b{bottom:117.581867pt;}
.yc4{bottom:119.047333pt;}
.y114{bottom:121.258000pt;}
.y6{bottom:126.587600pt;}
.y30{bottom:126.890000pt;}
.y102{bottom:128.718267pt;}
.y6f{bottom:129.104800pt;}
.ya4{bottom:130.104800pt;}
.yc3{bottom:133.047333pt;}
.y5{bottom:137.915600pt;}
.y2f{bottom:141.554000pt;}
.y101{bottom:142.718267pt;}
.y113{bottom:142.924667pt;}
.y6e{bottom:143.104800pt;}
.y14a{bottom:143.917867pt;}
.ya3{bottom:144.104800pt;}
.yc2{bottom:147.047333pt;}
.y2e{bottom:156.218000pt;}
.y100{bottom:156.718267pt;}
.y149{bottom:157.912533pt;}
.ya2{bottom:158.104800pt;}
.yc1{bottom:161.047333pt;}
.y6d{bottom:164.104800pt;}
.y4{bottom:169.933600pt;}
.yff{bottom:170.718267pt;}
.y2d{bottom:170.882000pt;}
.y148{bottom:171.907200pt;}
.ya1{bottom:172.104800pt;}
.yc0{bottom:175.047333pt;}
.y112{bottom:178.924667pt;}
.y3{bottom:181.261600pt;}
.yfe{bottom:184.718267pt;}
.y2c{bottom:185.546000pt;}
.y147{bottom:185.901867pt;}
.ya0{bottom:186.104800pt;}
.ybf{bottom:189.047333pt;}
.y2{bottom:192.589600pt;}
.y111{bottom:193.324667pt;}
.yfd{bottom:198.718267pt;}
.y146{bottom:199.896533pt;}
.y9f{bottom:200.104800pt;}
.y2b{bottom:200.210000pt;}
.y6c{bottom:200.771467pt;}
.ybe{bottom:203.047333pt;}
.y110{bottom:207.724667pt;}
.yfc{bottom:212.718267pt;}
.y145{bottom:213.883200pt;}
.y9e{bottom:214.104800pt;}
.y6b{bottom:214.771467pt;}
.ybd{bottom:217.047333pt;}
.y10f{bottom:222.124667pt;}
.yfb{bottom:226.718267pt;}
.y9d{bottom:228.104800pt;}
.y6a{bottom:228.771467pt;}
.ybc{bottom:231.047333pt;}
.y144{bottom:236.219200pt;}
.y10e{bottom:236.524667pt;}
.yfa{bottom:240.718267pt;}
.y2a{bottom:242.049067pt;}
.y9c{bottom:242.104800pt;}
.y69{bottom:242.771467pt;}
.ybb{bottom:245.047333pt;}
.y10d{bottom:250.924667pt;}
.yf9{bottom:254.718267pt;}
.y143{bottom:255.557867pt;}
.y9b{bottom:256.104800pt;}
.y68{bottom:256.771467pt;}
.yba{bottom:259.047333pt;}
.y10c{bottom:265.324667pt;}
.yf8{bottom:268.718267pt;}
.y9a{bottom:270.104800pt;}
.y67{bottom:270.771467pt;}
.yb9{bottom:273.047333pt;}
.y29{bottom:273.947733pt;}
.y10b{bottom:279.724667pt;}
.yc8{bottom:280.047333pt;}
.y142{bottom:280.229867pt;}
.yf7{bottom:282.718267pt;}
.y99{bottom:284.104800pt;}
.y66{bottom:284.771467pt;}
.yb8{bottom:287.047333pt;}
.y28{bottom:292.619733pt;}
.y10a{bottom:294.124667pt;}
.y141{bottom:295.557867pt;}
.yf6{bottom:296.718267pt;}
.y98{bottom:298.104800pt;}
.y65{bottom:298.771467pt;}
.yb7{bottom:301.047333pt;}
.yf5{bottom:310.718267pt;}
.y27{bottom:311.291733pt;}
.y97{bottom:312.104800pt;}
.y64{bottom:312.771467pt;}
.yb6{bottom:315.047333pt;}
.yf4{bottom:324.718267pt;}
.y63{bottom:326.771467pt;}
.yb5{bottom:329.047333pt;}
.y26{bottom:329.963733pt;}
.y96{bottom:333.104800pt;}
.y140{bottom:337.027467pt;}
.yf3{bottom:338.718267pt;}
.y62{bottom:340.771467pt;}
.yb4{bottom:343.047333pt;}
.y13f{bottom:346.736800pt;}
.y25{bottom:348.635733pt;}
.yf2{bottom:352.718267pt;}
.y61{bottom:354.771467pt;}
.yb3{bottom:357.047333pt;}
.y95{bottom:365.771467pt;}
.yf1{bottom:366.718267pt;}
.y24{bottom:367.307733pt;}
.y60{bottom:368.771467pt;}
.yb2{bottom:371.047333pt;}
.y13e{bottom:373.072800pt;}
.y94{bottom:379.771467pt;}
.yf0{bottom:380.718267pt;}
.y5f{bottom:382.771467pt;}
.yb1{bottom:385.047333pt;}
.y23{bottom:385.979733pt;}
.y13d{bottom:387.067467pt;}
.y93{bottom:393.771467pt;}
.yef{bottom:394.718267pt;}
.y5e{bottom:396.771467pt;}
.yb0{bottom:399.047333pt;}
.y13c{bottom:401.062133pt;}
.y22{bottom:404.651733pt;}
.y92{bottom:407.771467pt;}
.yee{bottom:408.718267pt;}
.yaf{bottom:413.047333pt;}
.y13b{bottom:415.056800pt;}
.y5d{bottom:417.771467pt;}
.y91{bottom:421.771467pt;}
.yed{bottom:422.718267pt;}
.y21{bottom:423.323733pt;}
.y171{bottom:424.891600pt;}
.y19b{bottom:425.374133pt;}
.yae{bottom:427.047333pt;}
.y13a{bottom:429.051467pt;}
.y90{bottom:435.771467pt;}
.yec{bottom:436.718267pt;}
.y170{bottom:437.691600pt;}
.yad{bottom:441.047333pt;}
.y19a{bottom:441.374133pt;}
.y20{bottom:441.995733pt;}
.y139{bottom:443.046133pt;}
.y8f{bottom:449.771467pt;}
.y16f{bottom:450.491600pt;}
.yeb{bottom:450.718267pt;}
.y5c{bottom:454.438133pt;}
.yac{bottom:455.047333pt;}
.y138{bottom:457.110133pt;}
.y1f{bottom:460.667733pt;}
.y16e{bottom:463.291600pt;}
.y8e{bottom:463.771467pt;}
.yea{bottom:464.718267pt;}
.y5b{bottom:468.438133pt;}
.yab{bottom:469.047333pt;}
.y137{bottom:471.104800pt;}
.y199{bottom:473.638267pt;}
.y16d{bottom:476.091600pt;}
.y8d{bottom:477.771467pt;}
.ye9{bottom:478.718267pt;}
.y1e{bottom:479.339733pt;}
.y5a{bottom:482.438133pt;}
.yaa{bottom:483.047333pt;}
.y136{bottom:485.099467pt;}
.y198{bottom:486.299600pt;}
.y16c{bottom:488.891600pt;}
.ye8{bottom:492.718267pt;}
.y59{bottom:496.438133pt;}
.ya9{bottom:497.047333pt;}
.y1d{bottom:498.011733pt;}
.y8c{bottom:498.771467pt;}
.y197{bottom:498.960933pt;}
.y135{bottom:499.094133pt;}
.y16b{bottom:501.691600pt;}
.ye7{bottom:506.718267pt;}
.y58{bottom:510.438133pt;}
.ya8{bottom:511.047333pt;}
.y196{bottom:511.622267pt;}
.y134{bottom:513.088800pt;}
.y16a{bottom:514.491600pt;}
.y1c{bottom:516.683733pt;}
.ye6{bottom:520.718267pt;}
.y195{bottom:524.283600pt;}
.y57{bottom:524.438133pt;}
.y133{bottom:527.083467pt;}
.y169{bottom:527.291600pt;}
.y8b{bottom:531.438133pt;}
.ye5{bottom:534.718267pt;}
.y1b{bottom:535.355733pt;}
.y194{bottom:536.944933pt;}
.y56{bottom:538.438133pt;}
.y168{bottom:540.091600pt;}
.y132{bottom:541.078133pt;}
.y8a{bottom:545.438133pt;}
.y193{bottom:549.606267pt;}
.ye4{bottom:550.968933pt;}
.y55{bottom:552.438133pt;}
.y167{bottom:552.891600pt;}
.y1a{bottom:554.027733pt;}
.y131{bottom:555.072800pt;}
.y89{bottom:559.438133pt;}
.y192{bottom:562.267600pt;}
.y166{bottom:565.691600pt;}
.y54{bottom:566.438133pt;}
.ye3{bottom:566.616800pt;}
.y130{bottom:569.067467pt;}
.y19{bottom:572.699733pt;}
.y109{bottom:574.645733pt;}
.y191{bottom:574.928933pt;}
.ye2{bottom:576.315600pt;}
.y165{bottom:578.491600pt;}
.y53{bottom:580.438133pt;}
.y12f{bottom:583.062133pt;}
.y108{bottom:587.307067pt;}
.y190{bottom:587.590267pt;}
.y164{bottom:591.291600pt;}
.y18{bottom:591.371733pt;}
.y52{bottom:594.438133pt;}
.y12e{bottom:597.056800pt;}
.y107{bottom:599.968400pt;}
.y18f{bottom:600.251600pt;}
.ye1{bottom:602.651600pt;}
.y163{bottom:604.091600pt;}
.y51{bottom:608.438133pt;}
.y17{bottom:610.043733pt;}
.y12d{bottom:611.051467pt;}
.y18e{bottom:612.912933pt;}
.y88{bottom:615.438133pt;}
.ye0{bottom:616.646267pt;}
.y162{bottom:616.891600pt;}
.y50{bottom:622.438133pt;}
.y12c{bottom:625.046133pt;}
.y18d{bottom:625.574267pt;}
.y16{bottom:628.715733pt;}
.y87{bottom:629.438133pt;}
.y161{bottom:629.691600pt;}
.ydf{bottom:630.640933pt;}
.y4f{bottom:636.438133pt;}
.y18c{bottom:638.235600pt;}
.y12b{bottom:639.110133pt;}
.y160{bottom:642.619600pt;}
.y86{bottom:643.438133pt;}
.yde{bottom:644.635600pt;}
.y4e{bottom:650.438133pt;}
.y18b{bottom:650.896933pt;}
.y12a{bottom:653.104800pt;}
.y15{bottom:655.382533pt;}
.y15f{bottom:655.547600pt;}
.y85{bottom:657.438133pt;}
.ydd{bottom:658.707600pt;}
.y18a{bottom:663.558267pt;}
.y4d{bottom:664.438133pt;}
.y129{bottom:667.099467pt;}
.y15e{bottom:668.475600pt;}
.y84{bottom:671.438133pt;}
.ydc{bottom:672.702267pt;}
.y189{bottom:676.219600pt;}
.y4c{bottom:678.438133pt;}
.y128{bottom:681.094133pt;}
.y15d{bottom:681.403600pt;}
.y83{bottom:685.438133pt;}
.ydb{bottom:686.696933pt;}
.y188{bottom:688.880933pt;}
.y4b{bottom:692.438133pt;}
.y15c{bottom:694.331600pt;}
.y127{bottom:695.088800pt;}
.y82{bottom:699.438133pt;}
.yda{bottom:700.691600pt;}
.y187{bottom:701.542267pt;}
.y4a{bottom:706.438133pt;}
.y15b{bottom:707.259600pt;}
.y126{bottom:709.083467pt;}
.y81{bottom:713.438133pt;}
.y186{bottom:714.203600pt;}
.yd9{bottom:714.686267pt;}
.y14{bottom:719.382533pt;}
.y15a{bottom:720.187600pt;}
.y49{bottom:720.438133pt;}
.y125{bottom:723.078133pt;}
.y185{bottom:726.864933pt;}
.y80{bottom:727.438133pt;}
.yd8{bottom:728.680933pt;}
.y159{bottom:733.115600pt;}
.y48{bottom:734.438133pt;}
.y124{bottom:737.072800pt;}
.y13{bottom:739.115867pt;}
.y184{bottom:739.526267pt;}
.y7f{bottom:741.438133pt;}
.yd7{bottom:742.675600pt;}
.y158{bottom:746.054267pt;}
.y47{bottom:748.438133pt;}
.y123{bottom:751.067467pt;}
.y183{bottom:752.187600pt;}
.y12{bottom:755.115867pt;}
.y7e{bottom:755.438133pt;}
.yd6{bottom:756.670267pt;}
.y157{bottom:758.982267pt;}
.y46{bottom:762.438133pt;}
.y182{bottom:764.848933pt;}
.y122{bottom:765.062133pt;}
.y7d{bottom:769.438133pt;}
.yd5{bottom:770.664933pt;}
.y11{bottom:771.115867pt;}
.y156{bottom:771.910267pt;}
.y45{bottom:776.438133pt;}
.y181{bottom:777.510267pt;}
.y121{bottom:779.056800pt;}
.y7c{bottom:783.438133pt;}
.yd4{bottom:784.659600pt;}
.y155{bottom:784.838267pt;}
.y180{bottom:790.171600pt;}
.y44{bottom:790.438133pt;}
.y120{bottom:793.051467pt;}
.y7b{bottom:797.438133pt;}
.yd3{bottom:798.654267pt;}
.y10{bottom:799.382533pt;}
.y17f{bottom:802.832933pt;}
.y43{bottom:804.438133pt;}
.y154{bottom:804.771467pt;}
.y11f{bottom:807.046133pt;}
.y7a{bottom:811.438133pt;}
.yd2{bottom:812.648933pt;}
.y17e{bottom:815.494267pt;}
.y42{bottom:818.438133pt;}
.y11e{bottom:821.070133pt;}
.yd1{bottom:826.643600pt;}
.y17d{bottom:828.155600pt;}
.y41{bottom:832.438133pt;}
.y11d{bottom:835.064800pt;}
.yd0{bottom:840.638267pt;}
.y17c{bottom:840.816933pt;}
.y153{bottom:841.438133pt;}
.yf{bottom:842.043867pt;}
.y40{bottom:846.438133pt;}
.y11c{bottom:849.059467pt;}
.y17b{bottom:853.478267pt;}
.ycf{bottom:854.632933pt;}
.y3f{bottom:860.438133pt;}
.y11b{bottom:863.054133pt;}
.y152{bottom:863.104800pt;}
.ye{bottom:863.379867pt;}
.y17a{bottom:866.139600pt;}
.y79{bottom:867.438133pt;}
.yce{bottom:868.627600pt;}
.y3e{bottom:874.438133pt;}
.y11a{bottom:877.048800pt;}
.y179{bottom:878.800933pt;}
.y78{bottom:881.438133pt;}
.ycd{bottom:882.622267pt;}
.yd{bottom:884.715867pt;}
.y3d{bottom:888.438133pt;}
.y119{bottom:891.043467pt;}
.y178{bottom:891.462267pt;}
.y77{bottom:895.438133pt;}
.y151{bottom:899.779467pt;}
.y3c{bottom:902.438133pt;}
.y177{bottom:904.123600pt;}
.ycc{bottom:904.958267pt;}
.y118{bottom:905.038133pt;}
.y76{bottom:909.438133pt;}
.y150{bottom:914.443467pt;}
.y3b{bottom:916.438133pt;}
.y176{bottom:916.784933pt;}
.ycb{bottom:923.374133pt;}
.y75{bottom:923.438133pt;}
.y9{bottom:924.926667pt;}
.y36{bottom:926.017600pt;}
.yb{bottom:927.251333pt;}
.y117{bottom:927.374133pt;}
.y14f{bottom:929.107467pt;}
.y175{bottom:929.446267pt;}
.y3a{bottom:930.438133pt;}
.y74{bottom:937.438133pt;}
.y174{bottom:942.107600pt;}
.y14e{bottom:943.771467pt;}
.y39{bottom:944.438133pt;}
.y73{bottom:951.438133pt;}
.yca{bottom:952.046133pt;}
.y173{bottom:954.768933pt;}
.y38{bottom:965.438133pt;}
.yc9{bottom:967.374133pt;}
.y172{bottom:967.430267pt;}
.y37{bottom:999.500133pt;}
.y35{bottom:1048.818800pt;}
.y34{bottom:1050.152133pt;}
.h11{height:3.882667pt;}
.h16{height:20.189867pt;}
.h6{height:20.590710pt;}
.h2{height:22.208000pt;}
.ha{height:25.237333pt;}
.h5{height:29.252704pt;}
.h3{height:31.061333pt;}
.h13{height:31.274667pt;}
.h15{height:31.826667pt;}
.h18{height:31.859200pt;}
.h17{height:32.019200pt;}
.h1a{height:32.168533pt;}
.hf{height:34.944000pt;}
.h10{height:36.480000pt;}
.hc{height:38.400000pt;}
.hb{height:38.826667pt;}
.he{height:46.080000pt;}
.hd{height:46.464000pt;}
.h19{height:47.061333pt;}
.h9{height:47.872000pt;}
.h14{height:50.752533pt;}
.h8{height:53.760000pt;}
.h12{height:54.730667pt;}
.h4{height:61.229333pt;}
.h7{height:140.995504pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:162.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:8.115467pt;}
.xa{left:60.472400pt;}
.x5{left:67.859867pt;}
.x3{left:70.453467pt;}
.xb{left:76.472400pt;}
.x18{left:79.139067pt;}
.x6{left:83.149600pt;}
.x7{left:99.149600pt;}
.x16{left:132.933467pt;}
.x15{left:220.869467pt;}
.x17{left:221.840933pt;}
.x11{left:261.053067pt;}
.x14{left:264.295733pt;}
.xd{left:326.909733pt;}
.x9{left:343.144267pt;}
.x10{left:387.389067pt;}
.xc{left:393.512400pt;}
.x13{left:409.512400pt;}
.x19{left:412.173733pt;}
.xe{left:416.189600pt;}
.x12{left:425.409600pt;}
.xf{left:432.202933pt;}
.x1{left:543.307067pt;}
.x2{left:571.281333pt;}
.x4{left:642.450800pt;}
}




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