
    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_995c75b5448fc82808a14fb2.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_304c09985a2a345d0a98c78d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728027;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_1c5e90b8b310ede89e79b153.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d834fb9d1aea4b208665f4f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_46bc2be31ed296c21ebf1ccf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c146d80d32d66eded51be9d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.917480;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_9dd9dccd4f9af4cd957e8b63.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1dbd899325b8c1132a8a2ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_5ded09b67636e968acc80d94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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.471800px;}
.v6{vertical-align:-10.224000px;}
.v7{vertical-align:-6.816000px;}
.v4{vertical-align:-3.445800px;}
.v5{vertical-align:-1.620000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:22.655400px;}
.ls3e{letter-spacing:-5.328000px;}
.ls3f{letter-spacing:-3.552000px;}
.ls78{letter-spacing:-2.640000px;}
.ls3d{letter-spacing:-1.776000px;}
.ls58{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.480000px;}
.ls59{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.180000px;}
.ls4e{letter-spacing:-0.120000px;}
.ls79{letter-spacing:-0.096000px;}
.ls1f{letter-spacing:-0.084000px;}
.ls24{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.048000px;}
.ls20{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls34{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls4{letter-spacing:0.048000px;}
.ls2d{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls6f{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.240000px;}
.ls5a{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.420000px;}
.ls64{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls71{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.660000px;}
.ls62{letter-spacing:0.672000px;}
.ls3a{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.780000px;}
.ls60{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.960000px;}
.ls12{letter-spacing:1.020000px;}
.ls63{letter-spacing:1.056000px;}
.ls3b{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.140000px;}
.ls33{letter-spacing:1.200000px;}
.ls49{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.320000px;}
.ls6c{letter-spacing:1.344000px;}
.ls8{letter-spacing:1.380000px;}
.ls39{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.500000px;}
.ls43{letter-spacing:1.560000px;}
.ls73{letter-spacing:1.584000px;}
.ls48{letter-spacing:1.620000px;}
.ls74{letter-spacing:1.632000px;}
.ls6{letter-spacing:1.680000px;}
.ls13{letter-spacing:1.740000px;}
.ls4b{letter-spacing:1.776000px;}
.ls28{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.824000px;}
.ls5{letter-spacing:1.860000px;}
.ls7{letter-spacing:1.920000px;}
.ls4d{letter-spacing:1.980000px;}
.ls10{letter-spacing:2.040000px;}
.ls57{letter-spacing:2.100000px;}
.lsb{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.220000px;}
.ls26{letter-spacing:2.280000px;}
.ls75{letter-spacing:2.304000px;}
.ls35{letter-spacing:2.340000px;}
.ls70{letter-spacing:2.352000px;}
.ls5e{letter-spacing:2.400000px;}
.ls45{letter-spacing:2.460000px;}
.ls40{letter-spacing:2.520000px;}
.lsf{letter-spacing:2.580000px;}
.ls19{letter-spacing:2.640000px;}
.ls6e{letter-spacing:2.688000px;}
.ls27{letter-spacing:2.700000px;}
.ls5b{letter-spacing:2.760000px;}
.ls1c{letter-spacing:2.820000px;}
.ls11{letter-spacing:2.880000px;}
.ls3c{letter-spacing:2.940000px;}
.ls4c{letter-spacing:2.976000px;}
.ls1e{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.060000px;}
.ls4a{letter-spacing:3.120000px;}
.ls6a{letter-spacing:3.168000px;}
.ls42{letter-spacing:3.180000px;}
.ls69{letter-spacing:3.264000px;}
.ls14{letter-spacing:3.300000px;}
.ls25{letter-spacing:3.360000px;}
.ls77{letter-spacing:3.408000px;}
.ls30{letter-spacing:3.420000px;}
.ls2e{letter-spacing:3.480000px;}
.ls6d{letter-spacing:3.504000px;}
.ls1b{letter-spacing:3.540000px;}
.ls44{letter-spacing:3.600000px;}
.ls38{letter-spacing:3.660000px;}
.ls55{letter-spacing:3.720000px;}
.ls46{letter-spacing:3.780000px;}
.ls68{letter-spacing:3.888000px;}
.ls41{letter-spacing:3.960000px;}
.ls47{letter-spacing:4.080000px;}
.ls76{letter-spacing:4.128000px;}
.ls61{letter-spacing:4.176000px;}
.ls32{letter-spacing:4.200000px;}
.ls65{letter-spacing:4.260000px;}
.ls66{letter-spacing:4.320000px;}
.ls6b{letter-spacing:5.184000px;}
.ls51{letter-spacing:5.220000px;}
.ls5d{letter-spacing:5.280000px;}
.ls67{letter-spacing:5.424000px;}
.ls1a{letter-spacing:5.460000px;}
.lsc{letter-spacing:5.520000px;}
.ls54{letter-spacing:5.580000px;}
.ls4f{letter-spacing:5.700000px;}
.ls53{letter-spacing:6.300000px;}
.ls5f{letter-spacing:6.360000px;}
.ls5c{letter-spacing:6.480000px;}
.ls50{letter-spacing:7.020000px;}
.ls52{letter-spacing:10.740000px;}
.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;}
}
.ws22{word-spacing:-60.000000px;}
.ws5a{word-spacing:-22.380000px;}
.ws5c{word-spacing:-22.260000px;}
.ws5b{word-spacing:-21.900000px;}
.ws71{word-spacing:-20.940000px;}
.ws44{word-spacing:-20.760000px;}
.ws24{word-spacing:-20.340000px;}
.ws1c{word-spacing:-20.040000px;}
.ws6c{word-spacing:-19.500000px;}
.ws23{word-spacing:-19.380000px;}
.ws1f{word-spacing:-19.320000px;}
.ws43{word-spacing:-19.200000px;}
.ws5e{word-spacing:-18.780000px;}
.ws41{word-spacing:-18.720000px;}
.ws45{word-spacing:-18.660000px;}
.ws5{word-spacing:-18.600000px;}
.ws3{word-spacing:-18.540000px;}
.ws46{word-spacing:-18.420000px;}
.ws4{word-spacing:-18.360000px;}
.ws42{word-spacing:-18.240000px;}
.ws6f{word-spacing:-18.180000px;}
.ws1d{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.880000px;}
.ws6d{word-spacing:-17.460000px;}
.ws70{word-spacing:-17.220000px;}
.ws59{word-spacing:-17.100000px;}
.ws5d{word-spacing:-16.740000px;}
.ws1a{word-spacing:-16.680000px;}
.ws6e{word-spacing:-16.620000px;}
.ws81{word-spacing:-16.512000px;}
.ws84{word-spacing:-15.264000px;}
.ws83{word-spacing:-13.920000px;}
.ws1{word-spacing:-13.680000px;}
.ws82{word-spacing:-13.488000px;}
.ws1b{word-spacing:-13.344000px;}
.ws2{word-spacing:-12.864000px;}
.ws7b{word-spacing:-11.808000px;}
.ws0{word-spacing:-11.008800px;}
.ws80{word-spacing:-10.704000px;}
.ws21{word-spacing:-10.008000px;}
.ws67{word-spacing:-7.020000px;}
.ws79{word-spacing:-6.720000px;}
.ws7a{word-spacing:-6.672000px;}
.ws7c{word-spacing:-6.528000px;}
.ws35{word-spacing:-3.660000px;}
.ws62{word-spacing:-3.360000px;}
.ws19{word-spacing:-3.000000px;}
.ws30{word-spacing:-1.860000px;}
.ws72{word-spacing:-1.560000px;}
.ws31{word-spacing:-1.500000px;}
.ws7d{word-spacing:-1.488000px;}
.ws78{word-spacing:-1.344000px;}
.ws76{word-spacing:-1.320000px;}
.ws34{word-spacing:-1.200000px;}
.ws66{word-spacing:-1.080000px;}
.ws55{word-spacing:-0.960000px;}
.ws8a{word-spacing:-0.864000px;}
.ws74{word-spacing:-0.540000px;}
.ws3c{word-spacing:-0.336000px;}
.ws87{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.ws7{word-spacing:0.084000px;}
.ws53{word-spacing:0.120000px;}
.wsd{word-spacing:0.180000px;}
.ws89{word-spacing:0.192000px;}
.ws39{word-spacing:0.240000px;}
.ws69{word-spacing:0.360000px;}
.wse{word-spacing:0.420000px;}
.ws2c{word-spacing:0.432000px;}
.ws88{word-spacing:0.480000px;}
.ws86{word-spacing:0.528000px;}
.ws7e{word-spacing:0.660000px;}
.ws73{word-spacing:0.840000px;}
.wsc{word-spacing:0.912000px;}
.ws64{word-spacing:0.960000px;}
.wsb{word-spacing:1.008000px;}
.ws50{word-spacing:1.140000px;}
.ws38{word-spacing:1.320000px;}
.ws4d{word-spacing:1.380000px;}
.ws85{word-spacing:1.440000px;}
.ws56{word-spacing:1.500000px;}
.ws5f{word-spacing:1.620000px;}
.ws3b{word-spacing:1.740000px;}
.ws6a{word-spacing:1.800000px;}
.ws65{word-spacing:1.824000px;}
.wsa{word-spacing:1.920000px;}
.ws68{word-spacing:1.980000px;}
.ws54{word-spacing:2.100000px;}
.ws16{word-spacing:2.220000px;}
.ws4f{word-spacing:2.280000px;}
.ws58{word-spacing:2.448000px;}
.ws4b{word-spacing:2.460000px;}
.ws13{word-spacing:2.520000px;}
.ws4c{word-spacing:2.640000px;}
.ws52{word-spacing:2.700000px;}
.ws14{word-spacing:2.880000px;}
.ws7f{word-spacing:3.000000px;}
.ws2e{word-spacing:3.120000px;}
.ws63{word-spacing:3.180000px;}
.ws11{word-spacing:3.300000px;}
.ws51{word-spacing:3.480000px;}
.ws75{word-spacing:3.540000px;}
.ws40{word-spacing:3.552000px;}
.ws33{word-spacing:3.900000px;}
.ws77{word-spacing:3.960000px;}
.ws37{word-spacing:4.200000px;}
.ws4e{word-spacing:4.260000px;}
.ws8{word-spacing:4.368000px;}
.ws9{word-spacing:4.416000px;}
.ws32{word-spacing:4.440000px;}
.ws2f{word-spacing:4.680000px;}
.ws17{word-spacing:4.740000px;}
.ws3d{word-spacing:4.752000px;}
.ws60{word-spacing:4.800000px;}
.ws61{word-spacing:4.980000px;}
.ws3a{word-spacing:5.040000px;}
.ws18{word-spacing:5.100000px;}
.ws2d{word-spacing:5.160000px;}
.ws12{word-spacing:5.220000px;}
.ws6b{word-spacing:5.280000px;}
.ws36{word-spacing:5.340000px;}
.ws10{word-spacing:5.460000px;}
.wsf{word-spacing:5.520000px;}
.ws29{word-spacing:233.424000px;}
.ws47{word-spacing:235.200000px;}
.ws26{word-spacing:246.768000px;}
.ws2b{word-spacing:260.112000px;}
.ws25{word-spacing:268.128000px;}
.ws4a{word-spacing:272.112000px;}
.ws48{word-spacing:278.784000px;}
.ws49{word-spacing:292.128000px;}
.ws28{word-spacing:359.760000px;}
.ws2a{word-spacing:373.104000px;}
.ws27{word-spacing:405.168000px;}
.ws3e{word-spacing:640.800000px;}
.ws3f{word-spacing:1190.496000px;}
.ws57{word-spacing:1406.160000px;}
._11{margin-left:-2898.126000px;}
._12{margin-left:-2874.309000px;}
._a{margin-left:-16.860000px;}
._16{margin-left:-8.376000px;}
._4{margin-left:-7.326000px;}
._0{margin-left:-6.216000px;}
._2{margin-left:-4.884000px;}
._1{margin-left:-3.528000px;}
._5{margin-left:-2.100000px;}
._3{margin-left:-1.075200px;}
._6{width:1.020000px;}
._b{width:3.300000px;}
._9{width:4.440000px;}
._7{width:5.520000px;}
._8{width:7.020000px;}
._1b{width:12.048000px;}
._19{width:29.964000px;}
._17{width:33.024000px;}
._1a{width:56.784000px;}
._18{width:62.496000px;}
._d{width:261.000000px;}
._e{width:287.688000px;}
._13{width:325.080000px;}
._10{width:382.464000px;}
._f{width:385.152000px;}
._c{width:397.152000px;}
._15{width:421.200000px;}
._14{width:423.888000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs8{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:82.571100px;}
.ya7{bottom:82.925400px;}
.y160{bottom:83.232600px;}
.yc0{bottom:83.363850px;}
.y36{bottom:83.493900px;}
.y128{bottom:84.531600px;}
.y18b{bottom:85.796700px;}
.y67{bottom:90.709200px;}
.y127{bottom:91.917600px;}
.yea{bottom:92.735250px;}
.y99{bottom:93.101400px;}
.yf4{bottom:98.083050px;}
.y9b{bottom:98.315100px;}
.ya6{bottom:98.669400px;}
.y18a{bottom:100.796700px;}
.y15f{bottom:101.232600px;}
.ybf{bottom:101.363850px;}
.y66{bottom:108.709200px;}
.ye9{bottom:108.983250px;}
.y98{bottom:109.349400px;}
.y126{bottom:109.917600px;}
.yf3{bottom:113.083050px;}
.y12d{bottom:116.722050px;}
.y15e{bottom:119.232600px;}
.ybe{bottom:119.363850px;}
.ye8{bottom:125.231250px;}
.y97{bottom:125.597400px;}
.ya5{bottom:126.623100px;}
.y65{bottom:126.709200px;}
.y125{bottom:127.917600px;}
.yf2{bottom:128.083050px;}
.y189{bottom:134.232600px;}
.yee{bottom:135.113400px;}
.y15d{bottom:137.232600px;}
.ybd{bottom:137.363850px;}
.ye7{bottom:141.479250px;}
.y96{bottom:141.845400px;}
.yf1{bottom:143.083050px;}
.y64{bottom:144.709200px;}
.y124{bottom:145.917600px;}
.yd{bottom:146.475900px;}
.y15c{bottom:155.232600px;}
.ybc{bottom:155.363850px;}
.ye6{bottom:157.727250px;}
.yf0{bottom:158.083050px;}
.y95{bottom:158.093400px;}
.y63{bottom:162.709200px;}
.ya3{bottom:163.199100px;}
.y123{bottom:163.917600px;}
.y15b{bottom:173.232600px;}
.ybb{bottom:173.363850px;}
.ye5{bottom:173.975250px;}
.y94{bottom:174.341400px;}
.y62{bottom:180.709200px;}
.y122{bottom:181.917600px;}
.yac{bottom:183.169650px;}
.y188{bottom:188.367600px;}
.ye4{bottom:190.223250px;}
.y93{bottom:190.589400px;}
.y15a{bottom:191.232600px;}
.yba{bottom:191.363850px;}
.yef{bottom:191.513850px;}
.y61{bottom:198.709200px;}
.y33{bottom:199.169550px;}
.y25{bottom:199.304550px;}
.y121{bottom:199.917600px;}
.y187{bottom:206.367600px;}
.ye3{bottom:206.471250px;}
.y92{bottom:206.837400px;}
.y159{bottom:209.232600px;}
.yb9{bottom:209.363850px;}
.y60{bottom:216.709200px;}
.y32{bottom:217.169550px;}
.y24{bottom:217.304550px;}
.y120{bottom:217.917600px;}
.ye2{bottom:222.719250px;}
.y91{bottom:223.085400px;}
.y186{bottom:224.367600px;}
.y158{bottom:227.232600px;}
.yb8{bottom:227.363850px;}
.y5f{bottom:234.709200px;}
.y31{bottom:235.169550px;}
.y23{bottom:235.304550px;}
.y11f{bottom:235.917600px;}
.ye1{bottom:238.967250px;}
.y90{bottom:239.333400px;}
.y185{bottom:242.367600px;}
.y157{bottom:245.232600px;}
.yb7{bottom:245.363850px;}
.ya4{bottom:246.107100px;}
.y5e{bottom:252.709200px;}
.y30{bottom:253.169550px;}
.y22{bottom:253.304550px;}
.y11e{bottom:253.917600px;}
.y184{bottom:260.367600px;}
.y156{bottom:263.232600px;}
.yb6{bottom:263.363850px;}
.ye0{bottom:270.479250px;}
.y5d{bottom:270.709200px;}
.y8f{bottom:270.845400px;}
.y2f{bottom:271.169550px;}
.y21{bottom:271.304550px;}
.y11d{bottom:271.917600px;}
.y183{bottom:278.367600px;}
.y155{bottom:281.232600px;}
.yb5{bottom:281.363850px;}
.y5c{bottom:288.709200px;}
.y2e{bottom:289.169550px;}
.y20{bottom:289.304550px;}
.y11c{bottom:289.917600px;}
.y182{bottom:296.367600px;}
.y154{bottom:299.232600px;}
.yb4{bottom:299.363850px;}
.ydf{bottom:305.299350px;}
.y8e{bottom:305.663850px;}
.y5b{bottom:306.709200px;}
.y2d{bottom:307.169550px;}
.y1f{bottom:307.304550px;}
.y11b{bottom:307.917600px;}
.y181{bottom:314.367600px;}
.y153{bottom:317.232600px;}
.yb3{bottom:317.363850px;}
.y5a{bottom:324.709200px;}
.yde{bottom:324.799350px;}
.y8d{bottom:325.163850px;}
.y2c{bottom:325.169550px;}
.y1e{bottom:325.304550px;}
.y11a{bottom:325.917600px;}
.y180{bottom:332.367600px;}
.y152{bottom:335.232600px;}
.yb2{bottom:335.363850px;}
.y59{bottom:342.709200px;}
.y2b{bottom:343.169550px;}
.y1d{bottom:343.304550px;}
.y119{bottom:343.917600px;}
.ydd{bottom:344.299350px;}
.y17f{bottom:350.367600px;}
.y151{bottom:353.232600px;}
.yb1{bottom:353.363850px;}
.y58{bottom:360.709200px;}
.y2a{bottom:361.169550px;}
.y1c{bottom:361.304550px;}
.y118{bottom:361.917600px;}
.y17e{bottom:368.367600px;}
.y150{bottom:371.232600px;}
.y8c{bottom:371.363850px;}
.y57{bottom:378.709200px;}
.y29{bottom:379.169550px;}
.y1b{bottom:379.304550px;}
.y117{bottom:379.917600px;}
.ydc{bottom:385.909350px;}
.y17d{bottom:386.367600px;}
.y14f{bottom:389.232600px;}
.y8b{bottom:389.363850px;}
.yab{bottom:393.217650px;}
.y56{bottom:396.709200px;}
.y28{bottom:397.169550px;}
.y1a{bottom:397.304550px;}
.y116{bottom:397.917600px;}
.ydb{bottom:403.909350px;}
.y17c{bottom:404.367600px;}
.y14e{bottom:407.232600px;}
.y8a{bottom:407.363850px;}
.y55{bottom:414.709200px;}
.y19{bottom:415.304550px;}
.y115{bottom:415.917600px;}
.yda{bottom:421.909350px;}
.y14d{bottom:425.232600px;}
.y89{bottom:425.363850px;}
.y54{bottom:432.709200px;}
.y27{bottom:433.169550px;}
.y18{bottom:433.304550px;}
.y114{bottom:433.917600px;}
.yd9{bottom:439.909350px;}
.y17b{bottom:439.938300px;}
.y14c{bottom:443.232600px;}
.y88{bottom:443.363850px;}
.y53{bottom:450.709200px;}
.y17{bottom:451.304550px;}
.y113{bottom:451.917600px;}
.y17a{bottom:454.938300px;}
.y12c{bottom:457.414050px;}
.yd8{bottom:457.909350px;}
.y14b{bottom:461.232600px;}
.y87{bottom:461.363850px;}
.y52{bottom:468.709200px;}
.y16{bottom:469.304550px;}
.y112{bottom:469.917600px;}
.y179{bottom:469.938300px;}
.yd7{bottom:475.909350px;}
.y86{bottom:479.363850px;}
.y178{bottom:484.938300px;}
.y51{bottom:486.709200px;}
.y15{bottom:487.304550px;}
.y111{bottom:487.917600px;}
.yd6{bottom:493.909350px;}
.y14a{bottom:497.232600px;}
.y85{bottom:497.363850px;}
.y177{bottom:499.938300px;}
.y50{bottom:504.709200px;}
.y14{bottom:505.304550px;}
.y110{bottom:505.917600px;}
.yd5{bottom:511.909350px;}
.yec{bottom:513.761400px;}
.y176{bottom:514.938300px;}
.y84{bottom:515.363850px;}
.yed{bottom:515.669400px;}
.y12b{bottom:519.070050px;}
.y4f{bottom:522.709200px;}
.y13{bottom:523.304550px;}
.y10f{bottom:523.917600px;}
.yd4{bottom:529.909350px;}
.y175{bottom:529.938300px;}
.y83{bottom:533.363850px;}
.y4e{bottom:540.709200px;}
.y12{bottom:541.304550px;}
.y10e{bottom:541.917600px;}
.y174{bottom:544.938300px;}
.yd3{bottom:547.909350px;}
.y82{bottom:551.363850px;}
.y149{bottom:551.367600px;}
.y4d{bottom:558.709200px;}
.y11{bottom:559.304550px;}
.y10d{bottom:559.917600px;}
.y173{bottom:559.938300px;}
.yd2{bottom:565.909350px;}
.y81{bottom:569.363850px;}
.y148{bottom:569.367600px;}
.ya0{bottom:572.663100px;}
.y172{bottom:574.938300px;}
.y4c{bottom:576.709200px;}
.y10{bottom:577.304550px;}
.yd1{bottom:583.909350px;}
.y80{bottom:587.363850px;}
.y147{bottom:587.367600px;}
.ya1{bottom:589.031100px;}
.y171{bottom:589.938300px;}
.y10c{bottom:593.517600px;}
.y4b{bottom:594.709200px;}
.yf{bottom:595.304550px;}
.yd0{bottom:601.909350px;}
.ya2{bottom:602.855100px;}
.y170{bottom:604.938300px;}
.y7f{bottom:605.363850px;}
.y146{bottom:605.367600px;}
.y10b{bottom:611.517600px;}
.y4a{bottom:612.709200px;}
.y26{bottom:613.304550px;}
.ycf{bottom:619.909350px;}
.y16f{bottom:619.938300px;}
.y7e{bottom:623.363850px;}
.y145{bottom:623.367600px;}
.y49{bottom:630.709200px;}
.ye{bottom:631.304550px;}
.y16e{bottom:634.938300px;}
.yce{bottom:637.909350px;}
.y12a{bottom:638.662050px;}
.y7d{bottom:641.363850px;}
.y144{bottom:641.367600px;}
.y10a{bottom:647.367600px;}
.y48{bottom:648.709200px;}
.y16d{bottom:649.938300px;}
.ycd{bottom:655.909350px;}
.yaa{bottom:656.413650px;}
.y7c{bottom:659.363850px;}
.y143{bottom:659.367600px;}
.y16c{bottom:664.938300px;}
.y109{bottom:665.367600px;}
.y47{bottom:666.709200px;}
.ycc{bottom:673.909350px;}
.y7b{bottom:677.363850px;}
.y142{bottom:677.367600px;}
.y16b{bottom:679.938300px;}
.y108{bottom:683.367600px;}
.y46{bottom:684.709200px;}
.ycb{bottom:691.909350px;}
.y1a3{bottom:694.938300px;}
.y7a{bottom:695.363850px;}
.y141{bottom:695.367600px;}
.y107{bottom:701.367600px;}
.y45{bottom:702.709200px;}
.yc{bottom:705.555900px;}
.yca{bottom:709.909350px;}
.y1a2{bottom:709.938300px;}
.y9f{bottom:711.059100px;}
.y79{bottom:713.363850px;}
.y140{bottom:713.367600px;}
.y16a{bottom:713.382600px;}
.y106{bottom:719.367600px;}
.y1a1{bottom:724.938300px;}
.yc9{bottom:727.909350px;}
.y78{bottom:731.363850px;}
.y13f{bottom:731.367600px;}
.y169{bottom:731.382600px;}
.yeb{bottom:732.101400px;}
.y105{bottom:737.367600px;}
.y44{bottom:737.586900px;}
.yb{bottom:738.411900px;}
.y1a0{bottom:739.938300px;}
.yc8{bottom:745.909350px;}
.y77{bottom:749.363850px;}
.y13e{bottom:749.367600px;}
.y43{bottom:753.192900px;}
.ya{bottom:753.411900px;}
.y19f{bottom:754.938300px;}
.y104{bottom:755.367600px;}
.y168{bottom:767.232600px;}
.y76{bottom:767.363850px;}
.y13d{bottom:767.367600px;}
.y42{bottom:767.512950px;}
.y9{bottom:768.411900px;}
.y19e{bottom:769.938300px;}
.y103{bottom:773.367600px;}
.ya9{bottom:774.613650px;}
.yc7{bottom:781.482900px;}
.y8{bottom:783.411900px;}
.y19d{bottom:784.938300px;}
.y167{bottom:785.232600px;}
.y75{bottom:785.363850px;}
.y13c{bottom:785.367600px;}
.y41{bottom:785.512950px;}
.y102{bottom:791.367600px;}
.yc6{bottom:796.482900px;}
.y7{bottom:798.411900px;}
.y19c{bottom:799.938300px;}
.y166{bottom:803.232600px;}
.y74{bottom:803.363850px;}
.y13b{bottom:803.367600px;}
.y101{bottom:809.367600px;}
.yc5{bottom:811.482900px;}
.y129{bottom:812.458050px;}
.y6{bottom:813.411900px;}
.y19b{bottom:814.938300px;}
.y9e{bottom:819.479100px;}
.y40{bottom:820.938300px;}
.y165{bottom:821.232600px;}
.y73{bottom:821.363850px;}
.y13a{bottom:821.367600px;}
.yc4{bottom:826.482900px;}
.y100{bottom:827.367600px;}
.y19a{bottom:829.938300px;}
.y3f{bottom:835.938300px;}
.y164{bottom:839.232600px;}
.yb0{bottom:839.363850px;}
.y139{bottom:839.367600px;}
.y72{bottom:839.768850px;}
.y199{bottom:844.938300px;}
.yff{bottom:845.367600px;}
.y3e{bottom:850.938300px;}
.y163{bottom:857.232600px;}
.y71{bottom:857.363850px;}
.y138{bottom:857.367600px;}
.yc3{bottom:857.513850px;}
.y198{bottom:859.938300px;}
.y5{bottom:861.930000px;}
.yfe{bottom:863.367600px;}
.y3d{bottom:865.938300px;}
.ya8{bottom:867.733650px;}
.y197{bottom:874.938300px;}
.y162{bottom:875.232600px;}
.y70{bottom:875.363850px;}
.y137{bottom:875.367600px;}
.yc2{bottom:875.513850px;}
.y3c{bottom:880.938300px;}
.yfd{bottom:881.367600px;}
.y196{bottom:889.938300px;}
.y6f{bottom:893.363850px;}
.y136{bottom:893.367600px;}
.yc1{bottom:893.513850px;}
.y3b{bottom:895.938300px;}
.y9d{bottom:898.139100px;}
.yfc{bottom:899.367600px;}
.y4{bottom:900.773850px;}
.y195{bottom:904.938300px;}
.y161{bottom:911.232600px;}
.y6e{bottom:911.363850px;}
.y135{bottom:911.367600px;}
.y3{bottom:917.273850px;}
.yfb{bottom:917.367600px;}
.y194{bottom:919.938300px;}
.y3a{bottom:929.363850px;}
.y134{bottom:929.367600px;}
.y2{bottom:932.541300px;}
.y193{bottom:934.938300px;}
.yfa{bottom:935.367600px;}
.y6d{bottom:947.363850px;}
.y133{bottom:947.367600px;}
.y192{bottom:949.938300px;}
.yf9{bottom:953.367600px;}
.y1{bottom:959.936700px;}
.y191{bottom:964.938300px;}
.y39{bottom:965.228850px;}
.yaf{bottom:965.363850px;}
.y132{bottom:965.367600px;}
.y6c{bottom:965.374200px;}
.yf8{bottom:971.367600px;}
.y190{bottom:979.938300px;}
.yae{bottom:983.363850px;}
.y131{bottom:983.367600px;}
.y6b{bottom:983.374200px;}
.yf7{bottom:989.367600px;}
.y18f{bottom:994.938300px;}
.yad{bottom:1001.363850px;}
.y130{bottom:1001.367600px;}
.y6a{bottom:1001.374200px;}
.y18e{bottom:1009.938300px;}
.y38{bottom:1019.363850px;}
.y12f{bottom:1019.367600px;}
.y69{bottom:1019.374200px;}
.y18d{bottom:1024.938300px;}
.yf6{bottom:1024.939050px;}
.y37{bottom:1037.363850px;}
.y12e{bottom:1037.367600px;}
.y68{bottom:1037.374200px;}
.y18c{bottom:1039.938300px;}
.yf5{bottom:1039.939050px;}
.y35{bottom:1070.769450px;}
.y9a{bottom:1086.066450px;}
.y34{bottom:1086.069450px;}
.h4{height:20.967187px;}
.h5{height:34.945312px;}
.h6{height:34.992188px;}
.h9{height:37.179199px;}
.ha{height:39.366211px;}
.hb{height:42.120234px;}
.h7{height:43.681641px;}
.h8{height:43.740234px;}
.h3{height:51.523955px;}
.h2{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x10{left:80.466150px;}
.x8{left:96.094500px;}
.x1{left:97.795350px;}
.xd{left:106.295400px;}
.x12{left:110.551050px;}
.x2f{left:126.685800px;}
.x4{left:131.816400px;}
.x2{left:161.571600px;}
.xe{left:163.435650px;}
.x1f{left:188.767350px;}
.xf{left:194.710650px;}
.x11{left:196.768650px;}
.xc{left:201.770400px;}
.xb{left:211.100400px;}
.x3{left:212.876400px;}
.x37{left:220.131000px;}
.x1c{left:240.427350px;}
.x2e{left:245.783400px;}
.x33{left:257.780850px;}
.x1e{left:341.839350px;}
.x2d{left:343.151400px;}
.x23{left:353.754600px;}
.x1b{left:394.351350px;}
.x9{left:455.041500px;}
.x13{left:457.066050px;}
.x16{left:459.224700px;}
.x22{left:468.138600px;}
.x1a{left:469.831350px;}
.x18{left:473.347350px;}
.x2c{left:477.299400px;}
.x25{left:478.360350px;}
.x36{left:479.420850px;}
.x5{left:480.476400px;}
.x39{left:486.795150px;}
.x14{left:491.086050px;}
.x38{left:501.302400px;}
.x29{left:508.118400px;}
.x26{left:512.380350px;}
.x6{left:514.496400px;}
.x19{left:524.047350px;}
.x34{left:530.972850px;}
.x21{left:534.474600px;}
.x32{left:543.188850px;}
.x7{left:549.731400px;}
.x15{left:575.180700px;}
.x28{left:592.360350px;}
.x2a{left:596.440500px;}
.x30{left:597.787200px;}
.x31{left:604.882200px;}
.x27{left:630.700350px;}
.x2b{left:656.939400px;}
.x24{left:664.566600px;}
.x35{left:705.836850px;}
.x1d{left:717.715350px;}
.x17{left:724.221150px;}
.x20{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v6{vertical-align:-9.088000pt;}
.v7{vertical-align:-6.058667pt;}
.v4{vertical-align:-3.062933pt;}
.v5{vertical-align:-1.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:20.138133pt;}
.ls3e{letter-spacing:-4.736000pt;}
.ls3f{letter-spacing:-3.157333pt;}
.ls78{letter-spacing:-2.346667pt;}
.ls3d{letter-spacing:-1.578667pt;}
.ls58{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls59{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls4e{letter-spacing:-0.106667pt;}
.ls79{letter-spacing:-0.085333pt;}
.ls1f{letter-spacing:-0.074667pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.042667pt;}
.ls20{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls34{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls4{letter-spacing:0.042667pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls6f{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.213333pt;}
.ls5a{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.373333pt;}
.ls64{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls71{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.586667pt;}
.ls62{letter-spacing:0.597333pt;}
.ls3a{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.693333pt;}
.ls60{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls12{letter-spacing:0.906667pt;}
.ls63{letter-spacing:0.938667pt;}
.ls3b{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.013333pt;}
.ls33{letter-spacing:1.066667pt;}
.ls49{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.173333pt;}
.ls6c{letter-spacing:1.194667pt;}
.ls8{letter-spacing:1.226667pt;}
.ls39{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.333333pt;}
.ls43{letter-spacing:1.386667pt;}
.ls73{letter-spacing:1.408000pt;}
.ls48{letter-spacing:1.440000pt;}
.ls74{letter-spacing:1.450667pt;}
.ls6{letter-spacing:1.493333pt;}
.ls13{letter-spacing:1.546667pt;}
.ls4b{letter-spacing:1.578667pt;}
.ls28{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.621333pt;}
.ls5{letter-spacing:1.653333pt;}
.ls7{letter-spacing:1.706667pt;}
.ls4d{letter-spacing:1.760000pt;}
.ls10{letter-spacing:1.813333pt;}
.ls57{letter-spacing:1.866667pt;}
.lsb{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.973333pt;}
.ls26{letter-spacing:2.026667pt;}
.ls75{letter-spacing:2.048000pt;}
.ls35{letter-spacing:2.080000pt;}
.ls70{letter-spacing:2.090667pt;}
.ls5e{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.186667pt;}
.ls40{letter-spacing:2.240000pt;}
.lsf{letter-spacing:2.293333pt;}
.ls19{letter-spacing:2.346667pt;}
.ls6e{letter-spacing:2.389333pt;}
.ls27{letter-spacing:2.400000pt;}
.ls5b{letter-spacing:2.453333pt;}
.ls1c{letter-spacing:2.506667pt;}
.ls11{letter-spacing:2.560000pt;}
.ls3c{letter-spacing:2.613333pt;}
.ls4c{letter-spacing:2.645333pt;}
.ls1e{letter-spacing:2.666667pt;}
.ls31{letter-spacing:2.720000pt;}
.ls4a{letter-spacing:2.773333pt;}
.ls6a{letter-spacing:2.816000pt;}
.ls42{letter-spacing:2.826667pt;}
.ls69{letter-spacing:2.901333pt;}
.ls14{letter-spacing:2.933333pt;}
.ls25{letter-spacing:2.986667pt;}
.ls77{letter-spacing:3.029333pt;}
.ls30{letter-spacing:3.040000pt;}
.ls2e{letter-spacing:3.093333pt;}
.ls6d{letter-spacing:3.114667pt;}
.ls1b{letter-spacing:3.146667pt;}
.ls44{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.253333pt;}
.ls55{letter-spacing:3.306667pt;}
.ls46{letter-spacing:3.360000pt;}
.ls68{letter-spacing:3.456000pt;}
.ls41{letter-spacing:3.520000pt;}
.ls47{letter-spacing:3.626667pt;}
.ls76{letter-spacing:3.669333pt;}
.ls61{letter-spacing:3.712000pt;}
.ls32{letter-spacing:3.733333pt;}
.ls65{letter-spacing:3.786667pt;}
.ls66{letter-spacing:3.840000pt;}
.ls6b{letter-spacing:4.608000pt;}
.ls51{letter-spacing:4.640000pt;}
.ls5d{letter-spacing:4.693333pt;}
.ls67{letter-spacing:4.821333pt;}
.ls1a{letter-spacing:4.853333pt;}
.lsc{letter-spacing:4.906667pt;}
.ls54{letter-spacing:4.960000pt;}
.ls4f{letter-spacing:5.066667pt;}
.ls53{letter-spacing:5.600000pt;}
.ls5f{letter-spacing:5.653333pt;}
.ls5c{letter-spacing:5.760000pt;}
.ls50{letter-spacing:6.240000pt;}
.ls52{letter-spacing:9.546667pt;}
.ws22{word-spacing:-53.333333pt;}
.ws5a{word-spacing:-19.893333pt;}
.ws5c{word-spacing:-19.786667pt;}
.ws5b{word-spacing:-19.466667pt;}
.ws71{word-spacing:-18.613333pt;}
.ws44{word-spacing:-18.453333pt;}
.ws24{word-spacing:-18.080000pt;}
.ws1c{word-spacing:-17.813333pt;}
.ws6c{word-spacing:-17.333333pt;}
.ws23{word-spacing:-17.226667pt;}
.ws1f{word-spacing:-17.173333pt;}
.ws43{word-spacing:-17.066667pt;}
.ws5e{word-spacing:-16.693333pt;}
.ws41{word-spacing:-16.640000pt;}
.ws45{word-spacing:-16.586667pt;}
.ws5{word-spacing:-16.533333pt;}
.ws3{word-spacing:-16.480000pt;}
.ws46{word-spacing:-16.373333pt;}
.ws4{word-spacing:-16.320000pt;}
.ws42{word-spacing:-16.213333pt;}
.ws6f{word-spacing:-16.160000pt;}
.ws1d{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.893333pt;}
.ws6d{word-spacing:-15.520000pt;}
.ws70{word-spacing:-15.306667pt;}
.ws59{word-spacing:-15.200000pt;}
.ws5d{word-spacing:-14.880000pt;}
.ws1a{word-spacing:-14.826667pt;}
.ws6e{word-spacing:-14.773333pt;}
.ws81{word-spacing:-14.677333pt;}
.ws84{word-spacing:-13.568000pt;}
.ws83{word-spacing:-12.373333pt;}
.ws1{word-spacing:-12.160000pt;}
.ws82{word-spacing:-11.989333pt;}
.ws1b{word-spacing:-11.861333pt;}
.ws2{word-spacing:-11.434667pt;}
.ws7b{word-spacing:-10.496000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws80{word-spacing:-9.514667pt;}
.ws21{word-spacing:-8.896000pt;}
.ws67{word-spacing:-6.240000pt;}
.ws79{word-spacing:-5.973333pt;}
.ws7a{word-spacing:-5.930667pt;}
.ws7c{word-spacing:-5.802667pt;}
.ws35{word-spacing:-3.253333pt;}
.ws62{word-spacing:-2.986667pt;}
.ws19{word-spacing:-2.666667pt;}
.ws30{word-spacing:-1.653333pt;}
.ws72{word-spacing:-1.386667pt;}
.ws31{word-spacing:-1.333333pt;}
.ws7d{word-spacing:-1.322667pt;}
.ws78{word-spacing:-1.194667pt;}
.ws76{word-spacing:-1.173333pt;}
.ws34{word-spacing:-1.066667pt;}
.ws66{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.853333pt;}
.ws8a{word-spacing:-0.768000pt;}
.ws74{word-spacing:-0.480000pt;}
.ws3c{word-spacing:-0.298667pt;}
.ws87{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.ws7{word-spacing:0.074667pt;}
.ws53{word-spacing:0.106667pt;}
.wsd{word-spacing:0.160000pt;}
.ws89{word-spacing:0.170667pt;}
.ws39{word-spacing:0.213333pt;}
.ws69{word-spacing:0.320000pt;}
.wse{word-spacing:0.373333pt;}
.ws2c{word-spacing:0.384000pt;}
.ws88{word-spacing:0.426667pt;}
.ws86{word-spacing:0.469333pt;}
.ws7e{word-spacing:0.586667pt;}
.ws73{word-spacing:0.746667pt;}
.wsc{word-spacing:0.810667pt;}
.ws64{word-spacing:0.853333pt;}
.wsb{word-spacing:0.896000pt;}
.ws50{word-spacing:1.013333pt;}
.ws38{word-spacing:1.173333pt;}
.ws4d{word-spacing:1.226667pt;}
.ws85{word-spacing:1.280000pt;}
.ws56{word-spacing:1.333333pt;}
.ws5f{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.546667pt;}
.ws6a{word-spacing:1.600000pt;}
.ws65{word-spacing:1.621333pt;}
.wsa{word-spacing:1.706667pt;}
.ws68{word-spacing:1.760000pt;}
.ws54{word-spacing:1.866667pt;}
.ws16{word-spacing:1.973333pt;}
.ws4f{word-spacing:2.026667pt;}
.ws58{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.186667pt;}
.ws13{word-spacing:2.240000pt;}
.ws4c{word-spacing:2.346667pt;}
.ws52{word-spacing:2.400000pt;}
.ws14{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.666667pt;}
.ws2e{word-spacing:2.773333pt;}
.ws63{word-spacing:2.826667pt;}
.ws11{word-spacing:2.933333pt;}
.ws51{word-spacing:3.093333pt;}
.ws75{word-spacing:3.146667pt;}
.ws40{word-spacing:3.157333pt;}
.ws33{word-spacing:3.466667pt;}
.ws77{word-spacing:3.520000pt;}
.ws37{word-spacing:3.733333pt;}
.ws4e{word-spacing:3.786667pt;}
.ws8{word-spacing:3.882667pt;}
.ws9{word-spacing:3.925333pt;}
.ws32{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.160000pt;}
.ws17{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.224000pt;}
.ws60{word-spacing:4.266667pt;}
.ws61{word-spacing:4.426667pt;}
.ws3a{word-spacing:4.480000pt;}
.ws18{word-spacing:4.533333pt;}
.ws2d{word-spacing:4.586667pt;}
.ws12{word-spacing:4.640000pt;}
.ws6b{word-spacing:4.693333pt;}
.ws36{word-spacing:4.746667pt;}
.ws10{word-spacing:4.853333pt;}
.wsf{word-spacing:4.906667pt;}
.ws29{word-spacing:207.488000pt;}
.ws47{word-spacing:209.066667pt;}
.ws26{word-spacing:219.349333pt;}
.ws2b{word-spacing:231.210667pt;}
.ws25{word-spacing:238.336000pt;}
.ws4a{word-spacing:241.877333pt;}
.ws48{word-spacing:247.808000pt;}
.ws49{word-spacing:259.669333pt;}
.ws28{word-spacing:319.786667pt;}
.ws2a{word-spacing:331.648000pt;}
.ws27{word-spacing:360.149333pt;}
.ws3e{word-spacing:569.600000pt;}
.ws3f{word-spacing:1058.218667pt;}
.ws57{word-spacing:1249.920000pt;}
._11{margin-left:-2576.112000pt;}
._12{margin-left:-2554.941333pt;}
._a{margin-left:-14.986667pt;}
._16{margin-left:-7.445333pt;}
._4{margin-left:-6.512000pt;}
._0{margin-left:-5.525333pt;}
._2{margin-left:-4.341333pt;}
._1{margin-left:-3.136000pt;}
._5{margin-left:-1.866667pt;}
._3{margin-left:-0.955733pt;}
._6{width:0.906667pt;}
._b{width:2.933333pt;}
._9{width:3.946667pt;}
._7{width:4.906667pt;}
._8{width:6.240000pt;}
._1b{width:10.709333pt;}
._19{width:26.634667pt;}
._17{width:29.354667pt;}
._1a{width:50.474667pt;}
._18{width:55.552000pt;}
._d{width:232.000000pt;}
._e{width:255.722667pt;}
._13{width:288.960000pt;}
._10{width:339.968000pt;}
._f{width:342.357333pt;}
._c{width:353.024000pt;}
._15{width:374.400000pt;}
._14{width:376.789333pt;}
.fs3{font-size:25.600000pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:73.396533pt;}
.ya7{bottom:73.711467pt;}
.y160{bottom:73.984533pt;}
.yc0{bottom:74.101200pt;}
.y36{bottom:74.216800pt;}
.y128{bottom:75.139200pt;}
.y18b{bottom:76.263733pt;}
.y67{bottom:80.630400pt;}
.y127{bottom:81.704533pt;}
.yea{bottom:82.431333pt;}
.y99{bottom:82.756800pt;}
.yf4{bottom:87.184933pt;}
.y9b{bottom:87.391200pt;}
.ya6{bottom:87.706133pt;}
.y18a{bottom:89.597067pt;}
.y15f{bottom:89.984533pt;}
.ybf{bottom:90.101200pt;}
.y66{bottom:96.630400pt;}
.ye9{bottom:96.874000pt;}
.y98{bottom:97.199467pt;}
.y126{bottom:97.704533pt;}
.yf3{bottom:100.518267pt;}
.y12d{bottom:103.752933pt;}
.y15e{bottom:105.984533pt;}
.ybe{bottom:106.101200pt;}
.ye8{bottom:111.316667pt;}
.y97{bottom:111.642133pt;}
.ya5{bottom:112.553867pt;}
.y65{bottom:112.630400pt;}
.y125{bottom:113.704533pt;}
.yf2{bottom:113.851600pt;}
.y189{bottom:119.317867pt;}
.yee{bottom:120.100800pt;}
.y15d{bottom:121.984533pt;}
.ybd{bottom:122.101200pt;}
.ye7{bottom:125.759333pt;}
.y96{bottom:126.084800pt;}
.yf1{bottom:127.184933pt;}
.y64{bottom:128.630400pt;}
.y124{bottom:129.704533pt;}
.yd{bottom:130.200800pt;}
.y15c{bottom:137.984533pt;}
.ybc{bottom:138.101200pt;}
.ye6{bottom:140.202000pt;}
.yf0{bottom:140.518267pt;}
.y95{bottom:140.527467pt;}
.y63{bottom:144.630400pt;}
.ya3{bottom:145.065867pt;}
.y123{bottom:145.704533pt;}
.y15b{bottom:153.984533pt;}
.ybb{bottom:154.101200pt;}
.ye5{bottom:154.644667pt;}
.y94{bottom:154.970133pt;}
.y62{bottom:160.630400pt;}
.y122{bottom:161.704533pt;}
.yac{bottom:162.817467pt;}
.y188{bottom:167.437867pt;}
.ye4{bottom:169.087333pt;}
.y93{bottom:169.412800pt;}
.y15a{bottom:169.984533pt;}
.yba{bottom:170.101200pt;}
.yef{bottom:170.234533pt;}
.y61{bottom:176.630400pt;}
.y33{bottom:177.039600pt;}
.y25{bottom:177.159600pt;}
.y121{bottom:177.704533pt;}
.y187{bottom:183.437867pt;}
.ye3{bottom:183.530000pt;}
.y92{bottom:183.855467pt;}
.y159{bottom:185.984533pt;}
.yb9{bottom:186.101200pt;}
.y60{bottom:192.630400pt;}
.y32{bottom:193.039600pt;}
.y24{bottom:193.159600pt;}
.y120{bottom:193.704533pt;}
.ye2{bottom:197.972667pt;}
.y91{bottom:198.298133pt;}
.y186{bottom:199.437867pt;}
.y158{bottom:201.984533pt;}
.yb8{bottom:202.101200pt;}
.y5f{bottom:208.630400pt;}
.y31{bottom:209.039600pt;}
.y23{bottom:209.159600pt;}
.y11f{bottom:209.704533pt;}
.ye1{bottom:212.415333pt;}
.y90{bottom:212.740800pt;}
.y185{bottom:215.437867pt;}
.y157{bottom:217.984533pt;}
.yb7{bottom:218.101200pt;}
.ya4{bottom:218.761867pt;}
.y5e{bottom:224.630400pt;}
.y30{bottom:225.039600pt;}
.y22{bottom:225.159600pt;}
.y11e{bottom:225.704533pt;}
.y184{bottom:231.437867pt;}
.y156{bottom:233.984533pt;}
.yb6{bottom:234.101200pt;}
.ye0{bottom:240.426000pt;}
.y5d{bottom:240.630400pt;}
.y8f{bottom:240.751467pt;}
.y2f{bottom:241.039600pt;}
.y21{bottom:241.159600pt;}
.y11d{bottom:241.704533pt;}
.y183{bottom:247.437867pt;}
.y155{bottom:249.984533pt;}
.yb5{bottom:250.101200pt;}
.y5c{bottom:256.630400pt;}
.y2e{bottom:257.039600pt;}
.y20{bottom:257.159600pt;}
.y11c{bottom:257.704533pt;}
.y182{bottom:263.437867pt;}
.y154{bottom:265.984533pt;}
.yb4{bottom:266.101200pt;}
.ydf{bottom:271.377200pt;}
.y8e{bottom:271.701200pt;}
.y5b{bottom:272.630400pt;}
.y2d{bottom:273.039600pt;}
.y1f{bottom:273.159600pt;}
.y11b{bottom:273.704533pt;}
.y181{bottom:279.437867pt;}
.y153{bottom:281.984533pt;}
.yb3{bottom:282.101200pt;}
.y5a{bottom:288.630400pt;}
.yde{bottom:288.710533pt;}
.y8d{bottom:289.034533pt;}
.y2c{bottom:289.039600pt;}
.y1e{bottom:289.159600pt;}
.y11a{bottom:289.704533pt;}
.y180{bottom:295.437867pt;}
.y152{bottom:297.984533pt;}
.yb2{bottom:298.101200pt;}
.y59{bottom:304.630400pt;}
.y2b{bottom:305.039600pt;}
.y1d{bottom:305.159600pt;}
.y119{bottom:305.704533pt;}
.ydd{bottom:306.043867pt;}
.y17f{bottom:311.437867pt;}
.y151{bottom:313.984533pt;}
.yb1{bottom:314.101200pt;}
.y58{bottom:320.630400pt;}
.y2a{bottom:321.039600pt;}
.y1c{bottom:321.159600pt;}
.y118{bottom:321.704533pt;}
.y17e{bottom:327.437867pt;}
.y150{bottom:329.984533pt;}
.y8c{bottom:330.101200pt;}
.y57{bottom:336.630400pt;}
.y29{bottom:337.039600pt;}
.y1b{bottom:337.159600pt;}
.y117{bottom:337.704533pt;}
.ydc{bottom:343.030533pt;}
.y17d{bottom:343.437867pt;}
.y14f{bottom:345.984533pt;}
.y8b{bottom:346.101200pt;}
.yab{bottom:349.526800pt;}
.y56{bottom:352.630400pt;}
.y28{bottom:353.039600pt;}
.y1a{bottom:353.159600pt;}
.y116{bottom:353.704533pt;}
.ydb{bottom:359.030533pt;}
.y17c{bottom:359.437867pt;}
.y14e{bottom:361.984533pt;}
.y8a{bottom:362.101200pt;}
.y55{bottom:368.630400pt;}
.y19{bottom:369.159600pt;}
.y115{bottom:369.704533pt;}
.yda{bottom:375.030533pt;}
.y14d{bottom:377.984533pt;}
.y89{bottom:378.101200pt;}
.y54{bottom:384.630400pt;}
.y27{bottom:385.039600pt;}
.y18{bottom:385.159600pt;}
.y114{bottom:385.704533pt;}
.yd9{bottom:391.030533pt;}
.y17b{bottom:391.056267pt;}
.y14c{bottom:393.984533pt;}
.y88{bottom:394.101200pt;}
.y53{bottom:400.630400pt;}
.y17{bottom:401.159600pt;}
.y113{bottom:401.704533pt;}
.y17a{bottom:404.389600pt;}
.y12c{bottom:406.590267pt;}
.yd8{bottom:407.030533pt;}
.y14b{bottom:409.984533pt;}
.y87{bottom:410.101200pt;}
.y52{bottom:416.630400pt;}
.y16{bottom:417.159600pt;}
.y112{bottom:417.704533pt;}
.y179{bottom:417.722933pt;}
.yd7{bottom:423.030533pt;}
.y86{bottom:426.101200pt;}
.y178{bottom:431.056267pt;}
.y51{bottom:432.630400pt;}
.y15{bottom:433.159600pt;}
.y111{bottom:433.704533pt;}
.yd6{bottom:439.030533pt;}
.y14a{bottom:441.984533pt;}
.y85{bottom:442.101200pt;}
.y177{bottom:444.389600pt;}
.y50{bottom:448.630400pt;}
.y14{bottom:449.159600pt;}
.y110{bottom:449.704533pt;}
.yd5{bottom:455.030533pt;}
.yec{bottom:456.676800pt;}
.y176{bottom:457.722933pt;}
.y84{bottom:458.101200pt;}
.yed{bottom:458.372800pt;}
.y12b{bottom:461.395600pt;}
.y4f{bottom:464.630400pt;}
.y13{bottom:465.159600pt;}
.y10f{bottom:465.704533pt;}
.yd4{bottom:471.030533pt;}
.y175{bottom:471.056267pt;}
.y83{bottom:474.101200pt;}
.y4e{bottom:480.630400pt;}
.y12{bottom:481.159600pt;}
.y10e{bottom:481.704533pt;}
.y174{bottom:484.389600pt;}
.yd3{bottom:487.030533pt;}
.y82{bottom:490.101200pt;}
.y149{bottom:490.104533pt;}
.y4d{bottom:496.630400pt;}
.y11{bottom:497.159600pt;}
.y10d{bottom:497.704533pt;}
.y173{bottom:497.722933pt;}
.yd2{bottom:503.030533pt;}
.y81{bottom:506.101200pt;}
.y148{bottom:506.104533pt;}
.ya0{bottom:509.033867pt;}
.y172{bottom:511.056267pt;}
.y4c{bottom:512.630400pt;}
.y10{bottom:513.159600pt;}
.yd1{bottom:519.030533pt;}
.y80{bottom:522.101200pt;}
.y147{bottom:522.104533pt;}
.ya1{bottom:523.583200pt;}
.y171{bottom:524.389600pt;}
.y10c{bottom:527.571200pt;}
.y4b{bottom:528.630400pt;}
.yf{bottom:529.159600pt;}
.yd0{bottom:535.030533pt;}
.ya2{bottom:535.871200pt;}
.y170{bottom:537.722933pt;}
.y7f{bottom:538.101200pt;}
.y146{bottom:538.104533pt;}
.y10b{bottom:543.571200pt;}
.y4a{bottom:544.630400pt;}
.y26{bottom:545.159600pt;}
.ycf{bottom:551.030533pt;}
.y16f{bottom:551.056267pt;}
.y7e{bottom:554.101200pt;}
.y145{bottom:554.104533pt;}
.y49{bottom:560.630400pt;}
.ye{bottom:561.159600pt;}
.y16e{bottom:564.389600pt;}
.yce{bottom:567.030533pt;}
.y12a{bottom:567.699600pt;}
.y7d{bottom:570.101200pt;}
.y144{bottom:570.104533pt;}
.y10a{bottom:575.437867pt;}
.y48{bottom:576.630400pt;}
.y16d{bottom:577.722933pt;}
.ycd{bottom:583.030533pt;}
.yaa{bottom:583.478800pt;}
.y7c{bottom:586.101200pt;}
.y143{bottom:586.104533pt;}
.y16c{bottom:591.056267pt;}
.y109{bottom:591.437867pt;}
.y47{bottom:592.630400pt;}
.ycc{bottom:599.030533pt;}
.y7b{bottom:602.101200pt;}
.y142{bottom:602.104533pt;}
.y16b{bottom:604.389600pt;}
.y108{bottom:607.437867pt;}
.y46{bottom:608.630400pt;}
.ycb{bottom:615.030533pt;}
.y1a3{bottom:617.722933pt;}
.y7a{bottom:618.101200pt;}
.y141{bottom:618.104533pt;}
.y107{bottom:623.437867pt;}
.y45{bottom:624.630400pt;}
.yc{bottom:627.160800pt;}
.yca{bottom:631.030533pt;}
.y1a2{bottom:631.056267pt;}
.y9f{bottom:632.052533pt;}
.y79{bottom:634.101200pt;}
.y140{bottom:634.104533pt;}
.y16a{bottom:634.117867pt;}
.y106{bottom:639.437867pt;}
.y1a1{bottom:644.389600pt;}
.yc9{bottom:647.030533pt;}
.y78{bottom:650.101200pt;}
.y13f{bottom:650.104533pt;}
.y169{bottom:650.117867pt;}
.yeb{bottom:650.756800pt;}
.y105{bottom:655.437867pt;}
.y44{bottom:655.632800pt;}
.yb{bottom:656.366133pt;}
.y1a0{bottom:657.722933pt;}
.yc8{bottom:663.030533pt;}
.y77{bottom:666.101200pt;}
.y13e{bottom:666.104533pt;}
.y43{bottom:669.504800pt;}
.ya{bottom:669.699467pt;}
.y19f{bottom:671.056267pt;}
.y104{bottom:671.437867pt;}
.y168{bottom:681.984533pt;}
.y76{bottom:682.101200pt;}
.y13d{bottom:682.104533pt;}
.y42{bottom:682.233733pt;}
.y9{bottom:683.032800pt;}
.y19e{bottom:684.389600pt;}
.y103{bottom:687.437867pt;}
.ya9{bottom:688.545467pt;}
.yc7{bottom:694.651467pt;}
.y8{bottom:696.366133pt;}
.y19d{bottom:697.722933pt;}
.y167{bottom:697.984533pt;}
.y75{bottom:698.101200pt;}
.y13c{bottom:698.104533pt;}
.y41{bottom:698.233733pt;}
.y102{bottom:703.437867pt;}
.yc6{bottom:707.984800pt;}
.y7{bottom:709.699467pt;}
.y19c{bottom:711.056267pt;}
.y166{bottom:713.984533pt;}
.y74{bottom:714.101200pt;}
.y13b{bottom:714.104533pt;}
.y101{bottom:719.437867pt;}
.yc5{bottom:721.318133pt;}
.y129{bottom:722.184933pt;}
.y6{bottom:723.032800pt;}
.y19b{bottom:724.389600pt;}
.y9e{bottom:728.425867pt;}
.y40{bottom:729.722933pt;}
.y165{bottom:729.984533pt;}
.y73{bottom:730.101200pt;}
.y13a{bottom:730.104533pt;}
.yc4{bottom:734.651467pt;}
.y100{bottom:735.437867pt;}
.y19a{bottom:737.722933pt;}
.y3f{bottom:743.056267pt;}
.y164{bottom:745.984533pt;}
.yb0{bottom:746.101200pt;}
.y139{bottom:746.104533pt;}
.y72{bottom:746.461200pt;}
.y199{bottom:751.056267pt;}
.yff{bottom:751.437867pt;}
.y3e{bottom:756.389600pt;}
.y163{bottom:761.984533pt;}
.y71{bottom:762.101200pt;}
.y138{bottom:762.104533pt;}
.yc3{bottom:762.234533pt;}
.y198{bottom:764.389600pt;}
.y5{bottom:766.160000pt;}
.yfe{bottom:767.437867pt;}
.y3d{bottom:769.722933pt;}
.ya8{bottom:771.318800pt;}
.y197{bottom:777.722933pt;}
.y162{bottom:777.984533pt;}
.y70{bottom:778.101200pt;}
.y137{bottom:778.104533pt;}
.yc2{bottom:778.234533pt;}
.y3c{bottom:783.056267pt;}
.yfd{bottom:783.437867pt;}
.y196{bottom:791.056267pt;}
.y6f{bottom:794.101200pt;}
.y136{bottom:794.104533pt;}
.yc1{bottom:794.234533pt;}
.y3b{bottom:796.389600pt;}
.y9d{bottom:798.345867pt;}
.yfc{bottom:799.437867pt;}
.y4{bottom:800.687867pt;}
.y195{bottom:804.389600pt;}
.y161{bottom:809.984533pt;}
.y6e{bottom:810.101200pt;}
.y135{bottom:810.104533pt;}
.y3{bottom:815.354533pt;}
.yfb{bottom:815.437867pt;}
.y194{bottom:817.722933pt;}
.y3a{bottom:826.101200pt;}
.y134{bottom:826.104533pt;}
.y2{bottom:828.925600pt;}
.y193{bottom:831.056267pt;}
.yfa{bottom:831.437867pt;}
.y6d{bottom:842.101200pt;}
.y133{bottom:842.104533pt;}
.y192{bottom:844.389600pt;}
.yf9{bottom:847.437867pt;}
.y1{bottom:853.277067pt;}
.y191{bottom:857.722933pt;}
.y39{bottom:857.981200pt;}
.yaf{bottom:858.101200pt;}
.y132{bottom:858.104533pt;}
.y6c{bottom:858.110400pt;}
.yf8{bottom:863.437867pt;}
.y190{bottom:871.056267pt;}
.yae{bottom:874.101200pt;}
.y131{bottom:874.104533pt;}
.y6b{bottom:874.110400pt;}
.yf7{bottom:879.437867pt;}
.y18f{bottom:884.389600pt;}
.yad{bottom:890.101200pt;}
.y130{bottom:890.104533pt;}
.y6a{bottom:890.110400pt;}
.y18e{bottom:897.722933pt;}
.y38{bottom:906.101200pt;}
.y12f{bottom:906.104533pt;}
.y69{bottom:906.110400pt;}
.y18d{bottom:911.056267pt;}
.yf6{bottom:911.056933pt;}
.y37{bottom:922.101200pt;}
.y12e{bottom:922.104533pt;}
.y68{bottom:922.110400pt;}
.y18c{bottom:924.389600pt;}
.yf5{bottom:924.390267pt;}
.y35{bottom:951.795067pt;}
.y9a{bottom:965.392400pt;}
.y34{bottom:965.395067pt;}
.h4{height:18.637500pt;}
.h5{height:31.062500pt;}
.h6{height:31.104167pt;}
.h9{height:33.048177pt;}
.ha{height:34.992188pt;}
.hb{height:37.440208pt;}
.h7{height:38.828125pt;}
.h8{height:38.880208pt;}
.h3{height:45.799071pt;}
.h2{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x10{left:71.525467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929200pt;}
.xd{left:94.484800pt;}
.x12{left:98.267600pt;}
.x2f{left:112.609600pt;}
.x4{left:117.170133pt;}
.x2{left:143.619200pt;}
.xe{left:145.276133pt;}
.x1f{left:167.793200pt;}
.xf{left:173.076133pt;}
.x11{left:174.905467pt;}
.xc{left:179.351467pt;}
.xb{left:187.644800pt;}
.x3{left:189.223467pt;}
.x37{left:195.672000pt;}
.x1c{left:213.713200pt;}
.x2e{left:218.474133pt;}
.x33{left:229.138533pt;}
.x1e{left:303.857200pt;}
.x2d{left:305.023467pt;}
.x23{left:314.448533pt;}
.x1b{left:350.534533pt;}
.x9{left:404.481333pt;}
.x13{left:406.280933pt;}
.x16{left:408.199733pt;}
.x22{left:416.123200pt;}
.x1a{left:417.627867pt;}
.x18{left:420.753200pt;}
.x2c{left:424.266133pt;}
.x25{left:425.209200pt;}
.x36{left:426.151867pt;}
.x5{left:427.090133pt;}
.x39{left:432.706800pt;}
.x14{left:436.520933pt;}
.x38{left:445.602133pt;}
.x29{left:451.660800pt;}
.x26{left:455.449200pt;}
.x6{left:457.330133pt;}
.x19{left:465.819867pt;}
.x34{left:471.975867pt;}
.x21{left:475.088533pt;}
.x32{left:482.834533pt;}
.x7{left:488.650133pt;}
.x15{left:511.271733pt;}
.x28{left:526.542533pt;}
.x2a{left:530.169333pt;}
.x30{left:531.366400pt;}
.x31{left:537.673067pt;}
.x27{left:560.622533pt;}
.x2b{left:583.946133pt;}
.x24{left:590.725867pt;}
.x35{left:627.410533pt;}
.x1d{left:637.969200pt;}
.x17{left:643.752133pt;}
.x20{left:662.649733pt;}
}




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