
    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_3ea12a038ab15f17e794af47.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_9de3a6a87ff4471b7419c565.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d3bfe157163b4835b68093bb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3535ebaae6e1627dc7561ef7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dbdafde6bb0b94e562fb6696.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21ac6424982b985a14f4a7d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_387ec6c802d8ffc91ed092de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6a3b4a4f84dc867898c36317.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf329055b5e9484a2e5d6d81.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-4.986000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.203000px;}
.v1{vertical-align:30.381600px;}
.lsb{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.300000px;}
.ls6e{letter-spacing:-0.288000px;}
.ls58{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.225000px;}
.ls4b{letter-spacing:-0.192000px;}
.ls30{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls6d{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.060000px;}
.ls68{letter-spacing:0.096000px;}
.ls2{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.384000px;}
.ls18{letter-spacing:0.420000px;}
.ls5b{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.480000px;}
.ls53{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.600000px;}
.ls65{letter-spacing:0.624000px;}
.ls1b{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.780000px;}
.ls69{letter-spacing:0.816000px;}
.ls25{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.864000px;}
.ls5{letter-spacing:0.900000px;}
.ls7{letter-spacing:0.960000px;}
.ls9{letter-spacing:1.020000px;}
.ls56{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.140000px;}
.ls60{letter-spacing:1.152000px;}
.ls40{letter-spacing:1.200000px;}
.ls6a{letter-spacing:1.248000px;}
.ls2b{letter-spacing:1.260000px;}
.ls2c{letter-spacing:1.320000px;}
.ls5d{letter-spacing:1.344000px;}
.ls13{letter-spacing:1.380000px;}
.ls66{letter-spacing:1.392000px;}
.ls1f{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.488000px;}
.ls21{letter-spacing:1.500000px;}
.ls5c{letter-spacing:1.536000px;}
.ls23{letter-spacing:1.560000px;}
.ls55{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.620000px;}
.ls5a{letter-spacing:1.632000px;}
.ls1d{letter-spacing:1.680000px;}
.lse{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.860000px;}
.ls15{letter-spacing:1.920000px;}
.ls64{letter-spacing:1.968000px;}
.ls1{letter-spacing:1.980000px;}
.ls22{letter-spacing:2.040000px;}
.ls8{letter-spacing:2.100000px;}
.ls5e{letter-spacing:2.112000px;}
.ls2d{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.220000px;}
.ls49{letter-spacing:2.280000px;}
.ls17{letter-spacing:2.400000px;}
.ls67{letter-spacing:2.448000px;}
.ls3{letter-spacing:2.460000px;}
.ls46{letter-spacing:2.520000px;}
.ls41{letter-spacing:2.580000px;}
.ls54{letter-spacing:2.592000px;}
.ls48{letter-spacing:2.640000px;}
.ls51{letter-spacing:2.700000px;}
.ls36{letter-spacing:2.760000px;}
.ls44{letter-spacing:2.820000px;}
.ls34{letter-spacing:2.880000px;}
.ls37{letter-spacing:2.940000px;}
.ls2f{letter-spacing:3.000000px;}
.ls4e{letter-spacing:3.060000px;}
.ls5f{letter-spacing:3.072000px;}
.ls3f{letter-spacing:3.120000px;}
.ls1a{letter-spacing:3.180000px;}
.ls38{letter-spacing:3.300000px;}
.ls16{letter-spacing:3.360000px;}
.ls43{letter-spacing:3.420000px;}
.ls35{letter-spacing:3.540000px;}
.ls11{letter-spacing:3.600000px;}
.ls47{letter-spacing:3.720000px;}
.ls45{letter-spacing:3.780000px;}
.ls24{letter-spacing:3.840000px;}
.ls33{letter-spacing:3.960000px;}
.ls27{letter-spacing:4.080000px;}
.ls32{letter-spacing:4.320000px;}
.ls42{letter-spacing:4.440000px;}
.ls4d{letter-spacing:4.680000px;}
.ls39{letter-spacing:5.040000px;}
.ls3e{letter-spacing:5.640000px;}
.ls3b{letter-spacing:6.060000px;}
.ls50{letter-spacing:6.420000px;}
.ls3d{letter-spacing:7.080000px;}
.ls4f{letter-spacing:7.500000px;}
.ls52{letter-spacing:7.620000px;}
.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;}
}
.ws6f{word-spacing:-19.200000px;}
.ws9a{word-spacing:-19.080000px;}
.ws33{word-spacing:-18.960000px;}
.ws36{word-spacing:-18.540000px;}
.ws38{word-spacing:-17.940000px;}
.ws35{word-spacing:-17.100000px;}
.ws1{word-spacing:-16.680000px;}
.ws4f{word-spacing:-16.620000px;}
.ws3a{word-spacing:-16.140000px;}
.ws37{word-spacing:-16.080000px;}
.ws3c{word-spacing:-16.020000px;}
.ws3e{word-spacing:-15.720000px;}
.ws3b{word-spacing:-15.660000px;}
.ws50{word-spacing:-15.540000px;}
.ws34{word-spacing:-15.300000px;}
.ws4e{word-spacing:-15.240000px;}
.ws3d{word-spacing:-15.180000px;}
.ws39{word-spacing:-15.120000px;}
.ws51{word-spacing:-15.000000px;}
.ws6c{word-spacing:-14.940000px;}
.ws83{word-spacing:-14.880000px;}
.ws81{word-spacing:-13.680000px;}
.ws70{word-spacing:-13.632000px;}
.ws7f{word-spacing:-13.488000px;}
.ws82{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.344000px;}
.ws7e{word-spacing:-12.768000px;}
.ws80{word-spacing:-12.624000px;}
.ws72{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.510000px;}
.ws84{word-spacing:-12.384000px;}
.ws71{word-spacing:-12.000000px;}
.ws7c{word-spacing:-11.952000px;}
.ws7d{word-spacing:-11.760000px;}
.ws0{word-spacing:-10.210662px;}
.ws52{word-spacing:-8.745000px;}
.ws6d{word-spacing:-4.680000px;}
.ws4a{word-spacing:-4.440000px;}
.ws40{word-spacing:-4.320000px;}
.ws2b{word-spacing:-4.080000px;}
.ws41{word-spacing:-3.960000px;}
.ws27{word-spacing:-3.840000px;}
.ws54{word-spacing:-3.780000px;}
.ws58{word-spacing:-3.720000px;}
.ws13{word-spacing:-3.600000px;}
.ws45{word-spacing:-3.540000px;}
.ws49{word-spacing:-3.420000px;}
.ws18{word-spacing:-3.360000px;}
.ws47{word-spacing:-3.300000px;}
.ws20{word-spacing:-3.180000px;}
.ws5e{word-spacing:-3.120000px;}
.ws8a{word-spacing:-3.072000px;}
.ws6e{word-spacing:-3.060000px;}
.ws1d{word-spacing:-3.000000px;}
.ws42{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.886000px;}
.ws69{word-spacing:-2.880000px;}
.ws53{word-spacing:-2.820000px;}
.ws44{word-spacing:-2.760000px;}
.ws77{word-spacing:-2.700000px;}
.ws5a{word-spacing:-2.640000px;}
.ws4d{word-spacing:-2.580000px;}
.ws56{word-spacing:-2.520000px;}
.ws8{word-spacing:-2.460000px;}
.ws93{word-spacing:-2.448000px;}
.ws19{word-spacing:-2.400000px;}
.ws5b{word-spacing:-2.280000px;}
.ws1f{word-spacing:-2.220000px;}
.ws32{word-spacing:-2.160000px;}
.ws89{word-spacing:-2.112000px;}
.wsd{word-spacing:-2.100000px;}
.ws55{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.980000px;}
.ws90{word-spacing:-1.968000px;}
.ws17{word-spacing:-1.920000px;}
.ws22{word-spacing:-1.860000px;}
.ws16{word-spacing:-1.800000px;}
.wsf{word-spacing:-1.740000px;}
.ws23{word-spacing:-1.680000px;}
.ws79{word-spacing:-1.632000px;}
.ws26{word-spacing:-1.620000px;}
.ws96{word-spacing:-1.584000px;}
.ws3f{word-spacing:-1.560000px;}
.ws87{word-spacing:-1.536000px;}
.ws25{word-spacing:-1.500000px;}
.ws8f{word-spacing:-1.488000px;}
.ws15{word-spacing:-1.440000px;}
.ws92{word-spacing:-1.392000px;}
.ws28{word-spacing:-1.380000px;}
.ws88{word-spacing:-1.344000px;}
.ws31{word-spacing:-1.320000px;}
.ws2e{word-spacing:-1.260000px;}
.ws97{word-spacing:-1.248000px;}
.ws4c{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.152000px;}
.ws48{word-spacing:-1.140000px;}
.ws9{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.056000px;}
.wse{word-spacing:-1.020000px;}
.wsa{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.900000px;}
.ws98{word-spacing:-0.864000px;}
.ws29{word-spacing:-0.840000px;}
.ws95{word-spacing:-0.816000px;}
.ws14{word-spacing:-0.780000px;}
.ws8c{word-spacing:-0.768000px;}
.ws10{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.660000px;}
.ws91{word-spacing:-0.624000px;}
.ws24{word-spacing:-0.600000px;}
.ws7b{word-spacing:-0.576000px;}
.wsc{word-spacing:-0.540000px;}
.ws78{word-spacing:-0.528000px;}
.ws2c{word-spacing:-0.480000px;}
.ws85{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.420000px;}
.ws8e{word-spacing:-0.384000px;}
.ws1b{word-spacing:-0.360000px;}
.ws8d{word-spacing:-0.336000px;}
.ws2d{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.240000px;}
.ws61{word-spacing:-0.192000px;}
.ws4b{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.120000px;}
.ws94{word-spacing:-0.096000px;}
.ws2a{word-spacing:-0.060000px;}
.ws99{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws6a{word-spacing:0.048000px;}
.ws2f{word-spacing:0.060000px;}
.ws1e{word-spacing:0.120000px;}
.ws62{word-spacing:0.192000px;}
.ws73{word-spacing:0.240000px;}
.ws86{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.wsb{word-spacing:0.360000px;}
.ws59{word-spacing:0.600000px;}
.ws63{word-spacing:2.160000px;}
.ws46{word-spacing:2.280000px;}
.ws5d{word-spacing:2.400000px;}
.ws5c{word-spacing:3.180000px;}
.ws5f{word-spacing:3.360000px;}
.ws64{word-spacing:3.936000px;}
.ws60{word-spacing:3.984000px;}
.ws75{word-spacing:4.380000px;}
.ws57{word-spacing:4.440000px;}
.ws30{word-spacing:4.920000px;}
.ws43{word-spacing:4.980000px;}
.ws76{word-spacing:5.460000px;}
.ws74{word-spacing:5.520000px;}
.ws65{word-spacing:242.208000px;}
.ws68{word-spacing:253.296000px;}
.ws66{word-spacing:255.072000px;}
.ws67{word-spacing:265.296000px;}
._e{margin-left:-2897.703600px;}
._f{margin-left:-2873.895600px;}
._3{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._a{margin-left:-1.230000px;}
._c{width:1.020000px;}
._7{width:2.370000px;}
._b{width:3.632400px;}
._5{width:4.740000px;}
._8{width:5.940000px;}
._6{width:6.960000px;}
._9{width:8.220000px;}
._d{width:9.300000px;}
._2a{width:10.470000px;}
._4{width:59.494614px;}
._12{width:62.742000px;}
._11{width:68.550000px;}
._14{width:239.616000px;}
._1a{width:242.208000px;}
._1c{width:246.528000px;}
._22{width:249.312000px;}
._17{width:251.622000px;}
._27{width:253.176000px;}
._19{width:254.742000px;}
._15{width:257.952000px;}
._28{width:261.312000px;}
._20{width:263.076000px;}
._24{width:265.296000px;}
._1e{width:269.280000px;}
._26{width:286.176000px;}
._29{width:479.796000px;}
._23{width:603.528000px;}
._13{width:654.634200px;}
._25{width:680.514000px;}
._16{width:683.634000px;}
._1f{width:697.986000px;}
._1b{width:720.310200px;}
._10{width:770.352000px;}
._18{width:803.511000px;}
._21{width:807.972000px;}
._1d{width:833.964600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.ye0{bottom:68.779350px;}
.y120{bottom:83.121900px;}
.ydb{bottom:83.566650px;}
.y107{bottom:83.635350px;}
.y60{bottom:83.770350px;}
.y6f{bottom:83.920350px;}
.yd9{bottom:84.070350px;}
.y98{bottom:84.203850px;}
.ydf{bottom:84.523350px;}
.y20{bottom:88.023000px;}
.y11f{bottom:98.121900px;}
.yda{bottom:99.310650px;}
.yde{bottom:100.267350px;}
.y106{bottom:101.635350px;}
.y5f{bottom:101.770350px;}
.y6e{bottom:101.920350px;}
.yd8{bottom:102.070350px;}
.y97{bottom:102.203850px;}
.y1f{bottom:103.023000px;}
.yf4{bottom:109.070700px;}
.y11e{bottom:113.121900px;}
.y105{bottom:119.635350px;}
.y5e{bottom:119.770350px;}
.y6d{bottom:119.920350px;}
.y96{bottom:120.203850px;}
.yf3{bottom:125.322750px;}
.y11d{bottom:128.121900px;}
.y104{bottom:137.635350px;}
.yd7{bottom:137.665350px;}
.y5d{bottom:137.770350px;}
.y6c{bottom:137.920350px;}
.y95{bottom:138.203850px;}
.yf2{bottom:141.574650px;}
.y11c{bottom:143.121900px;}
.y103{bottom:155.635350px;}
.yd6{bottom:155.665350px;}
.y5c{bottom:155.770350px;}
.y6b{bottom:155.920350px;}
.y94{bottom:156.203850px;}
.yf1{bottom:157.826700px;}
.y11b{bottom:158.121900px;}
.y29{bottom:169.201650px;}
.y11a{bottom:173.121900px;}
.y102{bottom:173.635350px;}
.yd5{bottom:173.665350px;}
.y5b{bottom:173.770350px;}
.y6a{bottom:173.920350px;}
.yf0{bottom:174.078600px;}
.y93{bottom:174.203850px;}
.y15b{bottom:185.263500px;}
.y28{bottom:187.201650px;}
.y119{bottom:188.121900px;}
.yef{bottom:190.330650px;}
.y101{bottom:191.635350px;}
.y5a{bottom:191.770350px;}
.y69{bottom:191.920350px;}
.y92{bottom:192.203850px;}
.y15a{bottom:200.263500px;}
.y118{bottom:203.121900px;}
.y27{bottom:205.201650px;}
.yee{bottom:206.582550px;}
.y100{bottom:209.635350px;}
.y59{bottom:209.770350px;}
.y68{bottom:209.920350px;}
.y91{bottom:210.203850px;}
.y159{bottom:215.263500px;}
.y117{bottom:218.121900px;}
.yed{bottom:222.834450px;}
.y26{bottom:223.201650px;}
.yff{bottom:227.635350px;}
.y58{bottom:227.770350px;}
.yc3{bottom:227.920350px;}
.y90{bottom:228.203850px;}
.y158{bottom:230.263500px;}
.y116{bottom:233.121900px;}
.yec{bottom:239.086500px;}
.y25{bottom:241.201650px;}
.y157{bottom:245.263500px;}
.y67{bottom:245.515350px;}
.yfe{bottom:245.635350px;}
.y57{bottom:245.770350px;}
.yc2{bottom:245.920350px;}
.y8f{bottom:246.203850px;}
.y115{bottom:248.121900px;}
.yeb{bottom:255.338400px;}
.y24{bottom:259.201650px;}
.y156{bottom:260.263500px;}
.y114{bottom:263.121900px;}
.yfd{bottom:263.635350px;}
.y56{bottom:263.770350px;}
.yc1{bottom:263.920350px;}
.y8e{bottom:264.203850px;}
.yea{bottom:271.590450px;}
.y155{bottom:275.263500px;}
.y23{bottom:277.201650px;}
.y113{bottom:278.121900px;}
.y55{bottom:281.770350px;}
.yc0{bottom:281.920350px;}
.y8d{bottom:282.203850px;}
.ye9{bottom:287.842350px;}
.y154{bottom:290.263500px;}
.y112{bottom:293.121900px;}
.y22{bottom:295.201650px;}
.yfc{bottom:299.230350px;}
.y54{bottom:299.770350px;}
.ybf{bottom:299.920350px;}
.y8c{bottom:300.203850px;}
.y153{bottom:305.263500px;}
.y111{bottom:308.121900px;}
.y2b{bottom:313.201650px;}
.y53{bottom:317.770350px;}
.ybe{bottom:317.920350px;}
.ye8{bottom:318.107550px;}
.y8b{bottom:318.203850px;}
.y152{bottom:320.263500px;}
.y110{bottom:323.121900px;}
.y21{bottom:330.796650px;}
.y2a{bottom:331.201650px;}
.y151{bottom:335.263500px;}
.y52{bottom:335.770350px;}
.ybd{bottom:335.920350px;}
.y8a{bottom:336.203850px;}
.y10f{bottom:338.121900px;}
.y150{bottom:350.263500px;}
.ye7{bottom:353.005350px;}
.y51{bottom:353.770350px;}
.ybc{bottom:353.920350px;}
.y89{bottom:354.203850px;}
.y14f{bottom:365.263500px;}
.y10e{bottom:371.230350px;}
.y66{bottom:371.770350px;}
.ybb{bottom:371.920350px;}
.y88{bottom:372.203850px;}
.ye6{bottom:372.505350px;}
.y14e{bottom:380.263500px;}
.y50{bottom:389.365350px;}
.y65{bottom:389.770350px;}
.yba{bottom:389.920350px;}
.y87{bottom:390.203850px;}
.ye5{bottom:392.005350px;}
.y14d{bottom:395.263500px;}
.y1e{bottom:404.014200px;}
.y64{bottom:407.770350px;}
.yb9{bottom:407.920350px;}
.y86{bottom:408.203850px;}
.y14c{bottom:410.263500px;}
.y4f{bottom:425.230350px;}
.y14b{bottom:425.263500px;}
.y63{bottom:425.770350px;}
.yb8{bottom:425.920350px;}
.y85{bottom:426.203850px;}
.y1d{bottom:431.359200px;}
.yfa{bottom:438.244200px;}
.y14a{bottom:440.263500px;}
.y10d{bottom:443.365350px;}
.y62{bottom:443.770350px;}
.yb7{bottom:443.920350px;}
.y84{bottom:444.203850px;}
.y1c{bottom:449.359200px;}
.yf9{bottom:453.988200px;}
.y149{bottom:455.263500px;}
.y61{bottom:461.770350px;}
.yb6{bottom:461.920350px;}
.y83{bottom:462.203850px;}
.y1b{bottom:467.359200px;}
.yf8{bottom:469.732200px;}
.y148{bottom:470.263500px;}
.y10c{bottom:479.365350px;}
.y4e{bottom:479.770350px;}
.yb5{bottom:479.920350px;}
.y82{bottom:480.203850px;}
.y147{bottom:485.263500px;}
.y1a{bottom:485.359200px;}
.yf7{bottom:485.476200px;}
.y4d{bottom:497.770350px;}
.yb4{bottom:497.920350px;}
.y81{bottom:498.203850px;}
.y146{bottom:500.263500px;}
.yf6{bottom:501.220200px;}
.y19{bottom:503.359200px;}
.ye2{bottom:509.095350px;}
.y145{bottom:515.263500px;}
.y4c{bottom:515.770350px;}
.yb3{bottom:515.920350px;}
.y80{bottom:516.203850px;}
.yf5{bottom:516.964200px;}
.y18{bottom:521.359200px;}
.ye1{bottom:524.839350px;}
.y144{bottom:530.263500px;}
.y10b{bottom:533.365350px;}
.y4b{bottom:533.770350px;}
.yb2{bottom:533.920350px;}
.y7f{bottom:534.203850px;}
.y17{bottom:539.359200px;}
.y143{bottom:545.263500px;}
.y4a{bottom:551.770350px;}
.yb1{bottom:551.920350px;}
.y7e{bottom:552.203850px;}
.y16{bottom:557.359200px;}
.y142{bottom:560.263500px;}
.y49{bottom:569.770350px;}
.yb0{bottom:569.920350px;}
.y7d{bottom:570.203850px;}
.y141{bottom:575.263500px;}
.y15{bottom:575.359200px;}
.ydd{bottom:579.130650px;}
.y10a{bottom:587.365350px;}
.y48{bottom:587.770350px;}
.yaf{bottom:587.920350px;}
.y140{bottom:590.263500px;}
.y14{bottom:593.359200px;}
.ydc{bottom:594.874650px;}
.y13f{bottom:605.263500px;}
.y47{bottom:605.770350px;}
.y7c{bottom:605.798850px;}
.yae{bottom:605.920350px;}
.y13{bottom:611.359200px;}
.y13e{bottom:620.263500px;}
.y46{bottom:623.770350px;}
.yad{bottom:623.920350px;}
.y12{bottom:629.359200px;}
.y13d{bottom:635.263500px;}
.y45{bottom:641.770350px;}
.yac{bottom:641.920350px;}
.y7b{bottom:642.053850px;}
.y11{bottom:647.359200px;}
.y13c{bottom:650.263500px;}
.y109{bottom:659.365350px;}
.yd4{bottom:659.515350px;}
.y44{bottom:659.770350px;}
.yab{bottom:659.920350px;}
.y7a{bottom:660.053850px;}
.y13b{bottom:665.263500px;}
.y10{bottom:665.359200px;}
.y43{bottom:677.770350px;}
.y16f{bottom:677.772600px;}
.yaa{bottom:677.920350px;}
.y79{bottom:678.053850px;}
.y13a{bottom:680.263500px;}
.yf{bottom:683.359200px;}
.y139{bottom:695.263500px;}
.y42{bottom:695.770350px;}
.y16e{bottom:695.772600px;}
.yd3{bottom:695.785350px;}
.ya9{bottom:695.920350px;}
.y78{bottom:696.053850px;}
.ye{bottom:701.359200px;}
.y138{bottom:710.263500px;}
.y41{bottom:713.770350px;}
.y16d{bottom:713.772600px;}
.yd2{bottom:713.785350px;}
.ya8{bottom:713.920350px;}
.y77{bottom:714.053850px;}
.yd{bottom:719.359200px;}
.y137{bottom:725.263500px;}
.y108{bottom:731.365350px;}
.y40{bottom:731.770350px;}
.yd1{bottom:731.785350px;}
.ya7{bottom:731.920350px;}
.y76{bottom:732.053850px;}
.yc{bottom:737.359200px;}
.y136{bottom:740.263500px;}
.y3f{bottom:749.770350px;}
.y16c{bottom:749.772600px;}
.yd0{bottom:749.785350px;}
.ya6{bottom:749.920350px;}
.y75{bottom:750.053850px;}
.y135{bottom:755.263500px;}
.y3e{bottom:767.770350px;}
.y16b{bottom:767.772600px;}
.ya5{bottom:767.920350px;}
.y74{bottom:768.053850px;}
.y134{bottom:770.263500px;}
.yb{bottom:782.517450px;}
.y133{bottom:785.263500px;}
.ycf{bottom:785.380350px;}
.y3d{bottom:785.770350px;}
.y16a{bottom:785.772600px;}
.ya4{bottom:785.920350px;}
.y73{bottom:786.055350px;}
.ya{bottom:794.968200px;}
.y132{bottom:800.263500px;}
.y3c{bottom:803.770350px;}
.y169{bottom:803.772600px;}
.ya3{bottom:803.920350px;}
.y131{bottom:815.263500px;}
.yce{bottom:821.245350px;}
.y72{bottom:821.650350px;}
.y3b{bottom:821.770350px;}
.y168{bottom:821.772600px;}
.ya2{bottom:821.920350px;}
.y130{bottom:830.263500px;}
.y9{bottom:832.108950px;}
.y3a{bottom:839.770350px;}
.y167{bottom:839.772600px;}
.ya1{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y12f{bottom:845.263500px;}
.y71{bottom:857.515350px;}
.y39{bottom:857.770350px;}
.y166{bottom:857.772600px;}
.ya0{bottom:857.920350px;}
.y7{bottom:859.108950px;}
.y12e{bottom:860.263500px;}
.y12d{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y165{bottom:875.772600px;}
.ycd{bottom:875.785350px;}
.y9f{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y12c{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y164{bottom:893.772600px;}
.ycc{bottom:893.785350px;}
.y9e{bottom:893.920350px;}
.y12b{bottom:905.263500px;}
.y36{bottom:911.770350px;}
.y163{bottom:911.772600px;}
.ycb{bottom:911.785350px;}
.y9d{bottom:911.920350px;}
.y12a{bottom:920.263500px;}
.y35{bottom:929.770350px;}
.y162{bottom:929.772600px;}
.yca{bottom:929.785350px;}
.y9c{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y129{bottom:935.263500px;}
.y34{bottom:947.770350px;}
.y161{bottom:947.772600px;}
.yc9{bottom:947.785350px;}
.y128{bottom:950.263500px;}
.y127{bottom:965.263500px;}
.y9b{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y160{bottom:965.772600px;}
.yc8{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y126{bottom:980.263500px;}
.y9a{bottom:983.515350px;}
.y32{bottom:983.770350px;}
.y15f{bottom:983.772600px;}
.yc7{bottom:983.785350px;}
.y125{bottom:995.263500px;}
.y99{bottom:1001.515350px;}
.y31{bottom:1001.770350px;}
.y15e{bottom:1001.772600px;}
.yc6{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y124{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.yc5{bottom:1019.785350px;}
.y123{bottom:1025.263500px;}
.ye4{bottom:1037.365350px;}
.y15d{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.yc4{bottom:1037.785350px;}
.y122{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y121{bottom:1132.413900px;}
.y70{bottom:1132.418700px;}
.ye3{bottom:1132.421700px;}
.y15c{bottom:1132.423500px;}
.yfb{bottom:1132.456200px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h13{height:29.182617px;}
.h2{height:30.577148px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.he{height:41.660156px;}
.hd{height:41.689453px;}
.h9{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h11{height:52.507951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:70.582650px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.921300px;}
.x1c{left:102.047250px;}
.x4{left:106.299150px;}
.xd{left:110.555400px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.xc{left:144.725400px;}
.x19{left:211.390350px;}
.x5{left:212.876400px;}
.xa{left:455.041500px;}
.xe{left:457.085400px;}
.x12{left:478.360350px;}
.x7{left:480.476400px;}
.x1d{left:482.615250px;}
.xf{left:491.105400px;}
.x1b{left:503.858400px;}
.x13{left:512.365350px;}
.x8{left:514.496400px;}
.x15{left:591.650400px;}
.x1a{left:596.080350px;}
.x17{left:600.685350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x1e{left:722.622300px;}
.x10{left:729.282150px;}
.x1f{left:744.758850px;}
.x14{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-4.432000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.069333pt;}
.v1{vertical-align:27.005867pt;}
.lsb{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.266667pt;}
.ls6e{letter-spacing:-0.256000pt;}
.ls58{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.200000pt;}
.ls4b{letter-spacing:-0.170667pt;}
.ls30{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls6d{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.053333pt;}
.ls68{letter-spacing:0.085333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.341333pt;}
.ls18{letter-spacing:0.373333pt;}
.ls5b{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls53{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls65{letter-spacing:0.554667pt;}
.ls1b{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.693333pt;}
.ls69{letter-spacing:0.725333pt;}
.ls25{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.768000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.853333pt;}
.ls9{letter-spacing:0.906667pt;}
.ls56{letter-spacing:0.938667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:1.013333pt;}
.ls60{letter-spacing:1.024000pt;}
.ls40{letter-spacing:1.066667pt;}
.ls6a{letter-spacing:1.109333pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls2c{letter-spacing:1.173333pt;}
.ls5d{letter-spacing:1.194667pt;}
.ls13{letter-spacing:1.226667pt;}
.ls66{letter-spacing:1.237333pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.322667pt;}
.ls21{letter-spacing:1.333333pt;}
.ls5c{letter-spacing:1.365333pt;}
.ls23{letter-spacing:1.386667pt;}
.ls55{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.440000pt;}
.ls5a{letter-spacing:1.450667pt;}
.ls1d{letter-spacing:1.493333pt;}
.lse{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.653333pt;}
.ls15{letter-spacing:1.706667pt;}
.ls64{letter-spacing:1.749333pt;}
.ls1{letter-spacing:1.760000pt;}
.ls22{letter-spacing:1.813333pt;}
.ls8{letter-spacing:1.866667pt;}
.ls5e{letter-spacing:1.877333pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls20{letter-spacing:1.973333pt;}
.ls49{letter-spacing:2.026667pt;}
.ls17{letter-spacing:2.133333pt;}
.ls67{letter-spacing:2.176000pt;}
.ls3{letter-spacing:2.186667pt;}
.ls46{letter-spacing:2.240000pt;}
.ls41{letter-spacing:2.293333pt;}
.ls54{letter-spacing:2.304000pt;}
.ls48{letter-spacing:2.346667pt;}
.ls51{letter-spacing:2.400000pt;}
.ls36{letter-spacing:2.453333pt;}
.ls44{letter-spacing:2.506667pt;}
.ls34{letter-spacing:2.560000pt;}
.ls37{letter-spacing:2.613333pt;}
.ls2f{letter-spacing:2.666667pt;}
.ls4e{letter-spacing:2.720000pt;}
.ls5f{letter-spacing:2.730667pt;}
.ls3f{letter-spacing:2.773333pt;}
.ls1a{letter-spacing:2.826667pt;}
.ls38{letter-spacing:2.933333pt;}
.ls16{letter-spacing:2.986667pt;}
.ls43{letter-spacing:3.040000pt;}
.ls35{letter-spacing:3.146667pt;}
.ls11{letter-spacing:3.200000pt;}
.ls47{letter-spacing:3.306667pt;}
.ls45{letter-spacing:3.360000pt;}
.ls24{letter-spacing:3.413333pt;}
.ls33{letter-spacing:3.520000pt;}
.ls27{letter-spacing:3.626667pt;}
.ls32{letter-spacing:3.840000pt;}
.ls42{letter-spacing:3.946667pt;}
.ls4d{letter-spacing:4.160000pt;}
.ls39{letter-spacing:4.480000pt;}
.ls3e{letter-spacing:5.013333pt;}
.ls3b{letter-spacing:5.386667pt;}
.ls50{letter-spacing:5.706667pt;}
.ls3d{letter-spacing:6.293333pt;}
.ls4f{letter-spacing:6.666667pt;}
.ls52{letter-spacing:6.773333pt;}
.ws6f{word-spacing:-17.066667pt;}
.ws9a{word-spacing:-16.960000pt;}
.ws33{word-spacing:-16.853333pt;}
.ws36{word-spacing:-16.480000pt;}
.ws38{word-spacing:-15.946667pt;}
.ws35{word-spacing:-15.200000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws4f{word-spacing:-14.773333pt;}
.ws3a{word-spacing:-14.346667pt;}
.ws37{word-spacing:-14.293333pt;}
.ws3c{word-spacing:-14.240000pt;}
.ws3e{word-spacing:-13.973333pt;}
.ws3b{word-spacing:-13.920000pt;}
.ws50{word-spacing:-13.813333pt;}
.ws34{word-spacing:-13.600000pt;}
.ws4e{word-spacing:-13.546667pt;}
.ws3d{word-spacing:-13.493333pt;}
.ws39{word-spacing:-13.440000pt;}
.ws51{word-spacing:-13.333333pt;}
.ws6c{word-spacing:-13.280000pt;}
.ws83{word-spacing:-13.226667pt;}
.ws81{word-spacing:-12.160000pt;}
.ws70{word-spacing:-12.117333pt;}
.ws7f{word-spacing:-11.989333pt;}
.ws82{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.861333pt;}
.ws7e{word-spacing:-11.349333pt;}
.ws80{word-spacing:-11.221333pt;}
.ws72{word-spacing:-11.178667pt;}
.ws2{word-spacing:-11.120000pt;}
.ws84{word-spacing:-11.008000pt;}
.ws71{word-spacing:-10.666667pt;}
.ws7c{word-spacing:-10.624000pt;}
.ws7d{word-spacing:-10.453333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws52{word-spacing:-7.773333pt;}
.ws6d{word-spacing:-4.160000pt;}
.ws4a{word-spacing:-3.946667pt;}
.ws40{word-spacing:-3.840000pt;}
.ws2b{word-spacing:-3.626667pt;}
.ws41{word-spacing:-3.520000pt;}
.ws27{word-spacing:-3.413333pt;}
.ws54{word-spacing:-3.360000pt;}
.ws58{word-spacing:-3.306667pt;}
.ws13{word-spacing:-3.200000pt;}
.ws45{word-spacing:-3.146667pt;}
.ws49{word-spacing:-3.040000pt;}
.ws18{word-spacing:-2.986667pt;}
.ws47{word-spacing:-2.933333pt;}
.ws20{word-spacing:-2.826667pt;}
.ws5e{word-spacing:-2.773333pt;}
.ws8a{word-spacing:-2.730667pt;}
.ws6e{word-spacing:-2.720000pt;}
.ws1d{word-spacing:-2.666667pt;}
.ws42{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.565333pt;}
.ws69{word-spacing:-2.560000pt;}
.ws53{word-spacing:-2.506667pt;}
.ws44{word-spacing:-2.453333pt;}
.ws77{word-spacing:-2.400000pt;}
.ws5a{word-spacing:-2.346667pt;}
.ws4d{word-spacing:-2.293333pt;}
.ws56{word-spacing:-2.240000pt;}
.ws8{word-spacing:-2.186667pt;}
.ws93{word-spacing:-2.176000pt;}
.ws19{word-spacing:-2.133333pt;}
.ws5b{word-spacing:-2.026667pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws32{word-spacing:-1.920000pt;}
.ws89{word-spacing:-1.877333pt;}
.wsd{word-spacing:-1.866667pt;}
.ws55{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.760000pt;}
.ws90{word-spacing:-1.749333pt;}
.ws17{word-spacing:-1.706667pt;}
.ws22{word-spacing:-1.653333pt;}
.ws16{word-spacing:-1.600000pt;}
.wsf{word-spacing:-1.546667pt;}
.ws23{word-spacing:-1.493333pt;}
.ws79{word-spacing:-1.450667pt;}
.ws26{word-spacing:-1.440000pt;}
.ws96{word-spacing:-1.408000pt;}
.ws3f{word-spacing:-1.386667pt;}
.ws87{word-spacing:-1.365333pt;}
.ws25{word-spacing:-1.333333pt;}
.ws8f{word-spacing:-1.322667pt;}
.ws15{word-spacing:-1.280000pt;}
.ws92{word-spacing:-1.237333pt;}
.ws28{word-spacing:-1.226667pt;}
.ws88{word-spacing:-1.194667pt;}
.ws31{word-spacing:-1.173333pt;}
.ws2e{word-spacing:-1.120000pt;}
.ws97{word-spacing:-1.109333pt;}
.ws4c{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-1.024000pt;}
.ws48{word-spacing:-1.013333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.938667pt;}
.wse{word-spacing:-0.906667pt;}
.wsa{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.800000pt;}
.ws98{word-spacing:-0.768000pt;}
.ws29{word-spacing:-0.746667pt;}
.ws95{word-spacing:-0.725333pt;}
.ws14{word-spacing:-0.693333pt;}
.ws8c{word-spacing:-0.682667pt;}
.ws10{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.586667pt;}
.ws91{word-spacing:-0.554667pt;}
.ws24{word-spacing:-0.533333pt;}
.ws7b{word-spacing:-0.512000pt;}
.wsc{word-spacing:-0.480000pt;}
.ws78{word-spacing:-0.469333pt;}
.ws2c{word-spacing:-0.426667pt;}
.ws85{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws8e{word-spacing:-0.341333pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws8d{word-spacing:-0.298667pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws61{word-spacing:-0.170667pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.106667pt;}
.ws94{word-spacing:-0.085333pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws99{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.042667pt;}
.ws2f{word-spacing:0.053333pt;}
.ws1e{word-spacing:0.106667pt;}
.ws62{word-spacing:0.170667pt;}
.ws73{word-spacing:0.213333pt;}
.ws86{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.wsb{word-spacing:0.320000pt;}
.ws59{word-spacing:0.533333pt;}
.ws63{word-spacing:1.920000pt;}
.ws46{word-spacing:2.026667pt;}
.ws5d{word-spacing:2.133333pt;}
.ws5c{word-spacing:2.826667pt;}
.ws5f{word-spacing:2.986667pt;}
.ws64{word-spacing:3.498667pt;}
.ws60{word-spacing:3.541333pt;}
.ws75{word-spacing:3.893333pt;}
.ws57{word-spacing:3.946667pt;}
.ws30{word-spacing:4.373333pt;}
.ws43{word-spacing:4.426667pt;}
.ws76{word-spacing:4.853333pt;}
.ws74{word-spacing:4.906667pt;}
.ws65{word-spacing:215.296000pt;}
.ws68{word-spacing:225.152000pt;}
.ws66{word-spacing:226.730667pt;}
.ws67{word-spacing:235.818667pt;}
._e{margin-left:-2575.736533pt;}
._f{margin-left:-2554.573867pt;}
._3{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._a{margin-left:-1.093333pt;}
._c{width:0.906667pt;}
._7{width:2.106667pt;}
._b{width:3.228800pt;}
._5{width:4.213333pt;}
._8{width:5.280000pt;}
._6{width:6.186667pt;}
._9{width:7.306667pt;}
._d{width:8.266667pt;}
._2a{width:9.306667pt;}
._4{width:52.884101pt;}
._12{width:55.770667pt;}
._11{width:60.933333pt;}
._14{width:212.992000pt;}
._1a{width:215.296000pt;}
._1c{width:219.136000pt;}
._22{width:221.610667pt;}
._17{width:223.664000pt;}
._27{width:225.045333pt;}
._19{width:226.437333pt;}
._15{width:229.290667pt;}
._28{width:232.277333pt;}
._20{width:233.845333pt;}
._24{width:235.818667pt;}
._1e{width:239.360000pt;}
._26{width:254.378667pt;}
._29{width:426.485333pt;}
._23{width:536.469333pt;}
._13{width:581.897067pt;}
._25{width:604.901333pt;}
._16{width:607.674667pt;}
._1f{width:620.432000pt;}
._1b{width:640.275733pt;}
._10{width:684.757333pt;}
._18{width:714.232000pt;}
._21{width:718.197333pt;}
._1d{width:741.301867pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.ye0{bottom:61.137200pt;}
.y120{bottom:73.886133pt;}
.ydb{bottom:74.281467pt;}
.y107{bottom:74.342533pt;}
.y60{bottom:74.462533pt;}
.y6f{bottom:74.595867pt;}
.yd9{bottom:74.729200pt;}
.y98{bottom:74.847867pt;}
.ydf{bottom:75.131867pt;}
.y20{bottom:78.242667pt;}
.y11f{bottom:87.219467pt;}
.yda{bottom:88.276133pt;}
.yde{bottom:89.126533pt;}
.y106{bottom:90.342533pt;}
.y5f{bottom:90.462533pt;}
.y6e{bottom:90.595867pt;}
.yd8{bottom:90.729200pt;}
.y97{bottom:90.847867pt;}
.y1f{bottom:91.576000pt;}
.yf4{bottom:96.951733pt;}
.y11e{bottom:100.552800pt;}
.y105{bottom:106.342533pt;}
.y5e{bottom:106.462533pt;}
.y6d{bottom:106.595867pt;}
.y96{bottom:106.847867pt;}
.yf3{bottom:111.398000pt;}
.y11d{bottom:113.886133pt;}
.y104{bottom:122.342533pt;}
.yd7{bottom:122.369200pt;}
.y5d{bottom:122.462533pt;}
.y6c{bottom:122.595867pt;}
.y95{bottom:122.847867pt;}
.yf2{bottom:125.844133pt;}
.y11c{bottom:127.219467pt;}
.y103{bottom:138.342533pt;}
.yd6{bottom:138.369200pt;}
.y5c{bottom:138.462533pt;}
.y6b{bottom:138.595867pt;}
.y94{bottom:138.847867pt;}
.yf1{bottom:140.290400pt;}
.y11b{bottom:140.552800pt;}
.y29{bottom:150.401467pt;}
.y11a{bottom:153.886133pt;}
.y102{bottom:154.342533pt;}
.yd5{bottom:154.369200pt;}
.y5b{bottom:154.462533pt;}
.y6a{bottom:154.595867pt;}
.yf0{bottom:154.736533pt;}
.y93{bottom:154.847867pt;}
.y15b{bottom:164.678667pt;}
.y28{bottom:166.401467pt;}
.y119{bottom:167.219467pt;}
.yef{bottom:169.182800pt;}
.y101{bottom:170.342533pt;}
.y5a{bottom:170.462533pt;}
.y69{bottom:170.595867pt;}
.y92{bottom:170.847867pt;}
.y15a{bottom:178.012000pt;}
.y118{bottom:180.552800pt;}
.y27{bottom:182.401467pt;}
.yee{bottom:183.628933pt;}
.y100{bottom:186.342533pt;}
.y59{bottom:186.462533pt;}
.y68{bottom:186.595867pt;}
.y91{bottom:186.847867pt;}
.y159{bottom:191.345333pt;}
.y117{bottom:193.886133pt;}
.yed{bottom:198.075067pt;}
.y26{bottom:198.401467pt;}
.yff{bottom:202.342533pt;}
.y58{bottom:202.462533pt;}
.yc3{bottom:202.595867pt;}
.y90{bottom:202.847867pt;}
.y158{bottom:204.678667pt;}
.y116{bottom:207.219467pt;}
.yec{bottom:212.521333pt;}
.y25{bottom:214.401467pt;}
.y157{bottom:218.012000pt;}
.y67{bottom:218.235867pt;}
.yfe{bottom:218.342533pt;}
.y57{bottom:218.462533pt;}
.yc2{bottom:218.595867pt;}
.y8f{bottom:218.847867pt;}
.y115{bottom:220.552800pt;}
.yeb{bottom:226.967467pt;}
.y24{bottom:230.401467pt;}
.y156{bottom:231.345333pt;}
.y114{bottom:233.886133pt;}
.yfd{bottom:234.342533pt;}
.y56{bottom:234.462533pt;}
.yc1{bottom:234.595867pt;}
.y8e{bottom:234.847867pt;}
.yea{bottom:241.413733pt;}
.y155{bottom:244.678667pt;}
.y23{bottom:246.401467pt;}
.y113{bottom:247.219467pt;}
.y55{bottom:250.462533pt;}
.yc0{bottom:250.595867pt;}
.y8d{bottom:250.847867pt;}
.ye9{bottom:255.859867pt;}
.y154{bottom:258.012000pt;}
.y112{bottom:260.552800pt;}
.y22{bottom:262.401467pt;}
.yfc{bottom:265.982533pt;}
.y54{bottom:266.462533pt;}
.ybf{bottom:266.595867pt;}
.y8c{bottom:266.847867pt;}
.y153{bottom:271.345333pt;}
.y111{bottom:273.886133pt;}
.y2b{bottom:278.401467pt;}
.y53{bottom:282.462533pt;}
.ybe{bottom:282.595867pt;}
.ye8{bottom:282.762267pt;}
.y8b{bottom:282.847867pt;}
.y152{bottom:284.678667pt;}
.y110{bottom:287.219467pt;}
.y21{bottom:294.041467pt;}
.y2a{bottom:294.401467pt;}
.y151{bottom:298.012000pt;}
.y52{bottom:298.462533pt;}
.ybd{bottom:298.595867pt;}
.y8a{bottom:298.847867pt;}
.y10f{bottom:300.552800pt;}
.y150{bottom:311.345333pt;}
.ye7{bottom:313.782533pt;}
.y51{bottom:314.462533pt;}
.ybc{bottom:314.595867pt;}
.y89{bottom:314.847867pt;}
.y14f{bottom:324.678667pt;}
.y10e{bottom:329.982533pt;}
.y66{bottom:330.462533pt;}
.ybb{bottom:330.595867pt;}
.y88{bottom:330.847867pt;}
.ye6{bottom:331.115867pt;}
.y14e{bottom:338.012000pt;}
.y50{bottom:346.102533pt;}
.y65{bottom:346.462533pt;}
.yba{bottom:346.595867pt;}
.y87{bottom:346.847867pt;}
.ye5{bottom:348.449200pt;}
.y14d{bottom:351.345333pt;}
.y1e{bottom:359.123733pt;}
.y64{bottom:362.462533pt;}
.yb9{bottom:362.595867pt;}
.y86{bottom:362.847867pt;}
.y14c{bottom:364.678667pt;}
.y4f{bottom:377.982533pt;}
.y14b{bottom:378.012000pt;}
.y63{bottom:378.462533pt;}
.yb8{bottom:378.595867pt;}
.y85{bottom:378.847867pt;}
.y1d{bottom:383.430400pt;}
.yfa{bottom:389.550400pt;}
.y14a{bottom:391.345333pt;}
.y10d{bottom:394.102533pt;}
.y62{bottom:394.462533pt;}
.yb7{bottom:394.595867pt;}
.y84{bottom:394.847867pt;}
.y1c{bottom:399.430400pt;}
.yf9{bottom:403.545067pt;}
.y149{bottom:404.678667pt;}
.y61{bottom:410.462533pt;}
.yb6{bottom:410.595867pt;}
.y83{bottom:410.847867pt;}
.y1b{bottom:415.430400pt;}
.yf8{bottom:417.539733pt;}
.y148{bottom:418.012000pt;}
.y10c{bottom:426.102533pt;}
.y4e{bottom:426.462533pt;}
.yb5{bottom:426.595867pt;}
.y82{bottom:426.847867pt;}
.y147{bottom:431.345333pt;}
.y1a{bottom:431.430400pt;}
.yf7{bottom:431.534400pt;}
.y4d{bottom:442.462533pt;}
.yb4{bottom:442.595867pt;}
.y81{bottom:442.847867pt;}
.y146{bottom:444.678667pt;}
.yf6{bottom:445.529067pt;}
.y19{bottom:447.430400pt;}
.ye2{bottom:452.529200pt;}
.y145{bottom:458.012000pt;}
.y4c{bottom:458.462533pt;}
.yb3{bottom:458.595867pt;}
.y80{bottom:458.847867pt;}
.yf5{bottom:459.523733pt;}
.y18{bottom:463.430400pt;}
.ye1{bottom:466.523867pt;}
.y144{bottom:471.345333pt;}
.y10b{bottom:474.102533pt;}
.y4b{bottom:474.462533pt;}
.yb2{bottom:474.595867pt;}
.y7f{bottom:474.847867pt;}
.y17{bottom:479.430400pt;}
.y143{bottom:484.678667pt;}
.y4a{bottom:490.462533pt;}
.yb1{bottom:490.595867pt;}
.y7e{bottom:490.847867pt;}
.y16{bottom:495.430400pt;}
.y142{bottom:498.012000pt;}
.y49{bottom:506.462533pt;}
.yb0{bottom:506.595867pt;}
.y7d{bottom:506.847867pt;}
.y141{bottom:511.345333pt;}
.y15{bottom:511.430400pt;}
.ydd{bottom:514.782800pt;}
.y10a{bottom:522.102533pt;}
.y48{bottom:522.462533pt;}
.yaf{bottom:522.595867pt;}
.y140{bottom:524.678667pt;}
.y14{bottom:527.430400pt;}
.ydc{bottom:528.777467pt;}
.y13f{bottom:538.012000pt;}
.y47{bottom:538.462533pt;}
.y7c{bottom:538.487867pt;}
.yae{bottom:538.595867pt;}
.y13{bottom:543.430400pt;}
.y13e{bottom:551.345333pt;}
.y46{bottom:554.462533pt;}
.yad{bottom:554.595867pt;}
.y12{bottom:559.430400pt;}
.y13d{bottom:564.678667pt;}
.y45{bottom:570.462533pt;}
.yac{bottom:570.595867pt;}
.y7b{bottom:570.714533pt;}
.y11{bottom:575.430400pt;}
.y13c{bottom:578.012000pt;}
.y109{bottom:586.102533pt;}
.yd4{bottom:586.235867pt;}
.y44{bottom:586.462533pt;}
.yab{bottom:586.595867pt;}
.y7a{bottom:586.714533pt;}
.y13b{bottom:591.345333pt;}
.y10{bottom:591.430400pt;}
.y43{bottom:602.462533pt;}
.y16f{bottom:602.464533pt;}
.yaa{bottom:602.595867pt;}
.y79{bottom:602.714533pt;}
.y13a{bottom:604.678667pt;}
.yf{bottom:607.430400pt;}
.y139{bottom:618.012000pt;}
.y42{bottom:618.462533pt;}
.y16e{bottom:618.464533pt;}
.yd3{bottom:618.475867pt;}
.ya9{bottom:618.595867pt;}
.y78{bottom:618.714533pt;}
.ye{bottom:623.430400pt;}
.y138{bottom:631.345333pt;}
.y41{bottom:634.462533pt;}
.y16d{bottom:634.464533pt;}
.yd2{bottom:634.475867pt;}
.ya8{bottom:634.595867pt;}
.y77{bottom:634.714533pt;}
.yd{bottom:639.430400pt;}
.y137{bottom:644.678667pt;}
.y108{bottom:650.102533pt;}
.y40{bottom:650.462533pt;}
.yd1{bottom:650.475867pt;}
.ya7{bottom:650.595867pt;}
.y76{bottom:650.714533pt;}
.yc{bottom:655.430400pt;}
.y136{bottom:658.012000pt;}
.y3f{bottom:666.462533pt;}
.y16c{bottom:666.464533pt;}
.yd0{bottom:666.475867pt;}
.ya6{bottom:666.595867pt;}
.y75{bottom:666.714533pt;}
.y135{bottom:671.345333pt;}
.y3e{bottom:682.462533pt;}
.y16b{bottom:682.464533pt;}
.ya5{bottom:682.595867pt;}
.y74{bottom:682.714533pt;}
.y134{bottom:684.678667pt;}
.yb{bottom:695.571067pt;}
.y133{bottom:698.012000pt;}
.ycf{bottom:698.115867pt;}
.y3d{bottom:698.462533pt;}
.y16a{bottom:698.464533pt;}
.ya4{bottom:698.595867pt;}
.y73{bottom:698.715867pt;}
.ya{bottom:706.638400pt;}
.y132{bottom:711.345333pt;}
.y3c{bottom:714.462533pt;}
.y169{bottom:714.464533pt;}
.ya3{bottom:714.595867pt;}
.y131{bottom:724.678667pt;}
.yce{bottom:729.995867pt;}
.y72{bottom:730.355867pt;}
.y3b{bottom:730.462533pt;}
.y168{bottom:730.464533pt;}
.ya2{bottom:730.595867pt;}
.y130{bottom:738.012000pt;}
.y9{bottom:739.652400pt;}
.y3a{bottom:746.462533pt;}
.y167{bottom:746.464533pt;}
.ya1{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y12f{bottom:751.345333pt;}
.y71{bottom:762.235867pt;}
.y39{bottom:762.462533pt;}
.y166{bottom:762.464533pt;}
.ya0{bottom:762.595867pt;}
.y7{bottom:763.652400pt;}
.y12e{bottom:764.678667pt;}
.y12d{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y165{bottom:778.464533pt;}
.ycd{bottom:778.475867pt;}
.y9f{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y12c{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y164{bottom:794.464533pt;}
.ycc{bottom:794.475867pt;}
.y9e{bottom:794.595867pt;}
.y12b{bottom:804.678667pt;}
.y36{bottom:810.462533pt;}
.y163{bottom:810.464533pt;}
.ycb{bottom:810.475867pt;}
.y9d{bottom:810.595867pt;}
.y12a{bottom:818.012000pt;}
.y35{bottom:826.462533pt;}
.y162{bottom:826.464533pt;}
.yca{bottom:826.475867pt;}
.y9c{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y129{bottom:831.345333pt;}
.y34{bottom:842.462533pt;}
.y161{bottom:842.464533pt;}
.yc9{bottom:842.475867pt;}
.y128{bottom:844.678667pt;}
.y127{bottom:858.012000pt;}
.y9b{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y160{bottom:858.464533pt;}
.yc8{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y126{bottom:871.345333pt;}
.y9a{bottom:874.235867pt;}
.y32{bottom:874.462533pt;}
.y15f{bottom:874.464533pt;}
.yc7{bottom:874.475867pt;}
.y125{bottom:884.678667pt;}
.y99{bottom:890.235867pt;}
.y31{bottom:890.462533pt;}
.y15e{bottom:890.464533pt;}
.yc6{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y124{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.yc5{bottom:906.475867pt;}
.y123{bottom:911.345333pt;}
.ye4{bottom:922.102533pt;}
.y15d{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.yc4{bottom:922.475867pt;}
.y122{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y121{bottom:1006.590133pt;}
.y70{bottom:1006.594400pt;}
.ye3{bottom:1006.597067pt;}
.y15c{bottom:1006.598667pt;}
.yfb{bottom:1006.627733pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h13{height:25.940104pt;}
.h2{height:27.179688pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.he{height:37.031250pt;}
.hd{height:37.057292pt;}
.h9{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h11{height:46.673734pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:62.740133pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.818933pt;}
.x1c{left:90.708667pt;}
.x4{left:94.488133pt;}
.xd{left:98.271467pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.xc{left:128.644800pt;}
.x19{left:187.902533pt;}
.x5{left:189.223467pt;}
.xa{left:404.481333pt;}
.xe{left:406.298133pt;}
.x12{left:425.209200pt;}
.x7{left:427.090133pt;}
.x1d{left:428.991333pt;}
.xf{left:436.538133pt;}
.x1b{left:447.874133pt;}
.x13{left:455.435867pt;}
.x8{left:457.330133pt;}
.x15{left:525.911467pt;}
.x1a{left:529.849200pt;}
.x17{left:533.942533pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1e{left:642.330933pt;}
.x10{left:648.250800pt;}
.x1f{left:662.007867pt;}
.x14{left:667.148400pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  