
    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_4fab29547f21cd4630339e77.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_fa6752a13d916cc9a3e2fcba.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_2d587be2fd1ffae1c4e7aed7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070000;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_4ed4e50c846604f92b9f2dfc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_ffd74de219bbe2a59fb0910e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.059000;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_2d587be2fd1ffae1c4e7aed7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070000;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_4ed4e50c846604f92b9f2dfc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_1f9ae5de1f10f760faddd69b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945000;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_53429a6758f24e70a186bf8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945000;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_20829958f68f806caa54def5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.059000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9b991210d09a3c0b643abd2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.059000;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:ffe;src:url('chunks/assets/font_3d12d352ad0627d045d11ff0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;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:fff;src:url('chunks/assets/font_2a0b37d12b3489ce553eb19a.woff2')format("woff");}.fff{font-family:fff;line-height:1.070000;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:ff10;src:url('chunks/assets/font_20829958f68f806caa54def5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.059000;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:ff11;src:url('chunks/assets/font_20829958f68f806caa54def5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.059000;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:ff12;src:url('chunks/assets/font_6664c1f6087428d84de0dfb8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.070000;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:ff13;src:url('chunks/assets/font_8e67f9cdf011aedb976789cb.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.059000;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:ff14;src:url('chunks/assets/font_a305d42e5ec1de24f8803b38.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.945000;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:ff15;src:url('chunks/assets/font_3c31660a8879814d28723d8c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.059000;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;}
.ls24{letter-spacing:-3.456000px;}
.ls26{letter-spacing:-3.300000px;}
.ls16{letter-spacing:-3.072000px;}
.ls27{letter-spacing:-2.592000px;}
.ls1b{letter-spacing:-1.728000px;}
.ls15{letter-spacing:-1.008000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.382500px;}
.ls14{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.918000px;}
.ls19{letter-spacing:0.972000px;}
.lsc{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.026000px;}
.lse{letter-spacing:1.056000px;}
.ls1a{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.104000px;}
.ls25{letter-spacing:1.134000px;}
.lsd{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.188000px;}
.ls28{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.365000px;}
.ls20{letter-spacing:1.836000px;}
.ls4{letter-spacing:1.890000px;}
.ls6{letter-spacing:1.950000px;}
.ls1{letter-spacing:2.700000px;}
.ls8{letter-spacing:2.970000px;}
.ls7{letter-spacing:3.348000px;}
.ls11{letter-spacing:4.800000px;}
.ls13{letter-spacing:6.720000px;}
.ls12{letter-spacing:7.680000px;}
.ls3{letter-spacing:9.180000px;}
.ls2{letter-spacing:13.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-25.305000px;}
.ws22{word-spacing:-17.824500px;}
.ws16{word-spacing:-15.378000px;}
.ws7{word-spacing:-15.282000px;}
.ws2{word-spacing:-15.012000px;}
.wsce{word-spacing:-13.608000px;}
.wsc0{word-spacing:-13.500000px;}
.wscd{word-spacing:-13.338000px;}
.wscf{word-spacing:-13.284000px;}
.wsd1{word-spacing:-13.230000px;}
.wsd2{word-spacing:-12.960000px;}
.wsd0{word-spacing:-12.798000px;}
.wsaa{word-spacing:-12.546000px;}
.wsa{word-spacing:-12.096000px;}
.wsc{word-spacing:-12.048000px;}
.wsb{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.952000px;}
.wsd{word-spacing:-11.808000px;}
.wscc{word-spacing:-9.216000px;}
.wsd3{word-spacing:-8.856000px;}
.ws3e{word-spacing:-5.940000px;}
.ws68{word-spacing:-4.620000px;}
.wsb2{word-spacing:-4.554000px;}
.ws38{word-spacing:-4.488000px;}
.ws96{word-spacing:-4.422000px;}
.ws84{word-spacing:-4.356000px;}
.ws4b{word-spacing:-4.290000px;}
.ws90{word-spacing:-4.224000px;}
.ws33{word-spacing:-4.158000px;}
.ws9f{word-spacing:-4.092000px;}
.ws4c{word-spacing:-4.026000px;}
.wsb7{word-spacing:-3.960000px;}
.ws4f{word-spacing:-3.894000px;}
.wsaf{word-spacing:-3.828000px;}
.wsa6{word-spacing:-3.762000px;}
.ws9c{word-spacing:-3.696000px;}
.ws56{word-spacing:-3.630000px;}
.wsb6{word-spacing:-3.564000px;}
.ws8f{word-spacing:-3.432000px;}
.ws95{word-spacing:-3.366000px;}
.ws8{word-spacing:-3.348000px;}
.wsa7{word-spacing:-3.300000px;}
.ws5a{word-spacing:-3.234000px;}
.ws79{word-spacing:-3.102000px;}
.ws67{word-spacing:-3.036000px;}
.ws2d{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.904000px;}
.ws73{word-spacing:-2.838000px;}
.ws41{word-spacing:-2.706000px;}
.ws6{word-spacing:-2.700000px;}
.ws55{word-spacing:-2.640000px;}
.ws47{word-spacing:-2.574000px;}
.wsd8{word-spacing:-2.538000px;}
.ws9d{word-spacing:-2.508000px;}
.ws45{word-spacing:-2.442000px;}
.ws6b{word-spacing:-2.376000px;}
.ws5e{word-spacing:-2.310000px;}
.ws17{word-spacing:-2.244000px;}
.ws62{word-spacing:-2.178000px;}
.wsb3{word-spacing:-2.112000px;}
.ws34{word-spacing:-2.046000px;}
.wsbe{word-spacing:-1.980000px;}
.ws40{word-spacing:-1.914000px;}
.wsda{word-spacing:-1.890000px;}
.ws21{word-spacing:-1.848000px;}
.wsdc{word-spacing:-1.836000px;}
.ws99{word-spacing:-1.782000px;}
.ws13{word-spacing:-1.776000px;}
.ws15{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.716000px;}
.wscb{word-spacing:-1.674000px;}
.wsc5{word-spacing:-1.650000px;}
.ws14{word-spacing:-1.632000px;}
.wsdb{word-spacing:-1.620000px;}
.ws70{word-spacing:-1.584000px;}
.wsd5{word-spacing:-1.566000px;}
.ws10{word-spacing:-1.518000px;}
.wsd9{word-spacing:-1.512000px;}
.ws12{word-spacing:-1.488000px;}
.wsd6{word-spacing:-1.458000px;}
.ws32{word-spacing:-1.452000px;}
.ws76{word-spacing:-1.386000px;}
.wse{word-spacing:-1.320000px;}
.ws5c{word-spacing:-1.254000px;}
.wsca{word-spacing:-1.242000px;}
.ws71{word-spacing:-1.188000px;}
.ws51{word-spacing:-1.122000px;}
.ws11{word-spacing:-1.104000px;}
.ws89{word-spacing:-1.056000px;}
.ws88{word-spacing:-0.990000px;}
.wsd7{word-spacing:-0.972000px;}
.wsc4{word-spacing:-0.858000px;}
.wsbf{word-spacing:-0.792000px;}
.wsdd{word-spacing:-0.768000px;}
.ws46{word-spacing:-0.726000px;}
.wsd4{word-spacing:-0.702000px;}
.ws5f{word-spacing:-0.660000px;}
.ws5d{word-spacing:-0.594000px;}
.ws5b{word-spacing:-0.462000px;}
.ws1f{word-spacing:-0.396000px;}
.ws24{word-spacing:-0.382500px;}
.ws1a{word-spacing:-0.330000px;}
.ws1c{word-spacing:-0.264000px;}
.ws6f{word-spacing:-0.198000px;}
.ws1d{word-spacing:-0.132000px;}
.ws43{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws6d{word-spacing:0.066000px;}
.ws3c{word-spacing:0.132000px;}
.ws60{word-spacing:0.198000px;}
.wsc7{word-spacing:0.264000px;}
.wsb1{word-spacing:0.330000px;}
.ws2b{word-spacing:0.396000px;}
.ws36{word-spacing:0.528000px;}
.ws42{word-spacing:0.594000px;}
.ws81{word-spacing:0.660000px;}
.ws50{word-spacing:0.726000px;}
.ws5{word-spacing:0.735000px;}
.ws35{word-spacing:0.792000px;}
.ws1b{word-spacing:0.858000px;}
.ws3{word-spacing:0.900000px;}
.ws80{word-spacing:0.924000px;}
.ws23{word-spacing:0.960000px;}
.wsc9{word-spacing:0.990000px;}
.wsb9{word-spacing:1.008000px;}
.ws9a{word-spacing:1.056000px;}
.ws37{word-spacing:1.122000px;}
.ws7b{word-spacing:1.188000px;}
.ws7f{word-spacing:1.254000px;}
.ws94{word-spacing:1.320000px;}
.ws3b{word-spacing:1.386000px;}
.ws82{word-spacing:1.452000px;}
.ws7d{word-spacing:1.518000px;}
.ws78{word-spacing:1.584000px;}
.ws83{word-spacing:1.650000px;}
.ws8a{word-spacing:1.716000px;}
.ws63{word-spacing:1.782000px;}
.wsb4{word-spacing:1.848000px;}
.ws3d{word-spacing:1.914000px;}
.wsc6{word-spacing:1.980000px;}
.ws75{word-spacing:2.046000px;}
.ws2c{word-spacing:2.112000px;}
.ws4d{word-spacing:2.178000px;}
.wsc8{word-spacing:2.244000px;}
.ws8d{word-spacing:2.310000px;}
.ws31{word-spacing:2.508000px;}
.ws93{word-spacing:2.640000px;}
.ws29{word-spacing:2.772000px;}
.ws7e{word-spacing:2.838000px;}
.ws8e{word-spacing:2.904000px;}
.wsbc{word-spacing:2.970000px;}
.wsbd{word-spacing:3.036000px;}
.wsc1{word-spacing:3.072000px;}
.ws7a{word-spacing:3.102000px;}
.ws77{word-spacing:3.234000px;}
.ws3f{word-spacing:3.300000px;}
.ws72{word-spacing:3.366000px;}
.ws26{word-spacing:3.498000px;}
.ws7c{word-spacing:3.564000px;}
.ws8c{word-spacing:3.630000px;}
.ws57{word-spacing:3.762000px;}
.ws52{word-spacing:3.828000px;}
.ws8b{word-spacing:3.894000px;}
.ws66{word-spacing:4.158000px;}
.ws1e{word-spacing:4.356000px;}
.ws2f{word-spacing:4.422000px;}
.ws69{word-spacing:4.488000px;}
.ws30{word-spacing:4.554000px;}
.ws6e{word-spacing:4.620000px;}
.ws74{word-spacing:4.686000px;}
.wsb8{word-spacing:4.752000px;}
.wsa4{word-spacing:4.818000px;}
.wsb5{word-spacing:4.884000px;}
.ws54{word-spacing:4.950000px;}
.ws64{word-spacing:5.082000px;}
.ws2e{word-spacing:5.214000px;}
.ws4{word-spacing:5.220000px;}
.ws87{word-spacing:5.280000px;}
.ws91{word-spacing:5.412000px;}
.ws44{word-spacing:5.478000px;}
.ws65{word-spacing:5.544000px;}
.ws20{word-spacing:5.610000px;}
.ws2a{word-spacing:5.676000px;}
.ws6c{word-spacing:5.742000px;}
.wsc2{word-spacing:5.808000px;}
.wsab{word-spacing:5.874000px;}
.wsa2{word-spacing:6.006000px;}
.wsba{word-spacing:6.072000px;}
.ws9b{word-spacing:6.204000px;}
.wsa0{word-spacing:6.270000px;}
.ws4e{word-spacing:6.402000px;}
.wsbb{word-spacing:6.732000px;}
.ws92{word-spacing:6.798000px;}
.wsac{word-spacing:6.864000px;}
.ws58{word-spacing:6.930000px;}
.wsc3{word-spacing:6.996000px;}
.wsa1{word-spacing:7.062000px;}
.wsa9{word-spacing:7.128000px;}
.ws85{word-spacing:7.260000px;}
.ws6a{word-spacing:7.722000px;}
.ws27{word-spacing:7.986000px;}
.ws19{word-spacing:8.118000px;}
.ws59{word-spacing:8.184000px;}
.ws9e{word-spacing:8.250000px;}
.ws53{word-spacing:8.382000px;}
.wsb0{word-spacing:8.646000px;}
.wsa5{word-spacing:8.778000px;}
.ws18{word-spacing:9.108000px;}
.ws86{word-spacing:9.240000px;}
.ws97{word-spacing:9.306000px;}
.wsf{word-spacing:9.966000px;}
.ws39{word-spacing:10.032000px;}
.wsa3{word-spacing:10.164000px;}
.ws98{word-spacing:12.804000px;}
.ws28{word-spacing:13.530000px;}
.wsae{word-spacing:16.038000px;}
.wsad{word-spacing:17.754000px;}
.ws61{word-spacing:19.206000px;}
.ws48{word-spacing:26.928000px;}
.ws4a{word-spacing:33.201000px;}
.wsa8{word-spacing:39.732000px;}
.ws25{word-spacing:54.186000px;}
._14{margin-left:-2555.967000px;}
._1b{margin-left:-48.378000px;}
._17{margin-left:-43.398000px;}
._18{margin-left:-25.206000px;}
._13{margin-left:-18.150000px;}
._5{margin-left:-16.056000px;}
._4{margin-left:-13.986000px;}
._1a{margin-left:-12.553650px;}
._d{margin-left:-8.473200px;}
._f{margin-left:-6.936600px;}
._b{margin-left:-5.838000px;}
._3{margin-left:-4.590000px;}
._a{margin-left:-3.396000px;}
._0{margin-left:-1.890000px;}
._1{width:1.134000px;}
._9{width:2.574000px;}
._7{width:4.374000px;}
._2{width:5.544000px;}
._8{width:6.660000px;}
._6{width:9.018000px;}
._16{width:33.208650px;}
._1c{width:35.046000px;}
._15{width:45.586350px;}
._11{width:55.704000px;}
._19{width:84.218850px;}
._e{width:105.864000px;}
._12{width:139.194000px;}
._10{width:153.054000px;}
._1d{width:466.823400px;}
._c{width:487.751400px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:76.500000px;}
.fs7{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:105.000000px;}
.fs5{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y2d{bottom:80.787450px;}
.y1fa{bottom:81.339450px;}
.ye9{bottom:82.227600px;}
.ybc{bottom:82.260600px;}
.y1f9{bottom:96.339450px;}
.y4{bottom:97.125005px;}
.y161{bottom:101.628600px;}
.y17a{bottom:101.700600px;}
.ye8{bottom:101.730600px;}
.ybb{bottom:101.763600px;}
.y198{bottom:110.961600px;}
.y4c{bottom:115.275600px;}
.y1f8{bottom:121.128600px;}
.y160{bottom:121.131600px;}
.y68{bottom:121.155750px;}
.y179{bottom:121.203600px;}
.ye7{bottom:121.233600px;}
.y10d{bottom:121.251600px;}
.y92{bottom:121.257750px;}
.yba{bottom:121.266600px;}
.y197{bottom:127.080600px;}
.y4b{bottom:130.275600px;}
.y23{bottom:139.264499px;}
.y1f7{bottom:140.631600px;}
.y15f{bottom:140.634600px;}
.y67{bottom:140.658750px;}
.y178{bottom:140.706600px;}
.ye6{bottom:140.736600px;}
.y10c{bottom:140.754600px;}
.y91{bottom:140.760750px;}
.yb9{bottom:140.769600px;}
.y196{bottom:143.199600px;}
.y4a{bottom:145.275600px;}
.y195{bottom:159.318600px;}
.y1f6{bottom:160.134600px;}
.y15e{bottom:160.137600px;}
.y66{bottom:160.161750px;}
.y132{bottom:160.197600px;}
.ye5{bottom:160.239600px;}
.y10b{bottom:160.257600px;}
.y90{bottom:160.263750px;}
.yb8{bottom:160.272600px;}
.y49{bottom:160.275600px;}
.y48{bottom:175.275600px;}
.y194{bottom:175.437600px;}
.y1f5{bottom:179.637600px;}
.y15d{bottom:179.640600px;}
.y65{bottom:179.664750px;}
.y131{bottom:179.700600px;}
.y177{bottom:179.712600px;}
.ye4{bottom:179.742600px;}
.y10a{bottom:179.760600px;}
.y8f{bottom:179.766750px;}
.yb7{bottom:179.775600px;}
.y47{bottom:190.275600px;}
.y193{bottom:191.556600px;}
.y1a{bottom:196.933500px;}
.y64{bottom:199.167750px;}
.y130{bottom:199.203600px;}
.y176{bottom:199.215600px;}
.ye3{bottom:199.245600px;}
.y109{bottom:199.263600px;}
.yb6{bottom:199.268100px;}
.y8e{bottom:199.269750px;}
.y46{bottom:205.275600px;}
.y192{bottom:207.675600px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y183{bottom:218.637600px;}
.y1f4{bottom:218.643600px;}
.y15c{bottom:218.646600px;}
.y63{bottom:218.670750px;}
.y12f{bottom:218.706600px;}
.y175{bottom:218.718600px;}
.y18d{bottom:218.721600px;}
.ye2{bottom:218.748600px;}
.y108{bottom:218.766600px;}
.y8d{bottom:218.772750px;}
.yb5{bottom:218.775600px;}
.y45{bottom:220.275600px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y191{bottom:223.794600px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y182{bottom:238.140600px;}
.y1f3{bottom:238.146600px;}
.y15b{bottom:238.149600px;}
.y62{bottom:238.173750px;}
.y12e{bottom:238.209600px;}
.y18c{bottom:238.224600px;}
.ye1{bottom:238.251600px;}
.y107{bottom:238.269600px;}
.y8c{bottom:238.275750px;}
.y190{bottom:239.913600px;}
.y18f{bottom:256.032600px;}
.y1f2{bottom:257.649600px;}
.y15a{bottom:257.652600px;}
.y61{bottom:257.676750px;}
.y12d{bottom:257.712600px;}
.y174{bottom:257.724600px;}
.y18b{bottom:257.727600px;}
.ye0{bottom:257.754600px;}
.y8b{bottom:257.772375px;}
.yb4{bottom:257.772600px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y18e{bottom:272.151600px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y181{bottom:277.146600px;}
.y1f1{bottom:277.152600px;}
.y159{bottom:277.155600px;}
.y60{bottom:277.179750px;}
.y12c{bottom:277.215600px;}
.y173{bottom:277.227600px;}
.y18a{bottom:277.230600px;}
.ydf{bottom:277.257600px;}
.yb3{bottom:277.275600px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1cd{bottom:287.813100px;}
.y44{bottom:295.275600px;}
.y180{bottom:296.649600px;}
.y1f0{bottom:296.655600px;}
.y186{bottom:296.658600px;}
.y12b{bottom:296.718600px;}
.y172{bottom:296.730600px;}
.y189{bottom:296.733600px;}
.yde{bottom:296.760600px;}
.y8a{bottom:296.768250px;}
.y106{bottom:296.775600px;}
.y1cc{bottom:303.932100px;}
.y43{bottom:310.275600px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1ef{bottom:316.158600px;}
.y158{bottom:316.161600px;}
.y12a{bottom:316.221600px;}
.y171{bottom:316.233600px;}
.y188{bottom:316.236600px;}
.yb2{bottom:316.268100px;}
.y89{bottom:316.275750px;}
.y1cb{bottom:320.051100px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y42{bottom:325.275600px;}
.y17f{bottom:335.655600px;}
.y157{bottom:335.664600px;}
.y129{bottom:335.724600px;}
.y170{bottom:335.736600px;}
.y105{bottom:335.739600px;}
.ydd{bottom:335.766600px;}
.yb1{bottom:335.775600px;}
.y1ca{bottom:336.170100px;}
.y41{bottom:340.275600px;}
.y11{bottom:348.133500px;}
.y1c9{bottom:352.289100px;}
.y17e{bottom:355.158600px;}
.y1ee{bottom:355.164600px;}
.y156{bottom:355.167600px;}
.y16f{bottom:355.239600px;}
.y104{bottom:355.242600px;}
.ydc{bottom:355.269600px;}
.y40{bottom:355.275600px;}
.y1c8{bottom:368.408100px;}
.y3f{bottom:370.275600px;}
.y1ed{bottom:374.667600px;}
.y155{bottom:374.670600px;}
.y128{bottom:374.730600px;}
.y16e{bottom:374.742600px;}
.y103{bottom:374.745600px;}
.ydb{bottom:374.772600px;}
.y88{bottom:374.775750px;}
.y1c7{bottom:384.527100px;}
.y3e{bottom:385.275600px;}
.y10{bottom:386.785499px;}
.y17d{bottom:394.164600px;}
.y1ec{bottom:394.170600px;}
.y154{bottom:394.173600px;}
.yb0{bottom:394.197600px;}
.y127{bottom:394.233600px;}
.y16d{bottom:394.245600px;}
.y102{bottom:394.248600px;}
.yda{bottom:394.275600px;}
.y87{bottom:394.275750px;}
.y1c6{bottom:400.646100px;}
.yf{bottom:408.044999px;}
.y17c{bottom:413.667600px;}
.y1eb{bottom:413.673600px;}
.y153{bottom:413.676600px;}
.yaf{bottom:413.700600px;}
.y126{bottom:413.736600px;}
.y16c{bottom:413.748600px;}
.y101{bottom:413.751600px;}
.yd9{bottom:413.775600px;}
.y3d{bottom:415.275600px;}
.y1c5{bottom:416.765100px;}
.y3c{bottom:430.275600px;}
.y1c4{bottom:432.884100px;}
.y17b{bottom:433.170600px;}
.y1ea{bottom:433.176600px;}
.y152{bottom:433.179600px;}
.yae{bottom:433.203600px;}
.y125{bottom:433.239600px;}
.y86{bottom:433.242750px;}
.y16b{bottom:433.251600px;}
.y100{bottom:433.254600px;}
.y3b{bottom:445.275600px;}
.y1c3{bottom:449.003100px;}
.yd8{bottom:452.673600px;}
.y1e9{bottom:452.679600px;}
.y151{bottom:452.682600px;}
.yad{bottom:452.706600px;}
.y124{bottom:452.742600px;}
.y85{bottom:452.745750px;}
.y16a{bottom:452.754600px;}
.yff{bottom:452.757600px;}
.y3a{bottom:460.275600px;}
.y1c2{bottom:465.122100px;}
.yd7{bottom:472.176600px;}
.y5f{bottom:472.176750px;}
.y150{bottom:472.185600px;}
.yac{bottom:472.209600px;}
.y123{bottom:472.245600px;}
.y84{bottom:472.248750px;}
.y169{bottom:472.257600px;}
.yfe{bottom:472.260600px;}
.y1c1{bottom:481.241100px;}
.ye{bottom:484.864502px;}
.y39{bottom:490.275600px;}
.yd6{bottom:491.679600px;}
.y1e8{bottom:491.685600px;}
.y14f{bottom:491.688600px;}
.yab{bottom:491.712600px;}
.y122{bottom:491.748600px;}
.y83{bottom:491.751750px;}
.y168{bottom:491.760600px;}
.yfd{bottom:491.763600px;}
.y1c0{bottom:497.360100px;}
.yd{bottom:502.864502px;}
.y38{bottom:505.275600px;}
.yd5{bottom:511.182600px;}
.y5e{bottom:511.182750px;}
.y1e7{bottom:511.188600px;}
.y14e{bottom:511.191600px;}
.yaa{bottom:511.215600px;}
.y82{bottom:511.254750px;}
.y167{bottom:511.263600px;}
.yfc{bottom:511.266600px;}
.y1bf{bottom:513.479100px;}
.y37{bottom:520.275600px;}
.yc{bottom:520.864502px;}
.y1be{bottom:529.598100px;}
.y1e6{bottom:530.691600px;}
.y14d{bottom:530.694600px;}
.y121{bottom:530.754600px;}
.y81{bottom:530.757750px;}
.y166{bottom:530.766600px;}
.yfb{bottom:530.769600px;}
.y36{bottom:535.275600px;}
.yb{bottom:538.864499px;}
.y1bd{bottom:545.717100px;}
.yd4{bottom:550.188600px;}
.y5d{bottom:550.188750px;}
.y1e5{bottom:550.194600px;}
.y14c{bottom:550.197600px;}
.ya9{bottom:550.221600px;}
.y120{bottom:550.257600px;}
.y80{bottom:550.260750px;}
.y165{bottom:550.269600px;}
.yfa{bottom:550.272600px;}
.ya{bottom:556.864499px;}
.y1bc{bottom:561.836100px;}
.yd3{bottom:569.691600px;}
.y1e4{bottom:569.697600px;}
.y14b{bottom:569.700600px;}
.ya8{bottom:569.724600px;}
.y11f{bottom:569.760600px;}
.y7f{bottom:569.763750px;}
.y164{bottom:569.772600px;}
.yf9{bottom:569.775600px;}
.y1bb{bottom:577.955100px;}
.yd2{bottom:589.194600px;}
.y5c{bottom:589.194750px;}
.y14a{bottom:589.203600px;}
.ya7{bottom:589.227600px;}
.y11e{bottom:589.263600px;}
.y7e{bottom:589.266750px;}
.yf8{bottom:589.275600px;}
.y1ba{bottom:594.074100px;}
.yd1{bottom:608.697600px;}
.y1e3{bottom:608.703600px;}
.y149{bottom:608.706600px;}
.ya6{bottom:608.730600px;}
.y11d{bottom:608.766600px;}
.y187{bottom:608.768100px;}
.y7d{bottom:608.769750px;}
.y28{bottom:609.710700px;}
.y1b9{bottom:610.193100px;}
.y1b8{bottom:626.312100px;}
.yd0{bottom:628.200600px;}
.y5b{bottom:628.200750px;}
.y1e2{bottom:628.206600px;}
.y148{bottom:628.209600px;}
.ya5{bottom:628.233600px;}
.yf7{bottom:628.239600px;}
.y11c{bottom:628.269600px;}
.y7c{bottom:628.272750px;}
.y163{bottom:628.275600px;}
.y27{bottom:638.953200px;}
.y1b7{bottom:642.431100px;}
.y9{bottom:645.510000px;}
.ycf{bottom:647.703600px;}
.y1e1{bottom:647.709600px;}
.y147{bottom:647.712600px;}
.ya4{bottom:647.736600px;}
.yf6{bottom:647.742600px;}
.y11b{bottom:647.772600px;}
.y7b{bottom:647.775750px;}
.y1b6{bottom:658.550100px;}
.y8{bottom:666.771000px;}
.yce{bottom:667.206600px;}
.y5a{bottom:667.206750px;}
.y1e0{bottom:667.212600px;}
.y185{bottom:667.215600px;}
.ya3{bottom:667.239600px;}
.yf5{bottom:667.245600px;}
.y11a{bottom:667.275600px;}
.y7a{bottom:667.275750px;}
.y1b5{bottom:674.669100px;}
.y26{bottom:680.929200px;}
.ycd{bottom:686.709600px;}
.y146{bottom:686.718600px;}
.yf4{bottom:686.748600px;}
.y1b4{bottom:690.788100px;}
.ycc{bottom:706.212600px;}
.y59{bottom:706.212750px;}
.y1df{bottom:706.218600px;}
.y145{bottom:706.221600px;}
.ya2{bottom:706.245600px;}
.yf3{bottom:706.251600px;}
.y119{bottom:706.275600px;}
.y1b3{bottom:706.907100px;}
.y1b2{bottom:723.026100px;}
.ycb{bottom:725.715600px;}
.y1de{bottom:725.721600px;}
.y144{bottom:725.724600px;}
.y79{bottom:725.739750px;}
.ya1{bottom:725.748600px;}
.yf2{bottom:725.754600px;}
.y7{bottom:726.298500px;}
.y25{bottom:728.944200px;}
.y1b1{bottom:739.145100px;}
.yca{bottom:745.218600px;}
.y58{bottom:745.218750px;}
.y1dd{bottom:745.224600px;}
.y143{bottom:745.227600px;}
.y78{bottom:745.242750px;}
.ya0{bottom:745.251600px;}
.yf1{bottom:745.257600px;}
.y3{bottom:752.599495px;}
.y1b0{bottom:755.264100px;}
.yc9{bottom:764.721600px;}
.y1dc{bottom:764.727600px;}
.y142{bottom:764.730600px;}
.y77{bottom:764.745750px;}
.y118{bottom:764.748600px;}
.y9f{bottom:764.754600px;}
.yf0{bottom:764.760600px;}
.y1af{bottom:771.383100px;}
.y24{bottom:776.959200px;}
.yc8{bottom:784.224600px;}
.y57{bottom:784.224750px;}
.y1db{bottom:784.230600px;}
.y141{bottom:784.233600px;}
.y76{bottom:784.248750px;}
.y117{bottom:784.251600px;}
.y9e{bottom:784.257600px;}
.yef{bottom:784.263600px;}
.y1ae{bottom:787.502100px;}
.y1ad{bottom:803.621100px;}
.y162{bottom:803.727600px;}
.y140{bottom:803.736600px;}
.y75{bottom:803.751750px;}
.y116{bottom:803.754600px;}
.y9d{bottom:803.760600px;}
.yee{bottom:803.766600px;}
.y1ac{bottom:819.740100px;}
.yc7{bottom:823.230600px;}
.y56{bottom:823.230750px;}
.y1da{bottom:823.236600px;}
.y184{bottom:823.239600px;}
.y74{bottom:823.254750px;}
.y115{bottom:823.257600px;}
.y9c{bottom:823.263600px;}
.yed{bottom:823.269600px;}
.y1ab{bottom:835.859100px;}
.yc6{bottom:842.733600px;}
.y1d9{bottom:842.739600px;}
.y13f{bottom:842.742600px;}
.y73{bottom:842.757750px;}
.y114{bottom:842.760600px;}
.y9b{bottom:842.766600px;}
.yec{bottom:842.772600px;}
.y1aa{bottom:851.978100px;}
.yc5{bottom:862.236600px;}
.y55{bottom:862.236750px;}
.y1d8{bottom:862.242600px;}
.y13e{bottom:862.245600px;}
.y72{bottom:862.260750px;}
.y113{bottom:862.263600px;}
.y9a{bottom:862.269600px;}
.yeb{bottom:862.275600px;}
.y1a9{bottom:868.097100px;}
.y2{bottom:879.369000px;}
.yc4{bottom:881.739600px;}
.y1d7{bottom:881.745600px;}
.y13d{bottom:881.748600px;}
.y71{bottom:881.763750px;}
.y112{bottom:881.766600px;}
.y99{bottom:881.772600px;}
.yea{bottom:881.775600px;}
.y29{bottom:881.775750px;}
.y1a8{bottom:884.216100px;}
.y1a7{bottom:900.335100px;}
.yc3{bottom:901.242600px;}
.y54{bottom:901.242750px;}
.y13c{bottom:901.251600px;}
.y70{bottom:901.266750px;}
.y111{bottom:901.269600px;}
.y98{bottom:901.275600px;}
.y1a6{bottom:916.454100px;}
.yc2{bottom:920.745600px;}
.y1d6{bottom:920.751600px;}
.y13b{bottom:920.754600px;}
.y6f{bottom:920.769750px;}
.y110{bottom:920.772600px;}
.y1a5{bottom:932.573100px;}
.yc1{bottom:940.248600px;}
.y53{bottom:940.248750px;}
.y1d5{bottom:940.254600px;}
.y13a{bottom:940.257600px;}
.y6e{bottom:940.272750px;}
.y97{bottom:940.275600px;}
.y1a4{bottom:948.692100px;}
.yc0{bottom:959.751600px;}
.y1d4{bottom:959.757600px;}
.y139{bottom:959.760600px;}
.y6d{bottom:959.775750px;}
.y1a3{bottom:964.811100px;}
.y1{bottom:966.726000px;}
.ybf{bottom:979.254600px;}
.y52{bottom:979.254750px;}
.y1d3{bottom:979.260600px;}
.y138{bottom:979.263600px;}
.y10f{bottom:979.268100px;}
.y1a2{bottom:980.930100px;}
.y1a1{bottom:997.049100px;}
.ybe{bottom:998.757600px;}
.y1d2{bottom:998.763600px;}
.y137{bottom:998.766600px;}
.y96{bottom:998.772600px;}
.y10e{bottom:998.775600px;}
.y6c{bottom:998.775750px;}
.y1a0{bottom:1013.168100px;}
.y35{bottom:1018.260600px;}
.y51{bottom:1018.260750px;}
.y1d1{bottom:1018.266600px;}
.y136{bottom:1018.269600px;}
.y95{bottom:1018.275600px;}
.y19f{bottom:1029.287100px;}
.y34{bottom:1037.763600px;}
.y1d0{bottom:1037.769600px;}
.y135{bottom:1037.772600px;}
.y94{bottom:1037.775600px;}
.y19e{bottom:1045.406100px;}
.ybd{bottom:1057.266600px;}
.y50{bottom:1057.266750px;}
.y1cf{bottom:1057.272600px;}
.y134{bottom:1057.275600px;}
.y6b{bottom:1057.275750px;}
.y19d{bottom:1061.525100px;}
.y33{bottom:1076.769600px;}
.y4f{bottom:1076.769750px;}
.y1ce{bottom:1076.775600px;}
.y19c{bottom:1077.644100px;}
.y6a{bottom:1086.519750px;}
.y19b{bottom:1093.763100px;}
.y133{bottom:1096.268100px;}
.y32{bottom:1096.272600px;}
.y4e{bottom:1096.272750px;}
.y19a{bottom:1109.882100px;}
.y31{bottom:1115.775600px;}
.y4d{bottom:1115.775750px;}
.y199{bottom:1126.001100px;}
.y30{bottom:1148.757300px;}
.y2f{bottom:1166.752800px;}
.y2c{bottom:1174.694250px;}
.y2e{bottom:1184.748300px;}
.y2b{bottom:1192.689750px;}
.y2a{bottom:1210.685250px;}
.y93{bottom:1211.811000px;}
.y69{bottom:1211.811150px;}
.h7{height:32.130000px;}
.h18{height:33.408000px;}
.h16{height:37.584000px;}
.h10{height:38.832000px;}
.hc{height:40.932000px;}
.h15{height:43.686000px;}
.h14{height:44.334000px;}
.h6{height:45.900000px;}
.hf{height:45.936000px;}
.h3{height:48.195000px;}
.he{height:53.394000px;}
.h17{height:54.186000px;}
.h2{height:55.080000px;}
.h13{height:62.806500px;}
.hd{height:63.102000px;}
.hb{height:64.038000px;}
.h11{height:66.816000px;}
.h12{height:68.964000px;}
.h5{height:78.030000px;}
.ha{height:84.945000px;}
.h4{height:119.055004px;}
.h9{height:145.620000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.039500px;}
.xb{left:93.371850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:170.078700px;}
.x6{left:181.955250px;}
.x9{left:191.330700px;}
.xc{left:199.844700px;}
.x4{left:203.484001px;}
.xa{left:214.173600px;}
.x8{left:309.514350px;}
.x3{left:454.959000px;}
.xd{left:729.209700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-3.072000pt;}
.ls26{letter-spacing:-2.933333pt;}
.ls16{letter-spacing:-2.730667pt;}
.ls27{letter-spacing:-2.304000pt;}
.ls1b{letter-spacing:-1.536000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.340000pt;}
.ls14{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.816000pt;}
.ls19{letter-spacing:0.864000pt;}
.lsc{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.912000pt;}
.lse{letter-spacing:0.938667pt;}
.ls1a{letter-spacing:0.960000pt;}
.lsf{letter-spacing:0.981333pt;}
.ls25{letter-spacing:1.008000pt;}
.lsd{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.056000pt;}
.ls28{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.213333pt;}
.ls20{letter-spacing:1.632000pt;}
.ls4{letter-spacing:1.680000pt;}
.ls6{letter-spacing:1.733333pt;}
.ls1{letter-spacing:2.400000pt;}
.ls8{letter-spacing:2.640000pt;}
.ls7{letter-spacing:2.976000pt;}
.ls11{letter-spacing:4.266667pt;}
.ls13{letter-spacing:5.973333pt;}
.ls12{letter-spacing:6.826667pt;}
.ls3{letter-spacing:8.160000pt;}
.ls2{letter-spacing:12.000000pt;}
.ws1{word-spacing:-22.493333pt;}
.ws22{word-spacing:-15.844000pt;}
.ws16{word-spacing:-13.669333pt;}
.ws7{word-spacing:-13.584000pt;}
.ws2{word-spacing:-13.344000pt;}
.wsce{word-spacing:-12.096000pt;}
.wsc0{word-spacing:-12.000000pt;}
.wscd{word-spacing:-11.856000pt;}
.wscf{word-spacing:-11.808000pt;}
.wsd1{word-spacing:-11.760000pt;}
.wsd2{word-spacing:-11.520000pt;}
.wsd0{word-spacing:-11.376000pt;}
.wsaa{word-spacing:-11.152000pt;}
.wsa{word-spacing:-10.752000pt;}
.wsc{word-spacing:-10.709333pt;}
.wsb{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.624000pt;}
.wsd{word-spacing:-10.496000pt;}
.wscc{word-spacing:-8.192000pt;}
.wsd3{word-spacing:-7.872000pt;}
.ws3e{word-spacing:-5.280000pt;}
.ws68{word-spacing:-4.106667pt;}
.wsb2{word-spacing:-4.048000pt;}
.ws38{word-spacing:-3.989333pt;}
.ws96{word-spacing:-3.930667pt;}
.ws84{word-spacing:-3.872000pt;}
.ws4b{word-spacing:-3.813333pt;}
.ws90{word-spacing:-3.754667pt;}
.ws33{word-spacing:-3.696000pt;}
.ws9f{word-spacing:-3.637333pt;}
.ws4c{word-spacing:-3.578667pt;}
.wsb7{word-spacing:-3.520000pt;}
.ws4f{word-spacing:-3.461333pt;}
.wsaf{word-spacing:-3.402667pt;}
.wsa6{word-spacing:-3.344000pt;}
.ws9c{word-spacing:-3.285333pt;}
.ws56{word-spacing:-3.226667pt;}
.wsb6{word-spacing:-3.168000pt;}
.ws8f{word-spacing:-3.050667pt;}
.ws95{word-spacing:-2.992000pt;}
.ws8{word-spacing:-2.976000pt;}
.wsa7{word-spacing:-2.933333pt;}
.ws5a{word-spacing:-2.874667pt;}
.ws79{word-spacing:-2.757333pt;}
.ws67{word-spacing:-2.698667pt;}
.ws2d{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.581333pt;}
.ws73{word-spacing:-2.522667pt;}
.ws41{word-spacing:-2.405333pt;}
.ws6{word-spacing:-2.400000pt;}
.ws55{word-spacing:-2.346667pt;}
.ws47{word-spacing:-2.288000pt;}
.wsd8{word-spacing:-2.256000pt;}
.ws9d{word-spacing:-2.229333pt;}
.ws45{word-spacing:-2.170667pt;}
.ws6b{word-spacing:-2.112000pt;}
.ws5e{word-spacing:-2.053333pt;}
.ws17{word-spacing:-1.994667pt;}
.ws62{word-spacing:-1.936000pt;}
.wsb3{word-spacing:-1.877333pt;}
.ws34{word-spacing:-1.818667pt;}
.wsbe{word-spacing:-1.760000pt;}
.ws40{word-spacing:-1.701333pt;}
.wsda{word-spacing:-1.680000pt;}
.ws21{word-spacing:-1.642667pt;}
.wsdc{word-spacing:-1.632000pt;}
.ws99{word-spacing:-1.584000pt;}
.ws13{word-spacing:-1.578667pt;}
.ws15{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.525333pt;}
.wscb{word-spacing:-1.488000pt;}
.wsc5{word-spacing:-1.466667pt;}
.ws14{word-spacing:-1.450667pt;}
.wsdb{word-spacing:-1.440000pt;}
.ws70{word-spacing:-1.408000pt;}
.wsd5{word-spacing:-1.392000pt;}
.ws10{word-spacing:-1.349333pt;}
.wsd9{word-spacing:-1.344000pt;}
.ws12{word-spacing:-1.322667pt;}
.wsd6{word-spacing:-1.296000pt;}
.ws32{word-spacing:-1.290667pt;}
.ws76{word-spacing:-1.232000pt;}
.wse{word-spacing:-1.173333pt;}
.ws5c{word-spacing:-1.114667pt;}
.wsca{word-spacing:-1.104000pt;}
.ws71{word-spacing:-1.056000pt;}
.ws51{word-spacing:-0.997333pt;}
.ws11{word-spacing:-0.981333pt;}
.ws89{word-spacing:-0.938667pt;}
.ws88{word-spacing:-0.880000pt;}
.wsd7{word-spacing:-0.864000pt;}
.wsc4{word-spacing:-0.762667pt;}
.wsbf{word-spacing:-0.704000pt;}
.wsdd{word-spacing:-0.682667pt;}
.ws46{word-spacing:-0.645333pt;}
.wsd4{word-spacing:-0.624000pt;}
.ws5f{word-spacing:-0.586667pt;}
.ws5d{word-spacing:-0.528000pt;}
.ws5b{word-spacing:-0.410667pt;}
.ws1f{word-spacing:-0.352000pt;}
.ws24{word-spacing:-0.340000pt;}
.ws1a{word-spacing:-0.293333pt;}
.ws1c{word-spacing:-0.234667pt;}
.ws6f{word-spacing:-0.176000pt;}
.ws1d{word-spacing:-0.117333pt;}
.ws43{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.058667pt;}
.ws3c{word-spacing:0.117333pt;}
.ws60{word-spacing:0.176000pt;}
.wsc7{word-spacing:0.234667pt;}
.wsb1{word-spacing:0.293333pt;}
.ws2b{word-spacing:0.352000pt;}
.ws36{word-spacing:0.469333pt;}
.ws42{word-spacing:0.528000pt;}
.ws81{word-spacing:0.586667pt;}
.ws50{word-spacing:0.645333pt;}
.ws5{word-spacing:0.653333pt;}
.ws35{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.762667pt;}
.ws3{word-spacing:0.800000pt;}
.ws80{word-spacing:0.821333pt;}
.ws23{word-spacing:0.853333pt;}
.wsc9{word-spacing:0.880000pt;}
.wsb9{word-spacing:0.896000pt;}
.ws9a{word-spacing:0.938667pt;}
.ws37{word-spacing:0.997333pt;}
.ws7b{word-spacing:1.056000pt;}
.ws7f{word-spacing:1.114667pt;}
.ws94{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.232000pt;}
.ws82{word-spacing:1.290667pt;}
.ws7d{word-spacing:1.349333pt;}
.ws78{word-spacing:1.408000pt;}
.ws83{word-spacing:1.466667pt;}
.ws8a{word-spacing:1.525333pt;}
.ws63{word-spacing:1.584000pt;}
.wsb4{word-spacing:1.642667pt;}
.ws3d{word-spacing:1.701333pt;}
.wsc6{word-spacing:1.760000pt;}
.ws75{word-spacing:1.818667pt;}
.ws2c{word-spacing:1.877333pt;}
.ws4d{word-spacing:1.936000pt;}
.wsc8{word-spacing:1.994667pt;}
.ws8d{word-spacing:2.053333pt;}
.ws31{word-spacing:2.229333pt;}
.ws93{word-spacing:2.346667pt;}
.ws29{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.522667pt;}
.ws8e{word-spacing:2.581333pt;}
.wsbc{word-spacing:2.640000pt;}
.wsbd{word-spacing:2.698667pt;}
.wsc1{word-spacing:2.730667pt;}
.ws7a{word-spacing:2.757333pt;}
.ws77{word-spacing:2.874667pt;}
.ws3f{word-spacing:2.933333pt;}
.ws72{word-spacing:2.992000pt;}
.ws26{word-spacing:3.109333pt;}
.ws7c{word-spacing:3.168000pt;}
.ws8c{word-spacing:3.226667pt;}
.ws57{word-spacing:3.344000pt;}
.ws52{word-spacing:3.402667pt;}
.ws8b{word-spacing:3.461333pt;}
.ws66{word-spacing:3.696000pt;}
.ws1e{word-spacing:3.872000pt;}
.ws2f{word-spacing:3.930667pt;}
.ws69{word-spacing:3.989333pt;}
.ws30{word-spacing:4.048000pt;}
.ws6e{word-spacing:4.106667pt;}
.ws74{word-spacing:4.165333pt;}
.wsb8{word-spacing:4.224000pt;}
.wsa4{word-spacing:4.282667pt;}
.wsb5{word-spacing:4.341333pt;}
.ws54{word-spacing:4.400000pt;}
.ws64{word-spacing:4.517333pt;}
.ws2e{word-spacing:4.634667pt;}
.ws4{word-spacing:4.640000pt;}
.ws87{word-spacing:4.693333pt;}
.ws91{word-spacing:4.810667pt;}
.ws44{word-spacing:4.869333pt;}
.ws65{word-spacing:4.928000pt;}
.ws20{word-spacing:4.986667pt;}
.ws2a{word-spacing:5.045333pt;}
.ws6c{word-spacing:5.104000pt;}
.wsc2{word-spacing:5.162667pt;}
.wsab{word-spacing:5.221333pt;}
.wsa2{word-spacing:5.338667pt;}
.wsba{word-spacing:5.397333pt;}
.ws9b{word-spacing:5.514667pt;}
.wsa0{word-spacing:5.573333pt;}
.ws4e{word-spacing:5.690667pt;}
.wsbb{word-spacing:5.984000pt;}
.ws92{word-spacing:6.042667pt;}
.wsac{word-spacing:6.101333pt;}
.ws58{word-spacing:6.160000pt;}
.wsc3{word-spacing:6.218667pt;}
.wsa1{word-spacing:6.277333pt;}
.wsa9{word-spacing:6.336000pt;}
.ws85{word-spacing:6.453333pt;}
.ws6a{word-spacing:6.864000pt;}
.ws27{word-spacing:7.098667pt;}
.ws19{word-spacing:7.216000pt;}
.ws59{word-spacing:7.274667pt;}
.ws9e{word-spacing:7.333333pt;}
.ws53{word-spacing:7.450667pt;}
.wsb0{word-spacing:7.685333pt;}
.wsa5{word-spacing:7.802667pt;}
.ws18{word-spacing:8.096000pt;}
.ws86{word-spacing:8.213333pt;}
.ws97{word-spacing:8.272000pt;}
.wsf{word-spacing:8.858667pt;}
.ws39{word-spacing:8.917333pt;}
.wsa3{word-spacing:9.034667pt;}
.ws98{word-spacing:11.381333pt;}
.ws28{word-spacing:12.026667pt;}
.wsae{word-spacing:14.256000pt;}
.wsad{word-spacing:15.781333pt;}
.ws61{word-spacing:17.072000pt;}
.ws48{word-spacing:23.936000pt;}
.ws4a{word-spacing:29.512000pt;}
.wsa8{word-spacing:35.317333pt;}
.ws25{word-spacing:48.165333pt;}
._14{margin-left:-2271.970667pt;}
._1b{margin-left:-43.002667pt;}
._17{margin-left:-38.576000pt;}
._18{margin-left:-22.405333pt;}
._13{margin-left:-16.133333pt;}
._5{margin-left:-14.272000pt;}
._4{margin-left:-12.432000pt;}
._1a{margin-left:-11.158800pt;}
._d{margin-left:-7.531733pt;}
._f{margin-left:-6.165867pt;}
._b{margin-left:-5.189333pt;}
._3{margin-left:-4.080000pt;}
._a{margin-left:-3.018667pt;}
._0{margin-left:-1.680000pt;}
._1{width:1.008000pt;}
._9{width:2.288000pt;}
._7{width:3.888000pt;}
._2{width:4.928000pt;}
._8{width:5.920000pt;}
._6{width:8.016000pt;}
._16{width:29.518800pt;}
._1c{width:31.152000pt;}
._15{width:40.521200pt;}
._11{width:49.514667pt;}
._19{width:74.861200pt;}
._e{width:94.101333pt;}
._12{width:123.728000pt;}
._10{width:136.048000pt;}
._1d{width:414.954133pt;}
._c{width:433.556800pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:68.000000pt;}
.fs7{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:93.333333pt;}
.fs5{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y2d{bottom:71.811067pt;}
.y1fa{bottom:72.301733pt;}
.ye9{bottom:73.091200pt;}
.ybc{bottom:73.120533pt;}
.y1f9{bottom:85.635067pt;}
.y4{bottom:86.333337pt;}
.y161{bottom:90.336533pt;}
.y17a{bottom:90.400533pt;}
.ye8{bottom:90.427200pt;}
.ybb{bottom:90.456533pt;}
.y198{bottom:98.632533pt;}
.y4c{bottom:102.467200pt;}
.y1f8{bottom:107.669867pt;}
.y160{bottom:107.672533pt;}
.y68{bottom:107.694000pt;}
.y179{bottom:107.736533pt;}
.ye7{bottom:107.763200pt;}
.y10d{bottom:107.779200pt;}
.y92{bottom:107.784667pt;}
.yba{bottom:107.792533pt;}
.y197{bottom:112.960533pt;}
.y4b{bottom:115.800533pt;}
.y23{bottom:123.790666pt;}
.y1f7{bottom:125.005867pt;}
.y15f{bottom:125.008533pt;}
.y67{bottom:125.030000pt;}
.y178{bottom:125.072533pt;}
.ye6{bottom:125.099200pt;}
.y10c{bottom:125.115200pt;}
.y91{bottom:125.120667pt;}
.yb9{bottom:125.128533pt;}
.y196{bottom:127.288533pt;}
.y4a{bottom:129.133867pt;}
.y195{bottom:141.616533pt;}
.y1f6{bottom:142.341867pt;}
.y15e{bottom:142.344533pt;}
.y66{bottom:142.366000pt;}
.y132{bottom:142.397867pt;}
.ye5{bottom:142.435200pt;}
.y10b{bottom:142.451200pt;}
.y90{bottom:142.456667pt;}
.yb8{bottom:142.464533pt;}
.y49{bottom:142.467200pt;}
.y48{bottom:155.800533pt;}
.y194{bottom:155.944533pt;}
.y1f5{bottom:159.677867pt;}
.y15d{bottom:159.680533pt;}
.y65{bottom:159.702000pt;}
.y131{bottom:159.733867pt;}
.y177{bottom:159.744533pt;}
.ye4{bottom:159.771200pt;}
.y10a{bottom:159.787200pt;}
.y8f{bottom:159.792667pt;}
.yb7{bottom:159.800533pt;}
.y47{bottom:169.133867pt;}
.y193{bottom:170.272533pt;}
.y1a{bottom:175.052000pt;}
.y64{bottom:177.038000pt;}
.y130{bottom:177.069867pt;}
.y176{bottom:177.080533pt;}
.ye3{bottom:177.107200pt;}
.y109{bottom:177.123200pt;}
.yb6{bottom:177.127200pt;}
.y8e{bottom:177.128667pt;}
.y46{bottom:182.467200pt;}
.y192{bottom:184.600533pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y183{bottom:194.344533pt;}
.y1f4{bottom:194.349867pt;}
.y15c{bottom:194.352533pt;}
.y63{bottom:194.374000pt;}
.y12f{bottom:194.405867pt;}
.y175{bottom:194.416533pt;}
.y18d{bottom:194.419200pt;}
.ye2{bottom:194.443200pt;}
.y108{bottom:194.459200pt;}
.y8d{bottom:194.464667pt;}
.yb5{bottom:194.467200pt;}
.y45{bottom:195.800533pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y191{bottom:198.928533pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y182{bottom:211.680533pt;}
.y1f3{bottom:211.685867pt;}
.y15b{bottom:211.688533pt;}
.y62{bottom:211.710000pt;}
.y12e{bottom:211.741867pt;}
.y18c{bottom:211.755200pt;}
.ye1{bottom:211.779200pt;}
.y107{bottom:211.795200pt;}
.y8c{bottom:211.800667pt;}
.y190{bottom:213.256533pt;}
.y18f{bottom:227.584533pt;}
.y1f2{bottom:229.021867pt;}
.y15a{bottom:229.024533pt;}
.y61{bottom:229.046000pt;}
.y12d{bottom:229.077867pt;}
.y174{bottom:229.088533pt;}
.y18b{bottom:229.091200pt;}
.ye0{bottom:229.115200pt;}
.y8b{bottom:229.131000pt;}
.yb4{bottom:229.131200pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y18e{bottom:241.912533pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y181{bottom:246.352533pt;}
.y1f1{bottom:246.357867pt;}
.y159{bottom:246.360533pt;}
.y60{bottom:246.382000pt;}
.y12c{bottom:246.413867pt;}
.y173{bottom:246.424533pt;}
.y18a{bottom:246.427200pt;}
.ydf{bottom:246.451200pt;}
.yb3{bottom:246.467200pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1cd{bottom:255.833867pt;}
.y44{bottom:262.467200pt;}
.y180{bottom:263.688533pt;}
.y1f0{bottom:263.693867pt;}
.y186{bottom:263.696533pt;}
.y12b{bottom:263.749867pt;}
.y172{bottom:263.760533pt;}
.y189{bottom:263.763200pt;}
.yde{bottom:263.787200pt;}
.y8a{bottom:263.794000pt;}
.y106{bottom:263.800533pt;}
.y1cc{bottom:270.161867pt;}
.y43{bottom:275.800533pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1ef{bottom:281.029867pt;}
.y158{bottom:281.032533pt;}
.y12a{bottom:281.085867pt;}
.y171{bottom:281.096533pt;}
.y188{bottom:281.099200pt;}
.yb2{bottom:281.127200pt;}
.y89{bottom:281.134000pt;}
.y1cb{bottom:284.489867pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y42{bottom:289.133867pt;}
.y17f{bottom:298.360533pt;}
.y157{bottom:298.368533pt;}
.y129{bottom:298.421867pt;}
.y170{bottom:298.432533pt;}
.y105{bottom:298.435200pt;}
.ydd{bottom:298.459200pt;}
.yb1{bottom:298.467200pt;}
.y1ca{bottom:298.817867pt;}
.y41{bottom:302.467200pt;}
.y11{bottom:309.452000pt;}
.y1c9{bottom:313.145867pt;}
.y17e{bottom:315.696533pt;}
.y1ee{bottom:315.701867pt;}
.y156{bottom:315.704533pt;}
.y16f{bottom:315.768533pt;}
.y104{bottom:315.771200pt;}
.ydc{bottom:315.795200pt;}
.y40{bottom:315.800533pt;}
.y1c8{bottom:327.473867pt;}
.y3f{bottom:329.133867pt;}
.y1ed{bottom:333.037867pt;}
.y155{bottom:333.040533pt;}
.y128{bottom:333.093867pt;}
.y16e{bottom:333.104533pt;}
.y103{bottom:333.107200pt;}
.ydb{bottom:333.131200pt;}
.y88{bottom:333.134000pt;}
.y1c7{bottom:341.801867pt;}
.y3e{bottom:342.467200pt;}
.y10{bottom:343.809333pt;}
.y17d{bottom:350.368533pt;}
.y1ec{bottom:350.373867pt;}
.y154{bottom:350.376533pt;}
.yb0{bottom:350.397867pt;}
.y127{bottom:350.429867pt;}
.y16d{bottom:350.440533pt;}
.y102{bottom:350.443200pt;}
.yda{bottom:350.467200pt;}
.y87{bottom:350.467333pt;}
.y1c6{bottom:356.129867pt;}
.yf{bottom:362.706666pt;}
.y17c{bottom:367.704533pt;}
.y1eb{bottom:367.709867pt;}
.y153{bottom:367.712533pt;}
.yaf{bottom:367.733867pt;}
.y126{bottom:367.765867pt;}
.y16c{bottom:367.776533pt;}
.y101{bottom:367.779200pt;}
.yd9{bottom:367.800533pt;}
.y3d{bottom:369.133867pt;}
.y1c5{bottom:370.457867pt;}
.y3c{bottom:382.467200pt;}
.y1c4{bottom:384.785867pt;}
.y17b{bottom:385.040533pt;}
.y1ea{bottom:385.045867pt;}
.y152{bottom:385.048533pt;}
.yae{bottom:385.069867pt;}
.y125{bottom:385.101867pt;}
.y86{bottom:385.104667pt;}
.y16b{bottom:385.112533pt;}
.y100{bottom:385.115200pt;}
.y3b{bottom:395.800533pt;}
.y1c3{bottom:399.113867pt;}
.yd8{bottom:402.376533pt;}
.y1e9{bottom:402.381867pt;}
.y151{bottom:402.384533pt;}
.yad{bottom:402.405867pt;}
.y124{bottom:402.437867pt;}
.y85{bottom:402.440667pt;}
.y16a{bottom:402.448533pt;}
.yff{bottom:402.451200pt;}
.y3a{bottom:409.133867pt;}
.y1c2{bottom:413.441867pt;}
.yd7{bottom:419.712533pt;}
.y5f{bottom:419.712667pt;}
.y150{bottom:419.720533pt;}
.yac{bottom:419.741867pt;}
.y123{bottom:419.773867pt;}
.y84{bottom:419.776667pt;}
.y169{bottom:419.784533pt;}
.yfe{bottom:419.787200pt;}
.y1c1{bottom:427.769867pt;}
.ye{bottom:430.990669pt;}
.y39{bottom:435.800533pt;}
.yd6{bottom:437.048533pt;}
.y1e8{bottom:437.053867pt;}
.y14f{bottom:437.056533pt;}
.yab{bottom:437.077867pt;}
.y122{bottom:437.109867pt;}
.y83{bottom:437.112667pt;}
.y168{bottom:437.120533pt;}
.yfd{bottom:437.123200pt;}
.y1c0{bottom:442.097867pt;}
.yd{bottom:446.990669pt;}
.y38{bottom:449.133867pt;}
.yd5{bottom:454.384533pt;}
.y5e{bottom:454.384667pt;}
.y1e7{bottom:454.389867pt;}
.y14e{bottom:454.392533pt;}
.yaa{bottom:454.413867pt;}
.y82{bottom:454.448667pt;}
.y167{bottom:454.456533pt;}
.yfc{bottom:454.459200pt;}
.y1bf{bottom:456.425867pt;}
.y37{bottom:462.467200pt;}
.yc{bottom:462.990669pt;}
.y1be{bottom:470.753867pt;}
.y1e6{bottom:471.725867pt;}
.y14d{bottom:471.728533pt;}
.y121{bottom:471.781867pt;}
.y81{bottom:471.784667pt;}
.y166{bottom:471.792533pt;}
.yfb{bottom:471.795200pt;}
.y36{bottom:475.800533pt;}
.yb{bottom:478.990666pt;}
.y1bd{bottom:485.081867pt;}
.yd4{bottom:489.056533pt;}
.y5d{bottom:489.056667pt;}
.y1e5{bottom:489.061867pt;}
.y14c{bottom:489.064533pt;}
.ya9{bottom:489.085867pt;}
.y120{bottom:489.117867pt;}
.y80{bottom:489.120667pt;}
.y165{bottom:489.128533pt;}
.yfa{bottom:489.131200pt;}
.ya{bottom:494.990666pt;}
.y1bc{bottom:499.409867pt;}
.yd3{bottom:506.392533pt;}
.y1e4{bottom:506.397867pt;}
.y14b{bottom:506.400533pt;}
.ya8{bottom:506.421867pt;}
.y11f{bottom:506.453867pt;}
.y7f{bottom:506.456667pt;}
.y164{bottom:506.464533pt;}
.yf9{bottom:506.467200pt;}
.y1bb{bottom:513.737867pt;}
.yd2{bottom:523.728533pt;}
.y5c{bottom:523.728667pt;}
.y14a{bottom:523.736533pt;}
.ya7{bottom:523.757867pt;}
.y11e{bottom:523.789867pt;}
.y7e{bottom:523.792667pt;}
.yf8{bottom:523.800533pt;}
.y1ba{bottom:528.065867pt;}
.yd1{bottom:541.064533pt;}
.y1e3{bottom:541.069867pt;}
.y149{bottom:541.072533pt;}
.ya6{bottom:541.093867pt;}
.y11d{bottom:541.125867pt;}
.y187{bottom:541.127200pt;}
.y7d{bottom:541.128667pt;}
.y28{bottom:541.965067pt;}
.y1b9{bottom:542.393867pt;}
.y1b8{bottom:556.721867pt;}
.yd0{bottom:558.400533pt;}
.y5b{bottom:558.400667pt;}
.y1e2{bottom:558.405867pt;}
.y148{bottom:558.408533pt;}
.ya5{bottom:558.429867pt;}
.yf7{bottom:558.435200pt;}
.y11c{bottom:558.461867pt;}
.y7c{bottom:558.464667pt;}
.y163{bottom:558.467200pt;}
.y27{bottom:567.958400pt;}
.y1b7{bottom:571.049867pt;}
.y9{bottom:573.786667pt;}
.ycf{bottom:575.736533pt;}
.y1e1{bottom:575.741867pt;}
.y147{bottom:575.744533pt;}
.ya4{bottom:575.765867pt;}
.yf6{bottom:575.771200pt;}
.y11b{bottom:575.797867pt;}
.y7b{bottom:575.800667pt;}
.y1b6{bottom:585.377867pt;}
.y8{bottom:592.685334pt;}
.yce{bottom:593.072533pt;}
.y5a{bottom:593.072667pt;}
.y1e0{bottom:593.077867pt;}
.y185{bottom:593.080533pt;}
.ya3{bottom:593.101867pt;}
.yf5{bottom:593.107200pt;}
.y11a{bottom:593.133867pt;}
.y7a{bottom:593.134000pt;}
.y1b5{bottom:599.705867pt;}
.y26{bottom:605.270400pt;}
.ycd{bottom:610.408533pt;}
.y146{bottom:610.416533pt;}
.yf4{bottom:610.443200pt;}
.y1b4{bottom:614.033867pt;}
.ycc{bottom:627.744533pt;}
.y59{bottom:627.744667pt;}
.y1df{bottom:627.749867pt;}
.y145{bottom:627.752533pt;}
.ya2{bottom:627.773867pt;}
.yf3{bottom:627.779200pt;}
.y119{bottom:627.800533pt;}
.y1b3{bottom:628.361867pt;}
.y1b2{bottom:642.689867pt;}
.ycb{bottom:645.080533pt;}
.y1de{bottom:645.085867pt;}
.y144{bottom:645.088533pt;}
.y79{bottom:645.102000pt;}
.ya1{bottom:645.109867pt;}
.yf2{bottom:645.115200pt;}
.y7{bottom:645.598667pt;}
.y25{bottom:647.950400pt;}
.y1b1{bottom:657.017867pt;}
.yca{bottom:662.416533pt;}
.y58{bottom:662.416667pt;}
.y1dd{bottom:662.421867pt;}
.y143{bottom:662.424533pt;}
.y78{bottom:662.438000pt;}
.ya0{bottom:662.445867pt;}
.yf1{bottom:662.451200pt;}
.y3{bottom:668.977329pt;}
.y1b0{bottom:671.345867pt;}
.yc9{bottom:679.752533pt;}
.y1dc{bottom:679.757867pt;}
.y142{bottom:679.760533pt;}
.y77{bottom:679.774000pt;}
.y118{bottom:679.776533pt;}
.y9f{bottom:679.781867pt;}
.yf0{bottom:679.787200pt;}
.y1af{bottom:685.673867pt;}
.y24{bottom:690.630400pt;}
.yc8{bottom:697.088533pt;}
.y57{bottom:697.088667pt;}
.y1db{bottom:697.093867pt;}
.y141{bottom:697.096533pt;}
.y76{bottom:697.110000pt;}
.y117{bottom:697.112533pt;}
.y9e{bottom:697.117867pt;}
.yef{bottom:697.123200pt;}
.y1ae{bottom:700.001867pt;}
.y1ad{bottom:714.329867pt;}
.y162{bottom:714.424533pt;}
.y140{bottom:714.432533pt;}
.y75{bottom:714.446000pt;}
.y116{bottom:714.448533pt;}
.y9d{bottom:714.453867pt;}
.yee{bottom:714.459200pt;}
.y1ac{bottom:728.657867pt;}
.yc7{bottom:731.760533pt;}
.y56{bottom:731.760667pt;}
.y1da{bottom:731.765867pt;}
.y184{bottom:731.768533pt;}
.y74{bottom:731.782000pt;}
.y115{bottom:731.784533pt;}
.y9c{bottom:731.789867pt;}
.yed{bottom:731.795200pt;}
.y1ab{bottom:742.985867pt;}
.yc6{bottom:749.096533pt;}
.y1d9{bottom:749.101867pt;}
.y13f{bottom:749.104533pt;}
.y73{bottom:749.118000pt;}
.y114{bottom:749.120533pt;}
.y9b{bottom:749.125867pt;}
.yec{bottom:749.131200pt;}
.y1aa{bottom:757.313867pt;}
.yc5{bottom:766.432533pt;}
.y55{bottom:766.432667pt;}
.y1d8{bottom:766.437867pt;}
.y13e{bottom:766.440533pt;}
.y72{bottom:766.454000pt;}
.y113{bottom:766.456533pt;}
.y9a{bottom:766.461867pt;}
.yeb{bottom:766.467200pt;}
.y1a9{bottom:771.641867pt;}
.y2{bottom:781.661334pt;}
.yc4{bottom:783.768533pt;}
.y1d7{bottom:783.773867pt;}
.y13d{bottom:783.776533pt;}
.y71{bottom:783.790000pt;}
.y112{bottom:783.792533pt;}
.y99{bottom:783.797867pt;}
.yea{bottom:783.800533pt;}
.y29{bottom:783.800667pt;}
.y1a8{bottom:785.969867pt;}
.y1a7{bottom:800.297867pt;}
.yc3{bottom:801.104533pt;}
.y54{bottom:801.104667pt;}
.y13c{bottom:801.112533pt;}
.y70{bottom:801.126000pt;}
.y111{bottom:801.128533pt;}
.y98{bottom:801.133867pt;}
.y1a6{bottom:814.625867pt;}
.yc2{bottom:818.440533pt;}
.y1d6{bottom:818.445867pt;}
.y13b{bottom:818.448533pt;}
.y6f{bottom:818.462000pt;}
.y110{bottom:818.464533pt;}
.y1a5{bottom:828.953867pt;}
.yc1{bottom:835.776533pt;}
.y53{bottom:835.776667pt;}
.y1d5{bottom:835.781867pt;}
.y13a{bottom:835.784533pt;}
.y6e{bottom:835.798000pt;}
.y97{bottom:835.800533pt;}
.y1a4{bottom:843.281867pt;}
.yc0{bottom:853.112533pt;}
.y1d4{bottom:853.117867pt;}
.y139{bottom:853.120533pt;}
.y6d{bottom:853.134000pt;}
.y1a3{bottom:857.609867pt;}
.y1{bottom:859.312000pt;}
.ybf{bottom:870.448533pt;}
.y52{bottom:870.448667pt;}
.y1d3{bottom:870.453867pt;}
.y138{bottom:870.456533pt;}
.y10f{bottom:870.460533pt;}
.y1a2{bottom:871.937867pt;}
.y1a1{bottom:886.265867pt;}
.ybe{bottom:887.784533pt;}
.y1d2{bottom:887.789867pt;}
.y137{bottom:887.792533pt;}
.y96{bottom:887.797867pt;}
.y10e{bottom:887.800533pt;}
.y6c{bottom:887.800667pt;}
.y1a0{bottom:900.593867pt;}
.y35{bottom:905.120533pt;}
.y51{bottom:905.120667pt;}
.y1d1{bottom:905.125867pt;}
.y136{bottom:905.128533pt;}
.y95{bottom:905.133867pt;}
.y19f{bottom:914.921867pt;}
.y34{bottom:922.456533pt;}
.y1d0{bottom:922.461867pt;}
.y135{bottom:922.464533pt;}
.y94{bottom:922.467200pt;}
.y19e{bottom:929.249867pt;}
.ybd{bottom:939.792533pt;}
.y50{bottom:939.792667pt;}
.y1cf{bottom:939.797867pt;}
.y134{bottom:939.800533pt;}
.y6b{bottom:939.800667pt;}
.y19d{bottom:943.577867pt;}
.y33{bottom:957.128533pt;}
.y4f{bottom:957.128667pt;}
.y1ce{bottom:957.133867pt;}
.y19c{bottom:957.905867pt;}
.y6a{bottom:965.795333pt;}
.y19b{bottom:972.233867pt;}
.y133{bottom:974.460533pt;}
.y32{bottom:974.464533pt;}
.y4e{bottom:974.464667pt;}
.y19a{bottom:986.561867pt;}
.y31{bottom:991.800533pt;}
.y4d{bottom:991.800667pt;}
.y199{bottom:1000.889867pt;}
.y30{bottom:1021.117600pt;}
.y2f{bottom:1037.113600pt;}
.y2c{bottom:1044.172667pt;}
.y2e{bottom:1053.109600pt;}
.y2b{bottom:1060.168667pt;}
.y2a{bottom:1076.164667pt;}
.y93{bottom:1077.165333pt;}
.y69{bottom:1077.165467pt;}
.h7{height:28.560000pt;}
.h18{height:29.696000pt;}
.h16{height:33.408000pt;}
.h10{height:34.517333pt;}
.hc{height:36.384000pt;}
.h15{height:38.832000pt;}
.h14{height:39.408000pt;}
.h6{height:40.800000pt;}
.hf{height:40.832000pt;}
.h3{height:42.840000pt;}
.he{height:47.461333pt;}
.h17{height:48.165333pt;}
.h2{height:48.960000pt;}
.h13{height:55.828000pt;}
.hd{height:56.090667pt;}
.hb{height:56.922667pt;}
.h11{height:59.392000pt;}
.h12{height:61.301333pt;}
.h5{height:69.360000pt;}
.ha{height:75.506667pt;}
.h4{height:105.826671pt;}
.h9{height:129.440000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590667pt;}
.xb{left:82.997200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:151.181067pt;}
.x6{left:161.738000pt;}
.x9{left:170.071733pt;}
.xc{left:177.639733pt;}
.x4{left:180.874667pt;}
.xa{left:190.376533pt;}
.x8{left:275.123867pt;}
.x3{left:404.408000pt;}
.xd{left:648.186400pt;}
}




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