
    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_e31b6e1f52c3d6bc4cb9e51a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ce20d0d716da40dbc9534e58.woff2')format("woff");}.ff2{font-family:ff2;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;}
.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);}
.v2{vertical-align:-103.680000px;}
.v1{vertical-align:-78.474240px;}
.v4{vertical-align:-18.000000px;}
.v6{vertical-align:-2.754000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.036000px;}
.v3{vertical-align:23.863680px;}
.ls36{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-0.964800px;}
.ls37{letter-spacing:-0.918000px;}
.ls38{letter-spacing:-0.864000px;}
.ls1f{letter-spacing:-0.861120px;}
.lsd{letter-spacing:-0.728640px;}
.lsb{letter-spacing:-0.596160px;}
.ls2d{letter-spacing:-0.594000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.463680px;}
.ls12{letter-spacing:-0.397440px;}
.ls1b{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.337680px;}
.ls22{letter-spacing:-0.331200px;}
.ls44{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.083520px;}
.ls42{letter-spacing:-0.077760px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.048240px;}
.ls3c{letter-spacing:0.059400px;}
.ls31{letter-spacing:0.081000px;}
.ls1a{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.132480px;}
.ls14{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.167040px;}
.ls23{letter-spacing:0.178560px;}
.ls43{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.192960px;}
.ls30{letter-spacing:0.210600px;}
.ls3f{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.253800px;}
.ls28{letter-spacing:0.264960px;}
.ls2a{letter-spacing:0.270000px;}
.ls40{letter-spacing:0.286200px;}
.ls39{letter-spacing:0.329400px;}
.lsc{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.337680px;}
.lsf{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.728640px;}
.ls17{letter-spacing:1.440000px;}
.ls18{letter-spacing:2.848320px;}
.ls2b{letter-spacing:3.078000px;}
.ls2f{letter-spacing:3.780000px;}
.ls3e{letter-spacing:4.482000px;}
.ls1c{letter-spacing:5.034240px;}
.ls33{letter-spacing:5.238000px;}
.ls1d{letter-spacing:5.762880px;}
.ls3d{letter-spacing:5.940000px;}
.ls15{letter-spacing:6.491520px;}
.ls24{letter-spacing:8.611200px;}
.ls32{letter-spacing:8.802000px;}
.ls41{letter-spacing:10.006200px;}
.ls3b{letter-spacing:10.260000px;}
.ls20{letter-spacing:11.187936px;}
.ls34{letter-spacing:11.718000px;}
.ls27{letter-spacing:13.552704px;}
.ls1e{letter-spacing:17.242272px;}
.ls2e{letter-spacing:18.198000px;}
.ls29{letter-spacing:28.085760px;}
.ls16{letter-spacing:28.814400px;}
.ls4{letter-spacing:34.577280px;}
.ls19{letter-spacing:53.460000px;}
.ls35{letter-spacing:179.442000px;}
.ls2{letter-spacing:285.120000px;}
.ls3{letter-spacing:285.840000px;}
.lse{letter-spacing:1017.522000px;}
.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;}
}
.ws3{word-spacing:-25.560000px;}
.ws78{word-spacing:-19.440000px;}
.wsdb{word-spacing:-19.362240px;}
.ws3c{word-spacing:-16.891200px;}
.ws65{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws6f{word-spacing:-16.427520px;}
.ws5{word-spacing:-15.963840px;}
.wse3{word-spacing:-15.831360px;}
.ws26{word-spacing:-13.878000px;}
.ws7e{word-spacing:-13.608000px;}
.ws7c{word-spacing:-13.500000px;}
.ws7d{word-spacing:-13.392000px;}
.ws25{word-spacing:-13.284000px;}
.ws3e{word-spacing:-13.122000px;}
.ws9f{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.108240px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.722320px;}
.ws53{word-spacing:-10.440000px;}
.ws3d{word-spacing:-9.000000px;}
.ws79{word-spacing:-4.305600px;}
.wsd9{word-spacing:-3.780000px;}
.ws37{word-spacing:-3.709440px;}
.ws35{word-spacing:-3.576960px;}
.ws88{word-spacing:-3.078000px;}
.ws39{word-spacing:-2.980800px;}
.ws4b{word-spacing:-2.848320px;}
.ws8a{word-spacing:-2.700000px;}
.ws87{word-spacing:-2.592000px;}
.ws89{word-spacing:-2.484000px;}
.ws93{word-spacing:-2.376000px;}
.wsd2{word-spacing:-2.322000px;}
.ws2a{word-spacing:-2.318400px;}
.ws48{word-spacing:-2.185920px;}
.ws94{word-spacing:-2.106000px;}
.ws95{word-spacing:-1.890000px;}
.ws55{word-spacing:-1.788480px;}
.wsa6{word-spacing:-1.782000px;}
.wsa5{word-spacing:-1.620000px;}
.ws36{word-spacing:-1.589760px;}
.ws57{word-spacing:-1.457280px;}
.wsda{word-spacing:-1.350000px;}
.wsbd{word-spacing:-1.134000px;}
.wsde{word-spacing:-1.059840px;}
.ws61{word-spacing:-1.026000px;}
.ws5d{word-spacing:-0.918000px;}
.ws15{word-spacing:-0.861120px;}
.ws4d{word-spacing:-0.728640px;}
.wsd4{word-spacing:-0.702000px;}
.ws40{word-spacing:-0.648000px;}
.wsd5{word-spacing:-0.540000px;}
.wsb1{word-spacing:-0.432000px;}
.ws92{word-spacing:-0.378000px;}
.ws1e{word-spacing:-0.331200px;}
.ws5c{word-spacing:-0.324000px;}
.wsb{word-spacing:-0.306720px;}
.ws60{word-spacing:-0.216000px;}
.ws8f{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.132480px;}
.ws91{word-spacing:-0.108000px;}
.ws6{word-spacing:0.000000px;}
.ws9e{word-spacing:0.054000px;}
.ws27{word-spacing:0.108000px;}
.ws9{word-spacing:0.208800px;}
.ws28{word-spacing:0.216000px;}
.wse6{word-spacing:0.264960px;}
.wsa0{word-spacing:0.270000px;}
.wsb8{word-spacing:0.324000px;}
.wse4{word-spacing:0.331200px;}
.ws3f{word-spacing:0.378000px;}
.ws2f{word-spacing:0.397440px;}
.wsa{word-spacing:0.408960px;}
.ws8{word-spacing:0.459360px;}
.ws85{word-spacing:0.540000px;}
.ws90{word-spacing:0.594000px;}
.ws17{word-spacing:0.596160px;}
.ws83{word-spacing:0.699840px;}
.ws9d{word-spacing:0.702000px;}
.ws18{word-spacing:0.728640px;}
.ws51{word-spacing:0.810000px;}
.ws6d{word-spacing:0.861120px;}
.wsdd{word-spacing:0.918000px;}
.ws7{word-spacing:0.964800px;}
.ws66{word-spacing:1.126080px;}
.wsa3{word-spacing:1.134000px;}
.ws96{word-spacing:1.242000px;}
.ws16{word-spacing:1.324800px;}
.ws1c{word-spacing:1.457280px;}
.wsa4{word-spacing:1.458000px;}
.ws5f{word-spacing:1.512000px;}
.ws5e{word-spacing:1.836000px;}
.ws7b{word-spacing:1.920960px;}
.ws97{word-spacing:1.944000px;}
.wse{word-spacing:2.053440px;}
.ws14{word-spacing:2.185920px;}
.ws52{word-spacing:2.538000px;}
.wse5{word-spacing:2.583360px;}
.ws9b{word-spacing:2.700000px;}
.ws42{word-spacing:2.782080px;}
.ws23{word-spacing:2.914560px;}
.ws98{word-spacing:2.916000px;}
.wsaf{word-spacing:2.970000px;}
.wsdf{word-spacing:3.186000px;}
.wsae{word-spacing:3.294000px;}
.ws9a{word-spacing:3.402000px;}
.wsd{word-spacing:3.444480px;}
.ws9c{word-spacing:3.456000px;}
.ws32{word-spacing:3.576960px;}
.ws71{word-spacing:3.908160px;}
.ws81{word-spacing:3.974400px;}
.ws99{word-spacing:3.996000px;}
.wse0{word-spacing:4.104000px;}
.ws4c{word-spacing:4.173120px;}
.ws30{word-spacing:4.305600px;}
.wsbc{word-spacing:4.320000px;}
.wsc7{word-spacing:4.698000px;}
.wsb0{word-spacing:4.860000px;}
.ws1a{word-spacing:4.901760px;}
.ws10{word-spacing:5.034240px;}
.wsdc{word-spacing:5.076000px;}
.ws77{word-spacing:5.431680px;}
.wsbb{word-spacing:5.454000px;}
.ws8d{word-spacing:5.562000px;}
.ws24{word-spacing:5.630400px;}
.ws47{word-spacing:5.762880px;}
.wsc8{word-spacing:5.778000px;}
.wsd6{word-spacing:5.832000px;}
.wsbe{word-spacing:6.048000px;}
.ws8e{word-spacing:6.156000px;}
.wsd7{word-spacing:6.264000px;}
.ws31{word-spacing:6.359040px;}
.ws11{word-spacing:6.491520px;}
.wsd8{word-spacing:6.534000px;}
.ws4e{word-spacing:6.888960px;}
.wscc{word-spacing:7.020000px;}
.ws29{word-spacing:7.087680px;}
.ws1b{word-spacing:7.220160px;}
.wsc6{word-spacing:7.290000px;}
.wsca{word-spacing:7.614000px;}
.ws63{word-spacing:7.722000px;}
.ws22{word-spacing:7.816320px;}
.ws6b{word-spacing:7.948800px;}
.wscb{word-spacing:7.992000px;}
.ws64{word-spacing:8.316000px;}
.wsad{word-spacing:8.424000px;}
.ws41{word-spacing:8.478720px;}
.ws3b{word-spacing:8.611200px;}
.wsc2{word-spacing:8.694000px;}
.wsac{word-spacing:9.018000px;}
.wsc4{word-spacing:9.180000px;}
.ws70{word-spacing:9.207360px;}
.ws19{word-spacing:9.339840px;}
.wsc3{word-spacing:9.774000px;}
.ws75{word-spacing:9.803520px;}
.wsa1{word-spacing:9.882000px;}
.ws7f{word-spacing:9.936000px;}
.ws58{word-spacing:10.068480px;}
.wsa2{word-spacing:10.476000px;}
.wsab{word-spacing:10.584000px;}
.ws72{word-spacing:10.664640px;}
.ws2d{word-spacing:10.797120px;}
.wsc9{word-spacing:11.178000px;}
.ws8b{word-spacing:11.340000px;}
.ws1f{word-spacing:11.393280px;}
.ws20{word-spacing:11.525760px;}
.wsb2{word-spacing:11.934000px;}
.wsd0{word-spacing:12.042000px;}
.ws33{word-spacing:12.121920px;}
.ws21{word-spacing:12.254400px;}
.wsb7{word-spacing:12.312000px;}
.wsd1{word-spacing:12.744000px;}
.ws2c{word-spacing:12.850560px;}
.ws46{word-spacing:12.983040px;}
.ws67{word-spacing:13.579200px;}
.ws2b{word-spacing:13.711680px;}
.wscd{word-spacing:14.094000px;}
.wsce{word-spacing:14.202000px;}
.wsc{word-spacing:14.241600px;}
.ws44{word-spacing:14.374080px;}
.wscf{word-spacing:14.796000px;}
.ws62{word-spacing:14.904000px;}
.ws43{word-spacing:14.970240px;}
.ws45{word-spacing:15.102720px;}
.ws86{word-spacing:15.660000px;}
.ws6c{word-spacing:15.698880px;}
.ws6a{word-spacing:15.831360px;}
.wsc5{word-spacing:15.930000px;}
.ws84{word-spacing:16.254000px;}
.wsbf{word-spacing:16.362000px;}
.ws5a{word-spacing:16.427520px;}
.ws5b{word-spacing:16.560000px;}
.wsc0{word-spacing:16.956000px;}
.ws68{word-spacing:16.957440px;}
.ws82{word-spacing:17.156160px;}
.ws12{word-spacing:17.288640px;}
.wsc1{word-spacing:17.334000px;}
.wsa8{word-spacing:17.820000px;}
.ws13{word-spacing:17.884800px;}
.ws2e{word-spacing:18.017280px;}
.wsa7{word-spacing:18.414000px;}
.ws34{word-spacing:18.613440px;}
.ws76{word-spacing:18.745920px;}
.ws56{word-spacing:19.474560px;}
.ws3a{word-spacing:20.136960px;}
.wsb6{word-spacing:21.384000px;}
.ws80{word-spacing:21.594240px;}
.wsb5{word-spacing:22.140000px;}
.ws7a{word-spacing:22.190400px;}
.ws54{word-spacing:23.051520px;}
.ws50{word-spacing:23.647680px;}
.ws59{word-spacing:23.780160px;}
.ws6e{word-spacing:25.038720px;}
.ws73{word-spacing:27.953280px;}
.ws74{word-spacing:28.085760px;}
.ws4a{word-spacing:28.681920px;}
.ws49{word-spacing:28.814400px;}
.wsa9{word-spacing:30.024000px;}
.wsaa{word-spacing:30.996000px;}
.ws1d{word-spacing:31.530240px;}
.ws38{word-spacing:31.662720px;}
.wse1{word-spacing:32.076000px;}
.ws69{word-spacing:32.391360px;}
.wse2{word-spacing:32.778000px;}
.ws4f{word-spacing:35.173440px;}
.wsd3{word-spacing:109.242000px;}
.wsb9{word-spacing:152.442000px;}
.wsba{word-spacing:152.712000px;}
.wsb3{word-spacing:179.064000px;}
.wsb4{word-spacing:179.334000px;}
.ws8c{word-spacing:753.516000px;}
._c{margin-left:-3.586896px;}
._6{margin-left:-2.288592px;}
._0{margin-left:-1.109520px;}
._1{width:1.726992px;}
._9{width:3.338496px;}
._8{width:4.391712px;}
._11{width:5.782320px;}
._f{width:6.833664px;}
._10{width:9.342000px;}
._4{width:11.393280px;}
._e{width:15.934032px;}
._a{width:23.156064px;}
._3{width:31.099680px;}
._d{width:63.325440px;}
._7{width:93.858336px;}
._b{width:113.071680px;}
._5{width:115.651296px;}
._2{width:134.602560px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.320000px;}
.y69{bottom:109.620000px;}
.ycb{bottom:111.011040px;}
.yea{bottom:111.018960px;}
.y1c5{bottom:114.120000px;}
.y26{bottom:118.031040px;}
.y159{bottom:124.006500px;}
.y1a2{bottom:125.419500px;}
.y12a{bottom:125.455500px;}
.y68{bottom:125.995500px;}
.yab{bottom:128.983680px;}
.y10a{bottom:128.996640px;}
.y4e{bottom:129.030480px;}
.yca{bottom:130.634640px;}
.ye9{bottom:130.642560px;}
.y1c4{bottom:133.015500px;}
.y25{bottom:137.654640px;}
.y158{bottom:140.571000px;}
.y1a1{bottom:141.984000px;}
.y129{bottom:142.011000px;}
.y180{bottom:142.020000px;}
.y8c{bottom:142.560000px;}
.y67{bottom:147.060000px;}
.yaa{bottom:148.607280px;}
.y109{bottom:148.620240px;}
.y4d{bottom:148.654080px;}
.y11a{bottom:148.667040px;}
.y1c3{bottom:149.580000px;}
.yc9{bottom:150.076080px;}
.ye8{bottom:150.084000px;}
.y157{bottom:156.946500px;}
.y24{bottom:157.096080px;}
.y1a0{bottom:158.548500px;}
.y128{bottom:158.575500px;}
.y17f{bottom:158.580000px;}
.y8b{bottom:159.124500px;}
.y66{bottom:159.660000px;}
.y1c2{bottom:165.955500px;}
.ya9{bottom:168.048720px;}
.y108{bottom:168.061680px;}
.y4c{bottom:168.095520px;}
.y119{bottom:168.108480px;}
.yc8{bottom:169.517520px;}
.ye7{bottom:169.525440px;}
.y156{bottom:173.511000px;}
.y17e{bottom:174.915000px;}
.y19f{bottom:174.924000px;}
.y127{bottom:174.951000px;}
.y23{bottom:176.537520px;}
.y8a{bottom:180.000000px;}
.y1c1{bottom:182.520000px;}
.ya8{bottom:187.490160px;}
.y107{bottom:187.503120px;}
.y4b{bottom:187.536960px;}
.y118{bottom:187.549920px;}
.yc7{bottom:189.141120px;}
.y155{bottom:190.075500px;}
.y17d{bottom:191.479500px;}
.y19e{bottom:191.488500px;}
.y126{bottom:191.515500px;}
.y89{bottom:192.055500px;}
.y22{bottom:196.161120px;}
.ye6{bottom:198.141120px;}
.y154{bottom:206.451000px;}
.ya7{bottom:207.113760px;}
.y106{bottom:207.126720px;}
.y4a{bottom:207.160560px;}
.y117{bottom:207.173520px;}
.y17c{bottom:208.044000px;}
.y19d{bottom:208.053000px;}
.y125{bottom:208.080000px;}
.yc6{bottom:208.582560px;}
.y88{bottom:208.620000px;}
.y21{bottom:215.602560px;}
.y65{bottom:216.131760px;}
.ye5{bottom:217.582560px;}
.y153{bottom:223.015500px;}
.y17b{bottom:224.419500px;}
.y19c{bottom:224.428500px;}
.y124{bottom:224.455500px;}
.y87{bottom:224.995500px;}
.ya6{bottom:226.555200px;}
.y105{bottom:226.568160px;}
.y49{bottom:226.602000px;}
.y116{bottom:226.614960px;}
.yc5{bottom:228.024000px;}
.y1c0{bottom:228.060000px;}
.y20{bottom:235.044000px;}
.y64{bottom:235.573200px;}
.ye4{bottom:237.024000px;}
.y152{bottom:239.580000px;}
.y17a{bottom:240.984000px;}
.y19b{bottom:240.993000px;}
.y123{bottom:241.020000px;}
.ya5{bottom:245.996640px;}
.y104{bottom:246.009600px;}
.y48{bottom:246.043440px;}
.y115{bottom:246.056400px;}
.y86{bottom:246.060000px;}
.y1bf{bottom:246.946500px;}
.y1f{bottom:254.667600px;}
.y63{bottom:255.014640px;}
.y151{bottom:255.942000px;}
.yc4{bottom:256.639680px;}
.ye3{bottom:256.647600px;}
.y179{bottom:257.548500px;}
.y19a{bottom:257.557500px;}
.y122{bottom:257.584500px;}
.y85{bottom:258.660000px;}
.y1be{bottom:263.511000px;}
.ya4{bottom:265.620240px;}
.y103{bottom:265.633200px;}
.y47{bottom:265.667040px;}
.y114{bottom:265.680000px;}
.y150{bottom:272.506500px;}
.y178{bottom:273.924000px;}
.y199{bottom:273.933000px;}
.y121{bottom:273.960000px;}
.y1e{bottom:274.109040px;}
.y62{bottom:274.638240px;}
.yc3{bottom:276.081120px;}
.ye2{bottom:276.089040px;}
.y1bd{bottom:280.075500px;}
.ya3{bottom:285.061680px;}
.y102{bottom:285.074640px;}
.y84{bottom:285.095520px;}
.y46{bottom:285.108480px;}
.y14f{bottom:289.071000px;}
.y177{bottom:290.488500px;}
.y198{bottom:290.497500px;}
.y120{bottom:290.520000px;}
.y1d{bottom:293.550480px;}
.y61{bottom:294.079680px;}
.y113{bottom:294.120000px;}
.yc2{bottom:295.522560px;}
.ye1{bottom:295.530480px;}
.y1bc{bottom:296.451000px;}
.ya2{bottom:304.503120px;}
.y101{bottom:304.516080px;}
.y83{bottom:304.536960px;}
.y45{bottom:304.549920px;}
.y14e{bottom:305.446500px;}
.y176{bottom:307.053000px;}
.y197{bottom:307.062000px;}
.y11f{bottom:307.080000px;}
.y1bb{bottom:313.015500px;}
.y1c{bottom:313.174080px;}
.y112{bottom:313.495200px;}
.y60{bottom:313.521120px;}
.yc1{bottom:315.146160px;}
.ye0{bottom:315.154080px;}
.y14d{bottom:322.011000px;}
.y175{bottom:323.428500px;}
.y196{bottom:323.437500px;}
.y11e{bottom:323.455500px;}
.ya1{bottom:324.126720px;}
.y100{bottom:324.139680px;}
.y82{bottom:324.160560px;}
.y44{bottom:324.173520px;}
.y1ba{bottom:329.580000px;}
.y1b{bottom:332.615520px;}
.y111{bottom:333.118800px;}
.y5f{bottom:333.144720px;}
.yc0{bottom:334.587600px;}
.ydf{bottom:334.595520px;}
.y1e1{bottom:337.680000px;}
.y14c{bottom:338.575500px;}
.y174{bottom:339.993000px;}
.y195{bottom:340.002000px;}
.y11d{bottom:340.015500px;}
.ya0{bottom:343.568160px;}
.yff{bottom:343.581120px;}
.y81{bottom:343.602000px;}
.y43{bottom:343.614960px;}
.y1b9{bottom:346.680000px;}
.y1a{bottom:352.056960px;}
.y110{bottom:352.560240px;}
.y5e{bottom:352.586160px;}
.ybf{bottom:354.029040px;}
.yde{bottom:354.036960px;}
.y14b{bottom:354.951000px;}
.y173{bottom:356.557500px;}
.y194{bottom:356.566500px;}
.y11c{bottom:356.580000px;}
.y1e0{bottom:357.105600px;}
.y9f{bottom:363.009600px;}
.yfe{bottom:363.022560px;}
.y80{bottom:363.043440px;}
.y42{bottom:363.056400px;}
.y1b8{bottom:365.571000px;}
.y14a{bottom:371.515500px;}
.y19{bottom:371.680560px;}
.y10f{bottom:372.001680px;}
.y5d{bottom:372.027600px;}
.y172{bottom:372.933000px;}
.y193{bottom:372.942000px;}
.ybe{bottom:373.652640px;}
.ydd{bottom:373.660560px;}
.y1df{bottom:376.547040px;}
.y1b7{bottom:381.946500px;}
.y9e{bottom:382.633200px;}
.yfd{bottom:382.646160px;}
.y7f{bottom:382.667040px;}
.y41{bottom:382.680000px;}
.y149{bottom:388.080000px;}
.y171{bottom:389.497500px;}
.y192{bottom:389.506500px;}
.y18{bottom:391.122000px;}
.y10e{bottom:391.625280px;}
.y5c{bottom:391.651200px;}
.ybd{bottom:393.094080px;}
.ydc{bottom:393.102000px;}
.y1de{bottom:396.170640px;}
.y1b6{bottom:398.511000px;}
.y9d{bottom:402.074640px;}
.yfc{bottom:402.087600px;}
.y7e{bottom:402.108480px;}
.y148{bottom:404.446500px;}
.y170{bottom:406.062000px;}
.y191{bottom:406.071000px;}
.y17{bottom:410.563440px;}
.y10d{bottom:411.066720px;}
.y5b{bottom:411.092640px;}
.y11b{bottom:411.120000px;}
.y40{bottom:411.125040px;}
.ybc{bottom:412.535520px;}
.ydb{bottom:412.543440px;}
.y1b5{bottom:415.075500px;}
.y1dd{bottom:415.612080px;}
.y147{bottom:421.011000px;}
.y9c{bottom:421.516080px;}
.yfb{bottom:421.529040px;}
.y7d{bottom:421.549920px;}
.y16f{bottom:422.437500px;}
.y190{bottom:422.446500px;}
.y16{bottom:430.187040px;}
.y10c{bottom:430.508160px;}
.y5a{bottom:430.534080px;}
.y3f{bottom:430.565040px;}
.y1b4{bottom:431.451000px;}
.ybb{bottom:432.159120px;}
.yda{bottom:432.167040px;}
.y1dc{bottom:435.053520px;}
.y146{bottom:437.575500px;}
.y16e{bottom:439.002000px;}
.y18f{bottom:439.011000px;}
.y9b{bottom:441.139680px;}
.yfa{bottom:441.152640px;}
.y7c{bottom:441.173520px;}
.y1b3{bottom:448.015500px;}
.y15{bottom:449.628480px;}
.y10b{bottom:450.131760px;}
.y59{bottom:450.157680px;}
.y3e{bottom:450.180000px;}
.yba{bottom:451.600560px;}
.yd9{bottom:451.608480px;}
.y145{bottom:453.951000px;}
.y1db{bottom:454.677120px;}
.y16d{bottom:455.566500px;}
.y18e{bottom:455.575500px;}
.y9a{bottom:460.581120px;}
.yf9{bottom:460.594080px;}
.y7b{bottom:460.614960px;}
.y1b2{bottom:464.580000px;}
.y14{bottom:469.069920px;}
.y3d{bottom:469.573200px;}
.y58{bottom:469.599120px;}
.y144{bottom:470.515500px;}
.yb9{bottom:471.042000px;}
.yd8{bottom:471.049920px;}
.y16c{bottom:471.942000px;}
.y18d{bottom:471.951000px;}
.y1da{bottom:474.118560px;}
.y99{bottom:480.022560px;}
.yf8{bottom:480.035520px;}
.y7a{bottom:480.056400px;}
.y143{bottom:487.080000px;}
.y16b{bottom:488.506500px;}
.y18c{bottom:488.515500px;}
.y13{bottom:488.693520px;}
.y3c{bottom:489.014640px;}
.y57{bottom:489.040560px;}
.y1b1{bottom:490.662000px;}
.yb8{bottom:490.665600px;}
.yd7{bottom:490.673520px;}
.y1d9{bottom:493.560000px;}
.y98{bottom:499.646160px;}
.y79{bottom:499.654080px;}
.yf7{bottom:499.659120px;}
.y16a{bottom:505.071000px;}
.y18b{bottom:505.080000px;}
.y12{bottom:508.134960px;}
.y3b{bottom:508.638240px;}
.y56{bottom:508.664160px;}
.y1b0{bottom:510.103440px;}
.yb7{bottom:510.107040px;}
.yd6{bottom:510.114960px;}
.y1d8{bottom:513.164160px;}
.y142{bottom:513.177120px;}
.y97{bottom:519.087600px;}
.y78{bottom:519.095520px;}
.yf6{bottom:519.100560px;}
.y169{bottom:521.446500px;}
.y18a{bottom:521.455500px;}
.y11{bottom:527.576400px;}
.y3a{bottom:528.079680px;}
.y55{bottom:528.105600px;}
.y1af{bottom:529.544880px;}
.yb6{bottom:529.548480px;}
.yd5{bottom:529.556400px;}
.y1d7{bottom:532.605600px;}
.y141{bottom:532.618560px;}
.y168{bottom:538.011000px;}
.y189{bottom:538.020000px;}
.y96{bottom:538.529040px;}
.y77{bottom:538.536960px;}
.yf5{bottom:538.542000px;}
.y10{bottom:547.200000px;}
.y39{bottom:547.521120px;}
.y54{bottom:547.547040px;}
.yd4{bottom:549.160560px;}
.y1ae{bottom:549.168480px;}
.yb5{bottom:549.172080px;}
.y1d6{bottom:552.047040px;}
.y140{bottom:552.060000px;}
.y188{bottom:554.548500px;}
.y167{bottom:554.575500px;}
.y95{bottom:558.152640px;}
.y76{bottom:558.160560px;}
.yf4{bottom:558.165600px;}
.y38{bottom:567.144720px;}
.y53{bottom:567.170640px;}
.yd3{bottom:568.602000px;}
.y1ad{bottom:568.609920px;}
.yb4{bottom:568.613520px;}
.y187{bottom:570.924000px;}
.y166{bottom:570.951000px;}
.y13f{bottom:570.955500px;}
.y1d5{bottom:571.670640px;}
.yf{bottom:575.640000px;}
.y94{bottom:577.594080px;}
.y75{bottom:577.602000px;}
.yf3{bottom:577.607040px;}
.y37{bottom:586.586160px;}
.y52{bottom:586.612080px;}
.y186{bottom:587.488500px;}
.y13e{bottom:587.515500px;}
.yd2{bottom:588.043440px;}
.y1ac{bottom:588.051360px;}
.yb3{bottom:588.054960px;}
.y1d4{bottom:591.112080px;}
.ye{bottom:595.076400px;}
.y93{bottom:597.035520px;}
.y74{bottom:597.043440px;}
.yf2{bottom:597.048480px;}
.y185{bottom:604.053000px;}
.y13d{bottom:604.071000px;}
.y165{bottom:604.080000px;}
.y36{bottom:606.027600px;}
.y51{bottom:606.053520px;}
.yd1{bottom:607.667040px;}
.y1ab{bottom:607.674960px;}
.yb2{bottom:607.678560px;}
.y1d3{bottom:610.553520px;}
.yd{bottom:614.700000px;}
.y92{bottom:616.659120px;}
.y73{bottom:616.667040px;}
.yf1{bottom:616.672080px;}
.y184{bottom:620.428500px;}
.y13c{bottom:620.446500px;}
.y164{bottom:620.455500px;}
.y35{bottom:625.651200px;}
.y50{bottom:625.677120px;}
.yd0{bottom:627.108480px;}
.y1aa{bottom:627.116400px;}
.yb1{bottom:627.120000px;}
.y1d2{bottom:630.177120px;}
.yc{bottom:635.924520px;}
.y91{bottom:636.100560px;}
.y72{bottom:636.108480px;}
.yf0{bottom:636.113520px;}
.y183{bottom:636.993000px;}
.y13b{bottom:637.011000px;}
.y163{bottom:637.020000px;}
.y34{bottom:645.092640px;}
.y4f{bottom:645.118560px;}
.y1a9{bottom:646.557840px;}
.yb0{bottom:646.561440px;}
.y1d1{bottom:649.618560px;}
.y182{bottom:653.557500px;}
.y13a{bottom:653.575500px;}
.y162{bottom:653.584500px;}
.y90{bottom:655.542000px;}
.y71{bottom:655.549920px;}
.yef{bottom:655.554960px;}
.y33{bottom:664.534080px;}
.yb{bottom:665.267400px;}
.y1a8{bottom:666.181440px;}
.yaf{bottom:666.185040px;}
.y1d0{bottom:669.060000px;}
.y181{bottom:669.933000px;}
.y139{bottom:669.951000px;}
.y161{bottom:669.960000px;}
.y8f{bottom:675.165600px;}
.y70{bottom:675.173520px;}
.yee{bottom:675.178560px;}
.y32{bottom:684.157680px;}
.yae{bottom:685.626480px;}
.y160{bottom:686.497500px;}
.y138{bottom:686.515500px;}
.y1cf{bottom:688.672080px;}
.y8e{bottom:694.607040px;}
.ya{bottom:694.610280px;}
.y6f{bottom:694.614960px;}
.yed{bottom:694.620000px;}
.y15f{bottom:703.062000px;}
.y137{bottom:703.080000px;}
.y31{bottom:703.599120px;}
.y1ce{bottom:708.113520px;}
.y8d{bottom:714.048480px;}
.y6e{bottom:714.056400px;}
.yad{bottom:714.060000px;}
.y15e{bottom:719.437500px;}
.y136{bottom:719.455500px;}
.y30{bottom:723.040560px;}
.yec{bottom:723.065040px;}
.y9{bottom:723.774240px;}
.y1cd{bottom:727.554960px;}
.y6d{bottom:733.672080px;}
.y1a7{bottom:733.680000px;}
.y15d{bottom:736.002000px;}
.y135{bottom:736.015350px;}
.y2f{bottom:742.664160px;}
.yac{bottom:742.680000px;}
.y1cc{bottom:747.178560px;}
.y15c{bottom:752.566500px;}
.y134{bottom:752.579850px;}
.y1a6{bottom:752.580000px;}
.y6c{bottom:753.113520px;}
.y8{bottom:753.117120px;}
.y2e{bottom:762.105600px;}
.yeb{bottom:762.120000px;}
.y1cb{bottom:766.620000px;}
.y15b{bottom:768.942000px;}
.y133{bottom:768.955350px;}
.y1a5{bottom:768.955500px;}
.y6b{bottom:772.554960px;}
.y2d{bottom:781.547040px;}
.y15a{bottom:785.506500px;}
.y132{bottom:785.515500px;}
.y1a4{bottom:785.520000px;}
.y1ca{bottom:786.061440px;}
.y6a{bottom:792.178560px;}
.y2c{bottom:801.170640px;}
.y131{bottom:802.071000px;}
.y1a3{bottom:802.084500px;}
.y1c9{bottom:805.685040px;}
.y7{bottom:808.380000px;}
.ycf{bottom:811.620000px;}
.y130{bottom:818.446500px;}
.y2b{bottom:820.612080px;}
.y6{bottom:820.620000px;}
.yce{bottom:831.061440px;}
.y1c8{bottom:834.118560px;}
.y12f{bottom:835.011000px;}
.y2a{bottom:840.053520px;}
.ycd{bottom:850.685040px;}
.y12e{bottom:851.575500px;}
.y1c7{bottom:853.560000px;}
.y29{bottom:859.677120px;}
.y5{bottom:859.678560px;}
.y12d{bottom:867.951000px;}
.ycc{bottom:870.126480px;}
.y1c6{bottom:872.460000px;}
.y28{bottom:879.118560px;}
.y4{bottom:879.120000px;}
.y12c{bottom:884.515500px;}
.y3{bottom:898.560000px;}
.y12b{bottom:901.080000px;}
.y27{bottom:910.979850px;}
.y1{bottom:932.580000px;}
.hb{height:31.587891px;}
.h3{height:36.641953px;}
.h2{height:42.445547px;}
.h4{height:47.381836px;}
.h11{height:47.513672px;}
.h15{height:49.606491px;}
.h13{height:49.623891px;}
.h17{height:49.641891px;}
.h14{height:49.693181px;}
.h16{height:49.693781px;}
.h12{height:49.711781px;}
.hd{height:52.435898px;}
.h5{height:58.121719px;}
.h9{height:58.283437px;}
.hc{height:60.433633px;}
.he{height:60.479713px;}
.ha{height:60.505633px;}
.hf{height:60.566113px;}
.h6{height:68.229844px;}
.h10{height:68.419688px;}
.h7{height:89.709609px;}
.h8{height:89.959219px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:93.600000px;}
.x4{left:105.121080px;}
.x7{left:123.292080px;}
.x8{left:146.690640px;}
.x6{left:184.280400px;}
.x5{left:197.443800px;}
.x3{left:231.480720px;}
.xa{left:309.600000px;}
.x9{left:351.360000px;}
.x2{left:361.440000px;}
@media print{
.v2{vertical-align:-92.160000pt;}
.v1{vertical-align:-69.754880pt;}
.v4{vertical-align:-16.000000pt;}
.v6{vertical-align:-2.448000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.032000pt;}
.v3{vertical-align:21.212160pt;}
.ls36{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.857600pt;}
.ls37{letter-spacing:-0.816000pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls1f{letter-spacing:-0.765440pt;}
.lsd{letter-spacing:-0.647680pt;}
.lsb{letter-spacing:-0.529920pt;}
.ls2d{letter-spacing:-0.528000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.412160pt;}
.ls12{letter-spacing:-0.353280pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.300160pt;}
.ls22{letter-spacing:-0.294400pt;}
.ls44{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.074240pt;}
.ls42{letter-spacing:-0.069120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.042880pt;}
.ls3c{letter-spacing:0.052800pt;}
.ls31{letter-spacing:0.072000pt;}
.ls1a{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.117760pt;}
.ls14{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.148480pt;}
.ls23{letter-spacing:0.158720pt;}
.ls43{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.171520pt;}
.ls30{letter-spacing:0.187200pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.225600pt;}
.ls28{letter-spacing:0.235520pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls40{letter-spacing:0.254400pt;}
.ls39{letter-spacing:0.292800pt;}
.lsc{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.300160pt;}
.lsf{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.647680pt;}
.ls17{letter-spacing:1.280000pt;}
.ls18{letter-spacing:2.531840pt;}
.ls2b{letter-spacing:2.736000pt;}
.ls2f{letter-spacing:3.360000pt;}
.ls3e{letter-spacing:3.984000pt;}
.ls1c{letter-spacing:4.474880pt;}
.ls33{letter-spacing:4.656000pt;}
.ls1d{letter-spacing:5.122560pt;}
.ls3d{letter-spacing:5.280000pt;}
.ls15{letter-spacing:5.770240pt;}
.ls24{letter-spacing:7.654400pt;}
.ls32{letter-spacing:7.824000pt;}
.ls41{letter-spacing:8.894400pt;}
.ls3b{letter-spacing:9.120000pt;}
.ls20{letter-spacing:9.944832pt;}
.ls34{letter-spacing:10.416000pt;}
.ls27{letter-spacing:12.046848pt;}
.ls1e{letter-spacing:15.326464pt;}
.ls2e{letter-spacing:16.176000pt;}
.ls29{letter-spacing:24.965120pt;}
.ls16{letter-spacing:25.612800pt;}
.ls4{letter-spacing:30.735360pt;}
.ls19{letter-spacing:47.520000pt;}
.ls35{letter-spacing:159.504000pt;}
.ls2{letter-spacing:253.440000pt;}
.ls3{letter-spacing:254.080000pt;}
.lse{letter-spacing:904.464000pt;}
.ws3{word-spacing:-22.720000pt;}
.ws78{word-spacing:-17.280000pt;}
.wsdb{word-spacing:-17.210880pt;}
.ws3c{word-spacing:-15.014400pt;}
.ws65{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws6f{word-spacing:-14.602240pt;}
.ws5{word-spacing:-14.190080pt;}
.wse3{word-spacing:-14.072320pt;}
.ws26{word-spacing:-12.336000pt;}
.ws7e{word-spacing:-12.096000pt;}
.ws7c{word-spacing:-12.000000pt;}
.ws7d{word-spacing:-11.904000pt;}
.ws25{word-spacing:-11.808000pt;}
.ws3e{word-spacing:-11.664000pt;}
.ws9f{word-spacing:-11.184000pt;}
.ws0{word-spacing:-10.762880pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.419840pt;}
.ws53{word-spacing:-9.280000pt;}
.ws3d{word-spacing:-8.000000pt;}
.ws79{word-spacing:-3.827200pt;}
.wsd9{word-spacing:-3.360000pt;}
.ws37{word-spacing:-3.297280pt;}
.ws35{word-spacing:-3.179520pt;}
.ws88{word-spacing:-2.736000pt;}
.ws39{word-spacing:-2.649600pt;}
.ws4b{word-spacing:-2.531840pt;}
.ws8a{word-spacing:-2.400000pt;}
.ws87{word-spacing:-2.304000pt;}
.ws89{word-spacing:-2.208000pt;}
.ws93{word-spacing:-2.112000pt;}
.wsd2{word-spacing:-2.064000pt;}
.ws2a{word-spacing:-2.060800pt;}
.ws48{word-spacing:-1.943040pt;}
.ws94{word-spacing:-1.872000pt;}
.ws95{word-spacing:-1.680000pt;}
.ws55{word-spacing:-1.589760pt;}
.wsa6{word-spacing:-1.584000pt;}
.wsa5{word-spacing:-1.440000pt;}
.ws36{word-spacing:-1.413120pt;}
.ws57{word-spacing:-1.295360pt;}
.wsda{word-spacing:-1.200000pt;}
.wsbd{word-spacing:-1.008000pt;}
.wsde{word-spacing:-0.942080pt;}
.ws61{word-spacing:-0.912000pt;}
.ws5d{word-spacing:-0.816000pt;}
.ws15{word-spacing:-0.765440pt;}
.ws4d{word-spacing:-0.647680pt;}
.wsd4{word-spacing:-0.624000pt;}
.ws40{word-spacing:-0.576000pt;}
.wsd5{word-spacing:-0.480000pt;}
.wsb1{word-spacing:-0.384000pt;}
.ws92{word-spacing:-0.336000pt;}
.ws1e{word-spacing:-0.294400pt;}
.ws5c{word-spacing:-0.288000pt;}
.wsb{word-spacing:-0.272640pt;}
.ws60{word-spacing:-0.192000pt;}
.ws8f{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.117760pt;}
.ws91{word-spacing:-0.096000pt;}
.ws6{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.048000pt;}
.ws27{word-spacing:0.096000pt;}
.ws9{word-spacing:0.185600pt;}
.ws28{word-spacing:0.192000pt;}
.wse6{word-spacing:0.235520pt;}
.wsa0{word-spacing:0.240000pt;}
.wsb8{word-spacing:0.288000pt;}
.wse4{word-spacing:0.294400pt;}
.ws3f{word-spacing:0.336000pt;}
.ws2f{word-spacing:0.353280pt;}
.wsa{word-spacing:0.363520pt;}
.ws8{word-spacing:0.408320pt;}
.ws85{word-spacing:0.480000pt;}
.ws90{word-spacing:0.528000pt;}
.ws17{word-spacing:0.529920pt;}
.ws83{word-spacing:0.622080pt;}
.ws9d{word-spacing:0.624000pt;}
.ws18{word-spacing:0.647680pt;}
.ws51{word-spacing:0.720000pt;}
.ws6d{word-spacing:0.765440pt;}
.wsdd{word-spacing:0.816000pt;}
.ws7{word-spacing:0.857600pt;}
.ws66{word-spacing:1.000960pt;}
.wsa3{word-spacing:1.008000pt;}
.ws96{word-spacing:1.104000pt;}
.ws16{word-spacing:1.177600pt;}
.ws1c{word-spacing:1.295360pt;}
.wsa4{word-spacing:1.296000pt;}
.ws5f{word-spacing:1.344000pt;}
.ws5e{word-spacing:1.632000pt;}
.ws7b{word-spacing:1.707520pt;}
.ws97{word-spacing:1.728000pt;}
.wse{word-spacing:1.825280pt;}
.ws14{word-spacing:1.943040pt;}
.ws52{word-spacing:2.256000pt;}
.wse5{word-spacing:2.296320pt;}
.ws9b{word-spacing:2.400000pt;}
.ws42{word-spacing:2.472960pt;}
.ws23{word-spacing:2.590720pt;}
.ws98{word-spacing:2.592000pt;}
.wsaf{word-spacing:2.640000pt;}
.wsdf{word-spacing:2.832000pt;}
.wsae{word-spacing:2.928000pt;}
.ws9a{word-spacing:3.024000pt;}
.wsd{word-spacing:3.061760pt;}
.ws9c{word-spacing:3.072000pt;}
.ws32{word-spacing:3.179520pt;}
.ws71{word-spacing:3.473920pt;}
.ws81{word-spacing:3.532800pt;}
.ws99{word-spacing:3.552000pt;}
.wse0{word-spacing:3.648000pt;}
.ws4c{word-spacing:3.709440pt;}
.ws30{word-spacing:3.827200pt;}
.wsbc{word-spacing:3.840000pt;}
.wsc7{word-spacing:4.176000pt;}
.wsb0{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.357120pt;}
.ws10{word-spacing:4.474880pt;}
.wsdc{word-spacing:4.512000pt;}
.ws77{word-spacing:4.828160pt;}
.wsbb{word-spacing:4.848000pt;}
.ws8d{word-spacing:4.944000pt;}
.ws24{word-spacing:5.004800pt;}
.ws47{word-spacing:5.122560pt;}
.wsc8{word-spacing:5.136000pt;}
.wsd6{word-spacing:5.184000pt;}
.wsbe{word-spacing:5.376000pt;}
.ws8e{word-spacing:5.472000pt;}
.wsd7{word-spacing:5.568000pt;}
.ws31{word-spacing:5.652480pt;}
.ws11{word-spacing:5.770240pt;}
.wsd8{word-spacing:5.808000pt;}
.ws4e{word-spacing:6.123520pt;}
.wscc{word-spacing:6.240000pt;}
.ws29{word-spacing:6.300160pt;}
.ws1b{word-spacing:6.417920pt;}
.wsc6{word-spacing:6.480000pt;}
.wsca{word-spacing:6.768000pt;}
.ws63{word-spacing:6.864000pt;}
.ws22{word-spacing:6.947840pt;}
.ws6b{word-spacing:7.065600pt;}
.wscb{word-spacing:7.104000pt;}
.ws64{word-spacing:7.392000pt;}
.wsad{word-spacing:7.488000pt;}
.ws41{word-spacing:7.536640pt;}
.ws3b{word-spacing:7.654400pt;}
.wsc2{word-spacing:7.728000pt;}
.wsac{word-spacing:8.016000pt;}
.wsc4{word-spacing:8.160000pt;}
.ws70{word-spacing:8.184320pt;}
.ws19{word-spacing:8.302080pt;}
.wsc3{word-spacing:8.688000pt;}
.ws75{word-spacing:8.714240pt;}
.wsa1{word-spacing:8.784000pt;}
.ws7f{word-spacing:8.832000pt;}
.ws58{word-spacing:8.949760pt;}
.wsa2{word-spacing:9.312000pt;}
.wsab{word-spacing:9.408000pt;}
.ws72{word-spacing:9.479680pt;}
.ws2d{word-spacing:9.597440pt;}
.wsc9{word-spacing:9.936000pt;}
.ws8b{word-spacing:10.080000pt;}
.ws1f{word-spacing:10.127360pt;}
.ws20{word-spacing:10.245120pt;}
.wsb2{word-spacing:10.608000pt;}
.wsd0{word-spacing:10.704000pt;}
.ws33{word-spacing:10.775040pt;}
.ws21{word-spacing:10.892800pt;}
.wsb7{word-spacing:10.944000pt;}
.wsd1{word-spacing:11.328000pt;}
.ws2c{word-spacing:11.422720pt;}
.ws46{word-spacing:11.540480pt;}
.ws67{word-spacing:12.070400pt;}
.ws2b{word-spacing:12.188160pt;}
.wscd{word-spacing:12.528000pt;}
.wsce{word-spacing:12.624000pt;}
.wsc{word-spacing:12.659200pt;}
.ws44{word-spacing:12.776960pt;}
.wscf{word-spacing:13.152000pt;}
.ws62{word-spacing:13.248000pt;}
.ws43{word-spacing:13.306880pt;}
.ws45{word-spacing:13.424640pt;}
.ws86{word-spacing:13.920000pt;}
.ws6c{word-spacing:13.954560pt;}
.ws6a{word-spacing:14.072320pt;}
.wsc5{word-spacing:14.160000pt;}
.ws84{word-spacing:14.448000pt;}
.wsbf{word-spacing:14.544000pt;}
.ws5a{word-spacing:14.602240pt;}
.ws5b{word-spacing:14.720000pt;}
.wsc0{word-spacing:15.072000pt;}
.ws68{word-spacing:15.073280pt;}
.ws82{word-spacing:15.249920pt;}
.ws12{word-spacing:15.367680pt;}
.wsc1{word-spacing:15.408000pt;}
.wsa8{word-spacing:15.840000pt;}
.ws13{word-spacing:15.897600pt;}
.ws2e{word-spacing:16.015360pt;}
.wsa7{word-spacing:16.368000pt;}
.ws34{word-spacing:16.545280pt;}
.ws76{word-spacing:16.663040pt;}
.ws56{word-spacing:17.310720pt;}
.ws3a{word-spacing:17.899520pt;}
.wsb6{word-spacing:19.008000pt;}
.ws80{word-spacing:19.194880pt;}
.wsb5{word-spacing:19.680000pt;}
.ws7a{word-spacing:19.724800pt;}
.ws54{word-spacing:20.490240pt;}
.ws50{word-spacing:21.020160pt;}
.ws59{word-spacing:21.137920pt;}
.ws6e{word-spacing:22.256640pt;}
.ws73{word-spacing:24.847360pt;}
.ws74{word-spacing:24.965120pt;}
.ws4a{word-spacing:25.495040pt;}
.ws49{word-spacing:25.612800pt;}
.wsa9{word-spacing:26.688000pt;}
.wsaa{word-spacing:27.552000pt;}
.ws1d{word-spacing:28.026880pt;}
.ws38{word-spacing:28.144640pt;}
.wse1{word-spacing:28.512000pt;}
.ws69{word-spacing:28.792320pt;}
.wse2{word-spacing:29.136000pt;}
.ws4f{word-spacing:31.265280pt;}
.wsd3{word-spacing:97.104000pt;}
.wsb9{word-spacing:135.504000pt;}
.wsba{word-spacing:135.744000pt;}
.wsb3{word-spacing:159.168000pt;}
.wsb4{word-spacing:159.408000pt;}
.ws8c{word-spacing:669.792000pt;}
._c{margin-left:-3.188352pt;}
._6{margin-left:-2.034304pt;}
._0{margin-left:-0.986240pt;}
._1{width:1.535104pt;}
._9{width:2.967552pt;}
._8{width:3.903744pt;}
._11{width:5.139840pt;}
._f{width:6.074368pt;}
._10{width:8.304000pt;}
._4{width:10.127360pt;}
._e{width:14.163584pt;}
._a{width:20.583168pt;}
._3{width:27.644160pt;}
._d{width:56.289280pt;}
._7{width:83.429632pt;}
._b{width:100.508160pt;}
._5{width:102.801152pt;}
._2{width:119.646720pt;}
.fs6{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:67.840000pt;}
.y69{bottom:97.440000pt;}
.ycb{bottom:98.676480pt;}
.yea{bottom:98.683520pt;}
.y1c5{bottom:101.440000pt;}
.y26{bottom:104.916480pt;}
.y159{bottom:110.228000pt;}
.y1a2{bottom:111.484000pt;}
.y12a{bottom:111.516000pt;}
.y68{bottom:111.996000pt;}
.yab{bottom:114.652160pt;}
.y10a{bottom:114.663680pt;}
.y4e{bottom:114.693760pt;}
.yca{bottom:116.119680pt;}
.ye9{bottom:116.126720pt;}
.y1c4{bottom:118.236000pt;}
.y25{bottom:122.359680pt;}
.y158{bottom:124.952000pt;}
.y1a1{bottom:126.208000pt;}
.y129{bottom:126.232000pt;}
.y180{bottom:126.240000pt;}
.y8c{bottom:126.720000pt;}
.y67{bottom:130.720000pt;}
.yaa{bottom:132.095360pt;}
.y109{bottom:132.106880pt;}
.y4d{bottom:132.136960pt;}
.y11a{bottom:132.148480pt;}
.y1c3{bottom:132.960000pt;}
.yc9{bottom:133.400960pt;}
.ye8{bottom:133.408000pt;}
.y157{bottom:139.508000pt;}
.y24{bottom:139.640960pt;}
.y1a0{bottom:140.932000pt;}
.y128{bottom:140.956000pt;}
.y17f{bottom:140.960000pt;}
.y8b{bottom:141.444000pt;}
.y66{bottom:141.920000pt;}
.y1c2{bottom:147.516000pt;}
.ya9{bottom:149.376640pt;}
.y108{bottom:149.388160pt;}
.y4c{bottom:149.418240pt;}
.y119{bottom:149.429760pt;}
.yc8{bottom:150.682240pt;}
.ye7{bottom:150.689280pt;}
.y156{bottom:154.232000pt;}
.y17e{bottom:155.480000pt;}
.y19f{bottom:155.488000pt;}
.y127{bottom:155.512000pt;}
.y23{bottom:156.922240pt;}
.y8a{bottom:160.000000pt;}
.y1c1{bottom:162.240000pt;}
.ya8{bottom:166.657920pt;}
.y107{bottom:166.669440pt;}
.y4b{bottom:166.699520pt;}
.y118{bottom:166.711040pt;}
.yc7{bottom:168.125440pt;}
.y155{bottom:168.956000pt;}
.y17d{bottom:170.204000pt;}
.y19e{bottom:170.212000pt;}
.y126{bottom:170.236000pt;}
.y89{bottom:170.716000pt;}
.y22{bottom:174.365440pt;}
.ye6{bottom:176.125440pt;}
.y154{bottom:183.512000pt;}
.ya7{bottom:184.101120pt;}
.y106{bottom:184.112640pt;}
.y4a{bottom:184.142720pt;}
.y117{bottom:184.154240pt;}
.y17c{bottom:184.928000pt;}
.y19d{bottom:184.936000pt;}
.y125{bottom:184.960000pt;}
.yc6{bottom:185.406720pt;}
.y88{bottom:185.440000pt;}
.y21{bottom:191.646720pt;}
.y65{bottom:192.117120pt;}
.ye5{bottom:193.406720pt;}
.y153{bottom:198.236000pt;}
.y17b{bottom:199.484000pt;}
.y19c{bottom:199.492000pt;}
.y124{bottom:199.516000pt;}
.y87{bottom:199.996000pt;}
.ya6{bottom:201.382400pt;}
.y105{bottom:201.393920pt;}
.y49{bottom:201.424000pt;}
.y116{bottom:201.435520pt;}
.yc5{bottom:202.688000pt;}
.y1c0{bottom:202.720000pt;}
.y20{bottom:208.928000pt;}
.y64{bottom:209.398400pt;}
.ye4{bottom:210.688000pt;}
.y152{bottom:212.960000pt;}
.y17a{bottom:214.208000pt;}
.y19b{bottom:214.216000pt;}
.y123{bottom:214.240000pt;}
.ya5{bottom:218.663680pt;}
.y104{bottom:218.675200pt;}
.y48{bottom:218.705280pt;}
.y115{bottom:218.716800pt;}
.y86{bottom:218.720000pt;}
.y1bf{bottom:219.508000pt;}
.y1f{bottom:226.371200pt;}
.y63{bottom:226.679680pt;}
.y151{bottom:227.504000pt;}
.yc4{bottom:228.124160pt;}
.ye3{bottom:228.131200pt;}
.y179{bottom:228.932000pt;}
.y19a{bottom:228.940000pt;}
.y122{bottom:228.964000pt;}
.y85{bottom:229.920000pt;}
.y1be{bottom:234.232000pt;}
.ya4{bottom:236.106880pt;}
.y103{bottom:236.118400pt;}
.y47{bottom:236.148480pt;}
.y114{bottom:236.160000pt;}
.y150{bottom:242.228000pt;}
.y178{bottom:243.488000pt;}
.y199{bottom:243.496000pt;}
.y121{bottom:243.520000pt;}
.y1e{bottom:243.652480pt;}
.y62{bottom:244.122880pt;}
.yc3{bottom:245.405440pt;}
.ye2{bottom:245.412480pt;}
.y1bd{bottom:248.956000pt;}
.ya3{bottom:253.388160pt;}
.y102{bottom:253.399680pt;}
.y84{bottom:253.418240pt;}
.y46{bottom:253.429760pt;}
.y14f{bottom:256.952000pt;}
.y177{bottom:258.212000pt;}
.y198{bottom:258.220000pt;}
.y120{bottom:258.240000pt;}
.y1d{bottom:260.933760pt;}
.y61{bottom:261.404160pt;}
.y113{bottom:261.440000pt;}
.yc2{bottom:262.686720pt;}
.ye1{bottom:262.693760pt;}
.y1bc{bottom:263.512000pt;}
.ya2{bottom:270.669440pt;}
.y101{bottom:270.680960pt;}
.y83{bottom:270.699520pt;}
.y45{bottom:270.711040pt;}
.y14e{bottom:271.508000pt;}
.y176{bottom:272.936000pt;}
.y197{bottom:272.944000pt;}
.y11f{bottom:272.960000pt;}
.y1bb{bottom:278.236000pt;}
.y1c{bottom:278.376960pt;}
.y112{bottom:278.662400pt;}
.y60{bottom:278.685440pt;}
.yc1{bottom:280.129920pt;}
.ye0{bottom:280.136960pt;}
.y14d{bottom:286.232000pt;}
.y175{bottom:287.492000pt;}
.y196{bottom:287.500000pt;}
.y11e{bottom:287.516000pt;}
.ya1{bottom:288.112640pt;}
.y100{bottom:288.124160pt;}
.y82{bottom:288.142720pt;}
.y44{bottom:288.154240pt;}
.y1ba{bottom:292.960000pt;}
.y1b{bottom:295.658240pt;}
.y111{bottom:296.105600pt;}
.y5f{bottom:296.128640pt;}
.yc0{bottom:297.411200pt;}
.ydf{bottom:297.418240pt;}
.y1e1{bottom:300.160000pt;}
.y14c{bottom:300.956000pt;}
.y174{bottom:302.216000pt;}
.y195{bottom:302.224000pt;}
.y11d{bottom:302.236000pt;}
.ya0{bottom:305.393920pt;}
.yff{bottom:305.405440pt;}
.y81{bottom:305.424000pt;}
.y43{bottom:305.435520pt;}
.y1b9{bottom:308.160000pt;}
.y1a{bottom:312.939520pt;}
.y110{bottom:313.386880pt;}
.y5e{bottom:313.409920pt;}
.ybf{bottom:314.692480pt;}
.yde{bottom:314.699520pt;}
.y14b{bottom:315.512000pt;}
.y173{bottom:316.940000pt;}
.y194{bottom:316.948000pt;}
.y11c{bottom:316.960000pt;}
.y1e0{bottom:317.427200pt;}
.y9f{bottom:322.675200pt;}
.yfe{bottom:322.686720pt;}
.y80{bottom:322.705280pt;}
.y42{bottom:322.716800pt;}
.y1b8{bottom:324.952000pt;}
.y14a{bottom:330.236000pt;}
.y19{bottom:330.382720pt;}
.y10f{bottom:330.668160pt;}
.y5d{bottom:330.691200pt;}
.y172{bottom:331.496000pt;}
.y193{bottom:331.504000pt;}
.ybe{bottom:332.135680pt;}
.ydd{bottom:332.142720pt;}
.y1df{bottom:334.708480pt;}
.y1b7{bottom:339.508000pt;}
.y9e{bottom:340.118400pt;}
.yfd{bottom:340.129920pt;}
.y7f{bottom:340.148480pt;}
.y41{bottom:340.160000pt;}
.y149{bottom:344.960000pt;}
.y171{bottom:346.220000pt;}
.y192{bottom:346.228000pt;}
.y18{bottom:347.664000pt;}
.y10e{bottom:348.111360pt;}
.y5c{bottom:348.134400pt;}
.ybd{bottom:349.416960pt;}
.ydc{bottom:349.424000pt;}
.y1de{bottom:352.151680pt;}
.y1b6{bottom:354.232000pt;}
.y9d{bottom:357.399680pt;}
.yfc{bottom:357.411200pt;}
.y7e{bottom:357.429760pt;}
.y148{bottom:359.508000pt;}
.y170{bottom:360.944000pt;}
.y191{bottom:360.952000pt;}
.y17{bottom:364.945280pt;}
.y10d{bottom:365.392640pt;}
.y5b{bottom:365.415680pt;}
.y11b{bottom:365.440000pt;}
.y40{bottom:365.444480pt;}
.ybc{bottom:366.698240pt;}
.ydb{bottom:366.705280pt;}
.y1b5{bottom:368.956000pt;}
.y1dd{bottom:369.432960pt;}
.y147{bottom:374.232000pt;}
.y9c{bottom:374.680960pt;}
.yfb{bottom:374.692480pt;}
.y7d{bottom:374.711040pt;}
.y16f{bottom:375.500000pt;}
.y190{bottom:375.508000pt;}
.y16{bottom:382.388480pt;}
.y10c{bottom:382.673920pt;}
.y5a{bottom:382.696960pt;}
.y3f{bottom:382.724480pt;}
.y1b4{bottom:383.512000pt;}
.ybb{bottom:384.141440pt;}
.yda{bottom:384.148480pt;}
.y1dc{bottom:386.714240pt;}
.y146{bottom:388.956000pt;}
.y16e{bottom:390.224000pt;}
.y18f{bottom:390.232000pt;}
.y9b{bottom:392.124160pt;}
.yfa{bottom:392.135680pt;}
.y7c{bottom:392.154240pt;}
.y1b3{bottom:398.236000pt;}
.y15{bottom:399.669760pt;}
.y10b{bottom:400.117120pt;}
.y59{bottom:400.140160pt;}
.y3e{bottom:400.160000pt;}
.yba{bottom:401.422720pt;}
.yd9{bottom:401.429760pt;}
.y145{bottom:403.512000pt;}
.y1db{bottom:404.157440pt;}
.y16d{bottom:404.948000pt;}
.y18e{bottom:404.956000pt;}
.y9a{bottom:409.405440pt;}
.yf9{bottom:409.416960pt;}
.y7b{bottom:409.435520pt;}
.y1b2{bottom:412.960000pt;}
.y14{bottom:416.951040pt;}
.y3d{bottom:417.398400pt;}
.y58{bottom:417.421440pt;}
.y144{bottom:418.236000pt;}
.yb9{bottom:418.704000pt;}
.yd8{bottom:418.711040pt;}
.y16c{bottom:419.504000pt;}
.y18d{bottom:419.512000pt;}
.y1da{bottom:421.438720pt;}
.y99{bottom:426.686720pt;}
.yf8{bottom:426.698240pt;}
.y7a{bottom:426.716800pt;}
.y143{bottom:432.960000pt;}
.y16b{bottom:434.228000pt;}
.y18c{bottom:434.236000pt;}
.y13{bottom:434.394240pt;}
.y3c{bottom:434.679680pt;}
.y57{bottom:434.702720pt;}
.y1b1{bottom:436.144000pt;}
.yb8{bottom:436.147200pt;}
.yd7{bottom:436.154240pt;}
.y1d9{bottom:438.720000pt;}
.y98{bottom:444.129920pt;}
.y79{bottom:444.136960pt;}
.yf7{bottom:444.141440pt;}
.y16a{bottom:448.952000pt;}
.y18b{bottom:448.960000pt;}
.y12{bottom:451.675520pt;}
.y3b{bottom:452.122880pt;}
.y56{bottom:452.145920pt;}
.y1b0{bottom:453.425280pt;}
.yb7{bottom:453.428480pt;}
.yd6{bottom:453.435520pt;}
.y1d8{bottom:456.145920pt;}
.y142{bottom:456.157440pt;}
.y97{bottom:461.411200pt;}
.y78{bottom:461.418240pt;}
.yf6{bottom:461.422720pt;}
.y169{bottom:463.508000pt;}
.y18a{bottom:463.516000pt;}
.y11{bottom:468.956800pt;}
.y3a{bottom:469.404160pt;}
.y55{bottom:469.427200pt;}
.y1af{bottom:470.706560pt;}
.yb6{bottom:470.709760pt;}
.yd5{bottom:470.716800pt;}
.y1d7{bottom:473.427200pt;}
.y141{bottom:473.438720pt;}
.y168{bottom:478.232000pt;}
.y189{bottom:478.240000pt;}
.y96{bottom:478.692480pt;}
.y77{bottom:478.699520pt;}
.yf5{bottom:478.704000pt;}
.y10{bottom:486.400000pt;}
.y39{bottom:486.685440pt;}
.y54{bottom:486.708480pt;}
.yd4{bottom:488.142720pt;}
.y1ae{bottom:488.149760pt;}
.yb5{bottom:488.152960pt;}
.y1d6{bottom:490.708480pt;}
.y140{bottom:490.720000pt;}
.y188{bottom:492.932000pt;}
.y167{bottom:492.956000pt;}
.y95{bottom:496.135680pt;}
.y76{bottom:496.142720pt;}
.yf4{bottom:496.147200pt;}
.y38{bottom:504.128640pt;}
.y53{bottom:504.151680pt;}
.yd3{bottom:505.424000pt;}
.y1ad{bottom:505.431040pt;}
.yb4{bottom:505.434240pt;}
.y187{bottom:507.488000pt;}
.y166{bottom:507.512000pt;}
.y13f{bottom:507.516000pt;}
.y1d5{bottom:508.151680pt;}
.yf{bottom:511.680000pt;}
.y94{bottom:513.416960pt;}
.y75{bottom:513.424000pt;}
.yf3{bottom:513.428480pt;}
.y37{bottom:521.409920pt;}
.y52{bottom:521.432960pt;}
.y186{bottom:522.212000pt;}
.y13e{bottom:522.236000pt;}
.yd2{bottom:522.705280pt;}
.y1ac{bottom:522.712320pt;}
.yb3{bottom:522.715520pt;}
.y1d4{bottom:525.432960pt;}
.ye{bottom:528.956800pt;}
.y93{bottom:530.698240pt;}
.y74{bottom:530.705280pt;}
.yf2{bottom:530.709760pt;}
.y185{bottom:536.936000pt;}
.y13d{bottom:536.952000pt;}
.y165{bottom:536.960000pt;}
.y36{bottom:538.691200pt;}
.y51{bottom:538.714240pt;}
.yd1{bottom:540.148480pt;}
.y1ab{bottom:540.155520pt;}
.yb2{bottom:540.158720pt;}
.y1d3{bottom:542.714240pt;}
.yd{bottom:546.400000pt;}
.y92{bottom:548.141440pt;}
.y73{bottom:548.148480pt;}
.yf1{bottom:548.152960pt;}
.y184{bottom:551.492000pt;}
.y13c{bottom:551.508000pt;}
.y164{bottom:551.516000pt;}
.y35{bottom:556.134400pt;}
.y50{bottom:556.157440pt;}
.yd0{bottom:557.429760pt;}
.y1aa{bottom:557.436800pt;}
.yb1{bottom:557.440000pt;}
.y1d2{bottom:560.157440pt;}
.yc{bottom:565.266240pt;}
.y91{bottom:565.422720pt;}
.y72{bottom:565.429760pt;}
.yf0{bottom:565.434240pt;}
.y183{bottom:566.216000pt;}
.y13b{bottom:566.232000pt;}
.y163{bottom:566.240000pt;}
.y34{bottom:573.415680pt;}
.y4f{bottom:573.438720pt;}
.y1a9{bottom:574.718080pt;}
.yb0{bottom:574.721280pt;}
.y1d1{bottom:577.438720pt;}
.y182{bottom:580.940000pt;}
.y13a{bottom:580.956000pt;}
.y162{bottom:580.964000pt;}
.y90{bottom:582.704000pt;}
.y71{bottom:582.711040pt;}
.yef{bottom:582.715520pt;}
.y33{bottom:590.696960pt;}
.yb{bottom:591.348800pt;}
.y1a8{bottom:592.161280pt;}
.yaf{bottom:592.164480pt;}
.y1d0{bottom:594.720000pt;}
.y181{bottom:595.496000pt;}
.y139{bottom:595.512000pt;}
.y161{bottom:595.520000pt;}
.y8f{bottom:600.147200pt;}
.y70{bottom:600.154240pt;}
.yee{bottom:600.158720pt;}
.y32{bottom:608.140160pt;}
.yae{bottom:609.445760pt;}
.y160{bottom:610.220000pt;}
.y138{bottom:610.236000pt;}
.y1cf{bottom:612.152960pt;}
.y8e{bottom:617.428480pt;}
.ya{bottom:617.431360pt;}
.y6f{bottom:617.435520pt;}
.yed{bottom:617.440000pt;}
.y15f{bottom:624.944000pt;}
.y137{bottom:624.960000pt;}
.y31{bottom:625.421440pt;}
.y1ce{bottom:629.434240pt;}
.y8d{bottom:634.709760pt;}
.y6e{bottom:634.716800pt;}
.yad{bottom:634.720000pt;}
.y15e{bottom:639.500000pt;}
.y136{bottom:639.516000pt;}
.y30{bottom:642.702720pt;}
.yec{bottom:642.724480pt;}
.y9{bottom:643.354880pt;}
.y1cd{bottom:646.715520pt;}
.y6d{bottom:652.152960pt;}
.y1a7{bottom:652.160000pt;}
.y15d{bottom:654.224000pt;}
.y135{bottom:654.235867pt;}
.y2f{bottom:660.145920pt;}
.yac{bottom:660.160000pt;}
.y1cc{bottom:664.158720pt;}
.y15c{bottom:668.948000pt;}
.y134{bottom:668.959867pt;}
.y1a6{bottom:668.960000pt;}
.y6c{bottom:669.434240pt;}
.y8{bottom:669.437440pt;}
.y2e{bottom:677.427200pt;}
.yeb{bottom:677.440000pt;}
.y1cb{bottom:681.440000pt;}
.y15b{bottom:683.504000pt;}
.y133{bottom:683.515867pt;}
.y1a5{bottom:683.516000pt;}
.y6b{bottom:686.715520pt;}
.y2d{bottom:694.708480pt;}
.y15a{bottom:698.228000pt;}
.y132{bottom:698.236000pt;}
.y1a4{bottom:698.240000pt;}
.y1ca{bottom:698.721280pt;}
.y6a{bottom:704.158720pt;}
.y2c{bottom:712.151680pt;}
.y131{bottom:712.952000pt;}
.y1a3{bottom:712.964000pt;}
.y1c9{bottom:716.164480pt;}
.y7{bottom:718.560000pt;}
.ycf{bottom:721.440000pt;}
.y130{bottom:727.508000pt;}
.y2b{bottom:729.432960pt;}
.y6{bottom:729.440000pt;}
.yce{bottom:738.721280pt;}
.y1c8{bottom:741.438720pt;}
.y12f{bottom:742.232000pt;}
.y2a{bottom:746.714240pt;}
.ycd{bottom:756.164480pt;}
.y12e{bottom:756.956000pt;}
.y1c7{bottom:758.720000pt;}
.y29{bottom:764.157440pt;}
.y5{bottom:764.158720pt;}
.y12d{bottom:771.512000pt;}
.ycc{bottom:773.445760pt;}
.y1c6{bottom:775.520000pt;}
.y28{bottom:781.438720pt;}
.y4{bottom:781.440000pt;}
.y12c{bottom:786.236000pt;}
.y3{bottom:798.720000pt;}
.y12b{bottom:800.960000pt;}
.y27{bottom:809.759867pt;}
.y1{bottom:828.960000pt;}
.hb{height:28.078125pt;}
.h3{height:32.570625pt;}
.h2{height:37.729375pt;}
.h4{height:42.117188pt;}
.h11{height:42.234375pt;}
.h15{height:44.094658pt;}
.h13{height:44.110125pt;}
.h17{height:44.126125pt;}
.h14{height:44.171717pt;}
.h16{height:44.172250pt;}
.h12{height:44.188250pt;}
.hd{height:46.609688pt;}
.h5{height:51.663750pt;}
.h9{height:51.807500pt;}
.hc{height:53.718785pt;}
.he{height:53.759745pt;}
.ha{height:53.782785pt;}
.hf{height:53.836545pt;}
.h6{height:60.648750pt;}
.h10{height:60.817500pt;}
.h7{height:79.741875pt;}
.h8{height:79.963750pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:83.200000pt;}
.x4{left:93.440960pt;}
.x7{left:109.592960pt;}
.x8{left:130.391680pt;}
.x6{left:163.804800pt;}
.x5{left:175.505600pt;}
.x3{left:205.760640pt;}
.xa{left:275.200000pt;}
.x9{left:312.320000pt;}
.x2{left:321.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; }
  