
    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_0121cfb22aa5bb61b8de17a7.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_71bfb5a264d1712734d33033.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_f5462e537c400e1c47486955.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bdc65c8e18c30b181a7202a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3b4240892b503c483c6b234c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_25b2471a0ee2268e9a936fd5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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_aacc1fc974c2e52f790f5124.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_61c715ef2678e2dd69346bc8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f976d2c1610a9be3a1f9d0f.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_076a6a1be7c8258925142914.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_74cfb2be7db1faf07609b500.woff')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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:ffc;src:url('chunks/assets/font_e842ac0450797208f1f6f810.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5b5960fe5dbfe4388bd6d0f5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.947266;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:ffe;src:url('chunks/assets/font_c8d7d143e7300afd8265a737.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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.664000px;}
.ls12{letter-spacing:-7.560000px;}
.ls2b{letter-spacing:-5.688000px;}
.ls30{letter-spacing:-5.616000px;}
.ls20{letter-spacing:-5.400000px;}
.ls31{letter-spacing:-5.328000px;}
.ls32{letter-spacing:-2.808000px;}
.ls37{letter-spacing:-1.968000px;}
.ls2d{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls33{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.936000px;}
.ls22{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.036800px;}
.ls23{letter-spacing:1.152000px;}
.ls9{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.440000px;}
.ls2e{letter-spacing:2.160000px;}
.ls2f{letter-spacing:2.448000px;}
.ls16{letter-spacing:2.724000px;}
.ls36{letter-spacing:3.393600px;}
.ls28{letter-spacing:4.392000px;}
.ls10{letter-spacing:4.408800px;}
.ls17{letter-spacing:4.680000px;}
.ls35{letter-spacing:4.752000px;}
.ls18{letter-spacing:5.112000px;}
.ls0{letter-spacing:8.436000px;}
.ls2{letter-spacing:8.460000px;}
.ls26{letter-spacing:9.000000px;}
.ls2a{letter-spacing:10.152000px;}
.ls1{letter-spacing:10.740000px;}
.ls2c{letter-spacing:11.008800px;}
.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;}
}
.ws41{word-spacing:-20.736000px;}
.ws4e{word-spacing:-20.592000px;}
.ws39{word-spacing:-20.232000px;}
.ws37{word-spacing:-18.648000px;}
.ws4c{word-spacing:-18.576000px;}
.ws42{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.288000px;}
.ws4d{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws46{word-spacing:-17.568000px;}
.ws14{word-spacing:-14.162400px;}
.ws18{word-spacing:-13.488000px;}
.ws53{word-spacing:-12.336000px;}
.ws19{word-spacing:-11.856000px;}
.ws16{word-spacing:-10.224000px;}
.ws33{word-spacing:-10.152000px;}
.ws12{word-spacing:-8.496000px;}
.ws7{word-spacing:-8.460000px;}
.ws52{word-spacing:-4.752000px;}
.ws3c{word-spacing:-2.448000px;}
.ws3b{word-spacing:-2.160000px;}
.ws34{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.296000px;}
.ws2f{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.936000px;}
.ws32{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.648000px;}
.ws2b{word-spacing:-0.576000px;}
.ws11{word-spacing:-0.504000px;}
.ws20{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.216000px;}
.ws1e{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.072000px;}
.ws23{word-spacing:0.144000px;}
.ws28{word-spacing:0.216000px;}
.ws21{word-spacing:0.288000px;}
.ws22{word-spacing:0.360000px;}
.ws1c{word-spacing:0.432000px;}
.ws3e{word-spacing:0.504000px;}
.ws2d{word-spacing:0.576000px;}
.ws3{word-spacing:0.600000px;}
.wsc{word-spacing:0.648000px;}
.ws2a{word-spacing:0.720000px;}
.ws27{word-spacing:0.792000px;}
.ws4a{word-spacing:0.864000px;}
.ws49{word-spacing:1.080000px;}
.ws4b{word-spacing:1.584000px;}
.ws6{word-spacing:1.800000px;}
.ws54{word-spacing:1.968000px;}
.ws38{word-spacing:2.088000px;}
.ws26{word-spacing:2.400000px;}
.ws36{word-spacing:2.448000px;}
.ws43{word-spacing:2.808000px;}
.ws25{word-spacing:2.976000px;}
.ws24{word-spacing:3.360000px;}
.ws5{word-spacing:3.720000px;}
.ws10{word-spacing:3.744000px;}
.ws51{word-spacing:3.816000px;}
.ws1a{word-spacing:4.200000px;}
.ws47{word-spacing:4.248000px;}
.ws2e{word-spacing:4.464000px;}
.ws45{word-spacing:4.536000px;}
.ws1d{word-spacing:4.608000px;}
.ws31{word-spacing:4.752000px;}
.ws48{word-spacing:4.824000px;}
.ws30{word-spacing:5.040000px;}
.ws50{word-spacing:5.184000px;}
.ws40{word-spacing:5.328000px;}
.ws29{word-spacing:5.400000px;}
.ws3d{word-spacing:5.616000px;}
.ws35{word-spacing:5.688000px;}
.ws44{word-spacing:7.056000px;}
.ws4{word-spacing:8.400000px;}
.ws3f{word-spacing:8.856000px;}
.wse{word-spacing:8.928000px;}
.ws4f{word-spacing:10.152000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._17{margin-left:-17.784000px;}
._11{margin-left:-15.220800px;}
._e{margin-left:-14.220000px;}
._10{margin-left:-12.477600px;}
._13{margin-left:-9.984000px;}
._18{margin-left:-8.559600px;}
._f{margin-left:-7.447200px;}
._7{margin-left:-6.186000px;}
._9{margin-left:-4.854000px;}
._3{margin-left:-3.510000px;}
._0{margin-left:-1.722000px;}
._6{width:1.908000px;}
._4{width:3.072000px;}
._1{width:4.188000px;}
._a{width:5.395200px;}
._c{width:6.438000px;}
._5{width:8.088000px;}
._2{width:9.336000px;}
._b{width:11.275200px;}
._8{width:12.600000px;}
._14{width:14.011200px;}
._15{width:15.481200px;}
._16{width:18.280800px;}
._12{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y46{bottom:117.000000px;}
.yae{bottom:117.012000px;}
.yd3{bottom:118.008000px;}
.y199{bottom:118.266000px;}
.y176{bottom:118.542000px;}
.y20{bottom:119.770350px;}
.yf7{bottom:120.012000px;}
.y118{bottom:121.080000px;}
.y201{bottom:121.416300px;}
.y13b{bottom:121.998000px;}
.y15a{bottom:122.124000px;}
.y1db{bottom:122.400000px;}
.y8c{bottom:123.558000px;}
.y45{bottom:132.000000px;}
.y68{bottom:136.207500px;}
.y200{bottom:136.416300px;}
.yad{bottom:139.512000px;}
.yd2{bottom:139.752000px;}
.y198{bottom:140.766000px;}
.y175{bottom:141.348000px;}
.y1f{bottom:141.964350px;}
.yf6{bottom:142.656000px;}
.y117{bottom:143.130000px;}
.y13a{bottom:144.498000px;}
.y159{bottom:144.768000px;}
.y1da{bottom:145.350000px;}
.y8b{bottom:146.814000px;}
.y44{bottom:151.207500px;}
.y1ff{bottom:151.416300px;}
.yd1{bottom:161.496000px;}
.yac{bottom:162.012000px;}
.y174{bottom:164.154000px;}
.y1e{bottom:164.158350px;}
.yf5{bottom:165.300000px;}
.y116{bottom:165.324000px;}
.y1fe{bottom:166.416300px;}
.y139{bottom:167.142000px;}
.y158{bottom:167.412000px;}
.y43{bottom:169.500000px;}
.y197{bottom:175.272000px;}
.y67{bottom:176.274000px;}
.y1ba{bottom:177.108000px;}
.y1d9{bottom:180.000000px;}
.y1fd{bottom:181.416300px;}
.y8a{bottom:182.058000px;}
.yd0{bottom:183.240000px;}
.yab{bottom:184.512000px;}
.y1d{bottom:186.352350px;}
.y173{bottom:186.960000px;}
.y115{bottom:187.518000px;}
.yf4{bottom:187.944000px;}
.y42{bottom:188.707500px;}
.y138{bottom:189.786000px;}
.y157{bottom:190.056000px;}
.y1fc{bottom:196.416300px;}
.y196{bottom:197.772000px;}
.y66{bottom:198.630000px;}
.y1b9{bottom:199.608000px;}
.y1d8{bottom:202.950000px;}
.ycf{bottom:204.984000px;}
.y89{bottom:205.314000px;}
.y41{bottom:207.000000px;}
.yaa{bottom:207.012000px;}
.y1c{bottom:208.546350px;}
.y114{bottom:209.712000px;}
.y172{bottom:209.766000px;}
.yf3{bottom:210.588000px;}
.y1fb{bottom:211.416300px;}
.y137{bottom:212.430000px;}
.y156{bottom:212.700000px;}
.y195{bottom:220.272000px;}
.y65{bottom:220.986000px;}
.y1b8{bottom:221.352000px;}
.y40{bottom:222.000000px;}
.y1d7{bottom:225.900000px;}
.y1fa{bottom:226.416300px;}
.yce{bottom:226.728000px;}
.y88{bottom:228.570000px;}
.ya9{bottom:229.512000px;}
.y1b{bottom:230.740350px;}
.y113{bottom:231.906000px;}
.y171{bottom:232.572000px;}
.yf2{bottom:233.232000px;}
.y155{bottom:235.344000px;}
.y3f{bottom:241.207500px;}
.y194{bottom:242.772000px;}
.y1b7{bottom:243.096000px;}
.y64{bottom:243.342000px;}
.y136{bottom:246.774000px;}
.y1f9{bottom:247.800300px;}
.y1d6{bottom:248.850000px;}
.y87{bottom:251.826000px;}
.ya8{bottom:252.012000px;}
.y1a{bottom:252.934350px;}
.y112{bottom:254.100000px;}
.y170{bottom:255.378000px;}
.yf1{bottom:255.876000px;}
.y154{bottom:257.988000px;}
.y3e{bottom:259.500000px;}
.ycd{bottom:260.334000px;}
.y1b6{bottom:264.840000px;}
.y193{bottom:265.272000px;}
.y63{bottom:265.698000px;}
.y135{bottom:269.418000px;}
.y1d5{bottom:271.800000px;}
.y3d{bottom:274.500000px;}
.ya7{bottom:274.512000px;}
.y86{bottom:275.082000px;}
.y19{bottom:275.128350px;}
.y111{bottom:276.294000px;}
.y16f{bottom:278.184000px;}
.yf0{bottom:278.520000px;}
.ycc{bottom:282.078000px;}
.y192{bottom:287.772000px;}
.y3c{bottom:289.500000px;}
.y134{bottom:292.062000px;}
.y1f8{bottom:292.968000px;}
.y1d4{bottom:294.750000px;}
.ya6{bottom:297.012000px;}
.y18{bottom:297.322350px;}
.y85{bottom:298.338000px;}
.y110{bottom:298.488000px;}
.y62{bottom:299.898000px;}
.y16e{bottom:300.990000px;}
.yef{bottom:301.164000px;}
.y153{bottom:303.294000px;}
.ycb{bottom:303.822000px;}
.y1b5{bottom:308.346000px;}
.y3b{bottom:308.707500px;}
.y191{bottom:310.272000px;}
.y133{bottom:314.706000px;}
.y1f7{bottom:315.612000px;}
.y1d3{bottom:317.700000px;}
.ya5{bottom:319.512000px;}
.y17{bottom:319.516350px;}
.y10f{bottom:320.682000px;}
.y84{bottom:321.594000px;}
.y61{bottom:322.254000px;}
.yee{bottom:323.808000px;}
.yca{bottom:325.566000px;}
.y152{bottom:325.938000px;}
.y1b4{bottom:330.090000px;}
.y190{bottom:332.772000px;}
.y16d{bottom:335.334000px;}
.y132{bottom:337.350000px;}
.y1f6{bottom:338.256000px;}
.y1d2{bottom:340.650000px;}
.y16{bottom:341.710350px;}
.ya4{bottom:342.012000px;}
.y10e{bottom:342.876000px;}
.y60{bottom:344.610000px;}
.y83{bottom:344.850000px;}
.yed{bottom:346.452000px;}
.yc9{bottom:347.310000px;}
.y3a{bottom:347.400000px;}
.y151{bottom:348.582000px;}
.y1b3{bottom:351.834000px;}
.y18f{bottom:355.272000px;}
.y16c{bottom:358.140000px;}
.y131{bottom:359.994000px;}
.y1f5{bottom:360.900000px;}
.y1d1{bottom:363.600000px;}
.y15{bottom:363.904350px;}
.ya3{bottom:364.512000px;}
.y10d{bottom:365.070000px;}
.y5f{bottom:366.966000px;}
.y82{bottom:368.106000px;}
.yc8{bottom:369.054000px;}
.yec{bottom:369.096000px;}
.y39{bottom:369.900000px;}
.y150{bottom:371.226000px;}
.y1b2{bottom:373.578000px;}
.y18e{bottom:377.772000px;}
.y16b{bottom:380.946000px;}
.y130{bottom:382.638000px;}
.y1f4{bottom:383.544000px;}
.y14{bottom:386.098350px;}
.y10c{bottom:387.264000px;}
.y5e{bottom:389.322000px;}
.yc7{bottom:390.798000px;}
.y81{bottom:391.362000px;}
.yeb{bottom:391.740000px;}
.y38{bottom:392.400000px;}
.y14f{bottom:393.870000px;}
.y1b1{bottom:395.322000px;}
.y1d0{bottom:398.250000px;}
.ya2{bottom:398.856000px;}
.y18d{bottom:400.272000px;}
.y16a{bottom:403.752000px;}
.y12f{bottom:405.282000px;}
.y1f3{bottom:406.188000px;}
.y13{bottom:408.292350px;}
.y10b{bottom:409.458000px;}
.y5d{bottom:411.678000px;}
.yc6{bottom:412.542000px;}
.yea{bottom:414.384000px;}
.y80{bottom:414.618000px;}
.y37{bottom:414.900000px;}
.y14e{bottom:416.514000px;}
.y1b0{bottom:417.066000px;}
.y1cf{bottom:421.200000px;}
.ya1{bottom:421.356000px;}
.y18c{bottom:422.772000px;}
.y169{bottom:426.558000px;}
.y12e{bottom:427.926000px;}
.y1f2{bottom:428.832000px;}
.y12{bottom:430.486350px;}
.y10a{bottom:431.652000px;}
.y5c{bottom:434.034000px;}
.yc5{bottom:434.286000px;}
.ye9{bottom:437.028000px;}
.y36{bottom:437.400000px;}
.y7f{bottom:437.874000px;}
.y1af{bottom:438.810000px;}
.y14d{bottom:439.158000px;}
.ya0{bottom:443.856000px;}
.y168{bottom:449.364000px;}
.y12d{bottom:450.570000px;}
.y1f1{bottom:451.476000px;}
.y11{bottom:452.680350px;}
.y109{bottom:453.846000px;}
.y1ce{bottom:455.850000px;}
.yc4{bottom:456.030000px;}
.y5b{bottom:456.390000px;}
.ye8{bottom:459.672000px;}
.y35{bottom:459.900000px;}
.y1ae{bottom:460.554000px;}
.y7e{bottom:461.130000px;}
.y14c{bottom:461.802000px;}
.y9f{bottom:466.356000px;}
.y18b{bottom:467.772000px;}
.y167{bottom:472.170000px;}
.y1f0{bottom:474.120000px;}
.y10{bottom:474.874350px;}
.yc3{bottom:477.774000px;}
.y5a{bottom:478.746000px;}
.y1cd{bottom:478.800000px;}
.y1ad{bottom:482.298000px;}
.ye7{bottom:482.316000px;}
.y34{bottom:482.400000px;}
.y7d{bottom:484.386000px;}
.y14b{bottom:484.446000px;}
.y12c{bottom:484.914000px;}
.y9e{bottom:488.856000px;}
.y18a{bottom:490.272000px;}
.y166{bottom:494.976000px;}
.y1ef{bottom:496.764000px;}
.yf{bottom:497.068350px;}
.y108{bottom:498.252000px;}
.yc2{bottom:499.518000px;}
.y59{bottom:501.102000px;}
.y1cc{bottom:501.750000px;}
.y1ac{bottom:504.042000px;}
.y33{bottom:504.900000px;}
.ye6{bottom:504.960000px;}
.y14a{bottom:507.090000px;}
.y12b{bottom:507.558000px;}
.y7c{bottom:507.642000px;}
.y9d{bottom:511.356000px;}
.y189{bottom:512.772000px;}
.y165{bottom:517.782000px;}
.ye{bottom:519.262350px;}
.y1ee{bottom:519.408000px;}
.y107{bottom:520.446000px;}
.yc1{bottom:521.262000px;}
.y58{bottom:523.458000px;}
.y1cb{bottom:524.700000px;}
.ye5{bottom:527.604000px;}
.y149{bottom:529.734000px;}
.y12a{bottom:530.202000px;}
.y7b{bottom:530.898000px;}
.y9c{bottom:533.856000px;}
.y188{bottom:535.272000px;}
.y1ab{bottom:536.298000px;}
.y164{bottom:540.588000px;}
.yd{bottom:541.456350px;}
.y1ed{bottom:542.052000px;}
.y106{bottom:542.640000px;}
.yc0{bottom:543.006000px;}
.y57{bottom:545.814000px;}
.y1ca{bottom:547.650000px;}
.y32{bottom:549.930000px;}
.y148{bottom:552.378000px;}
.y129{bottom:552.846000px;}
.y7a{bottom:554.154000px;}
.y9b{bottom:556.356000px;}
.y187{bottom:557.772000px;}
.y1aa{bottom:558.042000px;}
.ye4{bottom:561.804000px;}
.y163{bottom:563.394000px;}
.yc{bottom:563.650350px;}
.ybf{bottom:564.606000px;}
.y1ec{bottom:564.696000px;}
.y105{bottom:564.834000px;}
.y56{bottom:568.170000px;}
.y1c9{bottom:570.600000px;}
.y31{bottom:572.124000px;}
.y147{bottom:575.022000px;}
.y128{bottom:575.490000px;}
.y79{bottom:577.410000px;}
.y9a{bottom:578.856000px;}
.y1a9{bottom:579.786000px;}
.y186{bottom:580.272000px;}
.ye3{bottom:584.610000px;}
.yb{bottom:585.850350px;}
.y162{bottom:586.200000px;}
.ybe{bottom:586.206000px;}
.y104{bottom:587.028000px;}
.y1eb{bottom:587.340000px;}
.y55{bottom:590.526000px;}
.y1c8{bottom:593.550000px;}
.y30{bottom:594.318000px;}
.y146{bottom:597.666000px;}
.y78{bottom:600.666000px;}
.y99{bottom:601.356000px;}
.y1a8{bottom:601.530000px;}
.y185{bottom:602.772000px;}
.ye2{bottom:607.416000px;}
.ybd{bottom:607.806000px;}
.y161{bottom:609.006000px;}
.y103{bottom:609.222000px;}
.y127{bottom:609.834000px;}
.y1ea{bottom:609.984000px;}
.y54{bottom:612.882000px;}
.y1c7{bottom:616.500000px;}
.y2f{bottom:616.512000px;}
.y145{bottom:620.310000px;}
.y1a7{bottom:623.274000px;}
.y98{bottom:623.856000px;}
.y77{bottom:623.922000px;}
.y184{bottom:625.272000px;}
.ybc{bottom:629.406000px;}
.ye1{bottom:630.222000px;}
.ya{bottom:630.850350px;}
.y102{bottom:631.416000px;}
.y160{bottom:631.812000px;}
.y126{bottom:632.478000px;}
.y1e9{bottom:632.628000px;}
.y53{bottom:635.238000px;}
.y2e{bottom:638.706000px;}
.y1c6{bottom:639.450000px;}
.y144{bottom:642.954000px;}
.y1a6{bottom:645.018000px;}
.y97{bottom:646.356000px;}
.y210{bottom:646.872000px;}
.y76{bottom:647.178000px;}
.ybb{bottom:651.006000px;}
.ye0{bottom:653.028000px;}
.y101{bottom:653.610000px;}
.y15f{bottom:654.618000px;}
.y125{bottom:655.122000px;}
.y1e8{bottom:655.272000px;}
.y52{bottom:657.594000px;}
.y9{bottom:658.104300px;}
.y183{bottom:658.878000px;}
.y2d{bottom:660.948000px;}
.y1c5{bottom:662.400000px;}
.y143{bottom:665.598000px;}
.y20f{bottom:665.622000px;}
.y1a5{bottom:666.762000px;}
.y96{bottom:668.856000px;}
.y75{bottom:670.434000px;}
.yba{bottom:672.606000px;}
.y100{bottom:675.804000px;}
.ydf{bottom:675.834000px;}
.y8{bottom:676.854300px;}
.y15e{bottom:677.424000px;}
.y124{bottom:677.766000px;}
.y1e7{bottom:677.916000px;}
.y51{bottom:679.938000px;}
.y182{bottom:681.234000px;}
.y2c{bottom:683.142000px;}
.y20e{bottom:684.372000px;}
.y142{bottom:688.242000px;}
.y1a4{bottom:688.506000px;}
.y95{bottom:691.356000px;}
.y74{bottom:693.690000px;}
.yb9{bottom:694.206000px;}
.y7{bottom:695.604300px;}
.yff{bottom:697.998000px;}
.yde{bottom:698.640000px;}
.y15d{bottom:700.230000px;}
.y123{bottom:700.410000px;}
.y1e6{bottom:700.560000px;}
.y50{bottom:702.294000px;}
.y20d{bottom:703.122000px;}
.y181{bottom:703.590000px;}
.y2b{bottom:705.336000px;}
.y1c4{bottom:708.300000px;}
.y1a3{bottom:710.250000px;}
.y141{bottom:710.886000px;}
.y94{bottom:713.856000px;}
.yb8{bottom:715.806000px;}
.y73{bottom:716.946000px;}
.yfe{bottom:720.192000px;}
.ydd{bottom:721.446000px;}
.y15c{bottom:723.036000px;}
.y122{bottom:723.054000px;}
.y1e5{bottom:723.204000px;}
.y4f{bottom:724.650000px;}
.y180{bottom:725.946000px;}
.y2a{bottom:727.530000px;}
.y1c3{bottom:731.250000px;}
.y20c{bottom:733.122000px;}
.y140{bottom:733.530000px;}
.y93{bottom:736.356000px;}
.y6{bottom:736.854300px;}
.yb7{bottom:737.406000px;}
.y72{bottom:740.202000px;}
.yfd{bottom:741.936000px;}
.ydc{bottom:744.252000px;}
.y121{bottom:745.698000px;}
.y15b{bottom:745.842000px;}
.y1e4{bottom:745.848000px;}
.y4e{bottom:747.000000px;}
.y17f{bottom:748.302000px;}
.y29{bottom:749.724000px;}
.y1a2{bottom:753.756000px;}
.y1c2{bottom:754.200000px;}
.y13f{bottom:756.174000px;}
.y92{bottom:758.856000px;}
.yb6{bottom:759.006000px;}
.y71{bottom:763.458000px;}
.yfc{bottom:763.680000px;}
.ydb{bottom:767.058000px;}
.y120{bottom:768.342000px;}
.y1e3{bottom:768.492000px;}
.y20b{bottom:770.628000px;}
.y17e{bottom:770.658000px;}
.y28{bottom:771.918000px;}
.y1a1{bottom:775.542000px;}
.y1c1{bottom:777.150000px;}
.y5{bottom:777.354300px;}
.yb5{bottom:780.606000px;}
.y91{bottom:781.356000px;}
.yfb{bottom:785.424000px;}
.y20a{bottom:785.628000px;}
.y70{bottom:786.714000px;}
.yda{bottom:789.864000px;}
.y11f{bottom:790.986000px;}
.y1e2{bottom:791.136000px;}
.y4d{bottom:792.000000px;}
.y17d{bottom:793.014000px;}
.y27{bottom:794.112000px;}
.y4{bottom:796.104300px;}
.y1a0{bottom:797.286000px;}
.y1c0{bottom:800.100000px;}
.y209{bottom:800.628000px;}
.y13e{bottom:801.480000px;}
.yb4{bottom:802.206000px;}
.y90{bottom:803.856000px;}
.yfa{bottom:807.168000px;}
.y6f{bottom:809.970000px;}
.yd9{bottom:812.670000px;}
.y11e{bottom:813.630000px;}
.y1e1{bottom:813.780000px;}
.y4c{bottom:814.500000px;}
.y17c{bottom:815.370000px;}
.y208{bottom:815.628000px;}
.y26{bottom:816.306000px;}
.y19f{bottom:819.030000px;}
.y1bf{bottom:823.050000px;}
.yb3{bottom:823.806000px;}
.y13d{bottom:824.124000px;}
.y8f{bottom:826.356000px;}
.yf9{bottom:828.912000px;}
.y207{bottom:830.628000px;}
.y6e{bottom:833.226000px;}
.yd8{bottom:835.476000px;}
.y11d{bottom:836.274000px;}
.y1e0{bottom:836.424000px;}
.y4b{bottom:837.000000px;}
.y17b{bottom:837.726000px;}
.y25{bottom:838.524000px;}
.y19e{bottom:840.774000px;}
.yb2{bottom:845.406000px;}
.y206{bottom:845.628000px;}
.y1be{bottom:846.000000px;}
.y13c{bottom:846.768000px;}
.yf8{bottom:850.656000px;}
.y6d{bottom:856.482000px;}
.yd7{bottom:858.282000px;}
.y11c{bottom:858.918000px;}
.y1df{bottom:859.068000px;}
.y3{bottom:859.500000px;}
.y17a{bottom:860.082000px;}
.y8e{bottom:860.106000px;}
.y205{bottom:860.628000px;}
.y24{bottom:860.718000px;}
.y19d{bottom:862.518000px;}
.y204{bottom:875.628000px;}
.y6c{bottom:879.738000px;}
.y1bd{bottom:880.650000px;}
.yd6{bottom:881.088000px;}
.y11b{bottom:881.562000px;}
.y1de{bottom:881.712000px;}
.y4a{bottom:882.000000px;}
.y179{bottom:882.438000px;}
.y8d{bottom:882.606000px;}
.y23{bottom:882.912000px;}
.y19c{bottom:884.262000px;}
.yb1{bottom:884.700000px;}
.y2{bottom:889.500000px;}
.y203{bottom:890.628000px;}
.y6b{bottom:902.994000px;}
.y1bc{bottom:903.600000px;}
.yd5{bottom:903.894000px;}
.y11a{bottom:904.206000px;}
.y1dd{bottom:904.356000px;}
.y49{bottom:904.500000px;}
.y178{bottom:904.794000px;}
.y22{bottom:905.106000px;}
.y202{bottom:905.628000px;}
.y19b{bottom:906.006000px;}
.yb0{bottom:906.300000px;}
.y1dc{bottom:909.000000px;}
.y6a{bottom:926.250000px;}
.y69{bottom:926.284500px;}
.y1bb{bottom:926.550000px;}
.yd4{bottom:926.700000px;}
.y119{bottom:926.850000px;}
.y48{bottom:927.000000px;}
.y177{bottom:927.150000px;}
.y21{bottom:927.300000px;}
.y47{bottom:927.655500px;}
.y19a{bottom:927.750000px;}
.yaf{bottom:927.900000px;}
.h10{height:23.927813px;}
.hc{height:30.313623px;}
.h13{height:39.072000px;}
.h8{height:39.990234px;}
.h6{height:40.757812px;}
.h4{height:41.396484px;}
.h11{height:47.988281px;}
.he{height:48.840000px;}
.hd{height:49.675781px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h12{height:51.222656px;}
.h7{height:61.136719px;}
.hf{height:61.184719px;}
.ha{height:66.363703px;}
.h9{height:66.459703px;}
.hb{height:66.555703px;}
.h2{height:79.980469px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.381950px;}
.xa{left:97.249950px;}
.x7{left:112.500000px;}
.x8{left:127.386000px;}
.xb{left:135.531450px;}
.x9{left:142.251150px;}
.x4{left:331.121850px;}
.x3{left:440.036850px;}
.x2{left:492.551850px;}
.x6{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.034667pt;}
.ls12{letter-spacing:-6.720000pt;}
.ls2b{letter-spacing:-5.056000pt;}
.ls30{letter-spacing:-4.992000pt;}
.ls20{letter-spacing:-4.800000pt;}
.ls31{letter-spacing:-4.736000pt;}
.ls32{letter-spacing:-2.496000pt;}
.ls37{letter-spacing:-1.749333pt;}
.ls2d{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls33{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.832000pt;}
.ls22{letter-spacing:0.896000pt;}
.ls34{letter-spacing:0.921600pt;}
.ls23{letter-spacing:1.024000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:2.176000pt;}
.ls16{letter-spacing:2.421333pt;}
.ls36{letter-spacing:3.016533pt;}
.ls28{letter-spacing:3.904000pt;}
.ls10{letter-spacing:3.918933pt;}
.ls17{letter-spacing:4.160000pt;}
.ls35{letter-spacing:4.224000pt;}
.ls18{letter-spacing:4.544000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls26{letter-spacing:8.000000pt;}
.ls2a{letter-spacing:9.024000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls2c{letter-spacing:9.785600pt;}
.ws41{word-spacing:-18.432000pt;}
.ws4e{word-spacing:-18.304000pt;}
.ws39{word-spacing:-17.984000pt;}
.ws37{word-spacing:-16.576000pt;}
.ws4c{word-spacing:-16.512000pt;}
.ws42{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws4d{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws46{word-spacing:-15.616000pt;}
.ws14{word-spacing:-12.588800pt;}
.ws18{word-spacing:-11.989333pt;}
.ws53{word-spacing:-10.965333pt;}
.ws19{word-spacing:-10.538667pt;}
.ws16{word-spacing:-9.088000pt;}
.ws33{word-spacing:-9.024000pt;}
.ws12{word-spacing:-7.552000pt;}
.ws7{word-spacing:-7.520000pt;}
.ws52{word-spacing:-4.224000pt;}
.ws3c{word-spacing:-2.176000pt;}
.ws3b{word-spacing:-1.920000pt;}
.ws34{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.152000pt;}
.ws2f{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.832000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws2b{word-spacing:-0.512000pt;}
.ws11{word-spacing:-0.448000pt;}
.ws20{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.064000pt;}
.ws23{word-spacing:0.128000pt;}
.ws28{word-spacing:0.192000pt;}
.ws21{word-spacing:0.256000pt;}
.ws22{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.448000pt;}
.ws2d{word-spacing:0.512000pt;}
.ws3{word-spacing:0.533333pt;}
.wsc{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.640000pt;}
.ws27{word-spacing:0.704000pt;}
.ws4a{word-spacing:0.768000pt;}
.ws49{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.408000pt;}
.ws6{word-spacing:1.600000pt;}
.ws54{word-spacing:1.749333pt;}
.ws38{word-spacing:1.856000pt;}
.ws26{word-spacing:2.133333pt;}
.ws36{word-spacing:2.176000pt;}
.ws43{word-spacing:2.496000pt;}
.ws25{word-spacing:2.645333pt;}
.ws24{word-spacing:2.986667pt;}
.ws5{word-spacing:3.306667pt;}
.ws10{word-spacing:3.328000pt;}
.ws51{word-spacing:3.392000pt;}
.ws1a{word-spacing:3.733333pt;}
.ws47{word-spacing:3.776000pt;}
.ws2e{word-spacing:3.968000pt;}
.ws45{word-spacing:4.032000pt;}
.ws1d{word-spacing:4.096000pt;}
.ws31{word-spacing:4.224000pt;}
.ws48{word-spacing:4.288000pt;}
.ws30{word-spacing:4.480000pt;}
.ws50{word-spacing:4.608000pt;}
.ws40{word-spacing:4.736000pt;}
.ws29{word-spacing:4.800000pt;}
.ws3d{word-spacing:4.992000pt;}
.ws35{word-spacing:5.056000pt;}
.ws44{word-spacing:6.272000pt;}
.ws4{word-spacing:7.466667pt;}
.ws3f{word-spacing:7.872000pt;}
.wse{word-spacing:7.936000pt;}
.ws4f{word-spacing:9.024000pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._17{margin-left:-15.808000pt;}
._11{margin-left:-13.529600pt;}
._e{margin-left:-12.640000pt;}
._10{margin-left:-11.091200pt;}
._13{margin-left:-8.874667pt;}
._18{margin-left:-7.608533pt;}
._f{margin-left:-6.619733pt;}
._7{margin-left:-5.498667pt;}
._9{margin-left:-4.314667pt;}
._3{margin-left:-3.120000pt;}
._0{margin-left:-1.530667pt;}
._6{width:1.696000pt;}
._4{width:2.730667pt;}
._1{width:3.722667pt;}
._a{width:4.795733pt;}
._c{width:5.722667pt;}
._5{width:7.189333pt;}
._2{width:8.298667pt;}
._b{width:10.022400pt;}
._8{width:11.200000pt;}
._14{width:12.454400pt;}
._15{width:13.761067pt;}
._16{width:16.249600pt;}
._12{width:28.129867pt;}
.fs5{font-size:31.733333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y46{bottom:104.000000pt;}
.yae{bottom:104.010667pt;}
.yd3{bottom:104.896000pt;}
.y199{bottom:105.125333pt;}
.y176{bottom:105.370667pt;}
.y20{bottom:106.462533pt;}
.yf7{bottom:106.677333pt;}
.y118{bottom:107.626667pt;}
.y201{bottom:107.925600pt;}
.y13b{bottom:108.442667pt;}
.y15a{bottom:108.554667pt;}
.y1db{bottom:108.800000pt;}
.y8c{bottom:109.829333pt;}
.y45{bottom:117.333333pt;}
.y68{bottom:121.073333pt;}
.y200{bottom:121.258933pt;}
.yad{bottom:124.010667pt;}
.yd2{bottom:124.224000pt;}
.y198{bottom:125.125333pt;}
.y175{bottom:125.642667pt;}
.y1f{bottom:126.190533pt;}
.yf6{bottom:126.805333pt;}
.y117{bottom:127.226667pt;}
.y13a{bottom:128.442667pt;}
.y159{bottom:128.682667pt;}
.y1da{bottom:129.200000pt;}
.y8b{bottom:130.501333pt;}
.y44{bottom:134.406667pt;}
.y1ff{bottom:134.592267pt;}
.yd1{bottom:143.552000pt;}
.yac{bottom:144.010667pt;}
.y174{bottom:145.914667pt;}
.y1e{bottom:145.918533pt;}
.yf5{bottom:146.933333pt;}
.y116{bottom:146.954667pt;}
.y1fe{bottom:147.925600pt;}
.y139{bottom:148.570667pt;}
.y158{bottom:148.810667pt;}
.y43{bottom:150.666667pt;}
.y197{bottom:155.797333pt;}
.y67{bottom:156.688000pt;}
.y1ba{bottom:157.429333pt;}
.y1d9{bottom:160.000000pt;}
.y1fd{bottom:161.258933pt;}
.y8a{bottom:161.829333pt;}
.yd0{bottom:162.880000pt;}
.yab{bottom:164.010667pt;}
.y1d{bottom:165.646533pt;}
.y173{bottom:166.186667pt;}
.y115{bottom:166.682667pt;}
.yf4{bottom:167.061333pt;}
.y42{bottom:167.740000pt;}
.y138{bottom:168.698667pt;}
.y157{bottom:168.938667pt;}
.y1fc{bottom:174.592267pt;}
.y196{bottom:175.797333pt;}
.y66{bottom:176.560000pt;}
.y1b9{bottom:177.429333pt;}
.y1d8{bottom:180.400000pt;}
.ycf{bottom:182.208000pt;}
.y89{bottom:182.501333pt;}
.y41{bottom:184.000000pt;}
.yaa{bottom:184.010667pt;}
.y1c{bottom:185.374533pt;}
.y114{bottom:186.410667pt;}
.y172{bottom:186.458667pt;}
.yf3{bottom:187.189333pt;}
.y1fb{bottom:187.925600pt;}
.y137{bottom:188.826667pt;}
.y156{bottom:189.066667pt;}
.y195{bottom:195.797333pt;}
.y65{bottom:196.432000pt;}
.y1b8{bottom:196.757333pt;}
.y40{bottom:197.333333pt;}
.y1d7{bottom:200.800000pt;}
.y1fa{bottom:201.258933pt;}
.yce{bottom:201.536000pt;}
.y88{bottom:203.173333pt;}
.ya9{bottom:204.010667pt;}
.y1b{bottom:205.102533pt;}
.y113{bottom:206.138667pt;}
.y171{bottom:206.730667pt;}
.yf2{bottom:207.317333pt;}
.y155{bottom:209.194667pt;}
.y3f{bottom:214.406667pt;}
.y194{bottom:215.797333pt;}
.y1b7{bottom:216.085333pt;}
.y64{bottom:216.304000pt;}
.y136{bottom:219.354667pt;}
.y1f9{bottom:220.266933pt;}
.y1d6{bottom:221.200000pt;}
.y87{bottom:223.845333pt;}
.ya8{bottom:224.010667pt;}
.y1a{bottom:224.830533pt;}
.y112{bottom:225.866667pt;}
.y170{bottom:227.002667pt;}
.yf1{bottom:227.445333pt;}
.y154{bottom:229.322667pt;}
.y3e{bottom:230.666667pt;}
.ycd{bottom:231.408000pt;}
.y1b6{bottom:235.413333pt;}
.y193{bottom:235.797333pt;}
.y63{bottom:236.176000pt;}
.y135{bottom:239.482667pt;}
.y1d5{bottom:241.600000pt;}
.y3d{bottom:244.000000pt;}
.ya7{bottom:244.010667pt;}
.y86{bottom:244.517333pt;}
.y19{bottom:244.558533pt;}
.y111{bottom:245.594667pt;}
.y16f{bottom:247.274667pt;}
.yf0{bottom:247.573333pt;}
.ycc{bottom:250.736000pt;}
.y192{bottom:255.797333pt;}
.y3c{bottom:257.333333pt;}
.y134{bottom:259.610667pt;}
.y1f8{bottom:260.416000pt;}
.y1d4{bottom:262.000000pt;}
.ya6{bottom:264.010667pt;}
.y18{bottom:264.286533pt;}
.y85{bottom:265.189333pt;}
.y110{bottom:265.322667pt;}
.y62{bottom:266.576000pt;}
.y16e{bottom:267.546667pt;}
.yef{bottom:267.701333pt;}
.y153{bottom:269.594667pt;}
.ycb{bottom:270.064000pt;}
.y1b5{bottom:274.085333pt;}
.y3b{bottom:274.406667pt;}
.y191{bottom:275.797333pt;}
.y133{bottom:279.738667pt;}
.y1f7{bottom:280.544000pt;}
.y1d3{bottom:282.400000pt;}
.ya5{bottom:284.010667pt;}
.y17{bottom:284.014533pt;}
.y10f{bottom:285.050667pt;}
.y84{bottom:285.861333pt;}
.y61{bottom:286.448000pt;}
.yee{bottom:287.829333pt;}
.yca{bottom:289.392000pt;}
.y152{bottom:289.722667pt;}
.y1b4{bottom:293.413333pt;}
.y190{bottom:295.797333pt;}
.y16d{bottom:298.074667pt;}
.y132{bottom:299.866667pt;}
.y1f6{bottom:300.672000pt;}
.y1d2{bottom:302.800000pt;}
.y16{bottom:303.742533pt;}
.ya4{bottom:304.010667pt;}
.y10e{bottom:304.778667pt;}
.y60{bottom:306.320000pt;}
.y83{bottom:306.533333pt;}
.yed{bottom:307.957333pt;}
.yc9{bottom:308.720000pt;}
.y3a{bottom:308.800000pt;}
.y151{bottom:309.850667pt;}
.y1b3{bottom:312.741333pt;}
.y18f{bottom:315.797333pt;}
.y16c{bottom:318.346667pt;}
.y131{bottom:319.994667pt;}
.y1f5{bottom:320.800000pt;}
.y1d1{bottom:323.200000pt;}
.y15{bottom:323.470533pt;}
.ya3{bottom:324.010667pt;}
.y10d{bottom:324.506667pt;}
.y5f{bottom:326.192000pt;}
.y82{bottom:327.205333pt;}
.yc8{bottom:328.048000pt;}
.yec{bottom:328.085333pt;}
.y39{bottom:328.800000pt;}
.y150{bottom:329.978667pt;}
.y1b2{bottom:332.069333pt;}
.y18e{bottom:335.797333pt;}
.y16b{bottom:338.618667pt;}
.y130{bottom:340.122667pt;}
.y1f4{bottom:340.928000pt;}
.y14{bottom:343.198533pt;}
.y10c{bottom:344.234667pt;}
.y5e{bottom:346.064000pt;}
.yc7{bottom:347.376000pt;}
.y81{bottom:347.877333pt;}
.yeb{bottom:348.213333pt;}
.y38{bottom:348.800000pt;}
.y14f{bottom:350.106667pt;}
.y1b1{bottom:351.397333pt;}
.y1d0{bottom:354.000000pt;}
.ya2{bottom:354.538667pt;}
.y18d{bottom:355.797333pt;}
.y16a{bottom:358.890667pt;}
.y12f{bottom:360.250667pt;}
.y1f3{bottom:361.056000pt;}
.y13{bottom:362.926533pt;}
.y10b{bottom:363.962667pt;}
.y5d{bottom:365.936000pt;}
.yc6{bottom:366.704000pt;}
.yea{bottom:368.341333pt;}
.y80{bottom:368.549333pt;}
.y37{bottom:368.800000pt;}
.y14e{bottom:370.234667pt;}
.y1b0{bottom:370.725333pt;}
.y1cf{bottom:374.400000pt;}
.ya1{bottom:374.538667pt;}
.y18c{bottom:375.797333pt;}
.y169{bottom:379.162667pt;}
.y12e{bottom:380.378667pt;}
.y1f2{bottom:381.184000pt;}
.y12{bottom:382.654533pt;}
.y10a{bottom:383.690667pt;}
.y5c{bottom:385.808000pt;}
.yc5{bottom:386.032000pt;}
.ye9{bottom:388.469333pt;}
.y36{bottom:388.800000pt;}
.y7f{bottom:389.221333pt;}
.y1af{bottom:390.053333pt;}
.y14d{bottom:390.362667pt;}
.ya0{bottom:394.538667pt;}
.y168{bottom:399.434667pt;}
.y12d{bottom:400.506667pt;}
.y1f1{bottom:401.312000pt;}
.y11{bottom:402.382533pt;}
.y109{bottom:403.418667pt;}
.y1ce{bottom:405.200000pt;}
.yc4{bottom:405.360000pt;}
.y5b{bottom:405.680000pt;}
.ye8{bottom:408.597333pt;}
.y35{bottom:408.800000pt;}
.y1ae{bottom:409.381333pt;}
.y7e{bottom:409.893333pt;}
.y14c{bottom:410.490667pt;}
.y9f{bottom:414.538667pt;}
.y18b{bottom:415.797333pt;}
.y167{bottom:419.706667pt;}
.y1f0{bottom:421.440000pt;}
.y10{bottom:422.110533pt;}
.yc3{bottom:424.688000pt;}
.y5a{bottom:425.552000pt;}
.y1cd{bottom:425.600000pt;}
.y1ad{bottom:428.709333pt;}
.ye7{bottom:428.725333pt;}
.y34{bottom:428.800000pt;}
.y7d{bottom:430.565333pt;}
.y14b{bottom:430.618667pt;}
.y12c{bottom:431.034667pt;}
.y9e{bottom:434.538667pt;}
.y18a{bottom:435.797333pt;}
.y166{bottom:439.978667pt;}
.y1ef{bottom:441.568000pt;}
.yf{bottom:441.838533pt;}
.y108{bottom:442.890667pt;}
.yc2{bottom:444.016000pt;}
.y59{bottom:445.424000pt;}
.y1cc{bottom:446.000000pt;}
.y1ac{bottom:448.037333pt;}
.y33{bottom:448.800000pt;}
.ye6{bottom:448.853333pt;}
.y14a{bottom:450.746667pt;}
.y12b{bottom:451.162667pt;}
.y7c{bottom:451.237333pt;}
.y9d{bottom:454.538667pt;}
.y189{bottom:455.797333pt;}
.y165{bottom:460.250667pt;}
.ye{bottom:461.566533pt;}
.y1ee{bottom:461.696000pt;}
.y107{bottom:462.618667pt;}
.yc1{bottom:463.344000pt;}
.y58{bottom:465.296000pt;}
.y1cb{bottom:466.400000pt;}
.ye5{bottom:468.981333pt;}
.y149{bottom:470.874667pt;}
.y12a{bottom:471.290667pt;}
.y7b{bottom:471.909333pt;}
.y9c{bottom:474.538667pt;}
.y188{bottom:475.797333pt;}
.y1ab{bottom:476.709333pt;}
.y164{bottom:480.522667pt;}
.yd{bottom:481.294533pt;}
.y1ed{bottom:481.824000pt;}
.y106{bottom:482.346667pt;}
.yc0{bottom:482.672000pt;}
.y57{bottom:485.168000pt;}
.y1ca{bottom:486.800000pt;}
.y32{bottom:488.826667pt;}
.y148{bottom:491.002667pt;}
.y129{bottom:491.418667pt;}
.y7a{bottom:492.581333pt;}
.y9b{bottom:494.538667pt;}
.y187{bottom:495.797333pt;}
.y1aa{bottom:496.037333pt;}
.ye4{bottom:499.381333pt;}
.y163{bottom:500.794667pt;}
.yc{bottom:501.022533pt;}
.ybf{bottom:501.872000pt;}
.y1ec{bottom:501.952000pt;}
.y105{bottom:502.074667pt;}
.y56{bottom:505.040000pt;}
.y1c9{bottom:507.200000pt;}
.y31{bottom:508.554667pt;}
.y147{bottom:511.130667pt;}
.y128{bottom:511.546667pt;}
.y79{bottom:513.253333pt;}
.y9a{bottom:514.538667pt;}
.y1a9{bottom:515.365333pt;}
.y186{bottom:515.797333pt;}
.ye3{bottom:519.653333pt;}
.yb{bottom:520.755867pt;}
.y162{bottom:521.066667pt;}
.ybe{bottom:521.072000pt;}
.y104{bottom:521.802667pt;}
.y1eb{bottom:522.080000pt;}
.y55{bottom:524.912000pt;}
.y1c8{bottom:527.600000pt;}
.y30{bottom:528.282667pt;}
.y146{bottom:531.258667pt;}
.y78{bottom:533.925333pt;}
.y99{bottom:534.538667pt;}
.y1a8{bottom:534.693333pt;}
.y185{bottom:535.797333pt;}
.ye2{bottom:539.925333pt;}
.ybd{bottom:540.272000pt;}
.y161{bottom:541.338667pt;}
.y103{bottom:541.530667pt;}
.y127{bottom:542.074667pt;}
.y1ea{bottom:542.208000pt;}
.y54{bottom:544.784000pt;}
.y1c7{bottom:548.000000pt;}
.y2f{bottom:548.010667pt;}
.y145{bottom:551.386667pt;}
.y1a7{bottom:554.021333pt;}
.y98{bottom:554.538667pt;}
.y77{bottom:554.597333pt;}
.y184{bottom:555.797333pt;}
.ybc{bottom:559.472000pt;}
.ye1{bottom:560.197333pt;}
.ya{bottom:560.755867pt;}
.y102{bottom:561.258667pt;}
.y160{bottom:561.610667pt;}
.y126{bottom:562.202667pt;}
.y1e9{bottom:562.336000pt;}
.y53{bottom:564.656000pt;}
.y2e{bottom:567.738667pt;}
.y1c6{bottom:568.400000pt;}
.y144{bottom:571.514667pt;}
.y1a6{bottom:573.349333pt;}
.y97{bottom:574.538667pt;}
.y210{bottom:574.997333pt;}
.y76{bottom:575.269333pt;}
.ybb{bottom:578.672000pt;}
.ye0{bottom:580.469333pt;}
.y101{bottom:580.986667pt;}
.y15f{bottom:581.882667pt;}
.y125{bottom:582.330667pt;}
.y1e8{bottom:582.464000pt;}
.y52{bottom:584.528000pt;}
.y9{bottom:584.981600pt;}
.y183{bottom:585.669333pt;}
.y2d{bottom:587.509333pt;}
.y1c5{bottom:588.800000pt;}
.y143{bottom:591.642667pt;}
.y20f{bottom:591.664000pt;}
.y1a5{bottom:592.677333pt;}
.y96{bottom:594.538667pt;}
.y75{bottom:595.941333pt;}
.yba{bottom:597.872000pt;}
.y100{bottom:600.714667pt;}
.ydf{bottom:600.741333pt;}
.y8{bottom:601.648267pt;}
.y15e{bottom:602.154667pt;}
.y124{bottom:602.458667pt;}
.y1e7{bottom:602.592000pt;}
.y51{bottom:604.389333pt;}
.y182{bottom:605.541333pt;}
.y2c{bottom:607.237333pt;}
.y20e{bottom:608.330667pt;}
.y142{bottom:611.770667pt;}
.y1a4{bottom:612.005333pt;}
.y95{bottom:614.538667pt;}
.y74{bottom:616.613333pt;}
.yb9{bottom:617.072000pt;}
.y7{bottom:618.314933pt;}
.yff{bottom:620.442667pt;}
.yde{bottom:621.013333pt;}
.y15d{bottom:622.426667pt;}
.y123{bottom:622.586667pt;}
.y1e6{bottom:622.720000pt;}
.y50{bottom:624.261333pt;}
.y20d{bottom:624.997333pt;}
.y181{bottom:625.413333pt;}
.y2b{bottom:626.965333pt;}
.y1c4{bottom:629.600000pt;}
.y1a3{bottom:631.333333pt;}
.y141{bottom:631.898667pt;}
.y94{bottom:634.538667pt;}
.yb8{bottom:636.272000pt;}
.y73{bottom:637.285333pt;}
.yfe{bottom:640.170667pt;}
.ydd{bottom:641.285333pt;}
.y15c{bottom:642.698667pt;}
.y122{bottom:642.714667pt;}
.y1e5{bottom:642.848000pt;}
.y4f{bottom:644.133333pt;}
.y180{bottom:645.285333pt;}
.y2a{bottom:646.693333pt;}
.y1c3{bottom:650.000000pt;}
.y20c{bottom:651.664000pt;}
.y140{bottom:652.026667pt;}
.y93{bottom:654.538667pt;}
.y6{bottom:654.981600pt;}
.yb7{bottom:655.472000pt;}
.y72{bottom:657.957333pt;}
.yfd{bottom:659.498667pt;}
.ydc{bottom:661.557333pt;}
.y121{bottom:662.842667pt;}
.y15b{bottom:662.970667pt;}
.y1e4{bottom:662.976000pt;}
.y4e{bottom:664.000000pt;}
.y17f{bottom:665.157333pt;}
.y29{bottom:666.421333pt;}
.y1a2{bottom:670.005333pt;}
.y1c2{bottom:670.400000pt;}
.y13f{bottom:672.154667pt;}
.y92{bottom:674.538667pt;}
.yb6{bottom:674.672000pt;}
.y71{bottom:678.629333pt;}
.yfc{bottom:678.826667pt;}
.ydb{bottom:681.829333pt;}
.y120{bottom:682.970667pt;}
.y1e3{bottom:683.104000pt;}
.y20b{bottom:685.002667pt;}
.y17e{bottom:685.029333pt;}
.y28{bottom:686.149333pt;}
.y1a1{bottom:689.370667pt;}
.y1c1{bottom:690.800000pt;}
.y5{bottom:690.981600pt;}
.yb5{bottom:693.872000pt;}
.y91{bottom:694.538667pt;}
.yfb{bottom:698.154667pt;}
.y20a{bottom:698.336000pt;}
.y70{bottom:699.301333pt;}
.yda{bottom:702.101333pt;}
.y11f{bottom:703.098667pt;}
.y1e2{bottom:703.232000pt;}
.y4d{bottom:704.000000pt;}
.y17d{bottom:704.901333pt;}
.y27{bottom:705.877333pt;}
.y4{bottom:707.648267pt;}
.y1a0{bottom:708.698667pt;}
.y1c0{bottom:711.200000pt;}
.y209{bottom:711.669333pt;}
.y13e{bottom:712.426667pt;}
.yb4{bottom:713.072000pt;}
.y90{bottom:714.538667pt;}
.yfa{bottom:717.482667pt;}
.y6f{bottom:719.973333pt;}
.yd9{bottom:722.373333pt;}
.y11e{bottom:723.226667pt;}
.y1e1{bottom:723.360000pt;}
.y4c{bottom:724.000000pt;}
.y17c{bottom:724.773333pt;}
.y208{bottom:725.002667pt;}
.y26{bottom:725.605333pt;}
.y19f{bottom:728.026667pt;}
.y1bf{bottom:731.600000pt;}
.yb3{bottom:732.272000pt;}
.y13d{bottom:732.554667pt;}
.y8f{bottom:734.538667pt;}
.yf9{bottom:736.810667pt;}
.y207{bottom:738.336000pt;}
.y6e{bottom:740.645333pt;}
.yd8{bottom:742.645333pt;}
.y11d{bottom:743.354667pt;}
.y1e0{bottom:743.488000pt;}
.y4b{bottom:744.000000pt;}
.y17b{bottom:744.645333pt;}
.y25{bottom:745.354667pt;}
.y19e{bottom:747.354667pt;}
.yb2{bottom:751.472000pt;}
.y206{bottom:751.669333pt;}
.y1be{bottom:752.000000pt;}
.y13c{bottom:752.682667pt;}
.yf8{bottom:756.138667pt;}
.y6d{bottom:761.317333pt;}
.yd7{bottom:762.917333pt;}
.y11c{bottom:763.482667pt;}
.y1df{bottom:763.616000pt;}
.y3{bottom:764.000000pt;}
.y17a{bottom:764.517333pt;}
.y8e{bottom:764.538667pt;}
.y205{bottom:765.002667pt;}
.y24{bottom:765.082667pt;}
.y19d{bottom:766.682667pt;}
.y204{bottom:778.336000pt;}
.y6c{bottom:781.989333pt;}
.y1bd{bottom:782.800000pt;}
.yd6{bottom:783.189333pt;}
.y11b{bottom:783.610667pt;}
.y1de{bottom:783.744000pt;}
.y4a{bottom:784.000000pt;}
.y179{bottom:784.389333pt;}
.y8d{bottom:784.538667pt;}
.y23{bottom:784.810667pt;}
.y19c{bottom:786.010667pt;}
.yb1{bottom:786.400000pt;}
.y2{bottom:790.666667pt;}
.y203{bottom:791.669333pt;}
.y6b{bottom:802.661333pt;}
.y1bc{bottom:803.200000pt;}
.yd5{bottom:803.461333pt;}
.y11a{bottom:803.738667pt;}
.y1dd{bottom:803.872000pt;}
.y49{bottom:804.000000pt;}
.y178{bottom:804.261333pt;}
.y22{bottom:804.538667pt;}
.y202{bottom:805.002667pt;}
.y19b{bottom:805.338667pt;}
.yb0{bottom:805.600000pt;}
.y1dc{bottom:808.000000pt;}
.y6a{bottom:823.333333pt;}
.y69{bottom:823.364000pt;}
.y1bb{bottom:823.600000pt;}
.yd4{bottom:823.733333pt;}
.y119{bottom:823.866667pt;}
.y48{bottom:824.000000pt;}
.y177{bottom:824.133333pt;}
.y21{bottom:824.266667pt;}
.y47{bottom:824.582667pt;}
.y19a{bottom:824.666667pt;}
.yaf{bottom:824.800000pt;}
.h10{height:21.269167pt;}
.hc{height:26.945443pt;}
.h13{height:34.730667pt;}
.h8{height:35.546875pt;}
.h6{height:36.229167pt;}
.h4{height:36.796875pt;}
.h11{height:42.656250pt;}
.he{height:43.413333pt;}
.hd{height:44.156250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h12{height:45.531250pt;}
.h7{height:54.343750pt;}
.hf{height:54.386417pt;}
.ha{height:58.989958pt;}
.h9{height:59.075292pt;}
.hb{height:59.160625pt;}
.h2{height:71.093750pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.228400pt;}
.xa{left:86.444400pt;}
.x7{left:100.000000pt;}
.x8{left:113.232000pt;}
.xb{left:120.472400pt;}
.x9{left:126.445467pt;}
.x4{left:294.330533pt;}
.x3{left:391.143867pt;}
.x2{left:437.823867pt;}
.x6{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; }
  