
    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_2643eae04a36ebf0586a062a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_d62086f62bb71c76510c246b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_8a80e976839c6df09bb39204.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_cbcdec0d0310276f3dd2d829.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_d3653ee81baee7b5a9f36e39.woff')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_88a24d877a6101c63de75493.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_00fbe7738be197ea46f3a8f7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_e562a1f14240af969b4740b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_3297b93bcb052fb260856932.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12adaaeca7fecc11f3e96d0e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b5df382e99b0578b7c55370a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_703744467e73e0462cff2c73.woff')format("woff");}.ffc{font-family:ffc;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b7b1883747623c01b81f7aa6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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;}
.m3{transform:matrix(0.000000,0.249679,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249679,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249679,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-29.880000px;}
.v4{vertical-align:-27.000000px;}
.v6{vertical-align:-8.257566px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:29.880000px;}
.ls37{letter-spacing:-1.980000px;}
.ls3d{letter-spacing:-1.285553px;}
.ls32{letter-spacing:-1.260000px;}
.ls19{letter-spacing:-0.774000px;}
.ls2c{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.538800px;}
.ls3c{letter-spacing:-0.513630px;}
.ls35{letter-spacing:-0.466800px;}
.ls30{letter-spacing:-0.460200px;}
.ls2e{letter-spacing:-0.450600px;}
.ls4b{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.269400px;}
.ls36{letter-spacing:-0.223800px;}
.ls3b{letter-spacing:-0.222000px;}
.ls4a{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.078156px;}
.ls1c{letter-spacing:-0.072144px;}
.ls1f{letter-spacing:-0.066132px;}
.ls31{letter-spacing:-0.053400px;}
.ls1d{letter-spacing:-0.024048px;}
.ls16{letter-spacing:-0.012000px;}
.ls11{letter-spacing:-0.006000px;}
.ls10{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls42{letter-spacing:0.009576px;}
.ls28{letter-spacing:0.010200px;}
.ls2{letter-spacing:0.012000px;}
.ls2f{letter-spacing:0.017400px;}
.ls12{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.026352px;}
.ls5{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.042000px;}
.ls26{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.046116px;}
.ls45{letter-spacing:0.053280px;}
.ls49{letter-spacing:0.053400px;}
.lsc{letter-spacing:0.065880px;}
.lsb{letter-spacing:0.072468px;}
.ls41{letter-spacing:0.076608px;}
.lsd{letter-spacing:0.078156px;}
.lse{letter-spacing:0.084168px;}
.lsf{letter-spacing:0.090180px;}
.ls2a{letter-spacing:0.095760px;}
.ls40{letter-spacing:0.100548px;}
.ls39{letter-spacing:0.106560px;}
.ls18{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.110124px;}
.ls29{letter-spacing:0.119700px;}
.ls8{letter-spacing:0.153360px;}
.ls44{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181116px;}
.ls2d{letter-spacing:0.181200px;}
.ls47{letter-spacing:0.181440px;}
.ls3a{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.206640px;}
.ls27{letter-spacing:0.223920px;}
.ls34{letter-spacing:0.253200px;}
.ls4{letter-spacing:0.253920px;}
.ls14{letter-spacing:0.258000px;}
.ls7{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls38{letter-spacing:0.268128px;}
.ls33{letter-spacing:0.269400px;}
.ls25{letter-spacing:0.293760px;}
.ls1a{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.540000px;}
.ls48{letter-spacing:1.800000px;}
.ls46{letter-spacing:6.660000px;}
.ls24{letter-spacing:8.962080px;}
.ls3f{letter-spacing:16.020000px;}
.ls3e{letter-spacing:22.589280px;}
.ls21{letter-spacing:22.733280px;}
.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;}
}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws7c{word-spacing:-15.199800px;}
.ws85{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.048000px;}
.ws5e{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws5f{word-spacing:-14.886600px;}
.ws84{word-spacing:-14.733600px;}
.ws5b{word-spacing:-14.328000px;}
.ws9{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws64{word-spacing:-12.420000px;}
.ws60{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.060000px;}
.ws79{word-spacing:-11.999808px;}
.ws7a{word-spacing:-11.800710px;}
.ws86{word-spacing:-11.700000px;}
.ws5c{word-spacing:-11.609400px;}
.wsb{word-spacing:-10.711116px;}
.wsc{word-spacing:-10.530000px;}
.ws5d{word-spacing:-9.737400px;}
.ws6{word-spacing:-9.720000px;}
.ws70{word-spacing:-9.633034px;}
.ws6e{word-spacing:-9.620665px;}
.ws6f{word-spacing:-9.612138px;}
.ws6d{word-spacing:-9.599796px;}
.ws73{word-spacing:-8.314243px;}
.ws62{word-spacing:-7.813200px;}
.ws63{word-spacing:-7.570200px;}
.ws61{word-spacing:-7.560000px;}
.ws65{word-spacing:-7.470000px;}
.ws71{word-spacing:-6.991155px;}
.ws75{word-spacing:-2.028000px;}
.ws78{word-spacing:-0.576000px;}
.ws52{word-spacing:-0.342576px;}
.ws76{word-spacing:-0.318000px;}
.ws68{word-spacing:-0.191520px;}
.ws82{word-spacing:-0.100548px;}
.ws0{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws57{word-spacing:0.006012px;}
.ws55{word-spacing:0.012024px;}
.ws53{word-spacing:0.019764px;}
.ws54{word-spacing:0.026352px;}
.ws50{word-spacing:0.046116px;}
.ws51{word-spacing:0.065880px;}
.ws58{word-spacing:0.114228px;}
.ws5a{word-spacing:0.156312px;}
.ws56{word-spacing:0.162324px;}
.ws59{word-spacing:0.168336px;}
.ws69{word-spacing:0.880992px;}
.ws7f{word-spacing:1.441848px;}
.ws81{word-spacing:1.632708px;}
.ws66{word-spacing:4.108104px;}
.ws67{word-spacing:4.132044px;}
.ws10{word-spacing:4.320000px;}
.ws11{word-spacing:4.374000px;}
.wsf{word-spacing:4.428000px;}
.wse{word-spacing:4.500000px;}
.ws43{word-spacing:5.136000px;}
.ws42{word-spacing:5.142000px;}
.ws1e{word-spacing:5.184000px;}
.ws4c{word-spacing:5.202000px;}
.ws1f{word-spacing:5.220000px;}
.ws80{word-spacing:5.927544px;}
.ws41{word-spacing:7.230000px;}
.ws40{word-spacing:7.290000px;}
.ws30{word-spacing:7.950000px;}
.ws2e{word-spacing:8.070000px;}
.ws2f{word-spacing:8.100000px;}
.ws31{word-spacing:8.784000px;}
.ws34{word-spacing:8.820000px;}
.ws32{word-spacing:8.844000px;}
.ws7b{word-spacing:9.133920px;}
.ws29{word-spacing:9.504000px;}
.ws35{word-spacing:9.540000px;}
.ws36{word-spacing:9.564000px;}
.ws27{word-spacing:10.098000px;}
.ws33{word-spacing:10.194000px;}
.ws26{word-spacing:10.206000px;}
.ws3a{word-spacing:10.218000px;}
.ws28{word-spacing:10.314000px;}
.ws39{word-spacing:10.338000px;}
.ws6a{word-spacing:11.360760px;}
.ws3b{word-spacing:11.688000px;}
.ws22{word-spacing:14.526000px;}
.ws25{word-spacing:14.580000px;}
.ws21{word-spacing:15.120000px;}
.ws24{word-spacing:15.228000px;}
.ws23{word-spacing:15.300000px;}
.ws20{word-spacing:15.336000px;}
.ws4a{word-spacing:16.614000px;}
.ws37{word-spacing:16.674000px;}
.ws38{word-spacing:16.794000px;}
.ws4b{word-spacing:17.388000px;}
.ws72{word-spacing:18.509455px;}
.ws15{word-spacing:18.846000px;}
.ws16{word-spacing:18.900000px;}
.ws6b{word-spacing:19.387440px;}
.ws17{word-spacing:19.422000px;}
.ws3e{word-spacing:19.542000px;}
.ws3c{word-spacing:20.256000px;}
.ws3d{word-spacing:20.340000px;}
.ws77{word-spacing:22.164000px;}
.ws74{word-spacing:22.308000px;}
.ws46{word-spacing:23.184000px;}
.ws45{word-spacing:23.190000px;}
.ws2b{word-spacing:23.196000px;}
.ws44{word-spacing:23.244000px;}
.ws2a{word-spacing:23.364000px;}
.ws13{word-spacing:23.760000px;}
.ws14{word-spacing:23.868000px;}
.ws7e{word-spacing:24.840000px;}
.ws7d{word-spacing:28.946160px;}
.ws83{word-spacing:29.053080px;}
.ws12{word-spacing:30.348000px;}
.ws7{word-spacing:31.520640px;}
.ws3f{word-spacing:31.794000px;}
.ws4f{word-spacing:32.508000px;}
.ws4d{word-spacing:33.228000px;}
.ws4e{word-spacing:33.348000px;}
.ws47{word-spacing:34.662000px;}
.ws1c{word-spacing:34.668000px;}
.ws48{word-spacing:34.722000px;}
.ws1d{word-spacing:34.740000px;}
.ws1b{word-spacing:34.776000px;}
.ws49{word-spacing:34.782000px;}
.ws1a{word-spacing:34.830000px;}
.ws2d{word-spacing:40.458000px;}
.ws19{word-spacing:43.380000px;}
.ws18{word-spacing:44.064000px;}
.ws2c{word-spacing:51.942000px;}
.ws6c{word-spacing:560.464763px;}
._1f{margin-left:-367.894589px;}
._1c{margin-left:-11.712000px;}
._9{margin-left:-3.741662px;}
._3{margin-left:-2.639988px;}
._0{margin-left:-1.152000px;}
._1{width:1.464000px;}
._6{width:2.544000px;}
._2{width:3.857976px;}
._c{width:5.057088px;}
._11{width:6.244801px;}
._12{width:7.513555px;}
._15{width:8.846892px;}
._17{width:10.219199px;}
._16{width:12.190801px;}
._18{width:13.505999px;}
._10{width:16.275360px;}
._1a{width:17.453645px;}
._19{width:18.585599px;}
._d{width:20.526606px;}
._7{width:22.307994px;}
._5{width:23.675982px;}
._4{width:24.990018px;}
._24{width:26.084622px;}
._a{width:27.937800px;}
._b{width:29.103598px;}
._1b{width:30.493801px;}
._20{width:31.770596px;}
._1d{width:32.824800px;}
._13{width:34.630801px;}
._14{width:35.856000px;}
._e{width:37.678800px;}
._f{width:39.651360px;}
._8{width:41.618962px;}
._21{width:46.015140px;}
._25{width:49.592160px;}
._27{width:52.773612px;}
._26{width:53.805828px;}
._23{width:55.726499px;}
._22{width:56.772000px;}
._1e{width:78.923563px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:22.895978px;}
.fse{font-size:22.971047px;}
.fs12{font-size:25.148041px;}
.fsa{font-size:29.880000px;}
.fs8{font-size:30.240000px;}
.fs13{font-size:33.072731px;}
.fsb{font-size:34.531639px;}
.fs10{font-size:34.576037px;}
.fsd{font-size:34.606708px;}
.fs11{font-size:34.651203px;}
.fs4{font-size:38.880000px;}
.fs16{font-size:41.760000px;}
.fs6{font-size:42.120000px;}
.fs15{font-size:47.202840px;}
.fs9{font-size:47.880000px;}
.fs14{font-size:47.999232px;}
.fs3{font-size:48.240000px;}
.fsf{font-size:49.984924px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:1.260675px;}
.y93{bottom:2.519610px;}
.ya2{bottom:2.520000px;}
.ya4{bottom:2.700000px;}
.y91{bottom:5.579610px;}
.ye1{bottom:6.992419px;}
.y90{bottom:19.259610px;}
.yf9{bottom:29.832037px;}
.yf6{bottom:58.376950px;}
.ye3{bottom:60.216176px;}
.yec{bottom:68.229747px;}
.ye8{bottom:69.299507px;}
.yf5{bottom:75.999342px;}
.yed{bottom:81.930574px;}
.yfb{bottom:82.266866px;}
.yf4{bottom:83.502315px;}
.yeb{bottom:88.796254px;}
.yf8{bottom:95.137951px;}
.ye4{bottom:100.901108px;}
.yf3{bottom:103.340801px;}
.yf2{bottom:110.847680px;}
.yf1{bottom:124.758866px;}
.ye2{bottom:126.479232px;}
.yf0{bottom:132.265743px;}
.yf7{bottom:134.048631px;}
.ye7{bottom:135.284183px;}
.yfa{bottom:149.375227px;}
.yef{bottom:158.969899px;}
.yea{bottom:158.969926px;}
.ye6{bottom:158.969942px;}
.yee{bottom:169.291855px;}
.ye9{bottom:169.291876px;}
.ye5{bottom:169.291898px;}
.y110{bottom:186.058500px;}
.y12f{bottom:186.210000px;}
.y2c{bottom:188.817000px;}
.y55{bottom:188.850000px;}
.y14c{bottom:189.390000px;}
.y10f{bottom:203.338500px;}
.yc7{bottom:203.995500px;}
.ydf{bottom:204.543000px;}
.y54{bottom:205.230000px;}
.y2b{bottom:206.097000px;}
.y14b{bottom:206.670000px;}
.y7f{bottom:207.319500px;}
.y9e{bottom:207.814500px;}
.yc6{bottom:217.791000px;}
.y10e{bottom:220.438500px;}
.y53{bottom:221.610000px;}
.y2a{bottom:223.377000px;}
.y7e{bottom:223.699500px;}
.y14a{bottom:223.950000px;}
.y9d{bottom:225.094500px;}
.y10d{bottom:237.718500px;}
.y52{bottom:237.990000px;}
.y7d{bottom:240.079500px;}
.y29{bottom:240.631500px;}
.y149{bottom:241.230000px;}
.y9c{bottom:242.374500px;}
.y51{bottom:254.370000px;}
.y10c{bottom:254.998500px;}
.y7c{bottom:256.459500px;}
.y28{bottom:257.886000px;}
.y148{bottom:258.330000px;}
.y9b{bottom:259.654500px;}
.y50{bottom:270.750000px;}
.y10b{bottom:272.278500px;}
.y7b{bottom:272.839500px;}
.y27{bottom:275.140500px;}
.y147{bottom:275.610000px;}
.y9a{bottom:276.934500px;}
.y4f{bottom:287.130000px;}
.y7a{bottom:289.219500px;}
.y10a{bottom:289.558500px;}
.y26{bottom:292.395000px;}
.y146{bottom:292.890000px;}
.y99{bottom:294.034500px;}
.y4e{bottom:303.555000px;}
.y79{bottom:305.599500px;}
.y109{bottom:306.703500px;}
.y25{bottom:309.649500px;}
.y145{bottom:310.215000px;}
.y98{bottom:311.359500px;}
.y78{bottom:322.024500px;}
.y108{bottom:323.983500px;}
.y4d{bottom:324.615000px;}
.y24{bottom:326.904000px;}
.y144{bottom:327.495000px;}
.y97{bottom:328.639500px;}
.y77{bottom:338.404500px;}
.y107{bottom:341.263500px;}
.y23{bottom:344.158500px;}
.y143{bottom:344.775000px;}
.y96{bottom:353.119890px;}
.y106{bottom:358.543500px;}
.y22{bottom:361.413000px;}
.y4c{bottom:361.695000px;}
.y142{bottom:361.875000px;}
.y95{bottom:367.699890px;}
.y76{bottom:369.184500px;}
.y105{bottom:375.823500px;}
.y21{bottom:378.667500px;}
.y4b{bottom:378.975000px;}
.y141{bottom:379.155000px;}
.y176{bottom:380.055000px;}
.y94{bottom:382.279890px;}
.y75{bottom:383.044500px;}
.y175{bottom:393.555000px;}
.y20{bottom:395.922000px;}
.y4a{bottom:396.075000px;}
.y140{bottom:396.435000px;}
.y92{bottom:396.859890px;}
.y74{bottom:396.904500px;}
.y104{bottom:397.423500px;}
.y174{bottom:407.055000px;}
.y8f{bottom:412.159890px;}
.y1f{bottom:413.176500px;}
.y49{bottom:413.355000px;}
.y13f{bottom:413.715000px;}
.y173{bottom:424.155000px;}
.y103{bottom:429.823500px;}
.y1e{bottom:430.431000px;}
.y48{bottom:430.635000px;}
.y13e{bottom:430.995000px;}
.y172{bottom:437.655000px;}
.y12e{bottom:438.555000px;}
.y102{bottom:447.103500px;}
.y1d{bottom:447.685500px;}
.y47{bottom:447.915000px;}
.y13d{bottom:448.275000px;}
.y171{bottom:451.155000px;}
.y12d{bottom:455.835000px;}
.y8e{bottom:460.335300px;}
.y101{bottom:464.203500px;}
.y170{bottom:464.655000px;}
.y1c{bottom:464.940000px;}
.y46{bottom:465.195000px;}
.y13c{bottom:465.375000px;}
.y12c{bottom:473.115000px;}
.y8d{bottom:474.195300px;}
.y100{bottom:481.483500px;}
.y16f{bottom:481.935000px;}
.y1b{bottom:482.194500px;}
.y45{bottom:482.475000px;}
.y13b{bottom:482.655000px;}
.y8c{bottom:487.875300px;}
.y12b{bottom:490.395000px;}
.y16e{bottom:495.435000px;}
.ya5{bottom:496.263825px;}
.y1a{bottom:499.449000px;}
.y44{bottom:499.575000px;}
.y13a{bottom:499.935000px;}
.y8b{bottom:501.915300px;}
.yc5{bottom:504.571500px;}
.y12a{bottom:507.675000px;}
.y16d{bottom:508.935000px;}
.yaa{bottom:515.908800px;}
.y8a{bottom:516.496500px;}
.y19{bottom:516.703500px;}
.y43{bottom:516.855000px;}
.y132{bottom:517.074540px;}
.y139{bottom:517.215000px;}
.yc4{bottom:520.951500px;}
.y16c{bottom:522.435000px;}
.y129{bottom:524.775000px;}
.y131{bottom:530.840040px;}
.y18{bottom:533.958000px;}
.y42{bottom:534.135000px;}
.yc3{bottom:537.331500px;}
.y138{bottom:538.815000px;}
.y16b{bottom:539.715000px;}
.y128{bottom:542.055000px;}
.y130{bottom:544.701300px;}
.y89{bottom:545.835000px;}
.y17{bottom:551.212500px;}
.y41{bottom:551.415000px;}
.y16a{bottom:553.215000px;}
.yc2{bottom:553.711500px;}
.y73{bottom:554.115000px;}
.y127{bottom:559.335000px;}
.y88{bottom:563.115000px;}
.y169{bottom:566.715000px;}
.yff{bottom:566.876850px;}
.y16{bottom:568.467000px;}
.y40{bottom:568.695000px;}
.yc1{bottom:570.091500px;}
.y72{bottom:571.395000px;}
.y137{bottom:573.015000px;}
.y126{bottom:576.645000px;}
.y87{bottom:580.425000px;}
.y168{bottom:584.025000px;}
.y3f{bottom:586.005000px;}
.yc0{bottom:586.501500px;}
.y136{bottom:586.905000px;}
.y71{bottom:588.705000px;}
.y15{bottom:590.277000px;}
.y125{bottom:593.925000px;}
.y167{bottom:597.525000px;}
.y86{bottom:597.705000px;}
.ybf{bottom:602.881500px;}
.y3e{bottom:603.105000px;}
.y70{bottom:605.985000px;}
.y166{bottom:611.025000px;}
.y124{bottom:611.205000px;}
.y85{bottom:614.985000px;}
.ybe{bottom:619.261500px;}
.y3d{bottom:620.385000px;}
.y6f{bottom:623.265000px;}
.y165{bottom:624.525000px;}
.y123{bottom:628.305000px;}
.ya9{bottom:632.091600px;}
.y84{bottom:632.265000px;}
.y14{bottom:633.885000px;}
.ybd{bottom:635.641500px;}
.y3c{bottom:637.665000px;}
.y6e{bottom:640.545000px;}
.y164{bottom:641.805000px;}
.y13{bottom:649.365000px;}
.ybc{bottom:652.021500px;}
.y3b{bottom:654.945000px;}
.y163{bottom:655.305000px;}
.y6d{bottom:657.825000px;}
.y83{bottom:658.365000px;}
.yde{bottom:659.805000px;}
.y122{bottom:662.865000px;}
.y12{bottom:665.025000px;}
.ybb{bottom:668.401500px;}
.y162{bottom:668.805000px;}
.y3a{bottom:672.225000px;}
.y82{bottom:674.745000px;}
.y6c{bottom:674.925000px;}
.y121{bottom:676.725000px;}
.ydd{bottom:677.085000px;}
.y11{bottom:680.544000px;}
.y161{bottom:682.305000px;}
.yba{bottom:684.781500px;}
.y39{bottom:689.325000px;}
.y120{bottom:690.405000px;}
.y81{bottom:691.125000px;}
.y6b{bottom:692.205000px;}
.ydc{bottom:694.365000px;}
.y10{bottom:696.063000px;}
.y160{bottom:699.585000px;}
.yb9{bottom:705.841500px;}
.y38{bottom:706.605000px;}
.y80{bottom:707.505000px;}
.yf{bottom:711.582000px;}
.ydb{bottom:711.645000px;}
.y15f{bottom:713.085000px;}
.y37{bottom:723.885000px;}
.yfe{bottom:725.599350px;}
.y15e{bottom:726.585000px;}
.y6a{bottom:726.765000px;}
.ye{bottom:727.101000px;}
.yda{bottom:728.745000px;}
.yb8{bottom:734.461500px;}
.ya8{bottom:735.659040px;}
.y69{bottom:740.625000px;}
.y36{bottom:741.165000px;}
.yd{bottom:742.620000px;}
.y15d{bottom:743.685000px;}
.yd9{bottom:746.025000px;}
.ya7{bottom:749.520300px;}
.y68{bottom:754.305000px;}
.y15c{bottom:757.185000px;}
.yc{bottom:758.139000px;}
.y35{bottom:758.445000px;}
.yb7{bottom:760.561500px;}
.yd8{bottom:763.305000px;}
.y67{bottom:768.165000px;}
.ya0{bottom:769.968000px;}
.y15b{bottom:770.685000px;}
.yb{bottom:773.658000px;}
.y34{bottom:775.725000px;}
.yb6{bottom:777.841500px;}
.yd7{bottom:780.585000px;}
.y66{bottom:782.025000px;}
.ya1{bottom:783.105000px;}
.y15a{bottom:784.185000px;}
.ya{bottom:789.177000px;}
.y33{bottom:792.825000px;}
.yb5{bottom:795.121500px;}
.y65{bottom:795.705000px;}
.y159{bottom:797.685000px;}
.yd6{bottom:797.865000px;}
.y9{bottom:804.696000px;}
.y32{bottom:810.105000px;}
.yb4{bottom:812.401500px;}
.y158{bottom:814.965000px;}
.yd5{bottom:815.145000px;}
.y8{bottom:820.215000px;}
.y31{bottom:827.385000px;}
.y157{bottom:828.465000px;}
.yb3{bottom:829.681500px;}
.yd4{bottom:832.245000px;}
.y7{bottom:835.734000px;}
.y156{bottom:841.965000px;}
.y30{bottom:844.665000px;}
.yb2{bottom:846.961500px;}
.yd3{bottom:849.525000px;}
.y6{bottom:851.253000px;}
.y155{bottom:860.550000px;}
.y2f{bottom:861.990000px;}
.yb1{bottom:864.286500px;}
.y5{bottom:866.772000px;}
.yd2{bottom:866.850000px;}
.y135{bottom:874.770000px;}
.y2e{bottom:879.270000px;}
.yb0{bottom:881.386500px;}
.y4{bottom:882.291000px;}
.yfd{bottom:883.105050px;}
.yd1{bottom:884.130000px;}
.y154{bottom:891.330000px;}
.y134{bottom:892.050000px;}
.y2d{bottom:896.370000px;}
.y3{bottom:897.810000px;}
.yaf{bottom:899.790000px;}
.yd0{bottom:901.410000px;}
.y153{bottom:908.610000px;}
.y133{bottom:909.330000px;}
.yae{bottom:917.070000px;}
.ycf{bottom:918.510000px;}
.y152{bottom:925.890000px;}
.y11f{bottom:926.610000px;}
.yad{bottom:934.350000px;}
.yce{bottom:935.790000px;}
.y5c{bottom:942.936450px;}
.y151{bottom:943.170000px;}
.y11e{bottom:943.890000px;}
.ycd{bottom:953.070000px;}
.y150{bottom:960.270000px;}
.y11d{bottom:961.170000px;}
.yac{bottom:965.850000px;}
.y5b{bottom:968.398800px;}
.ycc{bottom:970.350000px;}
.y14f{bottom:977.550000px;}
.y9f{bottom:977.553000px;}
.y11c{bottom:978.270000px;}
.yab{bottom:979.710000px;}
.y5a{bottom:987.208800px;}
.ycb{bottom:987.630000px;}
.ya3{bottom:991.050000px;}
.y14e{bottom:994.830000px;}
.y11b{bottom:995.550000px;}
.ye0{bottom:1002.294730px;}
.y59{bottom:1005.928800px;}
.yca{bottom:1009.230000px;}
.y11a{bottom:1012.830000px;}
.y14d{bottom:1016.610000px;}
.y58{bottom:1024.648800px;}
.y119{bottom:1030.110000px;}
.yfc{bottom:1035.335700px;}
.yc9{bottom:1037.670000px;}
.y57{bottom:1043.458800px;}
.y118{bottom:1047.390000px;}
.yc8{bottom:1054.050000px;}
.y56{bottom:1063.258800px;}
.y117{bottom:1064.490000px;}
.y64{bottom:1070.430000px;}
.y116{bottom:1081.770000px;}
.y63{bottom:1086.810000px;}
.y115{bottom:1099.050000px;}
.y62{bottom:1103.190000px;}
.y2{bottom:1106.970000px;}
.y114{bottom:1116.330000px;}
.y61{bottom:1119.570000px;}
.y113{bottom:1133.640000px;}
.y60{bottom:1135.980000px;}
.y1{bottom:1148.400000px;}
.y112{bottom:1150.920000px;}
.y5f{bottom:1152.360000px;}
.y111{bottom:1168.020000px;}
.y5e{bottom:1168.740000px;}
.y5d{bottom:1232.130000px;}
.h12{height:11.880000px;}
.h14{height:12.060000px;}
.h10{height:13.680000px;}
.h11{height:13.860000px;}
.h15{height:15.300000px;}
.h1e{height:18.382138px;}
.h1f{height:24.174746px;}
.h19{height:25.241144px;}
.h1c{height:25.273598px;}
.h1a{height:25.296016px;}
.h1d{height:25.328540px;}
.h7{height:27.907031px;}
.h13{height:29.235938px;}
.hf{height:33.480000px;}
.h22{height:34.134542px;}
.h23{height:34.134602px;}
.h21{height:34.134623px;}
.h16{height:34.366992px;}
.h24{height:34.367232px;}
.h17{height:34.372032px;}
.h20{height:34.710382px;}
.hc{height:34.884492px;}
.he{height:34.886892px;}
.hb{height:35.261367px;}
.h1b{height:36.536831px;}
.hd{height:36.768867px;}
.h9{height:36.882000px;}
.h4{height:38.100586px;}
.h3{height:38.997070px;}
.h8{height:43.152539px;}
.h5{height:43.215117px;}
.ha{height:45.549492px;}
.h6{height:60.112617px;}
.h2{height:104.132812px;}
.h18{height:179.765270px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:26.280000px;}
.w2{width:46.260000px;}
.w5{width:90.756000px;}
.w4{width:106.416000px;}
.w3{width:134.820000px;}
.w7{width:252.930000px;}
.w6{width:253.110000px;}
.w9{width:374.886926px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:9.366692px;}
.x24{left:10.800000px;}
.x15{left:13.319999px;}
.x12{left:14.579999px;}
.x1b{left:15.659999px;}
.x11{left:17.279999px;}
.x17{left:19.484999px;}
.x14{left:25.559999px;}
.x1a{left:34.379999px;}
.x18{left:42.164999px;}
.x2d{left:46.103732px;}
.x28{left:50.087493px;}
.x4{left:54.900000px;}
.x1e{left:59.939999px;}
.x1c{left:61.379999px;}
.x1d{left:64.439999px;}
.x2c{left:67.319138px;}
.x2b{left:72.486752px;}
.x3{left:76.500000px;}
.xf{left:78.068250px;}
.x29{left:85.042489px;}
.x2a{left:88.667648px;}
.x9{left:99.768450px;}
.x21{left:104.940000px;}
.x1{left:106.236000px;}
.xe{left:125.241780px;}
.xc{left:127.398450px;}
.x2{left:138.636000px;}
.x2f{left:139.780051px;}
.x30{left:147.969937px;}
.xa{left:153.228450px;}
.x2e{left:168.060995px;}
.xd{left:171.318450px;}
.x31{left:178.772050px;}
.x5{left:185.265000px;}
.x43{left:191.550000px;}
.x3f{left:194.790000px;}
.x26{left:204.150000px;}
.x32{left:209.566333px;}
.x23{left:227.190000px;}
.x3a{left:243.390717px;}
.x3e{left:246.122250px;}
.x34{left:256.004394px;}
.x36{left:258.502074px;}
.x35{left:261.320773px;}
.x33{left:262.393445px;}
.x37{left:269.588956px;}
.x38{left:271.186219px;}
.x39{left:279.454401px;}
.x3c{left:304.164993px;}
.xb{left:322.608450px;}
.x3b{left:366.497383px;}
.x6{left:460.005000px;}
.x40{left:470.625000px;}
.x27{left:478.246500px;}
.x42{left:479.650500px;}
.x7{left:481.605000px;}
.x45{left:486.465000px;}
.x41{left:492.045000px;}
.x10{left:499.741500px;}
.x13{left:506.265001px;}
.x20{left:525.525000px;}
.x22{left:527.865000px;}
.x8{left:588.345000px;}
.x44{left:610.305000px;}
.x1f{left:637.303500px;}
.x16{left:641.085001px;}
.x25{left:743.649750px;}
.x19{left:747.510001px;}
@media print{
.v3{vertical-align:-26.560000pt;}
.v4{vertical-align:-24.000000pt;}
.v6{vertical-align:-7.340059pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:26.560000pt;}
.ls37{letter-spacing:-1.760000pt;}
.ls3d{letter-spacing:-1.142714pt;}
.ls32{letter-spacing:-1.120000pt;}
.ls19{letter-spacing:-0.688000pt;}
.ls2c{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.478933pt;}
.ls3c{letter-spacing:-0.456560pt;}
.ls35{letter-spacing:-0.414933pt;}
.ls30{letter-spacing:-0.409067pt;}
.ls2e{letter-spacing:-0.400533pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.239467pt;}
.ls36{letter-spacing:-0.198933pt;}
.ls3b{letter-spacing:-0.197333pt;}
.ls4a{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.069472pt;}
.ls1c{letter-spacing:-0.064128pt;}
.ls1f{letter-spacing:-0.058784pt;}
.ls31{letter-spacing:-0.047467pt;}
.ls1d{letter-spacing:-0.021376pt;}
.ls16{letter-spacing:-0.010667pt;}
.ls11{letter-spacing:-0.005333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls42{letter-spacing:0.008512pt;}
.ls28{letter-spacing:0.009067pt;}
.ls2{letter-spacing:0.010667pt;}
.ls2f{letter-spacing:0.015467pt;}
.ls12{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.023424pt;}
.ls5{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.037333pt;}
.ls26{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.040992pt;}
.ls45{letter-spacing:0.047360pt;}
.ls49{letter-spacing:0.047467pt;}
.lsc{letter-spacing:0.058560pt;}
.lsb{letter-spacing:0.064416pt;}
.ls41{letter-spacing:0.068096pt;}
.lsd{letter-spacing:0.069472pt;}
.lse{letter-spacing:0.074816pt;}
.lsf{letter-spacing:0.080160pt;}
.ls2a{letter-spacing:0.085120pt;}
.ls40{letter-spacing:0.089376pt;}
.ls39{letter-spacing:0.094720pt;}
.ls18{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.097888pt;}
.ls29{letter-spacing:0.106400pt;}
.ls8{letter-spacing:0.136320pt;}
.ls44{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.160992pt;}
.ls2d{letter-spacing:0.161067pt;}
.ls47{letter-spacing:0.161280pt;}
.ls3a{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.183680pt;}
.ls27{letter-spacing:0.199040pt;}
.ls34{letter-spacing:0.225067pt;}
.ls4{letter-spacing:0.225707pt;}
.ls14{letter-spacing:0.229333pt;}
.ls7{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls38{letter-spacing:0.238336pt;}
.ls33{letter-spacing:0.239467pt;}
.ls25{letter-spacing:0.261120pt;}
.ls1a{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls48{letter-spacing:1.600000pt;}
.ls46{letter-spacing:5.920000pt;}
.ls24{letter-spacing:7.966293pt;}
.ls3f{letter-spacing:14.240000pt;}
.ls3e{letter-spacing:20.079360pt;}
.ls21{letter-spacing:20.207360pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws7c{word-spacing:-13.510933pt;}
.ws85{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.376000pt;}
.ws5e{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5f{word-spacing:-13.232533pt;}
.ws84{word-spacing:-13.096533pt;}
.ws5b{word-spacing:-12.736000pt;}
.ws9{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws64{word-spacing:-11.040000pt;}
.ws60{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.720000pt;}
.ws79{word-spacing:-10.666496pt;}
.ws7a{word-spacing:-10.489520pt;}
.ws86{word-spacing:-10.400000pt;}
.ws5c{word-spacing:-10.319467pt;}
.wsb{word-spacing:-9.520992pt;}
.wsc{word-spacing:-9.360000pt;}
.ws5d{word-spacing:-8.655467pt;}
.ws6{word-spacing:-8.640000pt;}
.ws70{word-spacing:-8.562697pt;}
.ws6e{word-spacing:-8.551702pt;}
.ws6f{word-spacing:-8.544123pt;}
.ws6d{word-spacing:-8.533152pt;}
.ws73{word-spacing:-7.390438pt;}
.ws62{word-spacing:-6.945067pt;}
.ws63{word-spacing:-6.729067pt;}
.ws61{word-spacing:-6.720000pt;}
.ws65{word-spacing:-6.640000pt;}
.ws71{word-spacing:-6.214360pt;}
.ws75{word-spacing:-1.802667pt;}
.ws78{word-spacing:-0.512000pt;}
.ws52{word-spacing:-0.304512pt;}
.ws76{word-spacing:-0.282667pt;}
.ws68{word-spacing:-0.170240pt;}
.ws82{word-spacing:-0.089376pt;}
.ws0{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws57{word-spacing:0.005344pt;}
.ws55{word-spacing:0.010688pt;}
.ws53{word-spacing:0.017568pt;}
.ws54{word-spacing:0.023424pt;}
.ws50{word-spacing:0.040992pt;}
.ws51{word-spacing:0.058560pt;}
.ws58{word-spacing:0.101536pt;}
.ws5a{word-spacing:0.138944pt;}
.ws56{word-spacing:0.144288pt;}
.ws59{word-spacing:0.149632pt;}
.ws69{word-spacing:0.783104pt;}
.ws7f{word-spacing:1.281643pt;}
.ws81{word-spacing:1.451296pt;}
.ws66{word-spacing:3.651648pt;}
.ws67{word-spacing:3.672928pt;}
.ws10{word-spacing:3.840000pt;}
.ws11{word-spacing:3.888000pt;}
.wsf{word-spacing:3.936000pt;}
.wse{word-spacing:4.000000pt;}
.ws43{word-spacing:4.565333pt;}
.ws42{word-spacing:4.570667pt;}
.ws1e{word-spacing:4.608000pt;}
.ws4c{word-spacing:4.624000pt;}
.ws1f{word-spacing:4.640000pt;}
.ws80{word-spacing:5.268928pt;}
.ws41{word-spacing:6.426667pt;}
.ws40{word-spacing:6.480000pt;}
.ws30{word-spacing:7.066667pt;}
.ws2e{word-spacing:7.173333pt;}
.ws2f{word-spacing:7.200000pt;}
.ws31{word-spacing:7.808000pt;}
.ws34{word-spacing:7.840000pt;}
.ws32{word-spacing:7.861333pt;}
.ws7b{word-spacing:8.119040pt;}
.ws29{word-spacing:8.448000pt;}
.ws35{word-spacing:8.480000pt;}
.ws36{word-spacing:8.501333pt;}
.ws27{word-spacing:8.976000pt;}
.ws33{word-spacing:9.061333pt;}
.ws26{word-spacing:9.072000pt;}
.ws3a{word-spacing:9.082667pt;}
.ws28{word-spacing:9.168000pt;}
.ws39{word-spacing:9.189333pt;}
.ws6a{word-spacing:10.098453pt;}
.ws3b{word-spacing:10.389333pt;}
.ws22{word-spacing:12.912000pt;}
.ws25{word-spacing:12.960000pt;}
.ws21{word-spacing:13.440000pt;}
.ws24{word-spacing:13.536000pt;}
.ws23{word-spacing:13.600000pt;}
.ws20{word-spacing:13.632000pt;}
.ws4a{word-spacing:14.768000pt;}
.ws37{word-spacing:14.821333pt;}
.ws38{word-spacing:14.928000pt;}
.ws4b{word-spacing:15.456000pt;}
.ws72{word-spacing:16.452849pt;}
.ws15{word-spacing:16.752000pt;}
.ws16{word-spacing:16.800000pt;}
.ws6b{word-spacing:17.233280pt;}
.ws17{word-spacing:17.264000pt;}
.ws3e{word-spacing:17.370667pt;}
.ws3c{word-spacing:18.005333pt;}
.ws3d{word-spacing:18.080000pt;}
.ws77{word-spacing:19.701333pt;}
.ws74{word-spacing:19.829333pt;}
.ws46{word-spacing:20.608000pt;}
.ws45{word-spacing:20.613333pt;}
.ws2b{word-spacing:20.618667pt;}
.ws44{word-spacing:20.661333pt;}
.ws2a{word-spacing:20.768000pt;}
.ws13{word-spacing:21.120000pt;}
.ws14{word-spacing:21.216000pt;}
.ws7e{word-spacing:22.080000pt;}
.ws7d{word-spacing:25.729920pt;}
.ws83{word-spacing:25.824960pt;}
.ws12{word-spacing:26.976000pt;}
.ws7{word-spacing:28.018347pt;}
.ws3f{word-spacing:28.261333pt;}
.ws4f{word-spacing:28.896000pt;}
.ws4d{word-spacing:29.536000pt;}
.ws4e{word-spacing:29.642667pt;}
.ws47{word-spacing:30.810667pt;}
.ws1c{word-spacing:30.816000pt;}
.ws48{word-spacing:30.864000pt;}
.ws1d{word-spacing:30.880000pt;}
.ws1b{word-spacing:30.912000pt;}
.ws49{word-spacing:30.917333pt;}
.ws1a{word-spacing:30.960000pt;}
.ws2d{word-spacing:35.962667pt;}
.ws19{word-spacing:38.560000pt;}
.ws18{word-spacing:39.168000pt;}
.ws2c{word-spacing:46.170667pt;}
.ws6c{word-spacing:498.190901pt;}
._1f{margin-left:-327.017413pt;}
._1c{margin-left:-10.410667pt;}
._9{margin-left:-3.325922pt;}
._3{margin-left:-2.346656pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.301333pt;}
._6{width:2.261333pt;}
._2{width:3.429312pt;}
._c{width:4.495189pt;}
._11{width:5.550934pt;}
._12{width:6.678715pt;}
._15{width:7.863904pt;}
._17{width:9.083732pt;}
._16{width:10.836268pt;}
._18{width:12.005332pt;}
._10{width:14.466987pt;}
._1a{width:15.514351pt;}
._19{width:16.520532pt;}
._d{width:18.245872pt;}
._7{width:19.829328pt;}
._5{width:21.045317pt;}
._4{width:22.213349pt;}
._24{width:23.186331pt;}
._a{width:24.833600pt;}
._b{width:25.869865pt;}
._1b{width:27.105601pt;}
._20{width:28.240529pt;}
._1d{width:29.177600pt;}
._13{width:30.782934pt;}
._14{width:31.872000pt;}
._e{width:33.492267pt;}
._f{width:35.245653pt;}
._8{width:36.994633pt;}
._21{width:40.902347pt;}
._25{width:44.081920pt;}
._27{width:46.909877pt;}
._26{width:47.827403pt;}
._23{width:49.534666pt;}
._22{width:50.464000pt;}
._1e{width:70.154279pt;}
.fsc{font-size:20.351980pt;}
.fse{font-size:20.418708pt;}
.fs12{font-size:22.353815pt;}
.fsa{font-size:26.560000pt;}
.fs8{font-size:26.880000pt;}
.fs13{font-size:29.397983pt;}
.fsb{font-size:30.694790pt;}
.fs10{font-size:30.734255pt;}
.fsd{font-size:30.761518pt;}
.fs11{font-size:30.801069pt;}
.fs4{font-size:34.560000pt;}
.fs16{font-size:37.120000pt;}
.fs6{font-size:37.440000pt;}
.fs15{font-size:41.958080pt;}
.fs9{font-size:42.560000pt;}
.fs14{font-size:42.665984pt;}
.fs3{font-size:42.880000pt;}
.fsf{font-size:44.431043pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:1.120600pt;}
.y93{bottom:2.239653pt;}
.ya2{bottom:2.240000pt;}
.ya4{bottom:2.400000pt;}
.y91{bottom:4.959653pt;}
.ye1{bottom:6.215483pt;}
.y90{bottom:17.119653pt;}
.yf9{bottom:26.517366pt;}
.yf6{bottom:51.890622pt;}
.ye3{bottom:53.525490pt;}
.yec{bottom:60.648664pt;}
.ye8{bottom:61.599562pt;}
.yf5{bottom:67.554971pt;}
.yed{bottom:72.827177pt;}
.yfb{bottom:73.126103pt;}
.yf4{bottom:74.224280pt;}
.yeb{bottom:78.930003pt;}
.yf8{bottom:84.567068pt;}
.ye4{bottom:89.689874pt;}
.yf3{bottom:91.858490pt;}
.yf2{bottom:98.531271pt;}
.yf1{bottom:110.896769pt;}
.ye2{bottom:112.425984pt;}
.yf0{bottom:117.569549pt;}
.yf7{bottom:119.154338pt;}
.ye7{bottom:120.252607pt;}
.yfa{bottom:132.777980pt;}
.yef{bottom:141.306577pt;}
.yea{bottom:141.306600pt;}
.ye6{bottom:141.306615pt;}
.yee{bottom:150.481649pt;}
.ye9{bottom:150.481668pt;}
.ye5{bottom:150.481687pt;}
.y110{bottom:165.385333pt;}
.y12f{bottom:165.520000pt;}
.y2c{bottom:167.837333pt;}
.y55{bottom:167.866667pt;}
.y14c{bottom:168.346667pt;}
.y10f{bottom:180.745333pt;}
.yc7{bottom:181.329333pt;}
.ydf{bottom:181.816000pt;}
.y54{bottom:182.426667pt;}
.y2b{bottom:183.197333pt;}
.y14b{bottom:183.706667pt;}
.y7f{bottom:184.284000pt;}
.y9e{bottom:184.724000pt;}
.yc6{bottom:193.592000pt;}
.y10e{bottom:195.945333pt;}
.y53{bottom:196.986667pt;}
.y2a{bottom:198.557333pt;}
.y7e{bottom:198.844000pt;}
.y14a{bottom:199.066667pt;}
.y9d{bottom:200.084000pt;}
.y10d{bottom:211.305333pt;}
.y52{bottom:211.546667pt;}
.y7d{bottom:213.404000pt;}
.y29{bottom:213.894667pt;}
.y149{bottom:214.426667pt;}
.y9c{bottom:215.444000pt;}
.y51{bottom:226.106667pt;}
.y10c{bottom:226.665333pt;}
.y7c{bottom:227.964000pt;}
.y28{bottom:229.232000pt;}
.y148{bottom:229.626667pt;}
.y9b{bottom:230.804000pt;}
.y50{bottom:240.666667pt;}
.y10b{bottom:242.025333pt;}
.y7b{bottom:242.524000pt;}
.y27{bottom:244.569333pt;}
.y147{bottom:244.986667pt;}
.y9a{bottom:246.164000pt;}
.y4f{bottom:255.226667pt;}
.y7a{bottom:257.084000pt;}
.y10a{bottom:257.385333pt;}
.y26{bottom:259.906667pt;}
.y146{bottom:260.346667pt;}
.y99{bottom:261.364000pt;}
.y4e{bottom:269.826667pt;}
.y79{bottom:271.644000pt;}
.y109{bottom:272.625333pt;}
.y25{bottom:275.244000pt;}
.y145{bottom:275.746667pt;}
.y98{bottom:276.764000pt;}
.y78{bottom:286.244000pt;}
.y108{bottom:287.985333pt;}
.y4d{bottom:288.546667pt;}
.y24{bottom:290.581333pt;}
.y144{bottom:291.106667pt;}
.y97{bottom:292.124000pt;}
.y77{bottom:300.804000pt;}
.y107{bottom:303.345333pt;}
.y23{bottom:305.918667pt;}
.y143{bottom:306.466667pt;}
.y96{bottom:313.884347pt;}
.y106{bottom:318.705333pt;}
.y22{bottom:321.256000pt;}
.y4c{bottom:321.506667pt;}
.y142{bottom:321.666667pt;}
.y95{bottom:326.844347pt;}
.y76{bottom:328.164000pt;}
.y105{bottom:334.065333pt;}
.y21{bottom:336.593333pt;}
.y4b{bottom:336.866667pt;}
.y141{bottom:337.026667pt;}
.y176{bottom:337.826667pt;}
.y94{bottom:339.804347pt;}
.y75{bottom:340.484000pt;}
.y175{bottom:349.826667pt;}
.y20{bottom:351.930667pt;}
.y4a{bottom:352.066667pt;}
.y140{bottom:352.386667pt;}
.y92{bottom:352.764347pt;}
.y74{bottom:352.804000pt;}
.y104{bottom:353.265333pt;}
.y174{bottom:361.826667pt;}
.y8f{bottom:366.364347pt;}
.y1f{bottom:367.268000pt;}
.y49{bottom:367.426667pt;}
.y13f{bottom:367.746667pt;}
.y173{bottom:377.026667pt;}
.y103{bottom:382.065333pt;}
.y1e{bottom:382.605333pt;}
.y48{bottom:382.786667pt;}
.y13e{bottom:383.106667pt;}
.y172{bottom:389.026667pt;}
.y12e{bottom:389.826667pt;}
.y102{bottom:397.425333pt;}
.y1d{bottom:397.942667pt;}
.y47{bottom:398.146667pt;}
.y13d{bottom:398.466667pt;}
.y171{bottom:401.026667pt;}
.y12d{bottom:405.186667pt;}
.y8e{bottom:409.186933pt;}
.y101{bottom:412.625333pt;}
.y170{bottom:413.026667pt;}
.y1c{bottom:413.280000pt;}
.y46{bottom:413.506667pt;}
.y13c{bottom:413.666667pt;}
.y12c{bottom:420.546667pt;}
.y8d{bottom:421.506933pt;}
.y100{bottom:427.985333pt;}
.y16f{bottom:428.386667pt;}
.y1b{bottom:428.617333pt;}
.y45{bottom:428.866667pt;}
.y13b{bottom:429.026667pt;}
.y8c{bottom:433.666933pt;}
.y12b{bottom:435.906667pt;}
.y16e{bottom:440.386667pt;}
.ya5{bottom:441.123400pt;}
.y1a{bottom:443.954667pt;}
.y44{bottom:444.066667pt;}
.y13a{bottom:444.386667pt;}
.y8b{bottom:446.146933pt;}
.yc5{bottom:448.508000pt;}
.y12a{bottom:451.266667pt;}
.y16d{bottom:452.386667pt;}
.yaa{bottom:458.585600pt;}
.y8a{bottom:459.108000pt;}
.y19{bottom:459.292000pt;}
.y43{bottom:459.426667pt;}
.y132{bottom:459.621813pt;}
.y139{bottom:459.746667pt;}
.yc4{bottom:463.068000pt;}
.y16c{bottom:464.386667pt;}
.y129{bottom:466.466667pt;}
.y131{bottom:471.857813pt;}
.y18{bottom:474.629333pt;}
.y42{bottom:474.786667pt;}
.yc3{bottom:477.628000pt;}
.y138{bottom:478.946667pt;}
.y16b{bottom:479.746667pt;}
.y128{bottom:481.826667pt;}
.y130{bottom:484.178933pt;}
.y89{bottom:485.186667pt;}
.y17{bottom:489.966667pt;}
.y41{bottom:490.146667pt;}
.y16a{bottom:491.746667pt;}
.yc2{bottom:492.188000pt;}
.y73{bottom:492.546667pt;}
.y127{bottom:497.186667pt;}
.y88{bottom:500.546667pt;}
.y169{bottom:503.746667pt;}
.yff{bottom:503.890533pt;}
.y16{bottom:505.304000pt;}
.y40{bottom:505.506667pt;}
.yc1{bottom:506.748000pt;}
.y72{bottom:507.906667pt;}
.y137{bottom:509.346667pt;}
.y126{bottom:512.573333pt;}
.y87{bottom:515.933333pt;}
.y168{bottom:519.133333pt;}
.y3f{bottom:520.893333pt;}
.yc0{bottom:521.334667pt;}
.y136{bottom:521.693333pt;}
.y71{bottom:523.293333pt;}
.y15{bottom:524.690667pt;}
.y125{bottom:527.933333pt;}
.y167{bottom:531.133333pt;}
.y86{bottom:531.293333pt;}
.ybf{bottom:535.894667pt;}
.y3e{bottom:536.093333pt;}
.y70{bottom:538.653333pt;}
.y166{bottom:543.133333pt;}
.y124{bottom:543.293333pt;}
.y85{bottom:546.653333pt;}
.ybe{bottom:550.454667pt;}
.y3d{bottom:551.453333pt;}
.y6f{bottom:554.013333pt;}
.y165{bottom:555.133333pt;}
.y123{bottom:558.493333pt;}
.ya9{bottom:561.859200pt;}
.y84{bottom:562.013333pt;}
.y14{bottom:563.453333pt;}
.ybd{bottom:565.014667pt;}
.y3c{bottom:566.813333pt;}
.y6e{bottom:569.373333pt;}
.y164{bottom:570.493333pt;}
.y13{bottom:577.213333pt;}
.ybc{bottom:579.574667pt;}
.y3b{bottom:582.173333pt;}
.y163{bottom:582.493333pt;}
.y6d{bottom:584.733333pt;}
.y83{bottom:585.213333pt;}
.yde{bottom:586.493333pt;}
.y122{bottom:589.213333pt;}
.y12{bottom:591.133333pt;}
.ybb{bottom:594.134667pt;}
.y162{bottom:594.493333pt;}
.y3a{bottom:597.533333pt;}
.y82{bottom:599.773333pt;}
.y6c{bottom:599.933333pt;}
.y121{bottom:601.533333pt;}
.ydd{bottom:601.853333pt;}
.y11{bottom:604.928000pt;}
.y161{bottom:606.493333pt;}
.yba{bottom:608.694667pt;}
.y39{bottom:612.733333pt;}
.y120{bottom:613.693333pt;}
.y81{bottom:614.333333pt;}
.y6b{bottom:615.293333pt;}
.ydc{bottom:617.213333pt;}
.y10{bottom:618.722667pt;}
.y160{bottom:621.853333pt;}
.yb9{bottom:627.414667pt;}
.y38{bottom:628.093333pt;}
.y80{bottom:628.893333pt;}
.yf{bottom:632.517333pt;}
.ydb{bottom:632.573333pt;}
.y15f{bottom:633.853333pt;}
.y37{bottom:643.453333pt;}
.yfe{bottom:644.977200pt;}
.y15e{bottom:645.853333pt;}
.y6a{bottom:646.013333pt;}
.ye{bottom:646.312000pt;}
.yda{bottom:647.773333pt;}
.yb8{bottom:652.854667pt;}
.ya8{bottom:653.919147pt;}
.y69{bottom:658.333333pt;}
.y36{bottom:658.813333pt;}
.yd{bottom:660.106667pt;}
.y15d{bottom:661.053333pt;}
.yd9{bottom:663.133333pt;}
.ya7{bottom:666.240267pt;}
.y68{bottom:670.493333pt;}
.y15c{bottom:673.053333pt;}
.yc{bottom:673.901333pt;}
.y35{bottom:674.173333pt;}
.yb7{bottom:676.054667pt;}
.yd8{bottom:678.493333pt;}
.y67{bottom:682.813333pt;}
.ya0{bottom:684.416000pt;}
.y15b{bottom:685.053333pt;}
.yb{bottom:687.696000pt;}
.y34{bottom:689.533333pt;}
.yb6{bottom:691.414667pt;}
.yd7{bottom:693.853333pt;}
.y66{bottom:695.133333pt;}
.ya1{bottom:696.093333pt;}
.y15a{bottom:697.053333pt;}
.ya{bottom:701.490667pt;}
.y33{bottom:704.733333pt;}
.yb5{bottom:706.774667pt;}
.y65{bottom:707.293333pt;}
.y159{bottom:709.053333pt;}
.yd6{bottom:709.213333pt;}
.y9{bottom:715.285333pt;}
.y32{bottom:720.093333pt;}
.yb4{bottom:722.134667pt;}
.y158{bottom:724.413333pt;}
.yd5{bottom:724.573333pt;}
.y8{bottom:729.080000pt;}
.y31{bottom:735.453333pt;}
.y157{bottom:736.413333pt;}
.yb3{bottom:737.494667pt;}
.yd4{bottom:739.773333pt;}
.y7{bottom:742.874667pt;}
.y156{bottom:748.413333pt;}
.y30{bottom:750.813333pt;}
.yb2{bottom:752.854667pt;}
.yd3{bottom:755.133333pt;}
.y6{bottom:756.669333pt;}
.y155{bottom:764.933333pt;}
.y2f{bottom:766.213333pt;}
.yb1{bottom:768.254667pt;}
.y5{bottom:770.464000pt;}
.yd2{bottom:770.533333pt;}
.y135{bottom:777.573333pt;}
.y2e{bottom:781.573333pt;}
.yb0{bottom:783.454667pt;}
.y4{bottom:784.258667pt;}
.yfd{bottom:784.982267pt;}
.yd1{bottom:785.893333pt;}
.y154{bottom:792.293333pt;}
.y134{bottom:792.933333pt;}
.y2d{bottom:796.773333pt;}
.y3{bottom:798.053333pt;}
.yaf{bottom:799.813333pt;}
.yd0{bottom:801.253333pt;}
.y153{bottom:807.653333pt;}
.y133{bottom:808.293333pt;}
.yae{bottom:815.173333pt;}
.ycf{bottom:816.453333pt;}
.y152{bottom:823.013333pt;}
.y11f{bottom:823.653333pt;}
.yad{bottom:830.533333pt;}
.yce{bottom:831.813333pt;}
.y5c{bottom:838.165733pt;}
.y151{bottom:838.373333pt;}
.y11e{bottom:839.013333pt;}
.ycd{bottom:847.173333pt;}
.y150{bottom:853.573333pt;}
.y11d{bottom:854.373333pt;}
.yac{bottom:858.533333pt;}
.y5b{bottom:860.798933pt;}
.ycc{bottom:862.533333pt;}
.y14f{bottom:868.933333pt;}
.y9f{bottom:868.936000pt;}
.y11c{bottom:869.573333pt;}
.yab{bottom:870.853333pt;}
.y5a{bottom:877.518933pt;}
.ycb{bottom:877.893333pt;}
.ya3{bottom:880.933333pt;}
.y14e{bottom:884.293333pt;}
.y11b{bottom:884.933333pt;}
.ye0{bottom:890.928648pt;}
.y59{bottom:894.158933pt;}
.yca{bottom:897.093333pt;}
.y11a{bottom:900.293333pt;}
.y14d{bottom:903.653333pt;}
.y58{bottom:910.798933pt;}
.y119{bottom:915.653333pt;}
.yfc{bottom:920.298400pt;}
.yc9{bottom:922.373333pt;}
.y57{bottom:927.518933pt;}
.y118{bottom:931.013333pt;}
.yc8{bottom:936.933333pt;}
.y56{bottom:945.118933pt;}
.y117{bottom:946.213333pt;}
.y64{bottom:951.493333pt;}
.y116{bottom:961.573333pt;}
.y63{bottom:966.053333pt;}
.y115{bottom:976.933333pt;}
.y62{bottom:980.613333pt;}
.y2{bottom:983.973333pt;}
.y114{bottom:992.293333pt;}
.y61{bottom:995.173333pt;}
.y113{bottom:1007.680000pt;}
.y60{bottom:1009.760000pt;}
.y1{bottom:1020.800000pt;}
.y112{bottom:1023.040000pt;}
.y5f{bottom:1024.320000pt;}
.y111{bottom:1038.240000pt;}
.y5e{bottom:1038.880000pt;}
.y5d{bottom:1095.226667pt;}
.h12{height:10.560000pt;}
.h14{height:10.720000pt;}
.h10{height:12.160000pt;}
.h11{height:12.320000pt;}
.h15{height:13.600000pt;}
.h1e{height:16.339678pt;}
.h1f{height:21.488663pt;}
.h19{height:22.436573pt;}
.h1c{height:22.465420pt;}
.h1a{height:22.485348pt;}
.h1d{height:22.514258pt;}
.h7{height:24.806250pt;}
.h13{height:25.987500pt;}
.hf{height:29.760000pt;}
.h22{height:30.341815pt;}
.h23{height:30.341868pt;}
.h21{height:30.341887pt;}
.h16{height:30.548438pt;}
.h24{height:30.548651pt;}
.h17{height:30.552918pt;}
.h20{height:30.853673pt;}
.hc{height:31.008437pt;}
.he{height:31.010571pt;}
.hb{height:31.343437pt;}
.h1b{height:32.477183pt;}
.hd{height:32.683437pt;}
.h9{height:32.784000pt;}
.h4{height:33.867188pt;}
.h3{height:34.664062pt;}
.h8{height:38.357812pt;}
.h5{height:38.413438pt;}
.ha{height:40.488438pt;}
.h6{height:53.433438pt;}
.h2{height:92.562500pt;}
.h18{height:159.791352pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:23.360000pt;}
.w2{width:41.120000pt;}
.w5{width:80.672000pt;}
.w4{width:94.592000pt;}
.w3{width:119.840000pt;}
.w7{width:224.826667pt;}
.w6{width:224.986667pt;}
.w9{width:333.232824pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:8.325949pt;}
.x24{left:9.600000pt;}
.x15{left:11.839999pt;}
.x12{left:12.959999pt;}
.x1b{left:13.919999pt;}
.x11{left:15.359999pt;}
.x17{left:17.319999pt;}
.x14{left:22.719999pt;}
.x1a{left:30.559999pt;}
.x18{left:37.479999pt;}
.x2d{left:40.981095pt;}
.x28{left:44.522216pt;}
.x4{left:48.800000pt;}
.x1e{left:53.279999pt;}
.x1c{left:54.559999pt;}
.x1d{left:57.279999pt;}
.x2c{left:59.839233pt;}
.x2b{left:64.432668pt;}
.x3{left:68.000000pt;}
.xf{left:69.394000pt;}
.x29{left:75.593323pt;}
.x2a{left:78.815687pt;}
.x9{left:88.683067pt;}
.x21{left:93.280000pt;}
.x1{left:94.432000pt;}
.xe{left:111.326027pt;}
.xc{left:113.243067pt;}
.x2{left:123.232000pt;}
.x2f{left:124.248934pt;}
.x30{left:131.528833pt;}
.xa{left:136.203067pt;}
.x2e{left:149.387551pt;}
.xd{left:152.283067pt;}
.x31{left:158.908489pt;}
.x5{left:164.680000pt;}
.x43{left:170.266667pt;}
.x3f{left:173.146667pt;}
.x26{left:181.466667pt;}
.x32{left:186.281185pt;}
.x23{left:201.946667pt;}
.x3a{left:216.347304pt;}
.x3e{left:218.775333pt;}
.x34{left:227.559461pt;}
.x36{left:229.779622pt;}
.x35{left:232.285132pt;}
.x33{left:233.238617pt;}
.x37{left:239.634627pt;}
.x38{left:241.054416pt;}
.x39{left:248.403912pt;}
.x3c{left:270.368883pt;}
.xb{left:286.763067pt;}
.x3b{left:325.775452pt;}
.x6{left:408.893333pt;}
.x40{left:418.333333pt;}
.x27{left:425.108000pt;}
.x42{left:426.356000pt;}
.x7{left:428.093333pt;}
.x45{left:432.413333pt;}
.x41{left:437.373333pt;}
.x10{left:444.214667pt;}
.x13{left:450.013334pt;}
.x20{left:467.133333pt;}
.x22{left:469.213333pt;}
.x8{left:522.973333pt;}
.x44{left:542.493333pt;}
.x1f{left:566.492000pt;}
.x16{left:569.853334pt;}
.x25{left:661.022000pt;}
.x19{left:664.453334pt;}
}




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