
    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_923e0504466dd222681eb82d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a52990c84282ff2292389068.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_aad925231be2322d6f3f55e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_9193ce806968f8b6be85ec01.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_bfe7c6ba3ee9cbabed62516b.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_2b52562aaaaad1329dd027dd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_12a4847bcb21275973a57da2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e964dc910cc74cfccf0f10f8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a95620256a08f5d6176a62f3.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;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:22.610400px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls4a{letter-spacing:-1.080000px;}
.ls49{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-0.780000px;}
.ls5d{letter-spacing:-0.672000px;}
.ls39{letter-spacing:-0.600000px;}
.ls55{letter-spacing:-0.420000px;}
.ls3b{letter-spacing:-0.240000px;}
.ls4b{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.144000px;}
.ls38{letter-spacing:-0.120000px;}
.ls5e{letter-spacing:-0.096000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls80{letter-spacing:-0.048000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls7c{letter-spacing:0.048000px;}
.ls46{letter-spacing:0.060000px;}
.ls59{letter-spacing:0.061800px;}
.ls79{letter-spacing:0.096000px;}
.ls58{letter-spacing:0.097200px;}
.ls13{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.180000px;}
.ls48{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.300000px;}
.ls6b{letter-spacing:0.336000px;}
.ls3c{letter-spacing:0.360000px;}
.ls7a{letter-spacing:0.384000px;}
.ls37{letter-spacing:0.399000px;}
.ls4f{letter-spacing:0.408000px;}
.ls29{letter-spacing:0.420000px;}
.ls73{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.458400px;}
.lsd{letter-spacing:0.480000px;}
.ls85{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.540000px;}
.ls6a{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.672000px;}
.ls36{letter-spacing:0.691200px;}
.ls5{letter-spacing:0.720000px;}
.ls82{letter-spacing:0.768000px;}
.ls26{letter-spacing:0.780000px;}
.ls41{letter-spacing:0.801600px;}
.ls67{letter-spacing:0.816000px;}
.ls30{letter-spacing:0.839400px;}
.ls18{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.900000px;}
.ls6{letter-spacing:0.960000px;}
.ls7d{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.020000px;}
.ls2{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.104000px;}
.ls47{letter-spacing:1.140000px;}
.ls6c{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.200000px;}
.ls66{letter-spacing:1.248000px;}
.ls20{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.320000px;}
.lsa{letter-spacing:1.380000px;}
.ls84{letter-spacing:1.392000px;}
.ls16{letter-spacing:1.440000px;}
.ls78{letter-spacing:1.488000px;}
.ls8{letter-spacing:1.500000px;}
.ls2b{letter-spacing:1.560000px;}
.ls6f{letter-spacing:1.584000px;}
.ls23{letter-spacing:1.620000px;}
.ls7e{letter-spacing:1.632000px;}
.ls7{letter-spacing:1.680000px;}
.ls70{letter-spacing:1.728000px;}
.ls2f{letter-spacing:1.740000px;}
.ls86{letter-spacing:1.776000px;}
.ls3f{letter-spacing:1.800000px;}
.ls89{letter-spacing:1.824000px;}
.ls25{letter-spacing:1.860000px;}
.ls7b{letter-spacing:1.872000px;}
.ls9{letter-spacing:1.920000px;}
.ls7f{letter-spacing:1.968000px;}
.ls2a{letter-spacing:1.980000px;}
.ls76{letter-spacing:2.016000px;}
.ls43{letter-spacing:2.040000px;}
.ls75{letter-spacing:2.064000px;}
.ls3d{letter-spacing:2.100000px;}
.ls44{letter-spacing:2.160000px;}
.ls57{letter-spacing:2.220000px;}
.ls83{letter-spacing:2.256000px;}
.ls21{letter-spacing:2.340000px;}
.ls72{letter-spacing:2.352000px;}
.ls1d{letter-spacing:2.400000px;}
.ls28{letter-spacing:2.460000px;}
.ls31{letter-spacing:2.580000px;}
.ls74{letter-spacing:2.592000px;}
.lsb{letter-spacing:2.640000px;}
.ls4d{letter-spacing:2.700000px;}
.lse{letter-spacing:2.760000px;}
.ls62{letter-spacing:2.820000px;}
.ls71{letter-spacing:2.832000px;}
.ls1e{letter-spacing:2.880000px;}
.ls45{letter-spacing:2.940000px;}
.ls88{letter-spacing:2.976000px;}
.ls3{letter-spacing:3.000000px;}
.lsf{letter-spacing:3.120000px;}
.ls1f{letter-spacing:3.180000px;}
.ls24{letter-spacing:3.240000px;}
.ls1b{letter-spacing:3.300000px;}
.ls81{letter-spacing:3.312000px;}
.ls2d{letter-spacing:3.360000px;}
.ls3e{letter-spacing:3.480000px;}
.ls19{letter-spacing:3.540000px;}
.ls69{letter-spacing:3.552000px;}
.ls2c{letter-spacing:3.660000px;}
.ls35{letter-spacing:3.960000px;}
.ls61{letter-spacing:4.140000px;}
.ls32{letter-spacing:4.200000px;}
.ls1c{letter-spacing:4.380000px;}
.ls6e{letter-spacing:4.752000px;}
.ls4e{letter-spacing:5.100000px;}
.ls63{letter-spacing:5.340000px;}
.ls56{letter-spacing:5.400000px;}
.ls60{letter-spacing:5.640000px;}
.ls40{letter-spacing:5.940000px;}
.ls5f{letter-spacing:6.180000px;}
.ls34{letter-spacing:6.480000px;}
.ls64{letter-spacing:7.080000px;}
.ls33{letter-spacing:9.180000px;}
.ls0{letter-spacing:59.532876px;}
.ls5b{letter-spacing:175.392000px;}
.ls5a{letter-spacing:187.930800px;}
.ls50{letter-spacing:509.184000px;}
.ls54{letter-spacing:509.616000px;}
.ls52{letter-spacing:521.184000px;}
.ls51{letter-spacing:521.616000px;}
.ls53{letter-spacing:555.168000px;}
.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;}
}
.wsa{word-spacing:-19.200000px;}
.ws58{word-spacing:-18.840000px;}
.ws4d{word-spacing:-17.880000px;}
.ws55{word-spacing:-17.040000px;}
.ws20{word-spacing:-16.680000px;}
.ws53{word-spacing:-16.380000px;}
.ws52{word-spacing:-16.200000px;}
.ws8{word-spacing:-15.720000px;}
.ws36{word-spacing:-15.660000px;}
.ws57{word-spacing:-15.600000px;}
.ws3f{word-spacing:-15.480000px;}
.ws54{word-spacing:-15.420000px;}
.ws9{word-spacing:-15.180000px;}
.ws56{word-spacing:-15.120000px;}
.ws7f{word-spacing:-14.976000px;}
.ws80{word-spacing:-13.680000px;}
.ws7d{word-spacing:-13.584000px;}
.ws66{word-spacing:-13.488000px;}
.ws69{word-spacing:-13.440000px;}
.ws2{word-spacing:-13.344000px;}
.ws7e{word-spacing:-12.720000px;}
.ws68{word-spacing:-12.576000px;}
.ws1{word-spacing:-12.510000px;}
.ws65{word-spacing:-12.336000px;}
.ws49{word-spacing:-12.192000px;}
.ws67{word-spacing:-12.000000px;}
.ws81{word-spacing:-11.856000px;}
.ws0{word-spacing:-10.210662px;}
.ws11{word-spacing:-3.660000px;}
.ws86{word-spacing:-2.976000px;}
.ws4{word-spacing:-2.886000px;}
.ws26{word-spacing:-2.640000px;}
.ws75{word-spacing:-2.544000px;}
.ws32{word-spacing:-2.400000px;}
.wsd{word-spacing:-2.340000px;}
.ws15{word-spacing:-2.220000px;}
.ws84{word-spacing:-1.920000px;}
.ws5f{word-spacing:-1.860000px;}
.ws4e{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws79{word-spacing:-1.440000px;}
.ws33{word-spacing:-1.320000px;}
.ws59{word-spacing:-1.140000px;}
.ws89{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.780000px;}
.ws88{word-spacing:-0.768000px;}
.wsc{word-spacing:-0.720000px;}
.ws87{word-spacing:-0.624000px;}
.ws18{word-spacing:-0.480000px;}
.ws76{word-spacing:-0.384000px;}
.ws30{word-spacing:-0.360000px;}
.ws7a{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.120000px;}
.ws78{word-spacing:-0.096000px;}
.ws3{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.ws51{word-spacing:0.096000px;}
.ws4f{word-spacing:0.120000px;}
.ws6e{word-spacing:0.144000px;}
.ws61{word-spacing:0.180000px;}
.ws21{word-spacing:0.420000px;}
.ws2e{word-spacing:0.480000px;}
.ws10{word-spacing:0.600000px;}
.ws48{word-spacing:0.780000px;}
.ws83{word-spacing:0.864000px;}
.ws22{word-spacing:0.900000px;}
.ws14{word-spacing:0.960000px;}
.ws29{word-spacing:1.020000px;}
.ws2b{word-spacing:1.080000px;}
.ws25{word-spacing:1.104000px;}
.ws1e{word-spacing:1.140000px;}
.ws72{word-spacing:1.152000px;}
.ws44{word-spacing:1.200000px;}
.ws71{word-spacing:1.248000px;}
.ws45{word-spacing:1.260000px;}
.ws70{word-spacing:1.296000px;}
.ws1d{word-spacing:1.320000px;}
.ws2f{word-spacing:1.560000px;}
.ws1b{word-spacing:1.620000px;}
.ws3e{word-spacing:1.680000px;}
.ws24{word-spacing:1.740000px;}
.ws50{word-spacing:1.800000px;}
.ws82{word-spacing:1.824000px;}
.ws73{word-spacing:2.064000px;}
.ws5d{word-spacing:2.100000px;}
.ws74{word-spacing:2.112000px;}
.ws2d{word-spacing:2.160000px;}
.ws4a{word-spacing:2.256000px;}
.ws5a{word-spacing:2.280000px;}
.ws19{word-spacing:2.340000px;}
.wsb{word-spacing:2.400000px;}
.ws12{word-spacing:2.520000px;}
.ws43{word-spacing:2.580000px;}
.ws47{word-spacing:2.640000px;}
.ws46{word-spacing:2.760000px;}
.ws6f{word-spacing:2.832000px;}
.ws16{word-spacing:2.880000px;}
.ws7c{word-spacing:2.976000px;}
.ws7b{word-spacing:3.024000px;}
.ws17{word-spacing:3.060000px;}
.ws23{word-spacing:3.120000px;}
.ws77{word-spacing:3.168000px;}
.ws63{word-spacing:3.240000px;}
.ws85{word-spacing:3.312000px;}
.ws5b{word-spacing:3.420000px;}
.ws2c{word-spacing:3.480000px;}
.ws6c{word-spacing:3.504000px;}
.ws1f{word-spacing:3.600000px;}
.ws31{word-spacing:3.660000px;}
.ws60{word-spacing:3.780000px;}
.ws2a{word-spacing:3.900000px;}
.ws34{word-spacing:3.936000px;}
.ws4b{word-spacing:3.984000px;}
.ws35{word-spacing:4.128000px;}
.ws3c{word-spacing:4.200000px;}
.ws5e{word-spacing:4.440000px;}
.ws13{word-spacing:4.500000px;}
.wse{word-spacing:4.560000px;}
.ws64{word-spacing:4.620000px;}
.ws62{word-spacing:4.680000px;}
.ws1a{word-spacing:4.740000px;}
.ws4c{word-spacing:4.800000px;}
.ws6{word-spacing:4.920000px;}
.ws5{word-spacing:4.980000px;}
.ws6b{word-spacing:5.460000px;}
.ws6a{word-spacing:5.520000px;}
.ws3d{word-spacing:6.000000px;}
.ws28{word-spacing:9.180000px;}
.ws42{word-spacing:137.136000px;}
.ws40{word-spacing:223.824000px;}
.ws41{word-spacing:248.784000px;}
.ws38{word-spacing:458.256000px;}
.ws3a{word-spacing:470.256000px;}
.ws39{word-spacing:482.256000px;}
.ws37{word-spacing:537.360000px;}
.ws3b{word-spacing:550.272000px;}
._9{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._33{margin-left:-19.380000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.320000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._5{width:1.020000px;}
._a{width:2.100000px;}
._7{width:3.300000px;}
._6{width:4.350000px;}
._8{width:5.550000px;}
._c{width:7.500000px;}
._23{width:143.136000px;}
._2b{width:149.136000px;}
._24{width:157.152000px;}
._31{width:160.656000px;}
._2f{width:169.152000px;}
._26{width:173.616000px;}
._25{width:181.152000px;}
._22{width:185.136000px;}
._20{width:189.978000px;}
._2a{width:191.136000px;}
._30{width:193.152000px;}
._2e{width:199.152000px;}
._27{width:202.080000px;}
._29{width:203.616000px;}
._2d{width:207.600000px;}
._2c{width:226.464000px;}
._28{width:234.480000px;}
._21{width:241.872000px;}
._1e{width:260.106000px;}
._1f{width:265.152000px;}
._e{width:341.664000px;}
._19{width:345.600000px;}
._11{width:397.062000px;}
._12{width:418.374000px;}
._1d{width:419.904000px;}
._32{width:422.262000px;}
._15{width:431.184000px;}
._1c{width:438.198000px;}
._14{width:441.840000px;}
._18{width:443.526000px;}
._1b{width:446.256000px;}
._13{width:449.478000px;}
._16{width:452.214000px;}
._10{width:454.806000px;}
._1a{width:457.584000px;}
._d{width:459.936000px;}
._f{width:465.942000px;}
._17{width:472.230000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.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;}
.y140{bottom:80.263500px;}
.y6f{bottom:82.822500px;}
.y68{bottom:82.834200px;}
.yc3{bottom:83.236050px;}
.yd9{bottom:83.628600px;}
.y64{bottom:83.770350px;}
.y73{bottom:84.086400px;}
.y2b{bottom:88.026750px;}
.yff{bottom:92.121900px;}
.y97{bottom:92.603550px;}
.ybd{bottom:92.887200px;}
.y13f{bottom:95.263500px;}
.y6e{bottom:98.566500px;}
.yc2{bottom:98.980050px;}
.y72{bottom:99.830400px;}
.yd8{bottom:101.628600px;}
.y63{bottom:101.770350px;}
.y2a{bottom:103.023000px;}
.yfe{bottom:107.121900px;}
.y96{bottom:108.851550px;}
.ybc{bottom:109.135200px;}
.y13e{bottom:110.263500px;}
.yc1{bottom:114.724050px;}
.y71{bottom:115.574400px;}
.yd7{bottom:119.628600px;}
.y62{bottom:119.770350px;}
.yfd{bottom:122.121900px;}
.y95{bottom:125.099550px;}
.y13d{bottom:125.263500px;}
.ybb{bottom:125.383200px;}
.yfc{bottom:137.121900px;}
.yd6{bottom:137.628600px;}
.y61{bottom:137.770350px;}
.y13c{bottom:140.263500px;}
.y94{bottom:141.347550px;}
.yba{bottom:141.631200px;}
.yfb{bottom:152.121900px;}
.y13b{bottom:155.263500px;}
.yd5{bottom:155.628600px;}
.y60{bottom:155.770350px;}
.y93{bottom:157.595550px;}
.yfa{bottom:167.121900px;}
.y27{bottom:168.420000px;}
.y13a{bottom:170.263500px;}
.yb9{bottom:170.635200px;}
.yd4{bottom:173.223600px;}
.y5f{bottom:173.770350px;}
.yf9{bottom:182.121900px;}
.y69{bottom:183.492000px;}
.y139{bottom:185.263500px;}
.y26{bottom:186.420000px;}
.yb8{bottom:186.883200px;}
.y92{bottom:189.107550px;}
.y5e{bottom:191.770350px;}
.yf8{bottom:197.121900px;}
.y138{bottom:200.263500px;}
.y25{bottom:204.420000px;}
.yd3{bottom:209.628600px;}
.y5d{bottom:209.770350px;}
.yf7{bottom:212.121900px;}
.y137{bottom:215.263500px;}
.yb7{bottom:215.887200px;}
.y24{bottom:222.420000px;}
.y91{bottom:224.002650px;}
.yf6{bottom:227.121900px;}
.yd2{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y136{bottom:230.263500px;}
.yb6{bottom:232.190250px;}
.y23{bottom:240.420000px;}
.yf5{bottom:242.121900px;}
.y90{bottom:243.502650px;}
.y135{bottom:245.263500px;}
.yd1{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.yb5{bottom:248.438250px;}
.yf4{bottom:257.121900px;}
.y22{bottom:258.420000px;}
.y134{bottom:260.263500px;}
.yd0{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.yb4{bottom:264.686250px;}
.yf3{bottom:272.121900px;}
.y133{bottom:275.263500px;}
.y21{bottom:276.420000px;}
.ycf{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.yf2{bottom:287.121900px;}
.y132{bottom:290.263500px;}
.yb3{bottom:293.690250px;}
.y20{bottom:294.420000px;}
.y8f{bottom:298.253250px;}
.yce{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.yf1{bottom:302.121900px;}
.y131{bottom:305.263500px;}
.yb2{bottom:309.938250px;}
.y1f{bottom:312.420000px;}
.y8e{bottom:314.501250px;}
.yf0{bottom:317.121900px;}
.ycd{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y130{bottom:320.263500px;}
.yb1{bottom:326.186250px;}
.y1e{bottom:330.420000px;}
.y8d{bottom:330.749250px;}
.yef{bottom:332.121900px;}
.y12f{bottom:335.263500px;}
.ycc{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.yb0{bottom:342.434250px;}
.y8c{bottom:346.997250px;}
.yee{bottom:347.121900px;}
.y1d{bottom:348.420000px;}
.y12e{bottom:350.263500px;}
.ycb{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.yed{bottom:362.121900px;}
.y12d{bottom:365.263500px;}
.y1c{bottom:366.420000px;}
.yaf{bottom:371.438250px;}
.yca{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y8b{bottom:376.001250px;}
.yec{bottom:377.121900px;}
.y12c{bottom:380.263500px;}
.y29{bottom:384.420000px;}
.yae{bottom:387.686250px;}
.yc9{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.yeb{bottom:392.121900px;}
.y8a{bottom:392.249250px;}
.y12b{bottom:395.263500px;}
.y1b{bottom:402.017250px;}
.y28{bottom:402.420000px;}
.yad{bottom:403.934250px;}
.yea{bottom:407.121900px;}
.yc8{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y12a{bottom:410.263500px;}
.yac{bottom:420.182250px;}
.y89{bottom:421.253250px;}
.ye9{bottom:422.121900px;}
.y129{bottom:425.263500px;}
.yc7{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.ye8{bottom:437.121900px;}
.y88{bottom:437.501250px;}
.y128{bottom:440.263500px;}
.yc6{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.yab{bottom:449.186250px;}
.ye7{bottom:452.121900px;}
.y87{bottom:453.749250px;}
.y127{bottom:455.263500px;}
.y4f{bottom:461.770350px;}
.yaa{bottom:465.434250px;}
.ye6{bottom:467.121900px;}
.yc0{bottom:469.948050px;}
.y86{bottom:469.997250px;}
.y126{bottom:470.263500px;}
.y1a{bottom:476.014200px;}
.yc5{bottom:479.230350px;}
.y4e{bottom:479.770350px;}
.ya9{bottom:481.682250px;}
.ye5{bottom:482.121900px;}
.y125{bottom:485.263500px;}
.ybf{bottom:485.692050px;}
.ye4{bottom:497.121900px;}
.y4d{bottom:497.770350px;}
.ya8{bottom:497.930250px;}
.y85{bottom:499.001250px;}
.y124{bottom:500.263500px;}
.y19{bottom:503.359200px;}
.ye3{bottom:512.121900px;}
.y84{bottom:515.249250px;}
.y123{bottom:515.265900px;}
.y4c{bottom:515.770350px;}
.y18{bottom:521.359200px;}
.ye2{bottom:527.121900px;}
.ya7{bottom:529.442250px;}
.y122{bottom:530.265900px;}
.y83{bottom:531.497250px;}
.y4b{bottom:533.770350px;}
.y17{bottom:539.359200px;}
.ye1{bottom:542.121900px;}
.y121{bottom:545.265900px;}
.y82{bottom:547.745250px;}
.y4a{bottom:551.770350px;}
.ye0{bottom:557.121900px;}
.y16{bottom:557.359200px;}
.y120{bottom:560.265900px;}
.ya6{bottom:564.337350px;}
.y49{bottom:569.770350px;}
.ydf{bottom:572.121900px;}
.y11f{bottom:575.265900px;}
.y15{bottom:575.359200px;}
.y81{bottom:576.749250px;}
.ya5{bottom:583.840350px;}
.y48{bottom:587.770350px;}
.y11e{bottom:590.265900px;}
.y80{bottom:592.997250px;}
.y14{bottom:593.359200px;}
.ya4{bottom:603.340350px;}
.yde{bottom:605.230350px;}
.y11d{bottom:605.265900px;}
.y47{bottom:605.770350px;}
.y7f{bottom:609.245250px;}
.y13{bottom:611.359200px;}
.y11c{bottom:620.265900px;}
.ya3{bottom:622.840350px;}
.y46{bottom:623.770350px;}
.y7e{bottom:625.493250px;}
.y12{bottom:629.359200px;}
.y11b{bottom:635.265900px;}
.y45{bottom:641.770350px;}
.ya2{bottom:642.340350px;}
.y11{bottom:647.359200px;}
.y11a{bottom:650.265900px;}
.y7d{bottom:654.497250px;}
.y44{bottom:659.770350px;}
.y119{bottom:665.265900px;}
.y10{bottom:665.359200px;}
.y7c{bottom:670.745250px;}
.ydd{bottom:677.365350px;}
.y43{bottom:677.770350px;}
.y118{bottom:680.265900px;}
.yf{bottom:683.359200px;}
.y7b{bottom:686.993250px;}
.y117{bottom:695.265900px;}
.ya1{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.ye{bottom:701.359200px;}
.y7a{bottom:703.241250px;}
.y158{bottom:710.263500px;}
.y116{bottom:710.265900px;}
.ydc{bottom:713.365350px;}
.ya0{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.yd{bottom:719.359200px;}
.y157{bottom:725.263500px;}
.y115{bottom:725.265900px;}
.y9f{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y79{bottom:734.753250px;}
.yc{bottom:737.359200px;}
.y156{bottom:740.263500px;}
.y114{bottom:740.265900px;}
.y9e{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.y155{bottom:755.263500px;}
.y113{bottom:755.265900px;}
.y66{bottom:767.365350px;}
.y9d{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y78{bottom:769.645350px;}
.y154{bottom:770.263500px;}
.y112{bottom:770.265900px;}
.yb{bottom:782.517450px;}
.y153{bottom:785.263500px;}
.y111{bottom:785.265900px;}
.y9c{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y77{bottom:789.145350px;}
.ya{bottom:794.968200px;}
.y152{bottom:800.263500px;}
.y110{bottom:800.265900px;}
.y65{bottom:803.230350px;}
.y9b{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y76{bottom:808.645350px;}
.y151{bottom:815.263500px;}
.y10f{bottom:815.265900px;}
.ydb{bottom:821.365350px;}
.y9a{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y9{bottom:826.683600px;}
.y75{bottom:828.145350px;}
.y150{bottom:830.263500px;}
.y10e{bottom:830.265900px;}
.y99{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y8{bottom:840.183600px;}
.y14f{bottom:845.263500px;}
.y10d{bottom:845.265900px;}
.y6d{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y7{bottom:859.108950px;}
.y14e{bottom:860.263500px;}
.y10c{bottom:860.265900px;}
.y14d{bottom:875.263500px;}
.y10b{bottom:875.265900px;}
.y6c{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y6{bottom:887.830950px;}
.y14c{bottom:890.263500px;}
.y10a{bottom:890.265900px;}
.y37{bottom:893.770350px;}
.y14b{bottom:905.263500px;}
.y109{bottom:905.265900px;}
.y6b{bottom:911.230350px;}
.y36{bottom:911.770350px;}
.y14a{bottom:920.263500px;}
.y108{bottom:920.265900px;}
.yda{bottom:929.365350px;}
.y35{bottom:929.770350px;}
.y5{bottom:934.036050px;}
.y149{bottom:935.263500px;}
.y107{bottom:935.265900px;}
.y34{bottom:947.770350px;}
.y148{bottom:950.263500px;}
.y106{bottom:950.265900px;}
.y147{bottom:965.263500px;}
.y105{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y4{bottom:970.496850px;}
.y146{bottom:980.263500px;}
.y104{bottom:980.265900px;}
.y32{bottom:983.770350px;}
.y145{bottom:995.263500px;}
.y103{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y3{bottom:1006.926000px;}
.y144{bottom:1010.263500px;}
.y102{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y143{bottom:1025.263500px;}
.y101{bottom:1025.265900px;}
.y2f{bottom:1037.770350px;}
.y142{bottom:1040.263500px;}
.y100{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y6a{bottom:1132.416000px;}
.y67{bottom:1132.418700px;}
.y70{bottom:1132.421700px;}
.y141{bottom:1132.423500px;}
.y74{bottom:1132.430400px;}
.yc4{bottom:1132.432050px;}
.y98{bottom:1132.439550px;}
.ybe{bottom:1132.447200px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.hc{height:41.689453px;}
.h14{height:42.054361px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.h9{height:43.740234px;}
.h11{height:52.550871px;}
.h13{height:52.555951px;}
.h10{height:52.567951px;}
.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;}
.x17{left:70.582650px;}
.xb{left:76.535400px;}
.x18{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.921150px;}
.x25{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x22{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x5{left:212.876400px;}
.x21{left:215.545350px;}
.x1b{left:220.135350px;}
.x1a{left:252.805350px;}
.x1e{left:264.616350px;}
.x1d{left:266.584350px;}
.x14{left:402.033600px;}
.x19{left:430.033350px;}
.xa{left:455.041500px;}
.xd{left:457.100400px;}
.x12{left:478.345350px;}
.x7{left:480.471000px;}
.x26{left:482.639400px;}
.xf{left:491.120400px;}
.x23{left:503.863350px;}
.x13{left:512.365350px;}
.x8{left:514.491000px;}
.xe{left:525.290400px;}
.x1f{left:570.710400px;}
.x16{left:591.650400px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x20{left:721.717650px;}
.x10{left:728.391600px;}
.x24{left:743.892300px;}
.x15{left:749.649600px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:20.098133pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls4a{letter-spacing:-0.960000pt;}
.ls49{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls5d{letter-spacing:-0.597333pt;}
.ls39{letter-spacing:-0.533333pt;}
.ls55{letter-spacing:-0.373333pt;}
.ls3b{letter-spacing:-0.213333pt;}
.ls4b{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls5e{letter-spacing:-0.085333pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls80{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls7c{letter-spacing:0.042667pt;}
.ls46{letter-spacing:0.053333pt;}
.ls59{letter-spacing:0.054933pt;}
.ls79{letter-spacing:0.085333pt;}
.ls58{letter-spacing:0.086400pt;}
.ls13{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.160000pt;}
.ls48{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.266667pt;}
.ls6b{letter-spacing:0.298667pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls7a{letter-spacing:0.341333pt;}
.ls37{letter-spacing:0.354667pt;}
.ls4f{letter-spacing:0.362667pt;}
.ls29{letter-spacing:0.373333pt;}
.ls73{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.407467pt;}
.lsd{letter-spacing:0.426667pt;}
.ls85{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls6a{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.597333pt;}
.ls36{letter-spacing:0.614400pt;}
.ls5{letter-spacing:0.640000pt;}
.ls82{letter-spacing:0.682667pt;}
.ls26{letter-spacing:0.693333pt;}
.ls41{letter-spacing:0.712533pt;}
.ls67{letter-spacing:0.725333pt;}
.ls30{letter-spacing:0.746133pt;}
.ls18{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.853333pt;}
.ls7d{letter-spacing:0.896000pt;}
.lsc{letter-spacing:0.906667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.981333pt;}
.ls47{letter-spacing:1.013333pt;}
.ls6c{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.066667pt;}
.ls66{letter-spacing:1.109333pt;}
.ls20{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.226667pt;}
.ls84{letter-spacing:1.237333pt;}
.ls16{letter-spacing:1.280000pt;}
.ls78{letter-spacing:1.322667pt;}
.ls8{letter-spacing:1.333333pt;}
.ls2b{letter-spacing:1.386667pt;}
.ls6f{letter-spacing:1.408000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls7e{letter-spacing:1.450667pt;}
.ls7{letter-spacing:1.493333pt;}
.ls70{letter-spacing:1.536000pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls86{letter-spacing:1.578667pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls89{letter-spacing:1.621333pt;}
.ls25{letter-spacing:1.653333pt;}
.ls7b{letter-spacing:1.664000pt;}
.ls9{letter-spacing:1.706667pt;}
.ls7f{letter-spacing:1.749333pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls76{letter-spacing:1.792000pt;}
.ls43{letter-spacing:1.813333pt;}
.ls75{letter-spacing:1.834667pt;}
.ls3d{letter-spacing:1.866667pt;}
.ls44{letter-spacing:1.920000pt;}
.ls57{letter-spacing:1.973333pt;}
.ls83{letter-spacing:2.005333pt;}
.ls21{letter-spacing:2.080000pt;}
.ls72{letter-spacing:2.090667pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls28{letter-spacing:2.186667pt;}
.ls31{letter-spacing:2.293333pt;}
.ls74{letter-spacing:2.304000pt;}
.lsb{letter-spacing:2.346667pt;}
.ls4d{letter-spacing:2.400000pt;}
.lse{letter-spacing:2.453333pt;}
.ls62{letter-spacing:2.506667pt;}
.ls71{letter-spacing:2.517333pt;}
.ls1e{letter-spacing:2.560000pt;}
.ls45{letter-spacing:2.613333pt;}
.ls88{letter-spacing:2.645333pt;}
.ls3{letter-spacing:2.666667pt;}
.lsf{letter-spacing:2.773333pt;}
.ls1f{letter-spacing:2.826667pt;}
.ls24{letter-spacing:2.880000pt;}
.ls1b{letter-spacing:2.933333pt;}
.ls81{letter-spacing:2.944000pt;}
.ls2d{letter-spacing:2.986667pt;}
.ls3e{letter-spacing:3.093333pt;}
.ls19{letter-spacing:3.146667pt;}
.ls69{letter-spacing:3.157333pt;}
.ls2c{letter-spacing:3.253333pt;}
.ls35{letter-spacing:3.520000pt;}
.ls61{letter-spacing:3.680000pt;}
.ls32{letter-spacing:3.733333pt;}
.ls1c{letter-spacing:3.893333pt;}
.ls6e{letter-spacing:4.224000pt;}
.ls4e{letter-spacing:4.533333pt;}
.ls63{letter-spacing:4.746667pt;}
.ls56{letter-spacing:4.800000pt;}
.ls60{letter-spacing:5.013333pt;}
.ls40{letter-spacing:5.280000pt;}
.ls5f{letter-spacing:5.493333pt;}
.ls34{letter-spacing:5.760000pt;}
.ls64{letter-spacing:6.293333pt;}
.ls33{letter-spacing:8.160000pt;}
.ls0{letter-spacing:52.918112pt;}
.ls5b{letter-spacing:155.904000pt;}
.ls5a{letter-spacing:167.049600pt;}
.ls50{letter-spacing:452.608000pt;}
.ls54{letter-spacing:452.992000pt;}
.ls52{letter-spacing:463.274667pt;}
.ls51{letter-spacing:463.658667pt;}
.ls53{letter-spacing:493.482667pt;}
.wsa{word-spacing:-17.066667pt;}
.ws58{word-spacing:-16.746667pt;}
.ws4d{word-spacing:-15.893333pt;}
.ws55{word-spacing:-15.146667pt;}
.ws20{word-spacing:-14.826667pt;}
.ws53{word-spacing:-14.560000pt;}
.ws52{word-spacing:-14.400000pt;}
.ws8{word-spacing:-13.973333pt;}
.ws36{word-spacing:-13.920000pt;}
.ws57{word-spacing:-13.866667pt;}
.ws3f{word-spacing:-13.760000pt;}
.ws54{word-spacing:-13.706667pt;}
.ws9{word-spacing:-13.493333pt;}
.ws56{word-spacing:-13.440000pt;}
.ws7f{word-spacing:-13.312000pt;}
.ws80{word-spacing:-12.160000pt;}
.ws7d{word-spacing:-12.074667pt;}
.ws66{word-spacing:-11.989333pt;}
.ws69{word-spacing:-11.946667pt;}
.ws2{word-spacing:-11.861333pt;}
.ws7e{word-spacing:-11.306667pt;}
.ws68{word-spacing:-11.178667pt;}
.ws1{word-spacing:-11.120000pt;}
.ws65{word-spacing:-10.965333pt;}
.ws49{word-spacing:-10.837333pt;}
.ws67{word-spacing:-10.666667pt;}
.ws81{word-spacing:-10.538667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws11{word-spacing:-3.253333pt;}
.ws86{word-spacing:-2.645333pt;}
.ws4{word-spacing:-2.565333pt;}
.ws26{word-spacing:-2.346667pt;}
.ws75{word-spacing:-2.261333pt;}
.ws32{word-spacing:-2.133333pt;}
.wsd{word-spacing:-2.080000pt;}
.ws15{word-spacing:-1.973333pt;}
.ws84{word-spacing:-1.706667pt;}
.ws5f{word-spacing:-1.653333pt;}
.ws4e{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws79{word-spacing:-1.280000pt;}
.ws33{word-spacing:-1.173333pt;}
.ws59{word-spacing:-1.013333pt;}
.ws89{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.693333pt;}
.ws88{word-spacing:-0.682667pt;}
.wsc{word-spacing:-0.640000pt;}
.ws87{word-spacing:-0.554667pt;}
.ws18{word-spacing:-0.426667pt;}
.ws76{word-spacing:-0.341333pt;}
.ws30{word-spacing:-0.320000pt;}
.ws7a{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.106667pt;}
.ws78{word-spacing:-0.085333pt;}
.ws3{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.ws51{word-spacing:0.085333pt;}
.ws4f{word-spacing:0.106667pt;}
.ws6e{word-spacing:0.128000pt;}
.ws61{word-spacing:0.160000pt;}
.ws21{word-spacing:0.373333pt;}
.ws2e{word-spacing:0.426667pt;}
.ws10{word-spacing:0.533333pt;}
.ws48{word-spacing:0.693333pt;}
.ws83{word-spacing:0.768000pt;}
.ws22{word-spacing:0.800000pt;}
.ws14{word-spacing:0.853333pt;}
.ws29{word-spacing:0.906667pt;}
.ws2b{word-spacing:0.960000pt;}
.ws25{word-spacing:0.981333pt;}
.ws1e{word-spacing:1.013333pt;}
.ws72{word-spacing:1.024000pt;}
.ws44{word-spacing:1.066667pt;}
.ws71{word-spacing:1.109333pt;}
.ws45{word-spacing:1.120000pt;}
.ws70{word-spacing:1.152000pt;}
.ws1d{word-spacing:1.173333pt;}
.ws2f{word-spacing:1.386667pt;}
.ws1b{word-spacing:1.440000pt;}
.ws3e{word-spacing:1.493333pt;}
.ws24{word-spacing:1.546667pt;}
.ws50{word-spacing:1.600000pt;}
.ws82{word-spacing:1.621333pt;}
.ws73{word-spacing:1.834667pt;}
.ws5d{word-spacing:1.866667pt;}
.ws74{word-spacing:1.877333pt;}
.ws2d{word-spacing:1.920000pt;}
.ws4a{word-spacing:2.005333pt;}
.ws5a{word-spacing:2.026667pt;}
.ws19{word-spacing:2.080000pt;}
.wsb{word-spacing:2.133333pt;}
.ws12{word-spacing:2.240000pt;}
.ws43{word-spacing:2.293333pt;}
.ws47{word-spacing:2.346667pt;}
.ws46{word-spacing:2.453333pt;}
.ws6f{word-spacing:2.517333pt;}
.ws16{word-spacing:2.560000pt;}
.ws7c{word-spacing:2.645333pt;}
.ws7b{word-spacing:2.688000pt;}
.ws17{word-spacing:2.720000pt;}
.ws23{word-spacing:2.773333pt;}
.ws77{word-spacing:2.816000pt;}
.ws63{word-spacing:2.880000pt;}
.ws85{word-spacing:2.944000pt;}
.ws5b{word-spacing:3.040000pt;}
.ws2c{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.114667pt;}
.ws1f{word-spacing:3.200000pt;}
.ws31{word-spacing:3.253333pt;}
.ws60{word-spacing:3.360000pt;}
.ws2a{word-spacing:3.466667pt;}
.ws34{word-spacing:3.498667pt;}
.ws4b{word-spacing:3.541333pt;}
.ws35{word-spacing:3.669333pt;}
.ws3c{word-spacing:3.733333pt;}
.ws5e{word-spacing:3.946667pt;}
.ws13{word-spacing:4.000000pt;}
.wse{word-spacing:4.053333pt;}
.ws64{word-spacing:4.106667pt;}
.ws62{word-spacing:4.160000pt;}
.ws1a{word-spacing:4.213333pt;}
.ws4c{word-spacing:4.266667pt;}
.ws6{word-spacing:4.373333pt;}
.ws5{word-spacing:4.426667pt;}
.ws6b{word-spacing:4.853333pt;}
.ws6a{word-spacing:4.906667pt;}
.ws3d{word-spacing:5.333333pt;}
.ws28{word-spacing:8.160000pt;}
.ws42{word-spacing:121.898667pt;}
.ws40{word-spacing:198.954667pt;}
.ws41{word-spacing:221.141333pt;}
.ws38{word-spacing:407.338667pt;}
.ws3a{word-spacing:418.005333pt;}
.ws39{word-spacing:428.672000pt;}
.ws37{word-spacing:477.653333pt;}
.ws3b{word-spacing:489.130667pt;}
._9{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._33{margin-left:-17.226667pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.840000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._5{width:0.906667pt;}
._a{width:1.866667pt;}
._7{width:2.933333pt;}
._6{width:3.866667pt;}
._8{width:4.933333pt;}
._c{width:6.666667pt;}
._23{width:127.232000pt;}
._2b{width:132.565333pt;}
._24{width:139.690667pt;}
._31{width:142.805333pt;}
._2f{width:150.357333pt;}
._26{width:154.325333pt;}
._25{width:161.024000pt;}
._22{width:164.565333pt;}
._20{width:168.869333pt;}
._2a{width:169.898667pt;}
._30{width:171.690667pt;}
._2e{width:177.024000pt;}
._27{width:179.626667pt;}
._29{width:180.992000pt;}
._2d{width:184.533333pt;}
._2c{width:201.301333pt;}
._28{width:208.426667pt;}
._21{width:214.997333pt;}
._1e{width:231.205333pt;}
._1f{width:235.690667pt;}
._e{width:303.701333pt;}
._19{width:307.200000pt;}
._11{width:352.944000pt;}
._12{width:371.888000pt;}
._1d{width:373.248000pt;}
._32{width:375.344000pt;}
._15{width:383.274667pt;}
._1c{width:389.509333pt;}
._14{width:392.746667pt;}
._18{width:394.245333pt;}
._1b{width:396.672000pt;}
._13{width:399.536000pt;}
._16{width:401.968000pt;}
._10{width:404.272000pt;}
._1a{width:406.741333pt;}
._d{width:408.832000pt;}
._f{width:414.170667pt;}
._17{width:419.760000pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.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;}
.y140{bottom:71.345333pt;}
.y6f{bottom:73.620000pt;}
.y68{bottom:73.630400pt;}
.yc3{bottom:73.987600pt;}
.yd9{bottom:74.336533pt;}
.y64{bottom:74.462533pt;}
.y73{bottom:74.743467pt;}
.y2b{bottom:78.246000pt;}
.yff{bottom:81.886133pt;}
.y97{bottom:82.314267pt;}
.ybd{bottom:82.566400pt;}
.y13f{bottom:84.678667pt;}
.y6e{bottom:87.614667pt;}
.yc2{bottom:87.982267pt;}
.y72{bottom:88.738133pt;}
.yd8{bottom:90.336533pt;}
.y63{bottom:90.462533pt;}
.y2a{bottom:91.576000pt;}
.yfe{bottom:95.219467pt;}
.y96{bottom:96.756933pt;}
.ybc{bottom:97.009067pt;}
.y13e{bottom:98.012000pt;}
.yc1{bottom:101.976933pt;}
.y71{bottom:102.732800pt;}
.yd7{bottom:106.336533pt;}
.y62{bottom:106.462533pt;}
.yfd{bottom:108.552800pt;}
.y95{bottom:111.199600pt;}
.y13d{bottom:111.345333pt;}
.ybb{bottom:111.451733pt;}
.yfc{bottom:121.886133pt;}
.yd6{bottom:122.336533pt;}
.y61{bottom:122.462533pt;}
.y13c{bottom:124.678667pt;}
.y94{bottom:125.642267pt;}
.yba{bottom:125.894400pt;}
.yfb{bottom:135.219467pt;}
.y13b{bottom:138.012000pt;}
.yd5{bottom:138.336533pt;}
.y60{bottom:138.462533pt;}
.y93{bottom:140.084933pt;}
.yfa{bottom:148.552800pt;}
.y27{bottom:149.706667pt;}
.y13a{bottom:151.345333pt;}
.yb9{bottom:151.675733pt;}
.yd4{bottom:153.976533pt;}
.y5f{bottom:154.462533pt;}
.yf9{bottom:161.886133pt;}
.y69{bottom:163.104000pt;}
.y139{bottom:164.678667pt;}
.y26{bottom:165.706667pt;}
.yb8{bottom:166.118400pt;}
.y92{bottom:168.095600pt;}
.y5e{bottom:170.462533pt;}
.yf8{bottom:175.219467pt;}
.y138{bottom:178.012000pt;}
.y25{bottom:181.706667pt;}
.yd3{bottom:186.336533pt;}
.y5d{bottom:186.462533pt;}
.yf7{bottom:188.552800pt;}
.y137{bottom:191.345333pt;}
.yb7{bottom:191.899733pt;}
.y24{bottom:197.706667pt;}
.y91{bottom:199.113467pt;}
.yf6{bottom:201.886133pt;}
.yd2{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y136{bottom:204.678667pt;}
.yb6{bottom:206.391333pt;}
.y23{bottom:213.706667pt;}
.yf5{bottom:215.219467pt;}
.y90{bottom:216.446800pt;}
.y135{bottom:218.012000pt;}
.yd1{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.yb5{bottom:220.834000pt;}
.yf4{bottom:228.552800pt;}
.y22{bottom:229.706667pt;}
.y134{bottom:231.345333pt;}
.yd0{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.yb4{bottom:235.276667pt;}
.yf3{bottom:241.886133pt;}
.y133{bottom:244.678667pt;}
.y21{bottom:245.706667pt;}
.ycf{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.yf2{bottom:255.219467pt;}
.y132{bottom:258.012000pt;}
.yb3{bottom:261.058000pt;}
.y20{bottom:261.706667pt;}
.y8f{bottom:265.114000pt;}
.yce{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.yf1{bottom:268.552800pt;}
.y131{bottom:271.345333pt;}
.yb2{bottom:275.500667pt;}
.y1f{bottom:277.706667pt;}
.y8e{bottom:279.556667pt;}
.yf0{bottom:281.886133pt;}
.ycd{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y130{bottom:284.678667pt;}
.yb1{bottom:289.943333pt;}
.y1e{bottom:293.706667pt;}
.y8d{bottom:293.999333pt;}
.yef{bottom:295.219467pt;}
.y12f{bottom:298.012000pt;}
.ycc{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.yb0{bottom:304.386000pt;}
.y8c{bottom:308.442000pt;}
.yee{bottom:308.552800pt;}
.y1d{bottom:309.706667pt;}
.y12e{bottom:311.345333pt;}
.ycb{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.yed{bottom:321.886133pt;}
.y12d{bottom:324.678667pt;}
.y1c{bottom:325.706667pt;}
.yaf{bottom:330.167333pt;}
.yca{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y8b{bottom:334.223333pt;}
.yec{bottom:335.219467pt;}
.y12c{bottom:338.012000pt;}
.y29{bottom:341.706667pt;}
.yae{bottom:344.610000pt;}
.yc9{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.yeb{bottom:348.552800pt;}
.y8a{bottom:348.666000pt;}
.y12b{bottom:351.345333pt;}
.y1b{bottom:357.348667pt;}
.y28{bottom:357.706667pt;}
.yad{bottom:359.052667pt;}
.yea{bottom:361.886133pt;}
.yc8{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y12a{bottom:364.678667pt;}
.yac{bottom:373.495333pt;}
.y89{bottom:374.447333pt;}
.ye9{bottom:375.219467pt;}
.y129{bottom:378.012000pt;}
.yc7{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.ye8{bottom:388.552800pt;}
.y88{bottom:388.890000pt;}
.y128{bottom:391.345333pt;}
.yc6{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.yab{bottom:399.276667pt;}
.ye7{bottom:401.886133pt;}
.y87{bottom:403.332667pt;}
.y127{bottom:404.678667pt;}
.y4f{bottom:410.462533pt;}
.yaa{bottom:413.719333pt;}
.ye6{bottom:415.219467pt;}
.yc0{bottom:417.731600pt;}
.y86{bottom:417.775333pt;}
.y126{bottom:418.012000pt;}
.y1a{bottom:423.123733pt;}
.yc5{bottom:425.982533pt;}
.y4e{bottom:426.462533pt;}
.ya9{bottom:428.162000pt;}
.ye5{bottom:428.552800pt;}
.y125{bottom:431.345333pt;}
.ybf{bottom:431.726267pt;}
.ye4{bottom:441.886133pt;}
.y4d{bottom:442.462533pt;}
.ya8{bottom:442.604667pt;}
.y85{bottom:443.556667pt;}
.y124{bottom:444.678667pt;}
.y19{bottom:447.430400pt;}
.ye3{bottom:455.219467pt;}
.y84{bottom:457.999333pt;}
.y123{bottom:458.014133pt;}
.y4c{bottom:458.462533pt;}
.y18{bottom:463.430400pt;}
.ye2{bottom:468.552800pt;}
.ya7{bottom:470.615333pt;}
.y122{bottom:471.347467pt;}
.y83{bottom:472.442000pt;}
.y4b{bottom:474.462533pt;}
.y17{bottom:479.430400pt;}
.ye1{bottom:481.886133pt;}
.y121{bottom:484.680800pt;}
.y82{bottom:486.884667pt;}
.y4a{bottom:490.462533pt;}
.ye0{bottom:495.219467pt;}
.y16{bottom:495.430400pt;}
.y120{bottom:498.014133pt;}
.ya6{bottom:501.633200pt;}
.y49{bottom:506.462533pt;}
.ydf{bottom:508.552800pt;}
.y11f{bottom:511.347467pt;}
.y15{bottom:511.430400pt;}
.y81{bottom:512.666000pt;}
.ya5{bottom:518.969200pt;}
.y48{bottom:522.462533pt;}
.y11e{bottom:524.680800pt;}
.y80{bottom:527.108667pt;}
.y14{bottom:527.430400pt;}
.ya4{bottom:536.302533pt;}
.yde{bottom:537.982533pt;}
.y11d{bottom:538.014133pt;}
.y47{bottom:538.462533pt;}
.y7f{bottom:541.551333pt;}
.y13{bottom:543.430400pt;}
.y11c{bottom:551.347467pt;}
.ya3{bottom:553.635867pt;}
.y46{bottom:554.462533pt;}
.y7e{bottom:555.994000pt;}
.y12{bottom:559.430400pt;}
.y11b{bottom:564.680800pt;}
.y45{bottom:570.462533pt;}
.ya2{bottom:570.969200pt;}
.y11{bottom:575.430400pt;}
.y11a{bottom:578.014133pt;}
.y7d{bottom:581.775333pt;}
.y44{bottom:586.462533pt;}
.y119{bottom:591.347467pt;}
.y10{bottom:591.430400pt;}
.y7c{bottom:596.218000pt;}
.ydd{bottom:602.102533pt;}
.y43{bottom:602.462533pt;}
.y118{bottom:604.680800pt;}
.yf{bottom:607.430400pt;}
.y7b{bottom:610.660667pt;}
.y117{bottom:618.014133pt;}
.ya1{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.ye{bottom:623.430400pt;}
.y7a{bottom:625.103333pt;}
.y158{bottom:631.345333pt;}
.y116{bottom:631.347467pt;}
.ydc{bottom:634.102533pt;}
.ya0{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.yd{bottom:639.430400pt;}
.y157{bottom:644.678667pt;}
.y115{bottom:644.680800pt;}
.y9f{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y79{bottom:653.114000pt;}
.yc{bottom:655.430400pt;}
.y156{bottom:658.012000pt;}
.y114{bottom:658.014133pt;}
.y9e{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.y155{bottom:671.345333pt;}
.y113{bottom:671.347467pt;}
.y66{bottom:682.102533pt;}
.y9d{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y78{bottom:684.129200pt;}
.y154{bottom:684.678667pt;}
.y112{bottom:684.680800pt;}
.yb{bottom:695.571067pt;}
.y153{bottom:698.012000pt;}
.y111{bottom:698.014133pt;}
.y9c{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y77{bottom:701.462533pt;}
.ya{bottom:706.638400pt;}
.y152{bottom:711.345333pt;}
.y110{bottom:711.347467pt;}
.y65{bottom:713.982533pt;}
.y9b{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y76{bottom:718.795867pt;}
.y151{bottom:724.678667pt;}
.y10f{bottom:724.680800pt;}
.ydb{bottom:730.102533pt;}
.y9a{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y9{bottom:734.829867pt;}
.y75{bottom:736.129200pt;}
.y150{bottom:738.012000pt;}
.y10e{bottom:738.014133pt;}
.y99{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y8{bottom:746.829867pt;}
.y14f{bottom:751.345333pt;}
.y10d{bottom:751.347467pt;}
.y6d{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y7{bottom:763.652400pt;}
.y14e{bottom:764.678667pt;}
.y10c{bottom:764.680800pt;}
.y14d{bottom:778.012000pt;}
.y10b{bottom:778.014133pt;}
.y6c{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y6{bottom:789.183067pt;}
.y14c{bottom:791.345333pt;}
.y10a{bottom:791.347467pt;}
.y37{bottom:794.462533pt;}
.y14b{bottom:804.678667pt;}
.y109{bottom:804.680800pt;}
.y6b{bottom:809.982533pt;}
.y36{bottom:810.462533pt;}
.y14a{bottom:818.012000pt;}
.y108{bottom:818.014133pt;}
.yda{bottom:826.102533pt;}
.y35{bottom:826.462533pt;}
.y5{bottom:830.254267pt;}
.y149{bottom:831.345333pt;}
.y107{bottom:831.347467pt;}
.y34{bottom:842.462533pt;}
.y148{bottom:844.678667pt;}
.y106{bottom:844.680800pt;}
.y147{bottom:858.012000pt;}
.y105{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y4{bottom:862.663867pt;}
.y146{bottom:871.345333pt;}
.y104{bottom:871.347467pt;}
.y32{bottom:874.462533pt;}
.y145{bottom:884.678667pt;}
.y103{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y3{bottom:895.045333pt;}
.y144{bottom:898.012000pt;}
.y102{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y143{bottom:911.345333pt;}
.y101{bottom:911.347467pt;}
.y2f{bottom:922.462533pt;}
.y142{bottom:924.678667pt;}
.y100{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y6a{bottom:1006.592000pt;}
.y67{bottom:1006.594400pt;}
.y70{bottom:1006.597067pt;}
.y141{bottom:1006.598667pt;}
.y74{bottom:1006.604800pt;}
.yc4{bottom:1006.606267pt;}
.y98{bottom:1006.612933pt;}
.ybe{bottom:1006.619733pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.hc{height:37.057292pt;}
.h14{height:37.381654pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.h9{height:38.880208pt;}
.h11{height:46.711885pt;}
.h13{height:46.716401pt;}
.h10{height:46.727068pt;}
.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;}
.x17{left:62.740133pt;}
.xb{left:68.031467pt;}
.x18{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.818800pt;}
.x25{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x22{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x5{left:189.223467pt;}
.x21{left:191.595867pt;}
.x1b{left:195.675867pt;}
.x1a{left:224.715867pt;}
.x1e{left:235.214533pt;}
.x1d{left:236.963867pt;}
.x14{left:357.363200pt;}
.x19{left:382.251867pt;}
.xa{left:404.481333pt;}
.xd{left:406.311467pt;}
.x12{left:425.195867pt;}
.x7{left:427.085333pt;}
.x26{left:429.012800pt;}
.xf{left:436.551467pt;}
.x23{left:447.878533pt;}
.x13{left:455.435867pt;}
.x8{left:457.325333pt;}
.xe{left:466.924800pt;}
.x1f{left:507.298133pt;}
.x16{left:525.911467pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x20{left:641.526800pt;}
.x10{left:647.459200pt;}
.x24{left:661.237600pt;}
.x15{left:666.355200pt;}
}




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