
    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_4429221eb9dad9d89a521fef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_681ae6e2e47b6b28337999d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_605ca1229a26fad5f10bcf94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4e8c131d22a22fa8a5d7063d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7cf2d5d39c19660f989d308e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0035dbab7263a57113ae4746.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844727;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_ce00dfce4dd1c5a101f0f3c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844727;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_138b08c6f4599411694fdf5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_076a9e2a94de7c52975c1fe2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.844727;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_abccd574c044bf37a0f4fcca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls43{letter-spacing:-2.202480px;}
.ls22{letter-spacing:-1.584000px;}
.ls46{letter-spacing:-1.436400px;}
.ls3a{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.673920px;}
.ls28{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.336960px;}
.ls35{letter-spacing:-0.298800px;}
.ls44{letter-spacing:-0.287280px;}
.ls6{letter-spacing:-0.240480px;}
.ls21{letter-spacing:-0.239040px;}
.ls23{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.132480px;}
.ls20{letter-spacing:-0.119520px;}
.ls25{letter-spacing:-0.084240px;}
.ls38{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.131760px;}
.ls1c{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.156240px;}
.ls9{letter-spacing:0.191520px;}
.ls1a{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.264960px;}
.ls7{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.336960px;}
.ls0{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.861120px;}
.ls3b{letter-spacing:0.864000px;}
.ls36{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.589760px;}
.ls14{letter-spacing:2.318400px;}
.ls3f{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.744000px;}
.ls11{letter-spacing:3.775680px;}
.ls8{letter-spacing:4.464000px;}
.ls39{letter-spacing:5.184000px;}
.ls2d{letter-spacing:5.904000px;}
.lse{letter-spacing:6.624000px;}
.ls13{letter-spacing:6.768000px;}
.ls12{letter-spacing:7.352640px;}
.ls37{letter-spacing:8.784000px;}
.ls2b{letter-spacing:9.504000px;}
.ls2c{letter-spacing:10.224000px;}
.ls17{letter-spacing:10.368000px;}
.ls2e{letter-spacing:11.664000px;}
.ls29{letter-spacing:12.384000px;}
.lsf{letter-spacing:13.115520px;}
.ls3c{letter-spacing:13.824000px;}
.ls41{letter-spacing:14.544000px;}
.ls10{letter-spacing:14.572800px;}
.ls27{letter-spacing:15.264000px;}
.ls32{letter-spacing:16.704000px;}
.ls3d{letter-spacing:17.424000px;}
.lsc{letter-spacing:18.288000px;}
.ls45{letter-spacing:28.224000px;}
.ls2f{letter-spacing:31.104000px;}
.ls42{letter-spacing:33.264000px;}
.ls40{letter-spacing:41.184000px;}
.ls33{letter-spacing:44.784000px;}
.lsb{letter-spacing:57.029760px;}
.ls34{letter-spacing:59.700240px;}
.lsd{letter-spacing:72.864000px;}
.ls1f{letter-spacing:77.909760px;}
.ls15{letter-spacing:101.678400px;}
.ls3e{letter-spacing:106.900560px;}
.ls24{letter-spacing:152.979840px;}
.ls1e{letter-spacing:183.021120px;}
.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;}
}
.ws53{word-spacing:-72.000000px;}
.ws1{word-spacing:-36.144000px;}
.ws0{word-spacing:-33.071760px;}
.wsa{word-spacing:-26.812800px;}
.ws80{word-spacing:-26.334000px;}
.ws87{word-spacing:-25.184880px;}
.ws7a{word-spacing:-24.418800px;}
.ws6d{word-spacing:-23.755680px;}
.ws2f{word-spacing:-23.334480px;}
.ws1c{word-spacing:-23.081760px;}
.wsb{word-spacing:-20.304000px;}
.ws1d{word-spacing:-20.232000px;}
.ws23{word-spacing:-20.160000px;}
.ws52{word-spacing:-20.016000px;}
.ws1e{word-spacing:-19.872000px;}
.ws7b{word-spacing:-19.800000px;}
.ws30{word-spacing:-19.584000px;}
.ws4a{word-spacing:-19.440000px;}
.ws2a{word-spacing:-18.432000px;}
.ws22{word-spacing:-18.414720px;}
.ws1f{word-spacing:-18.282240px;}
.ws29{word-spacing:-16.493760px;}
.ws20{word-spacing:-16.488000px;}
.ws21{word-spacing:-15.235200px;}
.ws65{word-spacing:-3.024000px;}
.ws63{word-spacing:-2.304000px;}
.ws64{word-spacing:-1.584000px;}
.ws40{word-spacing:-0.864000px;}
.ws6c{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.312480px;}
.ws3c{word-spacing:-0.288000px;}
.ws76{word-spacing:-0.252720px;}
.ws68{word-spacing:-0.191520px;}
.ws7{word-spacing:-0.156240px;}
.ws5{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.132480px;}
.ws26{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws2c{word-spacing:0.059760px;}
.ws73{word-spacing:0.084240px;}
.ws3{word-spacing:0.131760px;}
.ws28{word-spacing:0.132480px;}
.ws4{word-spacing:0.144000px;}
.ws2e{word-spacing:0.216000px;}
.ws2d{word-spacing:0.239040px;}
.ws8{word-spacing:0.240480px;}
.ws27{word-spacing:0.288000px;}
.ws62{word-spacing:0.298800px;}
.ws70{word-spacing:0.336960px;}
.ws4f{word-spacing:0.360000px;}
.ws54{word-spacing:0.421200px;}
.ws13{word-spacing:0.432000px;}
.ws25{word-spacing:0.463680px;}
.ws9{word-spacing:0.480960px;}
.ws3e{word-spacing:0.576000px;}
.ws4b{word-spacing:0.673920px;}
.ws2b{word-spacing:0.776880px;}
.ws81{word-spacing:0.864000px;}
.ws79{word-spacing:1.008000px;}
.ws3d{word-spacing:1.296000px;}
.ws17{word-spacing:2.016000px;}
.wsf{word-spacing:2.736000px;}
.ws19{word-spacing:3.456000px;}
.ws18{word-spacing:4.176000px;}
.ws11{word-spacing:4.896000px;}
.ws15{word-spacing:5.616000px;}
.ws74{word-spacing:5.760000px;}
.ws3f{word-spacing:6.336000px;}
.ws71{word-spacing:6.768000px;}
.ws51{word-spacing:7.056000px;}
.ws46{word-spacing:7.776000px;}
.ws32{word-spacing:8.496000px;}
.ws6f{word-spacing:8.928000px;}
.ws6a{word-spacing:9.216000px;}
.wsd{word-spacing:9.936000px;}
.ws1b{word-spacing:10.656000px;}
.ws47{word-spacing:11.376000px;}
.ws39{word-spacing:12.096000px;}
.ws37{word-spacing:12.816000px;}
.ws55{word-spacing:12.960000px;}
.ws38{word-spacing:13.536000px;}
.ws72{word-spacing:13.968000px;}
.ws59{word-spacing:14.256000px;}
.ws48{word-spacing:14.976000px;}
.ws12{word-spacing:15.696000px;}
.ws10{word-spacing:16.416000px;}
.ws5e{word-spacing:17.136000px;}
.ws33{word-spacing:17.856000px;}
.wsc{word-spacing:18.576000px;}
.ws82{word-spacing:19.080000px;}
.ws16{word-spacing:19.296000px;}
.ws31{word-spacing:20.016000px;}
.ws50{word-spacing:20.736000px;}
.ws14{word-spacing:21.456000px;}
.ws34{word-spacing:22.176000px;}
.ws43{word-spacing:22.896000px;}
.wse{word-spacing:23.616000px;}
.ws45{word-spacing:24.336000px;}
.ws5b{word-spacing:25.056000px;}
.ws41{word-spacing:25.776000px;}
.ws3b{word-spacing:26.496000px;}
.ws35{word-spacing:27.216000px;}
.ws1a{word-spacing:27.936000px;}
.ws36{word-spacing:28.224000px;}
.ws5a{word-spacing:28.656000px;}
.ws44{word-spacing:29.376000px;}
.ws83{word-spacing:29.664000px;}
.ws3a{word-spacing:30.096000px;}
.ws42{word-spacing:30.816000px;}
.ws84{word-spacing:31.248000px;}
.ws56{word-spacing:31.536000px;}
.ws69{word-spacing:32.256000px;}
.ws77{word-spacing:32.976000px;}
.ws6b{word-spacing:33.696000px;}
.ws86{word-spacing:34.416000px;}
.ws4e{word-spacing:35.136000px;}
.ws7d{word-spacing:35.856000px;}
.ws49{word-spacing:36.576000px;}
.ws75{word-spacing:37.296000px;}
.ws4d{word-spacing:38.016000px;}
.ws7c{word-spacing:38.736000px;}
.ws4c{word-spacing:39.456000px;}
.ws67{word-spacing:40.176000px;}
.ws78{word-spacing:40.896000px;}
.ws5d{word-spacing:41.616000px;}
.ws61{word-spacing:43.776000px;}
.ws7e{word-spacing:45.216000px;}
.ws7f{word-spacing:45.936000px;}
.ws66{word-spacing:46.656000px;}
.ws6e{word-spacing:47.376000px;}
.ws58{word-spacing:48.816000px;}
.ws60{word-spacing:49.536000px;}
.ws5c{word-spacing:57.456000px;}
.ws57{word-spacing:70.416000px;}
.ws5f{word-spacing:145.296000px;}
.ws85{word-spacing:179.136000px;}
._7{margin-left:-12.890880px;}
._9{margin-left:-11.232000px;}
._2{margin-left:-10.152000px;}
._5{margin-left:-8.443440px;}
._4{margin-left:-6.104880px;}
._3{margin-left:-4.608000px;}
._e{margin-left:-3.509280px;}
._6{margin-left:-2.455920px;}
._1{margin-left:-1.152000px;}
._0{width:1.712880px;}
._a{width:3.516480px;}
._c{width:4.518720px;}
._d{width:5.832000px;}
._10{width:8.856000px;}
._b{width:13.623120px;}
._f{width:41.294160px;}
._8{width:102.807360px;}
.fc1{color:rgb(154,0,64);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:57.786480px;}
.y69{bottom:77.940000px;}
.y1c1{bottom:112.140000px;}
.y15d{bottom:113.040000px;}
.y178{bottom:114.120000px;}
.y1dd{bottom:114.300000px;}
.y58{bottom:118.260000px;}
.y124{bottom:118.440000px;}
.y1a2{bottom:122.760000px;}
.y117{bottom:131.760000px;}
.y87{bottom:132.120000px;}
.y188{bottom:136.080000px;}
.yde{bottom:136.800000px;}
.y23d{bottom:142.192800px;}
.y1c0{bottom:143.280000px;}
.y15c{bottom:144.180000px;}
.y12{bottom:144.203760px;}
.yc5{bottom:144.540000px;}
.y177{bottom:145.080000px;}
.y1dc{bottom:145.440000px;}
.y206{bottom:145.620000px;}
.ya6{bottom:148.500000px;}
.y123{bottom:149.580000px;}
.y1f9{bottom:151.020000px;}
.y57{bottom:152.640000px;}
.y1a1{bottom:153.900000px;}
.yf7{bottom:155.520000px;}
.y138{bottom:156.240000px;}
.y24a{bottom:158.438160px;}
.y116{bottom:162.900000px;}
.y86{bottom:163.260000px;}
.y1e4{bottom:164.520000px;}
.y187{bottom:167.220000px;}
.ydd{bottom:167.760000px;}
.y15b{bottom:169.200000px;}
.y1bf{bottom:174.240000px;}
.yc4{bottom:175.680000px;}
.y1db{bottom:176.400000px;}
.ya5{bottom:179.460000px;}
.y235{bottom:179.640000px;}
.y122{bottom:180.540000px;}
.y1f8{bottom:182.160000px;}
.y38{bottom:183.060000px;}
.y1a0{bottom:184.860000px;}
.y56{bottom:186.840000px;}
.y205{bottom:190.620000px;}
.y176{bottom:191.160000px;}
.y115{bottom:193.860000px;}
.y85{bottom:194.220000px;}
.y249{bottom:196.592400px;}
.y11{bottom:198.371880px;}
.yf6{bottom:198.540000px;}
.y1fd{bottom:198.900000px;}
.y1be{bottom:205.380000px;}
.y13f{bottom:206.548650px;}
.y21d{bottom:207.180000px;}
.y1da{bottom:207.540000px;}
.ya4{bottom:210.600000px;}
.y121{bottom:211.500000px;}
.y1f7{bottom:213.120000px;}
.y15a{bottom:213.300000px;}
.ydc{bottom:213.840000px;}
.y55{bottom:220.671360px;}
.yc3{bottom:221.760000px;}
.y1fc{bottom:223.920000px;}
.y114{bottom:225.000000px;}
.y13e{bottom:225.088650px;}
.y84{bottom:225.360000px;}
.y37{bottom:228.960000px;}
.yf5{bottom:229.500000px;}
.y19f{bottom:230.940000px;}
.y248{bottom:234.746640px;}
.y175{bottom:237.240000px;}
.y21c{bottom:238.140000px;}
.y1d9{bottom:238.500000px;}
.ya3{bottom:241.560000px;}
.y234{bottom:241.740000px;}
.y120{bottom:242.640000px;}
.y13d{bottom:243.808650px;}
.y186{bottom:244.260000px;}
.ydb{bottom:244.800000px;}
.y1bd{bottom:251.460000px;}
.y10{bottom:252.540000px;}
.y54{bottom:252.714960px;}
.yc2{bottom:252.720000px;}
.y113{bottom:255.960000px;}
.y83{bottom:256.320000px;}
.yf4{bottom:260.640000px;}
.y19e{bottom:261.900000px;}
.y174{bottom:268.200000px;}
.y21b{bottom:269.280000px;}
.y1d8{bottom:269.640000px;}
.ya2{bottom:272.700000px;}
.y247{bottom:272.900880px;}
.y11f{bottom:273.600000px;}
.y36{bottom:275.040000px;}
.y1bc{bottom:282.420000px;}
.yc1{bottom:283.860000px;}
.y53{bottom:284.940720px;}
.y159{bottom:285.660000px;}
.y112{bottom:287.100000px;}
.y82{bottom:287.460000px;}
.y1f6{bottom:290.160000px;}
.y185{bottom:290.340000px;}
.yda{bottom:290.880000px;}
.yf3{bottom:291.600000px;}
.y19d{bottom:293.040000px;}
.y173{bottom:299.340000px;}
.y21a{bottom:300.240000px;}
.ya1{bottom:303.660000px;}
.y233{bottom:303.840000px;}
.y35{bottom:306.180000px;}
.yf{bottom:309.420000px;}
.y246{bottom:311.055120px;}
.y1bb{bottom:313.560000px;}
.y204{bottom:314.820000px;}
.y1d7{bottom:315.540000px;}
.y158{bottom:316.800000px;}
.y52{bottom:317.166480px;}
.y111{bottom:318.060000px;}
.y81{bottom:318.420000px;}
.y11e{bottom:319.680000px;}
.y1f5{bottom:321.300000px;}
.y184{bottom:321.480000px;}
.yd9{bottom:322.020000px;}
.yf2{bottom:322.740000px;}
.y19c{bottom:324.000000px;}
.y13c{bottom:327.392400px;}
.yc0{bottom:329.760000px;}
.y172{bottom:330.300000px;}
.y219{bottom:331.380000px;}
.ya0{bottom:334.800000px;}
.y1ba{bottom:344.520000px;}
.y203{bottom:345.960000px;}
.y13b{bottom:346.112400px;}
.y157{bottom:347.760000px;}
.y110{bottom:349.200000px;}
.y245{bottom:349.209360px;}
.y80{bottom:349.560000px;}
.y51{bottom:349.740000px;}
.y11d{bottom:350.820000px;}
.y34{bottom:352.260000px;}
.y183{bottom:352.440000px;}
.yd8{bottom:352.980000px;}
.yf1{bottom:353.700000px;}
.y19b{bottom:355.140000px;}
.ybf{bottom:360.900000px;}
.y171{bottom:361.440000px;}
.y1d6{bottom:361.620000px;}
.y218{bottom:362.340000px;}
.y1e3{bottom:365.760000px;}
.y232{bottom:365.940000px;}
.y23f{bottom:369.540000px;}
.ye{bottom:371.340000px;}
.y1b9{bottom:375.660000px;}
.y202{bottom:376.920000px;}
.y156{bottom:378.900000px;}
.y10f{bottom:380.160000px;}
.y7f{bottom:380.520000px;}
.y9f{bottom:380.700000px;}
.y1f4{bottom:383.400000px;}
.y182{bottom:383.580000px;}
.y50{bottom:383.940000px;}
.yd7{bottom:384.120000px;}
.y19a{bottom:386.100000px;}
.y244{bottom:387.545760px;}
.ybe{bottom:391.860000px;}
.y217{bottom:393.480000px;}
.yf0{bottom:396.900000px;}
.y33{bottom:398.160000px;}
.y1b8{bottom:406.620000px;}
.y170{bottom:407.340000px;}
.y1d5{bottom:407.700000px;}
.y201{bottom:408.060000px;}
.y155{bottom:409.860000px;}
.y10e{bottom:411.300000px;}
.y9e{bottom:411.840000px;}
.y1f3{bottom:414.360000px;}
.yd6{bottom:415.080000px;}
.y199{bottom:417.240000px;}
.y4f{bottom:417.738960px;}
.y243{bottom:421.212240px;}
.ybd{bottom:423.000000px;}
.y7e{bottom:426.600000px;}
.yef{bottom:427.860000px;}
.y231{bottom:428.040000px;}
.y32{bottom:429.300000px;}
.y181{bottom:429.480000px;}
.y16f{bottom:432.540000px;}
.yd{bottom:433.260000px;}
.y24d{bottom:435.600000px;}
.y241{bottom:436.149360px;}
.y1b7{bottom:437.760000px;}
.y1d4{bottom:438.660000px;}
.y13a{bottom:439.014900px;}
.y200{bottom:439.020000px;}
.y216{bottom:439.380000px;}
.y154{bottom:441.000000px;}
.y10d{bottom:442.260000px;}
.y9d{bottom:442.800000px;}
.y1f2{bottom:445.500000px;}
.yd5{bottom:446.220000px;}
.y4e{bottom:449.964720px;}
.ybc{bottom:453.960000px;}
.y180{bottom:454.685040px;}
.y7d{bottom:457.560000px;}
.y139{bottom:457.734900px;}
.yee{bottom:459.000000px;}
.y31{bottom:460.260000px;}
.y198{bottom:463.320000px;}
.y1ff{bottom:464.040000px;}
.y1b6{bottom:468.720000px;}
.y1d3{bottom:469.800000px;}
.y215{bottom:470.520000px;}
.y153{bottom:471.960000px;}
.y10c{bottom:473.400000px;}
.y1fb{bottom:473.940000px;}
.y1f1{bottom:476.460000px;}
.yd4{bottom:477.180000px;}
.y16e{bottom:481.320000px;}
.y4d{bottom:482.008320px;}
.y17f{bottom:482.400000px;}
.ybb{bottom:485.100000px;}
.y7c{bottom:488.700000px;}
.y9c{bottom:488.880000px;}
.yed{bottom:489.960000px;}
.y230{bottom:490.140000px;}
.y30{bottom:491.400000px;}
.y197{bottom:494.280000px;}
.yc{bottom:495.180000px;}
.y1b5{bottom:499.860000px;}
.y1d2{bottom:500.760000px;}
.y214{bottom:501.480000px;}
.y1f0{bottom:501.660000px;}
.y10b{bottom:504.360000px;}
.y1fa{bottom:504.900000px;}
.y1fe{bottom:505.980000px;}
.yd3{bottom:508.320000px;}
.y16d{bottom:512.280000px;}
.y4c{bottom:514.234080px;}
.y152{bottom:518.040000px;}
.y7b{bottom:519.660000px;}
.y9b{bottom:520.020000px;}
.yec{bottom:521.100000px;}
.y2f{bottom:522.360000px;}
.y196{bottom:525.420000px;}
.y1b4{bottom:530.820000px;}
.yba{bottom:531.180000px;}
.y1d1{bottom:531.900000px;}
.y213{bottom:532.620000px;}
.y137{bottom:534.069000px;}
.y10a{bottom:535.500000px;}
.y1e2{bottom:536.040000px;}
.yd2{bottom:539.280000px;}
.y16c{bottom:543.420000px;}
.y1ef{bottom:543.600000px;}
.y132{bottom:545.049720px;}
.y4b{bottom:546.459840px;}
.y151{bottom:549.000000px;}
.y7a{bottom:550.800000px;}
.y9a{bottom:550.980000px;}
.y11c{bottom:552.060000px;}
.y22f{bottom:552.240000px;}
.y2e{bottom:553.500000px;}
.y136{bottom:553.864500px;}
.y195{bottom:556.380000px;}
.yb{bottom:557.100000px;}
.y1b3{bottom:561.960000px;}
.yb9{bottom:562.140000px;}
.y1d0{bottom:562.860000px;}
.y212{bottom:563.580000px;}
.y131{bottom:564.845220px;}
.y109{bottom:566.460000px;}
.yeb{bottom:567.000000px;}
.y1ee{bottom:568.980000px;}
.yd1{bottom:570.420000px;}
.y135{bottom:573.660000px;}
.y16b{bottom:574.380000px;}
.y4a{bottom:578.503440px;}
.y239{bottom:581.237280px;}
.y194{bottom:581.400000px;}
.y99{bottom:582.120000px;}
.y11b{bottom:583.020000px;}
.y22e{bottom:583.200000px;}
.y2d{bottom:584.460000px;}
.y130{bottom:584.820000px;}
.y1b2{bottom:586.980000px;}
.yb8{bottom:593.280000px;}
.y211{bottom:594.720000px;}
.y150{bottom:595.080000px;}
.y79{bottom:596.880000px;}
.yea{bottom:598.140000px;}
.yd0{bottom:601.380000px;}
.y16a{bottom:605.520000px;}
.y1cf{bottom:608.940000px;}
.y134{bottom:609.840000px;}
.y49{bottom:610.729200px;}
.y108{bottom:612.540000px;}
.y98{bottom:613.080000px;}
.y11a{bottom:614.160000px;}
.y22d{bottom:614.340000px;}
.y2c{bottom:615.600000px;}
.y238{bottom:617.950800px;}
.y14f{bottom:620.280000px;}
.ya{bottom:620.787780px;}
.yb7{bottom:624.240000px;}
.y210{bottom:625.680000px;}
.y78{bottom:627.840000px;}
.y12f{bottom:628.020000px;}
.ye9{bottom:629.100000px;}
.y193{bottom:630.180000px;}
.ycf{bottom:632.520000px;}
.y1b1{bottom:635.760000px;}
.y169{bottom:636.480000px;}
.y1ed{bottom:641.160000px;}
.y48{bottom:642.954960px;}
.y107{bottom:643.680000px;}
.y97{bottom:644.220000px;}
.y22c{bottom:645.300000px;}
.y2b{bottom:646.560000px;}
.y237{bottom:654.846480px;}
.y1ce{bottom:655.020000px;}
.yb6{bottom:655.380000px;}
.y133{bottom:655.920000px;}
.y20f{bottom:656.820000px;}
.y77{bottom:658.980000px;}
.y12e{bottom:659.160000px;}
.ye8{bottom:660.240000px;}
.y192{bottom:661.320000px;}
.y68{bottom:667.080000px;}
.y168{bottom:667.440000px;}
.y14e{bottom:668.880000px;}
.y9{bottom:671.565780px;}
.y1ec{bottom:672.300000px;}
.y1c{bottom:673.552080px;}
.y106{bottom:674.640000px;}
.y96{bottom:675.180000px;}
.y47{bottom:675.180720px;}
.y22b{bottom:676.440000px;}
.y2a{bottom:677.700000px;}
.yce{bottom:678.420000px;}
.y1b0{bottom:681.840000px;}
.y17e{bottom:686.340000px;}
.y20e{bottom:687.780000px;}
.y76{bottom:689.940000px;}
.y1e1{bottom:690.120000px;}
.ye7{bottom:691.200000px;}
.y236{bottom:691.560000px;}
.y191{bottom:692.280000px;}
.y167{bottom:698.580000px;}
.y14d{bottom:700.020000px;}
.y1cd{bottom:701.100000px;}
.yb5{bottom:701.280000px;}
.y1eb{bottom:703.260000px;}
.y12d{bottom:705.240000px;}
.y67{bottom:705.780000px;}
.y95{bottom:706.320000px;}
.y46{bottom:707.224320px;}
.y22a{bottom:707.400000px;}
.y29{bottom:708.660000px;}
.ycd{bottom:709.560000px;}
.y1b{bottom:710.100000px;}
.y1af{bottom:712.800000px;}
.y20d{bottom:714.240000px;}
.y17d{bottom:717.480000px;}
.y105{bottom:720.720000px;}
.y1e0{bottom:721.260000px;}
.ye6{bottom:722.340000px;}
.y166{bottom:723.600000px;}
.y14c{bottom:730.980000px;}
.y24b{bottom:731.875680px;}
.y23e{bottom:731.880000px;}
.y1cc{bottom:732.060000px;}
.yb4{bottom:732.420000px;}
.y1ea{bottom:734.400000px;}
.y75{bottom:736.020000px;}
.y12c{bottom:736.200000px;}
.y94{bottom:737.280000px;}
.y8{bottom:737.460000px;}
.y190{bottom:738.360000px;}
.y229{bottom:738.540000px;}
.y28{bottom:739.800000px;}
.y45{bottom:739.980000px;}
.ycc{bottom:740.520000px;}
.y1ae{bottom:743.940000px;}
.y17c{bottom:748.440000px;}
.y104{bottom:751.680000px;}
.y66{bottom:751.860000px;}
.y1df{bottom:752.220000px;}
.y1a{bottom:753.024240px;}
.y119{bottom:753.300000px;}
.y1cb{bottom:763.200000px;}
.yb3{bottom:763.380000px;}
.y1e9{bottom:765.360000px;}
.y165{bottom:765.540000px;}
.y24e{bottom:766.080000px;}
.y74{bottom:766.980000px;}
.y12b{bottom:767.340000px;}
.y93{bottom:768.420000px;}
.y18f{bottom:769.320000px;}
.y228{bottom:769.500000px;}
.y14b{bottom:770.220000px;}
.y27{bottom:770.760000px;}
.ycb{bottom:771.660000px;}
.y44{bottom:773.634960px;}
.y1ad{bottom:774.900000px;}
.y17b{bottom:779.580000px;}
.y103{bottom:782.820000px;}
.y1de{bottom:783.360000px;}
.y20c{bottom:786.600000px;}
.y65{bottom:790.740000px;}
.y1ca{bottom:794.160000px;}
.y14a{bottom:794.340000px;}
.yb2{bottom:794.520000px;}
.y1e8{bottom:796.500000px;}
.y24c{bottom:797.940000px;}
.y242{bottom:797.952240px;}
.y73{bottom:798.120000px;}
.y240{bottom:798.134400px;}
.y12a{bottom:798.300000px;}
.ye5{bottom:799.380000px;}
.y18e{bottom:800.460000px;}
.y227{bottom:800.640000px;}
.y7{bottom:801.540000px;}
.y26{bottom:801.900000px;}
.yca{bottom:802.620000px;}
.y1ac{bottom:805.860000px;}
.y43{bottom:805.860720px;}
.y19{bottom:807.012000px;}
.y164{bottom:810.540000px;}
.y102{bottom:813.780000px;}
.y92{bottom:814.320000px;}
.y20b{bottom:817.740000px;}
.y1c9{bottom:825.300000px;}
.yb1{bottom:825.480000px;}
.y1e7{bottom:827.460000px;}
.y72{bottom:829.080000px;}
.y129{bottom:829.440000px;}
.ye4{bottom:830.520000px;}
.y1ab{bottom:831.060000px;}
.y226{bottom:831.600000px;}
.y25{bottom:832.860000px;}
.yc9{bottom:833.760000px;}
.y149{bottom:836.280000px;}
.y64{bottom:836.820000px;}
.y42{bottom:838.086480px;}
.y163{bottom:841.680000px;}
.y101{bottom:844.920000px;}
.y91{bottom:845.460000px;}
.y18d{bottom:846.540000px;}
.y20a{bottom:848.700000px;}
.y1c8{bottom:856.260000px;}
.yb0{bottom:856.620000px;}
.y71{bottom:860.220000px;}
.y128{bottom:860.400000px;}
.y63{bottom:860.405940px;}
.y18{bottom:861.180120px;}
.ye3{bottom:861.480000px;}
.y225{bottom:862.740000px;}
.y6{bottom:863.640000px;}
.y24{bottom:864.000000px;}
.yc8{bottom:864.720000px;}
.y17a{bottom:866.700000px;}
.y41{bottom:870.660000px;}
.y162{bottom:872.640000px;}
.y100{bottom:875.880000px;}
.y90{bottom:876.420000px;}
.y18c{bottom:877.500000px;}
.y1aa{bottom:879.840000px;}
.y62{bottom:880.560000px;}
.y148{bottom:881.100000px;}
.y1c7{bottom:887.400000px;}
.yaf{bottom:887.580000px;}
.y70{bottom:891.180000px;}
.y127{bottom:891.540000px;}
.y1e6{bottom:892.080000px;}
.ye2{bottom:892.620000px;}
.y224{bottom:893.700000px;}
.y23{bottom:894.960000px;}
.yc7{bottom:895.860000px;}
.y61{bottom:901.270440px;}
.y161{bottom:903.780000px;}
.y40{bottom:904.494960px;}
.yff{bottom:907.020000px;}
.y8f{bottom:907.560000px;}
.y179{bottom:908.640000px;}
.y1a9{bottom:910.800000px;}
.y147{bottom:912.240000px;}
.y17{bottom:915.348240px;}
.y1c6{bottom:918.360000px;}
.yae{bottom:918.720000px;}
.yc6{bottom:920.880000px;}
.y60{bottom:921.424500px;}
.y6f{bottom:922.320000px;}
.y126{bottom:922.500000px;}
.y18b{bottom:923.580000px;}
.y223{bottom:924.840000px;}
.y5{bottom:925.560000px;}
.y22{bottom:926.100000px;}
.y3f{bottom:926.635680px;}
.y160{bottom:934.740000px;}
.yfe{bottom:937.980000px;}
.y8e{bottom:938.520000px;}
.y5f{bottom:941.220000px;}
.y1a8{bottom:941.940000px;}
.y146{bottom:943.200000px;}
.y1c5{bottom:949.500000px;}
.yad{bottom:949.680000px;}
.y6e{bottom:953.280000px;}
.y125{bottom:953.640000px;}
.y18a{bottom:954.540000px;}
.y222{bottom:955.800000px;}
.y21{bottom:957.060000px;}
.y3e{bottom:958.497120px;}
.y1e5{bottom:966.960000px;}
.yfd{bottom:969.120000px;}
.y16{bottom:969.336000px;}
.y8d{bottom:969.660000px;}
.y1a7{bottom:972.900000px;}
.y15f{bottom:973.980000px;}
.y145{bottom:974.340000px;}
.y1c4{bottom:980.460000px;}
.yac{bottom:980.820000px;}
.y5e{bottom:984.420000px;}
.y118{bottom:984.600000px;}
.y189{bottom:985.680000px;}
.y4{bottom:986.040360px;}
.y221{bottom:986.940000px;}
.y209{bottom:987.840000px;}
.y20{bottom:988.200000px;}
.y3d{bottom:990.540720px;}
.y15e{bottom:997.920000px;}
.yfc{bottom:1000.080000px;}
.y8c{bottom:1000.620000px;}
.y1a6{bottom:1004.040000px;}
.y144{bottom:1005.300000px;}
.y1c3{bottom:1011.600000px;}
.yab{bottom:1011.780000px;}
.ye1{bottom:1015.740000px;}
.y23c{bottom:1017.720000px;}
.y220{bottom:1017.900000px;}
.y208{bottom:1018.980000px;}
.y1f{bottom:1019.160000px;}
.y3c{bottom:1022.766480px;}
.y15{bottom:1023.504120px;}
.y6d{bottom:1023.660000px;}
.y3{bottom:1029.060000px;}
.y5d{bottom:1030.500000px;}
.y8b{bottom:1031.760000px;}
.y1a5{bottom:1035.000000px;}
.y23b{bottom:1041.655500px;}
.yaa{bottom:1042.920000px;}
.y143{bottom:1044.540000px;}
.yfb{bottom:1046.160000px;}
.ye0{bottom:1046.700000px;}
.y6c{bottom:1047.600000px;}
.y21f{bottom:1049.040000px;}
.y207{bottom:1049.940000px;}
.y1e{bottom:1050.300000px;}
.y5c{bottom:1054.969920px;}
.y3b{bottom:1055.340000px;}
.y1c2{bottom:1060.020000px;}
.y8a{bottom:1062.720000px;}
.y142{bottom:1068.660000px;}
.y23a{bottom:1069.560000px;}
.yfa{bottom:1071.175500px;}
.ya9{bottom:1073.880000px;}
.y14{bottom:1077.672240px;}
.ydf{bottom:1077.840000px;}
.y1a4{bottom:1081.080000px;}
.y5b{bottom:1087.013520px;}
.y21e{bottom:1088.280000px;}
.y2{bottom:1088.460000px;}
.y3a{bottom:1088.640000px;}
.yf9{bottom:1099.080000px;}
.y89{bottom:1108.800000px;}
.y141{bottom:1109.520000px;}
.y1a3{bottom:1112.040000px;}
.ya8{bottom:1113.120000px;}
.y1d{bottom:1113.480000px;}
.y6b{bottom:1113.660000px;}
.y5a{bottom:1119.239280px;}
.y13{bottom:1131.660000px;}
.y140{bottom:1134.540000px;}
.y39{bottom:1137.060000px;}
.ya7{bottom:1137.240000px;}
.y88{bottom:1139.940000px;}
.y1{bottom:1140.840000px;}
.yf8{bottom:1141.025760px;}
.y59{bottom:1141.380000px;}
.h2{height:44.149219px;}
.h7{height:49.680000px;}
.hc{height:62.327813px;}
.h9{height:69.086250px;}
.ha{height:75.093750px;}
.hd{height:83.432812px;}
.hb{height:87.859687px;}
.h6{height:90.180000px;}
.h4{height:98.820000px;}
.h8{height:99.874688px;}
.h3{height:108.000000px;}
.h5{height:117.180000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x10{left:122.933520px;}
.x12{left:127.620000px;}
.xe{left:133.380000px;}
.x8{left:145.638000px;}
.xa{left:149.400000px;}
.x13{left:154.620000px;}
.x14{left:170.100000px;}
.x20{left:171.360000px;}
.x16{left:181.620000px;}
.x15{left:197.100000px;}
.x19{left:208.620000px;}
.x17{left:224.100000px;}
.x1a{left:235.631520px;}
.x1c{left:243.107100px;}
.x18{left:251.100000px;}
.x1f{left:265.500000px;}
.x1d{left:270.156900px;}
.xb{left:286.200000px;}
.x2{left:304.380000px;}
.xd{left:316.800000px;}
.x9{left:328.712220px;}
.x21{left:399.960000px;}
.xf{left:410.940000px;}
.x3{left:412.380000px;}
.x1e{left:438.120000px;}
.x11{left:442.260000px;}
.x7{left:446.400000px;}
.x5{left:465.840000px;}
.x6{left:546.120000px;}
.x4{left:647.835120px;}
.x22{left:765.362160px;}
.x1b{left:773.280000px;}
.xc{left:786.600000px;}
.x23{left:819.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls43{letter-spacing:-1.957760pt;}
.ls22{letter-spacing:-1.408000pt;}
.ls46{letter-spacing:-1.276800pt;}
.ls3a{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.599040pt;}
.ls28{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.299520pt;}
.ls35{letter-spacing:-0.265600pt;}
.ls44{letter-spacing:-0.255360pt;}
.ls6{letter-spacing:-0.213760pt;}
.ls21{letter-spacing:-0.212480pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.117760pt;}
.ls20{letter-spacing:-0.106240pt;}
.ls25{letter-spacing:-0.074880pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.117120pt;}
.ls1c{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.138880pt;}
.ls9{letter-spacing:0.170240pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.235520pt;}
.ls7{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.299520pt;}
.ls0{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.765440pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls36{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.413120pt;}
.ls14{letter-spacing:2.060800pt;}
.ls3f{letter-spacing:2.688000pt;}
.ls30{letter-spacing:3.328000pt;}
.ls11{letter-spacing:3.356160pt;}
.ls8{letter-spacing:3.968000pt;}
.ls39{letter-spacing:4.608000pt;}
.ls2d{letter-spacing:5.248000pt;}
.lse{letter-spacing:5.888000pt;}
.ls13{letter-spacing:6.016000pt;}
.ls12{letter-spacing:6.535680pt;}
.ls37{letter-spacing:7.808000pt;}
.ls2b{letter-spacing:8.448000pt;}
.ls2c{letter-spacing:9.088000pt;}
.ls17{letter-spacing:9.216000pt;}
.ls2e{letter-spacing:10.368000pt;}
.ls29{letter-spacing:11.008000pt;}
.lsf{letter-spacing:11.658240pt;}
.ls3c{letter-spacing:12.288000pt;}
.ls41{letter-spacing:12.928000pt;}
.ls10{letter-spacing:12.953600pt;}
.ls27{letter-spacing:13.568000pt;}
.ls32{letter-spacing:14.848000pt;}
.ls3d{letter-spacing:15.488000pt;}
.lsc{letter-spacing:16.256000pt;}
.ls45{letter-spacing:25.088000pt;}
.ls2f{letter-spacing:27.648000pt;}
.ls42{letter-spacing:29.568000pt;}
.ls40{letter-spacing:36.608000pt;}
.ls33{letter-spacing:39.808000pt;}
.lsb{letter-spacing:50.693120pt;}
.ls34{letter-spacing:53.066880pt;}
.lsd{letter-spacing:64.768000pt;}
.ls1f{letter-spacing:69.253120pt;}
.ls15{letter-spacing:90.380800pt;}
.ls3e{letter-spacing:95.022720pt;}
.ls24{letter-spacing:135.982080pt;}
.ls1e{letter-spacing:162.685440pt;}
.ws53{word-spacing:-64.000000pt;}
.ws1{word-spacing:-32.128000pt;}
.ws0{word-spacing:-29.397120pt;}
.wsa{word-spacing:-23.833600pt;}
.ws80{word-spacing:-23.408000pt;}
.ws87{word-spacing:-22.386560pt;}
.ws7a{word-spacing:-21.705600pt;}
.ws6d{word-spacing:-21.116160pt;}
.ws2f{word-spacing:-20.741760pt;}
.ws1c{word-spacing:-20.517120pt;}
.wsb{word-spacing:-18.048000pt;}
.ws1d{word-spacing:-17.984000pt;}
.ws23{word-spacing:-17.920000pt;}
.ws52{word-spacing:-17.792000pt;}
.ws1e{word-spacing:-17.664000pt;}
.ws7b{word-spacing:-17.600000pt;}
.ws30{word-spacing:-17.408000pt;}
.ws4a{word-spacing:-17.280000pt;}
.ws2a{word-spacing:-16.384000pt;}
.ws22{word-spacing:-16.368640pt;}
.ws1f{word-spacing:-16.250880pt;}
.ws29{word-spacing:-14.661120pt;}
.ws20{word-spacing:-14.656000pt;}
.ws21{word-spacing:-13.542400pt;}
.ws65{word-spacing:-2.688000pt;}
.ws63{word-spacing:-2.048000pt;}
.ws64{word-spacing:-1.408000pt;}
.ws40{word-spacing:-0.768000pt;}
.ws6c{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.277760pt;}
.ws3c{word-spacing:-0.256000pt;}
.ws76{word-spacing:-0.224640pt;}
.ws68{word-spacing:-0.170240pt;}
.ws7{word-spacing:-0.138880pt;}
.ws5{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.117760pt;}
.ws26{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.053120pt;}
.ws73{word-spacing:0.074880pt;}
.ws3{word-spacing:0.117120pt;}
.ws28{word-spacing:0.117760pt;}
.ws4{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.192000pt;}
.ws2d{word-spacing:0.212480pt;}
.ws8{word-spacing:0.213760pt;}
.ws27{word-spacing:0.256000pt;}
.ws62{word-spacing:0.265600pt;}
.ws70{word-spacing:0.299520pt;}
.ws4f{word-spacing:0.320000pt;}
.ws54{word-spacing:0.374400pt;}
.ws13{word-spacing:0.384000pt;}
.ws25{word-spacing:0.412160pt;}
.ws9{word-spacing:0.427520pt;}
.ws3e{word-spacing:0.512000pt;}
.ws4b{word-spacing:0.599040pt;}
.ws2b{word-spacing:0.690560pt;}
.ws81{word-spacing:0.768000pt;}
.ws79{word-spacing:0.896000pt;}
.ws3d{word-spacing:1.152000pt;}
.ws17{word-spacing:1.792000pt;}
.wsf{word-spacing:2.432000pt;}
.ws19{word-spacing:3.072000pt;}
.ws18{word-spacing:3.712000pt;}
.ws11{word-spacing:4.352000pt;}
.ws15{word-spacing:4.992000pt;}
.ws74{word-spacing:5.120000pt;}
.ws3f{word-spacing:5.632000pt;}
.ws71{word-spacing:6.016000pt;}
.ws51{word-spacing:6.272000pt;}
.ws46{word-spacing:6.912000pt;}
.ws32{word-spacing:7.552000pt;}
.ws6f{word-spacing:7.936000pt;}
.ws6a{word-spacing:8.192000pt;}
.wsd{word-spacing:8.832000pt;}
.ws1b{word-spacing:9.472000pt;}
.ws47{word-spacing:10.112000pt;}
.ws39{word-spacing:10.752000pt;}
.ws37{word-spacing:11.392000pt;}
.ws55{word-spacing:11.520000pt;}
.ws38{word-spacing:12.032000pt;}
.ws72{word-spacing:12.416000pt;}
.ws59{word-spacing:12.672000pt;}
.ws48{word-spacing:13.312000pt;}
.ws12{word-spacing:13.952000pt;}
.ws10{word-spacing:14.592000pt;}
.ws5e{word-spacing:15.232000pt;}
.ws33{word-spacing:15.872000pt;}
.wsc{word-spacing:16.512000pt;}
.ws82{word-spacing:16.960000pt;}
.ws16{word-spacing:17.152000pt;}
.ws31{word-spacing:17.792000pt;}
.ws50{word-spacing:18.432000pt;}
.ws14{word-spacing:19.072000pt;}
.ws34{word-spacing:19.712000pt;}
.ws43{word-spacing:20.352000pt;}
.wse{word-spacing:20.992000pt;}
.ws45{word-spacing:21.632000pt;}
.ws5b{word-spacing:22.272000pt;}
.ws41{word-spacing:22.912000pt;}
.ws3b{word-spacing:23.552000pt;}
.ws35{word-spacing:24.192000pt;}
.ws1a{word-spacing:24.832000pt;}
.ws36{word-spacing:25.088000pt;}
.ws5a{word-spacing:25.472000pt;}
.ws44{word-spacing:26.112000pt;}
.ws83{word-spacing:26.368000pt;}
.ws3a{word-spacing:26.752000pt;}
.ws42{word-spacing:27.392000pt;}
.ws84{word-spacing:27.776000pt;}
.ws56{word-spacing:28.032000pt;}
.ws69{word-spacing:28.672000pt;}
.ws77{word-spacing:29.312000pt;}
.ws6b{word-spacing:29.952000pt;}
.ws86{word-spacing:30.592000pt;}
.ws4e{word-spacing:31.232000pt;}
.ws7d{word-spacing:31.872000pt;}
.ws49{word-spacing:32.512000pt;}
.ws75{word-spacing:33.152000pt;}
.ws4d{word-spacing:33.792000pt;}
.ws7c{word-spacing:34.432000pt;}
.ws4c{word-spacing:35.072000pt;}
.ws67{word-spacing:35.712000pt;}
.ws78{word-spacing:36.352000pt;}
.ws5d{word-spacing:36.992000pt;}
.ws61{word-spacing:38.912000pt;}
.ws7e{word-spacing:40.192000pt;}
.ws7f{word-spacing:40.832000pt;}
.ws66{word-spacing:41.472000pt;}
.ws6e{word-spacing:42.112000pt;}
.ws58{word-spacing:43.392000pt;}
.ws60{word-spacing:44.032000pt;}
.ws5c{word-spacing:51.072000pt;}
.ws57{word-spacing:62.592000pt;}
.ws5f{word-spacing:129.152000pt;}
.ws85{word-spacing:159.232000pt;}
._7{margin-left:-11.458560pt;}
._9{margin-left:-9.984000pt;}
._2{margin-left:-9.024000pt;}
._5{margin-left:-7.505280pt;}
._4{margin-left:-5.426560pt;}
._3{margin-left:-4.096000pt;}
._e{margin-left:-3.119360pt;}
._6{margin-left:-2.183040pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.522560pt;}
._a{width:3.125760pt;}
._c{width:4.016640pt;}
._d{width:5.184000pt;}
._10{width:7.872000pt;}
._b{width:12.109440pt;}
._f{width:36.705920pt;}
._8{width:91.384320pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:51.365760pt;}
.y69{bottom:69.280000pt;}
.y1c1{bottom:99.680000pt;}
.y15d{bottom:100.480000pt;}
.y178{bottom:101.440000pt;}
.y1dd{bottom:101.600000pt;}
.y58{bottom:105.120000pt;}
.y124{bottom:105.280000pt;}
.y1a2{bottom:109.120000pt;}
.y117{bottom:117.120000pt;}
.y87{bottom:117.440000pt;}
.y188{bottom:120.960000pt;}
.yde{bottom:121.600000pt;}
.y23d{bottom:126.393600pt;}
.y1c0{bottom:127.360000pt;}
.y15c{bottom:128.160000pt;}
.y12{bottom:128.181120pt;}
.yc5{bottom:128.480000pt;}
.y177{bottom:128.960000pt;}
.y1dc{bottom:129.280000pt;}
.y206{bottom:129.440000pt;}
.ya6{bottom:132.000000pt;}
.y123{bottom:132.960000pt;}
.y1f9{bottom:134.240000pt;}
.y57{bottom:135.680000pt;}
.y1a1{bottom:136.800000pt;}
.yf7{bottom:138.240000pt;}
.y138{bottom:138.880000pt;}
.y24a{bottom:140.833920pt;}
.y116{bottom:144.800000pt;}
.y86{bottom:145.120000pt;}
.y1e4{bottom:146.240000pt;}
.y187{bottom:148.640000pt;}
.ydd{bottom:149.120000pt;}
.y15b{bottom:150.400000pt;}
.y1bf{bottom:154.880000pt;}
.yc4{bottom:156.160000pt;}
.y1db{bottom:156.800000pt;}
.ya5{bottom:159.520000pt;}
.y235{bottom:159.680000pt;}
.y122{bottom:160.480000pt;}
.y1f8{bottom:161.920000pt;}
.y38{bottom:162.720000pt;}
.y1a0{bottom:164.320000pt;}
.y56{bottom:166.080000pt;}
.y205{bottom:169.440000pt;}
.y176{bottom:169.920000pt;}
.y115{bottom:172.320000pt;}
.y85{bottom:172.640000pt;}
.y249{bottom:174.748800pt;}
.y11{bottom:176.330560pt;}
.yf6{bottom:176.480000pt;}
.y1fd{bottom:176.800000pt;}
.y1be{bottom:182.560000pt;}
.y13f{bottom:183.598800pt;}
.y21d{bottom:184.160000pt;}
.y1da{bottom:184.480000pt;}
.ya4{bottom:187.200000pt;}
.y121{bottom:188.000000pt;}
.y1f7{bottom:189.440000pt;}
.y15a{bottom:189.600000pt;}
.ydc{bottom:190.080000pt;}
.y55{bottom:196.152320pt;}
.yc3{bottom:197.120000pt;}
.y1fc{bottom:199.040000pt;}
.y114{bottom:200.000000pt;}
.y13e{bottom:200.078800pt;}
.y84{bottom:200.320000pt;}
.y37{bottom:203.520000pt;}
.yf5{bottom:204.000000pt;}
.y19f{bottom:205.280000pt;}
.y248{bottom:208.663680pt;}
.y175{bottom:210.880000pt;}
.y21c{bottom:211.680000pt;}
.y1d9{bottom:212.000000pt;}
.ya3{bottom:214.720000pt;}
.y234{bottom:214.880000pt;}
.y120{bottom:215.680000pt;}
.y13d{bottom:216.718800pt;}
.y186{bottom:217.120000pt;}
.ydb{bottom:217.600000pt;}
.y1bd{bottom:223.520000pt;}
.y10{bottom:224.480000pt;}
.y54{bottom:224.635520pt;}
.yc2{bottom:224.640000pt;}
.y113{bottom:227.520000pt;}
.y83{bottom:227.840000pt;}
.yf4{bottom:231.680000pt;}
.y19e{bottom:232.800000pt;}
.y174{bottom:238.400000pt;}
.y21b{bottom:239.360000pt;}
.y1d8{bottom:239.680000pt;}
.ya2{bottom:242.400000pt;}
.y247{bottom:242.578560pt;}
.y11f{bottom:243.200000pt;}
.y36{bottom:244.480000pt;}
.y1bc{bottom:251.040000pt;}
.yc1{bottom:252.320000pt;}
.y53{bottom:253.280640pt;}
.y159{bottom:253.920000pt;}
.y112{bottom:255.200000pt;}
.y82{bottom:255.520000pt;}
.y1f6{bottom:257.920000pt;}
.y185{bottom:258.080000pt;}
.yda{bottom:258.560000pt;}
.yf3{bottom:259.200000pt;}
.y19d{bottom:260.480000pt;}
.y173{bottom:266.080000pt;}
.y21a{bottom:266.880000pt;}
.ya1{bottom:269.920000pt;}
.y233{bottom:270.080000pt;}
.y35{bottom:272.160000pt;}
.yf{bottom:275.040000pt;}
.y246{bottom:276.493440pt;}
.y1bb{bottom:278.720000pt;}
.y204{bottom:279.840000pt;}
.y1d7{bottom:280.480000pt;}
.y158{bottom:281.600000pt;}
.y52{bottom:281.925760pt;}
.y111{bottom:282.720000pt;}
.y81{bottom:283.040000pt;}
.y11e{bottom:284.160000pt;}
.y1f5{bottom:285.600000pt;}
.y184{bottom:285.760000pt;}
.yd9{bottom:286.240000pt;}
.yf2{bottom:286.880000pt;}
.y19c{bottom:288.000000pt;}
.y13c{bottom:291.015467pt;}
.yc0{bottom:293.120000pt;}
.y172{bottom:293.600000pt;}
.y219{bottom:294.560000pt;}
.ya0{bottom:297.600000pt;}
.y1ba{bottom:306.240000pt;}
.y203{bottom:307.520000pt;}
.y13b{bottom:307.655467pt;}
.y157{bottom:309.120000pt;}
.y110{bottom:310.400000pt;}
.y245{bottom:310.408320pt;}
.y80{bottom:310.720000pt;}
.y51{bottom:310.880000pt;}
.y11d{bottom:311.840000pt;}
.y34{bottom:313.120000pt;}
.y183{bottom:313.280000pt;}
.yd8{bottom:313.760000pt;}
.yf1{bottom:314.400000pt;}
.y19b{bottom:315.680000pt;}
.ybf{bottom:320.800000pt;}
.y171{bottom:321.280000pt;}
.y1d6{bottom:321.440000pt;}
.y218{bottom:322.080000pt;}
.y1e3{bottom:325.120000pt;}
.y232{bottom:325.280000pt;}
.y23f{bottom:328.480000pt;}
.ye{bottom:330.080000pt;}
.y1b9{bottom:333.920000pt;}
.y202{bottom:335.040000pt;}
.y156{bottom:336.800000pt;}
.y10f{bottom:337.920000pt;}
.y7f{bottom:338.240000pt;}
.y9f{bottom:338.400000pt;}
.y1f4{bottom:340.800000pt;}
.y182{bottom:340.960000pt;}
.y50{bottom:341.280000pt;}
.yd7{bottom:341.440000pt;}
.y19a{bottom:343.200000pt;}
.y244{bottom:344.485120pt;}
.ybe{bottom:348.320000pt;}
.y217{bottom:349.760000pt;}
.yf0{bottom:352.800000pt;}
.y33{bottom:353.920000pt;}
.y1b8{bottom:361.440000pt;}
.y170{bottom:362.080000pt;}
.y1d5{bottom:362.400000pt;}
.y201{bottom:362.720000pt;}
.y155{bottom:364.320000pt;}
.y10e{bottom:365.600000pt;}
.y9e{bottom:366.080000pt;}
.y1f3{bottom:368.320000pt;}
.yd6{bottom:368.960000pt;}
.y199{bottom:370.880000pt;}
.y4f{bottom:371.323520pt;}
.y243{bottom:374.410880pt;}
.ybd{bottom:376.000000pt;}
.y7e{bottom:379.200000pt;}
.yef{bottom:380.320000pt;}
.y231{bottom:380.480000pt;}
.y32{bottom:381.600000pt;}
.y181{bottom:381.760000pt;}
.y16f{bottom:384.480000pt;}
.yd{bottom:385.120000pt;}
.y24d{bottom:387.200000pt;}
.y241{bottom:387.688320pt;}
.y1b7{bottom:389.120000pt;}
.y1d4{bottom:389.920000pt;}
.y13a{bottom:390.235467pt;}
.y200{bottom:390.240000pt;}
.y216{bottom:390.560000pt;}
.y154{bottom:392.000000pt;}
.y10d{bottom:393.120000pt;}
.y9d{bottom:393.600000pt;}
.y1f2{bottom:396.000000pt;}
.yd5{bottom:396.640000pt;}
.y4e{bottom:399.968640pt;}
.ybc{bottom:403.520000pt;}
.y180{bottom:404.164480pt;}
.y7d{bottom:406.720000pt;}
.y139{bottom:406.875467pt;}
.yee{bottom:408.000000pt;}
.y31{bottom:409.120000pt;}
.y198{bottom:411.840000pt;}
.y1ff{bottom:412.480000pt;}
.y1b6{bottom:416.640000pt;}
.y1d3{bottom:417.600000pt;}
.y215{bottom:418.240000pt;}
.y153{bottom:419.520000pt;}
.y10c{bottom:420.800000pt;}
.y1fb{bottom:421.280000pt;}
.y1f1{bottom:423.520000pt;}
.yd4{bottom:424.160000pt;}
.y16e{bottom:427.840000pt;}
.y4d{bottom:428.451840pt;}
.y17f{bottom:428.800000pt;}
.ybb{bottom:431.200000pt;}
.y7c{bottom:434.400000pt;}
.y9c{bottom:434.560000pt;}
.yed{bottom:435.520000pt;}
.y230{bottom:435.680000pt;}
.y30{bottom:436.800000pt;}
.y197{bottom:439.360000pt;}
.yc{bottom:440.160000pt;}
.y1b5{bottom:444.320000pt;}
.y1d2{bottom:445.120000pt;}
.y214{bottom:445.760000pt;}
.y1f0{bottom:445.920000pt;}
.y10b{bottom:448.320000pt;}
.y1fa{bottom:448.800000pt;}
.y1fe{bottom:449.760000pt;}
.yd3{bottom:451.840000pt;}
.y16d{bottom:455.360000pt;}
.y4c{bottom:457.096960pt;}
.y152{bottom:460.480000pt;}
.y7b{bottom:461.920000pt;}
.y9b{bottom:462.240000pt;}
.yec{bottom:463.200000pt;}
.y2f{bottom:464.320000pt;}
.y196{bottom:467.040000pt;}
.y1b4{bottom:471.840000pt;}
.yba{bottom:472.160000pt;}
.y1d1{bottom:472.800000pt;}
.y213{bottom:473.440000pt;}
.y137{bottom:474.728000pt;}
.y10a{bottom:476.000000pt;}
.y1e2{bottom:476.480000pt;}
.yd2{bottom:479.360000pt;}
.y16c{bottom:483.040000pt;}
.y1ef{bottom:483.200000pt;}
.y132{bottom:484.488640pt;}
.y4b{bottom:485.742080pt;}
.y151{bottom:488.000000pt;}
.y7a{bottom:489.600000pt;}
.y9a{bottom:489.760000pt;}
.y11c{bottom:490.720000pt;}
.y22f{bottom:490.880000pt;}
.y2e{bottom:492.000000pt;}
.y136{bottom:492.324000pt;}
.y195{bottom:494.560000pt;}
.yb{bottom:495.200000pt;}
.y1b3{bottom:499.520000pt;}
.yb9{bottom:499.680000pt;}
.y1d0{bottom:500.320000pt;}
.y212{bottom:500.960000pt;}
.y131{bottom:502.084640pt;}
.y109{bottom:503.520000pt;}
.yeb{bottom:504.000000pt;}
.y1ee{bottom:505.760000pt;}
.yd1{bottom:507.040000pt;}
.y135{bottom:509.920000pt;}
.y16b{bottom:510.560000pt;}
.y4a{bottom:514.225280pt;}
.y239{bottom:516.655360pt;}
.y194{bottom:516.800000pt;}
.y99{bottom:517.440000pt;}
.y11b{bottom:518.240000pt;}
.y22e{bottom:518.400000pt;}
.y2d{bottom:519.520000pt;}
.y130{bottom:519.840000pt;}
.y1b2{bottom:521.760000pt;}
.yb8{bottom:527.360000pt;}
.y211{bottom:528.640000pt;}
.y150{bottom:528.960000pt;}
.y79{bottom:530.560000pt;}
.yea{bottom:531.680000pt;}
.yd0{bottom:534.560000pt;}
.y16a{bottom:538.240000pt;}
.y1cf{bottom:541.280000pt;}
.y134{bottom:542.080000pt;}
.y49{bottom:542.870400pt;}
.y108{bottom:544.480000pt;}
.y98{bottom:544.960000pt;}
.y11a{bottom:545.920000pt;}
.y22d{bottom:546.080000pt;}
.y2c{bottom:547.200000pt;}
.y238{bottom:549.289600pt;}
.y14f{bottom:551.360000pt;}
.ya{bottom:551.811360pt;}
.yb7{bottom:554.880000pt;}
.y210{bottom:556.160000pt;}
.y78{bottom:558.080000pt;}
.y12f{bottom:558.240000pt;}
.ye9{bottom:559.200000pt;}
.y193{bottom:560.160000pt;}
.ycf{bottom:562.240000pt;}
.y1b1{bottom:565.120000pt;}
.y169{bottom:565.760000pt;}
.y1ed{bottom:569.920000pt;}
.y48{bottom:571.515520pt;}
.y107{bottom:572.160000pt;}
.y97{bottom:572.640000pt;}
.y22c{bottom:573.600000pt;}
.y2b{bottom:574.720000pt;}
.y237{bottom:582.085760pt;}
.y1ce{bottom:582.240000pt;}
.yb6{bottom:582.560000pt;}
.y133{bottom:583.040000pt;}
.y20f{bottom:583.840000pt;}
.y77{bottom:585.760000pt;}
.y12e{bottom:585.920000pt;}
.ye8{bottom:586.880000pt;}
.y192{bottom:587.840000pt;}
.y68{bottom:592.960000pt;}
.y168{bottom:593.280000pt;}
.y14e{bottom:594.560000pt;}
.y9{bottom:596.947360pt;}
.y1ec{bottom:597.600000pt;}
.y1c{bottom:598.712960pt;}
.y106{bottom:599.680000pt;}
.y96{bottom:600.160000pt;}
.y47{bottom:600.160640pt;}
.y22b{bottom:601.280000pt;}
.y2a{bottom:602.400000pt;}
.yce{bottom:603.040000pt;}
.y1b0{bottom:606.080000pt;}
.y17e{bottom:610.080000pt;}
.y20e{bottom:611.360000pt;}
.y76{bottom:613.280000pt;}
.y1e1{bottom:613.440000pt;}
.ye7{bottom:614.400000pt;}
.y236{bottom:614.720000pt;}
.y191{bottom:615.360000pt;}
.y167{bottom:620.960000pt;}
.y14d{bottom:622.240000pt;}
.y1cd{bottom:623.200000pt;}
.yb5{bottom:623.360000pt;}
.y1eb{bottom:625.120000pt;}
.y12d{bottom:626.880000pt;}
.y67{bottom:627.360000pt;}
.y95{bottom:627.840000pt;}
.y46{bottom:628.643840pt;}
.y22a{bottom:628.800000pt;}
.y29{bottom:629.920000pt;}
.ycd{bottom:630.720000pt;}
.y1b{bottom:631.200000pt;}
.y1af{bottom:633.600000pt;}
.y20d{bottom:634.880000pt;}
.y17d{bottom:637.760000pt;}
.y105{bottom:640.640000pt;}
.y1e0{bottom:641.120000pt;}
.ye6{bottom:642.080000pt;}
.y166{bottom:643.200000pt;}
.y14c{bottom:649.760000pt;}
.y24b{bottom:650.556160pt;}
.y23e{bottom:650.560000pt;}
.y1cc{bottom:650.720000pt;}
.yb4{bottom:651.040000pt;}
.y1ea{bottom:652.800000pt;}
.y75{bottom:654.240000pt;}
.y12c{bottom:654.400000pt;}
.y94{bottom:655.360000pt;}
.y8{bottom:655.520000pt;}
.y190{bottom:656.320000pt;}
.y229{bottom:656.480000pt;}
.y28{bottom:657.600000pt;}
.y45{bottom:657.760000pt;}
.ycc{bottom:658.240000pt;}
.y1ae{bottom:661.280000pt;}
.y17c{bottom:665.280000pt;}
.y104{bottom:668.160000pt;}
.y66{bottom:668.320000pt;}
.y1df{bottom:668.640000pt;}
.y1a{bottom:669.354880pt;}
.y119{bottom:669.600000pt;}
.y1cb{bottom:678.400000pt;}
.yb3{bottom:678.560000pt;}
.y1e9{bottom:680.320000pt;}
.y165{bottom:680.480000pt;}
.y24e{bottom:680.960000pt;}
.y74{bottom:681.760000pt;}
.y12b{bottom:682.080000pt;}
.y93{bottom:683.040000pt;}
.y18f{bottom:683.840000pt;}
.y228{bottom:684.000000pt;}
.y14b{bottom:684.640000pt;}
.y27{bottom:685.120000pt;}
.ycb{bottom:685.920000pt;}
.y44{bottom:687.675520pt;}
.y1ad{bottom:688.800000pt;}
.y17b{bottom:692.960000pt;}
.y103{bottom:695.840000pt;}
.y1de{bottom:696.320000pt;}
.y20c{bottom:699.200000pt;}
.y65{bottom:702.880000pt;}
.y1ca{bottom:705.920000pt;}
.y14a{bottom:706.080000pt;}
.yb2{bottom:706.240000pt;}
.y1e8{bottom:708.000000pt;}
.y24c{bottom:709.280000pt;}
.y242{bottom:709.290880pt;}
.y73{bottom:709.440000pt;}
.y240{bottom:709.452800pt;}
.y12a{bottom:709.600000pt;}
.ye5{bottom:710.560000pt;}
.y18e{bottom:711.520000pt;}
.y227{bottom:711.680000pt;}
.y7{bottom:712.480000pt;}
.y26{bottom:712.800000pt;}
.yca{bottom:713.440000pt;}
.y1ac{bottom:716.320000pt;}
.y43{bottom:716.320640pt;}
.y19{bottom:717.344000pt;}
.y164{bottom:720.480000pt;}
.y102{bottom:723.360000pt;}
.y92{bottom:723.840000pt;}
.y20b{bottom:726.880000pt;}
.y1c9{bottom:733.600000pt;}
.yb1{bottom:733.760000pt;}
.y1e7{bottom:735.520000pt;}
.y72{bottom:736.960000pt;}
.y129{bottom:737.280000pt;}
.ye4{bottom:738.240000pt;}
.y1ab{bottom:738.720000pt;}
.y226{bottom:739.200000pt;}
.y25{bottom:740.320000pt;}
.yc9{bottom:741.120000pt;}
.y149{bottom:743.360000pt;}
.y64{bottom:743.840000pt;}
.y42{bottom:744.965760pt;}
.y163{bottom:748.160000pt;}
.y101{bottom:751.040000pt;}
.y91{bottom:751.520000pt;}
.y18d{bottom:752.480000pt;}
.y20a{bottom:754.400000pt;}
.y1c8{bottom:761.120000pt;}
.yb0{bottom:761.440000pt;}
.y71{bottom:764.640000pt;}
.y128{bottom:764.800000pt;}
.y63{bottom:764.805280pt;}
.y18{bottom:765.493440pt;}
.ye3{bottom:765.760000pt;}
.y225{bottom:766.880000pt;}
.y6{bottom:767.680000pt;}
.y24{bottom:768.000000pt;}
.yc8{bottom:768.640000pt;}
.y17a{bottom:770.400000pt;}
.y41{bottom:773.920000pt;}
.y162{bottom:775.680000pt;}
.y100{bottom:778.560000pt;}
.y90{bottom:779.040000pt;}
.y18c{bottom:780.000000pt;}
.y1aa{bottom:782.080000pt;}
.y62{bottom:782.720000pt;}
.y148{bottom:783.200000pt;}
.y1c7{bottom:788.800000pt;}
.yaf{bottom:788.960000pt;}
.y70{bottom:792.160000pt;}
.y127{bottom:792.480000pt;}
.y1e6{bottom:792.960000pt;}
.ye2{bottom:793.440000pt;}
.y224{bottom:794.400000pt;}
.y23{bottom:795.520000pt;}
.yc7{bottom:796.320000pt;}
.y61{bottom:801.129280pt;}
.y161{bottom:803.360000pt;}
.y40{bottom:803.995520pt;}
.yff{bottom:806.240000pt;}
.y8f{bottom:806.720000pt;}
.y179{bottom:807.680000pt;}
.y1a9{bottom:809.600000pt;}
.y147{bottom:810.880000pt;}
.y17{bottom:813.642880pt;}
.y1c6{bottom:816.320000pt;}
.yae{bottom:816.640000pt;}
.yc6{bottom:818.560000pt;}
.y60{bottom:819.044000pt;}
.y6f{bottom:819.840000pt;}
.y126{bottom:820.000000pt;}
.y18b{bottom:820.960000pt;}
.y223{bottom:822.080000pt;}
.y5{bottom:822.720000pt;}
.y22{bottom:823.200000pt;}
.y3f{bottom:823.676160pt;}
.y160{bottom:830.880000pt;}
.yfe{bottom:833.760000pt;}
.y8e{bottom:834.240000pt;}
.y5f{bottom:836.640000pt;}
.y1a8{bottom:837.280000pt;}
.y146{bottom:838.400000pt;}
.y1c5{bottom:844.000000pt;}
.yad{bottom:844.160000pt;}
.y6e{bottom:847.360000pt;}
.y125{bottom:847.680000pt;}
.y18a{bottom:848.480000pt;}
.y222{bottom:849.600000pt;}
.y21{bottom:850.720000pt;}
.y3e{bottom:851.997440pt;}
.y1e5{bottom:859.520000pt;}
.yfd{bottom:861.440000pt;}
.y16{bottom:861.632000pt;}
.y8d{bottom:861.920000pt;}
.y1a7{bottom:864.800000pt;}
.y15f{bottom:865.760000pt;}
.y145{bottom:866.080000pt;}
.y1c4{bottom:871.520000pt;}
.yac{bottom:871.840000pt;}
.y5e{bottom:875.040000pt;}
.y118{bottom:875.200000pt;}
.y189{bottom:876.160000pt;}
.y4{bottom:876.480320pt;}
.y221{bottom:877.280000pt;}
.y209{bottom:878.080000pt;}
.y20{bottom:878.400000pt;}
.y3d{bottom:880.480640pt;}
.y15e{bottom:887.040000pt;}
.yfc{bottom:888.960000pt;}
.y8c{bottom:889.440000pt;}
.y1a6{bottom:892.480000pt;}
.y144{bottom:893.600000pt;}
.y1c3{bottom:899.200000pt;}
.yab{bottom:899.360000pt;}
.ye1{bottom:902.880000pt;}
.y23c{bottom:904.640000pt;}
.y220{bottom:904.800000pt;}
.y208{bottom:905.760000pt;}
.y1f{bottom:905.920000pt;}
.y3c{bottom:909.125760pt;}
.y15{bottom:909.781440pt;}
.y6d{bottom:909.920000pt;}
.y3{bottom:914.720000pt;}
.y5d{bottom:916.000000pt;}
.y8b{bottom:917.120000pt;}
.y1a5{bottom:920.000000pt;}
.y23b{bottom:925.916000pt;}
.yaa{bottom:927.040000pt;}
.y143{bottom:928.480000pt;}
.yfb{bottom:929.920000pt;}
.ye0{bottom:930.400000pt;}
.y6c{bottom:931.200000pt;}
.y21f{bottom:932.480000pt;}
.y207{bottom:933.280000pt;}
.y1e{bottom:933.600000pt;}
.y5c{bottom:937.751040pt;}
.y3b{bottom:938.080000pt;}
.y1c2{bottom:942.240000pt;}
.y8a{bottom:944.640000pt;}
.y142{bottom:949.920000pt;}
.y23a{bottom:950.720000pt;}
.yfa{bottom:952.156000pt;}
.ya9{bottom:954.560000pt;}
.y14{bottom:957.930880pt;}
.ydf{bottom:958.080000pt;}
.y1a4{bottom:960.960000pt;}
.y5b{bottom:966.234240pt;}
.y21e{bottom:967.360000pt;}
.y2{bottom:967.520000pt;}
.y3a{bottom:967.680000pt;}
.yf9{bottom:976.960000pt;}
.y89{bottom:985.600000pt;}
.y141{bottom:986.240000pt;}
.y1a3{bottom:988.480000pt;}
.ya8{bottom:989.440000pt;}
.y1d{bottom:989.760000pt;}
.y6b{bottom:989.920000pt;}
.y5a{bottom:994.879360pt;}
.y13{bottom:1005.920000pt;}
.y140{bottom:1008.480000pt;}
.y39{bottom:1010.720000pt;}
.ya7{bottom:1010.880000pt;}
.y88{bottom:1013.280000pt;}
.y1{bottom:1014.080000pt;}
.yf8{bottom:1014.245120pt;}
.y59{bottom:1014.560000pt;}
.h2{height:39.243750pt;}
.h7{height:44.160000pt;}
.hc{height:55.402500pt;}
.h9{height:61.410000pt;}
.ha{height:66.750000pt;}
.hd{height:74.162500pt;}
.hb{height:78.097500pt;}
.h6{height:80.160000pt;}
.h4{height:87.840000pt;}
.h8{height:88.777500pt;}
.h3{height:96.000000pt;}
.h5{height:104.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x10{left:109.274240pt;}
.x12{left:113.440000pt;}
.xe{left:118.560000pt;}
.x8{left:129.456000pt;}
.xa{left:132.800000pt;}
.x13{left:137.440000pt;}
.x14{left:151.200000pt;}
.x20{left:152.320000pt;}
.x16{left:161.440000pt;}
.x15{left:175.200000pt;}
.x19{left:185.440000pt;}
.x17{left:199.200000pt;}
.x1a{left:209.450240pt;}
.x1c{left:216.095200pt;}
.x18{left:223.200000pt;}
.x1f{left:236.000000pt;}
.x1d{left:240.139467pt;}
.xb{left:254.400000pt;}
.x2{left:270.560000pt;}
.xd{left:281.600000pt;}
.x9{left:292.188640pt;}
.x21{left:355.520000pt;}
.xf{left:365.280000pt;}
.x3{left:366.560000pt;}
.x1e{left:389.440000pt;}
.x11{left:393.120000pt;}
.x7{left:396.800000pt;}
.x5{left:414.080000pt;}
.x6{left:485.440000pt;}
.x4{left:575.853440pt;}
.x22{left:680.321920pt;}
.x1b{left:687.360000pt;}
.xc{left:699.200000pt;}
.x23{left:728.320000pt;}
}




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