
    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_40030a8d1a0f2ab73884b6ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693359;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_a58c4426edab9a4f0662cbed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_dbf33832bc3d9c85200945d8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ddfca2134125e115003616dd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_15bd4debdd7af1f41ad2827f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8a7fff47faf4ce1bbb3a180b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_5cad4f7bb19f67b2f7314495.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_53d9cb50603727e516296812.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_5cad4f7bb19f67b2f7314495.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3ca3d974cb67c35668d081da.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3ca3d974cb67c35668d081da.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bda9b8d0203d792da20ba999.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288052,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295857,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.583200px;}
.v1{vertical-align:23.976000px;}
.v4{vertical-align:43.200000px;}
.ls9{letter-spacing:-4.968000px;}
.ls8{letter-spacing:-4.200000px;}
.lse{letter-spacing:-2.220000px;}
.ls1{letter-spacing:-2.160000px;}
.lsc{letter-spacing:-1.553112px;}
.ls2{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.839520px;}
.ls5{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.629640px;}
.ls14{letter-spacing:-0.499910px;}
.ls10{letter-spacing:-0.419760px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.419400px;}
.lsb{letter-spacing:0.419760px;}
.ls4{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.800000px;}
.ls11{letter-spacing:2.592000px;}
.ls15{letter-spacing:2.940000px;}
.ls3{letter-spacing:198.000000px;}
.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;}
}
.wsb6{word-spacing:-18.720000px;}
.ws77{word-spacing:-18.000000px;}
.ws3f{word-spacing:-16.560000px;}
.wscf{word-spacing:-15.000000px;}
.ws53{word-spacing:-13.500000px;}
.ws60{word-spacing:-10.913760px;}
.ws34{word-spacing:-10.494000px;}
.wsa1{word-spacing:-10.074240px;}
.ws90{word-spacing:-9.654480px;}
.ws69{word-spacing:-8.940888px;}
.ws40{word-spacing:-8.532000px;}
.wsd9{word-spacing:-5.976000px;}
.ws3a{word-spacing:-5.760000px;}
.wsda{word-spacing:-5.040000px;}
.wsd5{word-spacing:-3.960000px;}
.ws6d{word-spacing:-3.816000px;}
.wsbe{word-spacing:-3.744000px;}
.ws28{word-spacing:-3.528000px;}
.ws74{word-spacing:-3.456000px;}
.ws59{word-spacing:-3.402000px;}
.ws92{word-spacing:-3.384000px;}
.wsc4{word-spacing:-3.312000px;}
.ws1e{word-spacing:-3.240000px;}
.wsc7{word-spacing:-3.168000px;}
.ws39{word-spacing:-3.096000px;}
.ws4e{word-spacing:-3.024000px;}
.ws50{word-spacing:-2.970000px;}
.ws22{word-spacing:-2.952000px;}
.wsdd{word-spacing:-2.940000px;}
.ws36{word-spacing:-2.880000px;}
.ws3d{word-spacing:-2.808000px;}
.wsbf{word-spacing:-2.736000px;}
.ws8e{word-spacing:-2.664000px;}
.wsa0{word-spacing:-2.592000px;}
.wsbd{word-spacing:-2.520000px;}
.ws25{word-spacing:-2.448000px;}
.wsb4{word-spacing:-2.376000px;}
.ws89{word-spacing:-2.304000px;}
.ws38{word-spacing:-2.232000px;}
.wsa5{word-spacing:-2.214000px;}
.wsc3{word-spacing:-2.160000px;}
.ws4a{word-spacing:-2.016000px;}
.ws8b{word-spacing:-1.944000px;}
.wsf{word-spacing:-1.872000px;}
.ws2c{word-spacing:-1.800000px;}
.wsc8{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.656000px;}
.wsc5{word-spacing:-1.584000px;}
.ws2f{word-spacing:-1.512000px;}
.wsa9{word-spacing:-1.440000px;}
.ws96{word-spacing:-1.368000px;}
.ws1f{word-spacing:-1.296000px;}
.ws5f{word-spacing:-1.224000px;}
.ws48{word-spacing:-1.152000px;}
.ws9b{word-spacing:-1.080000px;}
.ws3{word-spacing:-1.008000px;}
.ws97{word-spacing:-0.972000px;}
.ws8{word-spacing:-0.936000px;}
.ws93{word-spacing:-0.864000px;}
.ws85{word-spacing:-0.810000px;}
.ws8a{word-spacing:-0.792000px;}
.ws2b{word-spacing:-0.720000px;}
.ws26{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws75{word-spacing:-0.504000px;}
.ws9{word-spacing:-0.432000px;}
.ws5a{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.288000px;}
.ws8c{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.144000px;}
.ws41{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsb1{word-spacing:0.072000px;}
.ws12{word-spacing:0.144000px;}
.ws51{word-spacing:0.162000px;}
.ws29{word-spacing:0.216000px;}
.ws57{word-spacing:0.288000px;}
.ws5{word-spacing:0.360000px;}
.ws95{word-spacing:0.432000px;}
.ws17{word-spacing:0.504000px;}
.wsae{word-spacing:0.576000px;}
.ws70{word-spacing:0.629640px;}
.ws37{word-spacing:0.648000px;}
.ws1c{word-spacing:0.720000px;}
.ws49{word-spacing:0.792000px;}
.ws27{word-spacing:0.864000px;}
.ws88{word-spacing:0.936000px;}
.ws67{word-spacing:1.008000px;}
.ws4d{word-spacing:1.080000px;}
.ws7b{word-spacing:1.152000px;}
.ws43{word-spacing:1.224000px;}
.ws2e{word-spacing:1.296000px;}
.ws52{word-spacing:1.350000px;}
.ws7e{word-spacing:1.368000px;}
.wsa{word-spacing:1.440000px;}
.ws79{word-spacing:1.512000px;}
.ws55{word-spacing:1.584000px;}
.ws19{word-spacing:1.656000px;}
.ws80{word-spacing:1.728000px;}
.ws3b{word-spacing:1.800000px;}
.ws6{word-spacing:1.872000px;}
.ws91{word-spacing:1.944000px;}
.ws16{word-spacing:2.016000px;}
.ws54{word-spacing:2.088000px;}
.ws10{word-spacing:2.160000px;}
.ws78{word-spacing:2.220000px;}
.ws15{word-spacing:2.232000px;}
.wsdb{word-spacing:2.304000px;}
.ws2a{word-spacing:2.376000px;}
.ws13{word-spacing:2.448000px;}
.ws47{word-spacing:2.484000px;}
.ws6e{word-spacing:2.520000px;}
.wsaf{word-spacing:2.592000px;}
.ws65{word-spacing:2.664000px;}
.ws64{word-spacing:2.736000px;}
.ws2d{word-spacing:2.808000px;}
.ws4{word-spacing:2.880000px;}
.wsbb{word-spacing:2.952000px;}
.ws18{word-spacing:3.024000px;}
.ws33{word-spacing:3.096000px;}
.ws9f{word-spacing:3.168000px;}
.ws23{word-spacing:3.240000px;}
.ws4b{word-spacing:3.312000px;}
.ws35{word-spacing:3.384000px;}
.ws30{word-spacing:3.456000px;}
.ws81{word-spacing:3.528000px;}
.wsac{word-spacing:3.600000px;}
.ws84{word-spacing:3.672000px;}
.ws9d{word-spacing:3.744000px;}
.ws68{word-spacing:3.816000px;}
.wsc0{word-spacing:3.888000px;}
.ws5b{word-spacing:4.032000px;}
.wse{word-spacing:4.104000px;}
.ws7c{word-spacing:4.176000px;}
.ws9c{word-spacing:4.248000px;}
.ws6f{word-spacing:4.320000px;}
.wsb3{word-spacing:4.392000px;}
.ws2{word-spacing:4.464000px;}
.ws45{word-spacing:4.536000px;}
.ws58{word-spacing:4.608000px;}
.ws21{word-spacing:4.824000px;}
.ws44{word-spacing:4.896000px;}
.ws1{word-spacing:4.968000px;}
.ws98{word-spacing:5.040000px;}
.ws62{word-spacing:5.112000px;}
.ws71{word-spacing:5.184000px;}
.ws4c{word-spacing:5.256000px;}
.ws6a{word-spacing:5.328000px;}
.ws83{word-spacing:5.400000px;}
.ws6c{word-spacing:5.472000px;}
.wsb0{word-spacing:5.544000px;}
.ws63{word-spacing:5.688000px;}
.ws5e{word-spacing:5.760000px;}
.ws1d{word-spacing:5.832000px;}
.ws46{word-spacing:5.904000px;}
.ws32{word-spacing:6.048000px;}
.wsa4{word-spacing:6.336000px;}
.ws5c{word-spacing:6.408000px;}
.wsb{word-spacing:6.480000px;}
.ws61{word-spacing:6.552000px;}
.ws3c{word-spacing:6.624000px;}
.ws73{word-spacing:6.696000px;}
.ws6b{word-spacing:6.768000px;}
.ws7{word-spacing:6.840000px;}
.ws86{word-spacing:6.912000px;}
.wsb7{word-spacing:6.984000px;}
.ws72{word-spacing:7.056000px;}
.ws82{word-spacing:7.128000px;}
.ws42{word-spacing:7.200000px;}
.ws4f{word-spacing:7.272000px;}
.wsa6{word-spacing:7.344000px;}
.wsa8{word-spacing:7.416000px;}
.ws87{word-spacing:7.704000px;}
.ws31{word-spacing:7.848000px;}
.wsad{word-spacing:7.920000px;}
.ws20{word-spacing:7.992000px;}
.wsa7{word-spacing:8.064000px;}
.ws56{word-spacing:8.136000px;}
.wsb2{word-spacing:8.280000px;}
.wsa2{word-spacing:8.496000px;}
.wsc1{word-spacing:8.568000px;}
.wsb9{word-spacing:8.640000px;}
.ws1b{word-spacing:8.784000px;}
.wsc2{word-spacing:9.000000px;}
.ws7f{word-spacing:9.144000px;}
.wsa3{word-spacing:9.216000px;}
.wsaa{word-spacing:9.360000px;}
.ws9a{word-spacing:9.432000px;}
.ws8f{word-spacing:9.504000px;}
.ws94{word-spacing:9.576000px;}
.wsc6{word-spacing:9.648000px;}
.ws76{word-spacing:9.720000px;}
.ws7a{word-spacing:9.864000px;}
.wsbc{word-spacing:10.008000px;}
.wsb8{word-spacing:10.080000px;}
.wsd7{word-spacing:10.152000px;}
.ws9e{word-spacing:10.224000px;}
.wsb5{word-spacing:10.296000px;}
.ws8d{word-spacing:10.440000px;}
.ws7d{word-spacing:10.512000px;}
.wsba{word-spacing:10.584000px;}
.ws99{word-spacing:10.728000px;}
.wsdc{word-spacing:11.088000px;}
.ws66{word-spacing:11.664000px;}
.wsab{word-spacing:11.880000px;}
.wsc{word-spacing:12.456000px;}
.wsd{word-spacing:12.528000px;}
.wsd8{word-spacing:14.112000px;}
.wsd6{word-spacing:14.760000px;}
.wsca{word-spacing:34.952069px;}
.ws3e{word-spacing:37.530000px;}
.wscb{word-spacing:39.409603px;}
.wscc{word-spacing:40.992653px;}
.wscd{word-spacing:53.657050px;}
.wsd4{word-spacing:63.381600px;}
.wsc9{word-spacing:80.693870px;}
.wsce{word-spacing:85.692974px;}
.wsd0{word-spacing:115.632000px;}
.wsd1{word-spacing:429.336000px;}
.wsd2{word-spacing:456.336000px;}
.wsd3{word-spacing:474.336000px;}
._1{margin-left:-170.454627px;}
._3{margin-left:-162.418176px;}
._0{margin-left:-92.311995px;}
._2{margin-left:-84.063317px;}
._e{margin-left:-79.845699px;}
._b{margin-left:-77.521071px;}
._4{margin-left:-72.115836px;}
._9{margin-left:-67.341824px;}
._c{margin-left:-62.530790px;}
._12{margin-left:-59.071701px;}
._19{margin-left:-56.299865px;}
._14{margin-left:-54.587099px;}
._f{margin-left:-51.084510px;}
._17{margin-left:-47.620656px;}
._d{margin-left:-45.619097px;}
._18{margin-left:-39.581877px;}
._16{margin-left:-38.377419px;}
._27{margin-left:-37.249200px;}
._8{margin-left:-35.066084px;}
._15{margin-left:-33.914249px;}
._5{margin-left:-29.144318px;}
._a{margin-left:-27.911859px;}
._10{margin-left:-25.961225px;}
._7{margin-left:-23.064464px;}
._11{margin-left:-21.659431px;}
._6{margin-left:-17.089640px;}
._20{margin-left:-10.245786px;}
._26{margin-left:-8.769600px;}
._1f{margin-left:-7.192800px;}
._28{margin-left:-5.961600px;}
._13{margin-left:-4.377414px;}
._1a{margin-left:-2.707200px;}
._1b{margin-left:-1.296000px;}
._1e{width:1.720800px;}
._22{width:3.477600px;}
._23{width:4.903014px;}
._24{width:6.062400px;}
._1c{width:7.070400px;}
._21{width:8.920800px;}
._2d{width:10.072800px;}
._2e{width:11.109600px;}
._2c{width:12.319200px;}
._4f{width:15.400800px;}
._50{width:16.783200px;}
._25{width:40.500000px;}
._2a{width:43.470000px;}
._33{width:56.239920px;}
._34{width:70.487366px;}
._4c{width:84.340800px;}
._2f{width:87.030600px;}
._40{width:92.304000px;}
._35{width:107.439077px;}
._49{width:110.304000px;}
._36{width:111.733173px;}
._32{width:115.062710px;}
._3d{width:128.304000px;}
._3a{width:146.304000px;}
._30{width:189.360000px;}
._1d{width:196.056000px;}
._2b{width:198.504000px;}
._31{width:200.880000px;}
._44{width:207.114829px;}
._3f{width:214.560000px;}
._39{width:232.560000px;}
._4d{width:240.912000px;}
._37{width:256.896000px;}
._3e{width:319.161414px;}
._3b{width:342.288000px;}
._38{width:354.384000px;}
._3c{width:378.360000px;}
._42{width:399.312000px;}
._48{width:408.312000px;}
._43{width:420.408000px;}
._41{width:430.344000px;}
._45{width:439.416000px;}
._46{width:457.416000px;}
._4e{width:788.328000px;}
._47{width:882.216000px;}
._4a{width:900.288000px;}
._4b{width:920.304000px;}
._29{width:2843.040000px;}
.fc4{color:rgb(210,32,39);}
.fc2{color:rgb(145,143,143);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:transparent;}
.fsa{font-size:41.659200px;}
.fs7{font-size:41.976000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.959296px;}
.fs9{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:103.957632px;}
.fs1{font-size:108.278784px;}
.fs0{font-size:216.557568px;}
.y0{bottom:0.000000px;}
.y43{bottom:43.812150px;}
.yc{bottom:43.812300px;}
.y57{bottom:85.039350px;}
.y80{bottom:85.039500px;}
.y6b{bottom:85.039650px;}
.yea{bottom:87.116850px;}
.y1ae{bottom:91.071300px;}
.y1b2{bottom:91.256850px;}
.y13d{bottom:91.437600px;}
.yba{bottom:92.418600px;}
.y1aa{bottom:92.486100px;}
.y1d{bottom:93.648600px;}
.ycf{bottom:93.716100px;}
.yb7{bottom:93.733650px;}
.yb8{bottom:93.736650px;}
.y1a6{bottom:94.445850px;}
.y17a{bottom:96.043650px;}
.y12d{bottom:96.199650px;}
.y18c{bottom:96.711450px;}
.y42{bottom:100.831050px;}
.yb3{bottom:100.848600px;}
.y159{bottom:100.936950px;}
.y156{bottom:100.970100px;}
.y106{bottom:101.020050px;}
.y14c{bottom:101.239350px;}
.y2b{bottom:101.557350px;}
.ye7{bottom:102.715350px;}
.y109{bottom:102.915900px;}
.ye9{bottom:103.316850px;}
.y160{bottom:104.533650px;}
.y95{bottom:106.639350px;}
.y7f{bottom:106.639500px;}
.y6a{bottom:106.639650px;}
.yb9{bottom:108.618600px;}
.y5{bottom:112.394117px;}
.y120{bottom:115.747650px;}
.y1ad{bottom:123.471300px;}
.y1b1{bottom:123.656850px;}
.y13c{bottom:123.837600px;}
.y179{bottom:124.303650px;}
.y1a9{bottom:124.886100px;}
.y1c{bottom:126.048600px;}
.yce{bottom:126.116100px;}
.yb6{bottom:126.133650px;}
.y1a1{bottom:126.138600px;}
.y1a5{bottom:126.845850px;}
.y113{bottom:127.494300px;}
.y94{bottom:128.239350px;}
.y7e{bottom:128.239500px;}
.y12c{bottom:128.599650px;}
.ye6{bottom:129.194100px;}
.y41{bottom:133.231050px;}
.yb2{bottom:133.248600px;}
.y36{bottom:133.255350px;}
.y155{bottom:133.370100px;}
.y105{bottom:133.420050px;}
.y2a{bottom:133.957350px;}
.y15f{bottom:136.933650px;}
.y169{bottom:141.253950px;}
.yc7{bottom:144.587250px;}
.y4{bottom:144.877027px;}
.y178{bottom:145.903650px;}
.y11f{bottom:148.147650px;}
.y93{bottom:149.839350px;}
.y1ac{bottom:155.871300px;}
.y1b0{bottom:156.056850px;}
.y13b{bottom:156.237600px;}
.y1a8{bottom:157.286100px;}
.y1b{bottom:158.448600px;}
.ycd{bottom:158.516100px;}
.y56{bottom:158.533650px;}
.ya7{bottom:158.533800px;}
.y1a0{bottom:158.538600px;}
.y1a4{bottom:159.245850px;}
.y112{bottom:159.894300px;}
.y18b{bottom:160.755450px;}
.y12b{bottom:160.999650px;}
.ye5{bottom:161.594100px;}
.y15b{bottom:165.631050px;}
.y69{bottom:165.648600px;}
.yf6{bottom:165.649050px;}
.y154{bottom:165.770100px;}
.y104{bottom:165.820050px;}
.y15e{bottom:169.333650px;}
.y177{bottom:170.383650px;}
.y92{bottom:171.439350px;}
.yc6{bottom:176.987250px;}
.y11e{bottom:180.547650px;}
.y13a{bottom:188.637600px;}
.y1a{bottom:190.848600px;}
.ycc{bottom:190.916100px;}
.y55{bottom:190.933650px;}
.y7d{bottom:190.933800px;}
.y19f{bottom:190.938600px;}
.y176{bottom:191.983650px;}
.y111{bottom:192.294300px;}
.y18a{bottom:192.777450px;}
.y12a{bottom:193.399650px;}
.ye4{bottom:193.994100px;}
.y40{bottom:198.031050px;}
.y68{bottom:198.048600px;}
.y9b{bottom:198.048750px;}
.yf5{bottom:198.049050px;}
.y153{bottom:198.170100px;}
.y103{bottom:198.220050px;}
.y29{bottom:198.757350px;}
.y168{bottom:200.458950px;}
.y15d{bottom:201.733650px;}
.y1ab{bottom:206.271300px;}
.y1af{bottom:206.456850px;}
.y1a7{bottom:207.686100px;}
.yc5{bottom:209.387250px;}
.y1a3{bottom:209.645850px;}
.y3{bottom:218.487516px;}
.y175{bottom:220.243650px;}
.y189{bottom:221.037450px;}
.y139{bottom:221.037600px;}
.y19{bottom:223.248600px;}
.y91{bottom:223.316100px;}
.y54{bottom:223.333650px;}
.y7c{bottom:223.333800px;}
.y19e{bottom:223.338600px;}
.y110{bottom:224.694300px;}
.y129{bottom:225.799650px;}
.ye3{bottom:226.394100px;}
.y3f{bottom:230.431050px;}
.y67{bottom:230.448600px;}
.y9a{bottom:230.448750px;}
.yf4{bottom:230.449050px;}
.y35{bottom:230.455350px;}
.y152{bottom:230.570100px;}
.y102{bottom:230.620050px;}
.y28{bottom:231.157350px;}
.y15c{bottom:234.133650px;}
.yc4{bottom:241.787250px;}
.y188{bottom:242.637450px;}
.y11d{bottom:245.347650px;}
.y174{bottom:252.265650px;}
.y138{bottom:253.437600px;}
.y18{bottom:255.648600px;}
.y90{bottom:255.716100px;}
.y53{bottom:255.733650px;}
.y7b{bottom:255.733800px;}
.y19d{bottom:255.738600px;}
.y10f{bottom:257.094300px;}
.ye2{bottom:258.794100px;}
.y167{bottom:260.218950px;}
.y3e{bottom:262.831050px;}
.y66{bottom:262.848600px;}
.y99{bottom:262.848750px;}
.yf3{bottom:262.849050px;}
.y34{bottom:262.855350px;}
.y101{bottom:263.020050px;}
.y27{bottom:263.557350px;}
.y187{bottom:267.117450px;}
.yc3{bottom:274.187250px;}
.y11c{bottom:277.747650px;}
.y173{bottom:284.287650px;}
.y137{bottom:285.837600px;}
.y17{bottom:288.048600px;}
.ycb{bottom:288.116100px;}
.y52{bottom:288.133650px;}
.y7a{bottom:288.133800px;}
.y19c{bottom:288.138600px;}
.y186{bottom:288.717450px;}
.y10e{bottom:289.494300px;}
.y128{bottom:290.599650px;}
.ye1{bottom:291.194100px;}
.y3d{bottom:295.231050px;}
.yb1{bottom:295.248600px;}
.yf2{bottom:295.249050px;}
.y33{bottom:295.255350px;}
.y100{bottom:295.420050px;}
.y26{bottom:295.957350px;}
.y2{bottom:296.463153px;}
.yc2{bottom:306.587250px;}
.y11b{bottom:310.147650px;}
.y185{bottom:313.197450px;}
.y172{bottom:316.309650px;}
.y136{bottom:318.237600px;}
.y16{bottom:320.448600px;}
.y8f{bottom:320.516100px;}
.ya9{bottom:320.533650px;}
.y79{bottom:320.533800px;}
.y19b{bottom:320.538600px;}
.y166{bottom:320.593950px;}
.y10d{bottom:321.894300px;}
.y127{bottom:322.999650px;}
.ye0{bottom:323.594100px;}
.ya3{bottom:327.276900px;}
.y3c{bottom:327.631050px;}
.y65{bottom:327.648600px;}
.y98{bottom:327.648750px;}
.yf1{bottom:327.649050px;}
.y32{bottom:327.655350px;}
.y151{bottom:327.770100px;}
.yff{bottom:327.820050px;}
.y25{bottom:328.357350px;}
.y184{bottom:334.797450px;}
.y158{bottom:335.655900px;}
.y1{bottom:337.609362px;}
.yc1{bottom:338.987250px;}
.y11a{bottom:342.547650px;}
.y171{bottom:348.331650px;}
.y135{bottom:350.637600px;}
.y15{bottom:352.848600px;}
.y8e{bottom:352.916100px;}
.y51{bottom:352.933650px;}
.y78{bottom:352.933800px;}
.y19a{bottom:352.938600px;}
.y10c{bottom:354.294300px;}
.y126{bottom:355.399650px;}
.ydf{bottom:355.994100px;}
.y182{bottom:359.277450px;}
.ya2{bottom:359.676900px;}
.y3b{bottom:360.031050px;}
.yb0{bottom:360.048600px;}
.y64{bottom:360.048750px;}
.yf0{bottom:360.049050px;}
.y31{bottom:360.055350px;}
.y150{bottom:360.170100px;}
.yfe{bottom:360.220050px;}
.y24{bottom:360.757350px;}
.y181{bottom:370.077450px;}
.yc0{bottom:371.387250px;}
.y165{bottom:379.273950px;}
.y170{bottom:380.353650px;}
.y183{bottom:380.877450px;}
.y134{bottom:383.037600px;}
.y14{bottom:385.248600px;}
.y8d{bottom:385.316100px;}
.y50{bottom:385.333650px;}
.y97{bottom:385.333800px;}
.y199{bottom:385.338600px;}
.y14a{bottom:385.341600px;}
.y10b{bottom:386.694300px;}
.y125{bottom:387.799650px;}
.yde{bottom:388.394100px;}
.ya1{bottom:392.076900px;}
.y15a{bottom:392.431050px;}
.yaf{bottom:392.448600px;}
.y63{bottom:392.448750px;}
.yef{bottom:392.449050px;}
.y14f{bottom:392.570100px;}
.yb{bottom:403.231050px;}
.ybf{bottom:403.787250px;}
.y121{bottom:407.311350px;}
.y16f{bottom:412.375650px;}
.y133{bottom:415.437600px;}
.y13{bottom:417.648600px;}
.y8c{bottom:417.716100px;}
.y4f{bottom:417.733650px;}
.y77{bottom:417.733800px;}
.y198{bottom:417.738600px;}
.y149{bottom:417.741600px;}
.y10a{bottom:419.094300px;}
.y124{bottom:420.199650px;}
.ydd{bottom:420.794100px;}
.ya0{bottom:424.476900px;}
.y3a{bottom:424.831050px;}
.y5b{bottom:424.831200px;}
.yae{bottom:424.848600px;}
.y62{bottom:424.848750px;}
.y30{bottom:424.855350px;}
.y14e{bottom:424.970100px;}
.yfa{bottom:425.020050px;}
.y23{bottom:425.557350px;}
.y180{bottom:426.669450px;}
.y164{bottom:438.793950px;}
.yd2{bottom:440.745900px;}
.y16e{bottom:444.397650px;}
.y132{bottom:447.837600px;}
.y12{bottom:450.048600px;}
.y8b{bottom:450.116100px;}
.y4e{bottom:450.133650px;}
.y76{bottom:450.133800px;}
.y197{bottom:450.138600px;}
.y148{bottom:450.141600px;}
.y123{bottom:452.599650px;}
.ydc{bottom:453.194100px;}
.y9f{bottom:456.876900px;}
.yd1{bottom:456.945900px;}
.y39{bottom:457.231050px;}
.yad{bottom:457.248600px;}
.y61{bottom:457.248750px;}
.yee{bottom:457.249050px;}
.y2f{bottom:457.255350px;}
.y14d{bottom:457.370100px;}
.yfd{bottom:457.420050px;}
.y22{bottom:457.957350px;}
.ya{bottom:468.031050px;}
.y116{bottom:468.061950px;}
.ybe{bottom:468.587250px;}
.y16c{bottom:479.659650px;}
.y131{bottom:480.237600px;}
.y11{bottom:482.448600px;}
.y8a{bottom:482.516100px;}
.y4d{bottom:482.533650px;}
.y75{bottom:482.533800px;}
.y196{bottom:482.538600px;}
.y147{bottom:482.541600px;}
.y114{bottom:484.248750px;}
.y115{bottom:484.261950px;}
.y122{bottom:484.999650px;}
.y9e{bottom:489.276900px;}
.y163{bottom:489.433950px;}
.y9{bottom:489.631050px;}
.y5a{bottom:489.631200px;}
.yac{bottom:489.648600px;}
.y60{bottom:489.648750px;}
.yed{bottom:489.649050px;}
.y2e{bottom:489.655350px;}
.yf9{bottom:489.820050px;}
.y21{bottom:490.357350px;}
.y16b{bottom:490.459650px;}
.ybd{bottom:500.987250px;}
.y16d{bottom:501.259650px;}
.y162{bottom:507.433950px;}
.y8{bottom:511.231050px;}
.y130{bottom:512.637600px;}
.y157{bottom:514.768350px;}
.y10{bottom:514.848600px;}
.y89{bottom:514.916100px;}
.ya8{bottom:514.933650px;}
.y74{bottom:514.933800px;}
.y195{bottom:514.938600px;}
.y146{bottom:514.941600px;}
.ydb{bottom:517.994100px;}
.y9d{bottom:521.676900px;}
.y38{bottom:522.031050px;}
.y59{bottom:522.031200px;}
.yab{bottom:522.048600px;}
.y5f{bottom:522.048750px;}
.yec{bottom:522.049050px;}
.y2d{bottom:522.055350px;}
.yf8{bottom:522.220050px;}
.y20{bottom:522.757350px;}
.y7{bottom:532.831050px;}
.y17f{bottom:533.121450px;}
.ybc{bottom:533.387250px;}
.y12f{bottom:537.103650px;}
.yf{bottom:547.248600px;}
.y88{bottom:547.316100px;}
.y4c{bottom:547.333650px;}
.y73{bottom:547.333800px;}
.y194{bottom:547.338600px;}
.y145{bottom:547.341600px;}
.yda{bottom:550.394100px;}
.y12e{bottom:553.303650px;}
.y16a{bottom:554.053650px;}
.y9c{bottom:554.076900px;}
.y6{bottom:554.431050px;}
.y58{bottom:554.431200px;}
.yaa{bottom:554.448600px;}
.y5e{bottom:554.448750px;}
.yeb{bottom:554.449050px;}
.y2c{bottom:554.455350px;}
.yf7{bottom:554.620050px;}
.y1f{bottom:555.157350px;}
.y161{bottom:559.461750px;}
.y17e{bottom:565.143450px;}
.ybb{bottom:565.787250px;}
.y14b{bottom:578.899500px;}
.ye{bottom:579.648600px;}
.yd8{bottom:579.716100px;}
.y87{bottom:579.716250px;}
.y4b{bottom:579.733650px;}
.y72{bottom:579.733800px;}
.y193{bottom:579.738600px;}
.y144{bottom:579.741600px;}
.yd9{bottom:582.794100px;}
.y17d{bottom:597.165450px;}
.yd{bottom:612.048600px;}
.yd7{bottom:612.116100px;}
.y86{bottom:612.116250px;}
.y4a{bottom:612.133650px;}
.y71{bottom:612.133800px;}
.y192{bottom:612.138600px;}
.y143{bottom:612.141600px;}
.yd4{bottom:617.911200px;}
.ye8{bottom:628.421700px;}
.y17c{bottom:629.187450px;}
.yd0{bottom:633.048300px;}
.yd3{bottom:634.111200px;}
.y1a2{bottom:640.438050px;}
.yd6{bottom:644.516100px;}
.y85{bottom:644.516250px;}
.y49{bottom:644.533650px;}
.y70{bottom:644.533800px;}
.y191{bottom:644.538600px;}
.y142{bottom:644.541600px;}
.y17b{bottom:661.209450px;}
.y37{bottom:672.841050px;}
.y1e{bottom:673.195350px;}
.y5d{bottom:673.549650px;}
.yfc{bottom:673.903950px;}
.ya5{bottom:674.300850px;}
.y118{bottom:675.270000px;}
.yb5{bottom:675.363900px;}
.yd5{bottom:676.916100px;}
.y84{bottom:676.916250px;}
.y48{bottom:676.933650px;}
.y6f{bottom:676.933800px;}
.y190{bottom:676.938600px;}
.y141{bottom:676.941600px;}
.yca{bottom:709.316100px;}
.y83{bottom:709.316250px;}
.y47{bottom:709.333650px;}
.y96{bottom:709.333800px;}
.y18f{bottom:709.338600px;}
.y140{bottom:709.341600px;}
.y5c{bottom:718.549650px;}
.yfb{bottom:718.903950px;}
.y117{bottom:722.070000px;}
.ya4{bottom:739.100850px;}
.yb4{bottom:740.163900px;}
.yc9{bottom:741.716100px;}
.y82{bottom:741.716250px;}
.y46{bottom:741.733650px;}
.y6e{bottom:741.733800px;}
.y18e{bottom:741.738600px;}
.y13f{bottom:741.741600px;}
.yc8{bottom:774.116100px;}
.y81{bottom:774.116250px;}
.y45{bottom:774.133650px;}
.y6d{bottom:774.133800px;}
.y18d{bottom:774.138600px;}
.y13e{bottom:774.141600px;}
.y44{bottom:829.362150px;}
.ya6{bottom:829.362300px;}
.y6c{bottom:829.363350px;}
.y119{bottom:830.412150px;}
.y107{bottom:830.426400px;}
.y108{bottom:830.427150px;}
.h10{height:36.553507px;}
.hd{height:47.381836px;}
.h8{height:49.992188px;}
.ha{height:52.646484px;}
.h14{height:53.291016px;}
.hf{height:53.965036px;}
.h13{height:58.620117px;}
.h9{height:63.175781px;}
.hc{height:63.949219px;}
.he{height:68.440430px;}
.h5{height:69.242168px;}
.h3{height:73.384254px;}
.hb{height:73.705078px;}
.h4{height:92.333463px;}
.h12{height:106.375781px;}
.h11{height:107.149219px;}
.h2{height:146.768508px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.h6{height:892.914000px;}
.h7{height:893.250000px;}
.w2{width:1262.835000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:85.039350px;}
.x58{left:98.468850px;}
.x4c{left:104.860116px;}
.x2b{left:108.425250px;}
.x39{left:109.488150px;}
.x26{left:110.551200px;}
.x44{left:111.614100px;}
.x49{left:114.463650px;}
.x4b{left:117.179622px;}
.x1{left:118.989816px;}
.x55{left:122.210850px;}
.x53{left:128.042850px;}
.x52{left:131.066850px;}
.x54{left:137.042850px;}
.x4f{left:138.230850px;}
.x57{left:146.744850px;}
.x5a{left:148.418850px;}
.x56{left:150.002850px;}
.x4a{left:155.877783px;}
.x59{left:160.208850px;}
.x4d{left:165.055283px;}
.x6f{left:194.314950px;}
.x17{left:199.259700px;}
.x16{left:202.229700px;}
.x15{left:209.231700px;}
.x18{left:240.209700px;}
.x6b{left:258.278400px;}
.x4e{left:259.621650px;}
.x33{left:262.900950px;}
.x2f{left:273.205350px;}
.xe{left:281.611050px;}
.x32{left:290.278950px;}
.x1f{left:305.726700px;}
.x10{left:307.695450px;}
.x22{left:319.138800px;}
.x48{left:320.574150px;}
.x27{left:356.939700px;}
.x38{left:361.008750px;}
.x50{left:368.360850px;}
.x2e{left:373.033350px;}
.x2a{left:374.173200px;}
.x19{left:391.733700px;}
.x2c{left:402.236250px;}
.x11{left:415.695450px;}
.x34{left:429.418950px;}
.x51{left:446.750850px;}
.x23{left:448.072800px;}
.x24{left:465.388800px;}
.x12{left:467.571450px;}
.x30{left:500.545350px;}
.x47{left:545.653650px;}
.x1a{left:590.525700px;}
.x1c{left:623.917350px;}
.x8{left:627.667350px;}
.x9{left:663.307050px;}
.x13{left:665.049450px;}
.x5b{left:674.330250px;}
.x68{left:678.020250px;}
.x3b{left:683.606700px;}
.x28{left:688.818900px;}
.x66{left:690.278250px;}
.xa{left:693.079050px;}
.x64{left:694.310250px;}
.x5c{left:701.564250px;}
.x36{left:705.762150px;}
.x5f{left:712.472250px;}
.x69{left:717.782250px;}
.x63{left:719.798250px;}
.x1e{left:722.566200px;}
.x3d{left:726.091050px;}
.x35{left:729.102150px;}
.x2d{left:732.906600px;}
.x65{left:739.274250px;}
.x67{left:743.756250px;}
.x5e{left:766.472250px;}
.x3f{left:774.997050px;}
.x40{left:776.977050px;}
.x43{left:780.559050px;}
.x14{left:795.767400px;}
.x21{left:801.113700px;}
.x3e{left:808.153050px;}
.x3{left:811.853550px;}
.x6d{left:824.635500px;}
.x45{left:830.127150px;}
.x41{left:849.553050px;}
.x42{left:871.315050px;}
.x2{left:874.493550px;}
.xc{left:884.975250px;}
.x5d{left:906.764250px;}
.x29{left:907.795200px;}
.x7{left:909.233550px;}
.x1b{left:915.511200px;}
.x3a{left:916.651200px;}
.x6e{left:924.517350px;}
.x3c{left:926.929200px;}
.x60{left:946.598250px;}
.x1d{left:949.117350px;}
.x5{left:953.855550px;}
.x6{left:964.313550px;}
.x37{left:967.042350px;}
.x20{left:982.852350px;}
.x31{left:998.272350px;}
.x4{left:1003.805550px;}
.x62{left:1024.988250px;}
.x61{left:1026.680250px;}
.x6a{left:1028.228250px;}
.x25{left:1066.222350px;}
.x46{left:1096.972350px;}
.x6c{left:1105.312350px;}
.xf{left:1151.992350px;}
.xb{left:1159.801050px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.851733pt;}
.v1{vertical-align:21.312000pt;}
.v4{vertical-align:38.400000pt;}
.ls9{letter-spacing:-4.416000pt;}
.ls8{letter-spacing:-3.733333pt;}
.lse{letter-spacing:-1.973333pt;}
.ls1{letter-spacing:-1.920000pt;}
.lsc{letter-spacing:-1.380544pt;}
.ls2{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.746240pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.559680pt;}
.ls14{letter-spacing:-0.444365pt;}
.ls10{letter-spacing:-0.373120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.372800pt;}
.lsb{letter-spacing:0.373120pt;}
.ls4{letter-spacing:0.640000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.600000pt;}
.ls11{letter-spacing:2.304000pt;}
.ls15{letter-spacing:2.613333pt;}
.ls3{letter-spacing:176.000000pt;}
.wsb6{word-spacing:-16.640000pt;}
.ws77{word-spacing:-16.000000pt;}
.ws3f{word-spacing:-14.720000pt;}
.wscf{word-spacing:-13.333333pt;}
.ws53{word-spacing:-12.000000pt;}
.ws60{word-spacing:-9.701120pt;}
.ws34{word-spacing:-9.328000pt;}
.wsa1{word-spacing:-8.954880pt;}
.ws90{word-spacing:-8.581760pt;}
.ws69{word-spacing:-7.947456pt;}
.ws40{word-spacing:-7.584000pt;}
.wsd9{word-spacing:-5.312000pt;}
.ws3a{word-spacing:-5.120000pt;}
.wsda{word-spacing:-4.480000pt;}
.wsd5{word-spacing:-3.520000pt;}
.ws6d{word-spacing:-3.392000pt;}
.wsbe{word-spacing:-3.328000pt;}
.ws28{word-spacing:-3.136000pt;}
.ws74{word-spacing:-3.072000pt;}
.ws59{word-spacing:-3.024000pt;}
.ws92{word-spacing:-3.008000pt;}
.wsc4{word-spacing:-2.944000pt;}
.ws1e{word-spacing:-2.880000pt;}
.wsc7{word-spacing:-2.816000pt;}
.ws39{word-spacing:-2.752000pt;}
.ws4e{word-spacing:-2.688000pt;}
.ws50{word-spacing:-2.640000pt;}
.ws22{word-spacing:-2.624000pt;}
.wsdd{word-spacing:-2.613333pt;}
.ws36{word-spacing:-2.560000pt;}
.ws3d{word-spacing:-2.496000pt;}
.wsbf{word-spacing:-2.432000pt;}
.ws8e{word-spacing:-2.368000pt;}
.wsa0{word-spacing:-2.304000pt;}
.wsbd{word-spacing:-2.240000pt;}
.ws25{word-spacing:-2.176000pt;}
.wsb4{word-spacing:-2.112000pt;}
.ws89{word-spacing:-2.048000pt;}
.ws38{word-spacing:-1.984000pt;}
.wsa5{word-spacing:-1.968000pt;}
.wsc3{word-spacing:-1.920000pt;}
.ws4a{word-spacing:-1.792000pt;}
.ws8b{word-spacing:-1.728000pt;}
.wsf{word-spacing:-1.664000pt;}
.ws2c{word-spacing:-1.600000pt;}
.wsc8{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.472000pt;}
.wsc5{word-spacing:-1.408000pt;}
.ws2f{word-spacing:-1.344000pt;}
.wsa9{word-spacing:-1.280000pt;}
.ws96{word-spacing:-1.216000pt;}
.ws1f{word-spacing:-1.152000pt;}
.ws5f{word-spacing:-1.088000pt;}
.ws48{word-spacing:-1.024000pt;}
.ws9b{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.896000pt;}
.ws97{word-spacing:-0.864000pt;}
.ws8{word-spacing:-0.832000pt;}
.ws93{word-spacing:-0.768000pt;}
.ws85{word-spacing:-0.720000pt;}
.ws8a{word-spacing:-0.704000pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws26{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws75{word-spacing:-0.448000pt;}
.ws9{word-spacing:-0.384000pt;}
.ws5a{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.256000pt;}
.ws8c{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.128000pt;}
.ws41{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.064000pt;}
.ws12{word-spacing:0.128000pt;}
.ws51{word-spacing:0.144000pt;}
.ws29{word-spacing:0.192000pt;}
.ws57{word-spacing:0.256000pt;}
.ws5{word-spacing:0.320000pt;}
.ws95{word-spacing:0.384000pt;}
.ws17{word-spacing:0.448000pt;}
.wsae{word-spacing:0.512000pt;}
.ws70{word-spacing:0.559680pt;}
.ws37{word-spacing:0.576000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws49{word-spacing:0.704000pt;}
.ws27{word-spacing:0.768000pt;}
.ws88{word-spacing:0.832000pt;}
.ws67{word-spacing:0.896000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws7b{word-spacing:1.024000pt;}
.ws43{word-spacing:1.088000pt;}
.ws2e{word-spacing:1.152000pt;}
.ws52{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.216000pt;}
.wsa{word-spacing:1.280000pt;}
.ws79{word-spacing:1.344000pt;}
.ws55{word-spacing:1.408000pt;}
.ws19{word-spacing:1.472000pt;}
.ws80{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.600000pt;}
.ws6{word-spacing:1.664000pt;}
.ws91{word-spacing:1.728000pt;}
.ws16{word-spacing:1.792000pt;}
.ws54{word-spacing:1.856000pt;}
.ws10{word-spacing:1.920000pt;}
.ws78{word-spacing:1.973333pt;}
.ws15{word-spacing:1.984000pt;}
.wsdb{word-spacing:2.048000pt;}
.ws2a{word-spacing:2.112000pt;}
.ws13{word-spacing:2.176000pt;}
.ws47{word-spacing:2.208000pt;}
.ws6e{word-spacing:2.240000pt;}
.wsaf{word-spacing:2.304000pt;}
.ws65{word-spacing:2.368000pt;}
.ws64{word-spacing:2.432000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws4{word-spacing:2.560000pt;}
.wsbb{word-spacing:2.624000pt;}
.ws18{word-spacing:2.688000pt;}
.ws33{word-spacing:2.752000pt;}
.ws9f{word-spacing:2.816000pt;}
.ws23{word-spacing:2.880000pt;}
.ws4b{word-spacing:2.944000pt;}
.ws35{word-spacing:3.008000pt;}
.ws30{word-spacing:3.072000pt;}
.ws81{word-spacing:3.136000pt;}
.wsac{word-spacing:3.200000pt;}
.ws84{word-spacing:3.264000pt;}
.ws9d{word-spacing:3.328000pt;}
.ws68{word-spacing:3.392000pt;}
.wsc0{word-spacing:3.456000pt;}
.ws5b{word-spacing:3.584000pt;}
.wse{word-spacing:3.648000pt;}
.ws7c{word-spacing:3.712000pt;}
.ws9c{word-spacing:3.776000pt;}
.ws6f{word-spacing:3.840000pt;}
.wsb3{word-spacing:3.904000pt;}
.ws2{word-spacing:3.968000pt;}
.ws45{word-spacing:4.032000pt;}
.ws58{word-spacing:4.096000pt;}
.ws21{word-spacing:4.288000pt;}
.ws44{word-spacing:4.352000pt;}
.ws1{word-spacing:4.416000pt;}
.ws98{word-spacing:4.480000pt;}
.ws62{word-spacing:4.544000pt;}
.ws71{word-spacing:4.608000pt;}
.ws4c{word-spacing:4.672000pt;}
.ws6a{word-spacing:4.736000pt;}
.ws83{word-spacing:4.800000pt;}
.ws6c{word-spacing:4.864000pt;}
.wsb0{word-spacing:4.928000pt;}
.ws63{word-spacing:5.056000pt;}
.ws5e{word-spacing:5.120000pt;}
.ws1d{word-spacing:5.184000pt;}
.ws46{word-spacing:5.248000pt;}
.ws32{word-spacing:5.376000pt;}
.wsa4{word-spacing:5.632000pt;}
.ws5c{word-spacing:5.696000pt;}
.wsb{word-spacing:5.760000pt;}
.ws61{word-spacing:5.824000pt;}
.ws3c{word-spacing:5.888000pt;}
.ws73{word-spacing:5.952000pt;}
.ws6b{word-spacing:6.016000pt;}
.ws7{word-spacing:6.080000pt;}
.ws86{word-spacing:6.144000pt;}
.wsb7{word-spacing:6.208000pt;}
.ws72{word-spacing:6.272000pt;}
.ws82{word-spacing:6.336000pt;}
.ws42{word-spacing:6.400000pt;}
.ws4f{word-spacing:6.464000pt;}
.wsa6{word-spacing:6.528000pt;}
.wsa8{word-spacing:6.592000pt;}
.ws87{word-spacing:6.848000pt;}
.ws31{word-spacing:6.976000pt;}
.wsad{word-spacing:7.040000pt;}
.ws20{word-spacing:7.104000pt;}
.wsa7{word-spacing:7.168000pt;}
.ws56{word-spacing:7.232000pt;}
.wsb2{word-spacing:7.360000pt;}
.wsa2{word-spacing:7.552000pt;}
.wsc1{word-spacing:7.616000pt;}
.wsb9{word-spacing:7.680000pt;}
.ws1b{word-spacing:7.808000pt;}
.wsc2{word-spacing:8.000000pt;}
.ws7f{word-spacing:8.128000pt;}
.wsa3{word-spacing:8.192000pt;}
.wsaa{word-spacing:8.320000pt;}
.ws9a{word-spacing:8.384000pt;}
.ws8f{word-spacing:8.448000pt;}
.ws94{word-spacing:8.512000pt;}
.wsc6{word-spacing:8.576000pt;}
.ws76{word-spacing:8.640000pt;}
.ws7a{word-spacing:8.768000pt;}
.wsbc{word-spacing:8.896000pt;}
.wsb8{word-spacing:8.960000pt;}
.wsd7{word-spacing:9.024000pt;}
.ws9e{word-spacing:9.088000pt;}
.wsb5{word-spacing:9.152000pt;}
.ws8d{word-spacing:9.280000pt;}
.ws7d{word-spacing:9.344000pt;}
.wsba{word-spacing:9.408000pt;}
.ws99{word-spacing:9.536000pt;}
.wsdc{word-spacing:9.856000pt;}
.ws66{word-spacing:10.368000pt;}
.wsab{word-spacing:10.560000pt;}
.wsc{word-spacing:11.072000pt;}
.wsd{word-spacing:11.136000pt;}
.wsd8{word-spacing:12.544000pt;}
.wsd6{word-spacing:13.120000pt;}
.wsca{word-spacing:31.068506pt;}
.ws3e{word-spacing:33.360000pt;}
.wscb{word-spacing:35.030758pt;}
.wscc{word-spacing:36.437914pt;}
.wscd{word-spacing:47.695155pt;}
.wsd4{word-spacing:56.339200pt;}
.wsc9{word-spacing:71.727885pt;}
.wsce{word-spacing:76.171533pt;}
.wsd0{word-spacing:102.784000pt;}
.wsd1{word-spacing:381.632000pt;}
.wsd2{word-spacing:405.632000pt;}
.wsd3{word-spacing:421.632000pt;}
._1{margin-left:-151.515224pt;}
._3{margin-left:-144.371712pt;}
._0{margin-left:-82.055106pt;}
._2{margin-left:-74.722948pt;}
._e{margin-left:-70.973955pt;}
._b{margin-left:-68.907619pt;}
._4{margin-left:-64.102965pt;}
._9{margin-left:-59.859399pt;}
._c{margin-left:-55.582924pt;}
._12{margin-left:-52.508178pt;}
._19{margin-left:-50.044324pt;}
._14{margin-left:-48.521866pt;}
._f{margin-left:-45.408453pt;}
._17{margin-left:-42.329472pt;}
._d{margin-left:-40.550309pt;}
._18{margin-left:-35.183890pt;}
._16{margin-left:-34.113262pt;}
._27{margin-left:-33.110400pt;}
._8{margin-left:-31.169853pt;}
._15{margin-left:-30.145999pt;}
._5{margin-left:-25.906060pt;}
._a{margin-left:-24.810541pt;}
._10{margin-left:-23.076645pt;}
._7{margin-left:-20.501746pt;}
._11{margin-left:-19.252828pt;}
._6{margin-left:-15.190792pt;}
._20{margin-left:-9.107365pt;}
._26{margin-left:-7.795200pt;}
._1f{margin-left:-6.393600pt;}
._28{margin-left:-5.299200pt;}
._13{margin-left:-3.891035pt;}
._1a{margin-left:-2.406400pt;}
._1b{margin-left:-1.152000pt;}
._1e{width:1.529600pt;}
._22{width:3.091200pt;}
._23{width:4.358235pt;}
._24{width:5.388800pt;}
._1c{width:6.284800pt;}
._21{width:7.929600pt;}
._2d{width:8.953600pt;}
._2e{width:9.875200pt;}
._2c{width:10.950400pt;}
._4f{width:13.689600pt;}
._50{width:14.918400pt;}
._25{width:36.000000pt;}
._2a{width:38.640000pt;}
._33{width:49.991040pt;}
._34{width:62.655437pt;}
._4c{width:74.969600pt;}
._2f{width:77.360533pt;}
._40{width:82.048000pt;}
._35{width:95.501402pt;}
._49{width:98.048000pt;}
._36{width:99.318376pt;}
._32{width:102.277965pt;}
._3d{width:114.048000pt;}
._3a{width:130.048000pt;}
._30{width:168.320000pt;}
._1d{width:174.272000pt;}
._2b{width:176.448000pt;}
._31{width:178.560000pt;}
._44{width:184.102070pt;}
._3f{width:190.720000pt;}
._39{width:206.720000pt;}
._4d{width:214.144000pt;}
._37{width:228.352000pt;}
._3e{width:283.699035pt;}
._3b{width:304.256000pt;}
._38{width:315.008000pt;}
._3c{width:336.320000pt;}
._42{width:354.944000pt;}
._48{width:362.944000pt;}
._43{width:373.696000pt;}
._41{width:382.528000pt;}
._45{width:390.592000pt;}
._46{width:406.592000pt;}
._4e{width:700.736000pt;}
._47{width:784.192000pt;}
._4a{width:800.256000pt;}
._4b{width:818.048000pt;}
._29{width:2527.146667pt;}
.fsa{font-size:37.030400pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.297152pt;}
.fs9{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:92.406784pt;}
.fs1{font-size:96.247808pt;}
.fs0{font-size:192.495616pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:38.944133pt;}
.yc{bottom:38.944267pt;}
.y57{bottom:75.590533pt;}
.y80{bottom:75.590667pt;}
.y6b{bottom:75.590800pt;}
.yea{bottom:77.437200pt;}
.y1ae{bottom:80.952267pt;}
.y1b2{bottom:81.117200pt;}
.y13d{bottom:81.277867pt;}
.yba{bottom:82.149867pt;}
.y1aa{bottom:82.209867pt;}
.y1d{bottom:83.243200pt;}
.ycf{bottom:83.303200pt;}
.yb7{bottom:83.318800pt;}
.yb8{bottom:83.321467pt;}
.y1a6{bottom:83.951867pt;}
.y17a{bottom:85.372133pt;}
.y12d{bottom:85.510800pt;}
.y18c{bottom:85.965733pt;}
.y42{bottom:89.627600pt;}
.yb3{bottom:89.643200pt;}
.y159{bottom:89.721733pt;}
.y156{bottom:89.751200pt;}
.y106{bottom:89.795600pt;}
.y14c{bottom:89.990533pt;}
.y2b{bottom:90.273200pt;}
.ye7{bottom:91.302533pt;}
.y109{bottom:91.480800pt;}
.ye9{bottom:91.837200pt;}
.y160{bottom:92.918800pt;}
.y95{bottom:94.790533pt;}
.y7f{bottom:94.790667pt;}
.y6a{bottom:94.790800pt;}
.yb9{bottom:96.549867pt;}
.y5{bottom:99.905882pt;}
.y120{bottom:102.886800pt;}
.y1ad{bottom:109.752267pt;}
.y1b1{bottom:109.917200pt;}
.y13c{bottom:110.077867pt;}
.y179{bottom:110.492133pt;}
.y1a9{bottom:111.009867pt;}
.y1c{bottom:112.043200pt;}
.yce{bottom:112.103200pt;}
.yb6{bottom:112.118800pt;}
.y1a1{bottom:112.123200pt;}
.y1a5{bottom:112.751867pt;}
.y113{bottom:113.328267pt;}
.y94{bottom:113.990533pt;}
.y7e{bottom:113.990667pt;}
.y12c{bottom:114.310800pt;}
.ye6{bottom:114.839200pt;}
.y41{bottom:118.427600pt;}
.yb2{bottom:118.443200pt;}
.y36{bottom:118.449200pt;}
.y155{bottom:118.551200pt;}
.y105{bottom:118.595600pt;}
.y2a{bottom:119.073200pt;}
.y15f{bottom:121.718800pt;}
.y169{bottom:125.559067pt;}
.yc7{bottom:128.522000pt;}
.y4{bottom:128.779580pt;}
.y178{bottom:129.692133pt;}
.y11f{bottom:131.686800pt;}
.y93{bottom:133.190533pt;}
.y1ac{bottom:138.552267pt;}
.y1b0{bottom:138.717200pt;}
.y13b{bottom:138.877867pt;}
.y1a8{bottom:139.809867pt;}
.y1b{bottom:140.843200pt;}
.ycd{bottom:140.903200pt;}
.y56{bottom:140.918800pt;}
.ya7{bottom:140.918933pt;}
.y1a0{bottom:140.923200pt;}
.y1a4{bottom:141.551867pt;}
.y112{bottom:142.128267pt;}
.y18b{bottom:142.893733pt;}
.y12b{bottom:143.110800pt;}
.ye5{bottom:143.639200pt;}
.y15b{bottom:147.227600pt;}
.y69{bottom:147.243200pt;}
.yf6{bottom:147.243600pt;}
.y154{bottom:147.351200pt;}
.y104{bottom:147.395600pt;}
.y15e{bottom:150.518800pt;}
.y177{bottom:151.452133pt;}
.y92{bottom:152.390533pt;}
.yc6{bottom:157.322000pt;}
.y11e{bottom:160.486800pt;}
.y13a{bottom:167.677867pt;}
.y1a{bottom:169.643200pt;}
.ycc{bottom:169.703200pt;}
.y55{bottom:169.718800pt;}
.y7d{bottom:169.718933pt;}
.y19f{bottom:169.723200pt;}
.y176{bottom:170.652133pt;}
.y111{bottom:170.928267pt;}
.y18a{bottom:171.357733pt;}
.y12a{bottom:171.910800pt;}
.ye4{bottom:172.439200pt;}
.y40{bottom:176.027600pt;}
.y68{bottom:176.043200pt;}
.y9b{bottom:176.043333pt;}
.yf5{bottom:176.043600pt;}
.y153{bottom:176.151200pt;}
.y103{bottom:176.195600pt;}
.y29{bottom:176.673200pt;}
.y168{bottom:178.185733pt;}
.y15d{bottom:179.318800pt;}
.y1ab{bottom:183.352267pt;}
.y1af{bottom:183.517200pt;}
.y1a7{bottom:184.609867pt;}
.yc5{bottom:186.122000pt;}
.y1a3{bottom:186.351867pt;}
.y3{bottom:194.211125pt;}
.y175{bottom:195.772133pt;}
.y189{bottom:196.477733pt;}
.y139{bottom:196.477867pt;}
.y19{bottom:198.443200pt;}
.y91{bottom:198.503200pt;}
.y54{bottom:198.518800pt;}
.y7c{bottom:198.518933pt;}
.y19e{bottom:198.523200pt;}
.y110{bottom:199.728267pt;}
.y129{bottom:200.710800pt;}
.ye3{bottom:201.239200pt;}
.y3f{bottom:204.827600pt;}
.y67{bottom:204.843200pt;}
.y9a{bottom:204.843333pt;}
.yf4{bottom:204.843600pt;}
.y35{bottom:204.849200pt;}
.y152{bottom:204.951200pt;}
.y102{bottom:204.995600pt;}
.y28{bottom:205.473200pt;}
.y15c{bottom:208.118800pt;}
.yc4{bottom:214.922000pt;}
.y188{bottom:215.677733pt;}
.y11d{bottom:218.086800pt;}
.y174{bottom:224.236133pt;}
.y138{bottom:225.277867pt;}
.y18{bottom:227.243200pt;}
.y90{bottom:227.303200pt;}
.y53{bottom:227.318800pt;}
.y7b{bottom:227.318933pt;}
.y19d{bottom:227.323200pt;}
.y10f{bottom:228.528267pt;}
.ye2{bottom:230.039200pt;}
.y167{bottom:231.305733pt;}
.y3e{bottom:233.627600pt;}
.y66{bottom:233.643200pt;}
.y99{bottom:233.643333pt;}
.yf3{bottom:233.643600pt;}
.y34{bottom:233.649200pt;}
.y101{bottom:233.795600pt;}
.y27{bottom:234.273200pt;}
.y187{bottom:237.437733pt;}
.yc3{bottom:243.722000pt;}
.y11c{bottom:246.886800pt;}
.y173{bottom:252.700133pt;}
.y137{bottom:254.077867pt;}
.y17{bottom:256.043200pt;}
.ycb{bottom:256.103200pt;}
.y52{bottom:256.118800pt;}
.y7a{bottom:256.118933pt;}
.y19c{bottom:256.123200pt;}
.y186{bottom:256.637733pt;}
.y10e{bottom:257.328267pt;}
.y128{bottom:258.310800pt;}
.ye1{bottom:258.839200pt;}
.y3d{bottom:262.427600pt;}
.yb1{bottom:262.443200pt;}
.yf2{bottom:262.443600pt;}
.y33{bottom:262.449200pt;}
.y100{bottom:262.595600pt;}
.y26{bottom:263.073200pt;}
.y2{bottom:263.522803pt;}
.yc2{bottom:272.522000pt;}
.y11b{bottom:275.686800pt;}
.y185{bottom:278.397733pt;}
.y172{bottom:281.164133pt;}
.y136{bottom:282.877867pt;}
.y16{bottom:284.843200pt;}
.y8f{bottom:284.903200pt;}
.ya9{bottom:284.918800pt;}
.y79{bottom:284.918933pt;}
.y19b{bottom:284.923200pt;}
.y166{bottom:284.972400pt;}
.y10d{bottom:286.128267pt;}
.y127{bottom:287.110800pt;}
.ye0{bottom:287.639200pt;}
.ya3{bottom:290.912800pt;}
.y3c{bottom:291.227600pt;}
.y65{bottom:291.243200pt;}
.y98{bottom:291.243333pt;}
.yf1{bottom:291.243600pt;}
.y32{bottom:291.249200pt;}
.y151{bottom:291.351200pt;}
.yff{bottom:291.395600pt;}
.y25{bottom:291.873200pt;}
.y184{bottom:297.597733pt;}
.y158{bottom:298.360800pt;}
.y1{bottom:300.097210pt;}
.yc1{bottom:301.322000pt;}
.y11a{bottom:304.486800pt;}
.y171{bottom:309.628133pt;}
.y135{bottom:311.677867pt;}
.y15{bottom:313.643200pt;}
.y8e{bottom:313.703200pt;}
.y51{bottom:313.718800pt;}
.y78{bottom:313.718933pt;}
.y19a{bottom:313.723200pt;}
.y10c{bottom:314.928267pt;}
.y126{bottom:315.910800pt;}
.ydf{bottom:316.439200pt;}
.y182{bottom:319.357733pt;}
.ya2{bottom:319.712800pt;}
.y3b{bottom:320.027600pt;}
.yb0{bottom:320.043200pt;}
.y64{bottom:320.043333pt;}
.yf0{bottom:320.043600pt;}
.y31{bottom:320.049200pt;}
.y150{bottom:320.151200pt;}
.yfe{bottom:320.195600pt;}
.y24{bottom:320.673200pt;}
.y181{bottom:328.957733pt;}
.yc0{bottom:330.122000pt;}
.y165{bottom:337.132400pt;}
.y170{bottom:338.092133pt;}
.y183{bottom:338.557733pt;}
.y134{bottom:340.477867pt;}
.y14{bottom:342.443200pt;}
.y8d{bottom:342.503200pt;}
.y50{bottom:342.518800pt;}
.y97{bottom:342.518933pt;}
.y199{bottom:342.523200pt;}
.y14a{bottom:342.525867pt;}
.y10b{bottom:343.728267pt;}
.y125{bottom:344.710800pt;}
.yde{bottom:345.239200pt;}
.ya1{bottom:348.512800pt;}
.y15a{bottom:348.827600pt;}
.yaf{bottom:348.843200pt;}
.y63{bottom:348.843333pt;}
.yef{bottom:348.843600pt;}
.y14f{bottom:348.951200pt;}
.yb{bottom:358.427600pt;}
.ybf{bottom:358.922000pt;}
.y121{bottom:362.054533pt;}
.y16f{bottom:366.556133pt;}
.y133{bottom:369.277867pt;}
.y13{bottom:371.243200pt;}
.y8c{bottom:371.303200pt;}
.y4f{bottom:371.318800pt;}
.y77{bottom:371.318933pt;}
.y198{bottom:371.323200pt;}
.y149{bottom:371.325867pt;}
.y10a{bottom:372.528267pt;}
.y124{bottom:373.510800pt;}
.ydd{bottom:374.039200pt;}
.ya0{bottom:377.312800pt;}
.y3a{bottom:377.627600pt;}
.y5b{bottom:377.627733pt;}
.yae{bottom:377.643200pt;}
.y62{bottom:377.643333pt;}
.y30{bottom:377.649200pt;}
.y14e{bottom:377.751200pt;}
.yfa{bottom:377.795600pt;}
.y23{bottom:378.273200pt;}
.y180{bottom:379.261733pt;}
.y164{bottom:390.039067pt;}
.yd2{bottom:391.774133pt;}
.y16e{bottom:395.020133pt;}
.y132{bottom:398.077867pt;}
.y12{bottom:400.043200pt;}
.y8b{bottom:400.103200pt;}
.y4e{bottom:400.118800pt;}
.y76{bottom:400.118933pt;}
.y197{bottom:400.123200pt;}
.y148{bottom:400.125867pt;}
.y123{bottom:402.310800pt;}
.ydc{bottom:402.839200pt;}
.y9f{bottom:406.112800pt;}
.yd1{bottom:406.174133pt;}
.y39{bottom:406.427600pt;}
.yad{bottom:406.443200pt;}
.y61{bottom:406.443333pt;}
.yee{bottom:406.443600pt;}
.y2f{bottom:406.449200pt;}
.y14d{bottom:406.551200pt;}
.yfd{bottom:406.595600pt;}
.y22{bottom:407.073200pt;}
.ya{bottom:416.027600pt;}
.y116{bottom:416.055067pt;}
.ybe{bottom:416.522000pt;}
.y16c{bottom:426.364133pt;}
.y131{bottom:426.877867pt;}
.y11{bottom:428.843200pt;}
.y8a{bottom:428.903200pt;}
.y4d{bottom:428.918800pt;}
.y75{bottom:428.918933pt;}
.y196{bottom:428.923200pt;}
.y147{bottom:428.925867pt;}
.y114{bottom:430.443333pt;}
.y115{bottom:430.455067pt;}
.y122{bottom:431.110800pt;}
.y9e{bottom:434.912800pt;}
.y163{bottom:435.052400pt;}
.y9{bottom:435.227600pt;}
.y5a{bottom:435.227733pt;}
.yac{bottom:435.243200pt;}
.y60{bottom:435.243333pt;}
.yed{bottom:435.243600pt;}
.y2e{bottom:435.249200pt;}
.yf9{bottom:435.395600pt;}
.y21{bottom:435.873200pt;}
.y16b{bottom:435.964133pt;}
.ybd{bottom:445.322000pt;}
.y16d{bottom:445.564133pt;}
.y162{bottom:451.052400pt;}
.y8{bottom:454.427600pt;}
.y130{bottom:455.677867pt;}
.y157{bottom:457.571867pt;}
.y10{bottom:457.643200pt;}
.y89{bottom:457.703200pt;}
.ya8{bottom:457.718800pt;}
.y74{bottom:457.718933pt;}
.y195{bottom:457.723200pt;}
.y146{bottom:457.725867pt;}
.ydb{bottom:460.439200pt;}
.y9d{bottom:463.712800pt;}
.y38{bottom:464.027600pt;}
.y59{bottom:464.027733pt;}
.yab{bottom:464.043200pt;}
.y5f{bottom:464.043333pt;}
.yec{bottom:464.043600pt;}
.y2d{bottom:464.049200pt;}
.yf8{bottom:464.195600pt;}
.y20{bottom:464.673200pt;}
.y7{bottom:473.627600pt;}
.y17f{bottom:473.885733pt;}
.ybc{bottom:474.122000pt;}
.y12f{bottom:477.425467pt;}
.yf{bottom:486.443200pt;}
.y88{bottom:486.503200pt;}
.y4c{bottom:486.518800pt;}
.y73{bottom:486.518933pt;}
.y194{bottom:486.523200pt;}
.y145{bottom:486.525867pt;}
.yda{bottom:489.239200pt;}
.y12e{bottom:491.825467pt;}
.y16a{bottom:492.492133pt;}
.y9c{bottom:492.512800pt;}
.y6{bottom:492.827600pt;}
.y58{bottom:492.827733pt;}
.yaa{bottom:492.843200pt;}
.y5e{bottom:492.843333pt;}
.yeb{bottom:492.843600pt;}
.y2c{bottom:492.849200pt;}
.yf7{bottom:492.995600pt;}
.y1f{bottom:493.473200pt;}
.y161{bottom:497.299333pt;}
.y17e{bottom:502.349733pt;}
.ybb{bottom:502.922000pt;}
.y14b{bottom:514.577333pt;}
.ye{bottom:515.243200pt;}
.yd8{bottom:515.303200pt;}
.y87{bottom:515.303333pt;}
.y4b{bottom:515.318800pt;}
.y72{bottom:515.318933pt;}
.y193{bottom:515.323200pt;}
.y144{bottom:515.325867pt;}
.yd9{bottom:518.039200pt;}
.y17d{bottom:530.813733pt;}
.yd{bottom:544.043200pt;}
.yd7{bottom:544.103200pt;}
.y86{bottom:544.103333pt;}
.y4a{bottom:544.118800pt;}
.y71{bottom:544.118933pt;}
.y192{bottom:544.123200pt;}
.y143{bottom:544.125867pt;}
.yd4{bottom:549.254400pt;}
.ye8{bottom:558.597067pt;}
.y17c{bottom:559.277733pt;}
.yd0{bottom:562.709600pt;}
.yd3{bottom:563.654400pt;}
.y1a2{bottom:569.278267pt;}
.yd6{bottom:572.903200pt;}
.y85{bottom:572.903333pt;}
.y49{bottom:572.918800pt;}
.y70{bottom:572.918933pt;}
.y191{bottom:572.923200pt;}
.y142{bottom:572.925867pt;}
.y17b{bottom:587.741733pt;}
.y37{bottom:598.080933pt;}
.y1e{bottom:598.395867pt;}
.y5d{bottom:598.710800pt;}
.yfc{bottom:599.025733pt;}
.ya5{bottom:599.378533pt;}
.y118{bottom:600.240000pt;}
.yb5{bottom:600.323467pt;}
.yd5{bottom:601.703200pt;}
.y84{bottom:601.703333pt;}
.y48{bottom:601.718800pt;}
.y6f{bottom:601.718933pt;}
.y190{bottom:601.723200pt;}
.y141{bottom:601.725867pt;}
.yca{bottom:630.503200pt;}
.y83{bottom:630.503333pt;}
.y47{bottom:630.518800pt;}
.y96{bottom:630.518933pt;}
.y18f{bottom:630.523200pt;}
.y140{bottom:630.525867pt;}
.y5c{bottom:638.710800pt;}
.yfb{bottom:639.025733pt;}
.y117{bottom:641.840000pt;}
.ya4{bottom:656.978533pt;}
.yb4{bottom:657.923467pt;}
.yc9{bottom:659.303200pt;}
.y82{bottom:659.303333pt;}
.y46{bottom:659.318800pt;}
.y6e{bottom:659.318933pt;}
.y18e{bottom:659.323200pt;}
.y13f{bottom:659.325867pt;}
.yc8{bottom:688.103200pt;}
.y81{bottom:688.103333pt;}
.y45{bottom:688.118800pt;}
.y6d{bottom:688.118933pt;}
.y18d{bottom:688.123200pt;}
.y13e{bottom:688.125867pt;}
.y44{bottom:737.210800pt;}
.ya6{bottom:737.210933pt;}
.y6c{bottom:737.211867pt;}
.y119{bottom:738.144133pt;}
.y107{bottom:738.156800pt;}
.y108{bottom:738.157467pt;}
.h10{height:32.492006pt;}
.hd{height:42.117188pt;}
.h8{height:44.437500pt;}
.ha{height:46.796875pt;}
.h14{height:47.369792pt;}
.hf{height:47.968921pt;}
.h13{height:52.106771pt;}
.h9{height:56.156250pt;}
.hc{height:56.843750pt;}
.he{height:60.835938pt;}
.h5{height:61.548594pt;}
.h3{height:65.230448pt;}
.hb{height:65.515625pt;}
.h4{height:82.074190pt;}
.h12{height:94.556250pt;}
.h11{height:95.243750pt;}
.h2{height:130.460896pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.h6{height:793.701333pt;}
.h7{height:794.000000pt;}
.w2{width:1122.520000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:75.590533pt;}
.x58{left:87.527867pt;}
.x4c{left:93.208992pt;}
.x2b{left:96.378000pt;}
.x39{left:97.322800pt;}
.x26{left:98.267733pt;}
.x44{left:99.212533pt;}
.x49{left:101.745467pt;}
.x4b{left:104.159664pt;}
.x1{left:105.768726pt;}
.x55{left:108.631867pt;}
.x53{left:113.815867pt;}
.x52{left:116.503867pt;}
.x54{left:121.815867pt;}
.x4f{left:122.871867pt;}
.x57{left:130.439867pt;}
.x5a{left:131.927867pt;}
.x56{left:133.335867pt;}
.x4a{left:138.558029pt;}
.x59{left:142.407867pt;}
.x4d{left:146.715807pt;}
.x6f{left:172.724400pt;}
.x17{left:177.119733pt;}
.x16{left:179.759733pt;}
.x15{left:185.983733pt;}
.x18{left:213.519733pt;}
.x6b{left:229.580800pt;}
.x4e{left:230.774800pt;}
.x33{left:233.689733pt;}
.x2f{left:242.849200pt;}
.xe{left:250.320933pt;}
.x32{left:258.025733pt;}
.x1f{left:271.757067pt;}
.x10{left:273.507067pt;}
.x22{left:283.678933pt;}
.x48{left:284.954800pt;}
.x27{left:317.279733pt;}
.x38{left:320.896667pt;}
.x50{left:327.431867pt;}
.x2e{left:331.585200pt;}
.x2a{left:332.598400pt;}
.x19{left:348.207733pt;}
.x2c{left:357.543333pt;}
.x11{left:369.507067pt;}
.x34{left:381.705733pt;}
.x51{left:397.111867pt;}
.x23{left:398.286933pt;}
.x24{left:413.678933pt;}
.x12{left:415.619067pt;}
.x30{left:444.929200pt;}
.x47{left:485.025467pt;}
.x1a{left:524.911733pt;}
.x1c{left:554.593200pt;}
.x8{left:557.926533pt;}
.x9{left:589.606267pt;}
.x13{left:591.155067pt;}
.x5b{left:599.404667pt;}
.x68{left:602.684667pt;}
.x3b{left:607.650400pt;}
.x28{left:612.283467pt;}
.x66{left:613.580667pt;}
.xa{left:616.070267pt;}
.x64{left:617.164667pt;}
.x5c{left:623.612667pt;}
.x36{left:627.344133pt;}
.x5f{left:633.308667pt;}
.x69{left:638.028667pt;}
.x63{left:639.820667pt;}
.x1e{left:642.281067pt;}
.x3d{left:645.414267pt;}
.x35{left:648.090800pt;}
.x2d{left:651.472533pt;}
.x65{left:657.132667pt;}
.x67{left:661.116667pt;}
.x5e{left:681.308667pt;}
.x3f{left:688.886267pt;}
.x40{left:690.646267pt;}
.x43{left:693.830267pt;}
.x14{left:707.348800pt;}
.x21{left:712.101067pt;}
.x3e{left:718.358267pt;}
.x3{left:721.647600pt;}
.x6d{left:733.009333pt;}
.x45{left:737.890800pt;}
.x41{left:755.158267pt;}
.x42{left:774.502267pt;}
.x2{left:777.327600pt;}
.xc{left:786.644667pt;}
.x5d{left:806.012667pt;}
.x29{left:806.929067pt;}
.x7{left:808.207600pt;}
.x1b{left:813.787733pt;}
.x3a{left:814.801067pt;}
.x6e{left:821.793200pt;}
.x3c{left:823.937067pt;}
.x60{left:841.420667pt;}
.x1d{left:843.659867pt;}
.x5{left:847.871600pt;}
.x6{left:857.167600pt;}
.x37{left:859.593200pt;}
.x20{left:873.646533pt;}
.x31{left:887.353200pt;}
.x4{left:892.271600pt;}
.x62{left:911.100667pt;}
.x61{left:912.604667pt;}
.x6a{left:913.980667pt;}
.x25{left:947.753200pt;}
.x46{left:975.086533pt;}
.x6c{left:982.499867pt;}
.xf{left:1023.993200pt;}
.xb{left:1030.934267pt;}
}




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