
    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_58651e2a6be796aae80bfc28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_3cd65eec23a278023c0be9de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_ce737b3a4671ae5318c17949.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_14656ea42ef055880e4974bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c2a0a12472d4a07fc3ddb148.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_49ab1873a130b95c0f3447aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_2f8738880fb591619f38923b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v4{vertical-align:27.360000px;}
.v3{vertical-align:39.600000px;}
.v5{vertical-align:47.520000px;}
.ls4a{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.758160px;}
.ls46{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.337680px;}
.lsd{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.168480px;}
.lse{letter-spacing:-0.144000px;}
.ls45{letter-spacing:-0.084240px;}
.ls2c{letter-spacing:-0.072000px;}
.ls3b{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.036000px;}
.ls3a{letter-spacing:0.059760px;}
.ls2d{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.084240px;}
.ls3c{letter-spacing:0.119520px;}
.ls1f{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.336960px;}
.ls25{letter-spacing:0.385920px;}
.ls38{letter-spacing:0.432000px;}
.ls2a{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.ls29{letter-spacing:2.160000px;}
.ls41{letter-spacing:2.167200px;}
.ls12{letter-spacing:2.880000px;}
.ls37{letter-spacing:3.600000px;}
.ls9{letter-spacing:4.320000px;}
.ls3e{letter-spacing:5.040000px;}
.ls20{letter-spacing:5.760000px;}
.ls32{letter-spacing:6.480000px;}
.ls2e{letter-spacing:7.200000px;}
.ls11{letter-spacing:7.920000px;}
.ls21{letter-spacing:9.360000px;}
.ls2f{letter-spacing:10.080000px;}
.ls7{letter-spacing:10.800000px;}
.ls30{letter-spacing:11.520000px;}
.ls33{letter-spacing:13.680000px;}
.ls3f{letter-spacing:14.400000px;}
.lsc{letter-spacing:17.424000px;}
.ls28{letter-spacing:18.000000px;}
.ls42{letter-spacing:18.720000px;}
.ls34{letter-spacing:20.880000px;}
.ls27{letter-spacing:21.600000px;}
.ls36{letter-spacing:23.760000px;}
.ls40{letter-spacing:26.640000px;}
.ls49{letter-spacing:27.360000px;}
.ls2b{letter-spacing:29.520000px;}
.ls22{letter-spacing:33.120000px;}
.ls35{letter-spacing:33.840000px;}
.ls10{letter-spacing:51.264000px;}
.lsa{letter-spacing:53.424000px;}
.ls31{letter-spacing:54.864000px;}
.ls48{letter-spacing:59.904000px;}
.ls43{letter-spacing:64.016640px;}
.ls47{letter-spacing:95.904000px;}
.lsb{letter-spacing:109.440000px;}
.ls0{letter-spacing:194.400000px;}
.ls39{letter-spacing:240.664320px;}
.ls18{letter-spacing:340.560000px;}
.ls17{letter-spacing:377.280000px;}
.ls44{letter-spacing:389.520000px;}
.ls1a{letter-spacing:419.760000px;}
.ls15{letter-spacing:448.560000px;}
.ls14{letter-spacing:499.680000px;}
.ls19{letter-spacing:526.320000px;}
.ls16{letter-spacing:580.320000px;}
.ls1b{letter-spacing:611.280000px;}
.ls4b{letter-spacing:846.000000px;}
.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;}
}
.ws7f{word-spacing:-59.760000px;}
.ws1{word-spacing:-20.891520px;}
.ws80{word-spacing:-20.723040px;}
.ws33{word-spacing:-20.301840px;}
.ws15{word-spacing:-18.720000px;}
.ws81{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.144000px;}
.ws50{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.ws32{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws88{word-spacing:-17.064000px;}
.ws73{word-spacing:-16.891200px;}
.ws2c{word-spacing:-16.692480px;}
.ws0{word-spacing:-16.560000px;}
.ws72{word-spacing:-14.999760px;}
.ws34{word-spacing:-12.445920px;}
.ws35{word-spacing:-11.722320px;}
.ws67{word-spacing:-5.760000px;}
.ws39{word-spacing:-4.320000px;}
.ws4d{word-spacing:-3.600000px;}
.ws63{word-spacing:-3.312000px;}
.ws64{word-spacing:-3.024000px;}
.ws59{word-spacing:-2.880000px;}
.ws4c{word-spacing:-2.592000px;}
.ws4f{word-spacing:-2.160000px;}
.ws27{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.263600px;}
.ws38{word-spacing:-0.864000px;}
.ws76{word-spacing:-0.861120px;}
.ws47{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.505440px;}
.ws6c{word-spacing:-0.504000px;}
.ws48{word-spacing:-0.432000px;}
.ws44{word-spacing:-0.385920px;}
.ws3f{word-spacing:-0.336960px;}
.ws30{word-spacing:-0.331200px;}
.ws2e{word-spacing:-0.288000px;}
.ws40{word-spacing:-0.252720px;}
.ws9{word-spacing:-0.144000px;}
.ws75{word-spacing:-0.132480px;}
.ws78{word-spacing:-0.119520px;}
.ws74{word-spacing:-0.059760px;}
.ws2{word-spacing:0.000000px;}
.ws2f{word-spacing:0.054000px;}
.ws77{word-spacing:0.059760px;}
.ws8d{word-spacing:0.072000px;}
.ws82{word-spacing:0.084240px;}
.ws5f{word-spacing:0.144000px;}
.ws18{word-spacing:0.168480px;}
.ws1f{word-spacing:0.216000px;}
.ws7{word-spacing:0.288000px;}
.ws41{word-spacing:0.336960px;}
.ws29{word-spacing:0.576000px;}
.ws25{word-spacing:0.720000px;}
.ws8c{word-spacing:0.864000px;}
.ws8b{word-spacing:0.936000px;}
.ws23{word-spacing:1.008000px;}
.ws8f{word-spacing:1.296000px;}
.ws11{word-spacing:1.440000px;}
.ws1b{word-spacing:1.728000px;}
.ws54{word-spacing:2.160000px;}
.ws53{word-spacing:2.232000px;}
.ws1c{word-spacing:2.448000px;}
.wsc{word-spacing:2.880000px;}
.ws31{word-spacing:3.168000px;}
.ws2a{word-spacing:3.600000px;}
.ws96{word-spacing:3.744000px;}
.ws85{word-spacing:3.888000px;}
.ws24{word-spacing:4.320000px;}
.ws1d{word-spacing:4.608000px;}
.ws97{word-spacing:4.824000px;}
.ws70{word-spacing:5.040000px;}
.ws66{word-spacing:5.616000px;}
.ws3d{word-spacing:5.760000px;}
.ws46{word-spacing:6.048000px;}
.ws6b{word-spacing:6.480000px;}
.ws3b{word-spacing:6.768000px;}
.ws62{word-spacing:7.056000px;}
.ws2d{word-spacing:7.200000px;}
.ws5d{word-spacing:7.488000px;}
.ws26{word-spacing:7.920000px;}
.ws87{word-spacing:8.496000px;}
.ws3e{word-spacing:8.640000px;}
.ws93{word-spacing:8.784000px;}
.ws65{word-spacing:8.928000px;}
.ws51{word-spacing:9.360000px;}
.ws86{word-spacing:9.936000px;}
.ws8{word-spacing:10.080000px;}
.ws94{word-spacing:10.152000px;}
.ws3c{word-spacing:10.368000px;}
.ws58{word-spacing:10.656000px;}
.wse{word-spacing:10.800000px;}
.wsf{word-spacing:11.088000px;}
.ws6{word-spacing:11.520000px;}
.ws36{word-spacing:12.240000px;}
.ws4b{word-spacing:12.384000px;}
.ws71{word-spacing:12.960000px;}
.ws84{word-spacing:13.248000px;}
.ws4{word-spacing:13.680000px;}
.ws7e{word-spacing:13.968000px;}
.ws6f{word-spacing:14.400000px;}
.ws8e{word-spacing:14.544000px;}
.ws37{word-spacing:14.976000px;}
.ws2b{word-spacing:15.120000px;}
.ws3a{word-spacing:15.840000px;}
.ws5c{word-spacing:16.560000px;}
.ws7b{word-spacing:17.136000px;}
.ws19{word-spacing:17.280000px;}
.ws28{word-spacing:18.000000px;}
.ws7d{word-spacing:18.576000px;}
.ws4e{word-spacing:18.720000px;}
.ws89{word-spacing:18.864000px;}
.ws7a{word-spacing:19.008000px;}
.wsa{word-spacing:19.440000px;}
.wsb{word-spacing:19.728000px;}
.ws7c{word-spacing:20.016000px;}
.ws69{word-spacing:20.160000px;}
.ws6e{word-spacing:20.880000px;}
.ws1a{word-spacing:21.168000px;}
.ws49{word-spacing:21.600000px;}
.ws1e{word-spacing:21.888000px;}
.ws68{word-spacing:22.320000px;}
.ws52{word-spacing:22.608000px;}
.ws55{word-spacing:23.040000px;}
.ws45{word-spacing:23.760000px;}
.ws6d{word-spacing:24.048000px;}
.ws10{word-spacing:24.480000px;}
.ws95{word-spacing:24.768000px;}
.ws57{word-spacing:25.200000px;}
.ws4a{word-spacing:25.920000px;}
.ws83{word-spacing:26.208000px;}
.ws61{word-spacing:26.496000px;}
.ws60{word-spacing:26.640000px;}
.ws5e{word-spacing:26.928000px;}
.ws90{word-spacing:27.216000px;}
.ws91{word-spacing:27.360000px;}
.ws20{word-spacing:28.080000px;}
.ws22{word-spacing:28.368000px;}
.ws21{word-spacing:28.800000px;}
.ws56{word-spacing:29.520000px;}
.ws5{word-spacing:30.240000px;}
.ws6a{word-spacing:30.528000px;}
.ws79{word-spacing:32.256000px;}
.ws42{word-spacing:32.976000px;}
.ws43{word-spacing:33.120000px;}
.wsd{word-spacing:36.720000px;}
.ws92{word-spacing:37.728000px;}
.ws5b{word-spacing:43.776000px;}
.ws5a{word-spacing:54.288000px;}
._25{margin-left:-18.360000px;}
._31{margin-left:-13.408632px;}
._2d{margin-left:-6.020424px;}
._f{margin-left:-4.896000px;}
._10{margin-left:-3.544632px;}
._c{margin-left:-2.088000px;}
._0{margin-left:-1.066464px;}
._1{width:1.024632px;}
._8{width:3.024000px;}
._9{width:4.104000px;}
._14{width:5.311368px;}
._7{width:7.128000px;}
._6{width:8.496000px;}
._4{width:9.648000px;}
._3{width:11.304000px;}
._26{width:12.312000px;}
._2{width:13.320000px;}
._13{width:14.976000px;}
._20{width:16.690464px;}
._d{width:19.296000px;}
._12{width:20.312568px;}
._16{width:21.328632px;}
._a{width:22.464000px;}
._b{width:23.688000px;}
._11{width:25.056000px;}
._24{width:26.119368px;}
._5{width:27.216000px;}
._e{width:28.584000px;}
._27{width:30.168000px;}
._30{width:31.395744px;}
._21{width:32.605992px;}
._17{width:33.624000px;}
._22{width:35.064000px;}
._2b{width:37.152000px;}
._2c{width:38.160000px;}
._2a{width:43.704000px;}
._2e{width:46.080000px;}
._28{width:53.064000px;}
._29{width:54.127368px;}
._2f{width:58.248000px;}
._32{width:65.736000px;}
._33{width:66.960000px;}
._19{width:96.336000px;}
._15{width:109.440000px;}
._23{width:194.400000px;}
._37{width:207.864000px;}
._18{width:240.607368px;}
._1c{width:299.304000px;}
._1a{width:389.525472px;}
._1d{width:464.256000px;}
._34{width:481.752000px;}
._35{width:492.480000px;}
._1b{width:513.000000px;}
._1e{width:588.096000px;}
._1f{width:596.846736px;}
._36{width:846.994464px;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:6.300000px;}
.y120{bottom:6.480000px;}
.y70{bottom:7.200000px;}
.y14f{bottom:14.220000px;}
.y14e{bottom:14.400000px;}
.y119{bottom:25.740000px;}
.y17f{bottom:30.780000px;}
.y17b{bottom:30.960000px;}
.y69{bottom:32.400000px;}
.y152{bottom:45.360000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.yec{bottom:110.880000px;}
.y63{bottom:112.140000px;}
.y97{bottom:116.100000px;}
.y18e{bottom:120.600000px;}
.y160{bottom:121.500000px;}
.y117{bottom:121.860000px;}
.ydb{bottom:123.120000px;}
.y13c{bottom:125.280000px;}
.y91{bottom:126.720000px;}
.y44{bottom:127.080000px;}
.y1ba{bottom:129.060000px;}
.yf5{bottom:140.580000px;}
.yeb{bottom:142.020000px;}
.y62{bottom:143.280000px;}
.y96{bottom:147.060000px;}
.y77{bottom:151.740000px;}
.y15f{bottom:152.460000px;}
.y116{bottom:152.820000px;}
.yda{bottom:154.260000px;}
.y13b{bottom:156.240000px;}
.y90{bottom:157.680000px;}
.y43{bottom:158.040000px;}
.y22{bottom:159.660000px;}
.ybb{bottom:159.840000px;}
.y1b9{bottom:160.200000px;}
.yea{bottom:172.980000px;}
.y61{bottom:174.240000px;}
.y95{bottom:178.200000px;}
.y76{bottom:181.440000px;}
.y18d{bottom:182.700000px;}
.y15e{bottom:183.600000px;}
.y115{bottom:183.960000px;}
.yd9{bottom:185.220000px;}
.y13a{bottom:187.380000px;}
.y8f{bottom:188.820000px;}
.y42{bottom:189.180000px;}
.y21{bottom:190.620000px;}
.yba{bottom:190.980000px;}
.y1b8{bottom:191.160000px;}
.ye9{bottom:203.940000px;}
.y60{bottom:205.380000px;}
.y75{bottom:208.620000px;}
.y94{bottom:209.160000px;}
.y18c{bottom:213.660000px;}
.y15d{bottom:214.560000px;}
.y114{bottom:214.920000px;}
.yd8{bottom:216.180000px;}
.y139{bottom:218.340000px;}
.y41{bottom:220.140000px;}
.y20{bottom:221.760000px;}
.yb9{bottom:221.940000px;}
.y1b7{bottom:222.300000px;}
.y8e{bottom:231.665040px;}
.yf4{bottom:234.900000px;}
.ye8{bottom:235.080000px;}
.y5f{bottom:236.340000px;}
.y93{bottom:240.300000px;}
.y172{bottom:245.520000px;}
.y15c{bottom:245.700000px;}
.y113{bottom:246.060000px;}
.yd7{bottom:247.320000px;}
.y138{bottom:249.480000px;}
.y40{bottom:251.280000px;}
.y1f{bottom:252.720000px;}
.yb8{bottom:253.080000px;}
.y1b6{bottom:253.260000px;}
.y9e{bottom:258.480000px;}
.y8d{bottom:259.380000px;}
.ye7{bottom:266.040000px;}
.yf3{bottom:267.300000px;}
.y5e{bottom:267.480000px;}
.y92{bottom:271.260000px;}
.y15b{bottom:276.660000px;}
.y112{bottom:277.020000px;}
.y18b{bottom:277.200000px;}
.yd6{bottom:278.280000px;}
.y137{bottom:280.440000px;}
.y3f{bottom:282.240000px;}
.y1e{bottom:283.860000px;}
.yb7{bottom:284.040000px;}
.y1b5{bottom:284.400000px;}
.y9d{bottom:289.620000px;}
.ye6{bottom:297.180000px;}
.y5d{bottom:298.440000px;}
.yf2{bottom:299.700000px;}
.y8c{bottom:302.400000px;}
.y171{bottom:307.620000px;}
.y111{bottom:308.160000px;}
.yd5{bottom:309.420000px;}
.y136{bottom:311.580000px;}
.y3e{bottom:313.200000px;}
.y1d{bottom:314.820000px;}
.yb6{bottom:315.180000px;}
.y1b4{bottom:315.360000px;}
.y9c{bottom:320.580000px;}
.y15a{bottom:324.360000px;}
.ye5{bottom:328.140000px;}
.y5c{bottom:329.580000px;}
.yf1{bottom:330.840000px;}
.y8b{bottom:333.360000px;}
.y170{bottom:338.760000px;}
.y110{bottom:339.120000px;}
.yd4{bottom:340.380000px;}
.y159{bottom:340.740000px;}
.y135{bottom:342.540000px;}
.y3d{bottom:344.340000px;}
.y1c{bottom:345.960000px;}
.yb5{bottom:346.140000px;}
.y1b3{bottom:346.500000px;}
.y9b{bottom:351.540000px;}
.y18a{bottom:356.040000px;}
.ye4{bottom:359.280000px;}
.y5b{bottom:360.540000px;}
.yf0{bottom:361.620000px;}
.y8a{bottom:364.500000px;}
.y16f{bottom:369.720000px;}
.y10f{bottom:370.260000px;}
.yd3{bottom:371.520000px;}
.y188{bottom:372.240000px;}
.y158{bottom:372.420000px;}
.y134{bottom:373.680000px;}
.y3c{bottom:375.300000px;}
.y1b{bottom:376.920000px;}
.yb4{bottom:377.280000px;}
.y1b2{bottom:377.460000px;}
.y189{bottom:379.260000px;}
.yed{bottom:383.580000px;}
.ye3{bottom:390.240000px;}
.y187{bottom:391.140000px;}
.y5a{bottom:391.680000px;}
.y9a{bottom:393.300000px;}
.yef{bottom:394.200000px;}
.y89{bottom:395.460000px;}
.y16e{bottom:400.860000px;}
.y10e{bottom:401.220000px;}
.yd2{bottom:402.480000px;}
.y157{bottom:404.280000px;}
.y133{bottom:404.640000px;}
.y3b{bottom:406.440000px;}
.y1a{bottom:408.060000px;}
.yb3{bottom:408.240000px;}
.y1b1{bottom:408.600000px;}
.y99{bottom:419.040000px;}
.y185{bottom:420.480000px;}
.ye2{bottom:421.380000px;}
.y199{bottom:422.460000px;}
.y59{bottom:422.640000px;}
.yee{bottom:425.160000px;}
.y88{bottom:426.600000px;}
.y186{bottom:427.680000px;}
.y16d{bottom:431.820000px;}
.y10d{bottom:432.360000px;}
.yd1{bottom:433.620000px;}
.y132{bottom:435.780000px;}
.y156{bottom:436.140000px;}
.y3a{bottom:437.400000px;}
.y19{bottom:439.020000px;}
.yb2{bottom:439.380000px;}
.y184{bottom:439.560000px;}
.ye1{bottom:452.340000px;}
.y58{bottom:453.780000px;}
.y198{bottom:455.040000px;}
.y87{bottom:457.560000px;}
.y10c{bottom:463.320000px;}
.y16c{bottom:464.220000px;}
.yd0{bottom:464.580000px;}
.y131{bottom:466.740000px;}
.y155{bottom:467.820000px;}
.y39{bottom:468.540000px;}
.y182{bottom:468.900000px;}
.y18{bottom:470.160000px;}
.yb1{bottom:470.340000px;}
.y1b0{bottom:470.700000px;}
.y183{bottom:475.920000px;}
.ye0{bottom:483.480000px;}
.y57{bottom:484.740000px;}
.y197{bottom:486.000000px;}
.y181{bottom:487.800000px;}
.y86{bottom:488.700000px;}
.y10b{bottom:494.460000px;}
.y16b{bottom:495.360000px;}
.ycf{bottom:495.720000px;}
.y130{bottom:497.880000px;}
.y38{bottom:499.500000px;}
.y154{bottom:499.680000px;}
.y17{bottom:501.120000px;}
.yb0{bottom:501.480000px;}
.y1af{bottom:501.660000px;}
.ydf{bottom:514.440000px;}
.y56{bottom:515.880000px;}
.y196{bottom:517.140000px;}
.y17e{bottom:517.320000px;}
.y85{bottom:519.660000px;}
.y180{bottom:524.340000px;}
.y10a{bottom:525.420000px;}
.y16a{bottom:526.320000px;}
.yce{bottom:526.680000px;}
.y12f{bottom:528.840000px;}
.y37{bottom:530.640000px;}
.y151{bottom:531.540000px;}
.y16{bottom:532.260000px;}
.yaf{bottom:532.440000px;}
.y1ae{bottom:532.800000px;}
.y17d{bottom:536.220000px;}
.yde{bottom:545.400000px;}
.y153{bottom:545.760000px;}
.y55{bottom:546.840000px;}
.y195{bottom:548.100000px;}
.y84{bottom:550.800000px;}
.y109{bottom:556.560000px;}
.y169{bottom:557.460000px;}
.ycd{bottom:557.820000px;}
.y12e{bottom:559.980000px;}
.y150{bottom:561.240000px;}
.y36{bottom:561.600000px;}
.y74{bottom:563.040000px;}
.y15{bottom:563.220000px;}
.yae{bottom:563.580000px;}
.y1ad{bottom:563.760000px;}
.y17a{bottom:565.560000px;}
.y54{bottom:577.800000px;}
.y194{bottom:579.240000px;}
.y83{bottom:581.760000px;}
.y17c{bottom:584.640000px;}
.y108{bottom:587.520000px;}
.y168{bottom:588.420000px;}
.ycc{bottom:588.780000px;}
.y12d{bottom:590.940000px;}
.y35{bottom:592.740000px;}
.y73{bottom:594.180000px;}
.y14{bottom:594.360000px;}
.yad{bottom:594.540000px;}
.y1ac{bottom:594.900000px;}
.ydd{bottom:610.020000px;}
.y53{bottom:610.200000px;}
.y82{bottom:612.900000px;}
.y107{bottom:618.660000px;}
.y167{bottom:619.380000px;}
.ycb{bottom:619.920000px;}
.y12c{bottom:621.900000px;}
.y34{bottom:623.700000px;}
.y13{bottom:625.320000px;}
.yac{bottom:625.500000px;}
.y1ab{bottom:625.860000px;}
.y14d{bottom:626.040000px;}
.y98{bottom:631.800000px;}
.y179{bottom:632.880000px;}
.y52{bottom:641.340000px;}
.y72{bottom:641.880000px;}
.ydc{bottom:642.420000px;}
.y81{bottom:643.860000px;}
.y106{bottom:649.620000px;}
.y166{bottom:650.520000px;}
.y12b{bottom:653.040000px;}
.y33{bottom:654.840000px;}
.y12{bottom:656.460000px;}
.yab{bottom:656.640000px;}
.y1aa{bottom:656.820000px;}
.yca{bottom:659.160000px;}
.y71{bottom:668.700000px;}
.y51{bottom:672.300000px;}
.y80{bottom:674.820000px;}
.y14c{bottom:676.800000px;}
.y105{bottom:680.760000px;}
.y165{bottom:681.480000px;}
.y178{bottom:682.020000px;}
.y12a{bottom:684.000000px;}
.y32{bottom:685.800000px;}
.y11{bottom:687.420000px;}
.yaa{bottom:687.600000px;}
.y1a9{bottom:687.960000px;}
.y6f{bottom:689.580000px;}
.yc9{bottom:702.000000px;}
.y193{bottom:703.260000px;}
.y50{bottom:703.440000px;}
.y7f{bottom:705.960000px;}
.y104{bottom:711.720000px;}
.y164{bottom:712.620000px;}
.y177{bottom:712.800000px;}
.y129{bottom:715.140000px;}
.y31{bottom:716.940000px;}
.y10{bottom:718.560000px;}
.ya9{bottom:718.740000px;}
.y1a8{bottom:718.920000px;}
.y6e{bottom:724.860000px;}
.ybc{bottom:725.040000px;}
.y14b{bottom:725.940000px;}
.yc8{bottom:733.140000px;}
.y4f{bottom:734.400000px;}
.y192{bottom:735.660000px;}
.y7e{bottom:736.920000px;}
.y103{bottom:742.860000px;}
.y163{bottom:743.580000px;}
.y176{bottom:745.200000px;}
.y128{bottom:746.100000px;}
.y30{bottom:747.900000px;}
.yf{bottom:749.520000px;}
.ya8{bottom:749.700000px;}
.y1a7{bottom:750.060000px;}
.y14a{bottom:756.900000px;}
.y6d{bottom:757.080000px;}
.yc7{bottom:764.100000px;}
.y4e{bottom:765.540000px;}
.y191{bottom:766.800000px;}
.y7d{bottom:768.060000px;}
.y102{bottom:773.820000px;}
.y162{bottom:774.540000px;}
.y127{bottom:777.240000px;}
.y175{bottom:777.780000px;}
.y2f{bottom:779.040000px;}
.ye{bottom:780.480000px;}
.ya7{bottom:780.840000px;}
.y1a6{bottom:781.020000px;}
.y149{bottom:788.040000px;}
.y6c{bottom:789.300000px;}
.yc6{bottom:795.240000px;}
.y4d{bottom:796.500000px;}
.y190{bottom:797.760000px;}
.y7c{bottom:799.020000px;}
.y101{bottom:804.960000px;}
.y161{bottom:807.120000px;}
.y126{bottom:808.200000px;}
.y174{bottom:808.560000px;}
.y2e{bottom:810.000000px;}
.yd{bottom:811.620000px;}
.ya6{bottom:811.800000px;}
.y1a5{bottom:812.160000px;}
.y148{bottom:819.000000px;}
.y6b{bottom:820.620000px;}
.yc5{bottom:826.200000px;}
.y4c{bottom:827.460000px;}
.y18f{bottom:828.900000px;}
.y7b{bottom:830.160000px;}
.y100{bottom:835.920000px;}
.y125{bottom:839.340000px;}
.y68{bottom:840.960000px;}
.y2d{bottom:841.140000px;}
.yc{bottom:842.580000px;}
.ya5{bottom:842.940000px;}
.y1a4{bottom:843.120000px;}
.y6a{bottom:849.600000px;}
.y147{bottom:850.140000px;}
.yc4{bottom:857.340000px;}
.y4b{bottom:859.860000px;}
.y7a{bottom:861.120000px;}
.y67{bottom:861.480000px;}
.yff{bottom:867.060000px;}
.y124{bottom:870.300000px;}
.y2c{bottom:872.100000px;}
.yb{bottom:873.720000px;}
.ya4{bottom:873.900000px;}
.y1a3{bottom:874.260000px;}
.y19a{bottom:880.380000px;}
.y146{bottom:881.100000px;}
.yc3{bottom:888.300000px;}
.y4a{bottom:891.000000px;}
.y79{bottom:892.260000px;}
.yfe{bottom:898.020000px;}
.y2b{bottom:903.240000px;}
.ya{bottom:904.680000px;}
.ya3{bottom:905.040000px;}
.y1a2{bottom:905.220000px;}
.y66{bottom:911.340000px;}
.y145{bottom:912.240000px;}
.y123{bottom:916.920000px;}
.yc2{bottom:919.440000px;}
.y49{bottom:921.960000px;}
.y78{bottom:923.220000px;}
.yfd{bottom:928.980000px;}
.y122{bottom:931.680000px;}
.y2a{bottom:934.200000px;}
.y9{bottom:935.820000px;}
.ya2{bottom:936.000000px;}
.y1a1{bottom:936.360000px;}
.y144{bottom:943.200000px;}
.yc1{bottom:950.400000px;}
.y48{bottom:953.100000px;}
.y65{bottom:954.360000px;}
.yfc{bottom:960.120000px;}
.y29{bottom:965.340000px;}
.y8{bottom:966.780000px;}
.ya1{bottom:967.140000px;}
.y1a0{bottom:967.320000px;}
.y143{bottom:974.340000px;}
.y121{bottom:976.860000px;}
.yc0{bottom:981.540000px;}
.y47{bottom:983.880000px;}
.y64{bottom:985.320000px;}
.y28{bottom:996.300000px;}
.y7{bottom:997.920000px;}
.y19f{bottom:998.460000px;}
.yfb{bottom:999.360000px;}
.y173{bottom:1004.580000px;}
.y142{bottom:1005.300000px;}
.ybf{bottom:1012.320000px;}
.ya0{bottom:1014.840000px;}
.y46{bottom:1016.460000px;}
.y11f{bottom:1022.040000px;}
.y19e{bottom:1029.420000px;}
.y27{bottom:1035.540000px;}
.y141{bottom:1036.440000px;}
.y6{bottom:1037.160000px;}
.y9f{bottom:1040.580000px;}
.yfa{bottom:1042.380000px;}
.y11e{bottom:1044.540000px;}
.ybe{bottom:1044.720000px;}
.y45{bottom:1047.420000px;}
.y19d{bottom:1060.560000px;}
.y11d{bottom:1067.220000px;}
.y140{bottom:1067.400000px;}
.yf9{bottom:1073.160000px;}
.ybd{bottom:1077.120000px;}
.y26{bottom:1078.560000px;}
.y5{bottom:1089.180000px;}
.y11b{bottom:1089.720000px;}
.y19c{bottom:1091.520000px;}
.y13f{bottom:1098.540000px;}
.yf8{bottom:1105.560000px;}
.y25{bottom:1109.520000px;}
.y118{bottom:1112.220000px;}
.y11a{bottom:1118.160000px;}
.y19b{bottom:1122.660000px;}
.y4{bottom:1129.140000px;}
.y13e{bottom:1129.500000px;}
.yf7{bottom:1137.960000px;}
.y24{bottom:1140.660000px;}
.y13d{bottom:1168.740000px;}
.yf6{bottom:1170.180000px;}
.y23{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.hd{height:21.780000px;}
.hf{height:21.781500px;}
.h10{height:21.958500px;}
.h9{height:23.940000px;}
.h15{height:30.960000px;}
.h17{height:30.961500px;}
.h18{height:31.138500px;}
.h14{height:31.140000px;}
.ha{height:39.778500px;}
.h1a{height:47.520000px;}
.h1c{height:47.700000px;}
.h19{height:47.701500px;}
.h8{height:50.580000px;}
.h12{height:52.931953px;}
.hb{height:53.252930px;}
.he{height:58.121719px;}
.h3{height:58.671562px;}
.h11{height:59.027344px;}
.h16{height:62.100000px;}
.h2{height:63.175781px;}
.h7{height:63.773438px;}
.h5{height:64.160156px;}
.h13{height:69.687773px;}
.h6{height:75.067383px;}
.h4{height:85.333008px;}
.hc{height:92.852930px;}
.h1b{height:110.695781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:126.360000px;}
.w4{width:141.840000px;}
.w5{width:158.400000px;}
.w8{width:168.840000px;}
.w3{width:185.401500px;}
.w6{width:190.620000px;}
.w7{width:201.240000px;}
.w2{width:207.540000px;}
.wc{width:243.720000px;}
.wb{width:254.520000px;}
.w9{width:487.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x2a{left:16.920000px;}
.x14{left:19.080000px;}
.x27{left:22.860000px;}
.x1f{left:24.120000px;}
.x35{left:25.560000px;}
.x1d{left:27.000000px;}
.x1c{left:28.260000px;}
.x2d{left:32.580000px;}
.x25{left:34.020000px;}
.x18{left:37.440000px;}
.x9{left:39.060000px;}
.x1b{left:48.960000px;}
.x28{left:57.060000px;}
.xe{left:59.940000px;}
.x1e{left:63.720000px;}
.x1a{left:65.700000px;}
.x21{left:67.320000px;}
.x24{left:69.660000px;}
.x20{left:73.080000px;}
.x29{left:75.780000px;}
.x26{left:78.120000px;}
.x23{left:79.560000px;}
.x22{left:80.820000px;}
.x10{left:92.880000px;}
.x2{left:106.200000px;}
.xb{left:114.840000px;}
.x5{left:127.440000px;}
.x6{left:133.200000px;}
.x3b{left:148.680000px;}
.x15{left:151.920000px;}
.x34{left:157.320000px;}
.x4{left:159.300000px;}
.x2f{left:163.260000px;}
.x38{left:165.240000px;}
.x7{left:167.940000px;}
.x30{left:233.820000px;}
.x19{left:265.860000px;}
.x2b{left:276.840000px;}
.x2c{left:284.400000px;}
.x2e{left:291.240000px;}
.xd{left:293.220000px;}
.x3{left:295.380000px;}
.x36{left:297.900000px;}
.x31{left:315.720000px;}
.x3a{left:432.900000px;}
.xf{left:435.780000px;}
.x1{left:437.400000px;}
.x16{left:467.820000px;}
.x32{left:489.060000px;}
.x33{left:528.300000px;}
.x17{left:529.380000px;}
.x39{left:538.380000px;}
.x37{left:547.740000px;}
.x8{left:578.340000px;}
.xa{left:652.500000px;}
.x11{left:656.460000px;}
.x12{left:738.360000px;}
.x13{left:776.520000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v4{vertical-align:24.320000pt;}
.v3{vertical-align:35.200000pt;}
.v5{vertical-align:42.240000pt;}
.ls4a{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.673920pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.300160pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.149760pt;}
.lse{letter-spacing:-0.128000pt;}
.ls45{letter-spacing:-0.074880pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls3b{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls3a{letter-spacing:0.053120pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.074880pt;}
.ls3c{letter-spacing:0.106240pt;}
.ls1f{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.299520pt;}
.ls25{letter-spacing:0.343040pt;}
.ls38{letter-spacing:0.384000pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.920000pt;}
.ls41{letter-spacing:1.926400pt;}
.ls12{letter-spacing:2.560000pt;}
.ls37{letter-spacing:3.200000pt;}
.ls9{letter-spacing:3.840000pt;}
.ls3e{letter-spacing:4.480000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls32{letter-spacing:5.760000pt;}
.ls2e{letter-spacing:6.400000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls21{letter-spacing:8.320000pt;}
.ls2f{letter-spacing:8.960000pt;}
.ls7{letter-spacing:9.600000pt;}
.ls30{letter-spacing:10.240000pt;}
.ls33{letter-spacing:12.160000pt;}
.ls3f{letter-spacing:12.800000pt;}
.lsc{letter-spacing:15.488000pt;}
.ls28{letter-spacing:16.000000pt;}
.ls42{letter-spacing:16.640000pt;}
.ls34{letter-spacing:18.560000pt;}
.ls27{letter-spacing:19.200000pt;}
.ls36{letter-spacing:21.120000pt;}
.ls40{letter-spacing:23.680000pt;}
.ls49{letter-spacing:24.320000pt;}
.ls2b{letter-spacing:26.240000pt;}
.ls22{letter-spacing:29.440000pt;}
.ls35{letter-spacing:30.080000pt;}
.ls10{letter-spacing:45.568000pt;}
.lsa{letter-spacing:47.488000pt;}
.ls31{letter-spacing:48.768000pt;}
.ls48{letter-spacing:53.248000pt;}
.ls43{letter-spacing:56.903680pt;}
.ls47{letter-spacing:85.248000pt;}
.lsb{letter-spacing:97.280000pt;}
.ls0{letter-spacing:172.800000pt;}
.ls39{letter-spacing:213.923840pt;}
.ls18{letter-spacing:302.720000pt;}
.ls17{letter-spacing:335.360000pt;}
.ls44{letter-spacing:346.240000pt;}
.ls1a{letter-spacing:373.120000pt;}
.ls15{letter-spacing:398.720000pt;}
.ls14{letter-spacing:444.160000pt;}
.ls19{letter-spacing:467.840000pt;}
.ls16{letter-spacing:515.840000pt;}
.ls1b{letter-spacing:543.360000pt;}
.ls4b{letter-spacing:752.000000pt;}
.ws7f{word-spacing:-53.120000pt;}
.ws1{word-spacing:-18.570240pt;}
.ws80{word-spacing:-18.420480pt;}
.ws33{word-spacing:-18.046080pt;}
.ws15{word-spacing:-16.640000pt;}
.ws81{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws50{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws32{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws88{word-spacing:-15.168000pt;}
.ws73{word-spacing:-15.014400pt;}
.ws2c{word-spacing:-14.837760pt;}
.ws0{word-spacing:-14.720000pt;}
.ws72{word-spacing:-13.333120pt;}
.ws34{word-spacing:-11.063040pt;}
.ws35{word-spacing:-10.419840pt;}
.ws67{word-spacing:-5.120000pt;}
.ws39{word-spacing:-3.840000pt;}
.ws4d{word-spacing:-3.200000pt;}
.ws63{word-spacing:-2.944000pt;}
.ws64{word-spacing:-2.688000pt;}
.ws59{word-spacing:-2.560000pt;}
.ws4c{word-spacing:-2.304000pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws27{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.123200pt;}
.ws38{word-spacing:-0.768000pt;}
.ws76{word-spacing:-0.765440pt;}
.ws47{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.449280pt;}
.ws6c{word-spacing:-0.448000pt;}
.ws48{word-spacing:-0.384000pt;}
.ws44{word-spacing:-0.343040pt;}
.ws3f{word-spacing:-0.299520pt;}
.ws30{word-spacing:-0.294400pt;}
.ws2e{word-spacing:-0.256000pt;}
.ws40{word-spacing:-0.224640pt;}
.ws9{word-spacing:-0.128000pt;}
.ws75{word-spacing:-0.117760pt;}
.ws78{word-spacing:-0.106240pt;}
.ws74{word-spacing:-0.053120pt;}
.ws2{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.048000pt;}
.ws77{word-spacing:0.053120pt;}
.ws8d{word-spacing:0.064000pt;}
.ws82{word-spacing:0.074880pt;}
.ws5f{word-spacing:0.128000pt;}
.ws18{word-spacing:0.149760pt;}
.ws1f{word-spacing:0.192000pt;}
.ws7{word-spacing:0.256000pt;}
.ws41{word-spacing:0.299520pt;}
.ws29{word-spacing:0.512000pt;}
.ws25{word-spacing:0.640000pt;}
.ws8c{word-spacing:0.768000pt;}
.ws8b{word-spacing:0.832000pt;}
.ws23{word-spacing:0.896000pt;}
.ws8f{word-spacing:1.152000pt;}
.ws11{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.536000pt;}
.ws54{word-spacing:1.920000pt;}
.ws53{word-spacing:1.984000pt;}
.ws1c{word-spacing:2.176000pt;}
.wsc{word-spacing:2.560000pt;}
.ws31{word-spacing:2.816000pt;}
.ws2a{word-spacing:3.200000pt;}
.ws96{word-spacing:3.328000pt;}
.ws85{word-spacing:3.456000pt;}
.ws24{word-spacing:3.840000pt;}
.ws1d{word-spacing:4.096000pt;}
.ws97{word-spacing:4.288000pt;}
.ws70{word-spacing:4.480000pt;}
.ws66{word-spacing:4.992000pt;}
.ws3d{word-spacing:5.120000pt;}
.ws46{word-spacing:5.376000pt;}
.ws6b{word-spacing:5.760000pt;}
.ws3b{word-spacing:6.016000pt;}
.ws62{word-spacing:6.272000pt;}
.ws2d{word-spacing:6.400000pt;}
.ws5d{word-spacing:6.656000pt;}
.ws26{word-spacing:7.040000pt;}
.ws87{word-spacing:7.552000pt;}
.ws3e{word-spacing:7.680000pt;}
.ws93{word-spacing:7.808000pt;}
.ws65{word-spacing:7.936000pt;}
.ws51{word-spacing:8.320000pt;}
.ws86{word-spacing:8.832000pt;}
.ws8{word-spacing:8.960000pt;}
.ws94{word-spacing:9.024000pt;}
.ws3c{word-spacing:9.216000pt;}
.ws58{word-spacing:9.472000pt;}
.wse{word-spacing:9.600000pt;}
.wsf{word-spacing:9.856000pt;}
.ws6{word-spacing:10.240000pt;}
.ws36{word-spacing:10.880000pt;}
.ws4b{word-spacing:11.008000pt;}
.ws71{word-spacing:11.520000pt;}
.ws84{word-spacing:11.776000pt;}
.ws4{word-spacing:12.160000pt;}
.ws7e{word-spacing:12.416000pt;}
.ws6f{word-spacing:12.800000pt;}
.ws8e{word-spacing:12.928000pt;}
.ws37{word-spacing:13.312000pt;}
.ws2b{word-spacing:13.440000pt;}
.ws3a{word-spacing:14.080000pt;}
.ws5c{word-spacing:14.720000pt;}
.ws7b{word-spacing:15.232000pt;}
.ws19{word-spacing:15.360000pt;}
.ws28{word-spacing:16.000000pt;}
.ws7d{word-spacing:16.512000pt;}
.ws4e{word-spacing:16.640000pt;}
.ws89{word-spacing:16.768000pt;}
.ws7a{word-spacing:16.896000pt;}
.wsa{word-spacing:17.280000pt;}
.wsb{word-spacing:17.536000pt;}
.ws7c{word-spacing:17.792000pt;}
.ws69{word-spacing:17.920000pt;}
.ws6e{word-spacing:18.560000pt;}
.ws1a{word-spacing:18.816000pt;}
.ws49{word-spacing:19.200000pt;}
.ws1e{word-spacing:19.456000pt;}
.ws68{word-spacing:19.840000pt;}
.ws52{word-spacing:20.096000pt;}
.ws55{word-spacing:20.480000pt;}
.ws45{word-spacing:21.120000pt;}
.ws6d{word-spacing:21.376000pt;}
.ws10{word-spacing:21.760000pt;}
.ws95{word-spacing:22.016000pt;}
.ws57{word-spacing:22.400000pt;}
.ws4a{word-spacing:23.040000pt;}
.ws83{word-spacing:23.296000pt;}
.ws61{word-spacing:23.552000pt;}
.ws60{word-spacing:23.680000pt;}
.ws5e{word-spacing:23.936000pt;}
.ws90{word-spacing:24.192000pt;}
.ws91{word-spacing:24.320000pt;}
.ws20{word-spacing:24.960000pt;}
.ws22{word-spacing:25.216000pt;}
.ws21{word-spacing:25.600000pt;}
.ws56{word-spacing:26.240000pt;}
.ws5{word-spacing:26.880000pt;}
.ws6a{word-spacing:27.136000pt;}
.ws79{word-spacing:28.672000pt;}
.ws42{word-spacing:29.312000pt;}
.ws43{word-spacing:29.440000pt;}
.wsd{word-spacing:32.640000pt;}
.ws92{word-spacing:33.536000pt;}
.ws5b{word-spacing:38.912000pt;}
.ws5a{word-spacing:48.256000pt;}
._25{margin-left:-16.320000pt;}
._31{margin-left:-11.918784pt;}
._2d{margin-left:-5.351488pt;}
._f{margin-left:-4.352000pt;}
._10{margin-left:-3.150784pt;}
._c{margin-left:-1.856000pt;}
._0{margin-left:-0.947968pt;}
._1{width:0.910784pt;}
._8{width:2.688000pt;}
._9{width:3.648000pt;}
._14{width:4.721216pt;}
._7{width:6.336000pt;}
._6{width:7.552000pt;}
._4{width:8.576000pt;}
._3{width:10.048000pt;}
._26{width:10.944000pt;}
._2{width:11.840000pt;}
._13{width:13.312000pt;}
._20{width:14.835968pt;}
._d{width:17.152000pt;}
._12{width:18.055616pt;}
._16{width:18.958784pt;}
._a{width:19.968000pt;}
._b{width:21.056000pt;}
._11{width:22.272000pt;}
._24{width:23.217216pt;}
._5{width:24.192000pt;}
._e{width:25.408000pt;}
._27{width:26.816000pt;}
._30{width:27.907328pt;}
._21{width:28.983104pt;}
._17{width:29.888000pt;}
._22{width:31.168000pt;}
._2b{width:33.024000pt;}
._2c{width:33.920000pt;}
._2a{width:38.848000pt;}
._2e{width:40.960000pt;}
._28{width:47.168000pt;}
._29{width:48.113216pt;}
._2f{width:51.776000pt;}
._32{width:58.432000pt;}
._33{width:59.520000pt;}
._19{width:85.632000pt;}
._15{width:97.280000pt;}
._23{width:172.800000pt;}
._37{width:184.768000pt;}
._18{width:213.873216pt;}
._1c{width:266.048000pt;}
._1a{width:346.244864pt;}
._1d{width:412.672000pt;}
._34{width:428.224000pt;}
._35{width:437.760000pt;}
._1b{width:456.000000pt;}
._1e{width:522.752000pt;}
._1f{width:530.530432pt;}
._36{width:752.883968pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:5.600000pt;}
.y120{bottom:5.760000pt;}
.y70{bottom:6.400000pt;}
.y14f{bottom:12.640000pt;}
.y14e{bottom:12.800000pt;}
.y119{bottom:22.880000pt;}
.y17f{bottom:27.360000pt;}
.y17b{bottom:27.520000pt;}
.y69{bottom:28.800000pt;}
.y152{bottom:40.320000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.yec{bottom:98.560000pt;}
.y63{bottom:99.680000pt;}
.y97{bottom:103.200000pt;}
.y18e{bottom:107.200000pt;}
.y160{bottom:108.000000pt;}
.y117{bottom:108.320000pt;}
.ydb{bottom:109.440000pt;}
.y13c{bottom:111.360000pt;}
.y91{bottom:112.640000pt;}
.y44{bottom:112.960000pt;}
.y1ba{bottom:114.720000pt;}
.yf5{bottom:124.960000pt;}
.yeb{bottom:126.240000pt;}
.y62{bottom:127.360000pt;}
.y96{bottom:130.720000pt;}
.y77{bottom:134.880000pt;}
.y15f{bottom:135.520000pt;}
.y116{bottom:135.840000pt;}
.yda{bottom:137.120000pt;}
.y13b{bottom:138.880000pt;}
.y90{bottom:140.160000pt;}
.y43{bottom:140.480000pt;}
.y22{bottom:141.920000pt;}
.ybb{bottom:142.080000pt;}
.y1b9{bottom:142.400000pt;}
.yea{bottom:153.760000pt;}
.y61{bottom:154.880000pt;}
.y95{bottom:158.400000pt;}
.y76{bottom:161.280000pt;}
.y18d{bottom:162.400000pt;}
.y15e{bottom:163.200000pt;}
.y115{bottom:163.520000pt;}
.yd9{bottom:164.640000pt;}
.y13a{bottom:166.560000pt;}
.y8f{bottom:167.840000pt;}
.y42{bottom:168.160000pt;}
.y21{bottom:169.440000pt;}
.yba{bottom:169.760000pt;}
.y1b8{bottom:169.920000pt;}
.ye9{bottom:181.280000pt;}
.y60{bottom:182.560000pt;}
.y75{bottom:185.440000pt;}
.y94{bottom:185.920000pt;}
.y18c{bottom:189.920000pt;}
.y15d{bottom:190.720000pt;}
.y114{bottom:191.040000pt;}
.yd8{bottom:192.160000pt;}
.y139{bottom:194.080000pt;}
.y41{bottom:195.680000pt;}
.y20{bottom:197.120000pt;}
.yb9{bottom:197.280000pt;}
.y1b7{bottom:197.600000pt;}
.y8e{bottom:205.924480pt;}
.yf4{bottom:208.800000pt;}
.ye8{bottom:208.960000pt;}
.y5f{bottom:210.080000pt;}
.y93{bottom:213.600000pt;}
.y172{bottom:218.240000pt;}
.y15c{bottom:218.400000pt;}
.y113{bottom:218.720000pt;}
.yd7{bottom:219.840000pt;}
.y138{bottom:221.760000pt;}
.y40{bottom:223.360000pt;}
.y1f{bottom:224.640000pt;}
.yb8{bottom:224.960000pt;}
.y1b6{bottom:225.120000pt;}
.y9e{bottom:229.760000pt;}
.y8d{bottom:230.560000pt;}
.ye7{bottom:236.480000pt;}
.yf3{bottom:237.600000pt;}
.y5e{bottom:237.760000pt;}
.y92{bottom:241.120000pt;}
.y15b{bottom:245.920000pt;}
.y112{bottom:246.240000pt;}
.y18b{bottom:246.400000pt;}
.yd6{bottom:247.360000pt;}
.y137{bottom:249.280000pt;}
.y3f{bottom:250.880000pt;}
.y1e{bottom:252.320000pt;}
.yb7{bottom:252.480000pt;}
.y1b5{bottom:252.800000pt;}
.y9d{bottom:257.440000pt;}
.ye6{bottom:264.160000pt;}
.y5d{bottom:265.280000pt;}
.yf2{bottom:266.400000pt;}
.y8c{bottom:268.800000pt;}
.y171{bottom:273.440000pt;}
.y111{bottom:273.920000pt;}
.yd5{bottom:275.040000pt;}
.y136{bottom:276.960000pt;}
.y3e{bottom:278.400000pt;}
.y1d{bottom:279.840000pt;}
.yb6{bottom:280.160000pt;}
.y1b4{bottom:280.320000pt;}
.y9c{bottom:284.960000pt;}
.y15a{bottom:288.320000pt;}
.ye5{bottom:291.680000pt;}
.y5c{bottom:292.960000pt;}
.yf1{bottom:294.080000pt;}
.y8b{bottom:296.320000pt;}
.y170{bottom:301.120000pt;}
.y110{bottom:301.440000pt;}
.yd4{bottom:302.560000pt;}
.y159{bottom:302.880000pt;}
.y135{bottom:304.480000pt;}
.y3d{bottom:306.080000pt;}
.y1c{bottom:307.520000pt;}
.yb5{bottom:307.680000pt;}
.y1b3{bottom:308.000000pt;}
.y9b{bottom:312.480000pt;}
.y18a{bottom:316.480000pt;}
.ye4{bottom:319.360000pt;}
.y5b{bottom:320.480000pt;}
.yf0{bottom:321.440000pt;}
.y8a{bottom:324.000000pt;}
.y16f{bottom:328.640000pt;}
.y10f{bottom:329.120000pt;}
.yd3{bottom:330.240000pt;}
.y188{bottom:330.880000pt;}
.y158{bottom:331.040000pt;}
.y134{bottom:332.160000pt;}
.y3c{bottom:333.600000pt;}
.y1b{bottom:335.040000pt;}
.yb4{bottom:335.360000pt;}
.y1b2{bottom:335.520000pt;}
.y189{bottom:337.120000pt;}
.yed{bottom:340.960000pt;}
.ye3{bottom:346.880000pt;}
.y187{bottom:347.680000pt;}
.y5a{bottom:348.160000pt;}
.y9a{bottom:349.600000pt;}
.yef{bottom:350.400000pt;}
.y89{bottom:351.520000pt;}
.y16e{bottom:356.320000pt;}
.y10e{bottom:356.640000pt;}
.yd2{bottom:357.760000pt;}
.y157{bottom:359.360000pt;}
.y133{bottom:359.680000pt;}
.y3b{bottom:361.280000pt;}
.y1a{bottom:362.720000pt;}
.yb3{bottom:362.880000pt;}
.y1b1{bottom:363.200000pt;}
.y99{bottom:372.480000pt;}
.y185{bottom:373.760000pt;}
.ye2{bottom:374.560000pt;}
.y199{bottom:375.520000pt;}
.y59{bottom:375.680000pt;}
.yee{bottom:377.920000pt;}
.y88{bottom:379.200000pt;}
.y186{bottom:380.160000pt;}
.y16d{bottom:383.840000pt;}
.y10d{bottom:384.320000pt;}
.yd1{bottom:385.440000pt;}
.y132{bottom:387.360000pt;}
.y156{bottom:387.680000pt;}
.y3a{bottom:388.800000pt;}
.y19{bottom:390.240000pt;}
.yb2{bottom:390.560000pt;}
.y184{bottom:390.720000pt;}
.ye1{bottom:402.080000pt;}
.y58{bottom:403.360000pt;}
.y198{bottom:404.480000pt;}
.y87{bottom:406.720000pt;}
.y10c{bottom:411.840000pt;}
.y16c{bottom:412.640000pt;}
.yd0{bottom:412.960000pt;}
.y131{bottom:414.880000pt;}
.y155{bottom:415.840000pt;}
.y39{bottom:416.480000pt;}
.y182{bottom:416.800000pt;}
.y18{bottom:417.920000pt;}
.yb1{bottom:418.080000pt;}
.y1b0{bottom:418.400000pt;}
.y183{bottom:423.040000pt;}
.ye0{bottom:429.760000pt;}
.y57{bottom:430.880000pt;}
.y197{bottom:432.000000pt;}
.y181{bottom:433.600000pt;}
.y86{bottom:434.400000pt;}
.y10b{bottom:439.520000pt;}
.y16b{bottom:440.320000pt;}
.ycf{bottom:440.640000pt;}
.y130{bottom:442.560000pt;}
.y38{bottom:444.000000pt;}
.y154{bottom:444.160000pt;}
.y17{bottom:445.440000pt;}
.yb0{bottom:445.760000pt;}
.y1af{bottom:445.920000pt;}
.ydf{bottom:457.280000pt;}
.y56{bottom:458.560000pt;}
.y196{bottom:459.680000pt;}
.y17e{bottom:459.840000pt;}
.y85{bottom:461.920000pt;}
.y180{bottom:466.080000pt;}
.y10a{bottom:467.040000pt;}
.y16a{bottom:467.840000pt;}
.yce{bottom:468.160000pt;}
.y12f{bottom:470.080000pt;}
.y37{bottom:471.680000pt;}
.y151{bottom:472.480000pt;}
.y16{bottom:473.120000pt;}
.yaf{bottom:473.280000pt;}
.y1ae{bottom:473.600000pt;}
.y17d{bottom:476.640000pt;}
.yde{bottom:484.800000pt;}
.y153{bottom:485.120000pt;}
.y55{bottom:486.080000pt;}
.y195{bottom:487.200000pt;}
.y84{bottom:489.600000pt;}
.y109{bottom:494.720000pt;}
.y169{bottom:495.520000pt;}
.ycd{bottom:495.840000pt;}
.y12e{bottom:497.760000pt;}
.y150{bottom:498.880000pt;}
.y36{bottom:499.200000pt;}
.y74{bottom:500.480000pt;}
.y15{bottom:500.640000pt;}
.yae{bottom:500.960000pt;}
.y1ad{bottom:501.120000pt;}
.y17a{bottom:502.720000pt;}
.y54{bottom:513.600000pt;}
.y194{bottom:514.880000pt;}
.y83{bottom:517.120000pt;}
.y17c{bottom:519.680000pt;}
.y108{bottom:522.240000pt;}
.y168{bottom:523.040000pt;}
.ycc{bottom:523.360000pt;}
.y12d{bottom:525.280000pt;}
.y35{bottom:526.880000pt;}
.y73{bottom:528.160000pt;}
.y14{bottom:528.320000pt;}
.yad{bottom:528.480000pt;}
.y1ac{bottom:528.800000pt;}
.ydd{bottom:542.240000pt;}
.y53{bottom:542.400000pt;}
.y82{bottom:544.800000pt;}
.y107{bottom:549.920000pt;}
.y167{bottom:550.560000pt;}
.ycb{bottom:551.040000pt;}
.y12c{bottom:552.800000pt;}
.y34{bottom:554.400000pt;}
.y13{bottom:555.840000pt;}
.yac{bottom:556.000000pt;}
.y1ab{bottom:556.320000pt;}
.y14d{bottom:556.480000pt;}
.y98{bottom:561.600000pt;}
.y179{bottom:562.560000pt;}
.y52{bottom:570.080000pt;}
.y72{bottom:570.560000pt;}
.ydc{bottom:571.040000pt;}
.y81{bottom:572.320000pt;}
.y106{bottom:577.440000pt;}
.y166{bottom:578.240000pt;}
.y12b{bottom:580.480000pt;}
.y33{bottom:582.080000pt;}
.y12{bottom:583.520000pt;}
.yab{bottom:583.680000pt;}
.y1aa{bottom:583.840000pt;}
.yca{bottom:585.920000pt;}
.y71{bottom:594.400000pt;}
.y51{bottom:597.600000pt;}
.y80{bottom:599.840000pt;}
.y14c{bottom:601.600000pt;}
.y105{bottom:605.120000pt;}
.y165{bottom:605.760000pt;}
.y178{bottom:606.240000pt;}
.y12a{bottom:608.000000pt;}
.y32{bottom:609.600000pt;}
.y11{bottom:611.040000pt;}
.yaa{bottom:611.200000pt;}
.y1a9{bottom:611.520000pt;}
.y6f{bottom:612.960000pt;}
.yc9{bottom:624.000000pt;}
.y193{bottom:625.120000pt;}
.y50{bottom:625.280000pt;}
.y7f{bottom:627.520000pt;}
.y104{bottom:632.640000pt;}
.y164{bottom:633.440000pt;}
.y177{bottom:633.600000pt;}
.y129{bottom:635.680000pt;}
.y31{bottom:637.280000pt;}
.y10{bottom:638.720000pt;}
.ya9{bottom:638.880000pt;}
.y1a8{bottom:639.040000pt;}
.y6e{bottom:644.320000pt;}
.ybc{bottom:644.480000pt;}
.y14b{bottom:645.280000pt;}
.yc8{bottom:651.680000pt;}
.y4f{bottom:652.800000pt;}
.y192{bottom:653.920000pt;}
.y7e{bottom:655.040000pt;}
.y103{bottom:660.320000pt;}
.y163{bottom:660.960000pt;}
.y176{bottom:662.400000pt;}
.y128{bottom:663.200000pt;}
.y30{bottom:664.800000pt;}
.yf{bottom:666.240000pt;}
.ya8{bottom:666.400000pt;}
.y1a7{bottom:666.720000pt;}
.y14a{bottom:672.800000pt;}
.y6d{bottom:672.960000pt;}
.yc7{bottom:679.200000pt;}
.y4e{bottom:680.480000pt;}
.y191{bottom:681.600000pt;}
.y7d{bottom:682.720000pt;}
.y102{bottom:687.840000pt;}
.y162{bottom:688.480000pt;}
.y127{bottom:690.880000pt;}
.y175{bottom:691.360000pt;}
.y2f{bottom:692.480000pt;}
.ye{bottom:693.760000pt;}
.ya7{bottom:694.080000pt;}
.y1a6{bottom:694.240000pt;}
.y149{bottom:700.480000pt;}
.y6c{bottom:701.600000pt;}
.yc6{bottom:706.880000pt;}
.y4d{bottom:708.000000pt;}
.y190{bottom:709.120000pt;}
.y7c{bottom:710.240000pt;}
.y101{bottom:715.520000pt;}
.y161{bottom:717.440000pt;}
.y126{bottom:718.400000pt;}
.y174{bottom:718.720000pt;}
.y2e{bottom:720.000000pt;}
.yd{bottom:721.440000pt;}
.ya6{bottom:721.600000pt;}
.y1a5{bottom:721.920000pt;}
.y148{bottom:728.000000pt;}
.y6b{bottom:729.440000pt;}
.yc5{bottom:734.400000pt;}
.y4c{bottom:735.520000pt;}
.y18f{bottom:736.800000pt;}
.y7b{bottom:737.920000pt;}
.y100{bottom:743.040000pt;}
.y125{bottom:746.080000pt;}
.y68{bottom:747.520000pt;}
.y2d{bottom:747.680000pt;}
.yc{bottom:748.960000pt;}
.ya5{bottom:749.280000pt;}
.y1a4{bottom:749.440000pt;}
.y6a{bottom:755.200000pt;}
.y147{bottom:755.680000pt;}
.yc4{bottom:762.080000pt;}
.y4b{bottom:764.320000pt;}
.y7a{bottom:765.440000pt;}
.y67{bottom:765.760000pt;}
.yff{bottom:770.720000pt;}
.y124{bottom:773.600000pt;}
.y2c{bottom:775.200000pt;}
.yb{bottom:776.640000pt;}
.ya4{bottom:776.800000pt;}
.y1a3{bottom:777.120000pt;}
.y19a{bottom:782.560000pt;}
.y146{bottom:783.200000pt;}
.yc3{bottom:789.600000pt;}
.y4a{bottom:792.000000pt;}
.y79{bottom:793.120000pt;}
.yfe{bottom:798.240000pt;}
.y2b{bottom:802.880000pt;}
.ya{bottom:804.160000pt;}
.ya3{bottom:804.480000pt;}
.y1a2{bottom:804.640000pt;}
.y66{bottom:810.080000pt;}
.y145{bottom:810.880000pt;}
.y123{bottom:815.040000pt;}
.yc2{bottom:817.280000pt;}
.y49{bottom:819.520000pt;}
.y78{bottom:820.640000pt;}
.yfd{bottom:825.760000pt;}
.y122{bottom:828.160000pt;}
.y2a{bottom:830.400000pt;}
.y9{bottom:831.840000pt;}
.ya2{bottom:832.000000pt;}
.y1a1{bottom:832.320000pt;}
.y144{bottom:838.400000pt;}
.yc1{bottom:844.800000pt;}
.y48{bottom:847.200000pt;}
.y65{bottom:848.320000pt;}
.yfc{bottom:853.440000pt;}
.y29{bottom:858.080000pt;}
.y8{bottom:859.360000pt;}
.ya1{bottom:859.680000pt;}
.y1a0{bottom:859.840000pt;}
.y143{bottom:866.080000pt;}
.y121{bottom:868.320000pt;}
.yc0{bottom:872.480000pt;}
.y47{bottom:874.560000pt;}
.y64{bottom:875.840000pt;}
.y28{bottom:885.600000pt;}
.y7{bottom:887.040000pt;}
.y19f{bottom:887.520000pt;}
.yfb{bottom:888.320000pt;}
.y173{bottom:892.960000pt;}
.y142{bottom:893.600000pt;}
.ybf{bottom:899.840000pt;}
.ya0{bottom:902.080000pt;}
.y46{bottom:903.520000pt;}
.y11f{bottom:908.480000pt;}
.y19e{bottom:915.040000pt;}
.y27{bottom:920.480000pt;}
.y141{bottom:921.280000pt;}
.y6{bottom:921.920000pt;}
.y9f{bottom:924.960000pt;}
.yfa{bottom:926.560000pt;}
.y11e{bottom:928.480000pt;}
.ybe{bottom:928.640000pt;}
.y45{bottom:931.040000pt;}
.y19d{bottom:942.720000pt;}
.y11d{bottom:948.640000pt;}
.y140{bottom:948.800000pt;}
.yf9{bottom:953.920000pt;}
.ybd{bottom:957.440000pt;}
.y26{bottom:958.720000pt;}
.y5{bottom:968.160000pt;}
.y11b{bottom:968.640000pt;}
.y19c{bottom:970.240000pt;}
.y13f{bottom:976.480000pt;}
.yf8{bottom:982.720000pt;}
.y25{bottom:986.240000pt;}
.y118{bottom:988.640000pt;}
.y11a{bottom:993.920000pt;}
.y19b{bottom:997.920000pt;}
.y4{bottom:1003.680000pt;}
.y13e{bottom:1004.000000pt;}
.yf7{bottom:1011.520000pt;}
.y24{bottom:1013.920000pt;}
.y13d{bottom:1038.880000pt;}
.yf6{bottom:1040.160000pt;}
.y23{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.hd{height:19.360000pt;}
.hf{height:19.361333pt;}
.h10{height:19.518667pt;}
.h9{height:21.280000pt;}
.h15{height:27.520000pt;}
.h17{height:27.521333pt;}
.h18{height:27.678667pt;}
.h14{height:27.680000pt;}
.ha{height:35.358667pt;}
.h1a{height:42.240000pt;}
.h1c{height:42.400000pt;}
.h19{height:42.401333pt;}
.h8{height:44.960000pt;}
.h12{height:47.050625pt;}
.hb{height:47.335938pt;}
.he{height:51.663750pt;}
.h3{height:52.152500pt;}
.h11{height:52.468750pt;}
.h16{height:55.200000pt;}
.h2{height:56.156250pt;}
.h7{height:56.687500pt;}
.h5{height:57.031250pt;}
.h13{height:61.944687pt;}
.h6{height:66.726562pt;}
.h4{height:75.851562pt;}
.hc{height:82.535938pt;}
.h1b{height:98.396250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:112.320000pt;}
.w4{width:126.080000pt;}
.w5{width:140.800000pt;}
.w8{width:150.080000pt;}
.w3{width:164.801333pt;}
.w6{width:169.440000pt;}
.w7{width:178.880000pt;}
.w2{width:184.480000pt;}
.wc{width:216.640000pt;}
.wb{width:226.240000pt;}
.w9{width:433.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x2a{left:15.040000pt;}
.x14{left:16.960000pt;}
.x27{left:20.320000pt;}
.x1f{left:21.440000pt;}
.x35{left:22.720000pt;}
.x1d{left:24.000000pt;}
.x1c{left:25.120000pt;}
.x2d{left:28.960000pt;}
.x25{left:30.240000pt;}
.x18{left:33.280000pt;}
.x9{left:34.720000pt;}
.x1b{left:43.520000pt;}
.x28{left:50.720000pt;}
.xe{left:53.280000pt;}
.x1e{left:56.640000pt;}
.x1a{left:58.400000pt;}
.x21{left:59.840000pt;}
.x24{left:61.920000pt;}
.x20{left:64.960000pt;}
.x29{left:67.360000pt;}
.x26{left:69.440000pt;}
.x23{left:70.720000pt;}
.x22{left:71.840000pt;}
.x10{left:82.560000pt;}
.x2{left:94.400000pt;}
.xb{left:102.080000pt;}
.x5{left:113.280000pt;}
.x6{left:118.400000pt;}
.x3b{left:132.160000pt;}
.x15{left:135.040000pt;}
.x34{left:139.840000pt;}
.x4{left:141.600000pt;}
.x2f{left:145.120000pt;}
.x38{left:146.880000pt;}
.x7{left:149.280000pt;}
.x30{left:207.840000pt;}
.x19{left:236.320000pt;}
.x2b{left:246.080000pt;}
.x2c{left:252.800000pt;}
.x2e{left:258.880000pt;}
.xd{left:260.640000pt;}
.x3{left:262.560000pt;}
.x36{left:264.800000pt;}
.x31{left:280.640000pt;}
.x3a{left:384.800000pt;}
.xf{left:387.360000pt;}
.x1{left:388.800000pt;}
.x16{left:415.840000pt;}
.x32{left:434.720000pt;}
.x33{left:469.600000pt;}
.x17{left:470.560000pt;}
.x39{left:478.560000pt;}
.x37{left:486.880000pt;}
.x8{left:514.080000pt;}
.xa{left:580.000000pt;}
.x11{left:583.520000pt;}
.x12{left:656.320000pt;}
.x13{left:690.240000pt;}
}




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