
    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_417fa19fbc568c2eebe70289.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_34f3055373391f787a8edff8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_04152f64751059db7b79a226.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8805787b344993b085276ffe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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_a31c4627ca30384822cb8642.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_5981473fad0982f39dca9574.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_300d3a30059d38853867b108.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_464831b256df27d117c91696.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_375c53bb4105c5697cc2d317.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_417fa19fbc568c2eebe70289.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_c2890eac605593be6a1bd166.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765000;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_417fa19fbc568c2eebe70289.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ca3bbb6993ed37f477ff8182.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919434;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.491400px;}
.ls11{letter-spacing:-2.736000px;}
.ls14{letter-spacing:-2.160000px;}
.ls13{letter-spacing:-1.800000px;}
.ls12{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.224000px;}
.ls3{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.691800px;}
.ls9{letter-spacing:0.705600px;}
.lsa{letter-spacing:0.706200px;}
.lsc{letter-spacing:0.717000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:0.727200px;}
.ls5{letter-spacing:0.756000px;}
.ls0{letter-spacing:2.520000px;}
.ls1{letter-spacing:3.360000px;}
.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;}
}
.ws2{word-spacing:-27.360000px;}
.wsb2{word-spacing:-20.520000px;}
.ws5b{word-spacing:-18.720000px;}
.ws103{word-spacing:-18.360000px;}
.wsb4{word-spacing:-18.000000px;}
.ws109{word-spacing:-16.776000px;}
.wsf7{word-spacing:-16.560000px;}
.wsb3{word-spacing:-16.500000px;}
.ws107{word-spacing:-16.200000px;}
.ws108{word-spacing:-15.840000px;}
.wsf6{word-spacing:-15.264000px;}
.wsa2{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.000000px;}
.wsef{word-spacing:-9.864000px;}
.wsba{word-spacing:-9.000000px;}
.ws10e{word-spacing:-7.128000px;}
.ws42{word-spacing:-6.336000px;}
.ws7f{word-spacing:-6.048000px;}
.ws37{word-spacing:-5.976000px;}
.ws43{word-spacing:-5.760000px;}
.ws4{word-spacing:-5.256000px;}
.ws41{word-spacing:-4.968000px;}
.ws1c{word-spacing:-4.896000px;}
.ws2d{word-spacing:-4.824000px;}
.wsf8{word-spacing:-4.536000px;}
.ws9b{word-spacing:-4.392000px;}
.ws33{word-spacing:-4.248000px;}
.ws23{word-spacing:-4.176000px;}
.wsa6{word-spacing:-4.104000px;}
.ws10c{word-spacing:-4.032000px;}
.wsd0{word-spacing:-3.960000px;}
.ws8a{word-spacing:-3.816000px;}
.wsbe{word-spacing:-3.672000px;}
.ws19{word-spacing:-3.540000px;}
.ws32{word-spacing:-3.384000px;}
.ws6{word-spacing:-3.360000px;}
.wsc0{word-spacing:-3.240000px;}
.ws75{word-spacing:-3.168000px;}
.wse1{word-spacing:-3.096000px;}
.ws10b{word-spacing:-2.952000px;}
.wsa7{word-spacing:-2.808000px;}
.ws72{word-spacing:-2.664000px;}
.ws5{word-spacing:-2.640000px;}
.wscf{word-spacing:-2.592000px;}
.ws8{word-spacing:-2.520000px;}
.ws51{word-spacing:-2.448000px;}
.wsf0{word-spacing:-2.376000px;}
.ws1d{word-spacing:-2.304000px;}
.ws10{word-spacing:-2.280000px;}
.ws9d{word-spacing:-2.220000px;}
.ws1e{word-spacing:-2.160000px;}
.ws11{word-spacing:-1.980000px;}
.ws46{word-spacing:-1.944000px;}
.wsfc{word-spacing:-1.800000px;}
.wsaf{word-spacing:-1.656000px;}
.ws7{word-spacing:-1.632000px;}
.ws13{word-spacing:-1.620000px;}
.ws91{word-spacing:-1.584000px;}
.ws30{word-spacing:-1.440000px;}
.wse5{word-spacing:-1.224000px;}
.wsb1{word-spacing:-1.152000px;}
.wsf{word-spacing:-0.960000px;}
.ws54{word-spacing:-0.936000px;}
.ws85{word-spacing:-0.792000px;}
.ws59{word-spacing:-0.720000px;}
.ws4a{word-spacing:-0.648000px;}
.ws9e{word-spacing:-0.576000px;}
.wsae{word-spacing:-0.504000px;}
.wsf3{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.378000px;}
.wseb{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.180000px;}
.ws8d{word-spacing:-0.144000px;}
.wsb7{word-spacing:-0.072000px;}
.ws14{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws10a{word-spacing:0.144000px;}
.ws56{word-spacing:0.216000px;}
.ws67{word-spacing:0.288000px;}
.ws2a{word-spacing:0.360000px;}
.ws6b{word-spacing:0.432000px;}
.ws34{word-spacing:0.576000px;}
.wsea{word-spacing:0.648000px;}
.ws2f{word-spacing:0.720000px;}
.ws5f{word-spacing:0.792000px;}
.wsb6{word-spacing:0.864000px;}
.ws1f{word-spacing:0.936000px;}
.ws20{word-spacing:1.008000px;}
.ws45{word-spacing:1.080000px;}
.ws106{word-spacing:1.152000px;}
.ws24{word-spacing:1.224000px;}
.wsc6{word-spacing:1.296000px;}
.ws3d{word-spacing:1.368000px;}
.ws31{word-spacing:1.440000px;}
.ws2b{word-spacing:1.512000px;}
.ws78{word-spacing:1.728000px;}
.wsa8{word-spacing:1.800000px;}
.ws18{word-spacing:1.860000px;}
.ws64{word-spacing:1.872000px;}
.ws9{word-spacing:1.920000px;}
.wsbd{word-spacing:2.088000px;}
.ws94{word-spacing:2.160000px;}
.wsd1{word-spacing:2.232000px;}
.wsa9{word-spacing:2.304000px;}
.wsc4{word-spacing:2.376000px;}
.ws63{word-spacing:2.448000px;}
.ws65{word-spacing:2.520000px;}
.ws73{word-spacing:2.592000px;}
.ws6d{word-spacing:2.664000px;}
.ws1a{word-spacing:2.736000px;}
.ws87{word-spacing:2.880000px;}
.ws95{word-spacing:3.024000px;}
.wsf2{word-spacing:3.240000px;}
.wsd{word-spacing:3.420000px;}
.ws9f{word-spacing:3.528000px;}
.wsce{word-spacing:3.600000px;}
.wsc{word-spacing:3.660000px;}
.ws36{word-spacing:3.672000px;}
.wsff{word-spacing:3.744000px;}
.wsb8{word-spacing:3.816000px;}
.wsd6{word-spacing:3.888000px;}
.ws7b{word-spacing:3.960000px;}
.ws79{word-spacing:4.032000px;}
.wsc2{word-spacing:4.104000px;}
.wsd5{word-spacing:4.176000px;}
.ws44{word-spacing:4.248000px;}
.ws53{word-spacing:4.320000px;}
.ws8b{word-spacing:4.392000px;}
.wsb9{word-spacing:4.464000px;}
.ws76{word-spacing:4.536000px;}
.ws4c{word-spacing:4.608000px;}
.ws28{word-spacing:4.680000px;}
.wse2{word-spacing:4.752000px;}
.ws98{word-spacing:4.896000px;}
.wsda{word-spacing:4.968000px;}
.wsfe{word-spacing:5.040000px;}
.wse{word-spacing:5.100000px;}
.wse8{word-spacing:5.112000px;}
.wsb{word-spacing:5.160000px;}
.wsd9{word-spacing:5.184000px;}
.ws10f{word-spacing:5.256000px;}
.ws15{word-spacing:5.280000px;}
.wsac{word-spacing:5.400000px;}
.ws81{word-spacing:5.544000px;}
.wsf5{word-spacing:5.616000px;}
.ws77{word-spacing:5.688000px;}
.wsc3{word-spacing:5.760000px;}
.ws4e{word-spacing:5.832000px;}
.ws58{word-spacing:5.904000px;}
.ws12{word-spacing:5.940000px;}
.ws3a{word-spacing:5.976000px;}
.ws26{word-spacing:6.048000px;}
.wsbf{word-spacing:6.120000px;}
.ws6e{word-spacing:6.192000px;}
.ws70{word-spacing:6.264000px;}
.ws27{word-spacing:6.336000px;}
.ws88{word-spacing:6.480000px;}
.ws90{word-spacing:6.696000px;}
.ws1b{word-spacing:6.768000px;}
.ws8f{word-spacing:6.840000px;}
.ws55{word-spacing:6.984000px;}
.ws40{word-spacing:7.056000px;}
.wsc8{word-spacing:7.128000px;}
.ws7c{word-spacing:7.200000px;}
.ws82{word-spacing:7.272000px;}
.wsfd{word-spacing:7.344000px;}
.ws9a{word-spacing:7.416000px;}
.ws86{word-spacing:7.488000px;}
.ws38{word-spacing:7.560000px;}
.ws61{word-spacing:7.632000px;}
.wsa{word-spacing:7.680000px;}
.ws66{word-spacing:7.704000px;}
.ws4f{word-spacing:7.776000px;}
.ws16{word-spacing:7.800000px;}
.ws8c{word-spacing:7.848000px;}
.ws5e{word-spacing:7.920000px;}
.wsad{word-spacing:8.064000px;}
.ws60{word-spacing:8.280000px;}
.ws4b{word-spacing:8.424000px;}
.wsd4{word-spacing:8.496000px;}
.wsc7{word-spacing:8.568000px;}
.ws52{word-spacing:8.640000px;}
.ws100{word-spacing:8.712000px;}
.wscd{word-spacing:9.000000px;}
.ws50{word-spacing:9.072000px;}
.ws29{word-spacing:9.144000px;}
.ws48{word-spacing:9.288000px;}
.wse0{word-spacing:9.432000px;}
.ws8e{word-spacing:9.504000px;}
.ws89{word-spacing:9.576000px;}
.ws49{word-spacing:9.648000px;}
.ws6a{word-spacing:9.720000px;}
.ws9c{word-spacing:9.864000px;}
.wsa4{word-spacing:10.080000px;}
.wsaa{word-spacing:10.368000px;}
.ws6c{word-spacing:10.440000px;}
.wse6{word-spacing:10.584000px;}
.ws21{word-spacing:10.656000px;}
.wsd3{word-spacing:10.728000px;}
.wsdd{word-spacing:10.872000px;}
.ws71{word-spacing:10.944000px;}
.wsa5{word-spacing:11.016000px;}
.wse3{word-spacing:11.088000px;}
.wsdb{word-spacing:11.160000px;}
.wsbb{word-spacing:11.232000px;}
.wsa3{word-spacing:11.736000px;}
.ws92{word-spacing:11.808000px;}
.ws101{word-spacing:11.880000px;}
.wscb{word-spacing:11.952000px;}
.wsab{word-spacing:12.456000px;}
.ws84{word-spacing:12.528000px;}
.ws10d{word-spacing:12.672000px;}
.wsf9{word-spacing:12.744000px;}
.ws7e{word-spacing:13.032000px;}
.wsc5{word-spacing:13.176000px;}
.wsca{word-spacing:13.536000px;}
.wsdc{word-spacing:13.752000px;}
.ws93{word-spacing:13.824000px;}
.ws62{word-spacing:14.112000px;}
.ws69{word-spacing:14.400000px;}
.ws68{word-spacing:14.544000px;}
.ws3c{word-spacing:14.760000px;}
.wsde{word-spacing:14.832000px;}
.wse7{word-spacing:14.904000px;}
.ws96{word-spacing:14.976000px;}
.ws99{word-spacing:15.120000px;}
.wsfa{word-spacing:15.192000px;}
.wsee{word-spacing:15.264000px;}
.wse9{word-spacing:15.408000px;}
.wsb0{word-spacing:16.200000px;}
.ws22{word-spacing:16.488000px;}
.ws104{word-spacing:16.560000px;}
.ws25{word-spacing:16.632000px;}
.wsfb{word-spacing:16.704000px;}
.ws5a{word-spacing:16.776000px;}
.ws97{word-spacing:16.848000px;}
.ws74{word-spacing:16.992000px;}
.ws80{word-spacing:17.136000px;}
.wsa0{word-spacing:17.208000px;}
.wsbc{word-spacing:17.568000px;}
.ws3f{word-spacing:17.640000px;}
.wsc1{word-spacing:18.000000px;}
.ws83{word-spacing:18.144000px;}
.wsd2{word-spacing:18.360000px;}
.ws105{word-spacing:18.504000px;}
.ws102{word-spacing:18.936000px;}
.wsed{word-spacing:19.008000px;}
.wscc{word-spacing:19.152000px;}
.wsc9{word-spacing:19.440000px;}
.ws3b{word-spacing:19.800000px;}
.ws3e{word-spacing:19.872000px;}
.wsf1{word-spacing:20.160000px;}
.ws5d{word-spacing:20.304000px;}
.ws5c{word-spacing:20.448000px;}
.wsdf{word-spacing:20.664000px;}
.wsa1{word-spacing:21.816000px;}
.wsb5{word-spacing:22.464000px;}
.ws7a{word-spacing:25.272000px;}
.ws2e{word-spacing:26.136000px;}
.wsec{word-spacing:26.784000px;}
.wsf4{word-spacing:27.936000px;}
.ws6f{word-spacing:28.512000px;}
.ws57{word-spacing:30.744000px;}
.wse4{word-spacing:31.680000px;}
.ws35{word-spacing:32.040000px;}
.ws39{word-spacing:37.584000px;}
.wsd8{word-spacing:45.936000px;}
.ws7d{word-spacing:46.944000px;}
.ws47{word-spacing:49.896000px;}
.wsd7{word-spacing:96.552000px;}
._12{margin-left:-39.620400px;}
._10{margin-left:-33.007200px;}
._13{margin-left:-21.280800px;}
._14{margin-left:-18.844800px;}
._d{margin-left:-16.849200px;}
._f{margin-left:-15.841200px;}
._b{margin-left:-14.388000px;}
._6{margin-left:-13.372800px;}
._8{margin-left:-12.345600px;}
._a{margin-left:-11.097600px;}
._20{margin-left:-9.408600px;}
._15{margin-left:-8.322000px;}
._9{margin-left:-7.094400px;}
._5{margin-left:-5.366400px;}
._c{margin-left:-3.828000px;}
._4{margin-left:-2.716800px;}
._1{margin-left:-1.238400px;}
._0{width:1.609200px;}
._3{width:2.661600px;}
._11{width:4.530000px;}
._e{width:5.694000px;}
._1d{width:7.185600px;}
._18{width:9.129600px;}
._19{width:10.936800px;}
._2{width:11.995200px;}
._1c{width:13.500000px;}
._28{width:15.084000px;}
._1f{width:16.207200px;}
._17{width:19.360800px;}
._29{width:21.290400px;}
._1b{width:23.716800px;}
._16{width:25.207200px;}
._27{width:27.108000px;}
._26{width:29.224800px;}
._1e{width:30.312000px;}
._2a{width:35.078400px;}
._1a{width:36.230400px;}
._7{width:45.106800px;}
._25{width:214.219800px;}
._23{width:291.207000px;}
._24{width:296.290200px;}
._22{width:319.674600px;}
._21{width:409.563000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:82.488300px;}
.ya7{bottom:130.660350px;}
.y7e{bottom:131.803050px;}
.y51{bottom:131.807250px;}
.y11d{bottom:131.991900px;}
.y44{bottom:132.023250px;}
.y13b{bottom:132.093000px;}
.yff{bottom:132.417150px;}
.yab{bottom:133.551000px;}
.y140{bottom:134.803050px;}
.ya6{bottom:154.660350px;}
.y50{bottom:155.801250px;}
.y7d{bottom:155.803050px;}
.y11c{bottom:155.991900px;}
.y43{bottom:156.017250px;}
.y13a{bottom:156.093000px;}
.y120{bottom:156.180900px;}
.yfe{bottom:156.417150px;}
.yaa{bottom:157.551000px;}
.y13f{bottom:158.803050px;}
.yb2{bottom:161.047050px;}
.ya5{bottom:178.660350px;}
.y4f{bottom:179.795250px;}
.y7c{bottom:179.803050px;}
.y11b{bottom:179.991900px;}
.y42{bottom:180.011250px;}
.y139{bottom:180.093000px;}
.y11f{bottom:180.180900px;}
.yfd{bottom:180.417150px;}
.yb1{bottom:180.547050px;}
.ya9{bottom:181.551000px;}
.y13e{bottom:182.803050px;}
.y4e{bottom:203.789250px;}
.y7b{bottom:203.803050px;}
.y11a{bottom:203.991900px;}
.y41{bottom:204.005250px;}
.y138{bottom:204.093000px;}
.y11e{bottom:204.180900px;}
.yb0{bottom:204.299100px;}
.yfc{bottom:204.417150px;}
.y13d{bottom:206.803050px;}
.yde{bottom:211.002450px;}
.yaf{bottom:223.799100px;}
.ya4{bottom:226.471500px;}
.y4d{bottom:227.783250px;}
.y7a{bottom:227.803050px;}
.y119{bottom:227.991900px;}
.y40{bottom:227.999250px;}
.ya8{bottom:228.051000px;}
.y137{bottom:228.093000px;}
.yfb{bottom:228.417150px;}
.y13c{bottom:230.803050px;}
.ydd{bottom:235.002450px;}
.yae{bottom:247.551150px;}
.ya3{bottom:250.471500px;}
.y4c{bottom:251.777250px;}
.y79{bottom:251.803050px;}
.y118{bottom:251.991900px;}
.y3f{bottom:251.993250px;}
.y136{bottom:252.093000px;}
.yfa{bottom:252.417150px;}
.ydc{bottom:259.002450px;}
.yad{bottom:267.051150px;}
.ya2{bottom:274.471500px;}
.y4b{bottom:275.771250px;}
.y78{bottom:275.803050px;}
.y3e{bottom:275.987250px;}
.y117{bottom:275.991900px;}
.y135{bottom:276.093000px;}
.yf9{bottom:276.417150px;}
.ydb{bottom:283.002450px;}
.yac{bottom:290.803050px;}
.ya1{bottom:298.471500px;}
.y4a{bottom:299.765250px;}
.y77{bottom:299.803050px;}
.y3d{bottom:299.981250px;}
.y116{bottom:299.991900px;}
.y134{bottom:300.093000px;}
.yf8{bottom:300.417150px;}
.yda{bottom:307.002450px;}
.ya0{bottom:322.471500px;}
.y49{bottom:323.759250px;}
.y76{bottom:323.803050px;}
.y3c{bottom:323.975250px;}
.y115{bottom:323.991900px;}
.y133{bottom:324.093000px;}
.yf7{bottom:324.417150px;}
.yd9{bottom:331.002450px;}
.y9f{bottom:346.471500px;}
.y48{bottom:347.753250px;}
.y75{bottom:347.803050px;}
.y3b{bottom:347.969250px;}
.y114{bottom:347.991900px;}
.y132{bottom:348.093000px;}
.yf6{bottom:348.417150px;}
.yd8{bottom:355.002450px;}
.y9e{bottom:370.471500px;}
.y47{bottom:371.747250px;}
.y74{bottom:371.803050px;}
.y3a{bottom:371.963250px;}
.y113{bottom:371.991900px;}
.y131{bottom:372.093000px;}
.yf5{bottom:372.417150px;}
.yd7{bottom:379.002450px;}
.y9d{bottom:394.471500px;}
.y46{bottom:395.741250px;}
.y73{bottom:395.803050px;}
.y39{bottom:395.957250px;}
.y112{bottom:395.991900px;}
.y130{bottom:396.093000px;}
.yf4{bottom:396.417150px;}
.yd6{bottom:403.002450px;}
.y9c{bottom:418.471500px;}
.y45{bottom:419.735250px;}
.y72{bottom:419.803050px;}
.y38{bottom:419.951250px;}
.y111{bottom:419.991900px;}
.y12f{bottom:420.093000px;}
.yf3{bottom:420.417150px;}
.yd5{bottom:427.002450px;}
.y9b{bottom:442.471500px;}
.y71{bottom:443.803050px;}
.y110{bottom:443.991900px;}
.y12e{bottom:444.093000px;}
.yf2{bottom:444.417150px;}
.yd4{bottom:451.002450px;}
.y37{bottom:463.980150px;}
.y9a{bottom:466.471500px;}
.y70{bottom:467.803050px;}
.y10f{bottom:467.991900px;}
.y12d{bottom:468.093000px;}
.yf1{bottom:468.417150px;}
.yd3{bottom:475.002450px;}
.y36{bottom:481.980150px;}
.y99{bottom:490.471500px;}
.y6f{bottom:491.803050px;}
.y10e{bottom:491.991900px;}
.y12c{bottom:492.093000px;}
.yf0{bottom:492.417150px;}
.yd2{bottom:499.002450px;}
.y98{bottom:514.471500px;}
.y6e{bottom:515.803050px;}
.y10d{bottom:515.991900px;}
.y12b{bottom:516.093000px;}
.yef{bottom:516.417150px;}
.y14{bottom:516.614250px;}
.y35{bottom:516.990150px;}
.yd1{bottom:523.002450px;}
.y13{bottom:530.114250px;}
.y34{bottom:534.990150px;}
.y97{bottom:538.471500px;}
.y6d{bottom:539.803050px;}
.y10c{bottom:539.991900px;}
.y12a{bottom:540.093000px;}
.yee{bottom:540.417150px;}
.y12{bottom:543.614250px;}
.yd0{bottom:547.002450px;}
.y33{bottom:552.990150px;}
.y11{bottom:557.114250px;}
.y96{bottom:562.471500px;}
.y6c{bottom:563.803050px;}
.y10b{bottom:563.991900px;}
.y129{bottom:564.093000px;}
.yed{bottom:564.417150px;}
.y32{bottom:570.990150px;}
.ycf{bottom:571.002450px;}
.y95{bottom:586.471500px;}
.y6b{bottom:587.803050px;}
.y10a{bottom:587.991900px;}
.y128{bottom:588.093000px;}
.yec{bottom:588.417150px;}
.y31{bottom:588.990150px;}
.yce{bottom:595.002450px;}
.y30{bottom:606.990150px;}
.y94{bottom:610.471500px;}
.y6a{bottom:611.803050px;}
.y109{bottom:611.991900px;}
.y127{bottom:612.093000px;}
.yeb{bottom:612.417150px;}
.y10{bottom:616.854300px;}
.ycd{bottom:619.002450px;}
.y2f{bottom:624.990150px;}
.yf{bottom:630.354300px;}
.y93{bottom:634.471500px;}
.y69{bottom:635.803050px;}
.y108{bottom:635.991900px;}
.y126{bottom:636.093000px;}
.yea{bottom:636.417150px;}
.y2e{bottom:642.990150px;}
.ye{bottom:643.854300px;}
.yd{bottom:657.354300px;}
.y92{bottom:658.471500px;}
.y68{bottom:659.803050px;}
.y107{bottom:659.991900px;}
.y125{bottom:660.093000px;}
.ye9{bottom:660.417150px;}
.y2d{bottom:660.990150px;}
.ycc{bottom:666.654150px;}
.yc{bottom:670.854300px;}
.y2c{bottom:678.990150px;}
.y91{bottom:682.471500px;}
.y67{bottom:683.803050px;}
.y106{bottom:683.991900px;}
.y124{bottom:684.093000px;}
.yb{bottom:684.354300px;}
.ye8{bottom:684.417150px;}
.ycb{bottom:687.913950px;}
.y2b{bottom:696.990150px;}
.ya{bottom:697.854300px;}
.y90{bottom:706.471500px;}
.y66{bottom:707.803050px;}
.y105{bottom:707.991900px;}
.y123{bottom:708.093000px;}
.ye7{bottom:708.417150px;}
.yca{bottom:709.314750px;}
.y9{bottom:711.354300px;}
.y2a{bottom:714.990150px;}
.y8{bottom:724.854300px;}
.y8f{bottom:730.471500px;}
.y65{bottom:731.803050px;}
.y104{bottom:731.991900px;}
.y122{bottom:732.093000px;}
.yc9{bottom:732.282000px;}
.ye6{bottom:732.417150px;}
.y29{bottom:732.990150px;}
.y7{bottom:738.354300px;}
.y28{bottom:750.990150px;}
.y6{bottom:751.854300px;}
.y8e{bottom:754.471500px;}
.y64{bottom:755.803050px;}
.y103{bottom:755.991900px;}
.y121{bottom:756.093000px;}
.ye5{bottom:756.417150px;}
.y27{bottom:768.990150px;}
.y8d{bottom:778.471500px;}
.y63{bottom:779.803050px;}
.y102{bottom:779.991900px;}
.yc2{bottom:780.093000px;}
.y26{bottom:786.990150px;}
.y5{bottom:793.736250px;}
.ye4{bottom:799.551000px;}
.y8c{bottom:802.471500px;}
.y62{bottom:803.803050px;}
.y101{bottom:803.991900px;}
.yc1{bottom:804.093000px;}
.y25{bottom:804.990150px;}
.y4{bottom:807.236250px;}
.ye3{bottom:818.301000px;}
.y24{bottom:822.990150px;}
.y8b{bottom:826.471500px;}
.y61{bottom:827.803050px;}
.yc8{bottom:827.991900px;}
.yc0{bottom:828.093000px;}
.y3{bottom:833.492100px;}
.ye2{bottom:837.051000px;}
.y23{bottom:840.990150px;}
.y8a{bottom:850.471500px;}
.y60{bottom:851.803050px;}
.yc7{bottom:851.991900px;}
.ybf{bottom:852.093000px;}
.ye1{bottom:855.801000px;}
.y22{bottom:858.990150px;}
.y5f{bottom:875.803050px;}
.yc6{bottom:875.991900px;}
.ybe{bottom:876.093000px;}
.y21{bottom:876.990150px;}
.ye0{bottom:878.803050px;}
.y20{bottom:894.990150px;}
.y89{bottom:898.282500px;}
.y5e{bottom:899.803050px;}
.yc5{bottom:899.991900px;}
.ybd{bottom:900.093000px;}
.ydf{bottom:901.303050px;}
.y1f{bottom:912.990150px;}
.y88{bottom:922.282500px;}
.y5d{bottom:923.803050px;}
.yc4{bottom:923.991900px;}
.ybc{bottom:924.093000px;}
.y1e{bottom:930.990150px;}
.y87{bottom:946.282500px;}
.y5c{bottom:947.803050px;}
.yc3{bottom:947.991900px;}
.ybb{bottom:948.093000px;}
.y1d{bottom:948.990150px;}
.y86{bottom:970.282500px;}
.y5b{bottom:971.803050px;}
.y100{bottom:971.991900px;}
.yba{bottom:972.093000px;}
.y1c{bottom:985.746150px;}
.y85{bottom:994.282500px;}
.y5a{bottom:995.803050px;}
.yb9{bottom:996.093000px;}
.y1b{bottom:1010.998050px;}
.y84{bottom:1018.282500px;}
.y59{bottom:1019.803050px;}
.yb8{bottom:1020.093000px;}
.y83{bottom:1042.282500px;}
.y58{bottom:1043.803050px;}
.yb7{bottom:1044.093000px;}
.y1a{bottom:1046.029500px;}
.y82{bottom:1066.282500px;}
.y57{bottom:1067.803050px;}
.yb6{bottom:1068.093000px;}
.y19{bottom:1076.029500px;}
.y81{bottom:1090.282500px;}
.y56{bottom:1091.803050px;}
.yb5{bottom:1092.093000px;}
.y18{bottom:1106.029500px;}
.y80{bottom:1114.282500px;}
.y55{bottom:1115.803050px;}
.yb4{bottom:1116.093000px;}
.y17{bottom:1130.656650px;}
.y7f{bottom:1138.282500px;}
.y54{bottom:1139.803050px;}
.yb3{bottom:1140.093000px;}
.y16{bottom:1144.156650px;}
.y53{bottom:1179.714150px;}
.y1{bottom:1179.808350px;}
.y52{bottom:1179.808650px;}
.y15{bottom:1296.700800px;}
.h7{height:32.507812px;}
.h5{height:33.351562px;}
.h2{height:40.608000px;}
.h6{height:40.664062px;}
.hd{height:41.660156px;}
.h11{height:44.730469px;}
.h13{height:45.890198px;}
.h12{height:45.890798px;}
.h3{height:46.200000px;}
.he{height:48.761719px;}
.hc{height:48.796875px;}
.h10{height:49.992188px;}
.h4{height:50.027344px;}
.hf{height:50.484375px;}
.hb{height:52.111816px;}
.ha{height:54.896484px;}
.h9{height:65.062500px;}
.h8{height:86.553900px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:99.919500px;}
.x8{left:105.289050px;}
.xc{left:110.785050px;}
.xb{left:112.465050px;}
.xf{left:119.953050px;}
.xe{left:122.641050px;}
.x19{left:125.749500px;}
.x13{left:129.403200px;}
.x1f{left:138.189000px;}
.x5{left:150.435900px;}
.x12{left:158.095200px;}
.x10{left:160.747200px;}
.x3{left:168.835950px;}
.x4{left:172.383900px;}
.x15{left:185.708100px;}
.xa{left:196.417050px;}
.x9{left:200.389050px;}
.x11{left:207.727200px;}
.x7{left:209.749050px;}
.x16{left:214.856100px;}
.x6{left:225.091650px;}
.x24{left:226.428300px;}
.x23{left:245.659500px;}
.xd{left:253.741050px;}
.x22{left:272.222250px;}
.x17{left:304.437600px;}
.x18{left:329.844000px;}
.x2{left:428.187000px;}
.x1e{left:440.517750px;}
.x1b{left:448.579500px;}
.x20{left:461.338650px;}
.x1{left:469.083600px;}
.x1c{left:474.085500px;}
.x21{left:486.850350px;}
.x29{left:492.494100px;}
.x27{left:595.686450px;}
.x28{left:609.010650px;}
.x25{left:614.802600px;}
.x26{left:658.484250px;}
.x14{left:682.440900px;}
.x1d{left:687.448200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.103467pt;}
.ls11{letter-spacing:-2.432000pt;}
.ls14{letter-spacing:-1.920000pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.614933pt;}
.ls9{letter-spacing:0.627200pt;}
.lsa{letter-spacing:0.627733pt;}
.lsc{letter-spacing:0.637333pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.646400pt;}
.ls5{letter-spacing:0.672000pt;}
.ls0{letter-spacing:2.240000pt;}
.ls1{letter-spacing:2.986667pt;}
.ws2{word-spacing:-24.320000pt;}
.wsb2{word-spacing:-18.240000pt;}
.ws5b{word-spacing:-16.640000pt;}
.ws103{word-spacing:-16.320000pt;}
.wsb4{word-spacing:-16.000000pt;}
.ws109{word-spacing:-14.912000pt;}
.wsf7{word-spacing:-14.720000pt;}
.wsb3{word-spacing:-14.666667pt;}
.ws107{word-spacing:-14.400000pt;}
.ws108{word-spacing:-14.080000pt;}
.wsf6{word-spacing:-13.568000pt;}
.wsa2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.666667pt;}
.wsef{word-spacing:-8.768000pt;}
.wsba{word-spacing:-8.000000pt;}
.ws10e{word-spacing:-6.336000pt;}
.ws42{word-spacing:-5.632000pt;}
.ws7f{word-spacing:-5.376000pt;}
.ws37{word-spacing:-5.312000pt;}
.ws43{word-spacing:-5.120000pt;}
.ws4{word-spacing:-4.672000pt;}
.ws41{word-spacing:-4.416000pt;}
.ws1c{word-spacing:-4.352000pt;}
.ws2d{word-spacing:-4.288000pt;}
.wsf8{word-spacing:-4.032000pt;}
.ws9b{word-spacing:-3.904000pt;}
.ws33{word-spacing:-3.776000pt;}
.ws23{word-spacing:-3.712000pt;}
.wsa6{word-spacing:-3.648000pt;}
.ws10c{word-spacing:-3.584000pt;}
.wsd0{word-spacing:-3.520000pt;}
.ws8a{word-spacing:-3.392000pt;}
.wsbe{word-spacing:-3.264000pt;}
.ws19{word-spacing:-3.146667pt;}
.ws32{word-spacing:-3.008000pt;}
.ws6{word-spacing:-2.986667pt;}
.wsc0{word-spacing:-2.880000pt;}
.ws75{word-spacing:-2.816000pt;}
.wse1{word-spacing:-2.752000pt;}
.ws10b{word-spacing:-2.624000pt;}
.wsa7{word-spacing:-2.496000pt;}
.ws72{word-spacing:-2.368000pt;}
.ws5{word-spacing:-2.346667pt;}
.wscf{word-spacing:-2.304000pt;}
.ws8{word-spacing:-2.240000pt;}
.ws51{word-spacing:-2.176000pt;}
.wsf0{word-spacing:-2.112000pt;}
.ws1d{word-spacing:-2.048000pt;}
.ws10{word-spacing:-2.026667pt;}
.ws9d{word-spacing:-1.973333pt;}
.ws1e{word-spacing:-1.920000pt;}
.ws11{word-spacing:-1.760000pt;}
.ws46{word-spacing:-1.728000pt;}
.wsfc{word-spacing:-1.600000pt;}
.wsaf{word-spacing:-1.472000pt;}
.ws7{word-spacing:-1.450667pt;}
.ws13{word-spacing:-1.440000pt;}
.ws91{word-spacing:-1.408000pt;}
.ws30{word-spacing:-1.280000pt;}
.wse5{word-spacing:-1.088000pt;}
.wsb1{word-spacing:-1.024000pt;}
.wsf{word-spacing:-0.853333pt;}
.ws54{word-spacing:-0.832000pt;}
.ws85{word-spacing:-0.704000pt;}
.ws59{word-spacing:-0.640000pt;}
.ws4a{word-spacing:-0.576000pt;}
.ws9e{word-spacing:-0.512000pt;}
.wsae{word-spacing:-0.448000pt;}
.wsf3{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.336000pt;}
.wseb{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.160000pt;}
.ws8d{word-spacing:-0.128000pt;}
.wsb7{word-spacing:-0.064000pt;}
.ws14{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws10a{word-spacing:0.128000pt;}
.ws56{word-spacing:0.192000pt;}
.ws67{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.320000pt;}
.ws6b{word-spacing:0.384000pt;}
.ws34{word-spacing:0.512000pt;}
.wsea{word-spacing:0.576000pt;}
.ws2f{word-spacing:0.640000pt;}
.ws5f{word-spacing:0.704000pt;}
.wsb6{word-spacing:0.768000pt;}
.ws1f{word-spacing:0.832000pt;}
.ws20{word-spacing:0.896000pt;}
.ws45{word-spacing:0.960000pt;}
.ws106{word-spacing:1.024000pt;}
.ws24{word-spacing:1.088000pt;}
.wsc6{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.216000pt;}
.ws31{word-spacing:1.280000pt;}
.ws2b{word-spacing:1.344000pt;}
.ws78{word-spacing:1.536000pt;}
.wsa8{word-spacing:1.600000pt;}
.ws18{word-spacing:1.653333pt;}
.ws64{word-spacing:1.664000pt;}
.ws9{word-spacing:1.706667pt;}
.wsbd{word-spacing:1.856000pt;}
.ws94{word-spacing:1.920000pt;}
.wsd1{word-spacing:1.984000pt;}
.wsa9{word-spacing:2.048000pt;}
.wsc4{word-spacing:2.112000pt;}
.ws63{word-spacing:2.176000pt;}
.ws65{word-spacing:2.240000pt;}
.ws73{word-spacing:2.304000pt;}
.ws6d{word-spacing:2.368000pt;}
.ws1a{word-spacing:2.432000pt;}
.ws87{word-spacing:2.560000pt;}
.ws95{word-spacing:2.688000pt;}
.wsf2{word-spacing:2.880000pt;}
.wsd{word-spacing:3.040000pt;}
.ws9f{word-spacing:3.136000pt;}
.wsce{word-spacing:3.200000pt;}
.wsc{word-spacing:3.253333pt;}
.ws36{word-spacing:3.264000pt;}
.wsff{word-spacing:3.328000pt;}
.wsb8{word-spacing:3.392000pt;}
.wsd6{word-spacing:3.456000pt;}
.ws7b{word-spacing:3.520000pt;}
.ws79{word-spacing:3.584000pt;}
.wsc2{word-spacing:3.648000pt;}
.wsd5{word-spacing:3.712000pt;}
.ws44{word-spacing:3.776000pt;}
.ws53{word-spacing:3.840000pt;}
.ws8b{word-spacing:3.904000pt;}
.wsb9{word-spacing:3.968000pt;}
.ws76{word-spacing:4.032000pt;}
.ws4c{word-spacing:4.096000pt;}
.ws28{word-spacing:4.160000pt;}
.wse2{word-spacing:4.224000pt;}
.ws98{word-spacing:4.352000pt;}
.wsda{word-spacing:4.416000pt;}
.wsfe{word-spacing:4.480000pt;}
.wse{word-spacing:4.533333pt;}
.wse8{word-spacing:4.544000pt;}
.wsb{word-spacing:4.586667pt;}
.wsd9{word-spacing:4.608000pt;}
.ws10f{word-spacing:4.672000pt;}
.ws15{word-spacing:4.693333pt;}
.wsac{word-spacing:4.800000pt;}
.ws81{word-spacing:4.928000pt;}
.wsf5{word-spacing:4.992000pt;}
.ws77{word-spacing:5.056000pt;}
.wsc3{word-spacing:5.120000pt;}
.ws4e{word-spacing:5.184000pt;}
.ws58{word-spacing:5.248000pt;}
.ws12{word-spacing:5.280000pt;}
.ws3a{word-spacing:5.312000pt;}
.ws26{word-spacing:5.376000pt;}
.wsbf{word-spacing:5.440000pt;}
.ws6e{word-spacing:5.504000pt;}
.ws70{word-spacing:5.568000pt;}
.ws27{word-spacing:5.632000pt;}
.ws88{word-spacing:5.760000pt;}
.ws90{word-spacing:5.952000pt;}
.ws1b{word-spacing:6.016000pt;}
.ws8f{word-spacing:6.080000pt;}
.ws55{word-spacing:6.208000pt;}
.ws40{word-spacing:6.272000pt;}
.wsc8{word-spacing:6.336000pt;}
.ws7c{word-spacing:6.400000pt;}
.ws82{word-spacing:6.464000pt;}
.wsfd{word-spacing:6.528000pt;}
.ws9a{word-spacing:6.592000pt;}
.ws86{word-spacing:6.656000pt;}
.ws38{word-spacing:6.720000pt;}
.ws61{word-spacing:6.784000pt;}
.wsa{word-spacing:6.826667pt;}
.ws66{word-spacing:6.848000pt;}
.ws4f{word-spacing:6.912000pt;}
.ws16{word-spacing:6.933333pt;}
.ws8c{word-spacing:6.976000pt;}
.ws5e{word-spacing:7.040000pt;}
.wsad{word-spacing:7.168000pt;}
.ws60{word-spacing:7.360000pt;}
.ws4b{word-spacing:7.488000pt;}
.wsd4{word-spacing:7.552000pt;}
.wsc7{word-spacing:7.616000pt;}
.ws52{word-spacing:7.680000pt;}
.ws100{word-spacing:7.744000pt;}
.wscd{word-spacing:8.000000pt;}
.ws50{word-spacing:8.064000pt;}
.ws29{word-spacing:8.128000pt;}
.ws48{word-spacing:8.256000pt;}
.wse0{word-spacing:8.384000pt;}
.ws8e{word-spacing:8.448000pt;}
.ws89{word-spacing:8.512000pt;}
.ws49{word-spacing:8.576000pt;}
.ws6a{word-spacing:8.640000pt;}
.ws9c{word-spacing:8.768000pt;}
.wsa4{word-spacing:8.960000pt;}
.wsaa{word-spacing:9.216000pt;}
.ws6c{word-spacing:9.280000pt;}
.wse6{word-spacing:9.408000pt;}
.ws21{word-spacing:9.472000pt;}
.wsd3{word-spacing:9.536000pt;}
.wsdd{word-spacing:9.664000pt;}
.ws71{word-spacing:9.728000pt;}
.wsa5{word-spacing:9.792000pt;}
.wse3{word-spacing:9.856000pt;}
.wsdb{word-spacing:9.920000pt;}
.wsbb{word-spacing:9.984000pt;}
.wsa3{word-spacing:10.432000pt;}
.ws92{word-spacing:10.496000pt;}
.ws101{word-spacing:10.560000pt;}
.wscb{word-spacing:10.624000pt;}
.wsab{word-spacing:11.072000pt;}
.ws84{word-spacing:11.136000pt;}
.ws10d{word-spacing:11.264000pt;}
.wsf9{word-spacing:11.328000pt;}
.ws7e{word-spacing:11.584000pt;}
.wsc5{word-spacing:11.712000pt;}
.wsca{word-spacing:12.032000pt;}
.wsdc{word-spacing:12.224000pt;}
.ws93{word-spacing:12.288000pt;}
.ws62{word-spacing:12.544000pt;}
.ws69{word-spacing:12.800000pt;}
.ws68{word-spacing:12.928000pt;}
.ws3c{word-spacing:13.120000pt;}
.wsde{word-spacing:13.184000pt;}
.wse7{word-spacing:13.248000pt;}
.ws96{word-spacing:13.312000pt;}
.ws99{word-spacing:13.440000pt;}
.wsfa{word-spacing:13.504000pt;}
.wsee{word-spacing:13.568000pt;}
.wse9{word-spacing:13.696000pt;}
.wsb0{word-spacing:14.400000pt;}
.ws22{word-spacing:14.656000pt;}
.ws104{word-spacing:14.720000pt;}
.ws25{word-spacing:14.784000pt;}
.wsfb{word-spacing:14.848000pt;}
.ws5a{word-spacing:14.912000pt;}
.ws97{word-spacing:14.976000pt;}
.ws74{word-spacing:15.104000pt;}
.ws80{word-spacing:15.232000pt;}
.wsa0{word-spacing:15.296000pt;}
.wsbc{word-spacing:15.616000pt;}
.ws3f{word-spacing:15.680000pt;}
.wsc1{word-spacing:16.000000pt;}
.ws83{word-spacing:16.128000pt;}
.wsd2{word-spacing:16.320000pt;}
.ws105{word-spacing:16.448000pt;}
.ws102{word-spacing:16.832000pt;}
.wsed{word-spacing:16.896000pt;}
.wscc{word-spacing:17.024000pt;}
.wsc9{word-spacing:17.280000pt;}
.ws3b{word-spacing:17.600000pt;}
.ws3e{word-spacing:17.664000pt;}
.wsf1{word-spacing:17.920000pt;}
.ws5d{word-spacing:18.048000pt;}
.ws5c{word-spacing:18.176000pt;}
.wsdf{word-spacing:18.368000pt;}
.wsa1{word-spacing:19.392000pt;}
.wsb5{word-spacing:19.968000pt;}
.ws7a{word-spacing:22.464000pt;}
.ws2e{word-spacing:23.232000pt;}
.wsec{word-spacing:23.808000pt;}
.wsf4{word-spacing:24.832000pt;}
.ws6f{word-spacing:25.344000pt;}
.ws57{word-spacing:27.328000pt;}
.wse4{word-spacing:28.160000pt;}
.ws35{word-spacing:28.480000pt;}
.ws39{word-spacing:33.408000pt;}
.wsd8{word-spacing:40.832000pt;}
.ws7d{word-spacing:41.728000pt;}
.ws47{word-spacing:44.352000pt;}
.wsd7{word-spacing:85.824000pt;}
._12{margin-left:-35.218133pt;}
._10{margin-left:-29.339733pt;}
._13{margin-left:-18.916267pt;}
._14{margin-left:-16.750933pt;}
._d{margin-left:-14.977067pt;}
._f{margin-left:-14.081067pt;}
._b{margin-left:-12.789333pt;}
._6{margin-left:-11.886933pt;}
._8{margin-left:-10.973867pt;}
._a{margin-left:-9.864533pt;}
._20{margin-left:-8.363200pt;}
._15{margin-left:-7.397333pt;}
._9{margin-left:-6.306133pt;}
._5{margin-left:-4.770133pt;}
._c{margin-left:-3.402667pt;}
._4{margin-left:-2.414933pt;}
._1{margin-left:-1.100800pt;}
._0{width:1.430400pt;}
._3{width:2.365867pt;}
._11{width:4.026667pt;}
._e{width:5.061333pt;}
._1d{width:6.387200pt;}
._18{width:8.115200pt;}
._19{width:9.721600pt;}
._2{width:10.662400pt;}
._1c{width:12.000000pt;}
._28{width:13.408000pt;}
._1f{width:14.406400pt;}
._17{width:17.209600pt;}
._29{width:18.924800pt;}
._1b{width:21.081600pt;}
._16{width:22.406400pt;}
._27{width:24.096000pt;}
._26{width:25.977600pt;}
._1e{width:26.944000pt;}
._2a{width:31.180800pt;}
._1a{width:32.204800pt;}
._7{width:40.094933pt;}
._25{width:190.417600pt;}
._23{width:258.850667pt;}
._24{width:263.369067pt;}
._22{width:284.155200pt;}
._21{width:364.056000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:73.322933pt;}
.ya7{bottom:116.142533pt;}
.y7e{bottom:117.158267pt;}
.y51{bottom:117.162000pt;}
.y11d{bottom:117.326133pt;}
.y44{bottom:117.354000pt;}
.y13b{bottom:117.416000pt;}
.yff{bottom:117.704133pt;}
.yab{bottom:118.712000pt;}
.y140{bottom:119.824933pt;}
.ya6{bottom:137.475867pt;}
.y50{bottom:138.490000pt;}
.y7d{bottom:138.491600pt;}
.y11c{bottom:138.659467pt;}
.y43{bottom:138.682000pt;}
.y13a{bottom:138.749333pt;}
.y120{bottom:138.827467pt;}
.yfe{bottom:139.037467pt;}
.yaa{bottom:140.045333pt;}
.y13f{bottom:141.158267pt;}
.yb2{bottom:143.152933pt;}
.ya5{bottom:158.809200pt;}
.y4f{bottom:159.818000pt;}
.y7c{bottom:159.824933pt;}
.y11b{bottom:159.992800pt;}
.y42{bottom:160.010000pt;}
.y139{bottom:160.082667pt;}
.y11f{bottom:160.160800pt;}
.yfd{bottom:160.370800pt;}
.yb1{bottom:160.486267pt;}
.ya9{bottom:161.378667pt;}
.y13e{bottom:162.491600pt;}
.y4e{bottom:181.146000pt;}
.y7b{bottom:181.158267pt;}
.y11a{bottom:181.326133pt;}
.y41{bottom:181.338000pt;}
.y138{bottom:181.416000pt;}
.y11e{bottom:181.494133pt;}
.yb0{bottom:181.599200pt;}
.yfc{bottom:181.704133pt;}
.y13d{bottom:183.824933pt;}
.yde{bottom:187.557733pt;}
.yaf{bottom:198.932533pt;}
.ya4{bottom:201.308000pt;}
.y4d{bottom:202.474000pt;}
.y7a{bottom:202.491600pt;}
.y119{bottom:202.659467pt;}
.y40{bottom:202.666000pt;}
.ya8{bottom:202.712000pt;}
.y137{bottom:202.749333pt;}
.yfb{bottom:203.037467pt;}
.y13c{bottom:205.158267pt;}
.ydd{bottom:208.891067pt;}
.yae{bottom:220.045467pt;}
.ya3{bottom:222.641333pt;}
.y4c{bottom:223.802000pt;}
.y79{bottom:223.824933pt;}
.y118{bottom:223.992800pt;}
.y3f{bottom:223.994000pt;}
.y136{bottom:224.082667pt;}
.yfa{bottom:224.370800pt;}
.ydc{bottom:230.224400pt;}
.yad{bottom:237.378800pt;}
.ya2{bottom:243.974667pt;}
.y4b{bottom:245.130000pt;}
.y78{bottom:245.158267pt;}
.y3e{bottom:245.322000pt;}
.y117{bottom:245.326133pt;}
.y135{bottom:245.416000pt;}
.yf9{bottom:245.704133pt;}
.ydb{bottom:251.557733pt;}
.yac{bottom:258.491600pt;}
.ya1{bottom:265.308000pt;}
.y4a{bottom:266.458000pt;}
.y77{bottom:266.491600pt;}
.y3d{bottom:266.650000pt;}
.y116{bottom:266.659467pt;}
.y134{bottom:266.749333pt;}
.yf8{bottom:267.037467pt;}
.yda{bottom:272.891067pt;}
.ya0{bottom:286.641333pt;}
.y49{bottom:287.786000pt;}
.y76{bottom:287.824933pt;}
.y3c{bottom:287.978000pt;}
.y115{bottom:287.992800pt;}
.y133{bottom:288.082667pt;}
.yf7{bottom:288.370800pt;}
.yd9{bottom:294.224400pt;}
.y9f{bottom:307.974667pt;}
.y48{bottom:309.114000pt;}
.y75{bottom:309.158267pt;}
.y3b{bottom:309.306000pt;}
.y114{bottom:309.326133pt;}
.y132{bottom:309.416000pt;}
.yf6{bottom:309.704133pt;}
.yd8{bottom:315.557733pt;}
.y9e{bottom:329.308000pt;}
.y47{bottom:330.442000pt;}
.y74{bottom:330.491600pt;}
.y3a{bottom:330.634000pt;}
.y113{bottom:330.659467pt;}
.y131{bottom:330.749333pt;}
.yf5{bottom:331.037467pt;}
.yd7{bottom:336.891067pt;}
.y9d{bottom:350.641333pt;}
.y46{bottom:351.770000pt;}
.y73{bottom:351.824933pt;}
.y39{bottom:351.962000pt;}
.y112{bottom:351.992800pt;}
.y130{bottom:352.082667pt;}
.yf4{bottom:352.370800pt;}
.yd6{bottom:358.224400pt;}
.y9c{bottom:371.974667pt;}
.y45{bottom:373.098000pt;}
.y72{bottom:373.158267pt;}
.y38{bottom:373.290000pt;}
.y111{bottom:373.326133pt;}
.y12f{bottom:373.416000pt;}
.yf3{bottom:373.704133pt;}
.yd5{bottom:379.557733pt;}
.y9b{bottom:393.308000pt;}
.y71{bottom:394.491600pt;}
.y110{bottom:394.659467pt;}
.y12e{bottom:394.749333pt;}
.yf2{bottom:395.037467pt;}
.yd4{bottom:400.891067pt;}
.y37{bottom:412.426800pt;}
.y9a{bottom:414.641333pt;}
.y70{bottom:415.824933pt;}
.y10f{bottom:415.992800pt;}
.y12d{bottom:416.082667pt;}
.yf1{bottom:416.370800pt;}
.yd3{bottom:422.224400pt;}
.y36{bottom:428.426800pt;}
.y99{bottom:435.974667pt;}
.y6f{bottom:437.158267pt;}
.y10e{bottom:437.326133pt;}
.y12c{bottom:437.416000pt;}
.yf0{bottom:437.704133pt;}
.yd2{bottom:443.557733pt;}
.y98{bottom:457.308000pt;}
.y6e{bottom:458.491600pt;}
.y10d{bottom:458.659467pt;}
.y12b{bottom:458.749333pt;}
.yef{bottom:459.037467pt;}
.y14{bottom:459.212667pt;}
.y35{bottom:459.546800pt;}
.yd1{bottom:464.891067pt;}
.y13{bottom:471.212667pt;}
.y34{bottom:475.546800pt;}
.y97{bottom:478.641333pt;}
.y6d{bottom:479.824933pt;}
.y10c{bottom:479.992800pt;}
.y12a{bottom:480.082667pt;}
.yee{bottom:480.370800pt;}
.y12{bottom:483.212667pt;}
.yd0{bottom:486.224400pt;}
.y33{bottom:491.546800pt;}
.y11{bottom:495.212667pt;}
.y96{bottom:499.974667pt;}
.y6c{bottom:501.158267pt;}
.y10b{bottom:501.326133pt;}
.y129{bottom:501.416000pt;}
.yed{bottom:501.704133pt;}
.y32{bottom:507.546800pt;}
.ycf{bottom:507.557733pt;}
.y95{bottom:521.308000pt;}
.y6b{bottom:522.491600pt;}
.y10a{bottom:522.659467pt;}
.y128{bottom:522.749333pt;}
.yec{bottom:523.037467pt;}
.y31{bottom:523.546800pt;}
.yce{bottom:528.891067pt;}
.y30{bottom:539.546800pt;}
.y94{bottom:542.641333pt;}
.y6a{bottom:543.824933pt;}
.y109{bottom:543.992800pt;}
.y127{bottom:544.082667pt;}
.yeb{bottom:544.370800pt;}
.y10{bottom:548.314933pt;}
.ycd{bottom:550.224400pt;}
.y2f{bottom:555.546800pt;}
.yf{bottom:560.314933pt;}
.y93{bottom:563.974667pt;}
.y69{bottom:565.158267pt;}
.y108{bottom:565.326133pt;}
.y126{bottom:565.416000pt;}
.yea{bottom:565.704133pt;}
.y2e{bottom:571.546800pt;}
.ye{bottom:572.314933pt;}
.yd{bottom:584.314933pt;}
.y92{bottom:585.308000pt;}
.y68{bottom:586.491600pt;}
.y107{bottom:586.659467pt;}
.y125{bottom:586.749333pt;}
.ye9{bottom:587.037467pt;}
.y2d{bottom:587.546800pt;}
.ycc{bottom:592.581467pt;}
.yc{bottom:596.314933pt;}
.y2c{bottom:603.546800pt;}
.y91{bottom:606.641333pt;}
.y67{bottom:607.824933pt;}
.y106{bottom:607.992800pt;}
.y124{bottom:608.082667pt;}
.yb{bottom:608.314933pt;}
.ye8{bottom:608.370800pt;}
.ycb{bottom:611.479067pt;}
.y2b{bottom:619.546800pt;}
.ya{bottom:620.314933pt;}
.y90{bottom:627.974667pt;}
.y66{bottom:629.158267pt;}
.y105{bottom:629.326133pt;}
.y123{bottom:629.416000pt;}
.ye7{bottom:629.704133pt;}
.yca{bottom:630.502000pt;}
.y9{bottom:632.314933pt;}
.y2a{bottom:635.546800pt;}
.y8{bottom:644.314933pt;}
.y8f{bottom:649.308000pt;}
.y65{bottom:650.491600pt;}
.y104{bottom:650.659467pt;}
.y122{bottom:650.749333pt;}
.yc9{bottom:650.917333pt;}
.ye6{bottom:651.037467pt;}
.y29{bottom:651.546800pt;}
.y7{bottom:656.314933pt;}
.y28{bottom:667.546800pt;}
.y6{bottom:668.314933pt;}
.y8e{bottom:670.641333pt;}
.y64{bottom:671.824933pt;}
.y103{bottom:671.992800pt;}
.y121{bottom:672.082667pt;}
.ye5{bottom:672.370800pt;}
.y27{bottom:683.546800pt;}
.y8d{bottom:691.974667pt;}
.y63{bottom:693.158267pt;}
.y102{bottom:693.326133pt;}
.yc2{bottom:693.416000pt;}
.y26{bottom:699.546800pt;}
.y5{bottom:705.543333pt;}
.ye4{bottom:710.712000pt;}
.y8c{bottom:713.308000pt;}
.y62{bottom:714.491600pt;}
.y101{bottom:714.659467pt;}
.yc1{bottom:714.749333pt;}
.y25{bottom:715.546800pt;}
.y4{bottom:717.543333pt;}
.ye3{bottom:727.378667pt;}
.y24{bottom:731.546800pt;}
.y8b{bottom:734.641333pt;}
.y61{bottom:735.824933pt;}
.yc8{bottom:735.992800pt;}
.yc0{bottom:736.082667pt;}
.y3{bottom:740.881867pt;}
.ye2{bottom:744.045333pt;}
.y23{bottom:747.546800pt;}
.y8a{bottom:755.974667pt;}
.y60{bottom:757.158267pt;}
.yc7{bottom:757.326133pt;}
.ybf{bottom:757.416000pt;}
.ye1{bottom:760.712000pt;}
.y22{bottom:763.546800pt;}
.y5f{bottom:778.491600pt;}
.yc6{bottom:778.659467pt;}
.ybe{bottom:778.749333pt;}
.y21{bottom:779.546800pt;}
.ye0{bottom:781.158267pt;}
.y20{bottom:795.546800pt;}
.y89{bottom:798.473333pt;}
.y5e{bottom:799.824933pt;}
.yc5{bottom:799.992800pt;}
.ybd{bottom:800.082667pt;}
.ydf{bottom:801.158267pt;}
.y1f{bottom:811.546800pt;}
.y88{bottom:819.806667pt;}
.y5d{bottom:821.158267pt;}
.yc4{bottom:821.326133pt;}
.ybc{bottom:821.416000pt;}
.y1e{bottom:827.546800pt;}
.y87{bottom:841.140000pt;}
.y5c{bottom:842.491600pt;}
.yc3{bottom:842.659467pt;}
.ybb{bottom:842.749333pt;}
.y1d{bottom:843.546800pt;}
.y86{bottom:862.473333pt;}
.y5b{bottom:863.824933pt;}
.y100{bottom:863.992800pt;}
.yba{bottom:864.082667pt;}
.y1c{bottom:876.218800pt;}
.y85{bottom:883.806667pt;}
.y5a{bottom:885.158267pt;}
.yb9{bottom:885.416000pt;}
.y1b{bottom:898.664933pt;}
.y84{bottom:905.140000pt;}
.y59{bottom:906.491600pt;}
.yb8{bottom:906.749333pt;}
.y83{bottom:926.473333pt;}
.y58{bottom:927.824933pt;}
.yb7{bottom:928.082667pt;}
.y1a{bottom:929.804000pt;}
.y82{bottom:947.806667pt;}
.y57{bottom:949.158267pt;}
.yb6{bottom:949.416000pt;}
.y19{bottom:956.470667pt;}
.y81{bottom:969.140000pt;}
.y56{bottom:970.491600pt;}
.yb5{bottom:970.749333pt;}
.y18{bottom:983.137333pt;}
.y80{bottom:990.473333pt;}
.y55{bottom:991.824933pt;}
.yb4{bottom:992.082667pt;}
.y17{bottom:1005.028133pt;}
.y7f{bottom:1011.806667pt;}
.y54{bottom:1013.158267pt;}
.yb3{bottom:1013.416000pt;}
.y16{bottom:1017.028133pt;}
.y53{bottom:1048.634800pt;}
.y1{bottom:1048.718533pt;}
.y52{bottom:1048.718800pt;}
.y15{bottom:1152.622933pt;}
.h7{height:28.895833pt;}
.h5{height:29.645833pt;}
.h2{height:36.096000pt;}
.h6{height:36.145833pt;}
.hd{height:37.031250pt;}
.h11{height:39.760417pt;}
.h13{height:40.791288pt;}
.h12{height:40.791821pt;}
.h3{height:41.066667pt;}
.he{height:43.343750pt;}
.hc{height:43.375000pt;}
.h10{height:44.437500pt;}
.h4{height:44.468750pt;}
.hf{height:44.875000pt;}
.hb{height:46.321615pt;}
.ha{height:48.796875pt;}
.h9{height:57.833333pt;}
.h8{height:76.936800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:88.817333pt;}
.x8{left:93.590267pt;}
.xc{left:98.475600pt;}
.xb{left:99.968933pt;}
.xf{left:106.624933pt;}
.xe{left:109.014267pt;}
.x19{left:111.777333pt;}
.x13{left:115.025067pt;}
.x1f{left:122.834667pt;}
.x5{left:133.720800pt;}
.x12{left:140.529067pt;}
.x10{left:142.886400pt;}
.x3{left:150.076400pt;}
.x4{left:153.230133pt;}
.x15{left:165.073867pt;}
.xa{left:174.592933pt;}
.x9{left:178.123600pt;}
.x11{left:184.646400pt;}
.x7{left:186.443600pt;}
.x16{left:190.983200pt;}
.x6{left:200.081467pt;}
.x24{left:201.269600pt;}
.x23{left:218.364000pt;}
.xd{left:225.547600pt;}
.x22{left:241.975333pt;}
.x17{left:270.611200pt;}
.x18{left:293.194667pt;}
.x2{left:380.610667pt;}
.x1e{left:391.571333pt;}
.x1b{left:398.737333pt;}
.x20{left:410.078800pt;}
.x1{left:416.963200pt;}
.x1c{left:421.409333pt;}
.x21{left:432.755867pt;}
.x29{left:437.772533pt;}
.x27{left:529.499067pt;}
.x28{left:541.342800pt;}
.x25{left:546.491200pt;}
.x26{left:585.319333pt;}
.x14{left:606.614133pt;}
.x1d{left:611.065067pt;}
}




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