
    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_68f4b56b4832e64767096b5f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b5778036b64b403824ef8662.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_bf0f4c9a9ff6bed11a92641c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_56ee0912e314d4714f003d7f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_9fc101de10569f58082c0eb3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.828000;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_ac932ace424fffc5cf1b47f7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_d68532e48d00d54a27c30432.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_212b7e586f6bdccc4f63eae8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_86b0d38c3fec255274f7d06d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6fb77bf3003a52910ca51137.woff')format("woff");}.ffa{font-family:ffa;line-height:0.822000;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);}
.v3{vertical-align:-16.830000px;}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-9.624000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v2{vertical-align:23.784000px;}
.ls25{letter-spacing:-14.760000px;}
.ls3b{letter-spacing:-7.344000px;}
.ls39{letter-spacing:-7.200000px;}
.ls47{letter-spacing:-4.800000px;}
.ls45{letter-spacing:-3.600000px;}
.ls1b{letter-spacing:-2.808000px;}
.ls42{letter-spacing:-2.160000px;}
.ls48{letter-spacing:-1.872000px;}
.ls3e{letter-spacing:-1.296000px;}
.ls2e{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.152000px;}
.ls3d{letter-spacing:-1.080000px;}
.ls41{letter-spacing:-0.936000px;}
.ls2a{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.016800px;}
.ls26{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.107400px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.240000px;}
.lse{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls33{letter-spacing:0.500400px;}
.ls10{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.648000px;}
.ls36{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.936000px;}
.ls9{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.224000px;}
.ls21{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.584000px;}
.ls1e{letter-spacing:1.656000px;}
.ls40{letter-spacing:3.360000px;}
.ls1a{letter-spacing:4.536000px;}
.ls46{letter-spacing:4.752000px;}
.ls18{letter-spacing:5.472000px;}
.ls3c{letter-spacing:5.760000px;}
.ls2{letter-spacing:7.380000px;}
.ls3f{letter-spacing:7.488000px;}
.ls44{letter-spacing:7.560000px;}
.ls43{letter-spacing:7.848000px;}
.ls27{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.436000px;}
.ls3{letter-spacing:8.460000px;}
.ls19{letter-spacing:8.640000px;}
.ls2c{letter-spacing:8.784000px;}
.ls3a{letter-spacing:8.856000px;}
.ls38{letter-spacing:9.072000px;}
.ls2f{letter-spacing:9.216000px;}
.ls35{letter-spacing:9.576000px;}
.ls31{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.740000px;}
.ls23{letter-spacing:14.580000px;}
.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;}
}
.ws56{word-spacing:-27.504000px;}
.ws74{word-spacing:-26.424000px;}
.ws7f{word-spacing:-25.344000px;}
.ws1{word-spacing:-22.200000px;}
.ws2b{word-spacing:-20.232000px;}
.ws3a{word-spacing:-19.872000px;}
.ws2e{word-spacing:-19.368000px;}
.ws47{word-spacing:-18.864000px;}
.ws6a{word-spacing:-18.720000px;}
.ws83{word-spacing:-18.648000px;}
.ws2c{word-spacing:-18.576000px;}
.ws2d{word-spacing:-18.504000px;}
.ws3d{word-spacing:-18.432000px;}
.ws20{word-spacing:-18.360000px;}
.ws57{word-spacing:-18.324000px;}
.ws62{word-spacing:-18.288000px;}
.ws50{word-spacing:-18.216000px;}
.ws46{word-spacing:-18.144000px;}
.ws38{word-spacing:-18.072000px;}
.ws21{word-spacing:-18.000000px;}
.ws3e{word-spacing:-17.928000px;}
.ws77{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws69{word-spacing:-17.712000px;}
.ws39{word-spacing:-17.640000px;}
.ws12{word-spacing:-17.568000px;}
.ws3f{word-spacing:-17.496000px;}
.ws2f{word-spacing:-17.424000px;}
.ws4b{word-spacing:-17.352000px;}
.ws73{word-spacing:-17.208000px;}
.ws48{word-spacing:-17.064000px;}
.ws72{word-spacing:-16.920000px;}
.ws78{word-spacing:-16.704000px;}
.ws82{word-spacing:-14.184000px;}
.ws30{word-spacing:-14.162400px;}
.ws40{word-spacing:-11.856000px;}
.ws5e{word-spacing:-9.576000px;}
.ws8a{word-spacing:-9.441600px;}
.ws58{word-spacing:-9.216000px;}
.ws5f{word-spacing:-9.072000px;}
.ws65{word-spacing:-8.856000px;}
.ws53{word-spacing:-8.784000px;}
.ws22{word-spacing:-8.640000px;}
.ws11{word-spacing:-8.496000px;}
.ws8{word-spacing:-8.460000px;}
.ws41{word-spacing:-8.280000px;}
.ws7e{word-spacing:-7.848000px;}
.ws6f{word-spacing:-7.488000px;}
.ws68{word-spacing:-5.760000px;}
.ws1f{word-spacing:-5.472000px;}
.ws88{word-spacing:-4.800000px;}
.ws24{word-spacing:-4.536000px;}
.ws61{word-spacing:-4.248000px;}
.ws71{word-spacing:-3.360000px;}
.ws79{word-spacing:-3.096000px;}
.ws70{word-spacing:-2.160000px;}
.ws31{word-spacing:-1.656000px;}
.ws32{word-spacing:-1.584000px;}
.ws4c{word-spacing:-1.440000px;}
.ws45{word-spacing:-1.368000px;}
.ws34{word-spacing:-1.296000px;}
.ws35{word-spacing:-1.224000px;}
.ws59{word-spacing:-1.152000px;}
.ws5d{word-spacing:-1.080000px;}
.wsd{word-spacing:-1.008000px;}
.ws3b{word-spacing:-0.936000px;}
.wse{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.648000px;}
.ws17{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.504000px;}
.wsf{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.ws4e{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.072000px;}
.ws1c{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws10{word-spacing:0.288000px;}
.ws9{word-spacing:0.360000px;}
.ws1d{word-spacing:0.432000px;}
.ws27{word-spacing:0.504000px;}
.ws2a{word-spacing:0.576000px;}
.ws43{word-spacing:0.648000px;}
.ws19{word-spacing:0.720000px;}
.wsc{word-spacing:0.792000px;}
.ws49{word-spacing:0.864000px;}
.ws76{word-spacing:0.936000px;}
.ws66{word-spacing:1.080000px;}
.ws54{word-spacing:1.152000px;}
.ws55{word-spacing:1.224000px;}
.ws6e{word-spacing:1.296000px;}
.ws75{word-spacing:1.440000px;}
.ws5b{word-spacing:1.512000px;}
.ws51{word-spacing:1.656000px;}
.ws5{word-spacing:1.800000px;}
.ws8c{word-spacing:1.872000px;}
.ws67{word-spacing:1.944000px;}
.ws63{word-spacing:2.088000px;}
.ws7a{word-spacing:2.160000px;}
.ws81{word-spacing:2.520000px;}
.ws52{word-spacing:2.808000px;}
.ws6d{word-spacing:3.096000px;}
.ws5c{word-spacing:3.168000px;}
.ws4f{word-spacing:3.360000px;}
.ws86{word-spacing:3.528000px;}
.ws3{word-spacing:3.720000px;}
.ws6{word-spacing:3.780000px;}
.ws7{word-spacing:4.200000px;}
.ws8b{word-spacing:4.800000px;}
.ws23{word-spacing:4.824000px;}
.ws42{word-spacing:5.040000px;}
.ws5a{word-spacing:5.328000px;}
.ws85{word-spacing:5.472000px;}
.ws7b{word-spacing:5.688000px;}
.ws4d{word-spacing:5.904000px;}
.ws29{word-spacing:6.192000px;}
.ws36{word-spacing:6.624000px;}
.ws37{word-spacing:6.768000px;}
.ws60{word-spacing:7.200000px;}
.ws64{word-spacing:7.344000px;}
.ws6b{word-spacing:7.776000px;}
.ws7c{word-spacing:7.848000px;}
.ws7d{word-spacing:8.064000px;}
.ws4{word-spacing:8.400000px;}
.ws4a{word-spacing:8.784000px;}
.ws6c{word-spacing:8.856000px;}
.ws87{word-spacing:9.144000px;}
.ws25{word-spacing:9.360000px;}
.ws16{word-spacing:10.080000px;}
.ws26{word-spacing:10.152000px;}
.ws84{word-spacing:10.224000px;}
.ws80{word-spacing:10.512000px;}
.ws3c{word-spacing:14.760000px;}
.ws89{word-spacing:76.512000px;}
.ws0{word-spacing:146.196000px;}
._f{margin-left:-948.820800px;}
._25{margin-left:-80.414400px;}
._21{margin-left:-73.104000px;}
._22{margin-left:-69.676800px;}
._10{margin-left:-14.781600px;}
._15{margin-left:-13.298400px;}
._3{margin-left:-11.928000px;}
._13{margin-left:-10.749600px;}
._16{margin-left:-9.691200px;}
._11{margin-left:-8.640000px;}
._7{margin-left:-7.554000px;}
._2{margin-left:-6.426000px;}
._5{margin-left:-4.440000px;}
._8{margin-left:-2.838000px;}
._0{margin-left:-1.782000px;}
._a{width:1.310400px;}
._4{width:2.586000px;}
._1{width:4.302000px;}
._c{width:6.202800px;}
._b{width:7.840800px;}
._d{width:9.093600px;}
._9{width:10.504800px;}
._e{width:11.556000px;}
._6{width:12.672000px;}
._12{width:14.074800px;}
._23{width:15.514800px;}
._20{width:18.864000px;}
._33{width:20.444400px;}
._30{width:21.868800px;}
._2c{width:24.361200px;}
._1d{width:27.547200px;}
._24{width:29.636400px;}
._14{width:31.646100px;}
._34{width:33.928800px;}
._1b{width:35.932800px;}
._1c{width:38.665200px;}
._2d{width:40.254000px;}
._2b{width:42.807600px;}
._1f{width:44.673600px;}
._1e{width:47.732400px;}
._31{width:48.879600px;}
._32{width:55.996800px;}
._18{width:57.777600px;}
._2a{width:59.684400px;}
._19{width:60.892800px;}
._35{width:66.379200px;}
._27{width:72.024000px;}
._1a{width:74.385600px;}
._17{width:76.350000px;}
._26{width:79.496400px;}
._2f{width:84.126000px;}
._36{width:92.976000px;}
._37{width:96.822000px;}
._28{width:99.350400px;}
._2e{width:102.337200px;}
._29{width:103.628400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs5{font-size:35.700000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y44{bottom:117.000000px;}
.y171{bottom:117.210000px;}
.yb1{bottom:118.110000px;}
.y13b{bottom:118.128000px;}
.y8d{bottom:118.704000px;}
.y1f{bottom:118.952400px;}
.yd3{bottom:121.207500px;}
.y68{bottom:132.000000px;}
.y170{bottom:132.354000px;}
.y13a{bottom:133.128000px;}
.yf6{bottom:136.207500px;}
.y43{bottom:139.500000px;}
.y1e{bottom:141.002400px;}
.yb0{bottom:141.204000px;}
.y8c{bottom:141.798000px;}
.y67{bottom:147.000000px;}
.y16f{bottom:147.498000px;}
.y139{bottom:148.128000px;}
.y119{bottom:151.207500px;}
.y1a4{bottom:155.622000px;}
.y42{bottom:162.000000px;}
.y16e{bottom:162.642000px;}
.y1d{bottom:163.052400px;}
.y138{bottom:163.128000px;}
.yaf{bottom:164.298000px;}
.y8b{bottom:164.892000px;}
.y6a{bottom:166.207500px;}
.y1a3{bottom:170.622000px;}
.yf5{bottom:174.492000px;}
.y66{bottom:177.000000px;}
.y16d{bottom:177.786000px;}
.y137{bottom:178.128000px;}
.yd2{bottom:181.207500px;}
.y41{bottom:184.500000px;}
.y1c{bottom:185.102400px;}
.y1a2{bottom:185.622000px;}
.yae{bottom:187.392000px;}
.y8a{bottom:187.986000px;}
.y65{bottom:192.000000px;}
.y16c{bottom:192.930000px;}
.y136{bottom:193.128000px;}
.y118{bottom:194.514000px;}
.yf4{bottom:197.298000px;}
.y1a1{bottom:200.622000px;}
.y40{bottom:207.000000px;}
.y1b{bottom:207.152400px;}
.y16b{bottom:208.074000px;}
.y135{bottom:208.128000px;}
.yad{bottom:210.486000px;}
.y89{bottom:211.080000px;}
.yd4{bottom:211.207500px;}
.y1a0{bottom:215.622000px;}
.y117{bottom:217.014000px;}
.yf3{bottom:220.104000px;}
.y64{bottom:222.000000px;}
.y134{bottom:223.128000px;}
.y16a{bottom:223.218000px;}
.yd1{bottom:224.214000px;}
.y1a{bottom:229.202400px;}
.y3f{bottom:229.500000px;}
.y19f{bottom:230.622000px;}
.yac{bottom:233.580000px;}
.y88{bottom:234.174000px;}
.y63{bottom:237.000000px;}
.y133{bottom:238.128000px;}
.y169{bottom:238.362000px;}
.y116{bottom:239.208000px;}
.yf2{bottom:242.910000px;}
.y19e{bottom:245.622000px;}
.yd0{bottom:246.858000px;}
.y19{bottom:251.252400px;}
.y3e{bottom:252.000000px;}
.y132{bottom:253.128000px;}
.y168{bottom:253.506000px;}
.y69{bottom:256.207500px;}
.yab{bottom:256.674000px;}
.y87{bottom:257.268000px;}
.y19d{bottom:260.622000px;}
.y115{bottom:261.402000px;}
.yf1{bottom:265.716000px;}
.y62{bottom:267.000000px;}
.y131{bottom:268.128000px;}
.y167{bottom:268.650000px;}
.ycf{bottom:269.502000px;}
.y18{bottom:273.302400px;}
.y3d{bottom:274.500000px;}
.y19c{bottom:275.622000px;}
.yaa{bottom:279.768000px;}
.y86{bottom:280.362000px;}
.y61{bottom:282.000000px;}
.y130{bottom:283.128000px;}
.y114{bottom:283.596000px;}
.y166{bottom:283.794000px;}
.yf0{bottom:288.522000px;}
.y19b{bottom:290.622000px;}
.yce{bottom:292.146000px;}
.y17{bottom:295.352400px;}
.y3c{bottom:297.000000px;}
.y12f{bottom:298.128000px;}
.y165{bottom:298.938000px;}
.ya9{bottom:302.862000px;}
.y85{bottom:303.456000px;}
.y19a{bottom:305.622000px;}
.y113{bottom:305.790000px;}
.yef{bottom:311.328000px;}
.y12e{bottom:313.128000px;}
.y164{bottom:314.082000px;}
.ycd{bottom:314.790000px;}
.y60{bottom:316.207500px;}
.y16{bottom:317.402400px;}
.y3b{bottom:319.500000px;}
.y199{bottom:320.622000px;}
.ya8{bottom:325.956000px;}
.y84{bottom:326.550000px;}
.y112{bottom:327.984000px;}
.y12d{bottom:328.128000px;}
.y163{bottom:329.226000px;}
.yee{bottom:334.134000px;}
.y198{bottom:335.622000px;}
.ycc{bottom:337.434000px;}
.y15{bottom:339.452400px;}
.y3a{bottom:342.000000px;}
.y12c{bottom:343.128000px;}
.y162{bottom:344.370000px;}
.ya7{bottom:349.050000px;}
.y83{bottom:349.644000px;}
.y111{bottom:350.178000px;}
.y197{bottom:350.622000px;}
.yed{bottom:356.940000px;}
.y5f{bottom:357.474000px;}
.y12b{bottom:358.128000px;}
.y161{bottom:359.514000px;}
.ycb{bottom:360.078000px;}
.y14{bottom:361.502400px;}
.y39{bottom:364.500000px;}
.y196{bottom:365.622000px;}
.ya6{bottom:372.144000px;}
.y110{bottom:372.372000px;}
.y82{bottom:372.738000px;}
.y12a{bottom:373.128000px;}
.y160{bottom:374.658000px;}
.y5e{bottom:379.668000px;}
.yec{bottom:379.746000px;}
.y195{bottom:380.622000px;}
.yca{bottom:382.722000px;}
.y13{bottom:383.552400px;}
.y38{bottom:387.000000px;}
.y129{bottom:388.128000px;}
.y15f{bottom:389.802000px;}
.y10f{bottom:394.566000px;}
.ya5{bottom:395.238000px;}
.y194{bottom:395.622000px;}
.y81{bottom:395.832000px;}
.y5d{bottom:401.862000px;}
.yeb{bottom:402.552000px;}
.y128{bottom:403.128000px;}
.y15e{bottom:404.946000px;}
.yc9{bottom:405.366000px;}
.y12{bottom:405.602400px;}
.y37{bottom:409.500000px;}
.y193{bottom:410.622000px;}
.y10e{bottom:416.760000px;}
.y127{bottom:418.128000px;}
.ya4{bottom:418.332000px;}
.y80{bottom:418.926000px;}
.y15d{bottom:420.090000px;}
.y5c{bottom:423.768000px;}
.yea{bottom:425.358000px;}
.y192{bottom:425.622000px;}
.yc8{bottom:428.010000px;}
.y36{bottom:432.000000px;}
.y126{bottom:433.128000px;}
.y15c{bottom:435.234000px;}
.y10d{bottom:438.954000px;}
.y191{bottom:440.622000px;}
.ya3{bottom:441.426000px;}
.y7f{bottom:442.020000px;}
.y5b{bottom:445.674000px;}
.y125{bottom:448.128000px;}
.ye9{bottom:448.164000px;}
.y11{bottom:449.702400px;}
.y15b{bottom:450.378000px;}
.yc7{bottom:450.654000px;}
.y35{bottom:454.500000px;}
.y190{bottom:455.622000px;}
.y10c{bottom:461.148000px;}
.y124{bottom:463.128000px;}
.ya2{bottom:464.520000px;}
.y7e{bottom:465.114000px;}
.y15a{bottom:465.522000px;}
.y5a{bottom:467.580000px;}
.y18f{bottom:470.622000px;}
.ye8{bottom:470.970000px;}
.y10{bottom:471.752400px;}
.yc6{bottom:473.298000px;}
.y34{bottom:477.000000px;}
.y123{bottom:478.128000px;}
.y159{bottom:480.666000px;}
.y1b3{bottom:480.750000px;}
.y10b{bottom:483.342000px;}
.y18e{bottom:485.622000px;}
.ya1{bottom:487.614000px;}
.y7d{bottom:488.208000px;}
.y59{bottom:489.486000px;}
.y122{bottom:493.128000px;}
.ye7{bottom:493.776000px;}
.yf{bottom:493.802400px;}
.y158{bottom:495.810000px;}
.yc5{bottom:495.942000px;}
.y33{bottom:499.500000px;}
.y18d{bottom:500.622000px;}
.y10a{bottom:505.536000px;}
.y121{bottom:508.128000px;}
.ya0{bottom:510.708000px;}
.y157{bottom:510.954000px;}
.y7c{bottom:511.302000px;}
.y58{bottom:511.392000px;}
.y18c{bottom:515.622000px;}
.ye{bottom:515.852400px;}
.ye6{bottom:516.582000px;}
.y1b2{bottom:518.250000px;}
.yc4{bottom:518.586000px;}
.y32{bottom:522.000000px;}
.y120{bottom:523.128000px;}
.y156{bottom:526.098000px;}
.y109{bottom:527.730000px;}
.y18b{bottom:530.622000px;}
.y57{bottom:533.298000px;}
.y9f{bottom:533.802000px;}
.y7b{bottom:534.396000px;}
.yd{bottom:537.902400px;}
.y11f{bottom:538.128000px;}
.ye5{bottom:539.388000px;}
.yc3{bottom:541.230000px;}
.y155{bottom:541.242000px;}
.y31{bottom:544.500000px;}
.y18a{bottom:545.622000px;}
.y1b1{bottom:548.250000px;}
.y108{bottom:549.924000px;}
.y11e{bottom:553.128000px;}
.y56{bottom:555.204000px;}
.y154{bottom:556.386000px;}
.y9e{bottom:556.896000px;}
.y7a{bottom:557.490000px;}
.yc{bottom:559.952400px;}
.y189{bottom:560.622000px;}
.ye4{bottom:562.194000px;}
.yc2{bottom:563.874000px;}
.y30{bottom:567.000000px;}
.y11d{bottom:568.128000px;}
.y153{bottom:571.530000px;}
.y107{bottom:572.118000px;}
.y188{bottom:575.622000px;}
.y55{bottom:577.110000px;}
.y9d{bottom:579.990000px;}
.y79{bottom:580.584000px;}
.yb{bottom:582.002400px;}
.y11c{bottom:583.128000px;}
.ye3{bottom:584.916000px;}
.yc1{bottom:586.518000px;}
.y152{bottom:586.674000px;}
.y2f{bottom:589.500000px;}
.y187{bottom:590.622000px;}
.y106{bottom:594.312000px;}
.y11b{bottom:598.128000px;}
.y54{bottom:599.016000px;}
.y151{bottom:601.818000px;}
.y9c{bottom:603.084000px;}
.y78{bottom:603.678000px;}
.ya{bottom:604.052400px;}
.y1b0{bottom:604.500000px;}
.y186{bottom:605.622000px;}
.ye2{bottom:607.722000px;}
.yc0{bottom:609.162000px;}
.y2e{bottom:612.000000px;}
.y11a{bottom:613.128000px;}
.y105{bottom:616.506000px;}
.y150{bottom:616.962000px;}
.y1af{bottom:619.500000px;}
.y185{bottom:620.622000px;}
.y53{bottom:620.922000px;}
.y9{bottom:626.102400px;}
.y9b{bottom:626.178000px;}
.y77{bottom:626.772000px;}
.ye1{bottom:630.528000px;}
.ybf{bottom:631.806000px;}
.y14f{bottom:632.106000px;}
.y2d{bottom:634.500000px;}
.y184{bottom:635.622000px;}
.y104{bottom:638.778000px;}
.y52{bottom:642.828000px;}
.y14e{bottom:647.322000px;}
.y8{bottom:648.152400px;}
.y9a{bottom:649.272000px;}
.y1ae{bottom:649.500000px;}
.y76{bottom:649.866000px;}
.y183{bottom:650.622000px;}
.ye0{bottom:653.334000px;}
.ybe{bottom:654.522000px;}
.y2c{bottom:657.000000px;}
.y103{bottom:660.972000px;}
.y14d{bottom:662.466000px;}
.y1ad{bottom:664.500000px;}
.y51{bottom:664.734000px;}
.y182{bottom:665.622000px;}
.y7{bottom:670.202400px;}
.y99{bottom:672.366000px;}
.y75{bottom:672.960000px;}
.ydf{bottom:676.140000px;}
.ybd{bottom:677.166000px;}
.y14c{bottom:677.610000px;}
.y2b{bottom:679.500000px;}
.y181{bottom:680.622000px;}
.y102{bottom:683.166000px;}
.y50{bottom:686.640000px;}
.y14b{bottom:692.754000px;}
.y1ac{bottom:694.500000px;}
.y98{bottom:695.460000px;}
.y180{bottom:695.622000px;}
.y74{bottom:696.054000px;}
.yde{bottom:698.946000px;}
.ybc{bottom:699.810000px;}
.y2a{bottom:702.000000px;}
.y101{bottom:705.360000px;}
.y14a{bottom:707.898000px;}
.y4f{bottom:708.546000px;}
.y1ab{bottom:709.500000px;}
.y17f{bottom:710.622000px;}
.y6{bottom:714.302400px;}
.y97{bottom:718.554000px;}
.y73{bottom:719.148000px;}
.ydd{bottom:721.752000px;}
.ybb{bottom:722.454000px;}
.y149{bottom:723.042000px;}
.y29{bottom:724.500000px;}
.y17e{bottom:725.622000px;}
.y100{bottom:727.554000px;}
.y4e{bottom:730.452000px;}
.y5{bottom:736.104300px;}
.y148{bottom:738.186000px;}
.y1aa{bottom:739.500000px;}
.y17d{bottom:740.622000px;}
.y96{bottom:741.648000px;}
.y72{bottom:742.242000px;}
.ydc{bottom:744.558000px;}
.yba{bottom:745.098000px;}
.y28{bottom:747.000000px;}
.yff{bottom:749.748000px;}
.y4d{bottom:752.358000px;}
.y147{bottom:753.330000px;}
.y4{bottom:753.654300px;}
.y1a9{bottom:754.500000px;}
.y17c{bottom:755.622000px;}
.y95{bottom:764.742000px;}
.y71{bottom:765.336000px;}
.ydb{bottom:767.364000px;}
.yb9{bottom:767.742000px;}
.y146{bottom:768.474000px;}
.y27{bottom:769.500000px;}
.y17b{bottom:770.622000px;}
.yfe{bottom:771.942000px;}
.y4c{bottom:774.264000px;}
.y145{bottom:783.618000px;}
.y1a8{bottom:784.500000px;}
.y17a{bottom:785.622000px;}
.y94{bottom:787.836000px;}
.y70{bottom:788.430000px;}
.yda{bottom:790.170000px;}
.yb8{bottom:790.386000px;}
.y26{bottom:792.000000px;}
.y3{bottom:793.254300px;}
.yfd{bottom:794.136000px;}
.y4b{bottom:796.170000px;}
.y144{bottom:798.762000px;}
.y1a7{bottom:799.500000px;}
.y179{bottom:800.622000px;}
.y93{bottom:810.930000px;}
.y6f{bottom:811.524000px;}
.yd9{bottom:812.976000px;}
.yb7{bottom:813.030000px;}
.y143{bottom:813.906000px;}
.y25{bottom:814.500000px;}
.y178{bottom:815.622000px;}
.yfc{bottom:816.330000px;}
.y4a{bottom:818.076000px;}
.y142{bottom:829.062000px;}
.y1a6{bottom:829.500000px;}
.y177{bottom:830.622000px;}
.y92{bottom:834.024000px;}
.y6e{bottom:834.618000px;}
.yb6{bottom:835.674000px;}
.yd8{bottom:835.782000px;}
.y24{bottom:837.000000px;}
.yfb{bottom:838.524000px;}
.y49{bottom:839.982000px;}
.y141{bottom:844.206000px;}
.y1a5{bottom:844.500000px;}
.y176{bottom:845.622000px;}
.y91{bottom:857.118000px;}
.y6d{bottom:857.712000px;}
.yb5{bottom:858.318000px;}
.yd7{bottom:858.588000px;}
.y140{bottom:859.356000px;}
.y23{bottom:859.500000px;}
.y2{bottom:859.950000px;}
.y175{bottom:860.622000px;}
.yfa{bottom:860.718000px;}
.y48{bottom:861.888000px;}
.y13f{bottom:874.500000px;}
.y174{bottom:875.622000px;}
.y90{bottom:880.212000px;}
.y6c{bottom:880.806000px;}
.yb4{bottom:880.962000px;}
.yd6{bottom:881.394000px;}
.y22{bottom:882.000000px;}
.yf9{bottom:882.912000px;}
.y47{bottom:883.794000px;}
.y13e{bottom:889.500000px;}
.y173{bottom:890.622000px;}
.y8f{bottom:903.306000px;}
.yb3{bottom:903.606000px;}
.y6b{bottom:903.900000px;}
.yd5{bottom:904.200000px;}
.y21{bottom:904.500000px;}
.yf8{bottom:905.106000px;}
.y172{bottom:905.622000px;}
.y46{bottom:905.694000px;}
.y13d{bottom:919.500000px;}
.yb2{bottom:926.250000px;}
.y8e{bottom:926.400000px;}
.y20{bottom:927.000000px;}
.yf7{bottom:927.300000px;}
.y45{bottom:927.600000px;}
.y13c{bottom:934.500000px;}
.h7{height:30.313623px;}
.hd{height:39.072000px;}
.h8{height:40.757812px;}
.he{height:43.190400px;}
.h4{height:45.852539px;}
.h3{height:49.200000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.hc{height:66.243703px;}
.ha{height:66.267703px;}
.h9{height:66.555703px;}
.h6{height:66.579703px;}
.hb{height:66.891703px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x5{left:112.500000px;}
.x6{left:127.386000px;}
.x9{left:135.531450px;}
.x8{left:199.296000px;}
.x7{left:235.800000px;}
.x2{left:343.874850px;}
.x4{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-8.554667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v2{vertical-align:21.141333pt;}
.ls25{letter-spacing:-13.120000pt;}
.ls3b{letter-spacing:-6.528000pt;}
.ls39{letter-spacing:-6.400000pt;}
.ls47{letter-spacing:-4.266667pt;}
.ls45{letter-spacing:-3.200000pt;}
.ls1b{letter-spacing:-2.496000pt;}
.ls42{letter-spacing:-1.920000pt;}
.ls48{letter-spacing:-1.664000pt;}
.ls3e{letter-spacing:-1.152000pt;}
.ls2e{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-1.024000pt;}
.ls3d{letter-spacing:-0.960000pt;}
.ls41{letter-spacing:-0.832000pt;}
.ls2a{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.014933pt;}
.ls26{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.095467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls33{letter-spacing:0.444800pt;}
.ls10{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.576000pt;}
.ls36{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls30{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.088000pt;}
.ls21{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls40{letter-spacing:2.986667pt;}
.ls1a{letter-spacing:4.032000pt;}
.ls46{letter-spacing:4.224000pt;}
.ls18{letter-spacing:4.864000pt;}
.ls3c{letter-spacing:5.120000pt;}
.ls2{letter-spacing:6.560000pt;}
.ls3f{letter-spacing:6.656000pt;}
.ls44{letter-spacing:6.720000pt;}
.ls43{letter-spacing:6.976000pt;}
.ls27{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls2c{letter-spacing:7.808000pt;}
.ls3a{letter-spacing:7.872000pt;}
.ls38{letter-spacing:8.064000pt;}
.ls2f{letter-spacing:8.192000pt;}
.ls35{letter-spacing:8.512000pt;}
.ls31{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls23{letter-spacing:12.960000pt;}
.ws56{word-spacing:-24.448000pt;}
.ws74{word-spacing:-23.488000pt;}
.ws7f{word-spacing:-22.528000pt;}
.ws1{word-spacing:-19.733333pt;}
.ws2b{word-spacing:-17.984000pt;}
.ws3a{word-spacing:-17.664000pt;}
.ws2e{word-spacing:-17.216000pt;}
.ws47{word-spacing:-16.768000pt;}
.ws6a{word-spacing:-16.640000pt;}
.ws83{word-spacing:-16.576000pt;}
.ws2c{word-spacing:-16.512000pt;}
.ws2d{word-spacing:-16.448000pt;}
.ws3d{word-spacing:-16.384000pt;}
.ws20{word-spacing:-16.320000pt;}
.ws57{word-spacing:-16.288000pt;}
.ws62{word-spacing:-16.256000pt;}
.ws50{word-spacing:-16.192000pt;}
.ws46{word-spacing:-16.128000pt;}
.ws38{word-spacing:-16.064000pt;}
.ws21{word-spacing:-16.000000pt;}
.ws3e{word-spacing:-15.936000pt;}
.ws77{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws69{word-spacing:-15.744000pt;}
.ws39{word-spacing:-15.680000pt;}
.ws12{word-spacing:-15.616000pt;}
.ws3f{word-spacing:-15.552000pt;}
.ws2f{word-spacing:-15.488000pt;}
.ws4b{word-spacing:-15.424000pt;}
.ws73{word-spacing:-15.296000pt;}
.ws48{word-spacing:-15.168000pt;}
.ws72{word-spacing:-15.040000pt;}
.ws78{word-spacing:-14.848000pt;}
.ws82{word-spacing:-12.608000pt;}
.ws30{word-spacing:-12.588800pt;}
.ws40{word-spacing:-10.538667pt;}
.ws5e{word-spacing:-8.512000pt;}
.ws8a{word-spacing:-8.392533pt;}
.ws58{word-spacing:-8.192000pt;}
.ws5f{word-spacing:-8.064000pt;}
.ws65{word-spacing:-7.872000pt;}
.ws53{word-spacing:-7.808000pt;}
.ws22{word-spacing:-7.680000pt;}
.ws11{word-spacing:-7.552000pt;}
.ws8{word-spacing:-7.520000pt;}
.ws41{word-spacing:-7.360000pt;}
.ws7e{word-spacing:-6.976000pt;}
.ws6f{word-spacing:-6.656000pt;}
.ws68{word-spacing:-5.120000pt;}
.ws1f{word-spacing:-4.864000pt;}
.ws88{word-spacing:-4.266667pt;}
.ws24{word-spacing:-4.032000pt;}
.ws61{word-spacing:-3.776000pt;}
.ws71{word-spacing:-2.986667pt;}
.ws79{word-spacing:-2.752000pt;}
.ws70{word-spacing:-1.920000pt;}
.ws31{word-spacing:-1.472000pt;}
.ws32{word-spacing:-1.408000pt;}
.ws4c{word-spacing:-1.280000pt;}
.ws45{word-spacing:-1.216000pt;}
.ws34{word-spacing:-1.152000pt;}
.ws35{word-spacing:-1.088000pt;}
.ws59{word-spacing:-1.024000pt;}
.ws5d{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.896000pt;}
.ws3b{word-spacing:-0.832000pt;}
.wse{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws17{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.448000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.ws4e{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.064000pt;}
.ws1c{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws10{word-spacing:0.256000pt;}
.ws9{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws27{word-spacing:0.448000pt;}
.ws2a{word-spacing:0.512000pt;}
.ws43{word-spacing:0.576000pt;}
.ws19{word-spacing:0.640000pt;}
.wsc{word-spacing:0.704000pt;}
.ws49{word-spacing:0.768000pt;}
.ws76{word-spacing:0.832000pt;}
.ws66{word-spacing:0.960000pt;}
.ws54{word-spacing:1.024000pt;}
.ws55{word-spacing:1.088000pt;}
.ws6e{word-spacing:1.152000pt;}
.ws75{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.344000pt;}
.ws51{word-spacing:1.472000pt;}
.ws5{word-spacing:1.600000pt;}
.ws8c{word-spacing:1.664000pt;}
.ws67{word-spacing:1.728000pt;}
.ws63{word-spacing:1.856000pt;}
.ws7a{word-spacing:1.920000pt;}
.ws81{word-spacing:2.240000pt;}
.ws52{word-spacing:2.496000pt;}
.ws6d{word-spacing:2.752000pt;}
.ws5c{word-spacing:2.816000pt;}
.ws4f{word-spacing:2.986667pt;}
.ws86{word-spacing:3.136000pt;}
.ws3{word-spacing:3.306667pt;}
.ws6{word-spacing:3.360000pt;}
.ws7{word-spacing:3.733333pt;}
.ws8b{word-spacing:4.266667pt;}
.ws23{word-spacing:4.288000pt;}
.ws42{word-spacing:4.480000pt;}
.ws5a{word-spacing:4.736000pt;}
.ws85{word-spacing:4.864000pt;}
.ws7b{word-spacing:5.056000pt;}
.ws4d{word-spacing:5.248000pt;}
.ws29{word-spacing:5.504000pt;}
.ws36{word-spacing:5.888000pt;}
.ws37{word-spacing:6.016000pt;}
.ws60{word-spacing:6.400000pt;}
.ws64{word-spacing:6.528000pt;}
.ws6b{word-spacing:6.912000pt;}
.ws7c{word-spacing:6.976000pt;}
.ws7d{word-spacing:7.168000pt;}
.ws4{word-spacing:7.466667pt;}
.ws4a{word-spacing:7.808000pt;}
.ws6c{word-spacing:7.872000pt;}
.ws87{word-spacing:8.128000pt;}
.ws25{word-spacing:8.320000pt;}
.ws16{word-spacing:8.960000pt;}
.ws26{word-spacing:9.024000pt;}
.ws84{word-spacing:9.088000pt;}
.ws80{word-spacing:9.344000pt;}
.ws3c{word-spacing:13.120000pt;}
.ws89{word-spacing:68.010667pt;}
.ws0{word-spacing:129.952000pt;}
._f{margin-left:-843.396267pt;}
._25{margin-left:-71.479467pt;}
._21{margin-left:-64.981333pt;}
._22{margin-left:-61.934933pt;}
._10{margin-left:-13.139200pt;}
._15{margin-left:-11.820800pt;}
._3{margin-left:-10.602667pt;}
._13{margin-left:-9.555200pt;}
._16{margin-left:-8.614400pt;}
._11{margin-left:-7.680000pt;}
._7{margin-left:-6.714667pt;}
._2{margin-left:-5.712000pt;}
._5{margin-left:-3.946667pt;}
._8{margin-left:-2.522667pt;}
._0{margin-left:-1.584000pt;}
._a{width:1.164800pt;}
._4{width:2.298667pt;}
._1{width:3.824000pt;}
._c{width:5.513600pt;}
._b{width:6.969600pt;}
._d{width:8.083200pt;}
._9{width:9.337600pt;}
._e{width:10.272000pt;}
._6{width:11.264000pt;}
._12{width:12.510933pt;}
._23{width:13.790933pt;}
._20{width:16.768000pt;}
._33{width:18.172800pt;}
._30{width:19.438933pt;}
._2c{width:21.654400pt;}
._1d{width:24.486400pt;}
._24{width:26.343467pt;}
._14{width:28.129867pt;}
._34{width:30.158933pt;}
._1b{width:31.940267pt;}
._1c{width:34.369067pt;}
._2d{width:35.781333pt;}
._2b{width:38.051200pt;}
._1f{width:39.709867pt;}
._1e{width:42.428800pt;}
._31{width:43.448533pt;}
._32{width:49.774933pt;}
._18{width:51.357867pt;}
._2a{width:53.052800pt;}
._19{width:54.126933pt;}
._35{width:59.003733pt;}
._27{width:64.021333pt;}
._1a{width:66.120533pt;}
._17{width:67.866667pt;}
._26{width:70.663467pt;}
._2f{width:74.778667pt;}
._36{width:82.645333pt;}
._37{width:86.064000pt;}
._28{width:88.311467pt;}
._2e{width:90.966400pt;}
._29{width:92.114133pt;}
.fs7{font-size:29.866667pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y44{bottom:104.000000pt;}
.y171{bottom:104.186667pt;}
.yb1{bottom:104.986667pt;}
.y13b{bottom:105.002667pt;}
.y8d{bottom:105.514667pt;}
.y1f{bottom:105.735467pt;}
.yd3{bottom:107.740000pt;}
.y68{bottom:117.333333pt;}
.y170{bottom:117.648000pt;}
.y13a{bottom:118.336000pt;}
.yf6{bottom:121.073333pt;}
.y43{bottom:124.000000pt;}
.y1e{bottom:125.335467pt;}
.yb0{bottom:125.514667pt;}
.y8c{bottom:126.042667pt;}
.y67{bottom:130.666667pt;}
.y16f{bottom:131.109333pt;}
.y139{bottom:131.669333pt;}
.y119{bottom:134.406667pt;}
.y1a4{bottom:138.330667pt;}
.y42{bottom:144.000000pt;}
.y16e{bottom:144.570667pt;}
.y1d{bottom:144.935467pt;}
.y138{bottom:145.002667pt;}
.yaf{bottom:146.042667pt;}
.y8b{bottom:146.570667pt;}
.y6a{bottom:147.740000pt;}
.y1a3{bottom:151.664000pt;}
.yf5{bottom:155.104000pt;}
.y66{bottom:157.333333pt;}
.y16d{bottom:158.032000pt;}
.y137{bottom:158.336000pt;}
.yd2{bottom:161.073333pt;}
.y41{bottom:164.000000pt;}
.y1c{bottom:164.535467pt;}
.y1a2{bottom:164.997333pt;}
.yae{bottom:166.570667pt;}
.y8a{bottom:167.098667pt;}
.y65{bottom:170.666667pt;}
.y16c{bottom:171.493333pt;}
.y136{bottom:171.669333pt;}
.y118{bottom:172.901333pt;}
.yf4{bottom:175.376000pt;}
.y1a1{bottom:178.330667pt;}
.y40{bottom:184.000000pt;}
.y1b{bottom:184.135467pt;}
.y16b{bottom:184.954667pt;}
.y135{bottom:185.002667pt;}
.yad{bottom:187.098667pt;}
.y89{bottom:187.626667pt;}
.yd4{bottom:187.740000pt;}
.y1a0{bottom:191.664000pt;}
.y117{bottom:192.901333pt;}
.yf3{bottom:195.648000pt;}
.y64{bottom:197.333333pt;}
.y134{bottom:198.336000pt;}
.y16a{bottom:198.416000pt;}
.yd1{bottom:199.301333pt;}
.y1a{bottom:203.735467pt;}
.y3f{bottom:204.000000pt;}
.y19f{bottom:204.997333pt;}
.yac{bottom:207.626667pt;}
.y88{bottom:208.154667pt;}
.y63{bottom:210.666667pt;}
.y133{bottom:211.669333pt;}
.y169{bottom:211.877333pt;}
.y116{bottom:212.629333pt;}
.yf2{bottom:215.920000pt;}
.y19e{bottom:218.330667pt;}
.yd0{bottom:219.429333pt;}
.y19{bottom:223.335467pt;}
.y3e{bottom:224.000000pt;}
.y132{bottom:225.002667pt;}
.y168{bottom:225.338667pt;}
.y69{bottom:227.740000pt;}
.yab{bottom:228.154667pt;}
.y87{bottom:228.682667pt;}
.y19d{bottom:231.664000pt;}
.y115{bottom:232.357333pt;}
.yf1{bottom:236.192000pt;}
.y62{bottom:237.333333pt;}
.y131{bottom:238.336000pt;}
.y167{bottom:238.800000pt;}
.ycf{bottom:239.557333pt;}
.y18{bottom:242.935467pt;}
.y3d{bottom:244.000000pt;}
.y19c{bottom:244.997333pt;}
.yaa{bottom:248.682667pt;}
.y86{bottom:249.210667pt;}
.y61{bottom:250.666667pt;}
.y130{bottom:251.669333pt;}
.y114{bottom:252.085333pt;}
.y166{bottom:252.261333pt;}
.yf0{bottom:256.464000pt;}
.y19b{bottom:258.330667pt;}
.yce{bottom:259.685333pt;}
.y17{bottom:262.535467pt;}
.y3c{bottom:264.000000pt;}
.y12f{bottom:265.002667pt;}
.y165{bottom:265.722667pt;}
.ya9{bottom:269.210667pt;}
.y85{bottom:269.738667pt;}
.y19a{bottom:271.664000pt;}
.y113{bottom:271.813333pt;}
.yef{bottom:276.736000pt;}
.y12e{bottom:278.336000pt;}
.y164{bottom:279.184000pt;}
.ycd{bottom:279.813333pt;}
.y60{bottom:281.073333pt;}
.y16{bottom:282.135467pt;}
.y3b{bottom:284.000000pt;}
.y199{bottom:284.997333pt;}
.ya8{bottom:289.738667pt;}
.y84{bottom:290.266667pt;}
.y112{bottom:291.541333pt;}
.y12d{bottom:291.669333pt;}
.y163{bottom:292.645333pt;}
.yee{bottom:297.008000pt;}
.y198{bottom:298.330667pt;}
.ycc{bottom:299.941333pt;}
.y15{bottom:301.735467pt;}
.y3a{bottom:304.000000pt;}
.y12c{bottom:305.002667pt;}
.y162{bottom:306.106667pt;}
.ya7{bottom:310.266667pt;}
.y83{bottom:310.794667pt;}
.y111{bottom:311.269333pt;}
.y197{bottom:311.664000pt;}
.yed{bottom:317.280000pt;}
.y5f{bottom:317.754667pt;}
.y12b{bottom:318.336000pt;}
.y161{bottom:319.568000pt;}
.ycb{bottom:320.069333pt;}
.y14{bottom:321.335467pt;}
.y39{bottom:324.000000pt;}
.y196{bottom:324.997333pt;}
.ya6{bottom:330.794667pt;}
.y110{bottom:330.997333pt;}
.y82{bottom:331.322667pt;}
.y12a{bottom:331.669333pt;}
.y160{bottom:333.029333pt;}
.y5e{bottom:337.482667pt;}
.yec{bottom:337.552000pt;}
.y195{bottom:338.330667pt;}
.yca{bottom:340.197333pt;}
.y13{bottom:340.935467pt;}
.y38{bottom:344.000000pt;}
.y129{bottom:345.002667pt;}
.y15f{bottom:346.490667pt;}
.y10f{bottom:350.725333pt;}
.ya5{bottom:351.322667pt;}
.y194{bottom:351.664000pt;}
.y81{bottom:351.850667pt;}
.y5d{bottom:357.210667pt;}
.yeb{bottom:357.824000pt;}
.y128{bottom:358.336000pt;}
.y15e{bottom:359.952000pt;}
.yc9{bottom:360.325333pt;}
.y12{bottom:360.535467pt;}
.y37{bottom:364.000000pt;}
.y193{bottom:364.997333pt;}
.y10e{bottom:370.453333pt;}
.y127{bottom:371.669333pt;}
.ya4{bottom:371.850667pt;}
.y80{bottom:372.378667pt;}
.y15d{bottom:373.413333pt;}
.y5c{bottom:376.682667pt;}
.yea{bottom:378.096000pt;}
.y192{bottom:378.330667pt;}
.yc8{bottom:380.453333pt;}
.y36{bottom:384.000000pt;}
.y126{bottom:385.002667pt;}
.y15c{bottom:386.874667pt;}
.y10d{bottom:390.181333pt;}
.y191{bottom:391.664000pt;}
.ya3{bottom:392.378667pt;}
.y7f{bottom:392.906667pt;}
.y5b{bottom:396.154667pt;}
.y125{bottom:398.336000pt;}
.ye9{bottom:398.368000pt;}
.y11{bottom:399.735467pt;}
.y15b{bottom:400.336000pt;}
.yc7{bottom:400.581333pt;}
.y35{bottom:404.000000pt;}
.y190{bottom:404.997333pt;}
.y10c{bottom:409.909333pt;}
.y124{bottom:411.669333pt;}
.ya2{bottom:412.906667pt;}
.y7e{bottom:413.434667pt;}
.y15a{bottom:413.797333pt;}
.y5a{bottom:415.626667pt;}
.y18f{bottom:418.330667pt;}
.ye8{bottom:418.640000pt;}
.y10{bottom:419.335467pt;}
.yc6{bottom:420.709333pt;}
.y34{bottom:424.000000pt;}
.y123{bottom:425.002667pt;}
.y159{bottom:427.258667pt;}
.y1b3{bottom:427.333333pt;}
.y10b{bottom:429.637333pt;}
.y18e{bottom:431.664000pt;}
.ya1{bottom:433.434667pt;}
.y7d{bottom:433.962667pt;}
.y59{bottom:435.098667pt;}
.y122{bottom:438.336000pt;}
.ye7{bottom:438.912000pt;}
.yf{bottom:438.935467pt;}
.y158{bottom:440.720000pt;}
.yc5{bottom:440.837333pt;}
.y33{bottom:444.000000pt;}
.y18d{bottom:444.997333pt;}
.y10a{bottom:449.365333pt;}
.y121{bottom:451.669333pt;}
.ya0{bottom:453.962667pt;}
.y157{bottom:454.181333pt;}
.y7c{bottom:454.490667pt;}
.y58{bottom:454.570667pt;}
.y18c{bottom:458.330667pt;}
.ye{bottom:458.535467pt;}
.ye6{bottom:459.184000pt;}
.y1b2{bottom:460.666667pt;}
.yc4{bottom:460.965333pt;}
.y32{bottom:464.000000pt;}
.y120{bottom:465.002667pt;}
.y156{bottom:467.642667pt;}
.y109{bottom:469.093333pt;}
.y18b{bottom:471.664000pt;}
.y57{bottom:474.042667pt;}
.y9f{bottom:474.490667pt;}
.y7b{bottom:475.018667pt;}
.yd{bottom:478.135467pt;}
.y11f{bottom:478.336000pt;}
.ye5{bottom:479.456000pt;}
.yc3{bottom:481.093333pt;}
.y155{bottom:481.104000pt;}
.y31{bottom:484.000000pt;}
.y18a{bottom:484.997333pt;}
.y1b1{bottom:487.333333pt;}
.y108{bottom:488.821333pt;}
.y11e{bottom:491.669333pt;}
.y56{bottom:493.514667pt;}
.y154{bottom:494.565333pt;}
.y9e{bottom:495.018667pt;}
.y7a{bottom:495.546667pt;}
.yc{bottom:497.735467pt;}
.y189{bottom:498.330667pt;}
.ye4{bottom:499.728000pt;}
.yc2{bottom:501.221333pt;}
.y30{bottom:504.000000pt;}
.y11d{bottom:505.002667pt;}
.y153{bottom:508.026667pt;}
.y107{bottom:508.549333pt;}
.y188{bottom:511.664000pt;}
.y55{bottom:512.986667pt;}
.y9d{bottom:515.546667pt;}
.y79{bottom:516.074667pt;}
.yb{bottom:517.335467pt;}
.y11c{bottom:518.336000pt;}
.ye3{bottom:519.925333pt;}
.yc1{bottom:521.349333pt;}
.y152{bottom:521.488000pt;}
.y2f{bottom:524.000000pt;}
.y187{bottom:524.997333pt;}
.y106{bottom:528.277333pt;}
.y11b{bottom:531.669333pt;}
.y54{bottom:532.458667pt;}
.y151{bottom:534.949333pt;}
.y9c{bottom:536.074667pt;}
.y78{bottom:536.602667pt;}
.ya{bottom:536.935467pt;}
.y1b0{bottom:537.333333pt;}
.y186{bottom:538.330667pt;}
.ye2{bottom:540.197333pt;}
.yc0{bottom:541.477333pt;}
.y2e{bottom:544.000000pt;}
.y11a{bottom:545.002667pt;}
.y105{bottom:548.005333pt;}
.y150{bottom:548.410667pt;}
.y1af{bottom:550.666667pt;}
.y185{bottom:551.664000pt;}
.y53{bottom:551.930667pt;}
.y9{bottom:556.535467pt;}
.y9b{bottom:556.602667pt;}
.y77{bottom:557.130667pt;}
.ye1{bottom:560.469333pt;}
.ybf{bottom:561.605333pt;}
.y14f{bottom:561.872000pt;}
.y2d{bottom:564.000000pt;}
.y184{bottom:564.997333pt;}
.y104{bottom:567.802667pt;}
.y52{bottom:571.402667pt;}
.y14e{bottom:575.397333pt;}
.y8{bottom:576.135467pt;}
.y9a{bottom:577.130667pt;}
.y1ae{bottom:577.333333pt;}
.y76{bottom:577.658667pt;}
.y183{bottom:578.330667pt;}
.ye0{bottom:580.741333pt;}
.ybe{bottom:581.797333pt;}
.y2c{bottom:584.000000pt;}
.y103{bottom:587.530667pt;}
.y14d{bottom:588.858667pt;}
.y1ad{bottom:590.666667pt;}
.y51{bottom:590.874667pt;}
.y182{bottom:591.664000pt;}
.y7{bottom:595.735467pt;}
.y99{bottom:597.658667pt;}
.y75{bottom:598.186667pt;}
.ydf{bottom:601.013333pt;}
.ybd{bottom:601.925333pt;}
.y14c{bottom:602.320000pt;}
.y2b{bottom:604.000000pt;}
.y181{bottom:604.997333pt;}
.y102{bottom:607.258667pt;}
.y50{bottom:610.346667pt;}
.y14b{bottom:615.781333pt;}
.y1ac{bottom:617.333333pt;}
.y98{bottom:618.186667pt;}
.y180{bottom:618.330667pt;}
.y74{bottom:618.714667pt;}
.yde{bottom:621.285333pt;}
.ybc{bottom:622.053333pt;}
.y2a{bottom:624.000000pt;}
.y101{bottom:626.986667pt;}
.y14a{bottom:629.242667pt;}
.y4f{bottom:629.818667pt;}
.y1ab{bottom:630.666667pt;}
.y17f{bottom:631.664000pt;}
.y6{bottom:634.935467pt;}
.y97{bottom:638.714667pt;}
.y73{bottom:639.242667pt;}
.ydd{bottom:641.557333pt;}
.ybb{bottom:642.181333pt;}
.y149{bottom:642.704000pt;}
.y29{bottom:644.000000pt;}
.y17e{bottom:644.997333pt;}
.y100{bottom:646.714667pt;}
.y4e{bottom:649.290667pt;}
.y5{bottom:654.314933pt;}
.y148{bottom:656.165333pt;}
.y1aa{bottom:657.333333pt;}
.y17d{bottom:658.330667pt;}
.y96{bottom:659.242667pt;}
.y72{bottom:659.770667pt;}
.ydc{bottom:661.829333pt;}
.yba{bottom:662.309333pt;}
.y28{bottom:664.000000pt;}
.yff{bottom:666.442667pt;}
.y4d{bottom:668.762667pt;}
.y147{bottom:669.626667pt;}
.y4{bottom:669.914933pt;}
.y1a9{bottom:670.666667pt;}
.y17c{bottom:671.664000pt;}
.y95{bottom:679.770667pt;}
.y71{bottom:680.298667pt;}
.ydb{bottom:682.101333pt;}
.yb9{bottom:682.437333pt;}
.y146{bottom:683.088000pt;}
.y27{bottom:684.000000pt;}
.y17b{bottom:684.997333pt;}
.yfe{bottom:686.170667pt;}
.y4c{bottom:688.234667pt;}
.y145{bottom:696.549333pt;}
.y1a8{bottom:697.333333pt;}
.y17a{bottom:698.330667pt;}
.y94{bottom:700.298667pt;}
.y70{bottom:700.826667pt;}
.yda{bottom:702.373333pt;}
.yb8{bottom:702.565333pt;}
.y26{bottom:704.000000pt;}
.y3{bottom:705.114933pt;}
.yfd{bottom:705.898667pt;}
.y4b{bottom:707.706667pt;}
.y144{bottom:710.010667pt;}
.y1a7{bottom:710.666667pt;}
.y179{bottom:711.664000pt;}
.y93{bottom:720.826667pt;}
.y6f{bottom:721.354667pt;}
.yd9{bottom:722.645333pt;}
.yb7{bottom:722.693333pt;}
.y143{bottom:723.472000pt;}
.y25{bottom:724.000000pt;}
.y178{bottom:724.997333pt;}
.yfc{bottom:725.626667pt;}
.y4a{bottom:727.178667pt;}
.y142{bottom:736.944000pt;}
.y1a6{bottom:737.333333pt;}
.y177{bottom:738.330667pt;}
.y92{bottom:741.354667pt;}
.y6e{bottom:741.882667pt;}
.yb6{bottom:742.821333pt;}
.yd8{bottom:742.917333pt;}
.y24{bottom:744.000000pt;}
.yfb{bottom:745.354667pt;}
.y49{bottom:746.650667pt;}
.y141{bottom:750.405333pt;}
.y1a5{bottom:750.666667pt;}
.y176{bottom:751.664000pt;}
.y91{bottom:761.882667pt;}
.y6d{bottom:762.410667pt;}
.yb5{bottom:762.949333pt;}
.yd7{bottom:763.189333pt;}
.y140{bottom:763.872000pt;}
.y23{bottom:764.000000pt;}
.y2{bottom:764.400000pt;}
.y175{bottom:764.997333pt;}
.yfa{bottom:765.082667pt;}
.y48{bottom:766.122667pt;}
.y13f{bottom:777.333333pt;}
.y174{bottom:778.330667pt;}
.y90{bottom:782.410667pt;}
.y6c{bottom:782.938667pt;}
.yb4{bottom:783.077333pt;}
.yd6{bottom:783.461333pt;}
.y22{bottom:784.000000pt;}
.yf9{bottom:784.810667pt;}
.y47{bottom:785.594667pt;}
.y13e{bottom:790.666667pt;}
.y173{bottom:791.664000pt;}
.y8f{bottom:802.938667pt;}
.yb3{bottom:803.205333pt;}
.y6b{bottom:803.466667pt;}
.yd5{bottom:803.733333pt;}
.y21{bottom:804.000000pt;}
.yf8{bottom:804.538667pt;}
.y172{bottom:804.997333pt;}
.y46{bottom:805.061333pt;}
.y13d{bottom:817.333333pt;}
.yb2{bottom:823.333333pt;}
.y8e{bottom:823.466667pt;}
.y20{bottom:824.000000pt;}
.yf7{bottom:824.266667pt;}
.y45{bottom:824.533333pt;}
.y13c{bottom:830.666667pt;}
.h7{height:26.945443pt;}
.hd{height:34.730667pt;}
.h8{height:36.229167pt;}
.he{height:38.391467pt;}
.h4{height:40.757812pt;}
.h3{height:43.733333pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.hc{height:58.883292pt;}
.ha{height:58.904625pt;}
.h9{height:59.160625pt;}
.h6{height:59.181958pt;}
.hb{height:59.459292pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x5{left:100.000000pt;}
.x6{left:113.232000pt;}
.x9{left:120.472400pt;}
.x8{left:177.152000pt;}
.x7{left:209.600000pt;}
.x2{left:305.666533pt;}
.x4{left:556.250000pt;}
}




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