
    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_4b10ebd3edb1c039d23ccfa9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f04a47ce20ad2ef1ed8ed8c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e4ce3f22ea4c13b05ebbf28a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b25f4ff27c6826a4d07b3953.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_db9af0f84928894c62df0b92.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_471ab09155351f21d9089e40.woff2')format("woff");}.ff7{font-family:ff7;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls52{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls13{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.136800px;}
.ls2{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.162000px;}
.ls31{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.197640px;}
.ls7{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.720000px;}
.ls36{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.800000px;}
.ls2e{letter-spacing:1.814400px;}
.lsc{letter-spacing:2.160000px;}
.ls40{letter-spacing:2.520000px;}
.ls47{letter-spacing:2.880000px;}
.ls10{letter-spacing:3.240000px;}
.ls1c{letter-spacing:3.600000px;}
.ls35{letter-spacing:3.607200px;}
.ls44{letter-spacing:3.960000px;}
.ls12{letter-spacing:4.320000px;}
.lsb{letter-spacing:4.680000px;}
.ls5{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.400000px;}
.ls3d{letter-spacing:5.760000px;}
.ls4a{letter-spacing:6.120000px;}
.ls27{letter-spacing:6.480000px;}
.lsa{letter-spacing:6.840000px;}
.ls11{letter-spacing:7.200000px;}
.ls26{letter-spacing:7.560000px;}
.ls51{letter-spacing:7.920000px;}
.ls28{letter-spacing:8.280000px;}
.ls23{letter-spacing:9.000000px;}
.ls3e{letter-spacing:9.360000px;}
.ls39{letter-spacing:9.720000px;}
.ls3c{letter-spacing:10.080000px;}
.ls46{letter-spacing:10.094400px;}
.ls9{letter-spacing:10.800000px;}
.ls24{letter-spacing:11.160000px;}
.ls4b{letter-spacing:11.520000px;}
.ls21{letter-spacing:11.880000px;}
.ls1b{letter-spacing:12.240000px;}
.ls1a{letter-spacing:12.600000px;}
.ls22{letter-spacing:12.960000px;}
.ls53{letter-spacing:13.320000px;}
.ls20{letter-spacing:13.680000px;}
.ls3a{letter-spacing:14.047200px;}
.ls3f{letter-spacing:15.120000px;}
.ls1f{letter-spacing:15.480000px;}
.ls42{letter-spacing:15.840000px;}
.ls4c{letter-spacing:16.920000px;}
.lsf{letter-spacing:17.280000px;}
.lse{letter-spacing:17.640000px;}
.ls25{letter-spacing:18.000000px;}
.ls45{letter-spacing:18.360000px;}
.ls34{letter-spacing:18.720000px;}
.ls49{letter-spacing:19.080000px;}
.ls4e{letter-spacing:21.600000px;}
.ls2a{letter-spacing:21.960000px;}
.ls2b{letter-spacing:22.320000px;}
.ls54{letter-spacing:23.040000px;}
.ls41{letter-spacing:25.560000px;}
.ls43{letter-spacing:25.920000px;}
.ls1{letter-spacing:27.864000px;}
.ls3b{letter-spacing:28.080000px;}
.ls29{letter-spacing:29.520000px;}
.ls1d{letter-spacing:32.040000px;}
.ls37{letter-spacing:51.264000px;}
.ls2d{letter-spacing:56.547720px;}
.ls50{letter-spacing:86.400000px;}
.lsd{letter-spacing:90.000000px;}
.ls3{letter-spacing:194.400000px;}
.ls4d{letter-spacing:289.440000px;}
.ls4f{letter-spacing:467.640000px;}
.ls0{letter-spacing:711.720000px;}
.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;}
}
.wsb9{word-spacing:-20.160000px;}
.ws0{word-spacing:-19.944000px;}
.ws5{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws45{word-spacing:-17.928000px;}
.ws4e{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.640000px;}
.wsc7{word-spacing:-17.568000px;}
.ws7a{word-spacing:-13.662000px;}
.ws61{word-spacing:-13.608000px;}
.ws5f{word-spacing:-13.500000px;}
.ws60{word-spacing:-13.338000px;}
.ws3d{word-spacing:-0.504000px;}
.ws2f{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.360000px;}
.ws78{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws76{word-spacing:0.054000px;}
.ws9{word-spacing:0.072000px;}
.ws8c{word-spacing:0.144000px;}
.ws75{word-spacing:0.162000px;}
.wsb{word-spacing:0.216000px;}
.wsd{word-spacing:0.288000px;}
.ws77{word-spacing:0.324000px;}
.ws22{word-spacing:0.360000px;}
.ws79{word-spacing:0.378000px;}
.ws29{word-spacing:0.576000px;}
.ws86{word-spacing:0.648000px;}
.ws90{word-spacing:0.720000px;}
.wsb3{word-spacing:0.792000px;}
.wsa7{word-spacing:0.864000px;}
.ws27{word-spacing:0.936000px;}
.ws26{word-spacing:1.008000px;}
.ws25{word-spacing:1.080000px;}
.ws21{word-spacing:1.296000px;}
.wsb4{word-spacing:1.368000px;}
.ws58{word-spacing:1.440000px;}
.wsae{word-spacing:1.656000px;}
.ws20{word-spacing:1.728000px;}
.ws24{word-spacing:1.800000px;}
.ws23{word-spacing:1.944000px;}
.wsc1{word-spacing:2.016000px;}
.ws34{word-spacing:2.088000px;}
.ws33{word-spacing:2.160000px;}
.wsbd{word-spacing:2.376000px;}
.ws18{word-spacing:2.448000px;}
.ws98{word-spacing:2.520000px;}
.wsad{word-spacing:2.736000px;}
.ws95{word-spacing:2.808000px;}
.ws3b{word-spacing:2.880000px;}
.wsc3{word-spacing:3.096000px;}
.ws3a{word-spacing:3.168000px;}
.ws3c{word-spacing:3.240000px;}
.ws99{word-spacing:3.384000px;}
.ws47{word-spacing:3.528000px;}
.ws46{word-spacing:3.600000px;}
.ws43{word-spacing:3.816000px;}
.ws42{word-spacing:3.888000px;}
.ws44{word-spacing:3.960000px;}
.ws32{word-spacing:4.248000px;}
.ws19{word-spacing:4.320000px;}
.wsca{word-spacing:4.536000px;}
.ws1a{word-spacing:4.608000px;}
.ws30{word-spacing:4.680000px;}
.ws7f{word-spacing:4.896000px;}
.ws36{word-spacing:4.968000px;}
.ws35{word-spacing:5.040000px;}
.ws1d{word-spacing:5.256000px;}
.ws1f{word-spacing:5.328000px;}
.ws1e{word-spacing:5.400000px;}
.wse{word-spacing:5.688000px;}
.wsc{word-spacing:5.760000px;}
.wsc8{word-spacing:5.904000px;}
.ws7e{word-spacing:5.976000px;}
.wsb2{word-spacing:6.048000px;}
.ws7d{word-spacing:6.120000px;}
.ws69{word-spacing:6.408000px;}
.ws68{word-spacing:6.480000px;}
.ws2e{word-spacing:6.696000px;}
.ws49{word-spacing:6.768000px;}
.ws2d{word-spacing:6.840000px;}
.wsa0{word-spacing:7.056000px;}
.ws41{word-spacing:7.128000px;}
.ws40{word-spacing:7.200000px;}
.ws59{word-spacing:7.272000px;}
.ws66{word-spacing:7.416000px;}
.ws3f{word-spacing:7.488000px;}
.ws3e{word-spacing:7.560000px;}
.ws67{word-spacing:7.848000px;}
.wsaa{word-spacing:7.920000px;}
.ws6d{word-spacing:8.208000px;}
.ws6c{word-spacing:8.280000px;}
.wsa1{word-spacing:8.856000px;}
.ws31{word-spacing:8.928000px;}
.ws5e{word-spacing:9.000000px;}
.ws8b{word-spacing:9.288000px;}
.ws4d{word-spacing:9.360000px;}
.ws8a{word-spacing:9.576000px;}
.ws89{word-spacing:9.648000px;}
.ws81{word-spacing:9.720000px;}
.ws12{word-spacing:9.936000px;}
.ws13{word-spacing:10.008000px;}
.ws85{word-spacing:10.080000px;}
.wsc6{word-spacing:10.368000px;}
.ws9b{word-spacing:10.440000px;}
.ws2c{word-spacing:10.656000px;}
.ws2b{word-spacing:10.728000px;}
.ws2a{word-spacing:10.800000px;}
.ws62{word-spacing:11.088000px;}
.ws63{word-spacing:11.160000px;}
.wsa6{word-spacing:11.448000px;}
.wsa5{word-spacing:11.520000px;}
.ws8e{word-spacing:11.736000px;}
.ws5a{word-spacing:11.808000px;}
.ws5b{word-spacing:11.880000px;}
.ws5d{word-spacing:12.096000px;}
.ws5c{word-spacing:12.168000px;}
.ws1b{word-spacing:12.240000px;}
.ws74{word-spacing:12.456000px;}
.ws48{word-spacing:12.528000px;}
.ws73{word-spacing:12.600000px;}
.ws52{word-spacing:12.888000px;}
.ws53{word-spacing:12.960000px;}
.ws80{word-spacing:13.248000px;}
.wsc4{word-spacing:13.320000px;}
.ws57{word-spacing:13.536000px;}
.wsa2{word-spacing:13.608000px;}
.ws56{word-spacing:13.680000px;}
.wsd1{word-spacing:14.040000px;}
.ws71{word-spacing:14.256000px;}
.wsa3{word-spacing:14.328000px;}
.ws82{word-spacing:14.400000px;}
.wsaf{word-spacing:14.616000px;}
.ws72{word-spacing:14.688000px;}
.wsd0{word-spacing:14.760000px;}
.wsb0{word-spacing:14.832000px;}
.ws9a{word-spacing:14.976000px;}
.wsb1{word-spacing:15.048000px;}
.ws6a{word-spacing:15.120000px;}
.ws4f{word-spacing:15.336000px;}
.ws50{word-spacing:15.408000px;}
.ws51{word-spacing:15.480000px;}
.ws9f{word-spacing:15.768000px;}
.ws93{word-spacing:15.840000px;}
.ws94{word-spacing:16.128000px;}
.ws91{word-spacing:16.560000px;}
.wsc5{word-spacing:16.848000px;}
.wsb8{word-spacing:16.920000px;}
.wsc2{word-spacing:17.208000px;}
.ws37{word-spacing:17.496000px;}
.ws4c{word-spacing:17.568000px;}
.ws39{word-spacing:17.640000px;}
.ws38{word-spacing:17.856000px;}
.ws64{word-spacing:17.928000px;}
.ws65{word-spacing:18.000000px;}
.wsab{word-spacing:18.360000px;}
.ws7c{word-spacing:18.648000px;}
.ws11{word-spacing:18.720000px;}
.ws10{word-spacing:18.936000px;}
.ws1c{word-spacing:19.008000px;}
.wsf{word-spacing:19.080000px;}
.wsac{word-spacing:19.728000px;}
.wsb5{word-spacing:19.800000px;}
.ws96{word-spacing:20.088000px;}
.ws97{word-spacing:20.160000px;}
.ws92{word-spacing:20.520000px;}
.wsa4{word-spacing:21.168000px;}
.ws87{word-spacing:21.888000px;}
.ws88{word-spacing:21.960000px;}
.ws70{word-spacing:22.248000px;}
.ws6f{word-spacing:22.320000px;}
.wscd{word-spacing:22.680000px;}
.wsce{word-spacing:22.896000px;}
.wscc{word-spacing:22.968000px;}
.wscb{word-spacing:23.040000px;}
.wsbe{word-spacing:23.328000px;}
.wsbb{word-spacing:23.688000px;}
.wsba{word-spacing:23.760000px;}
.ws15{word-spacing:24.408000px;}
.ws14{word-spacing:24.480000px;}
.ws9d{word-spacing:25.200000px;}
.ws9e{word-spacing:25.488000px;}
.ws9c{word-spacing:25.560000px;}
.wsa8{word-spacing:26.136000px;}
.wsa9{word-spacing:26.208000px;}
.ws7b{word-spacing:26.568000px;}
.wsbf{word-spacing:27.288000px;}
.wscf{word-spacing:27.360000px;}
.ws84{word-spacing:27.720000px;}
.ws83{word-spacing:28.008000px;}
.wsc9{word-spacing:28.296000px;}
.wsc0{word-spacing:28.800000px;}
.ws8f{word-spacing:29.160000px;}
.ws6e{word-spacing:29.448000px;}
.wsb6{word-spacing:29.880000px;}
.wsb7{word-spacing:30.240000px;}
.ws4b{word-spacing:32.328000px;}
.ws4a{word-spacing:32.400000px;}
.wsbc{word-spacing:32.760000px;}
.ws6b{word-spacing:33.768000px;}
.ws16{word-spacing:35.208000px;}
.ws17{word-spacing:35.280000px;}
.ws55{word-spacing:35.568000px;}
.ws54{word-spacing:35.640000px;}
.ws8d{word-spacing:40.608000px;}
._f{margin-left:-19.080000px;}
._10{margin-left:-6.624000px;}
._0{margin-left:-1.152000px;}
._1{width:1.008000px;}
._5{width:2.736000px;}
._b{width:3.744000px;}
._9{width:4.824000px;}
._2{width:5.904000px;}
._8{width:7.128000px;}
._a{width:8.712000px;}
._3{width:9.792000px;}
._6{width:10.800000px;}
._4{width:12.456000px;}
._11{width:14.904000px;}
._14{width:16.056000px;}
._12{width:19.008000px;}
._e{width:21.960000px;}
._16{width:23.184000px;}
._d{width:28.872000px;}
._13{width:30.168000px;}
._15{width:32.688000px;}
._c{width:35.424000px;}
._7{width:194.400000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:2.880000px;}
.y61{bottom:2.970000px;}
.y38{bottom:3.870000px;}
.y37{bottom:24.570000px;}
.y2{bottom:58.140000px;}
.y56{bottom:110.790000px;}
.y6a{bottom:113.220000px;}
.y1bd{bottom:113.310000px;}
.y1a0{bottom:116.010000px;}
.y1ae{bottom:117.090000px;}
.y18f{bottom:120.330000px;}
.y2d{bottom:120.690000px;}
.ybe{bottom:124.200000px;}
.y17f{bottom:124.650000px;}
.y99{bottom:126.990000px;}
.y12f{bottom:127.080000px;}
.y119{bottom:129.780000px;}
.y55{bottom:131.490000px;}
.y1bc{bottom:133.920000px;}
.y69{bottom:134.280000px;}
.y19f{bottom:136.710000px;}
.y1ad{bottom:137.790000px;}
.y18e{bottom:141.030000px;}
.y2c{bottom:141.390000px;}
.ybd{bottom:144.090000px;}
.y17e{bottom:145.350000px;}
.y12e{bottom:147.780000px;}
.y98{bottom:147.960000px;}
.y118{bottom:150.480000px;}
.yda{bottom:150.750000px;}
.y54{bottom:152.190000px;}
.y1bb{bottom:154.620000px;}
.y68{bottom:155.250000px;}
.y19e{bottom:157.410000px;}
.y1ac{bottom:158.490000px;}
.y2b{bottom:162.090000px;}
.ybc{bottom:163.980000px;}
.y17d{bottom:166.050000px;}
.y18c{bottom:166.230000px;}
.y12d{bottom:168.480000px;}
.y97{bottom:169.020000px;}
.y131{bottom:171.180000px;}
.yd9{bottom:171.450000px;}
.y1ba{bottom:175.320000px;}
.y67{bottom:176.220000px;}
.y19d{bottom:178.110000px;}
.y1ab{bottom:179.190000px;}
.y18d{bottom:182.430000px;}
.y2a{bottom:182.790000px;}
.ybb{bottom:183.870000px;}
.y17c{bottom:186.750000px;}
.y18b{bottom:186.930000px;}
.y12c{bottom:189.180000px;}
.y96{bottom:189.990000px;}
.y117{bottom:191.880000px;}
.yd8{bottom:192.150000px;}
.y53{bottom:193.590000px;}
.y1b9{bottom:196.020000px;}
.y66{bottom:197.280000px;}
.y19c{bottom:198.810000px;}
.y1aa{bottom:199.890000px;}
.y102{bottom:201.600000px;}
.y29{bottom:203.490000px;}
.yba{bottom:203.670000px;}
.y17b{bottom:207.450000px;}
.y18a{bottom:207.630000px;}
.y12b{bottom:209.880000px;}
.y95{bottom:210.960000px;}
.y116{bottom:212.580000px;}
.yd7{bottom:212.850000px;}
.y1b8{bottom:216.720000px;}
.y65{bottom:218.250000px;}
.y52{bottom:218.700000px;}
.y19b{bottom:219.510000px;}
.y1a9{bottom:220.590000px;}
.y101{bottom:220.860000px;}
.yb9{bottom:223.560000px;}
.y17a{bottom:228.150000px;}
.y189{bottom:228.330000px;}
.y28{bottom:228.600000px;}
.y12a{bottom:230.580000px;}
.y94{bottom:232.020000px;}
.y40{bottom:232.830000px;}
.y115{bottom:233.280000px;}
.yd6{bottom:233.550000px;}
.y19a{bottom:236.340000px;}
.y64{bottom:239.220000px;}
.y51{bottom:239.400000px;}
.y100{bottom:241.560000px;}
.yb8{bottom:243.450000px;}
.y179{bottom:248.850000px;}
.y188{bottom:249.030000px;}
.y129{bottom:251.280000px;}
.y93{bottom:252.990000px;}
.y3f{bottom:253.530000px;}
.y114{bottom:253.980000px;}
.yd5{bottom:254.250000px;}
.y50{bottom:260.100000px;}
.y63{bottom:260.280000px;}
.yff{bottom:262.260000px;}
.yb7{bottom:263.340000px;}
.y27{bottom:267.390000px;}
.y178{bottom:269.550000px;}
.y187{bottom:269.730000px;}
.yd4{bottom:271.080000px;}
.y128{bottom:271.980000px;}
.y92{bottom:273.960000px;}
.y3e{bottom:274.230000px;}
.y113{bottom:274.680000px;}
.y62{bottom:281.250000px;}
.yfe{bottom:282.960000px;}
.yb6{bottom:283.230000px;}
.y26{bottom:288.090000px;}
.y177{bottom:290.250000px;}
.y186{bottom:290.430000px;}
.y127{bottom:292.680000px;}
.y3d{bottom:294.930000px;}
.y91{bottom:295.020000px;}
.y112{bottom:295.380000px;}
.y4f{bottom:298.800000px;}
.y60{bottom:302.220000px;}
.yb5{bottom:303.120000px;}
.yfd{bottom:303.660000px;}
.y25{bottom:308.790000px;}
.y176{bottom:310.950000px;}
.y185{bottom:311.130000px;}
.y3c{bottom:315.630000px;}
.y90{bottom:315.990000px;}
.y111{bottom:316.080000px;}
.y4e{bottom:319.500000px;}
.yb4{bottom:322.920000px;}
.y5f{bottom:323.280000px;}
.yfc{bottom:324.360000px;}
.y24{bottom:329.490000px;}
.y184{bottom:331.830000px;}
.y14c{bottom:332.460000px;}
.y126{bottom:334.080000px;}
.y3b{bottom:336.330000px;}
.y110{bottom:336.780000px;}
.y8f{bottom:336.960000px;}
.y4d{bottom:340.200000px;}
.yb3{bottom:342.810000px;}
.y5d{bottom:344.250000px;}
.yfb{bottom:345.060000px;}
.y175{bottom:352.350000px;}
.y168{bottom:352.530000px;}
.y14b{bottom:353.160000px;}
.y125{bottom:354.780000px;}
.y3a{bottom:357.030000px;}
.y10f{bottom:357.480000px;}
.y8e{bottom:358.020000px;}
.yb2{bottom:362.700000px;}
.yfa{bottom:365.760000px;}
.y5c{bottom:369.090000px;}
.y23{bottom:370.890000px;}
.y174{bottom:373.050000px;}
.y167{bottom:373.230000px;}
.y14a{bottom:373.860000px;}
.y124{bottom:375.480000px;}
.y10e{bottom:378.180000px;}
.y4c{bottom:378.900000px;}
.y8d{bottom:378.990000px;}
.yb1{bottom:382.590000px;}
.yf9{bottom:386.460000px;}
.y183{bottom:390.060000px;}
.y22{bottom:391.590000px;}
.y173{bottom:393.750000px;}
.y166{bottom:393.930000px;}
.y5b{bottom:394.290000px;}
.y149{bottom:394.560000px;}
.y123{bottom:396.180000px;}
.y39{bottom:398.430000px;}
.y10d{bottom:398.880000px;}
.y4b{bottom:399.600000px;}
.y8c{bottom:399.960000px;}
.yb0{bottom:402.480000px;}
.ycf{bottom:403.650000px;}
.y21{bottom:412.290000px;}
.y172{bottom:414.450000px;}
.y165{bottom:414.630000px;}
.y5a{bottom:414.990000px;}
.y148{bottom:415.170000px;}
.y36{bottom:415.260000px;}
.y122{bottom:416.880000px;}
.y10c{bottom:419.580000px;}
.y4a{bottom:420.300000px;}
.y8b{bottom:421.020000px;}
.yaf{bottom:422.370000px;}
.yce{bottom:424.350000px;}
.yf8{bottom:427.860000px;}
.y20{bottom:432.990000px;}
.y171{bottom:435.150000px;}
.y164{bottom:435.330000px;}
.y147{bottom:435.870000px;}
.y121{bottom:437.580000px;}
.y10b{bottom:440.280000px;}
.y49{bottom:441.000000px;}
.y8a{bottom:441.990000px;}
.yae{bottom:442.170000px;}
.ycd{bottom:445.050000px;}
.yf7{bottom:452.970000px;}
.y1f{bottom:453.690000px;}
.y170{bottom:455.850000px;}
.y163{bottom:456.030000px;}
.y146{bottom:456.570000px;}
.y34{bottom:457.380000px;}
.y120{bottom:458.280000px;}
.y10a{bottom:460.980000px;}
.y48{bottom:461.700000px;}
.ycc{bottom:461.880000px;}
.yad{bottom:462.060000px;}
.y89{bottom:462.960000px;}
.y1b7{bottom:469.620000px;}
.y1e{bottom:474.390000px;}
.y16f{bottom:476.550000px;}
.y162{bottom:476.730000px;}
.y145{bottom:477.270000px;}
.y130{bottom:477.810000px;}
.y11f{bottom:478.980000px;}
.y1a8{bottom:479.160000px;}
.y109{bottom:481.680000px;}
.yac{bottom:481.950000px;}
.y47{bottom:482.400000px;}
.y88{bottom:484.020000px;}
.y199{bottom:484.380000px;}
.y15b{bottom:486.090000px;}
.y1b6{bottom:490.320000px;}
.yf6{bottom:491.760000px;}
.y35{bottom:494.100000px;}
.y1d{bottom:495.090000px;}
.y16e{bottom:497.250000px;}
.y161{bottom:497.430000px;}
.y144{bottom:497.970000px;}
.y11e{bottom:499.680000px;}
.y1a7{bottom:499.860000px;}
.yab{bottom:501.840000px;}
.y108{bottom:502.380000px;}
.y46{bottom:503.100000px;}
.y87{bottom:504.990000px;}
.y198{bottom:505.080000px;}
.y15a{bottom:506.790000px;}
.y1b5{bottom:511.020000px;}
.yf5{bottom:512.460000px;}
.y1c{bottom:515.790000px;}
.y16d{bottom:517.950000px;}
.y160{bottom:518.130000px;}
.y143{bottom:518.670000px;}
.y11d{bottom:520.380000px;}
.y1a6{bottom:520.560000px;}
.yaa{bottom:521.730000px;}
.y107{bottom:523.080000px;}
.y45{bottom:523.800000px;}
.y197{bottom:525.780000px;}
.y86{bottom:525.960000px;}
.y159{bottom:527.490000px;}
.y1b4{bottom:531.720000px;}
.yf4{bottom:533.160000px;}
.y1b{bottom:536.490000px;}
.y16c{bottom:538.650000px;}
.y15f{bottom:538.830000px;}
.y142{bottom:539.370000px;}
.y132{bottom:539.910000px;}
.y1a5{bottom:541.260000px;}
.ya9{bottom:541.620000px;}
.y106{bottom:543.780000px;}
.y44{bottom:544.500000px;}
.y196{bottom:546.480000px;}
.y85{bottom:547.020000px;}
.y158{bottom:548.190000px;}
.y1b3{bottom:552.420000px;}
.yf3{bottom:553.860000px;}
.y1a{bottom:557.190000px;}
.y16b{bottom:559.350000px;}
.y15e{bottom:559.530000px;}
.y141{bottom:560.070000px;}
.ya8{bottom:561.420000px;}
.y11c{bottom:561.780000px;}
.y1a4{bottom:561.960000px;}
.y105{bottom:564.390000px;}
.y43{bottom:565.200000px;}
.y195{bottom:567.180000px;}
.y84{bottom:567.990000px;}
.y157{bottom:568.890000px;}
.y1b2{bottom:573.120000px;}
.yf2{bottom:574.560000px;}
.y19{bottom:577.890000px;}
.y11b{bottom:578.610000px;}
.y16a{bottom:580.050000px;}
.y15d{bottom:580.230000px;}
.y140{bottom:580.770000px;}
.ya7{bottom:581.310000px;}
.y42{bottom:582.030000px;}
.y1a3{bottom:582.660000px;}
.y104{bottom:585.090000px;}
.y194{bottom:587.880000px;}
.y83{bottom:588.960000px;}
.y156{bottom:589.590000px;}
.y1b1{bottom:593.820000px;}
.yf1{bottom:595.260000px;}
.y169{bottom:596.880000px;}
.y15c{bottom:597.060000px;}
.y18{bottom:598.590000px;}
.y11a{bottom:599.310000px;}
.ya6{bottom:601.200000px;}
.y13f{bottom:601.470000px;}
.y103{bottom:602.010000px;}
.y1a2{bottom:603.360000px;}
.y41{bottom:603.450000px;}
.y193{bottom:608.580000px;}
.y82{bottom:610.020000px;}
.y155{bottom:610.290000px;}
.y1b0{bottom:614.520000px;}
.yf0{bottom:615.960000px;}
.y17{bottom:619.290000px;}
.y1a1{bottom:620.190000px;}
.ya5{bottom:621.090000px;}
.y13e{bottom:622.170000px;}
.y192{bottom:625.410000px;}
.y81{bottom:630.990000px;}
.y1af{bottom:631.350000px;}
.yef{bottom:636.660000px;}
.y16{bottom:639.990000px;}
.ya4{bottom:640.980000px;}
.y13d{bottom:642.870000px;}
.y80{bottom:651.960000px;}
.yee{bottom:657.360000px;}
.y15{bottom:660.690000px;}
.ya3{bottom:660.870000px;}
.y13c{bottom:663.570000px;}
.yd3{bottom:665.370000px;}
.y154{bottom:672.300000px;}
.y7f{bottom:673.020000px;}
.yed{bottom:678.060000px;}
.ya2{bottom:680.670000px;}
.y14{bottom:681.390000px;}
.y13b{bottom:684.270000px;}
.yd2{bottom:686.070000px;}
.y7e{bottom:693.990000px;}
.yec{bottom:698.670000px;}
.ya1{bottom:700.560000px;}
.y13{bottom:702.090000px;}
.y13a{bottom:704.970000px;}
.yd1{bottom:706.770000px;}
.y7d{bottom:714.960000px;}
.y153{bottom:718.200000px;}
.yeb{bottom:719.370000px;}
.ya0{bottom:720.450000px;}
.y59{bottom:722.790000px;}
.yd0{bottom:723.600000px;}
.y139{bottom:725.670000px;}
.y7c{bottom:736.020000px;}
.y152{bottom:738.900000px;}
.yea{bottom:740.070000px;}
.y9f{bottom:740.340000px;}
.y12{bottom:743.490000px;}
.y138{bottom:746.370000px;}
.y7b{bottom:756.990000px;}
.y9e{bottom:760.230000px;}
.ye9{bottom:760.770000px;}
.y11{bottom:764.190000px;}
.y137{bottom:767.070000px;}
.y7a{bottom:777.960000px;}
.y9d{bottom:780.120000px;}
.y151{bottom:780.300000px;}
.ye8{bottom:781.470000px;}
.y10{bottom:784.890000px;}
.y136{bottom:787.770000px;}
.y79{bottom:799.020000px;}
.y9c{bottom:799.920000px;}
.ye7{bottom:802.170000px;}
.y150{bottom:805.410000px;}
.yf{bottom:805.590000px;}
.y135{bottom:808.470000px;}
.y78{bottom:819.990000px;}
.ye6{bottom:822.870000px;}
.y9b{bottom:823.680000px;}
.ye{bottom:826.290000px;}
.y134{bottom:829.170000px;}
.y77{bottom:840.960000px;}
.ye5{bottom:843.570000px;}
.y14f{bottom:844.200000px;}
.y9a{bottom:844.380000px;}
.y58{bottom:846.990000px;}
.y133{bottom:849.870000px;}
.ycb{bottom:856.170000px;}
.y76{bottom:862.020000px;}
.ye4{bottom:864.270000px;}
.y14e{bottom:864.900000px;}
.yd{bottom:867.690000px;}
.y191{bottom:869.490000px;}
.yca{bottom:876.870000px;}
.y14d{bottom:881.820000px;}
.y75{bottom:882.990000px;}
.ye3{bottom:884.970000px;}
.yc{bottom:888.390000px;}
.y190{bottom:890.190000px;}
.yc9{bottom:897.570000px;}
.y74{bottom:903.960000px;}
.ye2{bottom:905.670000px;}
.yb{bottom:909.090000px;}
.y182{bottom:910.890000px;}
.yc8{bottom:918.270000px;}
.y73{bottom:925.020000px;}
.ye1{bottom:926.460000px;}
.ya{bottom:929.790000px;}
.y181{bottom:931.590000px;}
.yc7{bottom:935.820000px;}
.y72{bottom:945.990000px;}
.ye0{bottom:948.420000px;}
.y9{bottom:950.490000px;}
.y180{bottom:952.290000px;}
.yc6{bottom:955.710000px;}
.y71{bottom:966.960000px;}
.ydf{bottom:969.120000px;}
.y8{bottom:971.190000px;}
.y33{bottom:972.990000px;}
.yc5{bottom:975.600000px;}
.y70{bottom:988.020000px;}
.yde{bottom:991.080000px;}
.y7{bottom:991.890000px;}
.y32{bottom:993.690000px;}
.yc4{bottom:995.490000px;}
.y6f{bottom:1008.990000px;}
.ydd{bottom:1011.780000px;}
.y6{bottom:1012.590000px;}
.y31{bottom:1014.390000px;}
.yc3{bottom:1015.380000px;}
.y57{bottom:1017.000000px;}
.y6e{bottom:1029.960000px;}
.ydc{bottom:1033.740000px;}
.y30{bottom:1035.090000px;}
.yc2{bottom:1035.270000px;}
.y5{bottom:1037.700000px;}
.y6d{bottom:1051.020000px;}
.ydb{bottom:1054.530000px;}
.yc1{bottom:1055.070000px;}
.y2f{bottom:1055.790000px;}
.y6c{bottom:1071.990000px;}
.yc0{bottom:1074.240000px;}
.y4{bottom:1076.490000px;}
.y6b{bottom:1092.960000px;}
.ybf{bottom:1094.130000px;}
.y2e{bottom:1097.190000px;}
.y3{bottom:1117.890000px;}
.y1{bottom:1134.720000px;}
.hf{height:19.080000px;}
.h10{height:19.081500px;}
.he{height:19.170000px;}
.hb{height:20.250000px;}
.h13{height:20.700000px;}
.ha{height:20.701500px;}
.h8{height:41.400000px;}
.hd{height:52.998047px;}
.hc{height:54.421875px;}
.h11{height:64.657617px;}
.h6{height:70.628906px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h2{height:74.971500px;}
.h5{height:75.093750px;}
.h12{height:494.011500px;}
.h9{height:509.760000px;}
.h7{height:510.930000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:38.520000px;}
.w9{width:55.890000px;}
.wc{width:64.080000px;}
.w12{width:67.230000px;}
.w11{width:75.240000px;}
.wa{width:76.950000px;}
.wb{width:77.040000px;}
.wd{width:117.900000px;}
.w13{width:123.480000px;}
.we{width:125.191500px;}
.wf{width:128.250000px;}
.w14{width:131.220000px;}
.w15{width:134.460000px;}
.w2{width:273.151500px;}
.w3{width:380.788500px;}
.w8{width:647.548500px;}
.w6{width:652.590000px;}
.w4{width:653.220000px;}
.w7{width:653.400000px;}
.w5{width:653.940000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:5.220000px;}
.x20{left:6.750000px;}
.x2{left:8.100000px;}
.x16{left:10.620000px;}
.xc{left:16.020000px;}
.xe{left:22.140000px;}
.x1a{left:24.120000px;}
.x10{left:28.890000px;}
.x1b{left:45.720000px;}
.x26{left:48.780000px;}
.x17{left:52.470000px;}
.x24{left:55.530000px;}
.x18{left:96.300000px;}
.x25{left:101.700000px;}
.xb{left:103.320000px;}
.x19{left:109.980000px;}
.x1c{left:116.730000px;}
.x1{left:119.520000px;}
.xa{left:122.670000px;}
.x5{left:127.620000px;}
.x7{left:154.620000px;}
.x1d{left:161.550000px;}
.xd{left:178.920000px;}
.x8{left:180.720000px;}
.x1e{left:237.150000px;}
.xf{left:256.230000px;}
.x6{left:262.260000px;}
.x1f{left:312.750000px;}
.x11{left:333.630000px;}
.x4{left:372.690000px;}
.x21{left:380.340000px;}
.x3{left:392.670000px;}
.x13{left:398.070000px;}
.x28{left:446.490000px;}
.x22{left:504.180000px;}
.x14{left:516.420000px;}
.x23{left:635.760000px;}
.x15{left:641.970000px;}
.x9{left:644.670000px;}
.x29{left:646.740000px;}
.x27{left:766.440000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls52{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.121600pt;}
.ls2{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.144000pt;}
.ls31{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.175680pt;}
.ls7{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.960000pt;}
.ls38{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.600000pt;}
.ls2e{letter-spacing:1.612800pt;}
.lsc{letter-spacing:1.920000pt;}
.ls40{letter-spacing:2.240000pt;}
.ls47{letter-spacing:2.560000pt;}
.ls10{letter-spacing:2.880000pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls35{letter-spacing:3.206400pt;}
.ls44{letter-spacing:3.520000pt;}
.ls12{letter-spacing:3.840000pt;}
.lsb{letter-spacing:4.160000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.800000pt;}
.ls3d{letter-spacing:5.120000pt;}
.ls4a{letter-spacing:5.440000pt;}
.ls27{letter-spacing:5.760000pt;}
.lsa{letter-spacing:6.080000pt;}
.ls11{letter-spacing:6.400000pt;}
.ls26{letter-spacing:6.720000pt;}
.ls51{letter-spacing:7.040000pt;}
.ls28{letter-spacing:7.360000pt;}
.ls23{letter-spacing:8.000000pt;}
.ls3e{letter-spacing:8.320000pt;}
.ls39{letter-spacing:8.640000pt;}
.ls3c{letter-spacing:8.960000pt;}
.ls46{letter-spacing:8.972800pt;}
.ls9{letter-spacing:9.600000pt;}
.ls24{letter-spacing:9.920000pt;}
.ls4b{letter-spacing:10.240000pt;}
.ls21{letter-spacing:10.560000pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls1a{letter-spacing:11.200000pt;}
.ls22{letter-spacing:11.520000pt;}
.ls53{letter-spacing:11.840000pt;}
.ls20{letter-spacing:12.160000pt;}
.ls3a{letter-spacing:12.486400pt;}
.ls3f{letter-spacing:13.440000pt;}
.ls1f{letter-spacing:13.760000pt;}
.ls42{letter-spacing:14.080000pt;}
.ls4c{letter-spacing:15.040000pt;}
.lsf{letter-spacing:15.360000pt;}
.lse{letter-spacing:15.680000pt;}
.ls25{letter-spacing:16.000000pt;}
.ls45{letter-spacing:16.320000pt;}
.ls34{letter-spacing:16.640000pt;}
.ls49{letter-spacing:16.960000pt;}
.ls4e{letter-spacing:19.200000pt;}
.ls2a{letter-spacing:19.520000pt;}
.ls2b{letter-spacing:19.840000pt;}
.ls54{letter-spacing:20.480000pt;}
.ls41{letter-spacing:22.720000pt;}
.ls43{letter-spacing:23.040000pt;}
.ls1{letter-spacing:24.768000pt;}
.ls3b{letter-spacing:24.960000pt;}
.ls29{letter-spacing:26.240000pt;}
.ls1d{letter-spacing:28.480000pt;}
.ls37{letter-spacing:45.568000pt;}
.ls2d{letter-spacing:50.264640pt;}
.ls50{letter-spacing:76.800000pt;}
.lsd{letter-spacing:80.000000pt;}
.ls3{letter-spacing:172.800000pt;}
.ls4d{letter-spacing:257.280000pt;}
.ls4f{letter-spacing:415.680000pt;}
.ls0{letter-spacing:632.640000pt;}
.wsb9{word-spacing:-17.920000pt;}
.ws0{word-spacing:-17.728000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws45{word-spacing:-15.936000pt;}
.ws4e{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.680000pt;}
.wsc7{word-spacing:-15.616000pt;}
.ws7a{word-spacing:-12.144000pt;}
.ws61{word-spacing:-12.096000pt;}
.ws5f{word-spacing:-12.000000pt;}
.ws60{word-spacing:-11.856000pt;}
.ws3d{word-spacing:-0.448000pt;}
.ws2f{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws78{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws76{word-spacing:0.048000pt;}
.ws9{word-spacing:0.064000pt;}
.ws8c{word-spacing:0.128000pt;}
.ws75{word-spacing:0.144000pt;}
.wsb{word-spacing:0.192000pt;}
.wsd{word-spacing:0.256000pt;}
.ws77{word-spacing:0.288000pt;}
.ws22{word-spacing:0.320000pt;}
.ws79{word-spacing:0.336000pt;}
.ws29{word-spacing:0.512000pt;}
.ws86{word-spacing:0.576000pt;}
.ws90{word-spacing:0.640000pt;}
.wsb3{word-spacing:0.704000pt;}
.wsa7{word-spacing:0.768000pt;}
.ws27{word-spacing:0.832000pt;}
.ws26{word-spacing:0.896000pt;}
.ws25{word-spacing:0.960000pt;}
.ws21{word-spacing:1.152000pt;}
.wsb4{word-spacing:1.216000pt;}
.ws58{word-spacing:1.280000pt;}
.wsae{word-spacing:1.472000pt;}
.ws20{word-spacing:1.536000pt;}
.ws24{word-spacing:1.600000pt;}
.ws23{word-spacing:1.728000pt;}
.wsc1{word-spacing:1.792000pt;}
.ws34{word-spacing:1.856000pt;}
.ws33{word-spacing:1.920000pt;}
.wsbd{word-spacing:2.112000pt;}
.ws18{word-spacing:2.176000pt;}
.ws98{word-spacing:2.240000pt;}
.wsad{word-spacing:2.432000pt;}
.ws95{word-spacing:2.496000pt;}
.ws3b{word-spacing:2.560000pt;}
.wsc3{word-spacing:2.752000pt;}
.ws3a{word-spacing:2.816000pt;}
.ws3c{word-spacing:2.880000pt;}
.ws99{word-spacing:3.008000pt;}
.ws47{word-spacing:3.136000pt;}
.ws46{word-spacing:3.200000pt;}
.ws43{word-spacing:3.392000pt;}
.ws42{word-spacing:3.456000pt;}
.ws44{word-spacing:3.520000pt;}
.ws32{word-spacing:3.776000pt;}
.ws19{word-spacing:3.840000pt;}
.wsca{word-spacing:4.032000pt;}
.ws1a{word-spacing:4.096000pt;}
.ws30{word-spacing:4.160000pt;}
.ws7f{word-spacing:4.352000pt;}
.ws36{word-spacing:4.416000pt;}
.ws35{word-spacing:4.480000pt;}
.ws1d{word-spacing:4.672000pt;}
.ws1f{word-spacing:4.736000pt;}
.ws1e{word-spacing:4.800000pt;}
.wse{word-spacing:5.056000pt;}
.wsc{word-spacing:5.120000pt;}
.wsc8{word-spacing:5.248000pt;}
.ws7e{word-spacing:5.312000pt;}
.wsb2{word-spacing:5.376000pt;}
.ws7d{word-spacing:5.440000pt;}
.ws69{word-spacing:5.696000pt;}
.ws68{word-spacing:5.760000pt;}
.ws2e{word-spacing:5.952000pt;}
.ws49{word-spacing:6.016000pt;}
.ws2d{word-spacing:6.080000pt;}
.wsa0{word-spacing:6.272000pt;}
.ws41{word-spacing:6.336000pt;}
.ws40{word-spacing:6.400000pt;}
.ws59{word-spacing:6.464000pt;}
.ws66{word-spacing:6.592000pt;}
.ws3f{word-spacing:6.656000pt;}
.ws3e{word-spacing:6.720000pt;}
.ws67{word-spacing:6.976000pt;}
.wsaa{word-spacing:7.040000pt;}
.ws6d{word-spacing:7.296000pt;}
.ws6c{word-spacing:7.360000pt;}
.wsa1{word-spacing:7.872000pt;}
.ws31{word-spacing:7.936000pt;}
.ws5e{word-spacing:8.000000pt;}
.ws8b{word-spacing:8.256000pt;}
.ws4d{word-spacing:8.320000pt;}
.ws8a{word-spacing:8.512000pt;}
.ws89{word-spacing:8.576000pt;}
.ws81{word-spacing:8.640000pt;}
.ws12{word-spacing:8.832000pt;}
.ws13{word-spacing:8.896000pt;}
.ws85{word-spacing:8.960000pt;}
.wsc6{word-spacing:9.216000pt;}
.ws9b{word-spacing:9.280000pt;}
.ws2c{word-spacing:9.472000pt;}
.ws2b{word-spacing:9.536000pt;}
.ws2a{word-spacing:9.600000pt;}
.ws62{word-spacing:9.856000pt;}
.ws63{word-spacing:9.920000pt;}
.wsa6{word-spacing:10.176000pt;}
.wsa5{word-spacing:10.240000pt;}
.ws8e{word-spacing:10.432000pt;}
.ws5a{word-spacing:10.496000pt;}
.ws5b{word-spacing:10.560000pt;}
.ws5d{word-spacing:10.752000pt;}
.ws5c{word-spacing:10.816000pt;}
.ws1b{word-spacing:10.880000pt;}
.ws74{word-spacing:11.072000pt;}
.ws48{word-spacing:11.136000pt;}
.ws73{word-spacing:11.200000pt;}
.ws52{word-spacing:11.456000pt;}
.ws53{word-spacing:11.520000pt;}
.ws80{word-spacing:11.776000pt;}
.wsc4{word-spacing:11.840000pt;}
.ws57{word-spacing:12.032000pt;}
.wsa2{word-spacing:12.096000pt;}
.ws56{word-spacing:12.160000pt;}
.wsd1{word-spacing:12.480000pt;}
.ws71{word-spacing:12.672000pt;}
.wsa3{word-spacing:12.736000pt;}
.ws82{word-spacing:12.800000pt;}
.wsaf{word-spacing:12.992000pt;}
.ws72{word-spacing:13.056000pt;}
.wsd0{word-spacing:13.120000pt;}
.wsb0{word-spacing:13.184000pt;}
.ws9a{word-spacing:13.312000pt;}
.wsb1{word-spacing:13.376000pt;}
.ws6a{word-spacing:13.440000pt;}
.ws4f{word-spacing:13.632000pt;}
.ws50{word-spacing:13.696000pt;}
.ws51{word-spacing:13.760000pt;}
.ws9f{word-spacing:14.016000pt;}
.ws93{word-spacing:14.080000pt;}
.ws94{word-spacing:14.336000pt;}
.ws91{word-spacing:14.720000pt;}
.wsc5{word-spacing:14.976000pt;}
.wsb8{word-spacing:15.040000pt;}
.wsc2{word-spacing:15.296000pt;}
.ws37{word-spacing:15.552000pt;}
.ws4c{word-spacing:15.616000pt;}
.ws39{word-spacing:15.680000pt;}
.ws38{word-spacing:15.872000pt;}
.ws64{word-spacing:15.936000pt;}
.ws65{word-spacing:16.000000pt;}
.wsab{word-spacing:16.320000pt;}
.ws7c{word-spacing:16.576000pt;}
.ws11{word-spacing:16.640000pt;}
.ws10{word-spacing:16.832000pt;}
.ws1c{word-spacing:16.896000pt;}
.wsf{word-spacing:16.960000pt;}
.wsac{word-spacing:17.536000pt;}
.wsb5{word-spacing:17.600000pt;}
.ws96{word-spacing:17.856000pt;}
.ws97{word-spacing:17.920000pt;}
.ws92{word-spacing:18.240000pt;}
.wsa4{word-spacing:18.816000pt;}
.ws87{word-spacing:19.456000pt;}
.ws88{word-spacing:19.520000pt;}
.ws70{word-spacing:19.776000pt;}
.ws6f{word-spacing:19.840000pt;}
.wscd{word-spacing:20.160000pt;}
.wsce{word-spacing:20.352000pt;}
.wscc{word-spacing:20.416000pt;}
.wscb{word-spacing:20.480000pt;}
.wsbe{word-spacing:20.736000pt;}
.wsbb{word-spacing:21.056000pt;}
.wsba{word-spacing:21.120000pt;}
.ws15{word-spacing:21.696000pt;}
.ws14{word-spacing:21.760000pt;}
.ws9d{word-spacing:22.400000pt;}
.ws9e{word-spacing:22.656000pt;}
.ws9c{word-spacing:22.720000pt;}
.wsa8{word-spacing:23.232000pt;}
.wsa9{word-spacing:23.296000pt;}
.ws7b{word-spacing:23.616000pt;}
.wsbf{word-spacing:24.256000pt;}
.wscf{word-spacing:24.320000pt;}
.ws84{word-spacing:24.640000pt;}
.ws83{word-spacing:24.896000pt;}
.wsc9{word-spacing:25.152000pt;}
.wsc0{word-spacing:25.600000pt;}
.ws8f{word-spacing:25.920000pt;}
.ws6e{word-spacing:26.176000pt;}
.wsb6{word-spacing:26.560000pt;}
.wsb7{word-spacing:26.880000pt;}
.ws4b{word-spacing:28.736000pt;}
.ws4a{word-spacing:28.800000pt;}
.wsbc{word-spacing:29.120000pt;}
.ws6b{word-spacing:30.016000pt;}
.ws16{word-spacing:31.296000pt;}
.ws17{word-spacing:31.360000pt;}
.ws55{word-spacing:31.616000pt;}
.ws54{word-spacing:31.680000pt;}
.ws8d{word-spacing:36.096000pt;}
._f{margin-left:-16.960000pt;}
._10{margin-left:-5.888000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._5{width:2.432000pt;}
._b{width:3.328000pt;}
._9{width:4.288000pt;}
._2{width:5.248000pt;}
._8{width:6.336000pt;}
._a{width:7.744000pt;}
._3{width:8.704000pt;}
._6{width:9.600000pt;}
._4{width:11.072000pt;}
._11{width:13.248000pt;}
._14{width:14.272000pt;}
._12{width:16.896000pt;}
._e{width:19.520000pt;}
._16{width:20.608000pt;}
._d{width:25.664000pt;}
._13{width:26.816000pt;}
._15{width:29.056000pt;}
._c{width:31.488000pt;}
._7{width:172.800000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:2.560000pt;}
.y61{bottom:2.640000pt;}
.y38{bottom:3.440000pt;}
.y37{bottom:21.840000pt;}
.y2{bottom:51.680000pt;}
.y56{bottom:98.480000pt;}
.y6a{bottom:100.640000pt;}
.y1bd{bottom:100.720000pt;}
.y1a0{bottom:103.120000pt;}
.y1ae{bottom:104.080000pt;}
.y18f{bottom:106.960000pt;}
.y2d{bottom:107.280000pt;}
.ybe{bottom:110.400000pt;}
.y17f{bottom:110.800000pt;}
.y99{bottom:112.880000pt;}
.y12f{bottom:112.960000pt;}
.y119{bottom:115.360000pt;}
.y55{bottom:116.880000pt;}
.y1bc{bottom:119.040000pt;}
.y69{bottom:119.360000pt;}
.y19f{bottom:121.520000pt;}
.y1ad{bottom:122.480000pt;}
.y18e{bottom:125.360000pt;}
.y2c{bottom:125.680000pt;}
.ybd{bottom:128.080000pt;}
.y17e{bottom:129.200000pt;}
.y12e{bottom:131.360000pt;}
.y98{bottom:131.520000pt;}
.y118{bottom:133.760000pt;}
.yda{bottom:134.000000pt;}
.y54{bottom:135.280000pt;}
.y1bb{bottom:137.440000pt;}
.y68{bottom:138.000000pt;}
.y19e{bottom:139.920000pt;}
.y1ac{bottom:140.880000pt;}
.y2b{bottom:144.080000pt;}
.ybc{bottom:145.760000pt;}
.y17d{bottom:147.600000pt;}
.y18c{bottom:147.760000pt;}
.y12d{bottom:149.760000pt;}
.y97{bottom:150.240000pt;}
.y131{bottom:152.160000pt;}
.yd9{bottom:152.400000pt;}
.y1ba{bottom:155.840000pt;}
.y67{bottom:156.640000pt;}
.y19d{bottom:158.320000pt;}
.y1ab{bottom:159.280000pt;}
.y18d{bottom:162.160000pt;}
.y2a{bottom:162.480000pt;}
.ybb{bottom:163.440000pt;}
.y17c{bottom:166.000000pt;}
.y18b{bottom:166.160000pt;}
.y12c{bottom:168.160000pt;}
.y96{bottom:168.880000pt;}
.y117{bottom:170.560000pt;}
.yd8{bottom:170.800000pt;}
.y53{bottom:172.080000pt;}
.y1b9{bottom:174.240000pt;}
.y66{bottom:175.360000pt;}
.y19c{bottom:176.720000pt;}
.y1aa{bottom:177.680000pt;}
.y102{bottom:179.200000pt;}
.y29{bottom:180.880000pt;}
.yba{bottom:181.040000pt;}
.y17b{bottom:184.400000pt;}
.y18a{bottom:184.560000pt;}
.y12b{bottom:186.560000pt;}
.y95{bottom:187.520000pt;}
.y116{bottom:188.960000pt;}
.yd7{bottom:189.200000pt;}
.y1b8{bottom:192.640000pt;}
.y65{bottom:194.000000pt;}
.y52{bottom:194.400000pt;}
.y19b{bottom:195.120000pt;}
.y1a9{bottom:196.080000pt;}
.y101{bottom:196.320000pt;}
.yb9{bottom:198.720000pt;}
.y17a{bottom:202.800000pt;}
.y189{bottom:202.960000pt;}
.y28{bottom:203.200000pt;}
.y12a{bottom:204.960000pt;}
.y94{bottom:206.240000pt;}
.y40{bottom:206.960000pt;}
.y115{bottom:207.360000pt;}
.yd6{bottom:207.600000pt;}
.y19a{bottom:210.080000pt;}
.y64{bottom:212.640000pt;}
.y51{bottom:212.800000pt;}
.y100{bottom:214.720000pt;}
.yb8{bottom:216.400000pt;}
.y179{bottom:221.200000pt;}
.y188{bottom:221.360000pt;}
.y129{bottom:223.360000pt;}
.y93{bottom:224.880000pt;}
.y3f{bottom:225.360000pt;}
.y114{bottom:225.760000pt;}
.yd5{bottom:226.000000pt;}
.y50{bottom:231.200000pt;}
.y63{bottom:231.360000pt;}
.yff{bottom:233.120000pt;}
.yb7{bottom:234.080000pt;}
.y27{bottom:237.680000pt;}
.y178{bottom:239.600000pt;}
.y187{bottom:239.760000pt;}
.yd4{bottom:240.960000pt;}
.y128{bottom:241.760000pt;}
.y92{bottom:243.520000pt;}
.y3e{bottom:243.760000pt;}
.y113{bottom:244.160000pt;}
.y62{bottom:250.000000pt;}
.yfe{bottom:251.520000pt;}
.yb6{bottom:251.760000pt;}
.y26{bottom:256.080000pt;}
.y177{bottom:258.000000pt;}
.y186{bottom:258.160000pt;}
.y127{bottom:260.160000pt;}
.y3d{bottom:262.160000pt;}
.y91{bottom:262.240000pt;}
.y112{bottom:262.560000pt;}
.y4f{bottom:265.600000pt;}
.y60{bottom:268.640000pt;}
.yb5{bottom:269.440000pt;}
.yfd{bottom:269.920000pt;}
.y25{bottom:274.480000pt;}
.y176{bottom:276.400000pt;}
.y185{bottom:276.560000pt;}
.y3c{bottom:280.560000pt;}
.y90{bottom:280.880000pt;}
.y111{bottom:280.960000pt;}
.y4e{bottom:284.000000pt;}
.yb4{bottom:287.040000pt;}
.y5f{bottom:287.360000pt;}
.yfc{bottom:288.320000pt;}
.y24{bottom:292.880000pt;}
.y184{bottom:294.960000pt;}
.y14c{bottom:295.520000pt;}
.y126{bottom:296.960000pt;}
.y3b{bottom:298.960000pt;}
.y110{bottom:299.360000pt;}
.y8f{bottom:299.520000pt;}
.y4d{bottom:302.400000pt;}
.yb3{bottom:304.720000pt;}
.y5d{bottom:306.000000pt;}
.yfb{bottom:306.720000pt;}
.y175{bottom:313.200000pt;}
.y168{bottom:313.360000pt;}
.y14b{bottom:313.920000pt;}
.y125{bottom:315.360000pt;}
.y3a{bottom:317.360000pt;}
.y10f{bottom:317.760000pt;}
.y8e{bottom:318.240000pt;}
.yb2{bottom:322.400000pt;}
.yfa{bottom:325.120000pt;}
.y5c{bottom:328.080000pt;}
.y23{bottom:329.680000pt;}
.y174{bottom:331.600000pt;}
.y167{bottom:331.760000pt;}
.y14a{bottom:332.320000pt;}
.y124{bottom:333.760000pt;}
.y10e{bottom:336.160000pt;}
.y4c{bottom:336.800000pt;}
.y8d{bottom:336.880000pt;}
.yb1{bottom:340.080000pt;}
.yf9{bottom:343.520000pt;}
.y183{bottom:346.720000pt;}
.y22{bottom:348.080000pt;}
.y173{bottom:350.000000pt;}
.y166{bottom:350.160000pt;}
.y5b{bottom:350.480000pt;}
.y149{bottom:350.720000pt;}
.y123{bottom:352.160000pt;}
.y39{bottom:354.160000pt;}
.y10d{bottom:354.560000pt;}
.y4b{bottom:355.200000pt;}
.y8c{bottom:355.520000pt;}
.yb0{bottom:357.760000pt;}
.ycf{bottom:358.800000pt;}
.y21{bottom:366.480000pt;}
.y172{bottom:368.400000pt;}
.y165{bottom:368.560000pt;}
.y5a{bottom:368.880000pt;}
.y148{bottom:369.040000pt;}
.y36{bottom:369.120000pt;}
.y122{bottom:370.560000pt;}
.y10c{bottom:372.960000pt;}
.y4a{bottom:373.600000pt;}
.y8b{bottom:374.240000pt;}
.yaf{bottom:375.440000pt;}
.yce{bottom:377.200000pt;}
.yf8{bottom:380.320000pt;}
.y20{bottom:384.880000pt;}
.y171{bottom:386.800000pt;}
.y164{bottom:386.960000pt;}
.y147{bottom:387.440000pt;}
.y121{bottom:388.960000pt;}
.y10b{bottom:391.360000pt;}
.y49{bottom:392.000000pt;}
.y8a{bottom:392.880000pt;}
.yae{bottom:393.040000pt;}
.ycd{bottom:395.600000pt;}
.yf7{bottom:402.640000pt;}
.y1f{bottom:403.280000pt;}
.y170{bottom:405.200000pt;}
.y163{bottom:405.360000pt;}
.y146{bottom:405.840000pt;}
.y34{bottom:406.560000pt;}
.y120{bottom:407.360000pt;}
.y10a{bottom:409.760000pt;}
.y48{bottom:410.400000pt;}
.ycc{bottom:410.560000pt;}
.yad{bottom:410.720000pt;}
.y89{bottom:411.520000pt;}
.y1b7{bottom:417.440000pt;}
.y1e{bottom:421.680000pt;}
.y16f{bottom:423.600000pt;}
.y162{bottom:423.760000pt;}
.y145{bottom:424.240000pt;}
.y130{bottom:424.720000pt;}
.y11f{bottom:425.760000pt;}
.y1a8{bottom:425.920000pt;}
.y109{bottom:428.160000pt;}
.yac{bottom:428.400000pt;}
.y47{bottom:428.800000pt;}
.y88{bottom:430.240000pt;}
.y199{bottom:430.560000pt;}
.y15b{bottom:432.080000pt;}
.y1b6{bottom:435.840000pt;}
.yf6{bottom:437.120000pt;}
.y35{bottom:439.200000pt;}
.y1d{bottom:440.080000pt;}
.y16e{bottom:442.000000pt;}
.y161{bottom:442.160000pt;}
.y144{bottom:442.640000pt;}
.y11e{bottom:444.160000pt;}
.y1a7{bottom:444.320000pt;}
.yab{bottom:446.080000pt;}
.y108{bottom:446.560000pt;}
.y46{bottom:447.200000pt;}
.y87{bottom:448.880000pt;}
.y198{bottom:448.960000pt;}
.y15a{bottom:450.480000pt;}
.y1b5{bottom:454.240000pt;}
.yf5{bottom:455.520000pt;}
.y1c{bottom:458.480000pt;}
.y16d{bottom:460.400000pt;}
.y160{bottom:460.560000pt;}
.y143{bottom:461.040000pt;}
.y11d{bottom:462.560000pt;}
.y1a6{bottom:462.720000pt;}
.yaa{bottom:463.760000pt;}
.y107{bottom:464.960000pt;}
.y45{bottom:465.600000pt;}
.y197{bottom:467.360000pt;}
.y86{bottom:467.520000pt;}
.y159{bottom:468.880000pt;}
.y1b4{bottom:472.640000pt;}
.yf4{bottom:473.920000pt;}
.y1b{bottom:476.880000pt;}
.y16c{bottom:478.800000pt;}
.y15f{bottom:478.960000pt;}
.y142{bottom:479.440000pt;}
.y132{bottom:479.920000pt;}
.y1a5{bottom:481.120000pt;}
.ya9{bottom:481.440000pt;}
.y106{bottom:483.360000pt;}
.y44{bottom:484.000000pt;}
.y196{bottom:485.760000pt;}
.y85{bottom:486.240000pt;}
.y158{bottom:487.280000pt;}
.y1b3{bottom:491.040000pt;}
.yf3{bottom:492.320000pt;}
.y1a{bottom:495.280000pt;}
.y16b{bottom:497.200000pt;}
.y15e{bottom:497.360000pt;}
.y141{bottom:497.840000pt;}
.ya8{bottom:499.040000pt;}
.y11c{bottom:499.360000pt;}
.y1a4{bottom:499.520000pt;}
.y105{bottom:501.680000pt;}
.y43{bottom:502.400000pt;}
.y195{bottom:504.160000pt;}
.y84{bottom:504.880000pt;}
.y157{bottom:505.680000pt;}
.y1b2{bottom:509.440000pt;}
.yf2{bottom:510.720000pt;}
.y19{bottom:513.680000pt;}
.y11b{bottom:514.320000pt;}
.y16a{bottom:515.600000pt;}
.y15d{bottom:515.760000pt;}
.y140{bottom:516.240000pt;}
.ya7{bottom:516.720000pt;}
.y42{bottom:517.360000pt;}
.y1a3{bottom:517.920000pt;}
.y104{bottom:520.080000pt;}
.y194{bottom:522.560000pt;}
.y83{bottom:523.520000pt;}
.y156{bottom:524.080000pt;}
.y1b1{bottom:527.840000pt;}
.yf1{bottom:529.120000pt;}
.y169{bottom:530.560000pt;}
.y15c{bottom:530.720000pt;}
.y18{bottom:532.080000pt;}
.y11a{bottom:532.720000pt;}
.ya6{bottom:534.400000pt;}
.y13f{bottom:534.640000pt;}
.y103{bottom:535.120000pt;}
.y1a2{bottom:536.320000pt;}
.y41{bottom:536.400000pt;}
.y193{bottom:540.960000pt;}
.y82{bottom:542.240000pt;}
.y155{bottom:542.480000pt;}
.y1b0{bottom:546.240000pt;}
.yf0{bottom:547.520000pt;}
.y17{bottom:550.480000pt;}
.y1a1{bottom:551.280000pt;}
.ya5{bottom:552.080000pt;}
.y13e{bottom:553.040000pt;}
.y192{bottom:555.920000pt;}
.y81{bottom:560.880000pt;}
.y1af{bottom:561.200000pt;}
.yef{bottom:565.920000pt;}
.y16{bottom:568.880000pt;}
.ya4{bottom:569.760000pt;}
.y13d{bottom:571.440000pt;}
.y80{bottom:579.520000pt;}
.yee{bottom:584.320000pt;}
.y15{bottom:587.280000pt;}
.ya3{bottom:587.440000pt;}
.y13c{bottom:589.840000pt;}
.yd3{bottom:591.440000pt;}
.y154{bottom:597.600000pt;}
.y7f{bottom:598.240000pt;}
.yed{bottom:602.720000pt;}
.ya2{bottom:605.040000pt;}
.y14{bottom:605.680000pt;}
.y13b{bottom:608.240000pt;}
.yd2{bottom:609.840000pt;}
.y7e{bottom:616.880000pt;}
.yec{bottom:621.040000pt;}
.ya1{bottom:622.720000pt;}
.y13{bottom:624.080000pt;}
.y13a{bottom:626.640000pt;}
.yd1{bottom:628.240000pt;}
.y7d{bottom:635.520000pt;}
.y153{bottom:638.400000pt;}
.yeb{bottom:639.440000pt;}
.ya0{bottom:640.400000pt;}
.y59{bottom:642.480000pt;}
.yd0{bottom:643.200000pt;}
.y139{bottom:645.040000pt;}
.y7c{bottom:654.240000pt;}
.y152{bottom:656.800000pt;}
.yea{bottom:657.840000pt;}
.y9f{bottom:658.080000pt;}
.y12{bottom:660.880000pt;}
.y138{bottom:663.440000pt;}
.y7b{bottom:672.880000pt;}
.y9e{bottom:675.760000pt;}
.ye9{bottom:676.240000pt;}
.y11{bottom:679.280000pt;}
.y137{bottom:681.840000pt;}
.y7a{bottom:691.520000pt;}
.y9d{bottom:693.440000pt;}
.y151{bottom:693.600000pt;}
.ye8{bottom:694.640000pt;}
.y10{bottom:697.680000pt;}
.y136{bottom:700.240000pt;}
.y79{bottom:710.240000pt;}
.y9c{bottom:711.040000pt;}
.ye7{bottom:713.040000pt;}
.y150{bottom:715.920000pt;}
.yf{bottom:716.080000pt;}
.y135{bottom:718.640000pt;}
.y78{bottom:728.880000pt;}
.ye6{bottom:731.440000pt;}
.y9b{bottom:732.160000pt;}
.ye{bottom:734.480000pt;}
.y134{bottom:737.040000pt;}
.y77{bottom:747.520000pt;}
.ye5{bottom:749.840000pt;}
.y14f{bottom:750.400000pt;}
.y9a{bottom:750.560000pt;}
.y58{bottom:752.880000pt;}
.y133{bottom:755.440000pt;}
.ycb{bottom:761.040000pt;}
.y76{bottom:766.240000pt;}
.ye4{bottom:768.240000pt;}
.y14e{bottom:768.800000pt;}
.yd{bottom:771.280000pt;}
.y191{bottom:772.880000pt;}
.yca{bottom:779.440000pt;}
.y14d{bottom:783.840000pt;}
.y75{bottom:784.880000pt;}
.ye3{bottom:786.640000pt;}
.yc{bottom:789.680000pt;}
.y190{bottom:791.280000pt;}
.yc9{bottom:797.840000pt;}
.y74{bottom:803.520000pt;}
.ye2{bottom:805.040000pt;}
.yb{bottom:808.080000pt;}
.y182{bottom:809.680000pt;}
.yc8{bottom:816.240000pt;}
.y73{bottom:822.240000pt;}
.ye1{bottom:823.520000pt;}
.ya{bottom:826.480000pt;}
.y181{bottom:828.080000pt;}
.yc7{bottom:831.840000pt;}
.y72{bottom:840.880000pt;}
.ye0{bottom:843.040000pt;}
.y9{bottom:844.880000pt;}
.y180{bottom:846.480000pt;}
.yc6{bottom:849.520000pt;}
.y71{bottom:859.520000pt;}
.ydf{bottom:861.440000pt;}
.y8{bottom:863.280000pt;}
.y33{bottom:864.880000pt;}
.yc5{bottom:867.200000pt;}
.y70{bottom:878.240000pt;}
.yde{bottom:880.960000pt;}
.y7{bottom:881.680000pt;}
.y32{bottom:883.280000pt;}
.yc4{bottom:884.880000pt;}
.y6f{bottom:896.880000pt;}
.ydd{bottom:899.360000pt;}
.y6{bottom:900.080000pt;}
.y31{bottom:901.680000pt;}
.yc3{bottom:902.560000pt;}
.y57{bottom:904.000000pt;}
.y6e{bottom:915.520000pt;}
.ydc{bottom:918.880000pt;}
.y30{bottom:920.080000pt;}
.yc2{bottom:920.240000pt;}
.y5{bottom:922.400000pt;}
.y6d{bottom:934.240000pt;}
.ydb{bottom:937.360000pt;}
.yc1{bottom:937.840000pt;}
.y2f{bottom:938.480000pt;}
.y6c{bottom:952.880000pt;}
.yc0{bottom:954.880000pt;}
.y4{bottom:956.880000pt;}
.y6b{bottom:971.520000pt;}
.ybf{bottom:972.560000pt;}
.y2e{bottom:975.280000pt;}
.y3{bottom:993.680000pt;}
.y1{bottom:1008.640000pt;}
.hf{height:16.960000pt;}
.h10{height:16.961333pt;}
.he{height:17.040000pt;}
.hb{height:18.000000pt;}
.h13{height:18.400000pt;}
.ha{height:18.401333pt;}
.h8{height:36.800000pt;}
.hd{height:47.109375pt;}
.hc{height:48.375000pt;}
.h11{height:57.473437pt;}
.h6{height:62.781250pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h2{height:66.641333pt;}
.h5{height:66.750000pt;}
.h12{height:439.121333pt;}
.h9{height:453.120000pt;}
.h7{height:454.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:34.240000pt;}
.w9{width:49.680000pt;}
.wc{width:56.960000pt;}
.w12{width:59.760000pt;}
.w11{width:66.880000pt;}
.wa{width:68.400000pt;}
.wb{width:68.480000pt;}
.wd{width:104.800000pt;}
.w13{width:109.760000pt;}
.we{width:111.281333pt;}
.wf{width:114.000000pt;}
.w14{width:116.640000pt;}
.w15{width:119.520000pt;}
.w2{width:242.801333pt;}
.w3{width:338.478667pt;}
.w8{width:575.598667pt;}
.w6{width:580.080000pt;}
.w4{width:580.640000pt;}
.w7{width:580.800000pt;}
.w5{width:581.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.640000pt;}
.x20{left:6.000000pt;}
.x2{left:7.200000pt;}
.x16{left:9.440000pt;}
.xc{left:14.240000pt;}
.xe{left:19.680000pt;}
.x1a{left:21.440000pt;}
.x10{left:25.680000pt;}
.x1b{left:40.640000pt;}
.x26{left:43.360000pt;}
.x17{left:46.640000pt;}
.x24{left:49.360000pt;}
.x18{left:85.600000pt;}
.x25{left:90.400000pt;}
.xb{left:91.840000pt;}
.x19{left:97.760000pt;}
.x1c{left:103.760000pt;}
.x1{left:106.240000pt;}
.xa{left:109.040000pt;}
.x5{left:113.440000pt;}
.x7{left:137.440000pt;}
.x1d{left:143.600000pt;}
.xd{left:159.040000pt;}
.x8{left:160.640000pt;}
.x1e{left:210.800000pt;}
.xf{left:227.760000pt;}
.x6{left:233.120000pt;}
.x1f{left:278.000000pt;}
.x11{left:296.560000pt;}
.x4{left:331.280000pt;}
.x21{left:338.080000pt;}
.x3{left:349.040000pt;}
.x13{left:353.840000pt;}
.x28{left:396.880000pt;}
.x22{left:448.160000pt;}
.x14{left:459.040000pt;}
.x23{left:565.120000pt;}
.x15{left:570.640000pt;}
.x9{left:573.040000pt;}
.x29{left:574.880000pt;}
.x27{left:681.280000pt;}
}




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