
    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_390aec5995ae867a2d3a581b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd21d511272dfb1abf76cc77.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0e7cf6fe381c46a1ccdcfb37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_aeb1339c1c1ff131a7187bcd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_91fc74777a5da66236b0804f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.878000;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_7f75d189ee30cecedadfd6af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_7ca1ac2192bb54d911e1ba90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.878000;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_581f807dd2a1da01153b8be5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eb1b5a1853b14b51b3fdfcf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.824219;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_4cfa8da48bed5153d88f9daa.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v3{vertical-align:23.976000px;}
.v1{vertical-align:31.968000px;}
.ls5{letter-spacing:-1.553112px;}
.ls6{letter-spacing:-1.294260px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.009600px;}
.ls7{letter-spacing:4.521000px;}
.ls3{letter-spacing:6.609600px;}
.ls8{letter-spacing:8.074800px;}
.ls9{letter-spacing:24.921600px;}
.lsa{letter-spacing:29.421600px;}
.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;}
}
.ws1{word-spacing:-24.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws65{word-spacing:-16.500000px;}
.ws14{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.992000px;}
.ws13{word-spacing:-10.494000px;}
.ws57{word-spacing:-8.940888px;}
.ws3{word-spacing:-8.745000px;}
.ws4{word-spacing:-8.064000px;}
.ws58{word-spacing:-7.450740px;}
.ws7d{word-spacing:-6.984000px;}
.ws4e{word-spacing:-6.120000px;}
.ws9e{word-spacing:-6.048000px;}
.wsab{word-spacing:-5.760000px;}
.ws75{word-spacing:-5.688000px;}
.wsb0{word-spacing:-5.400000px;}
.ws36{word-spacing:-5.328000px;}
.ws80{word-spacing:-5.256000px;}
.ws39{word-spacing:-4.968000px;}
.wsf{word-spacing:-4.752000px;}
.wsaa{word-spacing:-4.680000px;}
.ws9b{word-spacing:-4.608000px;}
.wsc5{word-spacing:-4.392000px;}
.ws43{word-spacing:-4.320000px;}
.wsea{word-spacing:-4.104000px;}
.ws20{word-spacing:-4.032000px;}
.ws5d{word-spacing:-3.960000px;}
.ws90{word-spacing:-3.816000px;}
.wsb7{word-spacing:-3.600000px;}
.wsf3{word-spacing:-3.528000px;}
.ws4f{word-spacing:-3.384000px;}
.ws1d{word-spacing:-3.312000px;}
.wsc7{word-spacing:-3.240000px;}
.ws9d{word-spacing:-3.168000px;}
.wsb4{word-spacing:-3.096000px;}
.ws7c{word-spacing:-2.952000px;}
.ws1e{word-spacing:-2.808000px;}
.ws8f{word-spacing:-2.736000px;}
.ws30{word-spacing:-2.664000px;}
.wsa6{word-spacing:-2.640000px;}
.ws84{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.520000px;}
.ws41{word-spacing:-2.448000px;}
.ws56{word-spacing:-2.400000px;}
.ws2a{word-spacing:-2.376000px;}
.wse1{word-spacing:-2.340000px;}
.ws34{word-spacing:-2.304000px;}
.wsdc{word-spacing:-2.280000px;}
.ws2b{word-spacing:-2.232000px;}
.ws4c{word-spacing:-2.160000px;}
.wsfc{word-spacing:-2.088000px;}
.ws26{word-spacing:-2.016000px;}
.wse3{word-spacing:-1.980000px;}
.wsb6{word-spacing:-1.860000px;}
.ws45{word-spacing:-1.800000px;}
.wsc2{word-spacing:-1.656000px;}
.ws3f{word-spacing:-1.584000px;}
.wsdd{word-spacing:-1.560000px;}
.wsc3{word-spacing:-1.512000px;}
.ws6e{word-spacing:-1.500000px;}
.ws74{word-spacing:-1.440000px;}
.wsa3{word-spacing:-1.380000px;}
.ws6b{word-spacing:-1.368000px;}
.ws7{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.224000px;}
.wsbd{word-spacing:-1.200000px;}
.wse{word-spacing:-1.152000px;}
.ws66{word-spacing:-1.080000px;}
.ws3b{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.936000px;}
.ws55{word-spacing:-0.900000px;}
.wseb{word-spacing:-0.864000px;}
.ws93{word-spacing:-0.792000px;}
.wse6{word-spacing:-0.780000px;}
.ws1c{word-spacing:-0.720000px;}
.wse5{word-spacing:-0.648000px;}
.wsb8{word-spacing:-0.600000px;}
.ws2c{word-spacing:-0.576000px;}
.wsbf{word-spacing:-0.540000px;}
.wse9{word-spacing:-0.504000px;}
.ws76{word-spacing:-0.432000px;}
.wsf1{word-spacing:-0.360000px;}
.wse4{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.180000px;}
.wsae{word-spacing:-0.144000px;}
.ws95{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws70{word-spacing:0.060000px;}
.ws8d{word-spacing:0.180000px;}
.ws21{word-spacing:0.216000px;}
.ws5c{word-spacing:0.288000px;}
.ws6f{word-spacing:0.300000px;}
.ws1b{word-spacing:0.360000px;}
.wsb1{word-spacing:0.432000px;}
.wse8{word-spacing:0.480000px;}
.wsfb{word-spacing:0.504000px;}
.wsaf{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.ws29{word-spacing:0.660000px;}
.wsfd{word-spacing:0.720000px;}
.ws9f{word-spacing:0.792000px;}
.ws89{word-spacing:0.840000px;}
.ws96{word-spacing:0.936000px;}
.wsef{word-spacing:1.008000px;}
.ws10{word-spacing:1.020000px;}
.wsce{word-spacing:1.080000px;}
.ws46{word-spacing:1.224000px;}
.wsd5{word-spacing:1.260000px;}
.ws38{word-spacing:1.368000px;}
.ws59{word-spacing:1.584000px;}
.ws69{word-spacing:1.656000px;}
.wse7{word-spacing:1.680000px;}
.ws6a{word-spacing:1.728000px;}
.wsc0{word-spacing:1.800000px;}
.wsa0{word-spacing:1.860000px;}
.ws9c{word-spacing:1.872000px;}
.wsbb{word-spacing:1.920000px;}
.ws8b{word-spacing:1.980000px;}
.ws2e{word-spacing:2.016000px;}
.wsac{word-spacing:2.100000px;}
.ws42{word-spacing:2.160000px;}
.wsbe{word-spacing:2.220000px;}
.ws35{word-spacing:2.232000px;}
.wsc4{word-spacing:2.304000px;}
.ws52{word-spacing:2.340000px;}
.ws3e{word-spacing:2.376000px;}
.ws91{word-spacing:2.448000px;}
.ws44{word-spacing:2.520000px;}
.wsba{word-spacing:2.580000px;}
.wscb{word-spacing:2.592000px;}
.ws54{word-spacing:2.640000px;}
.ws1a{word-spacing:2.664000px;}
.ws24{word-spacing:2.736000px;}
.ws8a{word-spacing:2.820000px;}
.ws4d{word-spacing:2.880000px;}
.wsd7{word-spacing:2.940000px;}
.ws49{word-spacing:2.952000px;}
.ws8e{word-spacing:3.024000px;}
.ws4b{word-spacing:3.060000px;}
.ws40{word-spacing:3.096000px;}
.ws79{word-spacing:3.168000px;}
.wsbc{word-spacing:3.180000px;}
.ws6d{word-spacing:3.300000px;}
.wsc{word-spacing:3.312000px;}
.wsd4{word-spacing:3.360000px;}
.wsa2{word-spacing:3.420000px;}
.ws1f{word-spacing:3.528000px;}
.ws62{word-spacing:3.744000px;}
.ws47{word-spacing:3.888000px;}
.ws11{word-spacing:3.960000px;}
.ws6c{word-spacing:4.032000px;}
.ws25{word-spacing:4.176000px;}
.ws87{word-spacing:4.200000px;}
.wsad{word-spacing:4.320000px;}
.ws86{word-spacing:4.380000px;}
.ws98{word-spacing:4.392000px;}
.wsd3{word-spacing:4.440000px;}
.ws71{word-spacing:4.536000px;}
.wsda{word-spacing:4.560000px;}
.ws5a{word-spacing:4.608000px;}
.wsa5{word-spacing:4.620000px;}
.wsb{word-spacing:4.680000px;}
.wsd0{word-spacing:4.740000px;}
.ws2d{word-spacing:4.896000px;}
.ws53{word-spacing:4.920000px;}
.ws15{word-spacing:4.968000px;}
.wsb3{word-spacing:5.112000px;}
.wsb2{word-spacing:5.184000px;}
.ws73{word-spacing:5.220000px;}
.wse2{word-spacing:5.280000px;}
.wsa{word-spacing:5.328000px;}
.ws27{word-spacing:5.340000px;}
.wsf4{word-spacing:5.400000px;}
.wsca{word-spacing:5.472000px;}
.wsa4{word-spacing:5.520000px;}
.wse0{word-spacing:5.544000px;}
.ws92{word-spacing:5.616000px;}
.ws5f{word-spacing:5.688000px;}
.ws97{word-spacing:5.760000px;}
.wsf8{word-spacing:5.832000px;}
.ws8c{word-spacing:6.000000px;}
.ws88{word-spacing:6.060000px;}
.wsdf{word-spacing:6.120000px;}
.ws9{word-spacing:6.192000px;}
.wsc1{word-spacing:6.264000px;}
.wsd8{word-spacing:6.300000px;}
.ws51{word-spacing:6.360000px;}
.wsa7{word-spacing:6.480000px;}
.ws50{word-spacing:6.600000px;}
.wsb9{word-spacing:6.660000px;}
.ws85{word-spacing:6.780000px;}
.ws7a{word-spacing:6.840000px;}
.ws23{word-spacing:6.912000px;}
.wscd{word-spacing:7.128000px;}
.wsdb{word-spacing:7.140000px;}
.ws4a{word-spacing:7.200000px;}
.wsf5{word-spacing:7.272000px;}
.ws99{word-spacing:7.488000px;}
.ws7b{word-spacing:7.560000px;}
.ws78{word-spacing:7.848000px;}
.wsd2{word-spacing:7.860000px;}
.wsa8{word-spacing:7.992000px;}
.wsb5{word-spacing:8.100000px;}
.ws83{word-spacing:8.136000px;}
.ws19{word-spacing:8.208000px;}
.ws61{word-spacing:8.352000px;}
.ws9a{word-spacing:8.424000px;}
.ws63{word-spacing:8.460000px;}
.wsd{word-spacing:8.496000px;}
.ws3d{word-spacing:8.520000px;}
.ws7f{word-spacing:8.640000px;}
.wsee{word-spacing:8.712000px;}
.wsf6{word-spacing:8.784000px;}
.wsd6{word-spacing:8.928000px;}
.wsd9{word-spacing:8.940000px;}
.ws48{word-spacing:9.000000px;}
.ws77{word-spacing:9.072000px;}
.wsc8{word-spacing:9.216000px;}
.ws17{word-spacing:9.432000px;}
.wsc9{word-spacing:9.648000px;}
.wsc6{word-spacing:9.720000px;}
.ws68{word-spacing:9.792000px;}
.ws72{word-spacing:9.864000px;}
.wsf0{word-spacing:10.008000px;}
.ws81{word-spacing:10.152000px;}
.ws18{word-spacing:10.368000px;}
.ws64{word-spacing:10.440000px;}
.ws7e{word-spacing:10.512000px;}
.wsa9{word-spacing:10.584000px;}
.ws82{word-spacing:10.656000px;}
.ws5e{word-spacing:10.728000px;}
.ws37{word-spacing:10.800000px;}
.ws8{word-spacing:11.016000px;}
.wsd1{word-spacing:11.040000px;}
.wsf2{word-spacing:11.160000px;}
.ws5b{word-spacing:11.448000px;}
.wsec{word-spacing:11.592000px;}
.ws5{word-spacing:11.808000px;}
.ws3c{word-spacing:12.000000px;}
.ws60{word-spacing:12.312000px;}
.wsf7{word-spacing:12.456000px;}
.wsfe{word-spacing:13.032000px;}
.wsde{word-spacing:13.104000px;}
.ws94{word-spacing:13.176000px;}
.ws2f{word-spacing:13.392000px;}
.wscc{word-spacing:13.464000px;}
.ws67{word-spacing:13.968000px;}
.wsfa{word-spacing:14.184000px;}
.wscf{word-spacing:15.480000px;}
.ws22{word-spacing:17.856000px;}
.wsf9{word-spacing:18.000000px;}
.ws28{word-spacing:19.380000px;}
.ws3a{word-spacing:19.944000px;}
.wsed{word-spacing:21.096000px;}
.ws16{word-spacing:23.400000px;}
._0{margin-left:-9.298800px;}
._4{margin-left:-7.806000px;}
._11{margin-left:-6.418800px;}
._8{margin-left:-5.250000px;}
._3{margin-left:-4.213200px;}
._2{margin-left:-2.691600px;}
._6{margin-left:-1.429200px;}
._1{width:1.252800px;}
._c{width:2.283600px;}
._5{width:3.398400px;}
._e{width:4.434000px;}
._d{width:5.604000px;}
._f{width:7.592400px;}
._a{width:9.277200px;}
._9{width:10.383600px;}
._10{width:11.994000px;}
._b{width:13.183200px;}
._7{width:14.464800px;}
._13{width:16.344000px;}
._12{width:26.553600px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fs6{font-size:41.976000px;}
.fs1{font-size:55.968000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:106.299150px;}
.y20{bottom:106.299300px;}
.yd8{bottom:111.294300px;}
.y1cc{bottom:118.054950px;}
.y6b{bottom:124.299150px;}
.y1f{bottom:124.299300px;}
.y47{bottom:129.294300px;}
.y46{bottom:142.299150px;}
.y1cb{bottom:145.054950px;}
.y1e{bottom:147.294300px;}
.y113{bottom:155.095050px;}
.y45{bottom:160.299150px;}
.y1d{bottom:160.299300px;}
.y1ad{bottom:161.554950px;}
.y173{bottom:163.620450px;}
.yb5{bottom:165.294300px;}
.y1bd{bottom:166.054950px;}
.y1ca{bottom:172.054950px;}
.y6a{bottom:178.299150px;}
.y112{bottom:182.095050px;}
.y1c{bottom:183.294300px;}
.y1ac{bottom:188.554950px;}
.yb4{bottom:190.054950px;}
.y172{bottom:190.620450px;}
.y1bc{bottom:193.054950px;}
.yd7{bottom:196.299150px;}
.y1c9{bottom:199.054950px;}
.y69{bottom:201.294300px;}
.y44{bottom:203.144850px;}
.y111{bottom:209.095050px;}
.yb3{bottom:214.054950px;}
.y90{bottom:214.299150px;}
.y1ab{bottom:215.554950px;}
.y1b{bottom:215.894850px;}
.y171{bottom:217.620450px;}
.y132{bottom:218.554950px;}
.yd6{bottom:219.294300px;}
.y68{bottom:226.037400px;}
.y1c8{bottom:226.054950px;}
.y43{bottom:230.144850px;}
.y8f{bottom:232.299150px;}
.y110{bottom:236.095050px;}
.yb2{bottom:238.054950px;}
.y131{bottom:244.054950px;}
.y170{bottom:244.620450px;}
.y1bb{bottom:247.054950px;}
.yd5{bottom:250.299150px;}
.y67{bottom:251.537400px;}
.y1c7{bottom:253.054950px;}
.y8e{bottom:255.294300px;}
.y42{bottom:257.144850px;}
.y190{bottom:259.804950px;}
.y10f{bottom:263.095050px;}
.yb1{bottom:263.554950px;}
.y8d{bottom:268.299150px;}
.y130{bottom:269.554950px;}
.y1a{bottom:269.894850px;}
.y16f{bottom:271.620450px;}
.yd4{bottom:273.294300px;}
.y66{bottom:277.037400px;}
.y1c6{bottom:280.054950px;}
.y41{bottom:284.144850px;}
.y8c{bottom:286.299150px;}
.y1aa{bottom:287.554950px;}
.y18f{bottom:288.304950px;}
.yb0{bottom:289.054950px;}
.y10e{bottom:290.095050px;}
.y12f{bottom:295.054950px;}
.y19{bottom:296.894850px;}
.y16e{bottom:298.620450px;}
.yd3{bottom:301.974900px;}
.y65{bottom:302.537400px;}
.yee{bottom:307.054950px;}
.y8b{bottom:309.294300px;}
.y1a9{bottom:310.054950px;}
.y40{bottom:311.144850px;}
.yaf{bottom:314.554950px;}
.y18e{bottom:315.304950px;}
.y10d{bottom:317.095050px;}
.y12e{bottom:320.554950px;}
.y150{bottom:322.299150px;}
.y18{bottom:322.394850px;}
.yd2{bottom:328.974900px;}
.y64{bottom:329.537400px;}
.yed{bottom:331.804950px;}
.y1a8{bottom:332.554950px;}
.y1c5{bottom:334.054950px;}
.y8a{bottom:335.554950px;}
.y3f{bottom:338.144850px;}
.yae{bottom:340.054950px;}
.y14f{bottom:340.299150px;}
.y18d{bottom:342.304950px;}
.y10c{bottom:344.095050px;}
.y17{bottom:347.894850px;}
.y12d{bottom:349.054950px;}
.yec{bottom:354.304950px;}
.y1a7{bottom:355.054950px;}
.yd1{bottom:355.974900px;}
.y63{bottom:356.537400px;}
.y16d{bottom:357.120450px;}
.y1ba{bottom:359.554950px;}
.y1c4{bottom:361.054950px;}
.y89{bottom:362.554950px;}
.y14e{bottom:363.294300px;}
.y3e{bottom:365.144850px;}
.yad{bottom:365.554950px;}
.y18c{bottom:369.304950px;}
.y10b{bottom:371.095050px;}
.y16{bottom:373.394850px;}
.yeb{bottom:376.804950px;}
.y12c{bottom:377.554950px;}
.y1b9{bottom:385.054950px;}
.y1c3{bottom:388.054950px;}
.y88{bottom:389.554950px;}
.yac{bottom:391.054950px;}
.y14d{bottom:391.804950px;}
.y3d{bottom:392.144850px;}
.y18b{bottom:396.304950px;}
.y10a{bottom:398.095050px;}
.y15{bottom:398.894850px;}
.yea{bottom:399.304950px;}
.y1a6{bottom:400.054950px;}
.y12b{bottom:406.054950px;}
.y62{bottom:410.537400px;}
.y1b8{bottom:410.554950px;}
.y14c{bottom:414.304950px;}
.y1c2{bottom:415.054950px;}
.yab{bottom:416.554950px;}
.y3c{bottom:419.144850px;}
.ye9{bottom:421.804950px;}
.y18a{bottom:423.304950px;}
.y109{bottom:425.095050px;}
.y12a{bottom:434.554950px;}
.y1b7{bottom:436.054950px;}
.y14b{bottom:436.804950px;}
.yd0{bottom:436.974900px;}
.yaa{bottom:442.054950px;}
.y16c{bottom:442.620450px;}
.y87{bottom:443.554950px;}
.y3b{bottom:446.144850px;}
.y14{bottom:449.894850px;}
.y189{bottom:450.304950px;}
.y1a5{bottom:451.804950px;}
.y108{bottom:452.095050px;}
.y14a{bottom:459.304950px;}
.ycf{bottom:459.474900px;}
.y1b6{bottom:461.554950px;}
.y129{bottom:463.054950px;}
.y86{bottom:466.054950px;}
.ya9{bottom:467.554950px;}
.y16b{bottom:468.120450px;}
.y1c1{bottom:469.054950px;}
.y3a{bottom:471.644850px;}
.ye8{bottom:473.554950px;}
.y188{bottom:477.304950px;}
.y1a4{bottom:478.804950px;}
.y107{bottom:479.095050px;}
.yce{bottom:481.974900px;}
.y1b5{bottom:487.054950px;}
.y85{bottom:488.554950px;}
.y128{bottom:491.554950px;}
.ya8{bottom:493.054950px;}
.y16a{bottom:493.620450px;}
.y61{bottom:496.037400px;}
.y1c0{bottom:496.054950px;}
.y39{bottom:497.144850px;}
.ye7{bottom:500.554950px;}
.y13{bottom:500.894850px;}
.ycd{bottom:504.474900px;}
.y1a3{bottom:505.804950px;}
.y106{bottom:506.095050px;}
.y149{bottom:509.554950px;}
.y84{bottom:511.054950px;}
.y1b4{bottom:512.554950px;}
.ya7{bottom:518.554950px;}
.y169{bottom:519.120450px;}
.y38{bottom:522.644850px;}
.y60{bottom:523.037400px;}
.y1bf{bottom:523.054950px;}
.ye6{bottom:526.054950px;}
.y12{bottom:526.394850px;}
.ycc{bottom:526.974900px;}
.y187{bottom:531.304950px;}
.y1a2{bottom:532.804950px;}
.y105{bottom:533.095050px;}
.y83{bottom:533.554950px;}
.y148{bottom:538.054950px;}
.ya6{bottom:544.054950px;}
.y168{bottom:544.620450px;}
.y37{bottom:548.144850px;}
.y127{bottom:548.554950px;}
.ycb{bottom:549.474900px;}
.y5f{bottom:550.037400px;}
.y1be{bottom:550.054950px;}
.ye5{bottom:551.554950px;}
.y11{bottom:551.894850px;}
.y186{bottom:553.804950px;}
.y82{bottom:556.054950px;}
.y1a1{bottom:559.804950px;}
.y104{bottom:560.095050px;}
.y147{bottom:563.554950px;}
.ya5{bottom:569.554950px;}
.y167{bottom:570.120450px;}
.yca{bottom:571.974900px;}
.y36{bottom:575.144850px;}
.y185{bottom:576.304950px;}
.y5e{bottom:577.037400px;}
.ye4{bottom:577.054950px;}
.y10{bottom:577.394850px;}
.y81{bottom:578.554950px;}
.y1a0{bottom:586.804950px;}
.y103{bottom:587.095050px;}
.y146{bottom:589.054950px;}
.yc9{bottom:594.474900px;}
.ya4{bottom:595.054950px;}
.y166{bottom:595.620450px;}
.y184{bottom:598.804950px;}
.y126{bottom:599.554950px;}
.y35{bottom:602.144850px;}
.yf{bottom:602.894850px;}
.y5d{bottom:604.037400px;}
.ye3{bottom:604.054950px;}
.y19f{bottom:613.804950px;}
.y102{bottom:614.095050px;}
.y145{bottom:614.554950px;}
.ya3{bottom:620.554950px;}
.y165{bottom:621.120450px;}
.y183{bottom:621.304950px;}
.y125{bottom:622.054950px;}
.ye{bottom:628.394850px;}
.y34{bottom:629.144850px;}
.y5c{bottom:631.037400px;}
.ye2{bottom:631.054950px;}
.y80{bottom:632.554950px;}
.y144{bottom:640.054950px;}
.y19e{bottom:640.804950px;}
.y101{bottom:641.095050px;}
.y182{bottom:643.804950px;}
.yc8{bottom:643.974900px;}
.y124{bottom:644.554950px;}
.ya2{bottom:646.054950px;}
.y164{bottom:646.620450px;}
.yd{bottom:653.894850px;}
.y33{bottom:656.144850px;}
.y5b{bottom:658.037400px;}
.ye1{bottom:658.054950px;}
.y7f{bottom:659.554950px;}
.y143{bottom:665.554950px;}
.y181{bottom:666.304950px;}
.y123{bottom:667.054950px;}
.y19d{bottom:667.804950px;}
.y100{bottom:668.095050px;}
.ya1{bottom:671.554950px;}
.y163{bottom:672.120450px;}
.yc7{bottom:672.474900px;}
.yc{bottom:679.394850px;}
.y32{bottom:683.144850px;}
.y5a{bottom:685.037400px;}
.ye0{bottom:685.054950px;}
.y7e{bottom:686.554950px;}
.y180{bottom:688.804950px;}
.y122{bottom:689.554950px;}
.y142{bottom:691.054950px;}
.y19c{bottom:694.804950px;}
.yff{bottom:695.095050px;}
.ya0{bottom:697.054950px;}
.y162{bottom:697.620450px;}
.yc6{bottom:700.974900px;}
.yb{bottom:704.894850px;}
.y31{bottom:710.144850px;}
.y17f{bottom:711.304950px;}
.y59{bottom:712.037400px;}
.ydf{bottom:712.054950px;}
.y7d{bottom:713.554950px;}
.y141{bottom:716.554950px;}
.y19b{bottom:721.804950px;}
.yfe{bottom:722.095050px;}
.y9f{bottom:722.554950px;}
.y161{bottom:723.120450px;}
.yc5{bottom:729.474900px;}
.y17e{bottom:733.804950px;}
.y121{bottom:734.554950px;}
.y30{bottom:737.144850px;}
.y58{bottom:739.037400px;}
.yde{bottom:739.054950px;}
.y7c{bottom:740.554950px;}
.y140{bottom:745.054950px;}
.y9e{bottom:748.054950px;}
.y160{bottom:748.620450px;}
.yfd{bottom:749.095050px;}
.y120{bottom:757.054950px;}
.yc4{bottom:757.974900px;}
.y2f{bottom:764.144850px;}
.y57{bottom:766.037400px;}
.ydd{bottom:766.054950px;}
.y7b{bottom:767.554950px;}
.y1b3{bottom:769.054950px;}
.y19a{bottom:771.304950px;}
.y13f{bottom:772.054950px;}
.y9d{bottom:773.554950px;}
.y15f{bottom:774.120450px;}
.yfc{bottom:776.095050px;}
.y11f{bottom:779.554950px;}
.ya{bottom:784.394850px;}
.y17d{bottom:785.554950px;}
.yc3{bottom:786.474900px;}
.y1b2{bottom:788.554950px;}
.y2e{bottom:791.144850px;}
.y56{bottom:793.037400px;}
.ydc{bottom:793.054950px;}
.y199{bottom:793.804950px;}
.y7a{bottom:794.554950px;}
.y9c{bottom:799.054950px;}
.y15e{bottom:799.620450px;}
.yfb{bottom:803.095050px;}
.y1b1{bottom:808.054950px;}
.y9{bottom:811.394850px;}
.y17c{bottom:812.554950px;}
.yc2{bottom:814.974900px;}
.y198{bottom:816.304950px;}
.y2d{bottom:818.144850px;}
.y55{bottom:820.037400px;}
.ydb{bottom:820.054950px;}
.y79{bottom:821.554950px;}
.y9b{bottom:824.554950px;}
.y15d{bottom:825.120450px;}
.y13e{bottom:826.054950px;}
.y1b0{bottom:827.554950px;}
.yfa{bottom:830.095050px;}
.y11e{bottom:830.554950px;}
.y17b{bottom:838.054950px;}
.y8{bottom:838.394850px;}
.y197{bottom:838.804950px;}
.yc1{bottom:843.474900px;}
.y2c{bottom:845.144850px;}
.y54{bottom:847.037400px;}
.yda{bottom:847.054950px;}
.y78{bottom:848.554950px;}
.y9a{bottom:850.054950px;}
.y15c{bottom:850.620450px;}
.y13d{bottom:853.054950px;}
.yf9{bottom:857.095050px;}
.y11d{bottom:859.054950px;}
.y196{bottom:861.304950px;}
.y17a{bottom:863.554950px;}
.y7{bottom:865.394850px;}
.y1af{bottom:866.554950px;}
.yc0{bottom:871.974900px;}
.y2b{bottom:872.144850px;}
.y53{bottom:874.037400px;}
.yd9{bottom:874.054950px;}
.y77{bottom:875.554950px;}
.y15b{bottom:876.120450px;}
.y13c{bottom:880.054950px;}
.y195{bottom:883.804950px;}
.yf8{bottom:884.095050px;}
.y11c{bottom:887.554950px;}
.y179{bottom:889.054950px;}
.y2a{bottom:899.144850px;}
.ybf{bottom:900.474900px;}
.y52{bottom:901.037400px;}
.y99{bottom:901.054950px;}
.y15a{bottom:901.620450px;}
.y76{bottom:902.554950px;}
.y194{bottom:906.304950px;}
.y13b{bottom:907.054950px;}
.yf7{bottom:911.095050px;}
.y1ae{bottom:913.054950px;}
.y178{bottom:914.554950px;}
.y11b{bottom:916.054950px;}
.y6{bottom:919.394850px;}
.y29{bottom:926.144850px;}
.y159{bottom:927.120450px;}
.y51{bottom:928.037400px;}
.y98{bottom:928.054950px;}
.y193{bottom:928.804950px;}
.ybe{bottom:928.974900px;}
.y75{bottom:929.554950px;}
.y13a{bottom:934.054950px;}
.yf6{bottom:938.095050px;}
.y177{bottom:940.054950px;}
.y11a{bottom:944.554950px;}
.y5{bottom:950.894850px;}
.y158{bottom:952.620450px;}
.y28{bottom:953.144850px;}
.y192{bottom:953.554950px;}
.y50{bottom:955.037400px;}
.y97{bottom:955.054950px;}
.y74{bottom:956.554950px;}
.ybd{bottom:957.474900px;}
.y139{bottom:961.054950px;}
.yf5{bottom:965.095050px;}
.y176{bottom:965.554950px;}
.y119{bottom:973.054950px;}
.y157{bottom:978.120450px;}
.y191{bottom:978.304950px;}
.y27{bottom:980.144850px;}
.y4f{bottom:982.037400px;}
.y96{bottom:982.054950px;}
.y4{bottom:982.394850px;}
.ybc{bottom:982.974900px;}
.y73{bottom:983.554950px;}
.y138{bottom:988.054950px;}
.y175{bottom:991.054950px;}
.yf4{bottom:992.095050px;}
.y118{bottom:1001.554950px;}
.y156{bottom:1003.620450px;}
.y26{bottom:1007.144850px;}
.ybb{bottom:1008.474900px;}
.y4e{bottom:1009.037400px;}
.y95{bottom:1009.054950px;}
.y72{bottom:1010.554950px;}
.y137{bottom:1015.054950px;}
.y174{bottom:1016.554950px;}
.yf3{bottom:1019.095050px;}
.y117{bottom:1030.054950px;}
.y25{bottom:1034.144850px;}
.yba{bottom:1035.474900px;}
.y4d{bottom:1036.037400px;}
.y94{bottom:1036.054950px;}
.y71{bottom:1037.554950px;}
.y136{bottom:1042.054950px;}
.y155{bottom:1056.120450px;}
.y116{bottom:1058.554950px;}
.y24{bottom:1061.144850px;}
.yb9{bottom:1062.474900px;}
.y4c{bottom:1063.037400px;}
.y93{bottom:1063.054950px;}
.y70{bottom:1064.554950px;}
.y135{bottom:1067.554950px;}
.y3{bottom:1067.894850px;}
.yf2{bottom:1073.095050px;}
.y154{bottom:1078.620450px;}
.y115{bottom:1087.054950px;}
.y23{bottom:1088.144850px;}
.yb8{bottom:1089.474900px;}
.y4b{bottom:1090.037400px;}
.y92{bottom:1090.054950px;}
.y6f{bottom:1091.554950px;}
.y134{bottom:1093.054950px;}
.yf1{bottom:1095.595050px;}
.y153{bottom:1101.120450px;}
.y2{bottom:1103.894850px;}
.y114{bottom:1115.554950px;}
.y4a{bottom:1117.037400px;}
.y91{bottom:1117.054950px;}
.y6e{bottom:1118.554950px;}
.yf0{bottom:1120.345050px;}
.y152{bottom:1123.620450px;}
.y1{bottom:1139.894850px;}
.yb7{bottom:1141.974900px;}
.y49{bottom:1144.037400px;}
.y6d{bottom:1144.054950px;}
.yef{bottom:1145.095050px;}
.y151{bottom:1146.120450px;}
.y21{bottom:1179.536400px;}
.y133{bottom:1180.059450px;}
.y22{bottom:1182.192750px;}
.y6c{bottom:1182.322650px;}
.yb6{bottom:1182.798150px;}
.h6{height:30.692900px;}
.hc{height:32.665884px;}
.h8{height:32.666484px;}
.h9{height:41.689453px;}
.h5{height:50.027344px;}
.hb{height:51.048000px;}
.h7{height:52.646484px;}
.he{height:57.911133px;}
.ha{height:59.556000px;}
.hd{height:60.807480px;}
.h4{height:63.175781px;}
.h3{height:73.705078px;}
.h2{height:84.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.559100px;}
.xe{left:129.872250px;}
.xb{left:134.912250px;}
.xa{left:170.078700px;}
.xd{left:191.338500px;}
.x3{left:225.927000px;}
.x8{left:282.535950px;}
.x7{left:426.966600px;}
.x5{left:447.990000px;}
.x4{left:458.619000px;}
.x6{left:463.968600px;}
.x2{left:485.955900px;}
.xc{left:732.801450px;}
.x9{left:737.841300px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v3{vertical-align:21.312000pt;}
.v1{vertical-align:28.416000pt;}
.ls5{letter-spacing:-1.380544pt;}
.ls6{letter-spacing:-1.150453pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.008533pt;}
.ls7{letter-spacing:4.018667pt;}
.ls3{letter-spacing:5.875200pt;}
.ls8{letter-spacing:7.177600pt;}
.ls9{letter-spacing:22.152533pt;}
.lsa{letter-spacing:26.152533pt;}
.ws1{word-spacing:-21.333333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws65{word-spacing:-14.666667pt;}
.ws14{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.437333pt;}
.ws13{word-spacing:-9.328000pt;}
.ws57{word-spacing:-7.947456pt;}
.ws3{word-spacing:-7.773333pt;}
.ws4{word-spacing:-7.168000pt;}
.ws58{word-spacing:-6.622880pt;}
.ws7d{word-spacing:-6.208000pt;}
.ws4e{word-spacing:-5.440000pt;}
.ws9e{word-spacing:-5.376000pt;}
.wsab{word-spacing:-5.120000pt;}
.ws75{word-spacing:-5.056000pt;}
.wsb0{word-spacing:-4.800000pt;}
.ws36{word-spacing:-4.736000pt;}
.ws80{word-spacing:-4.672000pt;}
.ws39{word-spacing:-4.416000pt;}
.wsf{word-spacing:-4.224000pt;}
.wsaa{word-spacing:-4.160000pt;}
.ws9b{word-spacing:-4.096000pt;}
.wsc5{word-spacing:-3.904000pt;}
.ws43{word-spacing:-3.840000pt;}
.wsea{word-spacing:-3.648000pt;}
.ws20{word-spacing:-3.584000pt;}
.ws5d{word-spacing:-3.520000pt;}
.ws90{word-spacing:-3.392000pt;}
.wsb7{word-spacing:-3.200000pt;}
.wsf3{word-spacing:-3.136000pt;}
.ws4f{word-spacing:-3.008000pt;}
.ws1d{word-spacing:-2.944000pt;}
.wsc7{word-spacing:-2.880000pt;}
.ws9d{word-spacing:-2.816000pt;}
.wsb4{word-spacing:-2.752000pt;}
.ws7c{word-spacing:-2.624000pt;}
.ws1e{word-spacing:-2.496000pt;}
.ws8f{word-spacing:-2.432000pt;}
.ws30{word-spacing:-2.368000pt;}
.wsa6{word-spacing:-2.346667pt;}
.ws84{word-spacing:-2.304000pt;}
.ws33{word-spacing:-2.240000pt;}
.ws41{word-spacing:-2.176000pt;}
.ws56{word-spacing:-2.133333pt;}
.ws2a{word-spacing:-2.112000pt;}
.wse1{word-spacing:-2.080000pt;}
.ws34{word-spacing:-2.048000pt;}
.wsdc{word-spacing:-2.026667pt;}
.ws2b{word-spacing:-1.984000pt;}
.ws4c{word-spacing:-1.920000pt;}
.wsfc{word-spacing:-1.856000pt;}
.ws26{word-spacing:-1.792000pt;}
.wse3{word-spacing:-1.760000pt;}
.wsb6{word-spacing:-1.653333pt;}
.ws45{word-spacing:-1.600000pt;}
.wsc2{word-spacing:-1.472000pt;}
.ws3f{word-spacing:-1.408000pt;}
.wsdd{word-spacing:-1.386667pt;}
.wsc3{word-spacing:-1.344000pt;}
.ws6e{word-spacing:-1.333333pt;}
.ws74{word-spacing:-1.280000pt;}
.wsa3{word-spacing:-1.226667pt;}
.ws6b{word-spacing:-1.216000pt;}
.ws7{word-spacing:-1.152000pt;}
.ws32{word-spacing:-1.088000pt;}
.wsbd{word-spacing:-1.066667pt;}
.wse{word-spacing:-1.024000pt;}
.ws66{word-spacing:-0.960000pt;}
.ws3b{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.832000pt;}
.ws55{word-spacing:-0.800000pt;}
.wseb{word-spacing:-0.768000pt;}
.ws93{word-spacing:-0.704000pt;}
.wse6{word-spacing:-0.693333pt;}
.ws1c{word-spacing:-0.640000pt;}
.wse5{word-spacing:-0.576000pt;}
.wsb8{word-spacing:-0.533333pt;}
.ws2c{word-spacing:-0.512000pt;}
.wsbf{word-spacing:-0.480000pt;}
.wse9{word-spacing:-0.448000pt;}
.ws76{word-spacing:-0.384000pt;}
.wsf1{word-spacing:-0.320000pt;}
.wse4{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.160000pt;}
.wsae{word-spacing:-0.128000pt;}
.ws95{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws70{word-spacing:0.053333pt;}
.ws8d{word-spacing:0.160000pt;}
.ws21{word-spacing:0.192000pt;}
.ws5c{word-spacing:0.256000pt;}
.ws6f{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.320000pt;}
.wsb1{word-spacing:0.384000pt;}
.wse8{word-spacing:0.426667pt;}
.wsfb{word-spacing:0.448000pt;}
.wsaf{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.ws29{word-spacing:0.586667pt;}
.wsfd{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.704000pt;}
.ws89{word-spacing:0.746667pt;}
.ws96{word-spacing:0.832000pt;}
.wsef{word-spacing:0.896000pt;}
.ws10{word-spacing:0.906667pt;}
.wsce{word-spacing:0.960000pt;}
.ws46{word-spacing:1.088000pt;}
.wsd5{word-spacing:1.120000pt;}
.ws38{word-spacing:1.216000pt;}
.ws59{word-spacing:1.408000pt;}
.ws69{word-spacing:1.472000pt;}
.wse7{word-spacing:1.493333pt;}
.ws6a{word-spacing:1.536000pt;}
.wsc0{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.653333pt;}
.ws9c{word-spacing:1.664000pt;}
.wsbb{word-spacing:1.706667pt;}
.ws8b{word-spacing:1.760000pt;}
.ws2e{word-spacing:1.792000pt;}
.wsac{word-spacing:1.866667pt;}
.ws42{word-spacing:1.920000pt;}
.wsbe{word-spacing:1.973333pt;}
.ws35{word-spacing:1.984000pt;}
.wsc4{word-spacing:2.048000pt;}
.ws52{word-spacing:2.080000pt;}
.ws3e{word-spacing:2.112000pt;}
.ws91{word-spacing:2.176000pt;}
.ws44{word-spacing:2.240000pt;}
.wsba{word-spacing:2.293333pt;}
.wscb{word-spacing:2.304000pt;}
.ws54{word-spacing:2.346667pt;}
.ws1a{word-spacing:2.368000pt;}
.ws24{word-spacing:2.432000pt;}
.ws8a{word-spacing:2.506667pt;}
.ws4d{word-spacing:2.560000pt;}
.wsd7{word-spacing:2.613333pt;}
.ws49{word-spacing:2.624000pt;}
.ws8e{word-spacing:2.688000pt;}
.ws4b{word-spacing:2.720000pt;}
.ws40{word-spacing:2.752000pt;}
.ws79{word-spacing:2.816000pt;}
.wsbc{word-spacing:2.826667pt;}
.ws6d{word-spacing:2.933333pt;}
.wsc{word-spacing:2.944000pt;}
.wsd4{word-spacing:2.986667pt;}
.wsa2{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.136000pt;}
.ws62{word-spacing:3.328000pt;}
.ws47{word-spacing:3.456000pt;}
.ws11{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.584000pt;}
.ws25{word-spacing:3.712000pt;}
.ws87{word-spacing:3.733333pt;}
.wsad{word-spacing:3.840000pt;}
.ws86{word-spacing:3.893333pt;}
.ws98{word-spacing:3.904000pt;}
.wsd3{word-spacing:3.946667pt;}
.ws71{word-spacing:4.032000pt;}
.wsda{word-spacing:4.053333pt;}
.ws5a{word-spacing:4.096000pt;}
.wsa5{word-spacing:4.106667pt;}
.wsb{word-spacing:4.160000pt;}
.wsd0{word-spacing:4.213333pt;}
.ws2d{word-spacing:4.352000pt;}
.ws53{word-spacing:4.373333pt;}
.ws15{word-spacing:4.416000pt;}
.wsb3{word-spacing:4.544000pt;}
.wsb2{word-spacing:4.608000pt;}
.ws73{word-spacing:4.640000pt;}
.wse2{word-spacing:4.693333pt;}
.wsa{word-spacing:4.736000pt;}
.ws27{word-spacing:4.746667pt;}
.wsf4{word-spacing:4.800000pt;}
.wsca{word-spacing:4.864000pt;}
.wsa4{word-spacing:4.906667pt;}
.wse0{word-spacing:4.928000pt;}
.ws92{word-spacing:4.992000pt;}
.ws5f{word-spacing:5.056000pt;}
.ws97{word-spacing:5.120000pt;}
.wsf8{word-spacing:5.184000pt;}
.ws8c{word-spacing:5.333333pt;}
.ws88{word-spacing:5.386667pt;}
.wsdf{word-spacing:5.440000pt;}
.ws9{word-spacing:5.504000pt;}
.wsc1{word-spacing:5.568000pt;}
.wsd8{word-spacing:5.600000pt;}
.ws51{word-spacing:5.653333pt;}
.wsa7{word-spacing:5.760000pt;}
.ws50{word-spacing:5.866667pt;}
.wsb9{word-spacing:5.920000pt;}
.ws85{word-spacing:6.026667pt;}
.ws7a{word-spacing:6.080000pt;}
.ws23{word-spacing:6.144000pt;}
.wscd{word-spacing:6.336000pt;}
.wsdb{word-spacing:6.346667pt;}
.ws4a{word-spacing:6.400000pt;}
.wsf5{word-spacing:6.464000pt;}
.ws99{word-spacing:6.656000pt;}
.ws7b{word-spacing:6.720000pt;}
.ws78{word-spacing:6.976000pt;}
.wsd2{word-spacing:6.986667pt;}
.wsa8{word-spacing:7.104000pt;}
.wsb5{word-spacing:7.200000pt;}
.ws83{word-spacing:7.232000pt;}
.ws19{word-spacing:7.296000pt;}
.ws61{word-spacing:7.424000pt;}
.ws9a{word-spacing:7.488000pt;}
.ws63{word-spacing:7.520000pt;}
.wsd{word-spacing:7.552000pt;}
.ws3d{word-spacing:7.573333pt;}
.ws7f{word-spacing:7.680000pt;}
.wsee{word-spacing:7.744000pt;}
.wsf6{word-spacing:7.808000pt;}
.wsd6{word-spacing:7.936000pt;}
.wsd9{word-spacing:7.946667pt;}
.ws48{word-spacing:8.000000pt;}
.ws77{word-spacing:8.064000pt;}
.wsc8{word-spacing:8.192000pt;}
.ws17{word-spacing:8.384000pt;}
.wsc9{word-spacing:8.576000pt;}
.wsc6{word-spacing:8.640000pt;}
.ws68{word-spacing:8.704000pt;}
.ws72{word-spacing:8.768000pt;}
.wsf0{word-spacing:8.896000pt;}
.ws81{word-spacing:9.024000pt;}
.ws18{word-spacing:9.216000pt;}
.ws64{word-spacing:9.280000pt;}
.ws7e{word-spacing:9.344000pt;}
.wsa9{word-spacing:9.408000pt;}
.ws82{word-spacing:9.472000pt;}
.ws5e{word-spacing:9.536000pt;}
.ws37{word-spacing:9.600000pt;}
.ws8{word-spacing:9.792000pt;}
.wsd1{word-spacing:9.813333pt;}
.wsf2{word-spacing:9.920000pt;}
.ws5b{word-spacing:10.176000pt;}
.wsec{word-spacing:10.304000pt;}
.ws5{word-spacing:10.496000pt;}
.ws3c{word-spacing:10.666667pt;}
.ws60{word-spacing:10.944000pt;}
.wsf7{word-spacing:11.072000pt;}
.wsfe{word-spacing:11.584000pt;}
.wsde{word-spacing:11.648000pt;}
.ws94{word-spacing:11.712000pt;}
.ws2f{word-spacing:11.904000pt;}
.wscc{word-spacing:11.968000pt;}
.ws67{word-spacing:12.416000pt;}
.wsfa{word-spacing:12.608000pt;}
.wscf{word-spacing:13.760000pt;}
.ws22{word-spacing:15.872000pt;}
.wsf9{word-spacing:16.000000pt;}
.ws28{word-spacing:17.226667pt;}
.ws3a{word-spacing:17.728000pt;}
.wsed{word-spacing:18.752000pt;}
.ws16{word-spacing:20.800000pt;}
._0{margin-left:-8.265600pt;}
._4{margin-left:-6.938667pt;}
._11{margin-left:-5.705600pt;}
._8{margin-left:-4.666667pt;}
._3{margin-left:-3.745067pt;}
._2{margin-left:-2.392533pt;}
._6{margin-left:-1.270400pt;}
._1{width:1.113600pt;}
._c{width:2.029867pt;}
._5{width:3.020800pt;}
._e{width:3.941333pt;}
._d{width:4.981333pt;}
._f{width:6.748800pt;}
._a{width:8.246400pt;}
._9{width:9.229867pt;}
._10{width:10.661333pt;}
._b{width:11.718400pt;}
._7{width:12.857600pt;}
._13{width:14.528000pt;}
._12{width:23.603200pt;}
.fs4{font-size:31.093333pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:49.749333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:94.488133pt;}
.y20{bottom:94.488267pt;}
.yd8{bottom:98.928267pt;}
.y1cc{bottom:104.937733pt;}
.y6b{bottom:110.488133pt;}
.y1f{bottom:110.488267pt;}
.y47{bottom:114.928267pt;}
.y46{bottom:126.488133pt;}
.y1cb{bottom:128.937733pt;}
.y1e{bottom:130.928267pt;}
.y113{bottom:137.862267pt;}
.y45{bottom:142.488133pt;}
.y1d{bottom:142.488267pt;}
.y1ad{bottom:143.604400pt;}
.y173{bottom:145.440400pt;}
.yb5{bottom:146.928267pt;}
.y1bd{bottom:147.604400pt;}
.y1ca{bottom:152.937733pt;}
.y6a{bottom:158.488133pt;}
.y112{bottom:161.862267pt;}
.y1c{bottom:162.928267pt;}
.y1ac{bottom:167.604400pt;}
.yb4{bottom:168.937733pt;}
.y172{bottom:169.440400pt;}
.y1bc{bottom:171.604400pt;}
.yd7{bottom:174.488133pt;}
.y1c9{bottom:176.937733pt;}
.y69{bottom:178.928267pt;}
.y44{bottom:180.573200pt;}
.y111{bottom:185.862267pt;}
.yb3{bottom:190.271067pt;}
.y90{bottom:190.488133pt;}
.y1ab{bottom:191.604400pt;}
.y1b{bottom:191.906533pt;}
.y171{bottom:193.440400pt;}
.y132{bottom:194.271067pt;}
.yd6{bottom:194.928267pt;}
.y68{bottom:200.922133pt;}
.y1c8{bottom:200.937733pt;}
.y43{bottom:204.573200pt;}
.y8f{bottom:206.488133pt;}
.y110{bottom:209.862267pt;}
.yb2{bottom:211.604400pt;}
.y131{bottom:216.937733pt;}
.y170{bottom:217.440400pt;}
.y1bb{bottom:219.604400pt;}
.yd5{bottom:222.488133pt;}
.y67{bottom:223.588800pt;}
.y1c7{bottom:224.937733pt;}
.y8e{bottom:226.928267pt;}
.y42{bottom:228.573200pt;}
.y190{bottom:230.937733pt;}
.y10f{bottom:233.862267pt;}
.yb1{bottom:234.271067pt;}
.y8d{bottom:238.488133pt;}
.y130{bottom:239.604400pt;}
.y1a{bottom:239.906533pt;}
.y16f{bottom:241.440400pt;}
.yd4{bottom:242.928267pt;}
.y66{bottom:246.255467pt;}
.y1c6{bottom:248.937733pt;}
.y41{bottom:252.573200pt;}
.y8c{bottom:254.488133pt;}
.y1aa{bottom:255.604400pt;}
.y18f{bottom:256.271067pt;}
.yb0{bottom:256.937733pt;}
.y10e{bottom:257.862267pt;}
.y12f{bottom:262.271067pt;}
.y19{bottom:263.906533pt;}
.y16e{bottom:265.440400pt;}
.yd3{bottom:268.422133pt;}
.y65{bottom:268.922133pt;}
.yee{bottom:272.937733pt;}
.y8b{bottom:274.928267pt;}
.y1a9{bottom:275.604400pt;}
.y40{bottom:276.573200pt;}
.yaf{bottom:279.604400pt;}
.y18e{bottom:280.271067pt;}
.y10d{bottom:281.862267pt;}
.y12e{bottom:284.937733pt;}
.y150{bottom:286.488133pt;}
.y18{bottom:286.573200pt;}
.yd2{bottom:292.422133pt;}
.y64{bottom:292.922133pt;}
.yed{bottom:294.937733pt;}
.y1a8{bottom:295.604400pt;}
.y1c5{bottom:296.937733pt;}
.y8a{bottom:298.271067pt;}
.y3f{bottom:300.573200pt;}
.yae{bottom:302.271067pt;}
.y14f{bottom:302.488133pt;}
.y18d{bottom:304.271067pt;}
.y10c{bottom:305.862267pt;}
.y17{bottom:309.239867pt;}
.y12d{bottom:310.271067pt;}
.yec{bottom:314.937733pt;}
.y1a7{bottom:315.604400pt;}
.yd1{bottom:316.422133pt;}
.y63{bottom:316.922133pt;}
.y16d{bottom:317.440400pt;}
.y1ba{bottom:319.604400pt;}
.y1c4{bottom:320.937733pt;}
.y89{bottom:322.271067pt;}
.y14e{bottom:322.928267pt;}
.y3e{bottom:324.573200pt;}
.yad{bottom:324.937733pt;}
.y18c{bottom:328.271067pt;}
.y10b{bottom:329.862267pt;}
.y16{bottom:331.906533pt;}
.yeb{bottom:334.937733pt;}
.y12c{bottom:335.604400pt;}
.y1b9{bottom:342.271067pt;}
.y1c3{bottom:344.937733pt;}
.y88{bottom:346.271067pt;}
.yac{bottom:347.604400pt;}
.y14d{bottom:348.271067pt;}
.y3d{bottom:348.573200pt;}
.y18b{bottom:352.271067pt;}
.y10a{bottom:353.862267pt;}
.y15{bottom:354.573200pt;}
.yea{bottom:354.937733pt;}
.y1a6{bottom:355.604400pt;}
.y12b{bottom:360.937733pt;}
.y62{bottom:364.922133pt;}
.y1b8{bottom:364.937733pt;}
.y14c{bottom:368.271067pt;}
.y1c2{bottom:368.937733pt;}
.yab{bottom:370.271067pt;}
.y3c{bottom:372.573200pt;}
.ye9{bottom:374.937733pt;}
.y18a{bottom:376.271067pt;}
.y109{bottom:377.862267pt;}
.y12a{bottom:386.271067pt;}
.y1b7{bottom:387.604400pt;}
.y14b{bottom:388.271067pt;}
.yd0{bottom:388.422133pt;}
.yaa{bottom:392.937733pt;}
.y16c{bottom:393.440400pt;}
.y87{bottom:394.271067pt;}
.y3b{bottom:396.573200pt;}
.y14{bottom:399.906533pt;}
.y189{bottom:400.271067pt;}
.y1a5{bottom:401.604400pt;}
.y108{bottom:401.862267pt;}
.y14a{bottom:408.271067pt;}
.ycf{bottom:408.422133pt;}
.y1b6{bottom:410.271067pt;}
.y129{bottom:411.604400pt;}
.y86{bottom:414.271067pt;}
.ya9{bottom:415.604400pt;}
.y16b{bottom:416.107067pt;}
.y1c1{bottom:416.937733pt;}
.y3a{bottom:419.239867pt;}
.ye8{bottom:420.937733pt;}
.y188{bottom:424.271067pt;}
.y1a4{bottom:425.604400pt;}
.y107{bottom:425.862267pt;}
.yce{bottom:428.422133pt;}
.y1b5{bottom:432.937733pt;}
.y85{bottom:434.271067pt;}
.y128{bottom:436.937733pt;}
.ya8{bottom:438.271067pt;}
.y16a{bottom:438.773733pt;}
.y61{bottom:440.922133pt;}
.y1c0{bottom:440.937733pt;}
.y39{bottom:441.906533pt;}
.ye7{bottom:444.937733pt;}
.y13{bottom:445.239867pt;}
.ycd{bottom:448.422133pt;}
.y1a3{bottom:449.604400pt;}
.y106{bottom:449.862267pt;}
.y149{bottom:452.937733pt;}
.y84{bottom:454.271067pt;}
.y1b4{bottom:455.604400pt;}
.ya7{bottom:460.937733pt;}
.y169{bottom:461.440400pt;}
.y38{bottom:464.573200pt;}
.y60{bottom:464.922133pt;}
.y1bf{bottom:464.937733pt;}
.ye6{bottom:467.604400pt;}
.y12{bottom:467.906533pt;}
.ycc{bottom:468.422133pt;}
.y187{bottom:472.271067pt;}
.y1a2{bottom:473.604400pt;}
.y105{bottom:473.862267pt;}
.y83{bottom:474.271067pt;}
.y148{bottom:478.271067pt;}
.ya6{bottom:483.604400pt;}
.y168{bottom:484.107067pt;}
.y37{bottom:487.239867pt;}
.y127{bottom:487.604400pt;}
.ycb{bottom:488.422133pt;}
.y5f{bottom:488.922133pt;}
.y1be{bottom:488.937733pt;}
.ye5{bottom:490.271067pt;}
.y11{bottom:490.573200pt;}
.y186{bottom:492.271067pt;}
.y82{bottom:494.271067pt;}
.y1a1{bottom:497.604400pt;}
.y104{bottom:497.862267pt;}
.y147{bottom:500.937733pt;}
.ya5{bottom:506.271067pt;}
.y167{bottom:506.773733pt;}
.yca{bottom:508.422133pt;}
.y36{bottom:511.239867pt;}
.y185{bottom:512.271067pt;}
.y5e{bottom:512.922133pt;}
.ye4{bottom:512.937733pt;}
.y10{bottom:513.239867pt;}
.y81{bottom:514.271067pt;}
.y1a0{bottom:521.604400pt;}
.y103{bottom:521.862267pt;}
.y146{bottom:523.604400pt;}
.yc9{bottom:528.422133pt;}
.ya4{bottom:528.937733pt;}
.y166{bottom:529.440400pt;}
.y184{bottom:532.271067pt;}
.y126{bottom:532.937733pt;}
.y35{bottom:535.239867pt;}
.yf{bottom:535.906533pt;}
.y5d{bottom:536.922133pt;}
.ye3{bottom:536.937733pt;}
.y19f{bottom:545.604400pt;}
.y102{bottom:545.862267pt;}
.y145{bottom:546.271067pt;}
.ya3{bottom:551.604400pt;}
.y165{bottom:552.107067pt;}
.y183{bottom:552.271067pt;}
.y125{bottom:552.937733pt;}
.ye{bottom:558.573200pt;}
.y34{bottom:559.239867pt;}
.y5c{bottom:560.922133pt;}
.ye2{bottom:560.937733pt;}
.y80{bottom:562.271067pt;}
.y144{bottom:568.937733pt;}
.y19e{bottom:569.604400pt;}
.y101{bottom:569.862267pt;}
.y182{bottom:572.271067pt;}
.yc8{bottom:572.422133pt;}
.y124{bottom:572.937733pt;}
.ya2{bottom:574.271067pt;}
.y164{bottom:574.773733pt;}
.yd{bottom:581.239867pt;}
.y33{bottom:583.239867pt;}
.y5b{bottom:584.922133pt;}
.ye1{bottom:584.937733pt;}
.y7f{bottom:586.271067pt;}
.y143{bottom:591.604400pt;}
.y181{bottom:592.271067pt;}
.y123{bottom:592.937733pt;}
.y19d{bottom:593.604400pt;}
.y100{bottom:593.862267pt;}
.ya1{bottom:596.937733pt;}
.y163{bottom:597.440400pt;}
.yc7{bottom:597.755467pt;}
.yc{bottom:603.906533pt;}
.y32{bottom:607.239867pt;}
.y5a{bottom:608.922133pt;}
.ye0{bottom:608.937733pt;}
.y7e{bottom:610.271067pt;}
.y180{bottom:612.271067pt;}
.y122{bottom:612.937733pt;}
.y142{bottom:614.271067pt;}
.y19c{bottom:617.604400pt;}
.yff{bottom:617.862267pt;}
.ya0{bottom:619.604400pt;}
.y162{bottom:620.107067pt;}
.yc6{bottom:623.088800pt;}
.yb{bottom:626.573200pt;}
.y31{bottom:631.239867pt;}
.y17f{bottom:632.271067pt;}
.y59{bottom:632.922133pt;}
.ydf{bottom:632.937733pt;}
.y7d{bottom:634.271067pt;}
.y141{bottom:636.937733pt;}
.y19b{bottom:641.604400pt;}
.yfe{bottom:641.862267pt;}
.y9f{bottom:642.271067pt;}
.y161{bottom:642.773733pt;}
.yc5{bottom:648.422133pt;}
.y17e{bottom:652.271067pt;}
.y121{bottom:652.937733pt;}
.y30{bottom:655.239867pt;}
.y58{bottom:656.922133pt;}
.yde{bottom:656.937733pt;}
.y7c{bottom:658.271067pt;}
.y140{bottom:662.271067pt;}
.y9e{bottom:664.937733pt;}
.y160{bottom:665.440400pt;}
.yfd{bottom:665.862267pt;}
.y120{bottom:672.937733pt;}
.yc4{bottom:673.755467pt;}
.y2f{bottom:679.239867pt;}
.y57{bottom:680.922133pt;}
.ydd{bottom:680.937733pt;}
.y7b{bottom:682.271067pt;}
.y1b3{bottom:683.604400pt;}
.y19a{bottom:685.604400pt;}
.y13f{bottom:686.271067pt;}
.y9d{bottom:687.604400pt;}
.y15f{bottom:688.107067pt;}
.yfc{bottom:689.862267pt;}
.y11f{bottom:692.937733pt;}
.ya{bottom:697.239867pt;}
.y17d{bottom:698.271067pt;}
.yc3{bottom:699.088800pt;}
.y1b2{bottom:700.937733pt;}
.y2e{bottom:703.239867pt;}
.y56{bottom:704.922133pt;}
.ydc{bottom:704.937733pt;}
.y199{bottom:705.604400pt;}
.y7a{bottom:706.271067pt;}
.y9c{bottom:710.271067pt;}
.y15e{bottom:710.773733pt;}
.yfb{bottom:713.862267pt;}
.y1b1{bottom:718.271067pt;}
.y9{bottom:721.239867pt;}
.y17c{bottom:722.271067pt;}
.yc2{bottom:724.422133pt;}
.y198{bottom:725.604400pt;}
.y2d{bottom:727.239867pt;}
.y55{bottom:728.922133pt;}
.ydb{bottom:728.937733pt;}
.y79{bottom:730.271067pt;}
.y9b{bottom:732.937733pt;}
.y15d{bottom:733.440400pt;}
.y13e{bottom:734.271067pt;}
.y1b0{bottom:735.604400pt;}
.yfa{bottom:737.862267pt;}
.y11e{bottom:738.271067pt;}
.y17b{bottom:744.937733pt;}
.y8{bottom:745.239867pt;}
.y197{bottom:745.604400pt;}
.yc1{bottom:749.755467pt;}
.y2c{bottom:751.239867pt;}
.y54{bottom:752.922133pt;}
.yda{bottom:752.937733pt;}
.y78{bottom:754.271067pt;}
.y9a{bottom:755.604400pt;}
.y15c{bottom:756.107067pt;}
.y13d{bottom:758.271067pt;}
.yf9{bottom:761.862267pt;}
.y11d{bottom:763.604400pt;}
.y196{bottom:765.604400pt;}
.y17a{bottom:767.604400pt;}
.y7{bottom:769.239867pt;}
.y1af{bottom:770.271067pt;}
.yc0{bottom:775.088800pt;}
.y2b{bottom:775.239867pt;}
.y53{bottom:776.922133pt;}
.yd9{bottom:776.937733pt;}
.y77{bottom:778.271067pt;}
.y15b{bottom:778.773733pt;}
.y13c{bottom:782.271067pt;}
.y195{bottom:785.604400pt;}
.yf8{bottom:785.862267pt;}
.y11c{bottom:788.937733pt;}
.y179{bottom:790.271067pt;}
.y2a{bottom:799.239867pt;}
.ybf{bottom:800.422133pt;}
.y52{bottom:800.922133pt;}
.y99{bottom:800.937733pt;}
.y15a{bottom:801.440400pt;}
.y76{bottom:802.271067pt;}
.y194{bottom:805.604400pt;}
.y13b{bottom:806.271067pt;}
.yf7{bottom:809.862267pt;}
.y1ae{bottom:811.604400pt;}
.y178{bottom:812.937733pt;}
.y11b{bottom:814.271067pt;}
.y6{bottom:817.239867pt;}
.y29{bottom:823.239867pt;}
.y159{bottom:824.107067pt;}
.y51{bottom:824.922133pt;}
.y98{bottom:824.937733pt;}
.y193{bottom:825.604400pt;}
.ybe{bottom:825.755467pt;}
.y75{bottom:826.271067pt;}
.y13a{bottom:830.271067pt;}
.yf6{bottom:833.862267pt;}
.y177{bottom:835.604400pt;}
.y11a{bottom:839.604400pt;}
.y5{bottom:845.239867pt;}
.y158{bottom:846.773733pt;}
.y28{bottom:847.239867pt;}
.y192{bottom:847.604400pt;}
.y50{bottom:848.922133pt;}
.y97{bottom:848.937733pt;}
.y74{bottom:850.271067pt;}
.ybd{bottom:851.088800pt;}
.y139{bottom:854.271067pt;}
.yf5{bottom:857.862267pt;}
.y176{bottom:858.271067pt;}
.y119{bottom:864.937733pt;}
.y157{bottom:869.440400pt;}
.y191{bottom:869.604400pt;}
.y27{bottom:871.239867pt;}
.y4f{bottom:872.922133pt;}
.y96{bottom:872.937733pt;}
.y4{bottom:873.239867pt;}
.ybc{bottom:873.755467pt;}
.y73{bottom:874.271067pt;}
.y138{bottom:878.271067pt;}
.y175{bottom:880.937733pt;}
.yf4{bottom:881.862267pt;}
.y118{bottom:890.271067pt;}
.y156{bottom:892.107067pt;}
.y26{bottom:895.239867pt;}
.ybb{bottom:896.422133pt;}
.y4e{bottom:896.922133pt;}
.y95{bottom:896.937733pt;}
.y72{bottom:898.271067pt;}
.y137{bottom:902.271067pt;}
.y174{bottom:903.604400pt;}
.yf3{bottom:905.862267pt;}
.y117{bottom:915.604400pt;}
.y25{bottom:919.239867pt;}
.yba{bottom:920.422133pt;}
.y4d{bottom:920.922133pt;}
.y94{bottom:920.937733pt;}
.y71{bottom:922.271067pt;}
.y136{bottom:926.271067pt;}
.y155{bottom:938.773733pt;}
.y116{bottom:940.937733pt;}
.y24{bottom:943.239867pt;}
.yb9{bottom:944.422133pt;}
.y4c{bottom:944.922133pt;}
.y93{bottom:944.937733pt;}
.y70{bottom:946.271067pt;}
.y135{bottom:948.937733pt;}
.y3{bottom:949.239867pt;}
.yf2{bottom:953.862267pt;}
.y154{bottom:958.773733pt;}
.y115{bottom:966.271067pt;}
.y23{bottom:967.239867pt;}
.yb8{bottom:968.422133pt;}
.y4b{bottom:968.922133pt;}
.y92{bottom:968.937733pt;}
.y6f{bottom:970.271067pt;}
.y134{bottom:971.604400pt;}
.yf1{bottom:973.862267pt;}
.y153{bottom:978.773733pt;}
.y2{bottom:981.239867pt;}
.y114{bottom:991.604400pt;}
.y4a{bottom:992.922133pt;}
.y91{bottom:992.937733pt;}
.y6e{bottom:994.271067pt;}
.yf0{bottom:995.862267pt;}
.y152{bottom:998.773733pt;}
.y1{bottom:1013.239867pt;}
.yb7{bottom:1015.088800pt;}
.y49{bottom:1016.922133pt;}
.y6d{bottom:1016.937733pt;}
.yef{bottom:1017.862267pt;}
.y151{bottom:1018.773733pt;}
.y21{bottom:1048.476800pt;}
.y133{bottom:1048.941733pt;}
.y22{bottom:1050.838000pt;}
.y6c{bottom:1050.953467pt;}
.yb6{bottom:1051.376133pt;}
.h6{height:27.282578pt;}
.hc{height:29.036342pt;}
.h8{height:29.036875pt;}
.h9{height:37.057292pt;}
.h5{height:44.468750pt;}
.hb{height:45.376000pt;}
.h7{height:46.796875pt;}
.he{height:51.476562pt;}
.ha{height:52.938667pt;}
.hd{height:54.051094pt;}
.h4{height:56.156250pt;}
.h3{height:65.515625pt;}
.h2{height:74.875000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.385867pt;}
.xe{left:115.442000pt;}
.xb{left:119.922000pt;}
.xa{left:151.181067pt;}
.xd{left:170.078667pt;}
.x3{left:200.824000pt;}
.x8{left:251.143067pt;}
.x7{left:379.525867pt;}
.x5{left:398.213333pt;}
.x4{left:407.661333pt;}
.x6{left:412.416533pt;}
.x2{left:431.960800pt;}
.xc{left:651.379067pt;}
.x9{left:655.858933pt;}
}




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