
    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_5659c4e8be0a3915cc32d82d.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_449a94c0da97c34a30b5bb74.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_05ea84e0d49263a642791a38.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_cedea8b1f8f3960b9c71c230.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_004a73a022a3fdd2fc621470.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_c7fa85e842e2b982f741a6b2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_3a255c7b35eff41e42d09ce4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_2807dd3519798fdc921a44b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_cfa22442d058db68daa1b8de.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_535ae47e46ab5be762a502c3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls31{letter-spacing:-7.200000px;}
.ls37{letter-spacing:-2.820000px;}
.ls35{letter-spacing:-2.340000px;}
.ls45{letter-spacing:-1.872000px;}
.ls43{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.864000px;}
.ls42{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls36{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.336000px;}
.ls14{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240000px;}
.ls30{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.244800px;}
.ls3a{letter-spacing:0.266400px;}
.ls1b{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.431400px;}
.ls20{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.460800px;}
.lsf{letter-spacing:0.504000px;}
.ls3d{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.640800px;}
.lsc{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.936000px;}
.ls8{letter-spacing:1.152000px;}
.ls3e{letter-spacing:1.296000px;}
.ls40{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.512000px;}
.ls1{letter-spacing:2.850000px;}
.ls44{letter-spacing:2.928000px;}
.ls34{letter-spacing:3.660000px;}
.ls1d{letter-spacing:4.176000px;}
.ls2a{letter-spacing:4.183200px;}
.lsb{letter-spacing:4.200000px;}
.ls33{letter-spacing:4.224000px;}
.ls48{letter-spacing:4.260000px;}
.ls12{letter-spacing:4.410600px;}
.ls3{letter-spacing:4.560000px;}
.ls41{letter-spacing:4.752000px;}
.ls2d{letter-spacing:5.112000px;}
.ls2c{letter-spacing:5.976000px;}
.ls13{letter-spacing:6.336000px;}
.ls47{letter-spacing:8.100000px;}
.ls32{letter-spacing:8.272800px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls11{letter-spacing:8.474400px;}
.ls1c{letter-spacing:9.216000px;}
.ls29{letter-spacing:9.360000px;}
.ls1a{letter-spacing:9.504000px;}
.ls3b{letter-spacing:9.856800px;}
.ls2{letter-spacing:10.740000px;}
.ls9{letter-spacing:15.480000px;}
.ls2f{letter-spacing:27.560400px;}
.lsa{letter-spacing:73.140000px;}
.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;}
}
.wse{word-spacing:-73.140000px;}
.ws44{word-spacing:-25.320000px;}
.ws4d{word-spacing:-23.274000px;}
.ws25{word-spacing:-20.232000px;}
.ws1a{word-spacing:-19.872000px;}
.ws3e{word-spacing:-19.080000px;}
.ws42{word-spacing:-18.432000px;}
.ws3f{word-spacing:-18.288000px;}
.ws3d{word-spacing:-18.144000px;}
.wsb{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.784000px;}
.ws45{word-spacing:-17.568000px;}
.ws36{word-spacing:-17.496000px;}
.ws43{word-spacing:-17.424000px;}
.wsd{word-spacing:-15.480000px;}
.ws37{word-spacing:-14.820000px;}
.ws31{word-spacing:-14.162400px;}
.ws35{word-spacing:-13.780200px;}
.ws4a{word-spacing:-13.488000px;}
.ws49{word-spacing:-12.336000px;}
.ws2c{word-spacing:-12.096000px;}
.wsc{word-spacing:-11.856000px;}
.ws2{word-spacing:-8.520000px;}
.ws0{word-spacing:-8.496000px;}
.ws10{word-spacing:-8.460000px;}
.ws1b{word-spacing:-6.336000px;}
.ws2f{word-spacing:-5.976000px;}
.ws48{word-spacing:-4.752000px;}
.ws8{word-spacing:-4.560000px;}
.wsf{word-spacing:-4.200000px;}
.ws1{word-spacing:-2.907000px;}
.ws6{word-spacing:-2.850000px;}
.ws41{word-spacing:-1.512000px;}
.ws40{word-spacing:-1.440000px;}
.ws18{word-spacing:-1.152000px;}
.ws32{word-spacing:-0.936000px;}
.ws28{word-spacing:-0.864000px;}
.ws29{word-spacing:-0.792000px;}
.ws21{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.576000px;}
.ws15{word-spacing:-0.504000px;}
.ws26{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.288000px;}
.ws30{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.050400px;}
.ws4{word-spacing:0.000000px;}
.ws12{word-spacing:0.072000px;}
.ws27{word-spacing:0.144000px;}
.ws33{word-spacing:0.216000px;}
.ws20{word-spacing:0.240000px;}
.ws1c{word-spacing:0.288000px;}
.ws4c{word-spacing:0.336000px;}
.ws14{word-spacing:0.360000px;}
.ws3c{word-spacing:0.420000px;}
.ws17{word-spacing:0.432000px;}
.ws3a{word-spacing:0.480000px;}
.ws1d{word-spacing:0.504000px;}
.ws2a{word-spacing:0.576000px;}
.ws1f{word-spacing:0.648000px;}
.ws1e{word-spacing:0.720000px;}
.ws46{word-spacing:0.792000px;}
.ws2b{word-spacing:0.864000px;}
.ws47{word-spacing:1.008000px;}
.ws7{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws4b{word-spacing:1.872000px;}
.ws38{word-spacing:2.340000px;}
.ws23{word-spacing:2.400000px;}
.ws3b{word-spacing:2.820000px;}
.ws39{word-spacing:3.840000px;}
.ws3{word-spacing:4.200000px;}
.ws34{word-spacing:7.200000px;}
.ws9{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._1d{margin-left:-19.965600px;}
._1c{margin-left:-14.303400px;}
._6{margin-left:-13.116000px;}
._1a{margin-left:-12.019200px;}
._1b{margin-left:-10.399200px;}
._18{margin-left:-8.513400px;}
._13{margin-left:-7.156800px;}
._1{margin-left:-5.964000px;}
._17{margin-left:-4.914000px;}
._12{margin-left:-3.840000px;}
._7{margin-left:-2.772000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.720000px;}
._8{width:5.179200px;}
._9{width:6.874200px;}
._4{width:8.388000px;}
._14{width:10.029600px;}
._15{width:11.299200px;}
._10{width:13.140000px;}
._a{width:15.240000px;}
._19{width:16.737000px;}
._b{width:19.140000px;}
._16{width:31.646100px;}
._1e{width:46.032000px;}
._11{width:56.772000px;}
._e{width:71.016000px;}
._c{width:73.140000px;}
._d{width:75.264000px;}
._f{width:94.590000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y46{bottom:117.000000px;}
.y1e6{bottom:118.572000px;}
.ye0{bottom:118.632000px;}
.y1ae{bottom:120.528000px;}
.y95{bottom:120.685050px;}
.y20{bottom:120.702750px;}
.y69{bottom:121.207500px;}
.ybd{bottom:121.662000px;}
.y169{bottom:121.866000px;}
.y145{bottom:122.734200px;}
.y45{bottom:132.000000px;}
.y1e5{bottom:132.972000px;}
.y1ad{bottom:136.128000px;}
.y7f{bottom:139.500000px;}
.y144{bottom:142.084200px;}
.ydf{bottom:142.338000px;}
.y94{bottom:143.185050px;}
.y68{bottom:143.707500px;}
.ybc{bottom:144.468000px;}
.y168{bottom:144.960000px;}
.y99{bottom:147.000000px;}
.y1e4{bottom:147.372000px;}
.y1f{bottom:149.605650px;}
.y44{bottom:151.207500px;}
.y1ac{bottom:151.728000px;}
.y189{bottom:161.372100px;}
.y143{bottom:161.434200px;}
.y1e3{bottom:161.772000px;}
.y7e{bottom:162.000000px;}
.y7d{bottom:162.177150px;}
.y93{bottom:165.685050px;}
.yde{bottom:166.044000px;}
.y98{bottom:166.207500px;}
.ybb{bottom:167.112000px;}
.y1ab{bottom:167.328000px;}
.y167{bottom:168.054000px;}
.y43{bottom:169.500000px;}
.y1e{bottom:170.005650px;}
.y1e2{bottom:176.016000px;}
.yff{bottom:177.000000px;}
.y142{bottom:180.784200px;}
.y1aa{bottom:182.928000px;}
.y188{bottom:184.016100px;}
.y42{bottom:184.500000px;}
.y7c{bottom:184.677150px;}
.y92{bottom:188.185050px;}
.y97{bottom:188.707500px;}
.y120{bottom:189.594000px;}
.ydd{bottom:189.750000px;}
.yba{bottom:189.756000px;}
.y1e1{bottom:190.260000px;}
.y1d{bottom:190.405650px;}
.y166{bottom:191.148000px;}
.yfe{bottom:196.207500px;}
.y1a9{bottom:198.528000px;}
.y41{bottom:199.500000px;}
.y141{bottom:200.134200px;}
.y1e0{bottom:204.660000px;}
.y187{bottom:206.660100px;}
.y67{bottom:207.000000px;}
.y7b{bottom:207.177150px;}
.y91{bottom:210.685050px;}
.y1c{bottom:210.805650px;}
.y96{bottom:211.207500px;}
.y11f{bottom:211.878000px;}
.yb9{bottom:212.400000px;}
.ydc{bottom:213.456000px;}
.y1a8{bottom:214.128000px;}
.y165{bottom:214.242000px;}
.y40{bottom:214.500000px;}
.y1df{bottom:219.060000px;}
.y140{bottom:227.994150px;}
.y186{bottom:229.304100px;}
.y66{bottom:229.500000px;}
.y7a{bottom:229.677150px;}
.y1a7{bottom:229.728000px;}
.y1b{bottom:231.205650px;}
.y90{bottom:233.185050px;}
.y1de{bottom:233.460000px;}
.y3f{bottom:233.707500px;}
.y11e{bottom:234.234000px;}
.yb8{bottom:235.044000px;}
.yfd{bottom:236.304000px;}
.ydb{bottom:237.162000px;}
.y164{bottom:237.336000px;}
.y1a6{bottom:245.328000px;}
.y1dd{bottom:247.860000px;}
.y13f{bottom:251.088150px;}
.y1a{bottom:251.605650px;}
.y185{bottom:251.948100px;}
.y65{bottom:252.000000px;}
.y79{bottom:252.177150px;}
.y8f{bottom:255.685050px;}
.y11d{bottom:256.590000px;}
.yb7{bottom:257.688000px;}
.yfc{bottom:258.948000px;}
.y163{bottom:260.430000px;}
.yda{bottom:260.868000px;}
.y1a5{bottom:260.928000px;}
.y1dc{bottom:262.260000px;}
.y19{bottom:272.005650px;}
.y64{bottom:274.500000px;}
.y184{bottom:274.592100px;}
.y78{bottom:274.677150px;}
.y1db{bottom:276.660000px;}
.y8e{bottom:278.185050px;}
.y11c{bottom:278.946000px;}
.y3e{bottom:279.496050px;}
.yb6{bottom:280.332000px;}
.yfb{bottom:281.592000px;}
.y13e{bottom:282.692100px;}
.y1a4{bottom:282.900000px;}
.y162{bottom:283.524000px;}
.y205{bottom:290.988150px;}
.y1da{bottom:291.060000px;}
.y18{bottom:292.405650px;}
.yd9{bottom:293.070000px;}
.y63{bottom:297.000000px;}
.y77{bottom:297.177150px;}
.y183{bottom:297.236100px;}
.y8d{bottom:300.685050px;}
.y11b{bottom:301.302000px;}
.y3d{bottom:301.546050px;}
.y13d{bottom:302.042100px;}
.yb5{bottom:302.976000px;}
.yfa{bottom:304.236000px;}
.y1d9{bottom:305.460000px;}
.y161{bottom:306.618000px;}
.y204{bottom:309.738150px;}
.y17{bottom:312.805650px;}
.yd8{bottom:316.776000px;}
.y62{bottom:319.500000px;}
.y76{bottom:319.677150px;}
.y1d8{bottom:319.860000px;}
.y182{bottom:319.880100px;}
.y13c{bottom:321.392100px;}
.y8c{bottom:323.185050px;}
.y3c{bottom:323.596050px;}
.y11a{bottom:323.658000px;}
.yb4{bottom:325.620000px;}
.yf9{bottom:326.880000px;}
.y203{bottom:328.488150px;}
.y1a3{bottom:329.142000px;}
.y160{bottom:329.712000px;}
.y16{bottom:333.205650px;}
.y1d7{bottom:334.260000px;}
.yd7{bottom:340.482000px;}
.y13b{bottom:340.742100px;}
.y61{bottom:342.000000px;}
.y75{bottom:342.177150px;}
.y181{bottom:342.524100px;}
.y3b{bottom:345.646050px;}
.y8b{bottom:345.685050px;}
.y119{bottom:346.014000px;}
.y202{bottom:347.238150px;}
.y1d6{bottom:348.660000px;}
.yf8{bottom:349.524000px;}
.y1a2{bottom:352.092000px;}
.y15f{bottom:352.806000px;}
.y15{bottom:353.605650px;}
.yb3{bottom:356.778000px;}
.y13a{bottom:360.092100px;}
.y1d5{bottom:363.060000px;}
.yd6{bottom:364.188000px;}
.y60{bottom:364.500000px;}
.y74{bottom:364.677150px;}
.y180{bottom:365.168100px;}
.y3a{bottom:367.696050px;}
.y8a{bottom:368.185050px;}
.y118{bottom:368.370000px;}
.yf7{bottom:372.168000px;}
.y1a1{bottom:375.042000px;}
.y15e{bottom:375.900000px;}
.y1d4{bottom:377.460000px;}
.yb2{bottom:379.422000px;}
.y14{bottom:382.510650px;}
.y201{bottom:384.738150px;}
.y5f{bottom:387.000000px;}
.y73{bottom:387.177150px;}
.y17f{bottom:387.812100px;}
.yd5{bottom:387.894000px;}
.y139{bottom:388.018050px;}
.y39{bottom:389.746050px;}
.y89{bottom:390.685050px;}
.y117{bottom:390.726000px;}
.y1d3{bottom:391.860000px;}
.yf6{bottom:394.812000px;}
.y1a0{bottom:397.992000px;}
.y15d{bottom:398.994000px;}
.yb1{bottom:402.066000px;}
.y1d2{bottom:406.260000px;}
.y5e{bottom:409.500000px;}
.y72{bottom:409.677150px;}
.y17e{bottom:410.456100px;}
.y138{bottom:411.112050px;}
.yd4{bottom:411.600000px;}
.y116{bottom:413.082000px;}
.y88{bottom:413.185050px;}
.y200{bottom:414.738150px;}
.yf5{bottom:417.456000px;}
.y1d1{bottom:420.660000px;}
.y19f{bottom:420.942000px;}
.y15c{bottom:422.088000px;}
.yb0{bottom:424.710000px;}
.y13{bottom:430.810650px;}
.y5d{bottom:432.000000px;}
.y71{bottom:432.177150px;}
.y17d{bottom:433.100100px;}
.y1ff{bottom:433.488150px;}
.y38{bottom:433.854000px;}
.y137{bottom:434.206050px;}
.y1d0{bottom:435.060000px;}
.yd3{bottom:435.306000px;}
.y115{bottom:435.438000px;}
.yf4{bottom:440.100000px;}
.y19e{bottom:443.892000px;}
.y15b{bottom:445.182000px;}
.yaf{bottom:447.354000px;}
.y1cf{bottom:449.460000px;}
.y1fe{bottom:452.238150px;}
.y5c{bottom:454.500000px;}
.y70{bottom:454.677150px;}
.y17c{bottom:455.744100px;}
.y37{bottom:455.904000px;}
.y136{bottom:457.300050px;}
.y114{bottom:457.794000px;}
.y87{bottom:458.185050px;}
.yd2{bottom:459.012000px;}
.y12{bottom:459.713550px;}
.yf3{bottom:462.600000px;}
.y1ce{bottom:463.860000px;}
.y19d{bottom:466.842000px;}
.y15a{bottom:468.276000px;}
.yae{bottom:469.998000px;}
.y1fd{bottom:470.988150px;}
.y5b{bottom:477.000000px;}
.y6f{bottom:477.177150px;}
.y1cd{bottom:478.260000px;}
.y17b{bottom:478.388100px;}
.y11{bottom:480.113550px;}
.y113{bottom:480.150000px;}
.y135{bottom:480.394050px;}
.y86{bottom:480.685050px;}
.yd1{bottom:482.718000px;}
.yf2{bottom:485.100000px;}
.y36{bottom:486.450000px;}
.y1fc{bottom:489.738150px;}
.y19c{bottom:489.792000px;}
.y159{bottom:491.370000px;}
.yad{bottom:492.642000px;}
.y1cc{bottom:492.660000px;}
.y5a{bottom:499.500000px;}
.y6e{bottom:499.677150px;}
.y10{bottom:500.513550px;}
.y17a{bottom:501.032100px;}
.y112{bottom:502.500000px;}
.y85{bottom:503.185050px;}
.y134{bottom:503.488050px;}
.yd0{bottom:506.424000px;}
.y1cb{bottom:507.060000px;}
.yf1{bottom:507.600000px;}
.y1fb{bottom:508.488150px;}
.y35{bottom:508.500000px;}
.y19b{bottom:512.742000px;}
.y158{bottom:514.464000px;}
.yac{bottom:515.286000px;}
.yf{bottom:520.913550px;}
.y1ca{bottom:521.460000px;}
.y59{bottom:522.000000px;}
.y6d{bottom:522.177150px;}
.y179{bottom:523.676100px;}
.y84{bottom:525.685050px;}
.y133{bottom:526.582050px;}
.y1fa{bottom:527.238150px;}
.yf0{bottom:530.100000px;}
.ycf{bottom:530.130000px;}
.y34{bottom:530.550000px;}
.y19a{bottom:535.692000px;}
.y1c9{bottom:535.860000px;}
.y157{bottom:537.558000px;}
.yab{bottom:537.930000px;}
.ye{bottom:541.313550px;}
.y58{bottom:544.500000px;}
.y6c{bottom:544.677150px;}
.y1f9{bottom:545.988150px;}
.y178{bottom:546.320100px;}
.y111{bottom:547.098000px;}
.y83{bottom:548.185050px;}
.y132{bottom:549.676050px;}
.y1c8{bottom:550.260000px;}
.y33{bottom:552.600000px;}
.yce{bottom:553.836000px;}
.y199{bottom:558.642000px;}
.yaa{bottom:560.574000px;}
.y156{bottom:560.652000px;}
.yd{bottom:561.713550px;}
.y1c7{bottom:564.504000px;}
.y1f8{bottom:564.738150px;}
.y57{bottom:567.000000px;}
.y6b{bottom:567.177150px;}
.y177{bottom:568.964100px;}
.y110{bottom:569.454000px;}
.y82{bottom:570.685050px;}
.y131{bottom:572.770050px;}
.y32{bottom:574.650000px;}
.yef{bottom:575.100000px;}
.ycd{bottom:577.542000px;}
.y1c6{bottom:578.760000px;}
.y198{bottom:581.592000px;}
.yc{bottom:582.113550px;}
.ya9{bottom:583.218000px;}
.y1f7{bottom:583.488150px;}
.y155{bottom:583.746000px;}
.y56{bottom:589.500000px;}
.y6a{bottom:589.677150px;}
.y176{bottom:591.608100px;}
.y10f{bottom:591.810000px;}
.y1c5{bottom:593.004000px;}
.y81{bottom:593.185050px;}
.y130{bottom:595.864050px;}
.y31{bottom:596.700000px;}
.yee{bottom:597.600000px;}
.ycc{bottom:601.248000px;}
.y1f6{bottom:602.238150px;}
.yb{bottom:602.513550px;}
.y197{bottom:604.542000px;}
.ya8{bottom:605.862000px;}
.y154{bottom:606.840000px;}
.y1c4{bottom:607.248000px;}
.y55{bottom:612.000000px;}
.y10e{bottom:614.166000px;}
.y175{bottom:614.252100px;}
.y80{bottom:615.685050px;}
.y30{bottom:618.750000px;}
.y12f{bottom:618.958050px;}
.yed{bottom:620.100000px;}
.y1f5{bottom:620.988150px;}
.y1c3{bottom:621.492000px;}
.ya{bottom:622.913550px;}
.ycb{bottom:624.954000px;}
.y196{bottom:627.492000px;}
.ya7{bottom:628.506000px;}
.y153{bottom:629.934000px;}
.y54{bottom:634.500000px;}
.y1c2{bottom:635.736000px;}
.y10d{bottom:636.522000px;}
.y174{bottom:636.896100px;}
.y1f4{bottom:639.738150px;}
.y2f{bottom:640.800000px;}
.y12e{bottom:642.052050px;}
.yec{bottom:642.588000px;}
.yca{bottom:648.660000px;}
.y1c1{bottom:649.980000px;}
.y195{bottom:650.442000px;}
.ya6{bottom:651.150000px;}
.y9{bottom:651.818550px;}
.y152{bottom:653.028000px;}
.y53{bottom:657.000000px;}
.y1f3{bottom:658.488150px;}
.y10c{bottom:658.878000px;}
.y173{bottom:659.990100px;}
.y2e{bottom:662.850000px;}
.y1c0{bottom:664.224000px;}
.yeb{bottom:665.088000px;}
.y12d{bottom:665.146050px;}
.yc9{bottom:672.366000px;}
.y194{bottom:673.392000px;}
.ya5{bottom:674.100000px;}
.y151{bottom:675.834000px;}
.y1f2{bottom:677.238150px;}
.y1bf{bottom:678.468000px;}
.y52{bottom:679.500000px;}
.y10b{bottom:681.234000px;}
.y172{bottom:683.084100px;}
.y2d{bottom:684.900000px;}
.y12c{bottom:688.096050px;}
.yea{bottom:688.794000px;}
.y1be{bottom:692.712000px;}
.yc8{bottom:695.460000px;}
.y1f1{bottom:695.988150px;}
.y193{bottom:696.342000px;}
.ya4{bottom:697.050000px;}
.y150{bottom:698.640000px;}
.y8{bottom:699.354300px;}
.y51{bottom:702.000000px;}
.y10a{bottom:703.590000px;}
.y171{bottom:706.178100px;}
.y2c{bottom:706.950000px;}
.y1bd{bottom:706.956000px;}
.y12b{bottom:711.046050px;}
.ye9{bottom:712.500000px;}
.y1f0{bottom:714.738150px;}
.yc7{bottom:718.554000px;}
.y7{bottom:719.004300px;}
.y192{bottom:719.292000px;}
.ya3{bottom:720.000000px;}
.y1bc{bottom:721.200000px;}
.y14f{bottom:721.446000px;}
.y50{bottom:724.500000px;}
.y109{bottom:725.946000px;}
.y2b{bottom:729.000000px;}
.y170{bottom:729.272100px;}
.y1ef{bottom:733.488150px;}
.y12a{bottom:733.996050px;}
.y1bb{bottom:735.444000px;}
.ye8{bottom:736.200000px;}
.yc6{bottom:741.648000px;}
.y191{bottom:742.242000px;}
.ya2{bottom:742.950000px;}
.y6{bottom:743.154300px;}
.y14e{bottom:744.252000px;}
.y4f{bottom:747.000000px;}
.y108{bottom:748.302000px;}
.y1ba{bottom:749.688000px;}
.y2a{bottom:751.050000px;}
.y1ee{bottom:752.238150px;}
.y16f{bottom:752.366100px;}
.y129{bottom:756.946050px;}
.y1b9{bottom:763.932000px;}
.yc5{bottom:764.742000px;}
.y190{bottom:765.336000px;}
.ya1{bottom:765.900000px;}
.y14d{bottom:767.058000px;}
.y4e{bottom:769.500000px;}
.y107{bottom:770.658000px;}
.y1ed{bottom:770.988150px;}
.y29{bottom:773.100000px;}
.y16e{bottom:775.460100px;}
.y1b8{bottom:778.176000px;}
.y128{bottom:779.896050px;}
.ye7{bottom:783.564000px;}
.yc4{bottom:787.836000px;}
.y18f{bottom:788.430000px;}
.ya0{bottom:788.850000px;}
.y1ec{bottom:789.738150px;}
.y14c{bottom:789.864000px;}
.y4d{bottom:792.000000px;}
.y1b7{bottom:792.420000px;}
.y106{bottom:793.014000px;}
.y28{bottom:795.150000px;}
.y16d{bottom:798.554100px;}
.y127{bottom:802.846050px;}
.y1b6{bottom:806.664000px;}
.ye6{bottom:807.270000px;}
.y1eb{bottom:808.488150px;}
.yc3{bottom:810.930000px;}
.y18e{bottom:811.524000px;}
.y9f{bottom:811.800000px;}
.y5{bottom:811.950000px;}
.y14b{bottom:812.670000px;}
.y4c{bottom:814.500000px;}
.y105{bottom:815.370000px;}
.y27{bottom:817.200000px;}
.y1b5{bottom:820.908000px;}
.y16c{bottom:821.648100px;}
.y1ea{bottom:827.238150px;}
.ye5{bottom:830.976000px;}
.yc2{bottom:834.024000px;}
.y126{bottom:834.300000px;}
.y18d{bottom:834.618000px;}
.y9e{bottom:834.750000px;}
.y1b4{bottom:835.152000px;}
.y14a{bottom:835.476000px;}
.y4b{bottom:837.000000px;}
.y104{bottom:837.726000px;}
.y26{bottom:839.250000px;}
.y4{bottom:843.600000px;}
.y16b{bottom:844.742100px;}
.y1e9{bottom:845.988150px;}
.y1b3{bottom:849.396000px;}
.y125{bottom:853.500000px;}
.ye4{bottom:854.682000px;}
.yc1{bottom:857.118000px;}
.y9d{bottom:857.700000px;}
.y18c{bottom:857.712000px;}
.y149{bottom:858.282000px;}
.y4a{bottom:859.500000px;}
.y103{bottom:860.082000px;}
.y25{bottom:861.300000px;}
.y1b2{bottom:863.640000px;}
.y1e8{bottom:864.738150px;}
.y124{bottom:872.700000px;}
.y3{bottom:875.250000px;}
.y16a{bottom:876.346050px;}
.y1b1{bottom:877.884000px;}
.ye3{bottom:878.388000px;}
.yc0{bottom:880.212000px;}
.y9c{bottom:880.650000px;}
.y18b{bottom:880.806000px;}
.y148{bottom:881.088000px;}
.y49{bottom:882.000000px;}
.y102{bottom:882.438000px;}
.y24{bottom:883.350000px;}
.y123{bottom:891.900000px;}
.y1b0{bottom:892.128000px;}
.y1e7{bottom:896.244150px;}
.ye2{bottom:902.094000px;}
.ybf{bottom:903.306000px;}
.y9b{bottom:903.600000px;}
.y147{bottom:903.894000px;}
.y18a{bottom:903.900000px;}
.y48{bottom:904.500000px;}
.y101{bottom:904.794000px;}
.y23{bottom:905.400000px;}
.y1af{bottom:906.372000px;}
.y122{bottom:911.100000px;}
.y2{bottom:924.900000px;}
.ye1{bottom:925.800000px;}
.ybe{bottom:926.400000px;}
.y9a{bottom:926.550000px;}
.y146{bottom:926.700000px;}
.y47{bottom:927.000000px;}
.y100{bottom:927.150000px;}
.y22{bottom:927.450000px;}
.y121{bottom:930.300000px;}
.h9{height:30.313623px;}
.h2{height:37.990723px;}
.h10{height:39.072000px;}
.h1{height:39.990234px;}
.ha{height:40.757812px;}
.h11{height:45.852539px;}
.h5{height:47.988281px;}
.h6{height:48.399902px;}
.hc{height:48.840000px;}
.h4{height:50.580000px;}
.h7{height:50.947266px;}
.h8{height:61.136719px;}
.hf{height:61.160719px;}
.he{height:61.424719px;}
.hb{height:66.555703px;}
.hd{height:66.603703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x6{left:82.381950px;}
.xd{left:85.519650px;}
.xc{left:97.263750px;}
.x9{left:105.768000px;}
.x7{left:107.881950px;}
.x2{left:112.500000px;}
.x8{left:127.386000px;}
.xb{left:130.519500px;}
.x5{left:135.000000px;}
.x3{left:142.263750px;}
.xa{left:150.768000px;}
.xe{left:180.541950px;}
.x1{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls31{letter-spacing:-6.400000pt;}
.ls37{letter-spacing:-2.506667pt;}
.ls35{letter-spacing:-2.080000pt;}
.ls45{letter-spacing:-1.664000pt;}
.ls43{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls42{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls36{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.298667pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.217600pt;}
.ls3a{letter-spacing:0.236800pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.383467pt;}
.ls20{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.409600pt;}
.lsf{letter-spacing:0.448000pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.569600pt;}
.lsc{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.832000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls3e{letter-spacing:1.152000pt;}
.ls40{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.344000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls44{letter-spacing:2.602667pt;}
.ls34{letter-spacing:3.253333pt;}
.ls1d{letter-spacing:3.712000pt;}
.ls2a{letter-spacing:3.718400pt;}
.lsb{letter-spacing:3.733333pt;}
.ls33{letter-spacing:3.754667pt;}
.ls48{letter-spacing:3.786667pt;}
.ls12{letter-spacing:3.920533pt;}
.ls3{letter-spacing:4.053333pt;}
.ls41{letter-spacing:4.224000pt;}
.ls2d{letter-spacing:4.544000pt;}
.ls2c{letter-spacing:5.312000pt;}
.ls13{letter-spacing:5.632000pt;}
.ls47{letter-spacing:7.200000pt;}
.ls32{letter-spacing:7.353600pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls11{letter-spacing:7.532800pt;}
.ls1c{letter-spacing:8.192000pt;}
.ls29{letter-spacing:8.320000pt;}
.ls1a{letter-spacing:8.448000pt;}
.ls3b{letter-spacing:8.761600pt;}
.ls2{letter-spacing:9.546667pt;}
.ls9{letter-spacing:13.760000pt;}
.ls2f{letter-spacing:24.498133pt;}
.lsa{letter-spacing:65.013333pt;}
.wse{word-spacing:-65.013333pt;}
.ws44{word-spacing:-22.506667pt;}
.ws4d{word-spacing:-20.688000pt;}
.ws25{word-spacing:-17.984000pt;}
.ws1a{word-spacing:-17.664000pt;}
.ws3e{word-spacing:-16.960000pt;}
.ws42{word-spacing:-16.384000pt;}
.ws3f{word-spacing:-16.256000pt;}
.ws3d{word-spacing:-16.128000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws45{word-spacing:-15.616000pt;}
.ws36{word-spacing:-15.552000pt;}
.ws43{word-spacing:-15.488000pt;}
.wsd{word-spacing:-13.760000pt;}
.ws37{word-spacing:-13.173333pt;}
.ws31{word-spacing:-12.588800pt;}
.ws35{word-spacing:-12.249067pt;}
.ws4a{word-spacing:-11.989333pt;}
.ws49{word-spacing:-10.965333pt;}
.ws2c{word-spacing:-10.752000pt;}
.wsc{word-spacing:-10.538667pt;}
.ws2{word-spacing:-7.573333pt;}
.ws0{word-spacing:-7.552000pt;}
.ws10{word-spacing:-7.520000pt;}
.ws1b{word-spacing:-5.632000pt;}
.ws2f{word-spacing:-5.312000pt;}
.ws48{word-spacing:-4.224000pt;}
.ws8{word-spacing:-4.053333pt;}
.wsf{word-spacing:-3.733333pt;}
.ws1{word-spacing:-2.584000pt;}
.ws6{word-spacing:-2.533333pt;}
.ws41{word-spacing:-1.344000pt;}
.ws40{word-spacing:-1.280000pt;}
.ws18{word-spacing:-1.024000pt;}
.ws32{word-spacing:-0.832000pt;}
.ws28{word-spacing:-0.768000pt;}
.ws29{word-spacing:-0.704000pt;}
.ws21{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws15{word-spacing:-0.448000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws30{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.044800pt;}
.ws4{word-spacing:0.000000pt;}
.ws12{word-spacing:0.064000pt;}
.ws27{word-spacing:0.128000pt;}
.ws33{word-spacing:0.192000pt;}
.ws20{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.256000pt;}
.ws4c{word-spacing:0.298667pt;}
.ws14{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.373333pt;}
.ws17{word-spacing:0.384000pt;}
.ws3a{word-spacing:0.426667pt;}
.ws1d{word-spacing:0.448000pt;}
.ws2a{word-spacing:0.512000pt;}
.ws1f{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.640000pt;}
.ws46{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.768000pt;}
.ws47{word-spacing:0.896000pt;}
.ws7{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws4b{word-spacing:1.664000pt;}
.ws38{word-spacing:2.080000pt;}
.ws23{word-spacing:2.133333pt;}
.ws3b{word-spacing:2.506667pt;}
.ws39{word-spacing:3.413333pt;}
.ws3{word-spacing:3.733333pt;}
.ws34{word-spacing:6.400000pt;}
.ws9{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._1d{margin-left:-17.747200pt;}
._1c{margin-left:-12.714133pt;}
._6{margin-left:-11.658667pt;}
._1a{margin-left:-10.683733pt;}
._1b{margin-left:-9.243733pt;}
._18{margin-left:-7.567467pt;}
._13{margin-left:-6.361600pt;}
._1{margin-left:-5.301333pt;}
._17{margin-left:-4.368000pt;}
._12{margin-left:-3.413333pt;}
._7{margin-left:-2.464000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.306667pt;}
._8{width:4.603733pt;}
._9{width:6.110400pt;}
._4{width:7.456000pt;}
._14{width:8.915200pt;}
._15{width:10.043733pt;}
._10{width:11.680000pt;}
._a{width:13.546667pt;}
._19{width:14.877333pt;}
._b{width:17.013333pt;}
._16{width:28.129867pt;}
._1e{width:40.917333pt;}
._11{width:50.464000pt;}
._e{width:63.125333pt;}
._c{width:65.013333pt;}
._d{width:66.901333pt;}
._f{width:84.080000pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y46{bottom:104.000000pt;}
.y1e6{bottom:105.397333pt;}
.ye0{bottom:105.450667pt;}
.y1ae{bottom:107.136000pt;}
.y95{bottom:107.275600pt;}
.y20{bottom:107.291333pt;}
.y69{bottom:107.740000pt;}
.ybd{bottom:108.144000pt;}
.y169{bottom:108.325333pt;}
.y145{bottom:109.097067pt;}
.y45{bottom:117.333333pt;}
.y1e5{bottom:118.197333pt;}
.y1ad{bottom:121.002667pt;}
.y7f{bottom:124.000000pt;}
.y144{bottom:126.297067pt;}
.ydf{bottom:126.522667pt;}
.y94{bottom:127.275600pt;}
.y68{bottom:127.740000pt;}
.ybc{bottom:128.416000pt;}
.y168{bottom:128.853333pt;}
.y99{bottom:130.666667pt;}
.y1e4{bottom:130.997333pt;}
.y1f{bottom:132.982800pt;}
.y44{bottom:134.406667pt;}
.y1ac{bottom:134.869333pt;}
.y189{bottom:143.441867pt;}
.y143{bottom:143.497067pt;}
.y1e3{bottom:143.797333pt;}
.y7e{bottom:144.000000pt;}
.y7d{bottom:144.157467pt;}
.y93{bottom:147.275600pt;}
.yde{bottom:147.594667pt;}
.y98{bottom:147.740000pt;}
.ybb{bottom:148.544000pt;}
.y1ab{bottom:148.736000pt;}
.y167{bottom:149.381333pt;}
.y43{bottom:150.666667pt;}
.y1e{bottom:151.116133pt;}
.y1e2{bottom:156.458667pt;}
.yff{bottom:157.333333pt;}
.y142{bottom:160.697067pt;}
.y1aa{bottom:162.602667pt;}
.y188{bottom:163.569867pt;}
.y42{bottom:164.000000pt;}
.y7c{bottom:164.157467pt;}
.y92{bottom:167.275600pt;}
.y97{bottom:167.740000pt;}
.y120{bottom:168.528000pt;}
.ydd{bottom:168.666667pt;}
.yba{bottom:168.672000pt;}
.y1e1{bottom:169.120000pt;}
.y1d{bottom:169.249467pt;}
.y166{bottom:169.909333pt;}
.yfe{bottom:174.406667pt;}
.y1a9{bottom:176.469333pt;}
.y41{bottom:177.333333pt;}
.y141{bottom:177.897067pt;}
.y1e0{bottom:181.920000pt;}
.y187{bottom:183.697867pt;}
.y67{bottom:184.000000pt;}
.y7b{bottom:184.157467pt;}
.y91{bottom:187.275600pt;}
.y1c{bottom:187.382800pt;}
.y96{bottom:187.740000pt;}
.y11f{bottom:188.336000pt;}
.yb9{bottom:188.800000pt;}
.ydc{bottom:189.738667pt;}
.y1a8{bottom:190.336000pt;}
.y165{bottom:190.437333pt;}
.y40{bottom:190.666667pt;}
.y1df{bottom:194.720000pt;}
.y140{bottom:202.661467pt;}
.y186{bottom:203.825867pt;}
.y66{bottom:204.000000pt;}
.y7a{bottom:204.157467pt;}
.y1a7{bottom:204.202667pt;}
.y1b{bottom:205.516133pt;}
.y90{bottom:207.275600pt;}
.y1de{bottom:207.520000pt;}
.y3f{bottom:207.740000pt;}
.y11e{bottom:208.208000pt;}
.yb8{bottom:208.928000pt;}
.yfd{bottom:210.048000pt;}
.ydb{bottom:210.810667pt;}
.y164{bottom:210.965333pt;}
.y1a6{bottom:218.069333pt;}
.y1dd{bottom:220.320000pt;}
.y13f{bottom:223.189467pt;}
.y1a{bottom:223.649467pt;}
.y185{bottom:223.953867pt;}
.y65{bottom:224.000000pt;}
.y79{bottom:224.157467pt;}
.y8f{bottom:227.275600pt;}
.y11d{bottom:228.080000pt;}
.yb7{bottom:229.056000pt;}
.yfc{bottom:230.176000pt;}
.y163{bottom:231.493333pt;}
.yda{bottom:231.882667pt;}
.y1a5{bottom:231.936000pt;}
.y1dc{bottom:233.120000pt;}
.y19{bottom:241.782800pt;}
.y64{bottom:244.000000pt;}
.y184{bottom:244.081867pt;}
.y78{bottom:244.157467pt;}
.y1db{bottom:245.920000pt;}
.y8e{bottom:247.275600pt;}
.y11c{bottom:247.952000pt;}
.y3e{bottom:248.440933pt;}
.yb6{bottom:249.184000pt;}
.yfb{bottom:250.304000pt;}
.y13e{bottom:251.281867pt;}
.y1a4{bottom:251.466667pt;}
.y162{bottom:252.021333pt;}
.y205{bottom:258.656133pt;}
.y1da{bottom:258.720000pt;}
.y18{bottom:259.916133pt;}
.yd9{bottom:260.506667pt;}
.y63{bottom:264.000000pt;}
.y77{bottom:264.157467pt;}
.y183{bottom:264.209867pt;}
.y8d{bottom:267.275600pt;}
.y11b{bottom:267.824000pt;}
.y3d{bottom:268.040933pt;}
.y13d{bottom:268.481867pt;}
.yb5{bottom:269.312000pt;}
.yfa{bottom:270.432000pt;}
.y1d9{bottom:271.520000pt;}
.y161{bottom:272.549333pt;}
.y204{bottom:275.322800pt;}
.y17{bottom:278.049467pt;}
.yd8{bottom:281.578667pt;}
.y62{bottom:284.000000pt;}
.y76{bottom:284.157467pt;}
.y1d8{bottom:284.320000pt;}
.y182{bottom:284.337867pt;}
.y13c{bottom:285.681867pt;}
.y8c{bottom:287.275600pt;}
.y3c{bottom:287.640933pt;}
.y11a{bottom:287.696000pt;}
.yb4{bottom:289.440000pt;}
.yf9{bottom:290.560000pt;}
.y203{bottom:291.989467pt;}
.y1a3{bottom:292.570667pt;}
.y160{bottom:293.077333pt;}
.y16{bottom:296.182800pt;}
.y1d7{bottom:297.120000pt;}
.yd7{bottom:302.650667pt;}
.y13b{bottom:302.881867pt;}
.y61{bottom:304.000000pt;}
.y75{bottom:304.157467pt;}
.y181{bottom:304.465867pt;}
.y3b{bottom:307.240933pt;}
.y8b{bottom:307.275600pt;}
.y119{bottom:307.568000pt;}
.y202{bottom:308.656133pt;}
.y1d6{bottom:309.920000pt;}
.yf8{bottom:310.688000pt;}
.y1a2{bottom:312.970667pt;}
.y15f{bottom:313.605333pt;}
.y15{bottom:314.316133pt;}
.yb3{bottom:317.136000pt;}
.y13a{bottom:320.081867pt;}
.y1d5{bottom:322.720000pt;}
.yd6{bottom:323.722667pt;}
.y60{bottom:324.000000pt;}
.y74{bottom:324.157467pt;}
.y180{bottom:324.593867pt;}
.y3a{bottom:326.840933pt;}
.y8a{bottom:327.275600pt;}
.y118{bottom:327.440000pt;}
.yf7{bottom:330.816000pt;}
.y1a1{bottom:333.370667pt;}
.y15e{bottom:334.133333pt;}
.y1d4{bottom:335.520000pt;}
.yb2{bottom:337.264000pt;}
.y14{bottom:340.009467pt;}
.y201{bottom:341.989467pt;}
.y5f{bottom:344.000000pt;}
.y73{bottom:344.157467pt;}
.y17f{bottom:344.721867pt;}
.yd5{bottom:344.794667pt;}
.y139{bottom:344.904933pt;}
.y39{bottom:346.440933pt;}
.y89{bottom:347.275600pt;}
.y117{bottom:347.312000pt;}
.y1d3{bottom:348.320000pt;}
.yf6{bottom:350.944000pt;}
.y1a0{bottom:353.770667pt;}
.y15d{bottom:354.661333pt;}
.yb1{bottom:357.392000pt;}
.y1d2{bottom:361.120000pt;}
.y5e{bottom:364.000000pt;}
.y72{bottom:364.157467pt;}
.y17e{bottom:364.849867pt;}
.y138{bottom:365.432933pt;}
.yd4{bottom:365.866667pt;}
.y116{bottom:367.184000pt;}
.y88{bottom:367.275600pt;}
.y200{bottom:368.656133pt;}
.yf5{bottom:371.072000pt;}
.y1d1{bottom:373.920000pt;}
.y19f{bottom:374.170667pt;}
.y15c{bottom:375.189333pt;}
.yb0{bottom:377.520000pt;}
.y13{bottom:382.942800pt;}
.y5d{bottom:384.000000pt;}
.y71{bottom:384.157467pt;}
.y17d{bottom:384.977867pt;}
.y1ff{bottom:385.322800pt;}
.y38{bottom:385.648000pt;}
.y137{bottom:385.960933pt;}
.y1d0{bottom:386.720000pt;}
.yd3{bottom:386.938667pt;}
.y115{bottom:387.056000pt;}
.yf4{bottom:391.200000pt;}
.y19e{bottom:394.570667pt;}
.y15b{bottom:395.717333pt;}
.yaf{bottom:397.648000pt;}
.y1cf{bottom:399.520000pt;}
.y1fe{bottom:401.989467pt;}
.y5c{bottom:404.000000pt;}
.y70{bottom:404.157467pt;}
.y17c{bottom:405.105867pt;}
.y37{bottom:405.248000pt;}
.y136{bottom:406.488933pt;}
.y114{bottom:406.928000pt;}
.y87{bottom:407.275600pt;}
.yd2{bottom:408.010667pt;}
.y12{bottom:408.634267pt;}
.yf3{bottom:411.200000pt;}
.y1ce{bottom:412.320000pt;}
.y19d{bottom:414.970667pt;}
.y15a{bottom:416.245333pt;}
.yae{bottom:417.776000pt;}
.y1fd{bottom:418.656133pt;}
.y5b{bottom:424.000000pt;}
.y6f{bottom:424.157467pt;}
.y1cd{bottom:425.120000pt;}
.y17b{bottom:425.233867pt;}
.y11{bottom:426.767600pt;}
.y113{bottom:426.800000pt;}
.y135{bottom:427.016933pt;}
.y86{bottom:427.275600pt;}
.yd1{bottom:429.082667pt;}
.yf2{bottom:431.200000pt;}
.y36{bottom:432.400000pt;}
.y1fc{bottom:435.322800pt;}
.y19c{bottom:435.370667pt;}
.y159{bottom:436.773333pt;}
.yad{bottom:437.904000pt;}
.y1cc{bottom:437.920000pt;}
.y5a{bottom:444.000000pt;}
.y6e{bottom:444.157467pt;}
.y10{bottom:444.900933pt;}
.y17a{bottom:445.361867pt;}
.y112{bottom:446.666667pt;}
.y85{bottom:447.275600pt;}
.y134{bottom:447.544933pt;}
.yd0{bottom:450.154667pt;}
.y1cb{bottom:450.720000pt;}
.yf1{bottom:451.200000pt;}
.y1fb{bottom:451.989467pt;}
.y35{bottom:452.000000pt;}
.y19b{bottom:455.770667pt;}
.y158{bottom:457.301333pt;}
.yac{bottom:458.032000pt;}
.yf{bottom:463.034267pt;}
.y1ca{bottom:463.520000pt;}
.y59{bottom:464.000000pt;}
.y6d{bottom:464.157467pt;}
.y179{bottom:465.489867pt;}
.y84{bottom:467.275600pt;}
.y133{bottom:468.072933pt;}
.y1fa{bottom:468.656133pt;}
.yf0{bottom:471.200000pt;}
.ycf{bottom:471.226667pt;}
.y34{bottom:471.600000pt;}
.y19a{bottom:476.170667pt;}
.y1c9{bottom:476.320000pt;}
.y157{bottom:477.829333pt;}
.yab{bottom:478.160000pt;}
.ye{bottom:481.167600pt;}
.y58{bottom:484.000000pt;}
.y6c{bottom:484.157467pt;}
.y1f9{bottom:485.322800pt;}
.y178{bottom:485.617867pt;}
.y111{bottom:486.309333pt;}
.y83{bottom:487.275600pt;}
.y132{bottom:488.600933pt;}
.y1c8{bottom:489.120000pt;}
.y33{bottom:491.200000pt;}
.yce{bottom:492.298667pt;}
.y199{bottom:496.570667pt;}
.yaa{bottom:498.288000pt;}
.y156{bottom:498.357333pt;}
.yd{bottom:499.300933pt;}
.y1c7{bottom:501.781333pt;}
.y1f8{bottom:501.989467pt;}
.y57{bottom:504.000000pt;}
.y6b{bottom:504.157467pt;}
.y177{bottom:505.745867pt;}
.y110{bottom:506.181333pt;}
.y82{bottom:507.275600pt;}
.y131{bottom:509.128933pt;}
.y32{bottom:510.800000pt;}
.yef{bottom:511.200000pt;}
.ycd{bottom:513.370667pt;}
.y1c6{bottom:514.453333pt;}
.y198{bottom:516.970667pt;}
.yc{bottom:517.434267pt;}
.ya9{bottom:518.416000pt;}
.y1f7{bottom:518.656133pt;}
.y155{bottom:518.885333pt;}
.y56{bottom:524.000000pt;}
.y6a{bottom:524.157467pt;}
.y176{bottom:525.873867pt;}
.y10f{bottom:526.053333pt;}
.y1c5{bottom:527.114667pt;}
.y81{bottom:527.275600pt;}
.y130{bottom:529.656933pt;}
.y31{bottom:530.400000pt;}
.yee{bottom:531.200000pt;}
.ycc{bottom:534.442667pt;}
.y1f6{bottom:535.322800pt;}
.yb{bottom:535.567600pt;}
.y197{bottom:537.370667pt;}
.ya8{bottom:538.544000pt;}
.y154{bottom:539.413333pt;}
.y1c4{bottom:539.776000pt;}
.y55{bottom:544.000000pt;}
.y10e{bottom:545.925333pt;}
.y175{bottom:546.001867pt;}
.y80{bottom:547.275600pt;}
.y30{bottom:550.000000pt;}
.y12f{bottom:550.184933pt;}
.yed{bottom:551.200000pt;}
.y1f5{bottom:551.989467pt;}
.y1c3{bottom:552.437333pt;}
.ya{bottom:553.700933pt;}
.ycb{bottom:555.514667pt;}
.y196{bottom:557.770667pt;}
.ya7{bottom:558.672000pt;}
.y153{bottom:559.941333pt;}
.y54{bottom:564.000000pt;}
.y1c2{bottom:565.098667pt;}
.y10d{bottom:565.797333pt;}
.y174{bottom:566.129867pt;}
.y1f4{bottom:568.656133pt;}
.y2f{bottom:569.600000pt;}
.y12e{bottom:570.712933pt;}
.yec{bottom:571.189333pt;}
.yca{bottom:576.586667pt;}
.y1c1{bottom:577.760000pt;}
.y195{bottom:578.170667pt;}
.ya6{bottom:578.800000pt;}
.y9{bottom:579.394267pt;}
.y152{bottom:580.469333pt;}
.y53{bottom:584.000000pt;}
.y1f3{bottom:585.322800pt;}
.y10c{bottom:585.669333pt;}
.y173{bottom:586.657867pt;}
.y2e{bottom:589.200000pt;}
.y1c0{bottom:590.421333pt;}
.yeb{bottom:591.189333pt;}
.y12d{bottom:591.240933pt;}
.yc9{bottom:597.658667pt;}
.y194{bottom:598.570667pt;}
.ya5{bottom:599.200000pt;}
.y151{bottom:600.741333pt;}
.y1f2{bottom:601.989467pt;}
.y1bf{bottom:603.082667pt;}
.y52{bottom:604.000000pt;}
.y10b{bottom:605.541333pt;}
.y172{bottom:607.185867pt;}
.y2d{bottom:608.800000pt;}
.y12c{bottom:611.640933pt;}
.yea{bottom:612.261333pt;}
.y1be{bottom:615.744000pt;}
.yc8{bottom:618.186667pt;}
.y1f1{bottom:618.656133pt;}
.y193{bottom:618.970667pt;}
.ya4{bottom:619.600000pt;}
.y150{bottom:621.013333pt;}
.y8{bottom:621.648267pt;}
.y51{bottom:624.000000pt;}
.y10a{bottom:625.413333pt;}
.y171{bottom:627.713867pt;}
.y2c{bottom:628.400000pt;}
.y1bd{bottom:628.405333pt;}
.y12b{bottom:632.040933pt;}
.ye9{bottom:633.333333pt;}
.y1f0{bottom:635.322800pt;}
.yc7{bottom:638.714667pt;}
.y7{bottom:639.114933pt;}
.y192{bottom:639.370667pt;}
.ya3{bottom:640.000000pt;}
.y1bc{bottom:641.066667pt;}
.y14f{bottom:641.285333pt;}
.y50{bottom:644.000000pt;}
.y109{bottom:645.285333pt;}
.y2b{bottom:648.000000pt;}
.y170{bottom:648.241867pt;}
.y1ef{bottom:651.989467pt;}
.y12a{bottom:652.440933pt;}
.y1bb{bottom:653.728000pt;}
.ye8{bottom:654.400000pt;}
.yc6{bottom:659.242667pt;}
.y191{bottom:659.770667pt;}
.ya2{bottom:660.400000pt;}
.y6{bottom:660.581600pt;}
.y14e{bottom:661.557333pt;}
.y4f{bottom:664.000000pt;}
.y108{bottom:665.157333pt;}
.y1ba{bottom:666.389333pt;}
.y2a{bottom:667.600000pt;}
.y1ee{bottom:668.656133pt;}
.y16f{bottom:668.769867pt;}
.y129{bottom:672.840933pt;}
.y1b9{bottom:679.050667pt;}
.yc5{bottom:679.770667pt;}
.y190{bottom:680.298667pt;}
.ya1{bottom:680.800000pt;}
.y14d{bottom:681.829333pt;}
.y4e{bottom:684.000000pt;}
.y107{bottom:685.029333pt;}
.y1ed{bottom:685.322800pt;}
.y29{bottom:687.200000pt;}
.y16e{bottom:689.297867pt;}
.y1b8{bottom:691.712000pt;}
.y128{bottom:693.240933pt;}
.ye7{bottom:696.501333pt;}
.yc4{bottom:700.298667pt;}
.y18f{bottom:700.826667pt;}
.ya0{bottom:701.200000pt;}
.y1ec{bottom:701.989467pt;}
.y14c{bottom:702.101333pt;}
.y4d{bottom:704.000000pt;}
.y1b7{bottom:704.373333pt;}
.y106{bottom:704.901333pt;}
.y28{bottom:706.800000pt;}
.y16d{bottom:709.825867pt;}
.y127{bottom:713.640933pt;}
.y1b6{bottom:717.034667pt;}
.ye6{bottom:717.573333pt;}
.y1eb{bottom:718.656133pt;}
.yc3{bottom:720.826667pt;}
.y18e{bottom:721.354667pt;}
.y9f{bottom:721.600000pt;}
.y5{bottom:721.733333pt;}
.y14b{bottom:722.373333pt;}
.y4c{bottom:724.000000pt;}
.y105{bottom:724.773333pt;}
.y27{bottom:726.400000pt;}
.y1b5{bottom:729.696000pt;}
.y16c{bottom:730.353867pt;}
.y1ea{bottom:735.322800pt;}
.ye5{bottom:738.645333pt;}
.yc2{bottom:741.354667pt;}
.y126{bottom:741.600000pt;}
.y18d{bottom:741.882667pt;}
.y9e{bottom:742.000000pt;}
.y1b4{bottom:742.357333pt;}
.y14a{bottom:742.645333pt;}
.y4b{bottom:744.000000pt;}
.y104{bottom:744.645333pt;}
.y26{bottom:746.000000pt;}
.y4{bottom:749.866667pt;}
.y16b{bottom:750.881867pt;}
.y1e9{bottom:751.989467pt;}
.y1b3{bottom:755.018667pt;}
.y125{bottom:758.666667pt;}
.ye4{bottom:759.717333pt;}
.yc1{bottom:761.882667pt;}
.y9d{bottom:762.400000pt;}
.y18c{bottom:762.410667pt;}
.y149{bottom:762.917333pt;}
.y4a{bottom:764.000000pt;}
.y103{bottom:764.517333pt;}
.y25{bottom:765.600000pt;}
.y1b2{bottom:767.680000pt;}
.y1e8{bottom:768.656133pt;}
.y124{bottom:775.733333pt;}
.y3{bottom:778.000000pt;}
.y16a{bottom:778.974267pt;}
.y1b1{bottom:780.341333pt;}
.ye3{bottom:780.789333pt;}
.yc0{bottom:782.410667pt;}
.y9c{bottom:782.800000pt;}
.y18b{bottom:782.938667pt;}
.y148{bottom:783.189333pt;}
.y49{bottom:784.000000pt;}
.y102{bottom:784.389333pt;}
.y24{bottom:785.200000pt;}
.y123{bottom:792.800000pt;}
.y1b0{bottom:793.002667pt;}
.y1e7{bottom:796.661467pt;}
.ye2{bottom:801.861333pt;}
.ybf{bottom:802.938667pt;}
.y9b{bottom:803.200000pt;}
.y147{bottom:803.461333pt;}
.y18a{bottom:803.466667pt;}
.y48{bottom:804.000000pt;}
.y101{bottom:804.261333pt;}
.y23{bottom:804.800000pt;}
.y1af{bottom:805.664000pt;}
.y122{bottom:809.866667pt;}
.y2{bottom:822.133333pt;}
.ye1{bottom:822.933333pt;}
.ybe{bottom:823.466667pt;}
.y9a{bottom:823.600000pt;}
.y146{bottom:823.733333pt;}
.y47{bottom:824.000000pt;}
.y100{bottom:824.133333pt;}
.y22{bottom:824.400000pt;}
.y121{bottom:826.933333pt;}
.h9{height:26.945443pt;}
.h2{height:33.769531pt;}
.h10{height:34.730667pt;}
.h1{height:35.546875pt;}
.ha{height:36.229167pt;}
.h11{height:40.757812pt;}
.h5{height:42.656250pt;}
.h6{height:43.022135pt;}
.hc{height:43.413333pt;}
.h4{height:44.960000pt;}
.h7{height:45.286458pt;}
.h8{height:54.343750pt;}
.hf{height:54.365083pt;}
.he{height:54.599750pt;}
.hb{height:59.160625pt;}
.hd{height:59.203292pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x6{left:73.228400pt;}
.xd{left:76.017467pt;}
.xc{left:86.456667pt;}
.x9{left:94.016000pt;}
.x7{left:95.895067pt;}
.x2{left:100.000000pt;}
.x8{left:113.232000pt;}
.xb{left:116.017333pt;}
.x5{left:120.000000pt;}
.x3{left:126.456667pt;}
.xa{left:134.016000pt;}
.xe{left:160.481733pt;}
.x1{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; }
  