
    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_00286ea376944f654873d1a0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105469;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_0ad291bdc9d320c2515bc52a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_9883aceba3450ea0d0fa8789.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_5026aacb07530dbd54b7d602.woff')format("woff");}.ff4{font-family:ff4;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_08f4f73abc478ee2bf5e0f4b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084473;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_d375634db7a4d3fca18531d5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.014000;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_ea50ea86e44700df23877c16.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_38ef39fc2a21f35b0940004c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_43bb0f06b717e5ab0736ba7e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_84f9f4e4c17049406b87e6a6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.076172;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_40655ceef5761c14add09b14.woff')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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_c0b853d5a1c523a80bc86d5b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v3{vertical-align:66.000000px;}
.ls45{letter-spacing:-6.264000px;}
.ls42{letter-spacing:-4.686000px;}
.ls51{letter-spacing:-4.500000px;}
.ls48{letter-spacing:-4.464000px;}
.ls32{letter-spacing:-3.456000px;}
.ls33{letter-spacing:-3.024000px;}
.ls46{letter-spacing:-2.952000px;}
.ls28{letter-spacing:-2.880000px;}
.ls4a{letter-spacing:-2.808000px;}
.ls2a{letter-spacing:-2.736000px;}
.ls31{letter-spacing:-2.592000px;}
.ls53{letter-spacing:-2.460000px;}
.ls20{letter-spacing:-2.376000px;}
.ls49{letter-spacing:-2.340000px;}
.ls50{letter-spacing:-2.220000px;}
.ls26{letter-spacing:-2.088000px;}
.ls19{letter-spacing:-2.016000px;}
.ls1f{letter-spacing:-1.944000px;}
.ls2b{letter-spacing:-1.872000px;}
.ls47{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.728000px;}
.ls24{letter-spacing:-1.680000px;}
.ls1b{letter-spacing:-1.656000px;}
.ls3e{letter-spacing:-1.620000px;}
.ls21{letter-spacing:-1.584000px;}
.ls1d{letter-spacing:-1.512000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls4d{letter-spacing:-1.380000px;}
.ls34{letter-spacing:-1.368000px;}
.ls27{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-1.152000px;}
.ls25{letter-spacing:-1.122000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-1.008000px;}
.ls39{letter-spacing:-0.969000px;}
.ls52{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.936000px;}
.ls2e{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.864000px;}
.ls3d{letter-spacing:-0.840000px;}
.ls38{letter-spacing:-0.798000px;}
.ls22{letter-spacing:-0.792000px;}
.ls3f{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.576000px;}
.ls36{letter-spacing:-0.570000px;}
.ls54{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.330000px;}
.ls3c{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls59{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.840000px;}
.ls41{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.254000px;}
.ls10{letter-spacing:1.584000px;}
.ls7{letter-spacing:1.740000px;}
.ls37{letter-spacing:1.824000px;}
.ls4c{letter-spacing:2.160000px;}
.ls30{letter-spacing:3.168000px;}
.ls57{letter-spacing:3.780000px;}
.ls4f{letter-spacing:4.752000px;}
.ls56{letter-spacing:4.848000px;}
.ls6{letter-spacing:5.568000px;}
.ls44{letter-spacing:5.616000px;}
.ls4{letter-spacing:5.664000px;}
.ls8{letter-spacing:5.700000px;}
.ls4e{letter-spacing:5.880000px;}
.ls2c{letter-spacing:5.904000px;}
.lse{letter-spacing:6.000000px;}
.ls2{letter-spacing:10.956000px;}
.ls3{letter-spacing:10.962000px;}
.ls5{letter-spacing:12.474000px;}
.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;}
}
.ws3{word-spacing:-27.648000px;}
.ws2{word-spacing:-26.136000px;}
.ws2d{word-spacing:-21.240000px;}
.ws87{word-spacing:-20.640000px;}
.ws28{word-spacing:-20.376000px;}
.ws54{word-spacing:-19.944000px;}
.ws13{word-spacing:-19.368000px;}
.ws52{word-spacing:-19.296000px;}
.ws53{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.600000px;}
.ws73{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.546000px;}
.ws72{word-spacing:-18.288000px;}
.ws58{word-spacing:-17.841000px;}
.ws86{word-spacing:-17.100000px;}
.ws4a{word-spacing:-16.992000px;}
.ws8a{word-spacing:-16.920000px;}
.ws2f{word-spacing:-16.860000px;}
.ws4c{word-spacing:-16.776000px;}
.ws1d{word-spacing:-16.704000px;}
.ws4b{word-spacing:-16.632000px;}
.ws60{word-spacing:-16.560000px;}
.ws7c{word-spacing:-16.500000px;}
.ws5f{word-spacing:-16.440000px;}
.ws1f{word-spacing:-16.344000px;}
.ws1e{word-spacing:-16.272000px;}
.ws3f{word-spacing:-16.200000px;}
.ws47{word-spacing:-15.960000px;}
.ws2e{word-spacing:-15.840000px;}
.ws76{word-spacing:-15.780000px;}
.ws75{word-spacing:-15.480000px;}
.ws61{word-spacing:-15.360000px;}
.ws1{word-spacing:-15.228000px;}
.ws4d{word-spacing:-15.192000px;}
.ws49{word-spacing:-15.048000px;}
.ws40{word-spacing:-14.820000px;}
.ws7e{word-spacing:-14.640000px;}
.ws5e{word-spacing:-14.580000px;}
.ws71{word-spacing:-14.520000px;}
.ws63{word-spacing:-14.160000px;}
.ws62{word-spacing:-14.040000px;}
.ws85{word-spacing:-13.980000px;}
.ws7f{word-spacing:-13.860000px;}
.ws7d{word-spacing:-12.360000px;}
.ws7a{word-spacing:-12.336000px;}
.ws1c{word-spacing:-11.795256px;}
.ws10{word-spacing:-6.000000px;}
.ws41{word-spacing:-5.904000px;}
.ws79{word-spacing:-5.880000px;}
.ws7{word-spacing:-5.664000px;}
.ws6c{word-spacing:-2.394000px;}
.ws44{word-spacing:-2.304000px;}
.ws46{word-spacing:-2.160000px;}
.ws12{word-spacing:-1.584000px;}
.ws4e{word-spacing:-1.512000px;}
.ws68{word-spacing:-1.440000px;}
.ws6b{word-spacing:-1.254000px;}
.wsf{word-spacing:-1.080000px;}
.ws11{word-spacing:-1.008000px;}
.ws77{word-spacing:-0.960000px;}
.ws36{word-spacing:-0.864000px;}
.ws8b{word-spacing:-0.840000px;}
.ws8{word-spacing:-0.768000px;}
.ws1b{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.648000px;}
.ws3c{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.396000px;}
.ws7b{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.wsc{word-spacing:0.144000px;}
.ws48{word-spacing:0.180000px;}
.ws37{word-spacing:0.216000px;}
.ws24{word-spacing:0.288000px;}
.wsa{word-spacing:0.300000px;}
.ws59{word-spacing:0.330000px;}
.ws14{word-spacing:0.360000px;}
.ws83{word-spacing:0.420000px;}
.ws65{word-spacing:0.432000px;}
.ws89{word-spacing:0.480000px;}
.ws5b{word-spacing:0.570000px;}
.ws30{word-spacing:0.576000px;}
.ws45{word-spacing:0.600000px;}
.ws1a{word-spacing:0.648000px;}
.ws22{word-spacing:0.720000px;}
.ws81{word-spacing:0.780000px;}
.ws35{word-spacing:0.792000px;}
.ws5c{word-spacing:0.798000px;}
.ws16{word-spacing:0.864000px;}
.wse{word-spacing:0.936000px;}
.ws18{word-spacing:1.008000px;}
.ws33{word-spacing:1.122000px;}
.ws17{word-spacing:1.152000px;}
.ws31{word-spacing:1.224000px;}
.ws38{word-spacing:1.296000px;}
.ws21{word-spacing:1.368000px;}
.ws23{word-spacing:1.440000px;}
.ws51{word-spacing:1.512000px;}
.ws27{word-spacing:1.584000px;}
.ws66{word-spacing:1.656000px;}
.ws32{word-spacing:1.680000px;}
.wsb{word-spacing:1.728000px;}
.ws5a{word-spacing:1.800000px;}
.ws3b{word-spacing:1.872000px;}
.ws25{word-spacing:1.944000px;}
.ws20{word-spacing:2.016000px;}
.ws34{word-spacing:2.088000px;}
.ws80{word-spacing:2.220000px;}
.ws82{word-spacing:2.340000px;}
.ws26{word-spacing:2.376000px;}
.ws88{word-spacing:2.460000px;}
.ws43{word-spacing:2.520000px;}
.ws78{word-spacing:2.592000px;}
.ws69{word-spacing:2.664000px;}
.ws3a{word-spacing:2.736000px;}
.ws74{word-spacing:2.808000px;}
.ws39{word-spacing:2.880000px;}
.ws6f{word-spacing:2.952000px;}
.ws55{word-spacing:3.024000px;}
.ws42{word-spacing:3.384000px;}
.ws4f{word-spacing:3.456000px;}
.ws50{word-spacing:3.672000px;}
.ws70{word-spacing:3.960000px;}
.ws3e{word-spacing:4.248000px;}
.ws56{word-spacing:4.464000px;}
.ws6a{word-spacing:4.686000px;}
.ws2c{word-spacing:5.616000px;}
.ws6d{word-spacing:6.264000px;}
.ws2a{word-spacing:6.408000px;}
.ws29{word-spacing:6.624000px;}
.ws57{word-spacing:6.840000px;}
.ws6e{word-spacing:7.128000px;}
.ws2b{word-spacing:7.416000px;}
.ws3d{word-spacing:7.704000px;}
.ws64{word-spacing:9.288000px;}
.ws67{word-spacing:10.368000px;}
.ws5d{word-spacing:300.030000px;}
.ws84{word-spacing:667.524000px;}
.ws0{word-spacing:674.346000px;}
._13{margin-left:-867.331800px;}
._1b{margin-left:-865.107600px;}
._17{margin-left:-862.784400px;}
._16{margin-left:-861.583200px;}
._a{margin-left:-860.401800px;}
._2{margin-left:-717.197400px;}
._25{margin-left:-710.375400px;}
._6{margin-left:-10.836000px;}
._20{margin-left:-9.756000px;}
._15{margin-left:-8.604000px;}
._14{margin-left:-7.596000px;}
._7{margin-left:-6.504000px;}
._3{margin-left:-5.475600px;}
._8{margin-left:-4.108800px;}
._5{margin-left:-2.956800px;}
._1{margin-left:-1.339200px;}
._0{width:1.209600px;}
._4{width:2.397600px;}
._9{width:3.823200px;}
._b{width:5.040000px;}
._11{width:6.386400px;}
._c{width:7.531200px;}
._d{width:9.148800px;}
._10{width:10.526400px;}
._24{width:11.534400px;}
._e{width:12.556800px;}
._f{width:13.795200px;}
._12{width:15.146400px;}
._1e{width:16.682400px;}
._1f{width:17.769600px;}
._18{width:19.159200px;}
._1d{width:27.198000px;}
._1a{width:31.550400px;}
._19{width:34.099200px;}
._23{width:35.438400px;}
._21{width:84.492000px;}
._1c{width:87.768000px;}
._22{width:490.467600px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.524900px;}
.y1{bottom:72.000000px;}
.y45{bottom:117.000000px;}
.y6a{bottom:117.000150px;}
.y7d{bottom:117.750000px;}
.y222{bottom:118.274400px;}
.y169{bottom:119.964000px;}
.yfd{bottom:121.500000px;}
.y1c6{bottom:123.750000px;}
.y17f{bottom:125.747550px;}
.yd4{bottom:126.000000px;}
.y9f{bottom:128.250000px;}
.ybc{bottom:130.500000px;}
.y1d6{bottom:132.000000px;}
.y1bd{bottom:133.500000px;}
.y7c{bottom:135.750000px;}
.y221{bottom:137.024400px;}
.y44{bottom:139.500000px;}
.y168{bottom:142.470000px;}
.y148{bottom:143.774400px;}
.y1a2{bottom:143.924400px;}
.y9e{bottom:146.250000px;}
.y1f8{bottom:147.000000px;}
.ybb{bottom:148.500000px;}
.y17e{bottom:149.747550px;}
.y1d5{bottom:150.000000px;}
.y1c5{bottom:153.000000px;}
.y7b{bottom:153.750000px;}
.y220{bottom:155.774400px;}
.y69{bottom:156.000000px;}
.y1e7{bottom:157.500000px;}
.y11d{bottom:159.497550px;}
.y15b{bottom:159.749400px;}
.y147{bottom:160.274400px;}
.y43{bottom:162.000000px;}
.ye8{bottom:164.250000px;}
.y167{bottom:164.976000px;}
.y1f7{bottom:165.750000px;}
.y1a1{bottom:166.424400px;}
.y1d4{bottom:168.000000px;}
.yfc{bottom:168.750000px;}
.y1c4{bottom:171.000000px;}
.y7a{bottom:171.750000px;}
.y181{bottom:173.747550px;}
.y9d{bottom:175.500000px;}
.y11c{bottom:175.997550px;}
.y15a{bottom:176.249400px;}
.yba{bottom:177.750000px;}
.y68{bottom:178.500000px;}
.y20{bottom:180.000000px;}
.yd3{bottom:182.250000px;}
.y146{bottom:182.774400px;}
.y42{bottom:184.500000px;}
.y1d3{bottom:186.000000px;}
.y10f{bottom:186.750000px;}
.y166{bottom:187.482000px;}
.y1a0{bottom:188.924400px;}
.yfb{bottom:191.250000px;}
.y17d{bottom:191.747550px;}
.y21f{bottom:193.274400px;}
.y1b0{bottom:193.500000px;}
.y9c{bottom:198.000000px;}
.y11b{bottom:198.497550px;}
.y159{bottom:198.749400px;}
.y1f{bottom:198.750000px;}
.y145{bottom:199.274400px;}
.yb9{bottom:200.250000px;}
.y67{bottom:201.000000px;}
.y1f6{bottom:203.250000px;}
.y41{bottom:207.000000px;}
.y10e{bottom:209.250000px;}
.y165{bottom:209.988000px;}
.y19f{bottom:211.424400px;}
.y1d2{bottom:211.500000px;}
.y21e{bottom:212.024400px;}
.y1d1{bottom:213.750000px;}
.y11a{bottom:214.997550px;}
.y158{bottom:215.249400px;}
.y17c{bottom:215.747550px;}
.ye7{bottom:218.250000px;}
.y9b{bottom:220.500000px;}
.y144{bottom:221.774400px;}
.y1f5{bottom:222.000000px;}
.yb8{bottom:222.750000px;}
.y66{bottom:223.500000px;}
.yfa{bottom:225.000000px;}
.y1e{bottom:226.500000px;}
.y40{bottom:229.500000px;}
.y21d{bottom:230.774400px;}
.y10d{bottom:231.750000px;}
.y164{bottom:232.494000px;}
.y19e{bottom:233.924400px;}
.y79{bottom:234.750000px;}
.ye6{bottom:236.250000px;}
.y119{bottom:237.497550px;}
.y157{bottom:237.749400px;}
.y143{bottom:238.274400px;}
.y17b{bottom:239.747550px;}
.y1af{bottom:240.750000px;}
.y9a{bottom:243.000000px;}
.y1d{bottom:245.250000px;}
.y65{bottom:246.000000px;}
.y1e6{bottom:247.500000px;}
.y21c{bottom:249.524400px;}
.y3f{bottom:252.000000px;}
.y78{bottom:252.750000px;}
.y118{bottom:253.997550px;}
.y156{bottom:254.249400px;}
.ye5{bottom:254.250000px;}
.y141{bottom:254.774400px;}
.y163{bottom:255.000000px;}
.y19d{bottom:256.424400px;}
.y1d0{bottom:258.750000px;}
.y1f4{bottom:259.500000px;}
.y142{bottom:260.774400px;}
.yf9{bottom:261.000000px;}
.y17a{bottom:263.747550px;}
.y1c{bottom:264.000000px;}
.y99{bottom:265.500000px;}
.y1c3{bottom:267.750000px;}
.y21b{bottom:268.274400px;}
.y64{bottom:268.500000px;}
.y1ae{bottom:270.000000px;}
.y77{bottom:270.750000px;}
.y1bc{bottom:271.500000px;}
.y3e{bottom:274.500000px;}
.y117{bottom:275.977650px;}
.y155{bottom:276.749400px;}
.y10c{bottom:276.750000px;}
.y140{bottom:277.274400px;}
.y162{bottom:277.500000px;}
.y1f3{bottom:278.250000px;}
.y19c{bottom:278.924400px;}
.yb7{bottom:279.000000px;}
.y1cf{bottom:281.250000px;}
.y1b{bottom:282.750000px;}
.ye4{bottom:283.500000px;}
.yd2{bottom:285.750000px;}
.y179{bottom:287.747550px;}
.y98{bottom:288.000000px;}
.y1c2{bottom:290.250000px;}
.y63{bottom:291.000000px;}
.y1ad{bottom:292.500000px;}
.y154{bottom:293.249400px;}
.y13f{bottom:293.774400px;}
.y116{bottom:293.975400px;}
.y3d{bottom:297.000000px;}
.y21a{bottom:298.274400px;}
.y10b{bottom:299.250000px;}
.y76{bottom:300.000000px;}
.y19b{bottom:301.424400px;}
.y1a{bottom:301.500000px;}
.yd1{bottom:303.750000px;}
.y178{bottom:311.747550px;}
.y115{bottom:311.973150px;}
.y1c1{bottom:312.750000px;}
.y62{bottom:313.500000px;}
.yf8{bottom:315.000000px;}
.y13e{bottom:315.749400px;}
.y1f2{bottom:315.750000px;}
.ye3{bottom:317.250000px;}
.y3c{bottom:319.500000px;}
.y19{bottom:320.250000px;}
.y97{bottom:321.750000px;}
.y75{bottom:322.500000px;}
.y19a{bottom:323.924400px;}
.yb6{bottom:326.250000px;}
.y13d{bottom:332.249400px;}
.yd0{bottom:333.000000px;}
.y1f1{bottom:334.500000px;}
.ye2{bottom:335.250000px;}
.y177{bottom:335.747550px;}
.y61{bottom:336.000000px;}
.y1e5{bottom:337.500000px;}
.y18{bottom:339.000000px;}
.y219{bottom:339.524400px;}
.y96{bottom:339.750000px;}
.y3b{bottom:342.000000px;}
.yf7{bottom:344.250000px;}
.y74{bottom:345.000000px;}
.y199{bottom:346.424400px;}
.yb5{bottom:348.750000px;}
.y1bb{bottom:351.000000px;}
.ye1{bottom:353.250000px;}
.y13c{bottom:354.749400px;}
.y1e4{bottom:355.500000px;}
.y17{bottom:357.750000px;}
.y218{bottom:358.274400px;}
.y60{bottom:358.500000px;}
.y176{bottom:359.747550px;}
.y3a{bottom:364.500000px;}
.ycf{bottom:366.750000px;}
.y73{bottom:367.500000px;}
.y198{bottom:368.924400px;}
.y13b{bottom:371.249400px;}
.ye0{bottom:371.250000px;}
.y1f0{bottom:372.000000px;}
.y1e3{bottom:373.500000px;}
.y95{bottom:375.750000px;}
.y217{bottom:377.024400px;}
.y1ce{bottom:377.250000px;}
.yf6{bottom:378.000000px;}
.y1ba{bottom:380.250000px;}
.y5f{bottom:381.000000px;}
.yb4{bottom:382.500000px;}
.y175{bottom:383.747550px;}
.yce{bottom:384.750000px;}
.y16{bottom:385.500000px;}
.y39{bottom:387.000000px;}
.ydf{bottom:389.250000px;}
.y72{bottom:390.000000px;}
.y1ef{bottom:390.750000px;}
.y197{bottom:391.424400px;}
.y1e2{bottom:391.500000px;}
.y13a{bottom:393.749400px;}
.y94{bottom:393.750000px;}
.y216{bottom:395.774400px;}
.yf5{bottom:396.000000px;}
.yb3{bottom:400.500000px;}
.y1b9{bottom:402.750000px;}
.y5e{bottom:403.500000px;}
.y180{bottom:407.747550px;}
.y38{bottom:409.500000px;}
.y139{bottom:410.249400px;}
.y93{bottom:411.750000px;}
.y71{bottom:412.500000px;}
.y196{bottom:413.924400px;}
.ycd{bottom:414.000000px;}
.y215{bottom:414.524400px;}
.y1cd{bottom:416.250000px;}
.y1c0{bottom:425.250000px;}
.y174{bottom:425.747550px;}
.y5d{bottom:426.000000px;}
.y1e1{bottom:427.500000px;}
.y1ee{bottom:428.250000px;}
.y15{bottom:429.000000px;}
.y92{bottom:429.750000px;}
.y37{bottom:432.000000px;}
.y138{bottom:432.749400px;}
.y214{bottom:433.274400px;}
.y10a{bottom:434.250000px;}
.y70{bottom:435.000000px;}
.y195{bottom:436.424400px;}
.ycc{bottom:436.500000px;}
.y1cc{bottom:438.750000px;}
.y1e0{bottom:445.500000px;}
.yde{bottom:447.750000px;}
.y5c{bottom:448.500000px;}
.y137{bottom:449.249400px;}
.y173{bottom:449.747550px;}
.yf4{bottom:450.000000px;}
.y213{bottom:452.024400px;}
.y36{bottom:454.500000px;}
.y14{bottom:456.750000px;}
.y6f{bottom:457.500000px;}
.y194{bottom:458.924400px;}
.y91{bottom:459.000000px;}
.y1ed{bottom:460.500000px;}
.y1ac{bottom:461.250000px;}
.yb2{bottom:463.500000px;}
.ydd{bottom:465.750000px;}
.yf3{bottom:468.000000px;}
.ycb{bottom:470.250000px;}
.y212{bottom:470.774400px;}
.y5b{bottom:471.000000px;}
.y136{bottom:471.749400px;}
.y172{bottom:473.747550px;}
.y13{bottom:475.500000px;}
.y35{bottom:477.000000px;}
.y109{bottom:479.250000px;}
.y6e{bottom:480.000000px;}
.y193{bottom:481.424400px;}
.yb1{bottom:481.500000px;}
.y6b{bottom:483.000000px;}
.y1cb{bottom:483.750000px;}
.y135{bottom:488.249400px;}
.yca{bottom:488.250000px;}
.y211{bottom:489.524400px;}
.y1ec{bottom:490.500000px;}
.y90{bottom:492.750000px;}
.y5a{bottom:493.500000px;}
.y12{bottom:494.250000px;}
.ydc{bottom:495.000000px;}
.yf2{bottom:497.250000px;}
.y171{bottom:498.725400px;}
.y34{bottom:499.500000px;}
.y108{bottom:501.750000px;}
.y6d{bottom:502.500000px;}
.y192{bottom:503.924400px;}
.y1b8{bottom:506.250000px;}
.y210{bottom:508.274400px;}
.y1ab{bottom:508.500000px;}
.y134{bottom:510.749400px;}
.y8f{bottom:510.750000px;}
.y11{bottom:513.000000px;}
.y59{bottom:516.000000px;}
.y170{bottom:516.723150px;}
.yc9{bottom:517.500000px;}
.yf1{bottom:519.750000px;}
.y33{bottom:522.000000px;}
.y107{bottom:524.250000px;}
.y6c{bottom:525.000000px;}
.y191{bottom:526.424400px;}
.y1aa{bottom:526.500000px;}
.y20f{bottom:527.024400px;}
.y133{bottom:527.249400px;}
.y8e{bottom:528.750000px;}
.y10{bottom:531.750000px;}
.yb0{bottom:533.250000px;}
.y1df{bottom:535.500000px;}
.y58{bottom:538.500000px;}
.yc8{bottom:540.000000px;}
.yf0{bottom:542.250000px;}
.y32{bottom:544.500000px;}
.y20e{bottom:545.774400px;}
.y8d{bottom:546.750000px;}
.y161{bottom:547.500000px;}
.y190{bottom:548.924400px;}
.y132{bottom:549.749400px;}
.y16f{bottom:549.750000px;}
.yf{bottom:550.500000px;}
.ydb{bottom:551.250000px;}
.y1b7{bottom:553.500000px;}
.yaf{bottom:555.750000px;}
.y1bf{bottom:558.000000px;}
.y57{bottom:561.000000px;}
.y20d{bottom:564.524400px;}
.y8c{bottom:564.750000px;}
.y131{bottom:566.249400px;}
.y31{bottom:567.000000px;}
.y1eb{bottom:568.500000px;}
.ye{bottom:569.250000px;}
.y160{bottom:570.000000px;}
.y18f{bottom:571.424400px;}
.y1b6{bottom:571.500000px;}
.yc7{bottom:573.750000px;}
.yae{bottom:578.250000px;}
.y130{bottom:582.749400px;}
.y8b{bottom:582.750000px;}
.y20c{bottom:583.274400px;}
.y56{bottom:583.500000px;}
.y1a9{bottom:585.000000px;}
.yef{bottom:587.250000px;}
.yd{bottom:588.000000px;}
.y153{bottom:588.749400px;}
.y30{bottom:589.500000px;}
.yc6{bottom:591.750000px;}
.y15f{bottom:592.500000px;}
.y18e{bottom:593.924400px;}
.y1ca{bottom:596.250000px;}
.yda{bottom:598.500000px;}
.y8a{bottom:600.750000px;}
.y20b{bottom:602.024400px;}
.y1a8{bottom:603.000000px;}
.y12f{bottom:604.724400px;}
.y152{bottom:605.249400px;}
.y1be{bottom:605.250000px;}
.y55{bottom:606.000000px;}
.yc{bottom:606.750000px;}
.y1de{bottom:607.500000px;}
.yee{bottom:609.750000px;}
.y2f{bottom:612.000000px;}
.y1ea{bottom:613.500000px;}
.y106{bottom:614.250000px;}
.y15e{bottom:615.000000px;}
.y18d{bottom:616.424400px;}
.y1b5{bottom:618.750000px;}
.y20a{bottom:620.774400px;}
.yc5{bottom:621.000000px;}
.y12e{bottom:621.224400px;}
.yad{bottom:623.250000px;}
.yb{bottom:625.500000px;}
.y151{bottom:627.749400px;}
.y54{bottom:628.500000px;}
.y89{bottom:630.000000px;}
.yd9{bottom:632.250000px;}
.y2e{bottom:634.500000px;}
.y105{bottom:636.750000px;}
.y18c{bottom:638.924400px;}
.y209{bottom:639.524400px;}
.y15d{bottom:640.494000px;}
.y1dd{bottom:643.500000px;}
.y12d{bottom:643.724400px;}
.y150{bottom:644.249400px;}
.yac{bottom:645.750000px;}
.y16e{bottom:648.000000px;}
.yd8{bottom:650.250000px;}
.y53{bottom:651.000000px;}
.y88{bottom:652.500000px;}
.ya{bottom:653.253000px;}
.yc4{bottom:654.750000px;}
.y2d{bottom:657.000000px;}
.y208{bottom:658.274400px;}
.y1e9{bottom:658.500000px;}
.y104{bottom:659.250000px;}
.y12c{bottom:660.224400px;}
.y18b{bottom:661.424400px;}
.y1dc{bottom:661.500000px;}
.y15c{bottom:663.000000px;}
.y1b4{bottom:666.000000px;}
.y14f{bottom:666.749400px;}
.yab{bottom:668.250000px;}
.yc3{bottom:672.750000px;}
.y52{bottom:673.500000px;}
.y87{bottom:675.000000px;}
.y207{bottom:677.024400px;}
.y16d{bottom:677.250000px;}
.y2c{bottom:679.500000px;}
.y103{bottom:681.750000px;}
.y12b{bottom:682.724400px;}
.y14e{bottom:683.249400px;}
.y18a{bottom:683.924400px;}
.yed{bottom:688.500000px;}
.yaa{bottom:690.750000px;}
.y16c{bottom:695.250000px;}
.y206{bottom:695.774400px;}
.y51{bottom:696.000000px;}
.y9{bottom:696.750000px;}
.y86{bottom:697.500000px;}
.y12a{bottom:699.224400px;}
.y14b{bottom:699.749400px;}
.y1a7{bottom:699.750000px;}
.y2b{bottom:702.000000px;}
.y102{bottom:704.250000px;}
.y14d{bottom:705.749400px;}
.yec{bottom:706.500000px;}
.yd7{bottom:708.750000px;}
.y1e8{bottom:711.000000px;}
.ya9{bottom:713.250000px;}
.y205{bottom:714.524400px;}
.y1db{bottom:715.500000px;}
.y14a{bottom:716.249400px;}
.y8{bottom:716.250000px;}
.y50{bottom:718.500000px;}
.y85{bottom:720.000000px;}
.y129{bottom:721.724400px;}
.y14c{bottom:722.249400px;}
.y1a6{bottom:722.250000px;}
.y2a{bottom:724.500000px;}
.y101{bottom:726.750000px;}
.y204{bottom:733.274400px;}
.y1da{bottom:733.500000px;}
.y189{bottom:735.224400px;}
.ya8{bottom:735.750000px;}
.yd6{bottom:738.000000px;}
.y128{bottom:738.224400px;}
.y149{bottom:738.749400px;}
.y4f{bottom:741.000000px;}
.y84{bottom:742.500000px;}
.y114{bottom:744.750000px;}
.y7{bottom:746.250000px;}
.y29{bottom:747.000000px;}
.y100{bottom:749.250000px;}
.y1d9{bottom:751.500000px;}
.y203{bottom:752.024400px;}
.y1c9{bottom:753.750000px;}
.ya7{bottom:758.250000px;}
.y188{bottom:759.224400px;}
.yd5{bottom:760.500000px;}
.y127{bottom:760.724400px;}
.y113{bottom:762.750000px;}
.y4e{bottom:763.500000px;}
.y83{bottom:765.000000px;}
.y1a5{bottom:767.250000px;}
.y28{bottom:769.500000px;}
.y202{bottom:770.774400px;}
.yeb{bottom:771.750000px;}
.yc2{bottom:776.250000px;}
.y126{bottom:777.224400px;}
.ya6{bottom:780.750000px;}
.y1c8{bottom:783.000000px;}
.y187{bottom:783.224400px;}
.y4d{bottom:786.000000px;}
.y82{bottom:787.500000px;}
.y201{bottom:789.524400px;}
.yea{bottom:789.750000px;}
.y27{bottom:792.000000px;}
.yc1{bottom:794.250000px;}
.y47{bottom:798.000000px;}
.y112{bottom:798.750000px;}
.y125{bottom:799.724400px;}
.y1a4{bottom:801.000000px;}
.ya5{bottom:803.250000px;}
.y1d8{bottom:805.500000px;}
.y186{bottom:807.224400px;}
.ye9{bottom:807.750000px;}
.y200{bottom:808.274400px;}
.y4c{bottom:808.500000px;}
.y1c7{bottom:812.250000px;}
.y6{bottom:813.750000px;}
.y26{bottom:814.500000px;}
.y124{bottom:816.224400px;}
.yff{bottom:816.750000px;}
.y81{bottom:821.250000px;}
.yc0{bottom:823.500000px;}
.ya4{bottom:825.750000px;}
.y1ff{bottom:827.024400px;}
.y1a3{bottom:830.250000px;}
.y4b{bottom:831.000000px;}
.y185{bottom:831.224400px;}
.y111{bottom:834.750000px;}
.y25{bottom:837.000000px;}
.y123{bottom:838.724400px;}
.y80{bottom:839.250000px;}
.y1d7{bottom:841.500000px;}
.y1fe{bottom:845.774400px;}
.ybf{bottom:846.000000px;}
.y5{bottom:846.750000px;}
.y110{bottom:852.750000px;}
.y4a{bottom:853.500000px;}
.y1b3{bottom:855.000000px;}
.y122{bottom:855.224400px;}
.y7f{bottom:857.250000px;}
.y24{bottom:859.500000px;}
.yfe{bottom:861.750000px;}
.y1fd{bottom:864.524400px;}
.y7e{bottom:875.250000px;}
.y49{bottom:876.000000px;}
.y4{bottom:876.750000px;}
.ya3{bottom:877.500000px;}
.y121{bottom:877.724400px;}
.y184{bottom:879.224400px;}
.ybe{bottom:879.750000px;}
.y16b{bottom:881.988000px;}
.y23{bottom:882.000000px;}
.y1fc{bottom:883.274400px;}
.y1b2{bottom:884.250000px;}
.y120{bottom:894.224400px;}
.ya2{bottom:895.500000px;}
.ybd{bottom:897.750000px;}
.y48{bottom:898.500000px;}
.y1fb{bottom:902.024400px;}
.y1b1{bottom:902.250000px;}
.y183{bottom:903.224400px;}
.y16a{bottom:904.494000px;}
.y22{bottom:904.500000px;}
.ya1{bottom:913.500000px;}
.y11f{bottom:916.724400px;}
.y1fa{bottom:920.774400px;}
.y46{bottom:927.000000px;}
.y182{bottom:927.224400px;}
.y3{bottom:929.250000px;}
.ya0{bottom:931.500000px;}
.y21{bottom:933.000000px;}
.y11e{bottom:933.224400px;}
.y1f9{bottom:939.524400px;}
.h18{height:33.600000px;}
.h2{height:35.991211px;}
.h8{height:36.254883px;}
.h13{height:38.269043px;}
.h17{height:39.072000px;}
.h15{height:39.990234px;}
.ha{height:40.283203px;}
.hd{height:40.757812px;}
.he{height:43.989258px;}
.hc{height:44.311523px;}
.h1{height:45.852539px;}
.h5{height:46.200000px;}
.h12{height:48.399902px;}
.h11{height:48.840000px;}
.h10{height:49.189453px;}
.hf{height:50.595703px;}
.h7{height:50.947266px;}
.h9{height:56.041992px;}
.h6{height:60.714844px;}
.hb{height:61.136719px;}
.h16{height:61.184719px;}
.h4{height:81.515625px;}
.h3{height:101.894531px;}
.h14{height:116.947266px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x3{left:67.500000px;}
.x4{left:69.164850px;}
.x13{left:73.800000px;}
.x16{left:82.500000px;}
.x8{left:90.000000px;}
.x5{left:99.000000px;}
.x7{left:112.500000px;}
.xc{left:115.500000px;}
.xa{left:117.000000px;}
.xe{left:118.800000px;}
.x17{left:127.500000px;}
.x1{left:135.320850px;}
.xd{left:160.500000px;}
.xb{left:162.000000px;}
.x18{left:181.500000px;}
.x11{left:208.875000px;}
.xf{left:253.875750px;}
.x2{left:263.250000px;}
.x14{left:339.306000px;}
.x15{left:384.300000px;}
.x12{left:411.375000px;}
.x10{left:456.382500px;}
.x6{left:627.657600px;}
.x9{left:629.390100px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v3{vertical-align:58.666667pt;}
.ls45{letter-spacing:-5.568000pt;}
.ls42{letter-spacing:-4.165333pt;}
.ls51{letter-spacing:-4.000000pt;}
.ls48{letter-spacing:-3.968000pt;}
.ls32{letter-spacing:-3.072000pt;}
.ls33{letter-spacing:-2.688000pt;}
.ls46{letter-spacing:-2.624000pt;}
.ls28{letter-spacing:-2.560000pt;}
.ls4a{letter-spacing:-2.496000pt;}
.ls2a{letter-spacing:-2.432000pt;}
.ls31{letter-spacing:-2.304000pt;}
.ls53{letter-spacing:-2.186667pt;}
.ls20{letter-spacing:-2.112000pt;}
.ls49{letter-spacing:-2.080000pt;}
.ls50{letter-spacing:-1.973333pt;}
.ls26{letter-spacing:-1.856000pt;}
.ls19{letter-spacing:-1.792000pt;}
.ls1f{letter-spacing:-1.728000pt;}
.ls2b{letter-spacing:-1.664000pt;}
.ls47{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.536000pt;}
.ls24{letter-spacing:-1.493333pt;}
.ls1b{letter-spacing:-1.472000pt;}
.ls3e{letter-spacing:-1.440000pt;}
.ls21{letter-spacing:-1.408000pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls4d{letter-spacing:-1.226667pt;}
.ls34{letter-spacing:-1.216000pt;}
.ls27{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls25{letter-spacing:-0.997333pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls39{letter-spacing:-0.861333pt;}
.ls52{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls3d{letter-spacing:-0.746667pt;}
.ls38{letter-spacing:-0.709333pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls3f{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls36{letter-spacing:-0.506667pt;}
.ls54{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.293333pt;}
.ls3c{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls59{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.746667pt;}
.ls41{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls43{letter-spacing:1.114667pt;}
.ls10{letter-spacing:1.408000pt;}
.ls7{letter-spacing:1.546667pt;}
.ls37{letter-spacing:1.621333pt;}
.ls4c{letter-spacing:1.920000pt;}
.ls30{letter-spacing:2.816000pt;}
.ls57{letter-spacing:3.360000pt;}
.ls4f{letter-spacing:4.224000pt;}
.ls56{letter-spacing:4.309333pt;}
.ls6{letter-spacing:4.949333pt;}
.ls44{letter-spacing:4.992000pt;}
.ls4{letter-spacing:5.034667pt;}
.ls8{letter-spacing:5.066667pt;}
.ls4e{letter-spacing:5.226667pt;}
.ls2c{letter-spacing:5.248000pt;}
.lse{letter-spacing:5.333333pt;}
.ls2{letter-spacing:9.738667pt;}
.ls3{letter-spacing:9.744000pt;}
.ls5{letter-spacing:11.088000pt;}
.ws3{word-spacing:-24.576000pt;}
.ws2{word-spacing:-23.232000pt;}
.ws2d{word-spacing:-18.880000pt;}
.ws87{word-spacing:-18.346667pt;}
.ws28{word-spacing:-18.112000pt;}
.ws54{word-spacing:-17.728000pt;}
.ws13{word-spacing:-17.216000pt;}
.ws52{word-spacing:-17.152000pt;}
.ws53{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.533333pt;}
.ws73{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.485333pt;}
.ws72{word-spacing:-16.256000pt;}
.ws58{word-spacing:-15.858667pt;}
.ws86{word-spacing:-15.200000pt;}
.ws4a{word-spacing:-15.104000pt;}
.ws8a{word-spacing:-15.040000pt;}
.ws2f{word-spacing:-14.986667pt;}
.ws4c{word-spacing:-14.912000pt;}
.ws1d{word-spacing:-14.848000pt;}
.ws4b{word-spacing:-14.784000pt;}
.ws60{word-spacing:-14.720000pt;}
.ws7c{word-spacing:-14.666667pt;}
.ws5f{word-spacing:-14.613333pt;}
.ws1f{word-spacing:-14.528000pt;}
.ws1e{word-spacing:-14.464000pt;}
.ws3f{word-spacing:-14.400000pt;}
.ws47{word-spacing:-14.186667pt;}
.ws2e{word-spacing:-14.080000pt;}
.ws76{word-spacing:-14.026667pt;}
.ws75{word-spacing:-13.760000pt;}
.ws61{word-spacing:-13.653333pt;}
.ws1{word-spacing:-13.536000pt;}
.ws4d{word-spacing:-13.504000pt;}
.ws49{word-spacing:-13.376000pt;}
.ws40{word-spacing:-13.173333pt;}
.ws7e{word-spacing:-13.013333pt;}
.ws5e{word-spacing:-12.960000pt;}
.ws71{word-spacing:-12.906667pt;}
.ws63{word-spacing:-12.586667pt;}
.ws62{word-spacing:-12.480000pt;}
.ws85{word-spacing:-12.426667pt;}
.ws7f{word-spacing:-12.320000pt;}
.ws7d{word-spacing:-10.986667pt;}
.ws7a{word-spacing:-10.965333pt;}
.ws1c{word-spacing:-10.484672pt;}
.ws10{word-spacing:-5.333333pt;}
.ws41{word-spacing:-5.248000pt;}
.ws79{word-spacing:-5.226667pt;}
.ws7{word-spacing:-5.034667pt;}
.ws6c{word-spacing:-2.128000pt;}
.ws44{word-spacing:-2.048000pt;}
.ws46{word-spacing:-1.920000pt;}
.ws12{word-spacing:-1.408000pt;}
.ws4e{word-spacing:-1.344000pt;}
.ws68{word-spacing:-1.280000pt;}
.ws6b{word-spacing:-1.114667pt;}
.wsf{word-spacing:-0.960000pt;}
.ws11{word-spacing:-0.896000pt;}
.ws77{word-spacing:-0.853333pt;}
.ws36{word-spacing:-0.768000pt;}
.ws8b{word-spacing:-0.746667pt;}
.ws8{word-spacing:-0.682667pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.576000pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.352000pt;}
.ws7b{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.wsc{word-spacing:0.128000pt;}
.ws48{word-spacing:0.160000pt;}
.ws37{word-spacing:0.192000pt;}
.ws24{word-spacing:0.256000pt;}
.wsa{word-spacing:0.266667pt;}
.ws59{word-spacing:0.293333pt;}
.ws14{word-spacing:0.320000pt;}
.ws83{word-spacing:0.373333pt;}
.ws65{word-spacing:0.384000pt;}
.ws89{word-spacing:0.426667pt;}
.ws5b{word-spacing:0.506667pt;}
.ws30{word-spacing:0.512000pt;}
.ws45{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.576000pt;}
.ws22{word-spacing:0.640000pt;}
.ws81{word-spacing:0.693333pt;}
.ws35{word-spacing:0.704000pt;}
.ws5c{word-spacing:0.709333pt;}
.ws16{word-spacing:0.768000pt;}
.wse{word-spacing:0.832000pt;}
.ws18{word-spacing:0.896000pt;}
.ws33{word-spacing:0.997333pt;}
.ws17{word-spacing:1.024000pt;}
.ws31{word-spacing:1.088000pt;}
.ws38{word-spacing:1.152000pt;}
.ws21{word-spacing:1.216000pt;}
.ws23{word-spacing:1.280000pt;}
.ws51{word-spacing:1.344000pt;}
.ws27{word-spacing:1.408000pt;}
.ws66{word-spacing:1.472000pt;}
.ws32{word-spacing:1.493333pt;}
.wsb{word-spacing:1.536000pt;}
.ws5a{word-spacing:1.600000pt;}
.ws3b{word-spacing:1.664000pt;}
.ws25{word-spacing:1.728000pt;}
.ws20{word-spacing:1.792000pt;}
.ws34{word-spacing:1.856000pt;}
.ws80{word-spacing:1.973333pt;}
.ws82{word-spacing:2.080000pt;}
.ws26{word-spacing:2.112000pt;}
.ws88{word-spacing:2.186667pt;}
.ws43{word-spacing:2.240000pt;}
.ws78{word-spacing:2.304000pt;}
.ws69{word-spacing:2.368000pt;}
.ws3a{word-spacing:2.432000pt;}
.ws74{word-spacing:2.496000pt;}
.ws39{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.624000pt;}
.ws55{word-spacing:2.688000pt;}
.ws42{word-spacing:3.008000pt;}
.ws4f{word-spacing:3.072000pt;}
.ws50{word-spacing:3.264000pt;}
.ws70{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.776000pt;}
.ws56{word-spacing:3.968000pt;}
.ws6a{word-spacing:4.165333pt;}
.ws2c{word-spacing:4.992000pt;}
.ws6d{word-spacing:5.568000pt;}
.ws2a{word-spacing:5.696000pt;}
.ws29{word-spacing:5.888000pt;}
.ws57{word-spacing:6.080000pt;}
.ws6e{word-spacing:6.336000pt;}
.ws2b{word-spacing:6.592000pt;}
.ws3d{word-spacing:6.848000pt;}
.ws64{word-spacing:8.256000pt;}
.ws67{word-spacing:9.216000pt;}
.ws5d{word-spacing:266.693333pt;}
.ws84{word-spacing:593.354667pt;}
.ws0{word-spacing:599.418667pt;}
._13{margin-left:-770.961600pt;}
._1b{margin-left:-768.984533pt;}
._17{margin-left:-766.919467pt;}
._16{margin-left:-765.851733pt;}
._a{margin-left:-764.801600pt;}
._2{margin-left:-637.508800pt;}
._25{margin-left:-631.444800pt;}
._6{margin-left:-9.632000pt;}
._20{margin-left:-8.672000pt;}
._15{margin-left:-7.648000pt;}
._14{margin-left:-6.752000pt;}
._7{margin-left:-5.781333pt;}
._3{margin-left:-4.867200pt;}
._8{margin-left:-3.652267pt;}
._5{margin-left:-2.628267pt;}
._1{margin-left:-1.190400pt;}
._0{width:1.075200pt;}
._4{width:2.131200pt;}
._9{width:3.398400pt;}
._b{width:4.480000pt;}
._11{width:5.676800pt;}
._c{width:6.694400pt;}
._d{width:8.132267pt;}
._10{width:9.356800pt;}
._24{width:10.252800pt;}
._e{width:11.161600pt;}
._f{width:12.262400pt;}
._12{width:13.463467pt;}
._1e{width:14.828800pt;}
._1f{width:15.795200pt;}
._18{width:17.030400pt;}
._1d{width:24.176000pt;}
._1a{width:28.044800pt;}
._19{width:30.310400pt;}
._23{width:31.500800pt;}
._21{width:75.104000pt;}
._1c{width:78.016000pt;}
._22{width:435.971200pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.355467pt;}
.y1{bottom:64.000000pt;}
.y45{bottom:104.000000pt;}
.y6a{bottom:104.000133pt;}
.y7d{bottom:104.666667pt;}
.y222{bottom:105.132800pt;}
.y169{bottom:106.634667pt;}
.yfd{bottom:108.000000pt;}
.y1c6{bottom:110.000000pt;}
.y17f{bottom:111.775600pt;}
.yd4{bottom:112.000000pt;}
.y9f{bottom:114.000000pt;}
.ybc{bottom:116.000000pt;}
.y1d6{bottom:117.333333pt;}
.y1bd{bottom:118.666667pt;}
.y7c{bottom:120.666667pt;}
.y221{bottom:121.799467pt;}
.y44{bottom:124.000000pt;}
.y168{bottom:126.640000pt;}
.y148{bottom:127.799467pt;}
.y1a2{bottom:127.932800pt;}
.y9e{bottom:130.000000pt;}
.y1f8{bottom:130.666667pt;}
.ybb{bottom:132.000000pt;}
.y17e{bottom:133.108933pt;}
.y1d5{bottom:133.333333pt;}
.y1c5{bottom:136.000000pt;}
.y7b{bottom:136.666667pt;}
.y220{bottom:138.466133pt;}
.y69{bottom:138.666667pt;}
.y1e7{bottom:140.000000pt;}
.y11d{bottom:141.775600pt;}
.y15b{bottom:141.999467pt;}
.y147{bottom:142.466133pt;}
.y43{bottom:144.000000pt;}
.ye8{bottom:146.000000pt;}
.y167{bottom:146.645333pt;}
.y1f7{bottom:147.333333pt;}
.y1a1{bottom:147.932800pt;}
.y1d4{bottom:149.333333pt;}
.yfc{bottom:150.000000pt;}
.y1c4{bottom:152.000000pt;}
.y7a{bottom:152.666667pt;}
.y181{bottom:154.442267pt;}
.y9d{bottom:156.000000pt;}
.y11c{bottom:156.442267pt;}
.y15a{bottom:156.666133pt;}
.yba{bottom:158.000000pt;}
.y68{bottom:158.666667pt;}
.y20{bottom:160.000000pt;}
.yd3{bottom:162.000000pt;}
.y146{bottom:162.466133pt;}
.y42{bottom:164.000000pt;}
.y1d3{bottom:165.333333pt;}
.y10f{bottom:166.000000pt;}
.y166{bottom:166.650667pt;}
.y1a0{bottom:167.932800pt;}
.yfb{bottom:170.000000pt;}
.y17d{bottom:170.442267pt;}
.y21f{bottom:171.799467pt;}
.y1b0{bottom:172.000000pt;}
.y9c{bottom:176.000000pt;}
.y11b{bottom:176.442267pt;}
.y159{bottom:176.666133pt;}
.y1f{bottom:176.666667pt;}
.y145{bottom:177.132800pt;}
.yb9{bottom:178.000000pt;}
.y67{bottom:178.666667pt;}
.y1f6{bottom:180.666667pt;}
.y41{bottom:184.000000pt;}
.y10e{bottom:186.000000pt;}
.y165{bottom:186.656000pt;}
.y19f{bottom:187.932800pt;}
.y1d2{bottom:188.000000pt;}
.y21e{bottom:188.466133pt;}
.y1d1{bottom:190.000000pt;}
.y11a{bottom:191.108933pt;}
.y158{bottom:191.332800pt;}
.y17c{bottom:191.775600pt;}
.ye7{bottom:194.000000pt;}
.y9b{bottom:196.000000pt;}
.y144{bottom:197.132800pt;}
.y1f5{bottom:197.333333pt;}
.yb8{bottom:198.000000pt;}
.y66{bottom:198.666667pt;}
.yfa{bottom:200.000000pt;}
.y1e{bottom:201.333333pt;}
.y40{bottom:204.000000pt;}
.y21d{bottom:205.132800pt;}
.y10d{bottom:206.000000pt;}
.y164{bottom:206.661333pt;}
.y19e{bottom:207.932800pt;}
.y79{bottom:208.666667pt;}
.ye6{bottom:210.000000pt;}
.y119{bottom:211.108933pt;}
.y157{bottom:211.332800pt;}
.y143{bottom:211.799467pt;}
.y17b{bottom:213.108933pt;}
.y1af{bottom:214.000000pt;}
.y9a{bottom:216.000000pt;}
.y1d{bottom:218.000000pt;}
.y65{bottom:218.666667pt;}
.y1e6{bottom:220.000000pt;}
.y21c{bottom:221.799467pt;}
.y3f{bottom:224.000000pt;}
.y78{bottom:224.666667pt;}
.y118{bottom:225.775600pt;}
.y156{bottom:225.999467pt;}
.ye5{bottom:226.000000pt;}
.y141{bottom:226.466133pt;}
.y163{bottom:226.666667pt;}
.y19d{bottom:227.932800pt;}
.y1d0{bottom:230.000000pt;}
.y1f4{bottom:230.666667pt;}
.y142{bottom:231.799467pt;}
.yf9{bottom:232.000000pt;}
.y17a{bottom:234.442267pt;}
.y1c{bottom:234.666667pt;}
.y99{bottom:236.000000pt;}
.y1c3{bottom:238.000000pt;}
.y21b{bottom:238.466133pt;}
.y64{bottom:238.666667pt;}
.y1ae{bottom:240.000000pt;}
.y77{bottom:240.666667pt;}
.y1bc{bottom:241.333333pt;}
.y3e{bottom:244.000000pt;}
.y117{bottom:245.313467pt;}
.y155{bottom:245.999467pt;}
.y10c{bottom:246.000000pt;}
.y140{bottom:246.466133pt;}
.y162{bottom:246.666667pt;}
.y1f3{bottom:247.333333pt;}
.y19c{bottom:247.932800pt;}
.yb7{bottom:248.000000pt;}
.y1cf{bottom:250.000000pt;}
.y1b{bottom:251.333333pt;}
.ye4{bottom:252.000000pt;}
.yd2{bottom:254.000000pt;}
.y179{bottom:255.775600pt;}
.y98{bottom:256.000000pt;}
.y1c2{bottom:258.000000pt;}
.y63{bottom:258.666667pt;}
.y1ad{bottom:260.000000pt;}
.y154{bottom:260.666133pt;}
.y13f{bottom:261.132800pt;}
.y116{bottom:261.311467pt;}
.y3d{bottom:264.000000pt;}
.y21a{bottom:265.132800pt;}
.y10b{bottom:266.000000pt;}
.y76{bottom:266.666667pt;}
.y19b{bottom:267.932800pt;}
.y1a{bottom:268.000000pt;}
.yd1{bottom:270.000000pt;}
.y178{bottom:277.108933pt;}
.y115{bottom:277.309467pt;}
.y1c1{bottom:278.000000pt;}
.y62{bottom:278.666667pt;}
.yf8{bottom:280.000000pt;}
.y13e{bottom:280.666133pt;}
.y1f2{bottom:280.666667pt;}
.ye3{bottom:282.000000pt;}
.y3c{bottom:284.000000pt;}
.y19{bottom:284.666667pt;}
.y97{bottom:286.000000pt;}
.y75{bottom:286.666667pt;}
.y19a{bottom:287.932800pt;}
.yb6{bottom:290.000000pt;}
.y13d{bottom:295.332800pt;}
.yd0{bottom:296.000000pt;}
.y1f1{bottom:297.333333pt;}
.ye2{bottom:298.000000pt;}
.y177{bottom:298.442267pt;}
.y61{bottom:298.666667pt;}
.y1e5{bottom:300.000000pt;}
.y18{bottom:301.333333pt;}
.y219{bottom:301.799467pt;}
.y96{bottom:302.000000pt;}
.y3b{bottom:304.000000pt;}
.yf7{bottom:306.000000pt;}
.y74{bottom:306.666667pt;}
.y199{bottom:307.932800pt;}
.yb5{bottom:310.000000pt;}
.y1bb{bottom:312.000000pt;}
.ye1{bottom:314.000000pt;}
.y13c{bottom:315.332800pt;}
.y1e4{bottom:316.000000pt;}
.y17{bottom:318.000000pt;}
.y218{bottom:318.466133pt;}
.y60{bottom:318.666667pt;}
.y176{bottom:319.775600pt;}
.y3a{bottom:324.000000pt;}
.ycf{bottom:326.000000pt;}
.y73{bottom:326.666667pt;}
.y198{bottom:327.932800pt;}
.y13b{bottom:329.999467pt;}
.ye0{bottom:330.000000pt;}
.y1f0{bottom:330.666667pt;}
.y1e3{bottom:332.000000pt;}
.y95{bottom:334.000000pt;}
.y217{bottom:335.132800pt;}
.y1ce{bottom:335.333333pt;}
.yf6{bottom:336.000000pt;}
.y1ba{bottom:338.000000pt;}
.y5f{bottom:338.666667pt;}
.yb4{bottom:340.000000pt;}
.y175{bottom:341.108933pt;}
.yce{bottom:342.000000pt;}
.y16{bottom:342.666667pt;}
.y39{bottom:344.000000pt;}
.ydf{bottom:346.000000pt;}
.y72{bottom:346.666667pt;}
.y1ef{bottom:347.333333pt;}
.y197{bottom:347.932800pt;}
.y1e2{bottom:348.000000pt;}
.y13a{bottom:349.999467pt;}
.y94{bottom:350.000000pt;}
.y216{bottom:351.799467pt;}
.yf5{bottom:352.000000pt;}
.yb3{bottom:356.000000pt;}
.y1b9{bottom:358.000000pt;}
.y5e{bottom:358.666667pt;}
.y180{bottom:362.442267pt;}
.y38{bottom:364.000000pt;}
.y139{bottom:364.666133pt;}
.y93{bottom:366.000000pt;}
.y71{bottom:366.666667pt;}
.y196{bottom:367.932800pt;}
.ycd{bottom:368.000000pt;}
.y215{bottom:368.466133pt;}
.y1cd{bottom:370.000000pt;}
.y1c0{bottom:378.000000pt;}
.y174{bottom:378.442267pt;}
.y5d{bottom:378.666667pt;}
.y1e1{bottom:380.000000pt;}
.y1ee{bottom:380.666667pt;}
.y15{bottom:381.333333pt;}
.y92{bottom:382.000000pt;}
.y37{bottom:384.000000pt;}
.y138{bottom:384.666133pt;}
.y214{bottom:385.132800pt;}
.y10a{bottom:386.000000pt;}
.y70{bottom:386.666667pt;}
.y195{bottom:387.932800pt;}
.ycc{bottom:388.000000pt;}
.y1cc{bottom:390.000000pt;}
.y1e0{bottom:396.000000pt;}
.yde{bottom:398.000000pt;}
.y5c{bottom:398.666667pt;}
.y137{bottom:399.332800pt;}
.y173{bottom:399.775600pt;}
.yf4{bottom:400.000000pt;}
.y213{bottom:401.799467pt;}
.y36{bottom:404.000000pt;}
.y14{bottom:406.000000pt;}
.y6f{bottom:406.666667pt;}
.y194{bottom:407.932800pt;}
.y91{bottom:408.000000pt;}
.y1ed{bottom:409.333333pt;}
.y1ac{bottom:410.000000pt;}
.yb2{bottom:412.000000pt;}
.ydd{bottom:414.000000pt;}
.yf3{bottom:416.000000pt;}
.ycb{bottom:418.000000pt;}
.y212{bottom:418.466133pt;}
.y5b{bottom:418.666667pt;}
.y136{bottom:419.332800pt;}
.y172{bottom:421.108933pt;}
.y13{bottom:422.666667pt;}
.y35{bottom:424.000000pt;}
.y109{bottom:426.000000pt;}
.y6e{bottom:426.666667pt;}
.y193{bottom:427.932800pt;}
.yb1{bottom:428.000000pt;}
.y6b{bottom:429.333333pt;}
.y1cb{bottom:430.000000pt;}
.y135{bottom:433.999467pt;}
.yca{bottom:434.000000pt;}
.y211{bottom:435.132800pt;}
.y1ec{bottom:436.000000pt;}
.y90{bottom:438.000000pt;}
.y5a{bottom:438.666667pt;}
.y12{bottom:439.333333pt;}
.ydc{bottom:440.000000pt;}
.yf2{bottom:442.000000pt;}
.y171{bottom:443.311467pt;}
.y34{bottom:444.000000pt;}
.y108{bottom:446.000000pt;}
.y6d{bottom:446.666667pt;}
.y192{bottom:447.932800pt;}
.y1b8{bottom:450.000000pt;}
.y210{bottom:451.799467pt;}
.y1ab{bottom:452.000000pt;}
.y134{bottom:453.999467pt;}
.y8f{bottom:454.000000pt;}
.y11{bottom:456.000000pt;}
.y59{bottom:458.666667pt;}
.y170{bottom:459.309467pt;}
.yc9{bottom:460.000000pt;}
.yf1{bottom:462.000000pt;}
.y33{bottom:464.000000pt;}
.y107{bottom:466.000000pt;}
.y6c{bottom:466.666667pt;}
.y191{bottom:467.932800pt;}
.y1aa{bottom:468.000000pt;}
.y20f{bottom:468.466133pt;}
.y133{bottom:468.666133pt;}
.y8e{bottom:470.000000pt;}
.y10{bottom:472.666667pt;}
.yb0{bottom:474.000000pt;}
.y1df{bottom:476.000000pt;}
.y58{bottom:478.666667pt;}
.yc8{bottom:480.000000pt;}
.yf0{bottom:482.000000pt;}
.y32{bottom:484.000000pt;}
.y20e{bottom:485.132800pt;}
.y8d{bottom:486.000000pt;}
.y161{bottom:486.666667pt;}
.y190{bottom:487.932800pt;}
.y132{bottom:488.666133pt;}
.y16f{bottom:488.666667pt;}
.yf{bottom:489.333333pt;}
.ydb{bottom:490.000000pt;}
.y1b7{bottom:492.000000pt;}
.yaf{bottom:494.000000pt;}
.y1bf{bottom:496.000000pt;}
.y57{bottom:498.666667pt;}
.y20d{bottom:501.799467pt;}
.y8c{bottom:502.000000pt;}
.y131{bottom:503.332800pt;}
.y31{bottom:504.000000pt;}
.y1eb{bottom:505.333333pt;}
.ye{bottom:506.000000pt;}
.y160{bottom:506.666667pt;}
.y18f{bottom:507.932800pt;}
.y1b6{bottom:508.000000pt;}
.yc7{bottom:510.000000pt;}
.yae{bottom:514.000000pt;}
.y130{bottom:517.999467pt;}
.y8b{bottom:518.000000pt;}
.y20c{bottom:518.466133pt;}
.y56{bottom:518.666667pt;}
.y1a9{bottom:520.000000pt;}
.yef{bottom:522.000000pt;}
.yd{bottom:522.666667pt;}
.y153{bottom:523.332800pt;}
.y30{bottom:524.000000pt;}
.yc6{bottom:526.000000pt;}
.y15f{bottom:526.666667pt;}
.y18e{bottom:527.932800pt;}
.y1ca{bottom:530.000000pt;}
.yda{bottom:532.000000pt;}
.y8a{bottom:534.000000pt;}
.y20b{bottom:535.132800pt;}
.y1a8{bottom:536.000000pt;}
.y12f{bottom:537.532800pt;}
.y152{bottom:537.999467pt;}
.y1be{bottom:538.000000pt;}
.y55{bottom:538.666667pt;}
.yc{bottom:539.333333pt;}
.y1de{bottom:540.000000pt;}
.yee{bottom:542.000000pt;}
.y2f{bottom:544.000000pt;}
.y1ea{bottom:545.333333pt;}
.y106{bottom:546.000000pt;}
.y15e{bottom:546.666667pt;}
.y18d{bottom:547.932800pt;}
.y1b5{bottom:550.000000pt;}
.y20a{bottom:551.799467pt;}
.yc5{bottom:552.000000pt;}
.y12e{bottom:552.199467pt;}
.yad{bottom:554.000000pt;}
.yb{bottom:556.000000pt;}
.y151{bottom:557.999467pt;}
.y54{bottom:558.666667pt;}
.y89{bottom:560.000000pt;}
.yd9{bottom:562.000000pt;}
.y2e{bottom:564.000000pt;}
.y105{bottom:566.000000pt;}
.y18c{bottom:567.932800pt;}
.y209{bottom:568.466133pt;}
.y15d{bottom:569.328000pt;}
.y1dd{bottom:572.000000pt;}
.y12d{bottom:572.199467pt;}
.y150{bottom:572.666133pt;}
.yac{bottom:574.000000pt;}
.y16e{bottom:576.000000pt;}
.yd8{bottom:578.000000pt;}
.y53{bottom:578.666667pt;}
.y88{bottom:580.000000pt;}
.ya{bottom:580.669333pt;}
.yc4{bottom:582.000000pt;}
.y2d{bottom:584.000000pt;}
.y208{bottom:585.132800pt;}
.y1e9{bottom:585.333333pt;}
.y104{bottom:586.000000pt;}
.y12c{bottom:586.866133pt;}
.y18b{bottom:587.932800pt;}
.y1dc{bottom:588.000000pt;}
.y15c{bottom:589.333333pt;}
.y1b4{bottom:592.000000pt;}
.y14f{bottom:592.666133pt;}
.yab{bottom:594.000000pt;}
.yc3{bottom:598.000000pt;}
.y52{bottom:598.666667pt;}
.y87{bottom:600.000000pt;}
.y207{bottom:601.799467pt;}
.y16d{bottom:602.000000pt;}
.y2c{bottom:604.000000pt;}
.y103{bottom:606.000000pt;}
.y12b{bottom:606.866133pt;}
.y14e{bottom:607.332800pt;}
.y18a{bottom:607.932800pt;}
.yed{bottom:612.000000pt;}
.yaa{bottom:614.000000pt;}
.y16c{bottom:618.000000pt;}
.y206{bottom:618.466133pt;}
.y51{bottom:618.666667pt;}
.y9{bottom:619.333333pt;}
.y86{bottom:620.000000pt;}
.y12a{bottom:621.532800pt;}
.y14b{bottom:621.999467pt;}
.y1a7{bottom:622.000000pt;}
.y2b{bottom:624.000000pt;}
.y102{bottom:626.000000pt;}
.y14d{bottom:627.332800pt;}
.yec{bottom:628.000000pt;}
.yd7{bottom:630.000000pt;}
.y1e8{bottom:632.000000pt;}
.ya9{bottom:634.000000pt;}
.y205{bottom:635.132800pt;}
.y1db{bottom:636.000000pt;}
.y14a{bottom:636.666133pt;}
.y8{bottom:636.666667pt;}
.y50{bottom:638.666667pt;}
.y85{bottom:640.000000pt;}
.y129{bottom:641.532800pt;}
.y14c{bottom:641.999467pt;}
.y1a6{bottom:642.000000pt;}
.y2a{bottom:644.000000pt;}
.y101{bottom:646.000000pt;}
.y204{bottom:651.799467pt;}
.y1da{bottom:652.000000pt;}
.y189{bottom:653.532800pt;}
.ya8{bottom:654.000000pt;}
.yd6{bottom:656.000000pt;}
.y128{bottom:656.199467pt;}
.y149{bottom:656.666133pt;}
.y4f{bottom:658.666667pt;}
.y84{bottom:660.000000pt;}
.y114{bottom:662.000000pt;}
.y7{bottom:663.333333pt;}
.y29{bottom:664.000000pt;}
.y100{bottom:666.000000pt;}
.y1d9{bottom:668.000000pt;}
.y203{bottom:668.466133pt;}
.y1c9{bottom:670.000000pt;}
.ya7{bottom:674.000000pt;}
.y188{bottom:674.866133pt;}
.yd5{bottom:676.000000pt;}
.y127{bottom:676.199467pt;}
.y113{bottom:678.000000pt;}
.y4e{bottom:678.666667pt;}
.y83{bottom:680.000000pt;}
.y1a5{bottom:682.000000pt;}
.y28{bottom:684.000000pt;}
.y202{bottom:685.132800pt;}
.yeb{bottom:686.000000pt;}
.yc2{bottom:690.000000pt;}
.y126{bottom:690.866133pt;}
.ya6{bottom:694.000000pt;}
.y1c8{bottom:696.000000pt;}
.y187{bottom:696.199467pt;}
.y4d{bottom:698.666667pt;}
.y82{bottom:700.000000pt;}
.y201{bottom:701.799467pt;}
.yea{bottom:702.000000pt;}
.y27{bottom:704.000000pt;}
.yc1{bottom:706.000000pt;}
.y47{bottom:709.333333pt;}
.y112{bottom:710.000000pt;}
.y125{bottom:710.866133pt;}
.y1a4{bottom:712.000000pt;}
.ya5{bottom:714.000000pt;}
.y1d8{bottom:716.000000pt;}
.y186{bottom:717.532800pt;}
.ye9{bottom:718.000000pt;}
.y200{bottom:718.466133pt;}
.y4c{bottom:718.666667pt;}
.y1c7{bottom:722.000000pt;}
.y6{bottom:723.333333pt;}
.y26{bottom:724.000000pt;}
.y124{bottom:725.532800pt;}
.yff{bottom:726.000000pt;}
.y81{bottom:730.000000pt;}
.yc0{bottom:732.000000pt;}
.ya4{bottom:734.000000pt;}
.y1ff{bottom:735.132800pt;}
.y1a3{bottom:738.000000pt;}
.y4b{bottom:738.666667pt;}
.y185{bottom:738.866133pt;}
.y111{bottom:742.000000pt;}
.y25{bottom:744.000000pt;}
.y123{bottom:745.532800pt;}
.y80{bottom:746.000000pt;}
.y1d7{bottom:748.000000pt;}
.y1fe{bottom:751.799467pt;}
.ybf{bottom:752.000000pt;}
.y5{bottom:752.666667pt;}
.y110{bottom:758.000000pt;}
.y4a{bottom:758.666667pt;}
.y1b3{bottom:760.000000pt;}
.y122{bottom:760.199467pt;}
.y7f{bottom:762.000000pt;}
.y24{bottom:764.000000pt;}
.yfe{bottom:766.000000pt;}
.y1fd{bottom:768.466133pt;}
.y7e{bottom:778.000000pt;}
.y49{bottom:778.666667pt;}
.y4{bottom:779.333333pt;}
.ya3{bottom:780.000000pt;}
.y121{bottom:780.199467pt;}
.y184{bottom:781.532800pt;}
.ybe{bottom:782.000000pt;}
.y16b{bottom:783.989333pt;}
.y23{bottom:784.000000pt;}
.y1fc{bottom:785.132800pt;}
.y1b2{bottom:786.000000pt;}
.y120{bottom:794.866133pt;}
.ya2{bottom:796.000000pt;}
.ybd{bottom:798.000000pt;}
.y48{bottom:798.666667pt;}
.y1fb{bottom:801.799467pt;}
.y1b1{bottom:802.000000pt;}
.y183{bottom:802.866133pt;}
.y16a{bottom:803.994667pt;}
.y22{bottom:804.000000pt;}
.ya1{bottom:812.000000pt;}
.y11f{bottom:814.866133pt;}
.y1fa{bottom:818.466133pt;}
.y46{bottom:824.000000pt;}
.y182{bottom:824.199467pt;}
.y3{bottom:826.000000pt;}
.ya0{bottom:828.000000pt;}
.y21{bottom:829.333333pt;}
.y11e{bottom:829.532800pt;}
.y1f9{bottom:835.132800pt;}
.h18{height:29.866667pt;}
.h2{height:31.992188pt;}
.h8{height:32.226562pt;}
.h13{height:34.016927pt;}
.h17{height:34.730667pt;}
.h15{height:35.546875pt;}
.ha{height:35.807292pt;}
.hd{height:36.229167pt;}
.he{height:39.101562pt;}
.hc{height:39.388021pt;}
.h1{height:40.757812pt;}
.h5{height:41.066667pt;}
.h12{height:43.022135pt;}
.h11{height:43.413333pt;}
.h10{height:43.723958pt;}
.hf{height:44.973958pt;}
.h7{height:45.286458pt;}
.h9{height:49.815104pt;}
.h6{height:53.968750pt;}
.hb{height:54.343750pt;}
.h16{height:54.386417pt;}
.h4{height:72.458333pt;}
.h3{height:90.572917pt;}
.h14{height:103.953125pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x3{left:60.000000pt;}
.x4{left:61.479867pt;}
.x13{left:65.600000pt;}
.x16{left:73.333333pt;}
.x8{left:80.000000pt;}
.x5{left:88.000000pt;}
.x7{left:100.000000pt;}
.xc{left:102.666667pt;}
.xa{left:104.000000pt;}
.xe{left:105.600000pt;}
.x17{left:113.333333pt;}
.x1{left:120.285200pt;}
.xd{left:142.666667pt;}
.xb{left:144.000000pt;}
.x18{left:161.333333pt;}
.x11{left:185.666667pt;}
.xf{left:225.667333pt;}
.x2{left:234.000000pt;}
.x14{left:301.605333pt;}
.x15{left:341.600000pt;}
.x12{left:365.666667pt;}
.x10{left:405.673333pt;}
.x6{left:557.917867pt;}
.x9{left:559.457867pt;}
}




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