
    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_4f57034ef9a8e0f483bff20c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_f6aa0bd9f58d87b9d09b3184.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_3818b05d907438b87abde826.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_ddef1192dfac708f4a8d7ba4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_750501611aaa9546fad9a1d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891000;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_58e221659b6ebfe3fcfcf81c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_5bf709ff1ff6b8f28b50061f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_04c56d41e77b5663c0af6a81.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.375963px;}
.v1{vertical-align:24.000000px;}
.ls2b{letter-spacing:-0.765000px;}
.lsc{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.ls53{letter-spacing:-0.357000px;}
.lsf{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.204000px;}
.ls2e{letter-spacing:-0.180000px;}
.ls55{letter-spacing:-0.153000px;}
.lse{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.030000px;}
.ls42{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.090000px;}
.ls45{letter-spacing:0.102000px;}
.ls1e{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.178791px;}
.ls3{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.210000px;}
.ls47{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.255000px;}
.ls41{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.269989px;}
.ls1f{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.275989px;}
.ls20{letter-spacing:0.282000px;}
.ls46{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.293962px;}
.ls2{letter-spacing:0.300000px;}
.ls52{letter-spacing:0.306000px;}
.ls21{letter-spacing:0.312000px;}
.ls38{letter-spacing:0.336000px;}
.ls43{letter-spacing:0.357000px;}
.ls1a{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.390000px;}
.ls12{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.426000px;}
.ls39{letter-spacing:0.450000px;}
.ls44{letter-spacing:0.459000px;}
.ls29{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.510000px;}
.ls2c{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.561000px;}
.ls18{letter-spacing:0.600000px;}
.ls49{letter-spacing:0.612000px;}
.ls25{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.663000px;}
.ls28{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.780000px;}
.ls3f{letter-spacing:0.816000px;}
.ls13{letter-spacing:0.840000px;}
.ls51{letter-spacing:0.841500px;}
.ls4a{letter-spacing:0.867000px;}
.ls16{letter-spacing:0.900000px;}
.ls2a{letter-spacing:0.918000px;}
.ls26{letter-spacing:0.960000px;}
.ls48{letter-spacing:0.969000px;}
.ls15{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.044000px;}
.ls40{letter-spacing:1.071000px;}
.ls24{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.110000px;}
.ls2f{letter-spacing:1.139980px;}
.ls33{letter-spacing:1.140000px;}
.ls1b{letter-spacing:1.146000px;}
.ls23{letter-spacing:1.200000px;}
.ls37{letter-spacing:1.260000px;}
.ls34{letter-spacing:1.290000px;}
.ls3c{letter-spacing:1.320000px;}
.ls50{letter-spacing:1.326000px;}
.ls27{letter-spacing:1.380000px;}
.ls4c{letter-spacing:1.428000px;}
.ls1c{letter-spacing:1.440000px;}
.ls3b{letter-spacing:1.446000px;}
.ls3a{letter-spacing:1.560000px;}
.ls5{letter-spacing:1.620000px;}
.ls4e{letter-spacing:1.683000px;}
.ls35{letter-spacing:1.740000px;}
.ls22{letter-spacing:1.920000px;}
.ls4f{letter-spacing:2.346000px;}
.ls0{letter-spacing:3.990000px;}
.ls31{letter-spacing:220.357215px;}
.ls32{letter-spacing:429.332374px;}
.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;}
}
.ws5a{word-spacing:-15.480000px;}
.ws24{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.180000px;}
.ws9{word-spacing:-15.090000px;}
.ws6{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.940000px;}
.ws6e{word-spacing:-14.832000px;}
.ws5{word-spacing:-14.544000px;}
.ws27{word-spacing:-13.668000px;}
.ws6f{word-spacing:-12.979500px;}
.ws6d{word-spacing:-12.852000px;}
.ws26{word-spacing:-12.750000px;}
.ws25{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws28{word-spacing:-11.985000px;}
.ws6c{word-spacing:-10.608000px;}
.ws1{word-spacing:-9.996000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws16{word-spacing:-7.500000px;}
.ws4a{word-spacing:-6.375000px;}
.wse{word-spacing:-2.400000px;}
.wsb{word-spacing:-1.890000px;}
.ws1c{word-spacing:-1.800000px;}
.ws67{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws17{word-spacing:-1.440000px;}
.ws55{word-spacing:-1.380000px;}
.ws36{word-spacing:-1.320000px;}
.ws75{word-spacing:-1.275000px;}
.ws87{word-spacing:-1.224000px;}
.ws2c{word-spacing:-1.140000px;}
.ws5d{word-spacing:-1.080000px;}
.ws78{word-spacing:-1.071000px;}
.ws13{word-spacing:-1.020000px;}
.ws74{word-spacing:-0.969000px;}
.ws15{word-spacing:-0.960000px;}
.ws38{word-spacing:-0.900000px;}
.ws1d{word-spacing:-0.840000px;}
.ws85{word-spacing:-0.816000px;}
.ws79{word-spacing:-0.765000px;}
.ws19{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.714000px;}
.ws8d{word-spacing:-0.663000px;}
.ws4c{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.ws51{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.ws44{word-spacing:-0.540000px;}
.ws63{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.300000px;}
.ws7e{word-spacing:-0.255000px;}
.ws65{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws57{word-spacing:0.060000px;}
.ws7c{word-spacing:0.102000px;}
.ws1b{word-spacing:0.300000px;}
.ws86{word-spacing:0.306000px;}
.ws1e{word-spacing:0.420000px;}
.ws34{word-spacing:0.540000px;}
.ws7b{word-spacing:0.663000px;}
.ws53{word-spacing:0.720000px;}
.ws69{word-spacing:0.780000px;}
.ws11{word-spacing:0.840000px;}
.ws12{word-spacing:0.960000px;}
.ws43{word-spacing:1.020000px;}
.ws88{word-spacing:1.071000px;}
.ws61{word-spacing:1.140000px;}
.ws76{word-spacing:1.173000px;}
.ws37{word-spacing:1.260000px;}
.ws77{word-spacing:1.275000px;}
.ws14{word-spacing:1.320000px;}
.ws3f{word-spacing:1.380000px;}
.ws56{word-spacing:1.440000px;}
.ws10{word-spacing:1.500000px;}
.ws59{word-spacing:1.530000px;}
.ws1f{word-spacing:1.560000px;}
.ws3d{word-spacing:1.620000px;}
.ws4d{word-spacing:1.680000px;}
.ws60{word-spacing:1.800000px;}
.ws46{word-spacing:1.860000px;}
.ws45{word-spacing:1.920000px;}
.ws81{word-spacing:1.989000px;}
.ws31{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws4f{word-spacing:2.220000px;}
.ws49{word-spacing:2.244000px;}
.ws2f{word-spacing:2.280000px;}
.ws8e{word-spacing:2.295000px;}
.ws35{word-spacing:2.340000px;}
.ws80{word-spacing:2.397000px;}
.ws42{word-spacing:2.400000px;}
.ws64{word-spacing:2.460000px;}
.ws7f{word-spacing:2.550000px;}
.ws50{word-spacing:2.640000px;}
.ws89{word-spacing:2.652000px;}
.ws40{word-spacing:2.700000px;}
.ws84{word-spacing:2.703000px;}
.ws4e{word-spacing:2.760000px;}
.ws70{word-spacing:2.940000px;}
.ws7d{word-spacing:2.958000px;}
.ws2e{word-spacing:3.000000px;}
.ws58{word-spacing:3.060000px;}
.ws3c{word-spacing:3.120000px;}
.ws5f{word-spacing:3.180000px;}
.ws3b{word-spacing:3.240000px;}
.ws33{word-spacing:3.300000px;}
.ws72{word-spacing:3.315000px;}
.ws6a{word-spacing:3.360000px;}
.ws71{word-spacing:3.366000px;}
.ws83{word-spacing:3.417000px;}
.ws5c{word-spacing:3.480000px;}
.ws48{word-spacing:3.540000px;}
.ws52{word-spacing:3.660000px;}
.ws3a{word-spacing:3.780000px;}
.ws62{word-spacing:4.020000px;}
.ws5b{word-spacing:4.200000px;}
.ws73{word-spacing:4.284000px;}
.ws68{word-spacing:4.440000px;}
.ws8c{word-spacing:4.692000px;}
.ws41{word-spacing:4.800000px;}
.ws47{word-spacing:4.860000px;}
.ws32{word-spacing:5.040000px;}
.ws82{word-spacing:5.100000px;}
.ws66{word-spacing:5.520000px;}
.ws54{word-spacing:5.760000px;}
.ws1a{word-spacing:5.940000px;}
.ws8a{word-spacing:6.528000px;}
.ws5e{word-spacing:6.540000px;}
.ws39{word-spacing:7.200000px;}
.ws8b{word-spacing:9.843000px;}
.ws8f{word-spacing:13.668000px;}
.ws4b{word-spacing:17.238000px;}
.ws90{word-spacing:17.799000px;}
.ws22{word-spacing:72.267000px;}
.ws29{word-spacing:511.631982px;}
.ws2a{word-spacing:514.487982px;}
.ws2b{word-spacing:539.987982px;}
._a{margin-left:-72.675000px;}
._10{margin-left:-24.139799px;}
._64{margin-left:-20.961000px;}
._7{margin-left:-16.575000px;}
._65{margin-left:-12.342000px;}
._38{margin-left:-11.023867px;}
._4{margin-left:-9.106133px;}
._17{margin-left:-6.990000px;}
._6{margin-left:-5.610000px;}
._1{margin-left:-3.648000px;}
._c{margin-left:-2.646000px;}
._0{margin-left:-1.632000px;}
._2{width:1.440000px;}
._d{width:3.203956px;}
._5{width:5.622000px;}
._5d{width:7.914000px;}
._5e{width:9.690000px;}
._3b{width:12.750000px;}
._5f{width:14.433000px;}
._e{width:16.341900px;}
._8{width:18.360000px;}
._62{width:20.817044px;}
._f{width:23.634900px;}
._63{width:25.233000px;}
._60{width:28.041000px;}
._61{width:30.243000px;}
._3{width:40.742404px;}
._9{width:54.621000px;}
._12{width:93.483000px;}
._14{width:131.886000px;}
._3a{width:133.161000px;}
._45{width:135.755983px;}
._59{width:144.228000px;}
._56{width:152.103000px;}
._44{width:170.033983px;}
._15{width:182.886000px;}
._47{width:215.423983px;}
._3f{width:220.728000px;}
._42{width:229.334983px;}
._3c{width:297.381000px;}
._5b{width:315.333000px;}
._4c{width:317.168983px;}
._27{width:333.080955px;}
._11{width:341.750982px;}
._53{width:345.422983px;}
._5a{width:353.174980px;}
._43{width:358.121983px;}
._57{width:361.208980px;}
._46{width:366.333000px;}
._41{width:391.833000px;}
._48{width:417.333000px;}
._4d{width:426.494983px;}
._40{width:429.674980px;}
._2f{width:441.806955px;}
._4f{width:442.833000px;}
._49{width:454.550963px;}
._4b{width:465.917983px;}
._13{width:501.737982px;}
._3d{width:506.327980px;}
._29{width:538.865961px;}
._32{width:560.297961px;}
._3e{width:580.724983px;}
._24{width:609.482961px;}
._16{width:620.720982px;}
._25{width:630.245955px;}
._19{width:636.710961px;}
._22{width:642.497961px;}
._2b{width:658.442955px;}
._2d{width:673.940955px;}
._1d{width:687.581961px;}
._2e{width:704.807961px;}
._34{width:709.091961px;}
._4a{width:712.259983px;}
._50{width:738.020983px;}
._51{width:743.528983px;}
._4e{width:744.893983px;}
._58{width:747.659983px;}
._30{width:759.899961px;}
._1c{width:769.010955px;}
._2c{width:782.543961px;}
._39{width:805.850983px;}
._52{width:808.394983px;}
._21{width:818.957955px;}
._26{width:827.729961px;}
._28{width:836.348961px;}
._1e{width:871.118955px;}
._33{width:879.737955px;}
._5c{width:941.606983px;}
._55{width:1036.676983px;}
._54{width:1065.032983px;}
._18{width:1291.778955px;}
._23{width:1322.837955px;}
._31{width:1563.098944px;}
._2a{width:1644.119944px;}
._37{width:1690.343944px;}
._20{width:1723.289944px;}
._36{width:1813.592944px;}
._1f{width:1839.647944px;}
._1a{width:1960.637944px;}
._1b{width:1989.611944px;}
._35{width:2059.934944px;}
._b{width:2589.576000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y3b{bottom:112.938300px;}
.y8d{bottom:113.411245px;}
.y6d{bottom:113.415298px;}
.y2d{bottom:114.211349px;}
.y121{bottom:114.735306px;}
.yec{bottom:119.513100px;}
.ye4{bottom:122.956478px;}
.y8c{bottom:128.405245px;}
.y6c{bottom:132.165298px;}
.y2c{bottom:132.961349px;}
.y3a{bottom:133.032303px;}
.y120{bottom:133.485306px;}
.yeb{bottom:138.765152px;}
.ye3{bottom:141.749978px;}
.y39{bottom:150.485553px;}
.y6b{bottom:150.915298px;}
.y2b{bottom:151.711349px;}
.y11f{bottom:152.235306px;}
.ya1{bottom:155.935781px;}
.yea{bottom:158.017056px;}
.ye2{bottom:160.466978px;}
.y6a{bottom:169.665298px;}
.y2a{bottom:170.461349px;}
.y38{bottom:170.579556px;}
.y11e{bottom:170.985306px;}
.ya0{bottom:174.729281px;}
.ye9{bottom:177.269096px;}
.ye1{bottom:179.183978px;}
.y37{bottom:188.032794px;}
.y69{bottom:188.415298px;}
.y29{bottom:189.211349px;}
.y11d{bottom:189.735306px;}
.y9f{bottom:193.446281px;}
.ye0{bottom:197.900978px;}
.y107{bottom:200.692059px;}
.y68{bottom:207.165298px;}
.y28{bottom:207.961349px;}
.y36{bottom:208.126808px;}
.y11c{bottom:208.485306px;}
.y9e{bottom:212.163281px;}
.ydf{bottom:216.617978px;}
.y106{bottom:219.485559px;}
.y35{bottom:225.580059px;}
.y67{bottom:225.915298px;}
.y27{bottom:226.711349px;}
.y11b{bottom:227.235306px;}
.y9d{bottom:230.880281px;}
.yde{bottom:235.334978px;}
.y105{bottom:238.202559px;}
.y66{bottom:244.665298px;}
.y26{bottom:245.461349px;}
.y34{bottom:245.674049px;}
.y11a{bottom:245.985306px;}
.y9c{bottom:249.597281px;}
.ydd{bottom:254.051978px;}
.y104{bottom:256.919559px;}
.y33{bottom:263.127300px;}
.y65{bottom:263.415298px;}
.y25{bottom:264.211349px;}
.y119{bottom:264.735306px;}
.y9b{bottom:268.314281px;}
.ydc{bottom:272.768978px;}
.y103{bottom:275.636559px;}
.y64{bottom:282.165298px;}
.y24{bottom:282.961349px;}
.y32{bottom:283.221291px;}
.y118{bottom:283.485306px;}
.y9a{bottom:287.031281px;}
.ydb{bottom:291.485978px;}
.y102{bottom:294.277822px;}
.y31{bottom:300.674541px;}
.y23{bottom:301.711349px;}
.y117{bottom:302.235306px;}
.y99{bottom:305.748281px;}
.yda{bottom:310.202978px;}
.y101{bottom:312.994822px;}
.y63{bottom:319.665298px;}
.y22{bottom:320.461349px;}
.y30{bottom:320.768555px;}
.y116{bottom:320.985306px;}
.y98{bottom:324.465281px;}
.yd9{bottom:328.919978px;}
.y100{bottom:331.711822px;}
.y158{bottom:336.080086px;}
.y21{bottom:339.211349px;}
.y115{bottom:339.735306px;}
.y97{bottom:343.182281px;}
.y2f{bottom:345.769046px;}
.yd8{bottom:347.636978px;}
.yff{bottom:350.428822px;}
.y157{bottom:351.074086px;}
.yd7{bottom:351.359978px;}
.y62{bottom:357.165298px;}
.y20{bottom:357.961349px;}
.y114{bottom:358.485306px;}
.y2e{bottom:360.763046px;}
.y96{bottom:361.899281px;}
.y156{bottom:366.068086px;}
.yd6{bottom:366.353978px;}
.yfe{bottom:369.145822px;}
.y188{bottom:370.696330px;}
.y1f{bottom:376.711349px;}
.y113{bottom:377.235306px;}
.y95{bottom:380.616281px;}
.y155{bottom:381.062086px;}
.yd5{bottom:385.070978px;}
.y187{bottom:385.690330px;}
.yfd{bottom:387.862822px;}
.y112{bottom:395.985306px;}
.y154{bottom:396.056086px;}
.y94{bottom:399.333281px;}
.yfc{bottom:402.856822px;}
.yd4{bottom:403.787978px;}
.y153{bottom:411.050086px;}
.y61{bottom:413.415344px;}
.y1e{bottom:414.211349px;}
.y111{bottom:414.735306px;}
.y186{bottom:416.532580px;}
.yfb{bottom:421.573822px;}
.yd3{bottom:422.504978px;}
.y152{bottom:426.044086px;}
.y90{bottom:426.656531px;}
.y93{bottom:426.669281px;}
.y185{bottom:431.526580px;}
.y60{bottom:432.165344px;}
.y110{bottom:433.485306px;}
.yfa{bottom:440.290822px;}
.y151{bottom:441.038086px;}
.yd2{bottom:441.221978px;}
.y8f{bottom:441.650531px;}
.y92{bottom:441.663281px;}
.y184{bottom:446.520580px;}
.y5f{bottom:450.915344px;}
.y10f{bottom:452.235306px;}
.y8e{bottom:456.644531px;}
.y91{bottom:456.657281px;}
.yf9{bottom:459.007822px;}
.yd1{bottom:459.938978px;}
.y183{bottom:461.514580px;}
.y5e{bottom:469.665344px;}
.y1d{bottom:470.461395px;}
.y10e{bottom:470.985306px;}
.y150{bottom:474.788086px;}
.y182{bottom:476.508580px;}
.yf8{bottom:477.724822px;}
.yd0{bottom:478.655978px;}
.y8b{bottom:482.141239px;}
.y5d{bottom:488.415344px;}
.y10d{bottom:489.735306px;}
.y181{bottom:491.502580px;}
.yf7{bottom:496.441822px;}
.y8a{bottom:497.135239px;}
.ycf{bottom:497.372978px;}
.y180{bottom:506.496580px;}
.y5c{bottom:507.165344px;}
.y1c{bottom:507.961395px;}
.y10c{bottom:508.485306px;}
.yf6{bottom:515.158822px;}
.yce{bottom:516.089978px;}
.y17f{bottom:521.490580px;}
.y5b{bottom:525.915344px;}
.y1b{bottom:526.711395px;}
.y10b{bottom:527.235306px;}
.y14f{bottom:531.107704px;}
.yf5{bottom:533.875822px;}
.ycd{bottom:534.806978px;}
.y17e{bottom:536.484580px;}
.y89{bottom:544.665298px;}
.y5a{bottom:544.665344px;}
.y1a{bottom:545.461395px;}
.y13e{bottom:545.985306px;}
.y14e{bottom:546.101704px;}
.y17d{bottom:551.478580px;}
.yf4{bottom:552.592822px;}
.ycc{bottom:553.523978px;}
.y14d{bottom:561.095704px;}
.y88{bottom:563.415298px;}
.y59{bottom:563.415344px;}
.y19{bottom:564.211395px;}
.y10a{bottom:564.735306px;}
.y17c{bottom:566.472580px;}
.yf3{bottom:571.309822px;}
.y14c{bottom:576.089704px;}
.y17b{bottom:581.466580px;}
.ycb{bottom:581.612228px;}
.y58{bottom:582.165344px;}
.y18{bottom:582.961395px;}
.y13d{bottom:583.485306px;}
.yf2{bottom:590.026822px;}
.y14b{bottom:591.083704px;}
.y17a{bottom:596.460580px;}
.y87{bottom:600.915298px;}
.y57{bottom:600.915344px;}
.y17{bottom:601.711395px;}
.y13c{bottom:602.235306px;}
.y14a{bottom:606.077704px;}
.yca{bottom:607.102798px;}
.yf1{bottom:608.743822px;}
.y179{bottom:611.454580px;}
.y56{bottom:619.665344px;}
.y16{bottom:620.461395px;}
.y109{bottom:620.985260px;}
.y13b{bottom:620.985306px;}
.y149{bottom:621.071704px;}
.y178{bottom:626.448580px;}
.yf0{bottom:627.460822px;}
.y148{bottom:636.065704px;}
.y86{bottom:638.415298px;}
.y55{bottom:638.415344px;}
.y15{bottom:639.211395px;}
.y108{bottom:639.735260px;}
.y13a{bottom:639.735306px;}
.y177{bottom:641.442580px;}
.y147{bottom:651.059704px;}
.yef{bottom:655.549072px;}
.y176{bottom:656.436580px;}
.y85{bottom:657.165298px;}
.y54{bottom:657.165344px;}
.y14{bottom:657.961395px;}
.yc9{bottom:658.485168px;}
.yb8{bottom:658.485260px;}
.y139{bottom:658.485306px;}
.y146{bottom:666.053704px;}
.y175{bottom:671.430580px;}
.yee{bottom:674.417545px;}
.y84{bottom:675.915298px;}
.y53{bottom:675.915344px;}
.y13{bottom:676.711395px;}
.yc8{bottom:677.235168px;}
.yb7{bottom:677.235260px;}
.y138{bottom:677.235306px;}
.y145{bottom:681.047704px;}
.y174{bottom:686.424580px;}
.yed{bottom:689.411545px;}
.y83{bottom:694.665298px;}
.y52{bottom:694.665344px;}
.y12{bottom:695.461395px;}
.yc7{bottom:695.985168px;}
.yb6{bottom:695.985260px;}
.y137{bottom:695.985306px;}
.y144{bottom:696.041704px;}
.y173{bottom:701.418580px;}
.y82{bottom:713.415298px;}
.y51{bottom:713.415344px;}
.y11{bottom:714.211395px;}
.yc6{bottom:714.735168px;}
.yb5{bottom:714.735260px;}
.y136{bottom:714.735306px;}
.ye8{bottom:714.908115px;}
.y172{bottom:716.412580px;}
.y143{bottom:729.752704px;}
.ye7{bottom:729.902115px;}
.y171{bottom:731.406580px;}
.y81{bottom:732.165298px;}
.y50{bottom:732.165344px;}
.y10{bottom:732.961395px;}
.yc5{bottom:733.485168px;}
.yb4{bottom:733.485260px;}
.y135{bottom:733.485306px;}
.y142{bottom:744.746704px;}
.y170{bottom:746.400580px;}
.y80{bottom:750.915298px;}
.y4f{bottom:750.915344px;}
.yf{bottom:751.711395px;}
.yc4{bottom:752.235168px;}
.yb3{bottom:752.235260px;}
.y134{bottom:752.235306px;}
.y16f{bottom:761.394580px;}
.y7f{bottom:769.665298px;}
.y4e{bottom:769.665344px;}
.ye{bottom:770.461395px;}
.yc3{bottom:770.985168px;}
.yb2{bottom:770.985260px;}
.y133{bottom:770.985306px;}
.y16e{bottom:776.388580px;}
.y141{bottom:778.496704px;}
.y7e{bottom:788.415298px;}
.y4d{bottom:788.415344px;}
.yd{bottom:789.211395px;}
.yc2{bottom:789.735168px;}
.yb1{bottom:789.735260px;}
.y132{bottom:789.735306px;}
.y16d{bottom:791.382580px;}
.y16c{bottom:806.376580px;}
.y7d{bottom:807.165298px;}
.y4c{bottom:807.165344px;}
.yc1{bottom:808.485168px;}
.yb0{bottom:808.485260px;}
.y131{bottom:808.485306px;}
.y140{bottom:816.032733px;}
.y16b{bottom:821.370580px;}
.y7c{bottom:825.915298px;}
.y4b{bottom:825.915344px;}
.yc0{bottom:827.235168px;}
.yaf{bottom:827.235260px;}
.y130{bottom:827.235306px;}
.y13f{bottom:831.026733px;}
.yc{bottom:833.394153px;}
.y16a{bottom:836.364580px;}
.y7b{bottom:844.665298px;}
.y4a{bottom:844.665344px;}
.ybf{bottom:845.985168px;}
.yae{bottom:845.985260px;}
.y12f{bottom:845.985306px;}
.yb{bottom:848.388153px;}
.y169{bottom:851.358580px;}
.y7a{bottom:863.415298px;}
.y49{bottom:863.415344px;}
.ybe{bottom:864.735168px;}
.ye6{bottom:864.735260px;}
.y12e{bottom:864.735306px;}
.y168{bottom:866.352580px;}
.y167{bottom:881.346580px;}
.y79{bottom:882.165298px;}
.y48{bottom:882.165344px;}
.ybd{bottom:883.485168px;}
.yad{bottom:883.485260px;}
.y12d{bottom:883.485306px;}
.ya{bottom:890.988190px;}
.y166{bottom:896.340580px;}
.y78{bottom:900.915298px;}
.y47{bottom:900.915344px;}
.ybc{bottom:902.235168px;}
.ye5{bottom:902.235260px;}
.y12c{bottom:902.235306px;}
.y9{bottom:909.738190px;}
.y165{bottom:911.334580px;}
.y77{bottom:919.665298px;}
.y46{bottom:919.665344px;}
.ybb{bottom:920.985168px;}
.yac{bottom:920.985260px;}
.y12b{bottom:920.985306px;}
.y164{bottom:926.328580px;}
.y76{bottom:938.415298px;}
.y45{bottom:938.415344px;}
.yba{bottom:939.735168px;}
.yab{bottom:939.735260px;}
.y12a{bottom:939.735306px;}
.y163{bottom:941.322580px;}
.y8{bottom:954.424622px;}
.y162{bottom:956.316580px;}
.y75{bottom:957.165298px;}
.y44{bottom:957.165344px;}
.yaa{bottom:958.485260px;}
.y129{bottom:958.485306px;}
.y161{bottom:971.310580px;}
.y74{bottom:975.915298px;}
.y43{bottom:975.915344px;}
.yb9{bottom:977.235168px;}
.ya9{bottom:977.235260px;}
.y128{bottom:977.235306px;}
.y7{bottom:981.424622px;}
.y160{bottom:986.304580px;}
.y73{bottom:994.665298px;}
.y42{bottom:994.665344px;}
.ya8{bottom:995.985260px;}
.y127{bottom:995.985306px;}
.y15f{bottom:1001.298580px;}
.y6{bottom:1008.424622px;}
.y72{bottom:1013.415298px;}
.y41{bottom:1013.415344px;}
.ya7{bottom:1014.735260px;}
.y126{bottom:1014.735306px;}
.y15e{bottom:1016.292580px;}
.y15d{bottom:1031.286580px;}
.y71{bottom:1032.165298px;}
.y40{bottom:1032.165344px;}
.ya6{bottom:1033.485260px;}
.y125{bottom:1033.485306px;}
.y15c{bottom:1046.280580px;}
.y70{bottom:1050.915298px;}
.y3f{bottom:1050.915344px;}
.ya5{bottom:1052.235260px;}
.y124{bottom:1052.235306px;}
.y15b{bottom:1061.274580px;}
.y6f{bottom:1069.665298px;}
.y3e{bottom:1069.665344px;}
.ya4{bottom:1070.985260px;}
.y123{bottom:1070.985306px;}
.y5{bottom:1076.132080px;}
.y15a{bottom:1076.268580px;}
.y6e{bottom:1088.415298px;}
.y3d{bottom:1088.415344px;}
.ya3{bottom:1089.735260px;}
.y122{bottom:1089.735306px;}
.y159{bottom:1091.262580px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3c{bottom:1127.482361px;}
.ya2{bottom:1127.482544px;}
.he{height:25.204199px;}
.h2{height:33.840000px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h11{height:45.580163px;}
.h12{height:45.604163px;}
.h13{height:45.889144px;}
.h10{height:49.113000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.ha{height:57.780000px;}
.h8{height:59.340000px;}
.hf{height:64.680000px;}
.h7{height:64.824000px;}
.hb{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.545406px;}
.x7{left:97.796100px;}
.x10{left:102.048152px;}
.xf{left:373.954648px;}
.xe{left:437.806600px;}
.x5{left:459.212723px;}
.xc{left:463.709702px;}
.x6{left:476.252730px;}
.x11{left:484.726646px;}
.xa{left:630.428696px;}
.xb{left:710.103446px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xd{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.111967pt;}
.v1{vertical-align:21.333333pt;}
.ls2b{letter-spacing:-0.680000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls53{letter-spacing:-0.317333pt;}
.lsf{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.181333pt;}
.ls2e{letter-spacing:-0.160000pt;}
.ls55{letter-spacing:-0.136000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.026667pt;}
.ls42{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.080000pt;}
.ls45{letter-spacing:0.090667pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.158926pt;}
.ls3{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.186667pt;}
.ls47{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.226667pt;}
.ls41{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.239990pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.245323pt;}
.ls20{letter-spacing:0.250667pt;}
.ls46{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.261300pt;}
.ls2{letter-spacing:0.266667pt;}
.ls52{letter-spacing:0.272000pt;}
.ls21{letter-spacing:0.277333pt;}
.ls38{letter-spacing:0.298667pt;}
.ls43{letter-spacing:0.317333pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.346667pt;}
.ls12{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.378667pt;}
.ls39{letter-spacing:0.400000pt;}
.ls44{letter-spacing:0.408000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.453333pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.498667pt;}
.ls18{letter-spacing:0.533333pt;}
.ls49{letter-spacing:0.544000pt;}
.ls25{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.589333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.693333pt;}
.ls3f{letter-spacing:0.725333pt;}
.ls13{letter-spacing:0.746667pt;}
.ls51{letter-spacing:0.748000pt;}
.ls4a{letter-spacing:0.770667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls2a{letter-spacing:0.816000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls48{letter-spacing:0.861333pt;}
.ls15{letter-spacing:0.906667pt;}
.ls17{letter-spacing:0.928000pt;}
.ls40{letter-spacing:0.952000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:0.986667pt;}
.ls2f{letter-spacing:1.013315pt;}
.ls33{letter-spacing:1.013333pt;}
.ls1b{letter-spacing:1.018667pt;}
.ls23{letter-spacing:1.066667pt;}
.ls37{letter-spacing:1.120000pt;}
.ls34{letter-spacing:1.146667pt;}
.ls3c{letter-spacing:1.173333pt;}
.ls50{letter-spacing:1.178667pt;}
.ls27{letter-spacing:1.226667pt;}
.ls4c{letter-spacing:1.269333pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.285333pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls5{letter-spacing:1.440000pt;}
.ls4e{letter-spacing:1.496000pt;}
.ls35{letter-spacing:1.546667pt;}
.ls22{letter-spacing:1.706667pt;}
.ls4f{letter-spacing:2.085333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls31{letter-spacing:195.873080pt;}
.ls32{letter-spacing:381.628777pt;}
.ws5a{word-spacing:-13.760000pt;}
.ws24{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.493333pt;}
.ws9{word-spacing:-13.413333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6e{word-spacing:-13.184000pt;}
.ws5{word-spacing:-12.928000pt;}
.ws27{word-spacing:-12.149333pt;}
.ws6f{word-spacing:-11.537333pt;}
.ws6d{word-spacing:-11.424000pt;}
.ws26{word-spacing:-11.333333pt;}
.ws25{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws28{word-spacing:-10.653333pt;}
.ws6c{word-spacing:-9.429333pt;}
.ws1{word-spacing:-8.885333pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws16{word-spacing:-6.666667pt;}
.ws4a{word-spacing:-5.666667pt;}
.wse{word-spacing:-2.133333pt;}
.wsb{word-spacing:-1.680000pt;}
.ws1c{word-spacing:-1.600000pt;}
.ws67{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws17{word-spacing:-1.280000pt;}
.ws55{word-spacing:-1.226667pt;}
.ws36{word-spacing:-1.173333pt;}
.ws75{word-spacing:-1.133333pt;}
.ws87{word-spacing:-1.088000pt;}
.ws2c{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.952000pt;}
.ws13{word-spacing:-0.906667pt;}
.ws74{word-spacing:-0.861333pt;}
.ws15{word-spacing:-0.853333pt;}
.ws38{word-spacing:-0.800000pt;}
.ws1d{word-spacing:-0.746667pt;}
.ws85{word-spacing:-0.725333pt;}
.ws79{word-spacing:-0.680000pt;}
.ws19{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.634667pt;}
.ws8d{word-spacing:-0.589333pt;}
.ws4c{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.ws51{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.ws44{word-spacing:-0.480000pt;}
.ws63{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.266667pt;}
.ws7e{word-spacing:-0.226667pt;}
.ws65{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws57{word-spacing:0.053333pt;}
.ws7c{word-spacing:0.090667pt;}
.ws1b{word-spacing:0.266667pt;}
.ws86{word-spacing:0.272000pt;}
.ws1e{word-spacing:0.373333pt;}
.ws34{word-spacing:0.480000pt;}
.ws7b{word-spacing:0.589333pt;}
.ws53{word-spacing:0.640000pt;}
.ws69{word-spacing:0.693333pt;}
.ws11{word-spacing:0.746667pt;}
.ws12{word-spacing:0.853333pt;}
.ws43{word-spacing:0.906667pt;}
.ws88{word-spacing:0.952000pt;}
.ws61{word-spacing:1.013333pt;}
.ws76{word-spacing:1.042667pt;}
.ws37{word-spacing:1.120000pt;}
.ws77{word-spacing:1.133333pt;}
.ws14{word-spacing:1.173333pt;}
.ws3f{word-spacing:1.226667pt;}
.ws56{word-spacing:1.280000pt;}
.ws10{word-spacing:1.333333pt;}
.ws59{word-spacing:1.360000pt;}
.ws1f{word-spacing:1.386667pt;}
.ws3d{word-spacing:1.440000pt;}
.ws4d{word-spacing:1.493333pt;}
.ws60{word-spacing:1.600000pt;}
.ws46{word-spacing:1.653333pt;}
.ws45{word-spacing:1.706667pt;}
.ws81{word-spacing:1.768000pt;}
.ws31{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws4f{word-spacing:1.973333pt;}
.ws49{word-spacing:1.994667pt;}
.ws2f{word-spacing:2.026667pt;}
.ws8e{word-spacing:2.040000pt;}
.ws35{word-spacing:2.080000pt;}
.ws80{word-spacing:2.130667pt;}
.ws42{word-spacing:2.133333pt;}
.ws64{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.266667pt;}
.ws50{word-spacing:2.346667pt;}
.ws89{word-spacing:2.357333pt;}
.ws40{word-spacing:2.400000pt;}
.ws84{word-spacing:2.402667pt;}
.ws4e{word-spacing:2.453333pt;}
.ws70{word-spacing:2.613333pt;}
.ws7d{word-spacing:2.629333pt;}
.ws2e{word-spacing:2.666667pt;}
.ws58{word-spacing:2.720000pt;}
.ws3c{word-spacing:2.773333pt;}
.ws5f{word-spacing:2.826667pt;}
.ws3b{word-spacing:2.880000pt;}
.ws33{word-spacing:2.933333pt;}
.ws72{word-spacing:2.946667pt;}
.ws6a{word-spacing:2.986667pt;}
.ws71{word-spacing:2.992000pt;}
.ws83{word-spacing:3.037333pt;}
.ws5c{word-spacing:3.093333pt;}
.ws48{word-spacing:3.146667pt;}
.ws52{word-spacing:3.253333pt;}
.ws3a{word-spacing:3.360000pt;}
.ws62{word-spacing:3.573333pt;}
.ws5b{word-spacing:3.733333pt;}
.ws73{word-spacing:3.808000pt;}
.ws68{word-spacing:3.946667pt;}
.ws8c{word-spacing:4.170667pt;}
.ws41{word-spacing:4.266667pt;}
.ws47{word-spacing:4.320000pt;}
.ws32{word-spacing:4.480000pt;}
.ws82{word-spacing:4.533333pt;}
.ws66{word-spacing:4.906667pt;}
.ws54{word-spacing:5.120000pt;}
.ws1a{word-spacing:5.280000pt;}
.ws8a{word-spacing:5.802667pt;}
.ws5e{word-spacing:5.813333pt;}
.ws39{word-spacing:6.400000pt;}
.ws8b{word-spacing:8.749333pt;}
.ws8f{word-spacing:12.149333pt;}
.ws4b{word-spacing:15.322667pt;}
.ws90{word-spacing:15.821333pt;}
.ws22{word-spacing:64.237333pt;}
.ws29{word-spacing:454.783984pt;}
.ws2a{word-spacing:457.322651pt;}
.ws2b{word-spacing:479.989317pt;}
._a{margin-left:-64.600000pt;}
._10{margin-left:-21.457599pt;}
._64{margin-left:-18.632000pt;}
._7{margin-left:-14.733333pt;}
._65{margin-left:-10.970667pt;}
._38{margin-left:-9.798993pt;}
._4{margin-left:-8.094340pt;}
._17{margin-left:-6.213333pt;}
._6{margin-left:-4.986667pt;}
._1{margin-left:-3.242667pt;}
._c{margin-left:-2.352000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.280000pt;}
._d{width:2.847961pt;}
._5{width:4.997333pt;}
._5d{width:7.034667pt;}
._5e{width:8.613333pt;}
._3b{width:11.333333pt;}
._5f{width:12.829333pt;}
._e{width:14.526133pt;}
._8{width:16.320000pt;}
._62{width:18.504039pt;}
._f{width:21.008800pt;}
._63{width:22.429333pt;}
._60{width:24.925333pt;}
._61{width:26.882667pt;}
._3{width:36.215470pt;}
._9{width:48.552000pt;}
._12{width:83.096000pt;}
._14{width:117.232000pt;}
._3a{width:118.365333pt;}
._45{width:120.671985pt;}
._59{width:128.202667pt;}
._56{width:135.202667pt;}
._44{width:151.141318pt;}
._15{width:162.565333pt;}
._47{width:191.487985pt;}
._3f{width:196.202667pt;}
._42{width:203.853318pt;}
._3c{width:264.338667pt;}
._5b{width:280.296000pt;}
._4c{width:281.927985pt;}
._27{width:296.071960pt;}
._11{width:303.778651pt;}
._53{width:307.042651pt;}
._5a{width:313.933315pt;}
._43{width:318.330651pt;}
._57{width:321.074649pt;}
._46{width:325.629333pt;}
._41{width:348.296000pt;}
._48{width:370.962667pt;}
._4d{width:379.106651pt;}
._40{width:381.933315pt;}
._2f{width:392.717293pt;}
._4f{width:393.629333pt;}
._49{width:404.045300pt;}
._4b{width:414.149318pt;}
._13{width:445.989317pt;}
._3d{width:450.069315pt;}
._29{width:478.991965pt;}
._32{width:498.042632pt;}
._3e{width:516.199985pt;}
._24{width:541.762632pt;}
._16{width:551.751984pt;}
._25{width:560.218627pt;}
._19{width:565.965299pt;}
._22{width:571.109299pt;}
._2b{width:585.282627pt;}
._2d{width:599.058627pt;}
._1d{width:611.183965pt;}
._2e{width:626.495965pt;}
._34{width:630.303965pt;}
._4a{width:633.119985pt;}
._50{width:656.018651pt;}
._51{width:660.914651pt;}
._4e{width:662.127985pt;}
._58{width:664.586651pt;}
._30{width:675.466632pt;}
._1c{width:683.565293pt;}
._2c{width:695.594632pt;}
._39{width:716.311985pt;}
._52{width:718.573318pt;}
._21{width:727.962627pt;}
._26{width:735.759965pt;}
._28{width:743.421299pt;}
._1e{width:774.327960pt;}
._33{width:781.989293pt;}
._5c{width:836.983985pt;}
._55{width:921.490651pt;}
._54{width:946.695985pt;}
._18{width:1148.247960pt;}
._23{width:1175.855960pt;}
._31{width:1389.421284pt;}
._2a{width:1461.439950pt;}
._37{width:1502.527950pt;}
._20{width:1531.813284pt;}
._36{width:1612.082617pt;}
._1f{width:1635.242617pt;}
._1a{width:1742.789284pt;}
._1b{width:1768.543950pt;}
._35{width:1831.053284pt;}
._b{width:2301.845333pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y3b{bottom:100.389600pt;}
.y8d{bottom:100.809996pt;}
.y6d{bottom:100.813599pt;}
.y2d{bottom:101.521200pt;}
.y121{bottom:101.986938pt;}
.yec{bottom:106.233866pt;}
.ye4{bottom:109.294647pt;}
.y8c{bottom:114.137996pt;}
.y6c{bottom:117.480265pt;}
.y2c{bottom:118.187866pt;}
.y3a{bottom:118.250936pt;}
.y120{bottom:118.653605pt;}
.yeb{bottom:123.346802pt;}
.ye3{bottom:125.999981pt;}
.y39{bottom:133.764936pt;}
.y6b{bottom:134.146932pt;}
.y2b{bottom:134.854533pt;}
.y11f{bottom:135.320272pt;}
.ya1{bottom:138.609583pt;}
.yea{bottom:140.459605pt;}
.ye2{bottom:142.637314pt;}
.y6a{bottom:150.813599pt;}
.y2a{bottom:151.521200pt;}
.y38{bottom:151.626272pt;}
.y11e{bottom:151.986938pt;}
.ya0{bottom:155.314917pt;}
.ye9{bottom:157.572530pt;}
.ye1{bottom:159.274647pt;}
.y37{bottom:167.140262pt;}
.y69{bottom:167.480265pt;}
.y29{bottom:168.187866pt;}
.y11d{bottom:168.653605pt;}
.y9f{bottom:171.952250pt;}
.ye0{bottom:175.911981pt;}
.y107{bottom:178.392941pt;}
.y68{bottom:184.146932pt;}
.y28{bottom:184.854533pt;}
.y36{bottom:185.001607pt;}
.y11c{bottom:185.320272pt;}
.y9e{bottom:188.589583pt;}
.ydf{bottom:192.549314pt;}
.y106{bottom:195.098274pt;}
.y35{bottom:200.515608pt;}
.y67{bottom:200.813599pt;}
.y27{bottom:201.521200pt;}
.y11b{bottom:201.986938pt;}
.y9d{bottom:205.226917pt;}
.yde{bottom:209.186647pt;}
.y105{bottom:211.735608pt;}
.y66{bottom:217.480265pt;}
.y26{bottom:218.187866pt;}
.y34{bottom:218.376933pt;}
.y11a{bottom:218.653605pt;}
.y9c{bottom:221.864250pt;}
.ydd{bottom:225.823981pt;}
.y104{bottom:228.372941pt;}
.y33{bottom:233.890933pt;}
.y65{bottom:234.146932pt;}
.y25{bottom:234.854533pt;}
.y119{bottom:235.320272pt;}
.y9b{bottom:238.501583pt;}
.ydc{bottom:242.461314pt;}
.y103{bottom:245.010274pt;}
.y64{bottom:250.813599pt;}
.y24{bottom:251.521200pt;}
.y32{bottom:251.752258pt;}
.y118{bottom:251.986938pt;}
.y9a{bottom:255.138917pt;}
.ydb{bottom:259.098647pt;}
.y102{bottom:261.580286pt;}
.y31{bottom:267.266259pt;}
.y23{bottom:268.187866pt;}
.y117{bottom:268.653605pt;}
.y99{bottom:271.776250pt;}
.yda{bottom:275.735981pt;}
.y101{bottom:278.217620pt;}
.y63{bottom:284.146932pt;}
.y22{bottom:284.854533pt;}
.y30{bottom:285.127604pt;}
.y116{bottom:285.320272pt;}
.y98{bottom:288.413583pt;}
.yd9{bottom:292.373314pt;}
.y100{bottom:294.854953pt;}
.y158{bottom:298.737854pt;}
.y21{bottom:301.521200pt;}
.y115{bottom:301.986938pt;}
.y97{bottom:305.050917pt;}
.y2f{bottom:307.350263pt;}
.yd8{bottom:309.010647pt;}
.yff{bottom:311.492286pt;}
.y157{bottom:312.065854pt;}
.yd7{bottom:312.319981pt;}
.y62{bottom:317.480265pt;}
.y20{bottom:318.187866pt;}
.y114{bottom:318.653605pt;}
.y2e{bottom:320.678263pt;}
.y96{bottom:321.688250pt;}
.y156{bottom:325.393854pt;}
.yd6{bottom:325.647981pt;}
.yfe{bottom:328.129620pt;}
.y188{bottom:329.507849pt;}
.y1f{bottom:334.854533pt;}
.y113{bottom:335.320272pt;}
.y95{bottom:338.325583pt;}
.y155{bottom:338.721854pt;}
.yd5{bottom:342.285314pt;}
.y187{bottom:342.835849pt;}
.yfd{bottom:344.766953pt;}
.y112{bottom:351.986938pt;}
.y154{bottom:352.049854pt;}
.y94{bottom:354.962917pt;}
.yfc{bottom:358.094953pt;}
.yd4{bottom:358.922647pt;}
.y153{bottom:365.377854pt;}
.y61{bottom:367.480306pt;}
.y1e{bottom:368.187866pt;}
.y111{bottom:368.653605pt;}
.y186{bottom:370.251182pt;}
.yfb{bottom:374.732286pt;}
.yd3{bottom:375.559981pt;}
.y152{bottom:378.705854pt;}
.y90{bottom:379.250250pt;}
.y93{bottom:379.261583pt;}
.y185{bottom:383.579182pt;}
.y60{bottom:384.146973pt;}
.y110{bottom:385.320272pt;}
.yfa{bottom:391.369620pt;}
.y151{bottom:392.033854pt;}
.yd2{bottom:392.197314pt;}
.y8f{bottom:392.578250pt;}
.y92{bottom:392.589583pt;}
.y184{bottom:396.907182pt;}
.y5f{bottom:400.813639pt;}
.y10f{bottom:401.986938pt;}
.y8e{bottom:405.906250pt;}
.y91{bottom:405.917583pt;}
.yf9{bottom:408.006953pt;}
.yd1{bottom:408.834647pt;}
.y183{bottom:410.235182pt;}
.y5e{bottom:417.480306pt;}
.y1d{bottom:418.187907pt;}
.y10e{bottom:418.653605pt;}
.y150{bottom:422.033854pt;}
.y182{bottom:423.563182pt;}
.yf8{bottom:424.644286pt;}
.yd0{bottom:425.471981pt;}
.y8b{bottom:428.569990pt;}
.y5d{bottom:434.146973pt;}
.y10d{bottom:435.320272pt;}
.y181{bottom:436.891182pt;}
.yf7{bottom:441.281620pt;}
.y8a{bottom:441.897990pt;}
.ycf{bottom:442.109314pt;}
.y180{bottom:450.219182pt;}
.y5c{bottom:450.813639pt;}
.y1c{bottom:451.521240pt;}
.y10c{bottom:451.986938pt;}
.yf6{bottom:457.918953pt;}
.yce{bottom:458.746647pt;}
.y17f{bottom:463.547182pt;}
.y5b{bottom:467.480306pt;}
.y1b{bottom:468.187907pt;}
.y10b{bottom:468.653605pt;}
.y14f{bottom:472.095737pt;}
.yf5{bottom:474.556286pt;}
.ycd{bottom:475.383981pt;}
.y17e{bottom:476.875182pt;}
.y89{bottom:484.146932pt;}
.y5a{bottom:484.146973pt;}
.y1a{bottom:484.854574pt;}
.y13e{bottom:485.320272pt;}
.y14e{bottom:485.423737pt;}
.y17d{bottom:490.203182pt;}
.yf4{bottom:491.193620pt;}
.ycc{bottom:492.021314pt;}
.y14d{bottom:498.751737pt;}
.y88{bottom:500.813599pt;}
.y59{bottom:500.813639pt;}
.y19{bottom:501.521240pt;}
.y10a{bottom:501.986938pt;}
.y17c{bottom:503.531182pt;}
.yf3{bottom:507.830953pt;}
.y14c{bottom:512.079737pt;}
.y17b{bottom:516.859182pt;}
.ycb{bottom:516.988647pt;}
.y58{bottom:517.480306pt;}
.y18{bottom:518.187907pt;}
.y13d{bottom:518.653605pt;}
.yf2{bottom:524.468286pt;}
.y14b{bottom:525.407737pt;}
.y17a{bottom:530.187182pt;}
.y87{bottom:534.146932pt;}
.y57{bottom:534.146973pt;}
.y17{bottom:534.854574pt;}
.y13c{bottom:535.320272pt;}
.y14a{bottom:538.735737pt;}
.yca{bottom:539.646932pt;}
.yf1{bottom:541.105620pt;}
.y179{bottom:543.515182pt;}
.y56{bottom:550.813639pt;}
.y16{bottom:551.521240pt;}
.y109{bottom:551.986898pt;}
.y13b{bottom:551.986938pt;}
.y149{bottom:552.063737pt;}
.y178{bottom:556.843182pt;}
.yf0{bottom:557.742953pt;}
.y148{bottom:565.391737pt;}
.y86{bottom:567.480265pt;}
.y55{bottom:567.480306pt;}
.y15{bottom:568.187907pt;}
.y108{bottom:568.653564pt;}
.y13a{bottom:568.653605pt;}
.y177{bottom:570.171182pt;}
.y147{bottom:578.719737pt;}
.yef{bottom:582.710286pt;}
.y176{bottom:583.499182pt;}
.y85{bottom:584.146932pt;}
.y54{bottom:584.146973pt;}
.y14{bottom:584.854574pt;}
.yc9{bottom:585.320150pt;}
.yb8{bottom:585.320231pt;}
.y139{bottom:585.320272pt;}
.y146{bottom:592.047737pt;}
.y175{bottom:596.827182pt;}
.yee{bottom:599.482262pt;}
.y84{bottom:600.813599pt;}
.y53{bottom:600.813639pt;}
.y13{bottom:601.521240pt;}
.yc8{bottom:601.986816pt;}
.yb7{bottom:601.986898pt;}
.y138{bottom:601.986938pt;}
.y145{bottom:605.375737pt;}
.y174{bottom:610.155182pt;}
.yed{bottom:612.810262pt;}
.y83{bottom:617.480265pt;}
.y52{bottom:617.480306pt;}
.y12{bottom:618.187907pt;}
.yc7{bottom:618.653483pt;}
.yb6{bottom:618.653564pt;}
.y137{bottom:618.653605pt;}
.y144{bottom:618.703737pt;}
.y173{bottom:623.483182pt;}
.y82{bottom:634.146932pt;}
.y51{bottom:634.146973pt;}
.y11{bottom:634.854574pt;}
.yc6{bottom:635.320150pt;}
.yb5{bottom:635.320231pt;}
.y136{bottom:635.320272pt;}
.ye8{bottom:635.473880pt;}
.y172{bottom:636.811182pt;}
.y143{bottom:648.669070pt;}
.ye7{bottom:648.801880pt;}
.y171{bottom:650.139182pt;}
.y81{bottom:650.813599pt;}
.y50{bottom:650.813639pt;}
.y10{bottom:651.521240pt;}
.yc5{bottom:651.986816pt;}
.yb4{bottom:651.986898pt;}
.y135{bottom:651.986938pt;}
.y142{bottom:661.997070pt;}
.y170{bottom:663.467182pt;}
.y80{bottom:667.480265pt;}
.y4f{bottom:667.480306pt;}
.yf{bottom:668.187907pt;}
.yc4{bottom:668.653483pt;}
.yb3{bottom:668.653564pt;}
.y134{bottom:668.653605pt;}
.y16f{bottom:676.795182pt;}
.y7f{bottom:684.146932pt;}
.y4e{bottom:684.146973pt;}
.ye{bottom:684.854574pt;}
.yc3{bottom:685.320150pt;}
.yb2{bottom:685.320231pt;}
.y133{bottom:685.320272pt;}
.y16e{bottom:690.123182pt;}
.y141{bottom:691.997070pt;}
.y7e{bottom:700.813599pt;}
.y4d{bottom:700.813639pt;}
.yd{bottom:701.521240pt;}
.yc2{bottom:701.986816pt;}
.yb1{bottom:701.986898pt;}
.y132{bottom:701.986938pt;}
.y16d{bottom:703.451182pt;}
.y16c{bottom:716.779182pt;}
.y7d{bottom:717.480265pt;}
.y4c{bottom:717.480306pt;}
.yc1{bottom:718.653483pt;}
.yb0{bottom:718.653564pt;}
.y131{bottom:718.653605pt;}
.y140{bottom:725.362430pt;}
.y16b{bottom:730.107182pt;}
.y7c{bottom:734.146932pt;}
.y4b{bottom:734.146973pt;}
.yc0{bottom:735.320150pt;}
.yaf{bottom:735.320231pt;}
.y130{bottom:735.320272pt;}
.y13f{bottom:738.690430pt;}
.yc{bottom:740.794803pt;}
.y16a{bottom:743.435182pt;}
.y7b{bottom:750.813599pt;}
.y4a{bottom:750.813639pt;}
.ybf{bottom:751.986816pt;}
.yae{bottom:751.986898pt;}
.y12f{bottom:751.986938pt;}
.yb{bottom:754.122803pt;}
.y169{bottom:756.763182pt;}
.y7a{bottom:767.480265pt;}
.y49{bottom:767.480306pt;}
.ybe{bottom:768.653483pt;}
.ye6{bottom:768.653564pt;}
.y12e{bottom:768.653605pt;}
.y168{bottom:770.091182pt;}
.y167{bottom:783.419182pt;}
.y79{bottom:784.146932pt;}
.y48{bottom:784.146973pt;}
.ybd{bottom:785.320150pt;}
.yad{bottom:785.320231pt;}
.y12d{bottom:785.320272pt;}
.ya{bottom:791.989502pt;}
.y166{bottom:796.747182pt;}
.y78{bottom:800.813599pt;}
.y47{bottom:800.813639pt;}
.ybc{bottom:801.986816pt;}
.ye5{bottom:801.986898pt;}
.y12c{bottom:801.986938pt;}
.y9{bottom:808.656169pt;}
.y165{bottom:810.075182pt;}
.y77{bottom:817.480265pt;}
.y46{bottom:817.480306pt;}
.ybb{bottom:818.653483pt;}
.yac{bottom:818.653564pt;}
.y12b{bottom:818.653605pt;}
.y164{bottom:823.403182pt;}
.y76{bottom:834.146932pt;}
.y45{bottom:834.146973pt;}
.yba{bottom:835.320150pt;}
.yab{bottom:835.320231pt;}
.y12a{bottom:835.320272pt;}
.y163{bottom:836.731182pt;}
.y8{bottom:848.377441pt;}
.y162{bottom:850.059182pt;}
.y75{bottom:850.813599pt;}
.y44{bottom:850.813639pt;}
.yaa{bottom:851.986898pt;}
.y129{bottom:851.986938pt;}
.y161{bottom:863.387182pt;}
.y74{bottom:867.480265pt;}
.y43{bottom:867.480306pt;}
.yb9{bottom:868.653483pt;}
.ya9{bottom:868.653564pt;}
.y128{bottom:868.653605pt;}
.y7{bottom:872.377441pt;}
.y160{bottom:876.715182pt;}
.y73{bottom:884.146932pt;}
.y42{bottom:884.146973pt;}
.ya8{bottom:885.320231pt;}
.y127{bottom:885.320272pt;}
.y15f{bottom:890.043182pt;}
.y6{bottom:896.377441pt;}
.y72{bottom:900.813599pt;}
.y41{bottom:900.813639pt;}
.ya7{bottom:901.986898pt;}
.y126{bottom:901.986938pt;}
.y15e{bottom:903.371182pt;}
.y15d{bottom:916.699182pt;}
.y71{bottom:917.480265pt;}
.y40{bottom:917.480306pt;}
.ya6{bottom:918.653564pt;}
.y125{bottom:918.653605pt;}
.y15c{bottom:930.027182pt;}
.y70{bottom:934.146932pt;}
.y3f{bottom:934.146973pt;}
.ya5{bottom:935.320231pt;}
.y124{bottom:935.320272pt;}
.y15b{bottom:943.355182pt;}
.y6f{bottom:950.813599pt;}
.y3e{bottom:950.813639pt;}
.ya4{bottom:951.986898pt;}
.y123{bottom:951.986938pt;}
.y5{bottom:956.561849pt;}
.y15a{bottom:956.683182pt;}
.y6e{bottom:967.480265pt;}
.y3d{bottom:967.480306pt;}
.ya3{bottom:968.653564pt;}
.y122{bottom:968.653605pt;}
.y159{bottom:970.011182pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3c{bottom:1002.206543pt;}
.ya2{bottom:1002.206706pt;}
.he{height:22.403733pt;}
.h2{height:30.080000pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h11{height:40.515700pt;}
.h12{height:40.537033pt;}
.h13{height:40.790350pt;}
.h10{height:43.656000pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.ha{height:51.360000pt;}
.h8{height:52.746667pt;}
.hf{height:57.493333pt;}
.h7{height:57.621333pt;}
.hb{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.151472pt;}
.x7{left:86.929867pt;}
.x10{left:90.709469pt;}
.xf{left:332.404132pt;}
.xe{left:389.161422pt;}
.x5{left:408.189087pt;}
.xc{left:412.186402pt;}
.x6{left:423.335760pt;}
.x11{left:430.868129pt;}
.xa{left:560.381063pt;}
.xb{left:631.203063pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xd{left:709.519613pt;}
}




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