
    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_4e3faecfea5c9f80bccc7199.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_fb16ecb6e4cf3c7e31384af6.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_753aac1e7c7d06ce92087a05.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1edbf819d6eda232d4a82956.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ec29f91fbab09f898bacf50.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_05d05d201df88ae304dee616.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_39a86957ff46fccacc4a0d63.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_ba388d01ac809362354939c3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bdeb1bbdab26e3110452c9d6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6c9c71271ec39f92a638d1c9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6a738984f1017574118d23e8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bcef55c20b1992a621799c26.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_3460e88c445958893bb3a162.woff')format("woff");}.ffd{font-family:ffd;line-height:0.706000;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);}
.v5{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-14.112000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.892400px;}
.v2{vertical-align:23.760000px;}
.ls3f{letter-spacing:-7.200000px;}
.ls27{letter-spacing:-6.984000px;}
.ls16{letter-spacing:-4.320000px;}
.ls22{letter-spacing:-1.152000px;}
.ls2f{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.792000px;}
.ls24{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.ls56{letter-spacing:-0.600000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.053400px;}
.ls4b{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls2c{letter-spacing:0.571200px;}
.ls6{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.727200px;}
.lsa{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls40{letter-spacing:0.936000px;}
.ls1e{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.152000px;}
.ls2a{letter-spacing:1.368000px;}
.ls41{letter-spacing:1.512000px;}
.ls29{letter-spacing:1.584000px;}
.ls3d{letter-spacing:1.656000px;}
.ls44{letter-spacing:1.792800px;}
.ls2b{letter-spacing:2.088000px;}
.ls52{letter-spacing:2.376000px;}
.ls53{letter-spacing:2.448000px;}
.ls20{letter-spacing:2.592000px;}
.ls26{letter-spacing:3.024000px;}
.ls49{letter-spacing:3.607200px;}
.ls3e{letter-spacing:3.672000px;}
.ls42{letter-spacing:4.176000px;}
.ls55{letter-spacing:4.416000px;}
.ls4e{letter-spacing:4.608000px;}
.ls54{letter-spacing:4.752000px;}
.ls2{letter-spacing:4.896000px;}
.ls47{letter-spacing:5.040000px;}
.ls12{letter-spacing:5.616000px;}
.ls17{letter-spacing:6.408000px;}
.ls35{letter-spacing:6.465600px;}
.ls19{letter-spacing:6.624000px;}
.ls45{letter-spacing:7.279200px;}
.lsf{letter-spacing:7.380000px;}
.ls32{letter-spacing:8.366400px;}
.ls0{letter-spacing:8.436000px;}
.ls3{letter-spacing:8.460000px;}
.ls4a{letter-spacing:9.136800px;}
.ls4f{letter-spacing:9.936000px;}
.ls46{letter-spacing:10.238400px;}
.ls1{letter-spacing:10.740000px;}
.ls8{letter-spacing:10.821600px;}
.ls33{letter-spacing:11.304000px;}
.ls51{letter-spacing:11.592000px;}
.ls4c{letter-spacing:11.736000px;}
.ls48{letter-spacing:11.880000px;}
.ls31{letter-spacing:11.952000px;}
.ls43{letter-spacing:12.168000px;}
.ls50{letter-spacing:12.456000px;}
.ls34{letter-spacing:12.528000px;}
.ls3a{letter-spacing:114.180000px;}
.ls39{letter-spacing:127.260000px;}
.lse{letter-spacing:150.360000px;}
.ls38{letter-spacing:218.640000px;}
.ls3c{letter-spacing:252.900000px;}
.ls37{letter-spacing:321.240000px;}
.ls3b{letter-spacing:505.320000px;}
.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;}
}
.ws1a{word-spacing:-75.180000px;}
.ws43{word-spacing:-32.184000px;}
.ws45{word-spacing:-30.312000px;}
.ws58{word-spacing:-29.952000px;}
.ws59{word-spacing:-29.736000px;}
.ws44{word-spacing:-29.088000px;}
.ws64{word-spacing:-25.320000px;}
.ws2{word-spacing:-20.808000px;}
.ws1{word-spacing:-20.664000px;}
.ws16{word-spacing:-20.232000px;}
.ws3{word-spacing:-20.160000px;}
.ws17{word-spacing:-20.088000px;}
.ws3d{word-spacing:-18.792000px;}
.ws42{word-spacing:-18.504000px;}
.ws22{word-spacing:-18.432000px;}
.ws24{word-spacing:-18.360000px;}
.ws3b{word-spacing:-18.288000px;}
.ws3e{word-spacing:-18.216000px;}
.ws23{word-spacing:-18.072000px;}
.ws2c{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.856000px;}
.ws5e{word-spacing:-17.841600px;}
.ws14{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.640000px;}
.ws2b{word-spacing:-17.424000px;}
.ws65{word-spacing:-17.208000px;}
.ws5c{word-spacing:-17.136000px;}
.ws5d{word-spacing:-16.992000px;}
.ws12{word-spacing:-16.860000px;}
.ws4a{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.162400px;}
.ws46{word-spacing:-12.528000px;}
.ws62{word-spacing:-12.456000px;}
.ws5a{word-spacing:-12.168000px;}
.ws51{word-spacing:-11.952000px;}
.ws5b{word-spacing:-11.880000px;}
.ws2d{word-spacing:-11.856000px;}
.ws5f{word-spacing:-11.808000px;}
.ws63{word-spacing:-11.592000px;}
.ws61{word-spacing:-9.936000px;}
.ws0{word-spacing:-8.496000px;}
.ws9{word-spacing:-8.460000px;}
.ws13{word-spacing:-7.440000px;}
.ws3f{word-spacing:-7.380000px;}
.ws21{word-spacing:-6.408000px;}
.ws60{word-spacing:-4.608000px;}
.ws67{word-spacing:-4.416000px;}
.ws57{word-spacing:-4.176000px;}
.ws33{word-spacing:-3.024000px;}
.ws34{word-spacing:-2.592000px;}
.ws55{word-spacing:-1.656000px;}
.ws38{word-spacing:-1.584000px;}
.ws56{word-spacing:-1.512000px;}
.ws39{word-spacing:-1.368000px;}
.ws40{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.008000px;}
.ws54{word-spacing:-0.936000px;}
.wsf{word-spacing:-0.864000px;}
.ws27{word-spacing:-0.792000px;}
.ws8{word-spacing:-0.780000px;}
.wse{word-spacing:-0.720000px;}
.ws29{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.504000px;}
.wsb{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.288000px;}
.ws32{word-spacing:-0.216000px;}
.ws36{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.072000px;}
.ws48{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws1f{word-spacing:0.144000px;}
.ws1d{word-spacing:0.216000px;}
.ws47{word-spacing:0.240000px;}
.ws26{word-spacing:0.288000px;}
.ws69{word-spacing:0.300000px;}
.ws1c{word-spacing:0.360000px;}
.ws2f{word-spacing:0.432000px;}
.ws28{word-spacing:0.504000px;}
.ws3a{word-spacing:0.576000px;}
.ws68{word-spacing:0.600000px;}
.ws31{word-spacing:0.648000px;}
.ws30{word-spacing:0.720000px;}
.ws25{word-spacing:0.792000px;}
.ws37{word-spacing:0.864000px;}
.ws41{word-spacing:1.008000px;}
.ws2e{word-spacing:1.152000px;}
.ws66{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws52{word-spacing:2.400000px;}
.ws7{word-spacing:3.312000px;}
.ws4{word-spacing:4.200000px;}
.ws1e{word-spacing:4.320000px;}
.ws35{word-spacing:6.984000px;}
.ws53{word-spacing:7.200000px;}
.ws4f{word-spacing:24.659400px;}
.ws4c{word-spacing:72.600000px;}
.ws11{word-spacing:146.196000px;}
.ws50{word-spacing:176.400000px;}
.ws4b{word-spacing:193.680000px;}
.ws4e{word-spacing:228.060000px;}
.ws4d{word-spacing:266.040000px;}
.ws49{word-spacing:490.500000px;}
._0{margin-left:-948.820800px;}
._17{margin-left:-20.058000px;}
._13{margin-left:-15.187200px;}
._19{margin-left:-14.042400px;}
._16{margin-left:-12.428400px;}
._1b{margin-left:-11.274000px;}
._10{margin-left:-9.627600px;}
._12{margin-left:-8.508000px;}
._9{margin-left:-7.156800px;}
._1{margin-left:-5.964000px;}
._8{margin-left:-4.854000px;}
._c{margin-left:-3.619200px;}
._e{margin-left:-2.390400px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._f{width:2.880000px;}
._5{width:3.960000px;}
._b{width:5.127600px;}
._d{width:6.715200px;}
._4{width:8.340000px;}
._6{width:9.530400px;}
._a{width:10.906800px;}
._7{width:12.378000px;}
._11{width:13.579200px;}
._18{width:14.803200px;}
._15{width:16.394400px;}
._2f{width:20.880000px;}
._1a{width:22.968000px;}
._14{width:31.646100px;}
._29{width:64.140000px;}
._26{width:91.620000px;}
._23{width:98.580000px;}
._28{width:99.960000px;}
._27{width:139.500000px;}
._1c{width:186.900000px;}
._22{width:191.640000px;}
._2d{width:206.220000px;}
._2e{width:213.048600px;}
._21{width:218.640000px;}
._2c{width:227.040000px;}
._24{width:234.480000px;}
._1d{width:236.580000px;}
._25{width:242.700000px;}
._2a{width:266.400000px;}
._2b{width:268.473900px;}
._20{width:331.740000px;}
._1e{width:366.120000px;}
._1f{width:505.320000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y22{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y47{bottom:117.000000px;}
.y6d{bottom:117.174000px;}
.y128{bottom:118.110000px;}
.y14a{bottom:118.590000px;}
.y16c{bottom:119.304000px;}
.ya6{bottom:121.207500px;}
.y20{bottom:123.968550px;}
.y92{bottom:132.000000px;}
.y1c1{bottom:132.954000px;}
.y46{bottom:136.207500px;}
.y6c{bottom:139.080000px;}
.ya5{bottom:139.500000px;}
.y127{bottom:141.204000px;}
.y149{bottom:141.684000px;}
.y16b{bottom:142.398000px;}
.yc6{bottom:143.707500px;}
.y1f{bottom:146.468550px;}
.y91{bottom:147.000000px;}
.y1c0{bottom:147.798000px;}
.ya4{bottom:154.500000px;}
.ye8{bottom:158.707500px;}
.y6b{bottom:160.986000px;}
.y104{bottom:162.000000px;}
.y1bf{bottom:162.642000px;}
.y18b{bottom:164.274000px;}
.y126{bottom:164.298000px;}
.y148{bottom:164.778000px;}
.y16a{bottom:165.492000px;}
.y90{bottom:166.207500px;}
.y1e{bottom:168.968550px;}
.ya3{bottom:173.707500px;}
.y45{bottom:176.850000px;}
.ye7{bottom:177.000000px;}
.y1be{bottom:177.486000px;}
.y6a{bottom:182.892000px;}
.yc5{bottom:184.500000px;}
.y1e7{bottom:185.622150px;}
.y18a{bottom:187.368000px;}
.y125{bottom:187.392000px;}
.y147{bottom:187.872000px;}
.y169{bottom:188.586000px;}
.y1d{bottom:191.468550px;}
.y1bd{bottom:192.330000px;}
.ye6{bottom:196.207500px;}
.y44{bottom:198.900000px;}
.y1e6{bottom:204.372150px;}
.y69{bottom:204.798000px;}
.yc4{bottom:207.000000px;}
.y1bc{bottom:207.174000px;}
.ya2{bottom:210.072000px;}
.y8f{bottom:210.096000px;}
.y189{bottom:210.462000px;}
.y124{bottom:210.486000px;}
.y146{bottom:210.966000px;}
.y168{bottom:211.680000px;}
.y103{bottom:212.526750px;}
.y1c{bottom:213.968550px;}
.y43{bottom:220.950000px;}
.y1bb{bottom:222.018000px;}
.y1e5{bottom:223.122150px;}
.y68{bottom:226.704000px;}
.yc3{bottom:229.500000px;}
.ya1{bottom:231.816000px;}
.y8e{bottom:231.840000px;}
.y188{bottom:233.556000px;}
.y123{bottom:233.580000px;}
.y145{bottom:234.060000px;}
.y167{bottom:234.774000px;}
.y1b{bottom:236.468550px;}
.y1ba{bottom:236.862000px;}
.ye5{bottom:238.824000px;}
.y102{bottom:239.488650px;}
.y1e4{bottom:241.872150px;}
.y42{bottom:243.000000px;}
.y67{bottom:248.610000px;}
.y1b9{bottom:251.706000px;}
.yc2{bottom:252.000000px;}
.ya0{bottom:253.560000px;}
.y8d{bottom:253.584000px;}
.y187{bottom:256.650000px;}
.y122{bottom:256.674000px;}
.y144{bottom:257.154000px;}
.y166{bottom:257.868000px;}
.y1a{bottom:258.968550px;}
.ye4{bottom:261.018000px;}
.y41{bottom:265.050000px;}
.y101{bottom:266.473650px;}
.y1b8{bottom:266.550000px;}
.y66{bottom:270.516000px;}
.yc1{bottom:274.500000px;}
.y9f{bottom:275.304000px;}
.y8c{bottom:275.328000px;}
.y1e3{bottom:279.372150px;}
.y186{bottom:279.744000px;}
.y121{bottom:279.768000px;}
.y143{bottom:280.248000px;}
.y165{bottom:280.962000px;}
.y1b7{bottom:281.394000px;}
.y19{bottom:281.468550px;}
.ye3{bottom:283.212000px;}
.y40{bottom:287.100000px;}
.y65{bottom:292.422000px;}
.y100{bottom:293.458650px;}
.y1b6{bottom:296.238000px;}
.yc0{bottom:297.000000px;}
.y9e{bottom:297.048000px;}
.y8b{bottom:297.072000px;}
.y185{bottom:302.838000px;}
.y120{bottom:302.862000px;}
.y142{bottom:303.342000px;}
.y18{bottom:303.968550px;}
.y164{bottom:304.056000px;}
.ye2{bottom:305.406000px;}
.y3f{bottom:309.150000px;}
.y1b5{bottom:311.082000px;}
.y64{bottom:314.328000px;}
.y9d{bottom:318.792000px;}
.y8a{bottom:318.816000px;}
.ybf{bottom:319.500000px;}
.yff{bottom:320.443650px;}
.y1e2{bottom:320.622150px;}
.y1b4{bottom:325.926000px;}
.y184{bottom:325.932000px;}
.y11f{bottom:325.956000px;}
.y141{bottom:326.436000px;}
.y17{bottom:326.468550px;}
.y163{bottom:327.150000px;}
.ye1{bottom:327.672000px;}
.y3e{bottom:331.200000px;}
.y63{bottom:336.234000px;}
.y1e1{bottom:339.372150px;}
.y9c{bottom:340.536000px;}
.y89{bottom:340.560000px;}
.y1b3{bottom:340.770000px;}
.ybe{bottom:342.000000px;}
.yfe{bottom:347.428650px;}
.y16{bottom:348.968550px;}
.y183{bottom:349.026000px;}
.y11e{bottom:349.050000px;}
.y140{bottom:349.530000px;}
.ye0{bottom:349.866000px;}
.y162{bottom:350.244000px;}
.y3d{bottom:353.250000px;}
.y1b2{bottom:355.614000px;}
.y1e0{bottom:358.122150px;}
.y62{bottom:358.140000px;}
.y9b{bottom:362.280000px;}
.y88{bottom:362.304000px;}
.ybd{bottom:364.500000px;}
.y1b1{bottom:370.458000px;}
.y15{bottom:371.468550px;}
.ydf{bottom:372.060000px;}
.y182{bottom:372.120000px;}
.y11d{bottom:372.144000px;}
.y13f{bottom:372.624000px;}
.y161{bottom:373.338000px;}
.yfd{bottom:374.413650px;}
.y3c{bottom:375.300000px;}
.y1df{bottom:376.872150px;}
.y61{bottom:380.046000px;}
.y9a{bottom:384.024000px;}
.y87{bottom:384.048000px;}
.y1b0{bottom:385.302000px;}
.ybc{bottom:387.000000px;}
.y14{bottom:393.968550px;}
.yde{bottom:394.254000px;}
.y181{bottom:395.214000px;}
.y11c{bottom:395.238000px;}
.y1de{bottom:395.622150px;}
.y13e{bottom:395.718000px;}
.y160{bottom:396.432000px;}
.y3b{bottom:397.350000px;}
.y1af{bottom:400.146000px;}
.yfc{bottom:401.398650px;}
.y60{bottom:401.952000px;}
.y99{bottom:405.768000px;}
.y86{bottom:405.792000px;}
.ybb{bottom:409.500000px;}
.y1dd{bottom:414.372150px;}
.y1ae{bottom:414.990000px;}
.ydd{bottom:416.448000px;}
.y13{bottom:416.468550px;}
.y180{bottom:418.308000px;}
.y11b{bottom:418.332000px;}
.y13d{bottom:418.812000px;}
.y3a{bottom:419.400000px;}
.y15f{bottom:419.526000px;}
.y5f{bottom:423.858000px;}
.y98{bottom:427.512000px;}
.y85{bottom:427.536000px;}
.yfb{bottom:428.383650px;}
.y1ad{bottom:429.834000px;}
.yba{bottom:432.000000px;}
.y1dc{bottom:433.122150px;}
.ydc{bottom:438.642000px;}
.y12{bottom:438.968550px;}
.y17f{bottom:441.402000px;}
.y11a{bottom:441.426000px;}
.y39{bottom:441.450000px;}
.y13c{bottom:441.906000px;}
.y15e{bottom:442.620000px;}
.y1ac{bottom:444.678000px;}
.y5e{bottom:445.764000px;}
.y97{bottom:449.256000px;}
.y84{bottom:449.280000px;}
.y1db{bottom:451.872150px;}
.yb9{bottom:454.500000px;}
.yfa{bottom:455.368650px;}
.y1ab{bottom:459.522000px;}
.ydb{bottom:460.836000px;}
.y11{bottom:461.468550px;}
.y38{bottom:463.500000px;}
.y17e{bottom:464.496000px;}
.y119{bottom:464.520000px;}
.y13b{bottom:465.000000px;}
.y15d{bottom:465.714000px;}
.y5d{bottom:467.670000px;}
.y1da{bottom:470.622150px;}
.y83{bottom:471.024000px;}
.y96{bottom:471.126000px;}
.y1aa{bottom:474.366000px;}
.yb8{bottom:477.000000px;}
.yf9{bottom:482.353650px;}
.yda{bottom:483.030000px;}
.y10{bottom:483.968550px;}
.y37{bottom:485.550000px;}
.y17d{bottom:487.590000px;}
.y118{bottom:487.614000px;}
.y13a{bottom:488.100000px;}
.y15c{bottom:488.808000px;}
.y1a9{bottom:489.210000px;}
.y1d9{bottom:489.372150px;}
.y5c{bottom:489.576000px;}
.y82{bottom:492.768000px;}
.y95{bottom:492.870000px;}
.yb7{bottom:499.500000px;}
.y1a8{bottom:504.054000px;}
.yd9{bottom:505.224000px;}
.yf{bottom:506.468550px;}
.y36{bottom:507.600000px;}
.y1d8{bottom:508.122150px;}
.yf8{bottom:509.338650px;}
.y17c{bottom:510.684000px;}
.y117{bottom:510.708000px;}
.y139{bottom:511.200000px;}
.y5b{bottom:511.482000px;}
.y15b{bottom:511.902000px;}
.y81{bottom:514.512000px;}
.y94{bottom:514.614000px;}
.y1a7{bottom:518.898000px;}
.yb6{bottom:522.000000px;}
.y1d7{bottom:526.872150px;}
.yd8{bottom:527.418000px;}
.ye{bottom:528.968550px;}
.y35{bottom:529.650000px;}
.y5a{bottom:533.388000px;}
.y1a6{bottom:533.742000px;}
.y17b{bottom:533.778000px;}
.y116{bottom:533.802000px;}
.y15a{bottom:534.996000px;}
.y80{bottom:536.256000px;}
.yf7{bottom:536.323650px;}
.y93{bottom:536.358000px;}
.yb5{bottom:544.500000px;}
.y1d6{bottom:545.622150px;}
.y1a5{bottom:548.586000px;}
.yd7{bottom:549.612000px;}
.yd{bottom:551.468550px;}
.y34{bottom:551.700000px;}
.y59{bottom:555.294000px;}
.y17a{bottom:556.872000px;}
.y115{bottom:556.896000px;}
.y138{bottom:557.496000px;}
.y159{bottom:558.090000px;}
.y7f{bottom:558.102000px;}
.yf6{bottom:563.308650px;}
.y1a4{bottom:563.430000px;}
.y1d5{bottom:564.372150px;}
.yb4{bottom:567.000000px;}
.yd6{bottom:571.806000px;}
.y33{bottom:573.750000px;}
.yc{bottom:573.968550px;}
.y58{bottom:577.176000px;}
.y1a3{bottom:578.274000px;}
.y7e{bottom:579.846000px;}
.y179{bottom:579.966000px;}
.y114{bottom:579.990000px;}
.y137{bottom:580.590000px;}
.y158{bottom:581.184000px;}
.y1d4{bottom:583.122150px;}
.yb3{bottom:589.500000px;}
.yf5{bottom:590.293650px;}
.y1a2{bottom:593.118000px;}
.yd5{bottom:594.006000px;}
.y32{bottom:595.800000px;}
.yb{bottom:596.468550px;}
.y57{bottom:599.082000px;}
.y7d{bottom:601.590000px;}
.y1d3{bottom:601.872150px;}
.y178{bottom:603.060000px;}
.y113{bottom:603.084000px;}
.y136{bottom:603.684000px;}
.y157{bottom:604.278000px;}
.y1a1{bottom:607.962000px;}
.yb2{bottom:612.000000px;}
.yd4{bottom:616.284000px;}
.yf4{bottom:617.278650px;}
.y31{bottom:617.850000px;}
.ya{bottom:618.968550px;}
.y1d2{bottom:620.622150px;}
.y56{bottom:620.988000px;}
.y1a0{bottom:622.806000px;}
.y7c{bottom:623.334000px;}
.y177{bottom:626.154000px;}
.y112{bottom:626.178000px;}
.y135{bottom:626.778000px;}
.y156{bottom:627.372000px;}
.yb1{bottom:634.500000px;}
.y19f{bottom:637.650000px;}
.yd3{bottom:638.478000px;}
.y1d1{bottom:639.372150px;}
.y30{bottom:639.900000px;}
.y9{bottom:641.468550px;}
.y55{bottom:642.894000px;}
.yf3{bottom:644.263650px;}
.y7b{bottom:645.078000px;}
.y176{bottom:649.248000px;}
.y111{bottom:649.272000px;}
.y134{bottom:649.872000px;}
.y155{bottom:650.466000px;}
.y19e{bottom:652.494000px;}
.yb0{bottom:657.000000px;}
.y1d0{bottom:658.122150px;}
.yd2{bottom:660.672000px;}
.y2f{bottom:661.950000px;}
.y8{bottom:663.968550px;}
.y54{bottom:664.728000px;}
.y7a{bottom:666.822000px;}
.y19d{bottom:667.338000px;}
.y175{bottom:672.342000px;}
.y110{bottom:672.366000px;}
.y133{bottom:672.966000px;}
.y154{bottom:673.560000px;}
.y1cf{bottom:676.872150px;}
.yaf{bottom:679.500000px;}
.y19c{bottom:682.182000px;}
.yd1{bottom:682.866000px;}
.y2e{bottom:684.000000px;}
.y53{bottom:686.634000px;}
.y79{bottom:688.566000px;}
.y174{bottom:695.436000px;}
.y10f{bottom:695.460000px;}
.y1ce{bottom:695.622150px;}
.y132{bottom:696.060000px;}
.y153{bottom:696.654000px;}
.y19b{bottom:697.026000px;}
.yae{bottom:702.000000px;}
.yd0{bottom:705.060000px;}
.y2d{bottom:706.050000px;}
.y52{bottom:708.540000px;}
.y7{bottom:708.968550px;}
.y78{bottom:710.310000px;}
.y19a{bottom:711.870000px;}
.y1cd{bottom:714.372150px;}
.y173{bottom:718.530000px;}
.y10e{bottom:718.554000px;}
.y131{bottom:719.154000px;}
.y152{bottom:719.748000px;}
.yad{bottom:724.500000px;}
.y199{bottom:726.714000px;}
.ycf{bottom:727.254000px;}
.y6{bottom:727.718550px;}
.y2c{bottom:728.100000px;}
.yf2{bottom:729.000000px;}
.y51{bottom:730.446000px;}
.y77{bottom:732.054000px;}
.y1cc{bottom:733.122150px;}
.y198{bottom:741.558000px;}
.y172{bottom:741.624000px;}
.y10d{bottom:741.648000px;}
.y130{bottom:742.248000px;}
.y151{bottom:742.842000px;}
.yac{bottom:747.000000px;}
.yce{bottom:749.448000px;}
.y2b{bottom:750.150000px;}
.yf1{bottom:751.050000px;}
.y1cb{bottom:751.872150px;}
.y50{bottom:752.352000px;}
.y76{bottom:753.798000px;}
.y197{bottom:756.402000px;}
.y171{bottom:764.718000px;}
.y10c{bottom:764.742000px;}
.y12f{bottom:765.342000px;}
.y150{bottom:765.936000px;}
.yab{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y1ca{bottom:770.622150px;}
.y196{bottom:771.246000px;}
.ycd{bottom:771.642000px;}
.y2a{bottom:772.200000px;}
.yf0{bottom:773.100000px;}
.y4f{bottom:774.258000px;}
.y75{bottom:775.542000px;}
.y195{bottom:786.090000px;}
.y170{bottom:787.812000px;}
.y10b{bottom:787.836000px;}
.y12e{bottom:788.436000px;}
.y14f{bottom:789.030000px;}
.y1c9{bottom:789.372150px;}
.yaa{bottom:792.000000px;}
.y4{bottom:792.354300px;}
.ycc{bottom:793.836000px;}
.y29{bottom:794.250000px;}
.yef{bottom:795.150000px;}
.y4e{bottom:796.164000px;}
.y74{bottom:797.286000px;}
.y194{bottom:800.934000px;}
.y1c8{bottom:808.122150px;}
.y16f{bottom:810.906000px;}
.y10a{bottom:810.930000px;}
.y12d{bottom:811.530000px;}
.y14e{bottom:812.124000px;}
.ya9{bottom:814.500000px;}
.y193{bottom:815.778000px;}
.ycb{bottom:816.030000px;}
.y28{bottom:816.300000px;}
.yee{bottom:817.200000px;}
.y4d{bottom:818.070000px;}
.y73{bottom:819.030000px;}
.y1c7{bottom:826.872150px;}
.y192{bottom:830.622000px;}
.y16e{bottom:834.000000px;}
.y109{bottom:834.024000px;}
.y12c{bottom:834.624000px;}
.y14d{bottom:835.218000px;}
.ya8{bottom:837.000000px;}
.yca{bottom:838.224000px;}
.y27{bottom:838.350000px;}
.yed{bottom:839.250000px;}
.y4c{bottom:839.976000px;}
.y72{bottom:840.774000px;}
.y191{bottom:845.466000px;}
.y1c6{bottom:845.622150px;}
.y16d{bottom:857.100000px;}
.y108{bottom:857.118000px;}
.y12b{bottom:857.718000px;}
.y14c{bottom:858.312000px;}
.y3{bottom:859.500000px;}
.y26{bottom:860.400000px;}
.yc9{bottom:860.418000px;}
.y190{bottom:860.466000px;}
.yec{bottom:861.300000px;}
.y4b{bottom:861.882000px;}
.y71{bottom:862.518000px;}
.y1c5{bottom:864.372150px;}
.y18f{bottom:875.466000px;}
.y107{bottom:880.212000px;}
.y12a{bottom:880.812000px;}
.y14b{bottom:881.406000px;}
.ya7{bottom:882.000000px;}
.y25{bottom:882.450000px;}
.yc8{bottom:882.612000px;}
.y1c4{bottom:883.122150px;}
.yeb{bottom:883.350000px;}
.y4a{bottom:883.788000px;}
.y70{bottom:884.262000px;}
.y2{bottom:889.500000px;}
.y18e{bottom:890.466000px;}
.y1c3{bottom:901.872150px;}
.y106{bottom:903.306000px;}
.y129{bottom:903.906000px;}
.y24{bottom:904.500000px;}
.yc7{bottom:904.806000px;}
.yea{bottom:905.400000px;}
.y18d{bottom:905.466000px;}
.y49{bottom:905.694000px;}
.y6f{bottom:906.006000px;}
.y105{bottom:926.400000px;}
.y18c{bottom:926.850000px;}
.y23{bottom:927.000000px;}
.y1c2{bottom:927.000150px;}
.ye9{bottom:927.450000px;}
.y48{bottom:927.600000px;}
.y6e{bottom:927.750000px;}
.h7{height:30.313623px;}
.h13{height:39.072000px;}
.h1{height:39.990234px;}
.h8{height:40.757812px;}
.h10{height:48.840000px;}
.h3{height:50.580000px;}
.h5{height:50.947266px;}
.h12{height:51.222656px;}
.h11{height:55.555486px;}
.h4{height:61.136719px;}
.ha{height:61.232719px;}
.h9{height:61.424719px;}
.hc{height:66.051703px;}
.hb{height:66.147703px;}
.hd{height:66.219703px;}
.hf{height:66.267703px;}
.he{height:66.531703px;}
.h6{height:66.555703px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x8{left:72.127050px;}
.x7{left:82.381950px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x5{left:135.000000px;}
.xa{left:180.541950px;}
.x9{left:207.322050px;}
.x6{left:237.000000px;}
.x1{left:625.781250px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.544000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.682133pt;}
.v2{vertical-align:21.120000pt;}
.ls3f{letter-spacing:-6.400000pt;}
.ls27{letter-spacing:-6.208000pt;}
.ls16{letter-spacing:-3.840000pt;}
.ls22{letter-spacing:-1.024000pt;}
.ls2f{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls56{letter-spacing:-0.533333pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.047467pt;}
.ls4b{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls2c{letter-spacing:0.507733pt;}
.ls6{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.646400pt;}
.lsa{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls40{letter-spacing:0.832000pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:1.024000pt;}
.ls2a{letter-spacing:1.216000pt;}
.ls41{letter-spacing:1.344000pt;}
.ls29{letter-spacing:1.408000pt;}
.ls3d{letter-spacing:1.472000pt;}
.ls44{letter-spacing:1.593600pt;}
.ls2b{letter-spacing:1.856000pt;}
.ls52{letter-spacing:2.112000pt;}
.ls53{letter-spacing:2.176000pt;}
.ls20{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.688000pt;}
.ls49{letter-spacing:3.206400pt;}
.ls3e{letter-spacing:3.264000pt;}
.ls42{letter-spacing:3.712000pt;}
.ls55{letter-spacing:3.925333pt;}
.ls4e{letter-spacing:4.096000pt;}
.ls54{letter-spacing:4.224000pt;}
.ls2{letter-spacing:4.352000pt;}
.ls47{letter-spacing:4.480000pt;}
.ls12{letter-spacing:4.992000pt;}
.ls17{letter-spacing:5.696000pt;}
.ls35{letter-spacing:5.747200pt;}
.ls19{letter-spacing:5.888000pt;}
.ls45{letter-spacing:6.470400pt;}
.lsf{letter-spacing:6.560000pt;}
.ls32{letter-spacing:7.436800pt;}
.ls0{letter-spacing:7.498667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls4a{letter-spacing:8.121600pt;}
.ls4f{letter-spacing:8.832000pt;}
.ls46{letter-spacing:9.100800pt;}
.ls1{letter-spacing:9.546667pt;}
.ls8{letter-spacing:9.619200pt;}
.ls33{letter-spacing:10.048000pt;}
.ls51{letter-spacing:10.304000pt;}
.ls4c{letter-spacing:10.432000pt;}
.ls48{letter-spacing:10.560000pt;}
.ls31{letter-spacing:10.624000pt;}
.ls43{letter-spacing:10.816000pt;}
.ls50{letter-spacing:11.072000pt;}
.ls34{letter-spacing:11.136000pt;}
.ls3a{letter-spacing:101.493333pt;}
.ls39{letter-spacing:113.120000pt;}
.lse{letter-spacing:133.653333pt;}
.ls38{letter-spacing:194.346667pt;}
.ls3c{letter-spacing:224.800000pt;}
.ls37{letter-spacing:285.546667pt;}
.ls3b{letter-spacing:449.173333pt;}
.ws1a{word-spacing:-66.826667pt;}
.ws43{word-spacing:-28.608000pt;}
.ws45{word-spacing:-26.944000pt;}
.ws58{word-spacing:-26.624000pt;}
.ws59{word-spacing:-26.432000pt;}
.ws44{word-spacing:-25.856000pt;}
.ws64{word-spacing:-22.506667pt;}
.ws2{word-spacing:-18.496000pt;}
.ws1{word-spacing:-18.368000pt;}
.ws16{word-spacing:-17.984000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws17{word-spacing:-17.856000pt;}
.ws3d{word-spacing:-16.704000pt;}
.ws42{word-spacing:-16.448000pt;}
.ws22{word-spacing:-16.384000pt;}
.ws24{word-spacing:-16.320000pt;}
.ws3b{word-spacing:-16.256000pt;}
.ws3e{word-spacing:-16.192000pt;}
.ws23{word-spacing:-16.064000pt;}
.ws2c{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.872000pt;}
.ws5e{word-spacing:-15.859200pt;}
.ws14{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.680000pt;}
.ws2b{word-spacing:-15.488000pt;}
.ws65{word-spacing:-15.296000pt;}
.ws5c{word-spacing:-15.232000pt;}
.ws5d{word-spacing:-15.104000pt;}
.ws12{word-spacing:-14.986667pt;}
.ws4a{word-spacing:-13.173333pt;}
.ws15{word-spacing:-12.588800pt;}
.ws46{word-spacing:-11.136000pt;}
.ws62{word-spacing:-11.072000pt;}
.ws5a{word-spacing:-10.816000pt;}
.ws51{word-spacing:-10.624000pt;}
.ws5b{word-spacing:-10.560000pt;}
.ws2d{word-spacing:-10.538667pt;}
.ws5f{word-spacing:-10.496000pt;}
.ws63{word-spacing:-10.304000pt;}
.ws61{word-spacing:-8.832000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws9{word-spacing:-7.520000pt;}
.ws13{word-spacing:-6.613333pt;}
.ws3f{word-spacing:-6.560000pt;}
.ws21{word-spacing:-5.696000pt;}
.ws60{word-spacing:-4.096000pt;}
.ws67{word-spacing:-3.925333pt;}
.ws57{word-spacing:-3.712000pt;}
.ws33{word-spacing:-2.688000pt;}
.ws34{word-spacing:-2.304000pt;}
.ws55{word-spacing:-1.472000pt;}
.ws38{word-spacing:-1.408000pt;}
.ws56{word-spacing:-1.344000pt;}
.ws39{word-spacing:-1.216000pt;}
.ws40{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-0.896000pt;}
.ws54{word-spacing:-0.832000pt;}
.wsf{word-spacing:-0.768000pt;}
.ws27{word-spacing:-0.704000pt;}
.ws8{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.640000pt;}
.ws29{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.448000pt;}
.wsb{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.256000pt;}
.ws32{word-spacing:-0.192000pt;}
.ws36{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws48{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws47{word-spacing:0.213333pt;}
.ws26{word-spacing:0.256000pt;}
.ws69{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.320000pt;}
.ws2f{word-spacing:0.384000pt;}
.ws28{word-spacing:0.448000pt;}
.ws3a{word-spacing:0.512000pt;}
.ws68{word-spacing:0.533333pt;}
.ws31{word-spacing:0.576000pt;}
.ws30{word-spacing:0.640000pt;}
.ws25{word-spacing:0.704000pt;}
.ws37{word-spacing:0.768000pt;}
.ws41{word-spacing:0.896000pt;}
.ws2e{word-spacing:1.024000pt;}
.ws66{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws52{word-spacing:2.133333pt;}
.ws7{word-spacing:2.944000pt;}
.ws4{word-spacing:3.733333pt;}
.ws1e{word-spacing:3.840000pt;}
.ws35{word-spacing:6.208000pt;}
.ws53{word-spacing:6.400000pt;}
.ws4f{word-spacing:21.919467pt;}
.ws4c{word-spacing:64.533333pt;}
.ws11{word-spacing:129.952000pt;}
.ws50{word-spacing:156.800000pt;}
.ws4b{word-spacing:172.160000pt;}
.ws4e{word-spacing:202.720000pt;}
.ws4d{word-spacing:236.480000pt;}
.ws49{word-spacing:436.000000pt;}
._0{margin-left:-843.396267pt;}
._17{margin-left:-17.829333pt;}
._13{margin-left:-13.499733pt;}
._19{margin-left:-12.482133pt;}
._16{margin-left:-11.047467pt;}
._1b{margin-left:-10.021333pt;}
._10{margin-left:-8.557867pt;}
._12{margin-left:-7.562667pt;}
._9{margin-left:-6.361600pt;}
._1{margin-left:-5.301333pt;}
._8{margin-left:-4.314667pt;}
._c{margin-left:-3.217067pt;}
._e{margin-left:-2.124800pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._f{width:2.560000pt;}
._5{width:3.520000pt;}
._b{width:4.557867pt;}
._d{width:5.969067pt;}
._4{width:7.413333pt;}
._6{width:8.471467pt;}
._a{width:9.694933pt;}
._7{width:11.002667pt;}
._11{width:12.070400pt;}
._18{width:13.158400pt;}
._15{width:14.572800pt;}
._2f{width:18.560000pt;}
._1a{width:20.416000pt;}
._14{width:28.129867pt;}
._29{width:57.013333pt;}
._26{width:81.440000pt;}
._23{width:87.626667pt;}
._28{width:88.853333pt;}
._27{width:124.000000pt;}
._1c{width:166.133333pt;}
._22{width:170.346667pt;}
._2d{width:183.306667pt;}
._2e{width:189.376533pt;}
._21{width:194.346667pt;}
._2c{width:201.813333pt;}
._24{width:208.426667pt;}
._1d{width:210.293333pt;}
._25{width:215.733333pt;}
._2a{width:236.800000pt;}
._2b{width:238.643467pt;}
._20{width:294.880000pt;}
._1e{width:325.440000pt;}
._1f{width:449.173333pt;}
.fs5{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y22{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y47{bottom:104.000000pt;}
.y6d{bottom:104.154667pt;}
.y128{bottom:104.986667pt;}
.y14a{bottom:105.413333pt;}
.y16c{bottom:106.048000pt;}
.ya6{bottom:107.740000pt;}
.y20{bottom:110.194267pt;}
.y92{bottom:117.333333pt;}
.y1c1{bottom:118.181333pt;}
.y46{bottom:121.073333pt;}
.y6c{bottom:123.626667pt;}
.ya5{bottom:124.000000pt;}
.y127{bottom:125.514667pt;}
.y149{bottom:125.941333pt;}
.y16b{bottom:126.576000pt;}
.yc6{bottom:127.740000pt;}
.y1f{bottom:130.194267pt;}
.y91{bottom:130.666667pt;}
.y1c0{bottom:131.376000pt;}
.ya4{bottom:137.333333pt;}
.ye8{bottom:141.073333pt;}
.y6b{bottom:143.098667pt;}
.y104{bottom:144.000000pt;}
.y1bf{bottom:144.570667pt;}
.y18b{bottom:146.021333pt;}
.y126{bottom:146.042667pt;}
.y148{bottom:146.469333pt;}
.y16a{bottom:147.104000pt;}
.y90{bottom:147.740000pt;}
.y1e{bottom:150.194267pt;}
.ya3{bottom:154.406667pt;}
.y45{bottom:157.200000pt;}
.ye7{bottom:157.333333pt;}
.y1be{bottom:157.765333pt;}
.y6a{bottom:162.570667pt;}
.yc5{bottom:164.000000pt;}
.y1e7{bottom:164.997467pt;}
.y18a{bottom:166.549333pt;}
.y125{bottom:166.570667pt;}
.y147{bottom:166.997333pt;}
.y169{bottom:167.632000pt;}
.y1d{bottom:170.194267pt;}
.y1bd{bottom:170.960000pt;}
.ye6{bottom:174.406667pt;}
.y44{bottom:176.800000pt;}
.y1e6{bottom:181.664133pt;}
.y69{bottom:182.042667pt;}
.yc4{bottom:184.000000pt;}
.y1bc{bottom:184.154667pt;}
.ya2{bottom:186.730667pt;}
.y8f{bottom:186.752000pt;}
.y189{bottom:187.077333pt;}
.y124{bottom:187.098667pt;}
.y146{bottom:187.525333pt;}
.y168{bottom:188.160000pt;}
.y103{bottom:188.912667pt;}
.y1c{bottom:190.194267pt;}
.y43{bottom:196.400000pt;}
.y1bb{bottom:197.349333pt;}
.y1e5{bottom:198.330800pt;}
.y68{bottom:201.514667pt;}
.yc3{bottom:204.000000pt;}
.ya1{bottom:206.058667pt;}
.y8e{bottom:206.080000pt;}
.y188{bottom:207.605333pt;}
.y123{bottom:207.626667pt;}
.y145{bottom:208.053333pt;}
.y167{bottom:208.688000pt;}
.y1b{bottom:210.194267pt;}
.y1ba{bottom:210.544000pt;}
.ye5{bottom:212.288000pt;}
.y102{bottom:212.878800pt;}
.y1e4{bottom:214.997467pt;}
.y42{bottom:216.000000pt;}
.y67{bottom:220.986667pt;}
.y1b9{bottom:223.738667pt;}
.yc2{bottom:224.000000pt;}
.ya0{bottom:225.386667pt;}
.y8d{bottom:225.408000pt;}
.y187{bottom:228.133333pt;}
.y122{bottom:228.154667pt;}
.y144{bottom:228.581333pt;}
.y166{bottom:229.216000pt;}
.y1a{bottom:230.194267pt;}
.ye4{bottom:232.016000pt;}
.y41{bottom:235.600000pt;}
.y101{bottom:236.865467pt;}
.y1b8{bottom:236.933333pt;}
.y66{bottom:240.458667pt;}
.yc1{bottom:244.000000pt;}
.y9f{bottom:244.714667pt;}
.y8c{bottom:244.736000pt;}
.y1e3{bottom:248.330800pt;}
.y186{bottom:248.661333pt;}
.y121{bottom:248.682667pt;}
.y143{bottom:249.109333pt;}
.y165{bottom:249.744000pt;}
.y1b7{bottom:250.128000pt;}
.y19{bottom:250.194267pt;}
.ye3{bottom:251.744000pt;}
.y40{bottom:255.200000pt;}
.y65{bottom:259.930667pt;}
.y100{bottom:260.852133pt;}
.y1b6{bottom:263.322667pt;}
.yc0{bottom:264.000000pt;}
.y9e{bottom:264.042667pt;}
.y8b{bottom:264.064000pt;}
.y185{bottom:269.189333pt;}
.y120{bottom:269.210667pt;}
.y142{bottom:269.637333pt;}
.y18{bottom:270.194267pt;}
.y164{bottom:270.272000pt;}
.ye2{bottom:271.472000pt;}
.y3f{bottom:274.800000pt;}
.y1b5{bottom:276.517333pt;}
.y64{bottom:279.402667pt;}
.y9d{bottom:283.370667pt;}
.y8a{bottom:283.392000pt;}
.ybf{bottom:284.000000pt;}
.yff{bottom:284.838800pt;}
.y1e2{bottom:284.997467pt;}
.y1b4{bottom:289.712000pt;}
.y184{bottom:289.717333pt;}
.y11f{bottom:289.738667pt;}
.y141{bottom:290.165333pt;}
.y17{bottom:290.194267pt;}
.y163{bottom:290.800000pt;}
.ye1{bottom:291.264000pt;}
.y3e{bottom:294.400000pt;}
.y63{bottom:298.874667pt;}
.y1e1{bottom:301.664133pt;}
.y9c{bottom:302.698667pt;}
.y89{bottom:302.720000pt;}
.y1b3{bottom:302.906667pt;}
.ybe{bottom:304.000000pt;}
.yfe{bottom:308.825467pt;}
.y16{bottom:310.194267pt;}
.y183{bottom:310.245333pt;}
.y11e{bottom:310.266667pt;}
.y140{bottom:310.693333pt;}
.ye0{bottom:310.992000pt;}
.y162{bottom:311.328000pt;}
.y3d{bottom:314.000000pt;}
.y1b2{bottom:316.101333pt;}
.y1e0{bottom:318.330800pt;}
.y62{bottom:318.346667pt;}
.y9b{bottom:322.026667pt;}
.y88{bottom:322.048000pt;}
.ybd{bottom:324.000000pt;}
.y1b1{bottom:329.296000pt;}
.y15{bottom:330.194267pt;}
.ydf{bottom:330.720000pt;}
.y182{bottom:330.773333pt;}
.y11d{bottom:330.794667pt;}
.y13f{bottom:331.221333pt;}
.y161{bottom:331.856000pt;}
.yfd{bottom:332.812133pt;}
.y3c{bottom:333.600000pt;}
.y1df{bottom:334.997467pt;}
.y61{bottom:337.818667pt;}
.y9a{bottom:341.354667pt;}
.y87{bottom:341.376000pt;}
.y1b0{bottom:342.490667pt;}
.ybc{bottom:344.000000pt;}
.y14{bottom:350.194267pt;}
.yde{bottom:350.448000pt;}
.y181{bottom:351.301333pt;}
.y11c{bottom:351.322667pt;}
.y1de{bottom:351.664133pt;}
.y13e{bottom:351.749333pt;}
.y160{bottom:352.384000pt;}
.y3b{bottom:353.200000pt;}
.y1af{bottom:355.685333pt;}
.yfc{bottom:356.798800pt;}
.y60{bottom:357.290667pt;}
.y99{bottom:360.682667pt;}
.y86{bottom:360.704000pt;}
.ybb{bottom:364.000000pt;}
.y1dd{bottom:368.330800pt;}
.y1ae{bottom:368.880000pt;}
.ydd{bottom:370.176000pt;}
.y13{bottom:370.194267pt;}
.y180{bottom:371.829333pt;}
.y11b{bottom:371.850667pt;}
.y13d{bottom:372.277333pt;}
.y3a{bottom:372.800000pt;}
.y15f{bottom:372.912000pt;}
.y5f{bottom:376.762667pt;}
.y98{bottom:380.010667pt;}
.y85{bottom:380.032000pt;}
.yfb{bottom:380.785467pt;}
.y1ad{bottom:382.074667pt;}
.yba{bottom:384.000000pt;}
.y1dc{bottom:384.997467pt;}
.ydc{bottom:389.904000pt;}
.y12{bottom:390.194267pt;}
.y17f{bottom:392.357333pt;}
.y11a{bottom:392.378667pt;}
.y39{bottom:392.400000pt;}
.y13c{bottom:392.805333pt;}
.y15e{bottom:393.440000pt;}
.y1ac{bottom:395.269333pt;}
.y5e{bottom:396.234667pt;}
.y97{bottom:399.338667pt;}
.y84{bottom:399.360000pt;}
.y1db{bottom:401.664133pt;}
.yb9{bottom:404.000000pt;}
.yfa{bottom:404.772133pt;}
.y1ab{bottom:408.464000pt;}
.ydb{bottom:409.632000pt;}
.y11{bottom:410.194267pt;}
.y38{bottom:412.000000pt;}
.y17e{bottom:412.885333pt;}
.y119{bottom:412.906667pt;}
.y13b{bottom:413.333333pt;}
.y15d{bottom:413.968000pt;}
.y5d{bottom:415.706667pt;}
.y1da{bottom:418.330800pt;}
.y83{bottom:418.688000pt;}
.y96{bottom:418.778667pt;}
.y1aa{bottom:421.658667pt;}
.yb8{bottom:424.000000pt;}
.yf9{bottom:428.758800pt;}
.yda{bottom:429.360000pt;}
.y10{bottom:430.194267pt;}
.y37{bottom:431.600000pt;}
.y17d{bottom:433.413333pt;}
.y118{bottom:433.434667pt;}
.y13a{bottom:433.866667pt;}
.y15c{bottom:434.496000pt;}
.y1a9{bottom:434.853333pt;}
.y1d9{bottom:434.997467pt;}
.y5c{bottom:435.178667pt;}
.y82{bottom:438.016000pt;}
.y95{bottom:438.106667pt;}
.yb7{bottom:444.000000pt;}
.y1a8{bottom:448.048000pt;}
.yd9{bottom:449.088000pt;}
.yf{bottom:450.194267pt;}
.y36{bottom:451.200000pt;}
.y1d8{bottom:451.664133pt;}
.yf8{bottom:452.745467pt;}
.y17c{bottom:453.941333pt;}
.y117{bottom:453.962667pt;}
.y139{bottom:454.400000pt;}
.y5b{bottom:454.650667pt;}
.y15b{bottom:455.024000pt;}
.y81{bottom:457.344000pt;}
.y94{bottom:457.434667pt;}
.y1a7{bottom:461.242667pt;}
.yb6{bottom:464.000000pt;}
.y1d7{bottom:468.330800pt;}
.yd8{bottom:468.816000pt;}
.ye{bottom:470.194267pt;}
.y35{bottom:470.800000pt;}
.y5a{bottom:474.122667pt;}
.y1a6{bottom:474.437333pt;}
.y17b{bottom:474.469333pt;}
.y116{bottom:474.490667pt;}
.y15a{bottom:475.552000pt;}
.y80{bottom:476.672000pt;}
.yf7{bottom:476.732133pt;}
.y93{bottom:476.762667pt;}
.yb5{bottom:484.000000pt;}
.y1d6{bottom:484.997467pt;}
.y1a5{bottom:487.632000pt;}
.yd7{bottom:488.544000pt;}
.yd{bottom:490.194267pt;}
.y34{bottom:490.400000pt;}
.y59{bottom:493.594667pt;}
.y17a{bottom:494.997333pt;}
.y115{bottom:495.018667pt;}
.y138{bottom:495.552000pt;}
.y159{bottom:496.080000pt;}
.y7f{bottom:496.090667pt;}
.yf6{bottom:500.718800pt;}
.y1a4{bottom:500.826667pt;}
.y1d5{bottom:501.664133pt;}
.yb4{bottom:504.000000pt;}
.yd6{bottom:508.272000pt;}
.y33{bottom:510.000000pt;}
.yc{bottom:510.194267pt;}
.y58{bottom:513.045333pt;}
.y1a3{bottom:514.021333pt;}
.y7e{bottom:515.418667pt;}
.y179{bottom:515.525333pt;}
.y114{bottom:515.546667pt;}
.y137{bottom:516.080000pt;}
.y158{bottom:516.608000pt;}
.y1d4{bottom:518.330800pt;}
.yb3{bottom:524.000000pt;}
.yf5{bottom:524.705467pt;}
.y1a2{bottom:527.216000pt;}
.yd5{bottom:528.005333pt;}
.y32{bottom:529.600000pt;}
.yb{bottom:530.194267pt;}
.y57{bottom:532.517333pt;}
.y7d{bottom:534.746667pt;}
.y1d3{bottom:534.997467pt;}
.y178{bottom:536.053333pt;}
.y113{bottom:536.074667pt;}
.y136{bottom:536.608000pt;}
.y157{bottom:537.136000pt;}
.y1a1{bottom:540.410667pt;}
.yb2{bottom:544.000000pt;}
.yd4{bottom:547.808000pt;}
.yf4{bottom:548.692133pt;}
.y31{bottom:549.200000pt;}
.ya{bottom:550.194267pt;}
.y1d2{bottom:551.664133pt;}
.y56{bottom:551.989333pt;}
.y1a0{bottom:553.605333pt;}
.y7c{bottom:554.074667pt;}
.y177{bottom:556.581333pt;}
.y112{bottom:556.602667pt;}
.y135{bottom:557.136000pt;}
.y156{bottom:557.664000pt;}
.yb1{bottom:564.000000pt;}
.y19f{bottom:566.800000pt;}
.yd3{bottom:567.536000pt;}
.y1d1{bottom:568.330800pt;}
.y30{bottom:568.800000pt;}
.y9{bottom:570.194267pt;}
.y55{bottom:571.461333pt;}
.yf3{bottom:572.678800pt;}
.y7b{bottom:573.402667pt;}
.y176{bottom:577.109333pt;}
.y111{bottom:577.130667pt;}
.y134{bottom:577.664000pt;}
.y155{bottom:578.192000pt;}
.y19e{bottom:579.994667pt;}
.yb0{bottom:584.000000pt;}
.y1d0{bottom:584.997467pt;}
.yd2{bottom:587.264000pt;}
.y2f{bottom:588.400000pt;}
.y8{bottom:590.194267pt;}
.y54{bottom:590.869333pt;}
.y7a{bottom:592.730667pt;}
.y19d{bottom:593.189333pt;}
.y175{bottom:597.637333pt;}
.y110{bottom:597.658667pt;}
.y133{bottom:598.192000pt;}
.y154{bottom:598.720000pt;}
.y1cf{bottom:601.664133pt;}
.yaf{bottom:604.000000pt;}
.y19c{bottom:606.384000pt;}
.yd1{bottom:606.992000pt;}
.y2e{bottom:608.000000pt;}
.y53{bottom:610.341333pt;}
.y79{bottom:612.058667pt;}
.y174{bottom:618.165333pt;}
.y10f{bottom:618.186667pt;}
.y1ce{bottom:618.330800pt;}
.y132{bottom:618.720000pt;}
.y153{bottom:619.248000pt;}
.y19b{bottom:619.578667pt;}
.yae{bottom:624.000000pt;}
.yd0{bottom:626.720000pt;}
.y2d{bottom:627.600000pt;}
.y52{bottom:629.813333pt;}
.y7{bottom:630.194267pt;}
.y78{bottom:631.386667pt;}
.y19a{bottom:632.773333pt;}
.y1cd{bottom:634.997467pt;}
.y173{bottom:638.693333pt;}
.y10e{bottom:638.714667pt;}
.y131{bottom:639.248000pt;}
.y152{bottom:639.776000pt;}
.yad{bottom:644.000000pt;}
.y199{bottom:645.968000pt;}
.ycf{bottom:646.448000pt;}
.y6{bottom:646.860933pt;}
.y2c{bottom:647.200000pt;}
.yf2{bottom:648.000000pt;}
.y51{bottom:649.285333pt;}
.y77{bottom:650.714667pt;}
.y1cc{bottom:651.664133pt;}
.y198{bottom:659.162667pt;}
.y172{bottom:659.221333pt;}
.y10d{bottom:659.242667pt;}
.y130{bottom:659.776000pt;}
.y151{bottom:660.304000pt;}
.yac{bottom:664.000000pt;}
.yce{bottom:666.176000pt;}
.y2b{bottom:666.800000pt;}
.yf1{bottom:667.600000pt;}
.y1cb{bottom:668.330800pt;}
.y50{bottom:668.757333pt;}
.y76{bottom:670.042667pt;}
.y197{bottom:672.357333pt;}
.y171{bottom:679.749333pt;}
.y10c{bottom:679.770667pt;}
.y12f{bottom:680.304000pt;}
.y150{bottom:680.832000pt;}
.yab{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y1ca{bottom:684.997467pt;}
.y196{bottom:685.552000pt;}
.ycd{bottom:685.904000pt;}
.y2a{bottom:686.400000pt;}
.yf0{bottom:687.200000pt;}
.y4f{bottom:688.229333pt;}
.y75{bottom:689.370667pt;}
.y195{bottom:698.746667pt;}
.y170{bottom:700.277333pt;}
.y10b{bottom:700.298667pt;}
.y12e{bottom:700.832000pt;}
.y14f{bottom:701.360000pt;}
.y1c9{bottom:701.664133pt;}
.yaa{bottom:704.000000pt;}
.y4{bottom:704.314933pt;}
.ycc{bottom:705.632000pt;}
.y29{bottom:706.000000pt;}
.yef{bottom:706.800000pt;}
.y4e{bottom:707.701333pt;}
.y74{bottom:708.698667pt;}
.y194{bottom:711.941333pt;}
.y1c8{bottom:718.330800pt;}
.y16f{bottom:720.805333pt;}
.y10a{bottom:720.826667pt;}
.y12d{bottom:721.360000pt;}
.y14e{bottom:721.888000pt;}
.ya9{bottom:724.000000pt;}
.y193{bottom:725.136000pt;}
.ycb{bottom:725.360000pt;}
.y28{bottom:725.600000pt;}
.yee{bottom:726.400000pt;}
.y4d{bottom:727.173333pt;}
.y73{bottom:728.026667pt;}
.y1c7{bottom:734.997467pt;}
.y192{bottom:738.330667pt;}
.y16e{bottom:741.333333pt;}
.y109{bottom:741.354667pt;}
.y12c{bottom:741.888000pt;}
.y14d{bottom:742.416000pt;}
.ya8{bottom:744.000000pt;}
.yca{bottom:745.088000pt;}
.y27{bottom:745.200000pt;}
.yed{bottom:746.000000pt;}
.y4c{bottom:746.645333pt;}
.y72{bottom:747.354667pt;}
.y191{bottom:751.525333pt;}
.y1c6{bottom:751.664133pt;}
.y16d{bottom:761.866667pt;}
.y108{bottom:761.882667pt;}
.y12b{bottom:762.416000pt;}
.y14c{bottom:762.944000pt;}
.y3{bottom:764.000000pt;}
.y26{bottom:764.800000pt;}
.yc9{bottom:764.816000pt;}
.y190{bottom:764.858667pt;}
.yec{bottom:765.600000pt;}
.y4b{bottom:766.117333pt;}
.y71{bottom:766.682667pt;}
.y1c5{bottom:768.330800pt;}
.y18f{bottom:778.192000pt;}
.y107{bottom:782.410667pt;}
.y12a{bottom:782.944000pt;}
.y14b{bottom:783.472000pt;}
.ya7{bottom:784.000000pt;}
.y25{bottom:784.400000pt;}
.yc8{bottom:784.544000pt;}
.y1c4{bottom:784.997467pt;}
.yeb{bottom:785.200000pt;}
.y4a{bottom:785.589333pt;}
.y70{bottom:786.010667pt;}
.y2{bottom:790.666667pt;}
.y18e{bottom:791.525333pt;}
.y1c3{bottom:801.664133pt;}
.y106{bottom:802.938667pt;}
.y129{bottom:803.472000pt;}
.y24{bottom:804.000000pt;}
.yc7{bottom:804.272000pt;}
.yea{bottom:804.800000pt;}
.y18d{bottom:804.858667pt;}
.y49{bottom:805.061333pt;}
.y6f{bottom:805.338667pt;}
.y105{bottom:823.466667pt;}
.y18c{bottom:823.866667pt;}
.y23{bottom:824.000000pt;}
.y1c2{bottom:824.000133pt;}
.ye9{bottom:824.400000pt;}
.y48{bottom:824.533333pt;}
.y6e{bottom:824.666667pt;}
.h7{height:26.945443pt;}
.h13{height:34.730667pt;}
.h1{height:35.546875pt;}
.h8{height:36.229167pt;}
.h10{height:43.413333pt;}
.h3{height:44.960000pt;}
.h5{height:45.286458pt;}
.h12{height:45.531250pt;}
.h11{height:49.382654pt;}
.h4{height:54.343750pt;}
.ha{height:54.429083pt;}
.h9{height:54.599750pt;}
.hc{height:58.712625pt;}
.hb{height:58.797958pt;}
.hd{height:58.861958pt;}
.hf{height:58.904625pt;}
.he{height:59.139292pt;}
.h6{height:59.160625pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x8{left:64.112933pt;}
.x7{left:73.228400pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x5{left:120.000000pt;}
.xa{left:160.481733pt;}
.x9{left:184.286267pt;}
.x6{left:210.666667pt;}
.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; }
  