
    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_0587d34d50d5245fc0cd23c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886000;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_be750387a24844e2fde1cf05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.756000;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_8d61b30f8e0244a1fb1f28c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_deb6ea54f8a052229ecd7a59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_a3259e4839b8a40431140efc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_480520d8d02b9b11f0229f42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_18cc9f7a45350b474ec07cb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_31643f4a7b7ae731d5efdf65.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890000;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_1663f09e68feb0b1439d414c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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_d06c6f0c756bba16a53007e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_2701f1b1803750ce3dfdd694.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_a8e8776b2272d1fbf8e84c71.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;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_47df510ca58ef8febe7971d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738000;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_28ee07851e525538137701ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_c878a29c4fbcdd2c61dd575e.woff2')format("woff");}.fff{font-family:fff;line-height:0.952000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:36.018000px;}
.v5{vertical-align:72.036000px;}
.ls43{letter-spacing:-2.400000px;}
.ls28{letter-spacing:-2.220000px;}
.ls44{letter-spacing:-2.100000px;}
.ls56{letter-spacing:-1.776000px;}
.ls42{letter-spacing:-1.680000px;}
.ls45{letter-spacing:-1.620000px;}
.ls30{letter-spacing:-1.560000px;}
.ls4a{letter-spacing:-1.350000px;}
.ls6c{letter-spacing:-1.152000px;}
.ls4b{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-1.020000px;}
.ls29{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.840000px;}
.ls6e{letter-spacing:-0.768000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.600000px;}
.ls69{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls6d{letter-spacing:-0.384000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls59{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.240000px;}
.ls57{letter-spacing:-0.192000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls5a{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.096000px;}
.ls21{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.019200px;}
.ls5b{letter-spacing:0.024000px;}
.ls27{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.060000px;}
.ls50{letter-spacing:0.090000px;}
.ls66{letter-spacing:0.096000px;}
.ls47{letter-spacing:0.114000px;}
.ls12{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.150000px;}
.ls70{letter-spacing:0.168000px;}
.lsb{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.192000px;}
.ls53{letter-spacing:0.210000px;}
.ls4{letter-spacing:0.240000px;}
.ls39{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.330000px;}
.ls5e{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.384000px;}
.ls19{letter-spacing:0.390000px;}
.ls0{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.420000px;}
.ls65{letter-spacing:0.432000px;}
.ls51{letter-spacing:0.450000px;}
.ls6f{letter-spacing:0.475200px;}
.ls15{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.504000px;}
.ls4f{letter-spacing:0.510000px;}
.ls55{letter-spacing:0.528000px;}
.ls17{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.552000px;}
.ls23{letter-spacing:0.570000px;}
.ls31{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls5c{letter-spacing:0.624000px;}
.ls24{letter-spacing:0.630000px;}
.ls13{letter-spacing:0.660000px;}
.ls5f{letter-spacing:0.672000px;}
.ls52{letter-spacing:0.690000px;}
.lsc{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.750000px;}
.ls61{letter-spacing:0.768000px;}
.ls14{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.900000px;}
.ls60{letter-spacing:0.912000px;}
.ls4d{letter-spacing:0.930000px;}
.lsa{letter-spacing:0.960000px;}
.ls54{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.020000px;}
.ls3a{letter-spacing:1.050000px;}
.ls6b{letter-spacing:1.056000px;}
.ls25{letter-spacing:1.080000px;}
.ls67{letter-spacing:1.104000px;}
.ls38{letter-spacing:1.140000px;}
.ls6a{letter-spacing:1.152000px;}
.ls3e{letter-spacing:1.200000px;}
.ls32{letter-spacing:1.242000px;}
.ls36{letter-spacing:1.260000px;}
.ls48{letter-spacing:1.308000px;}
.ls3c{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.344000px;}
.ls41{letter-spacing:1.350000px;}
.ls2b{letter-spacing:1.380000px;}
.ls3b{letter-spacing:1.404000px;}
.ls37{letter-spacing:1.440000px;}
.ls35{letter-spacing:1.500000px;}
.ls33{letter-spacing:1.518000px;}
.ls16{letter-spacing:1.710000px;}
.ls49{letter-spacing:1.740000px;}
.ls68{letter-spacing:1.776000px;}
.ls3d{letter-spacing:1.830000px;}
.ls3f{letter-spacing:355.482000px;}
.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;}
}
.ws39{word-spacing:-60.000000px;}
.ws97{word-spacing:-48.000000px;}
.ws0{word-spacing:-33.360000px;}
.ws15{word-spacing:-20.160000px;}
.ws73{word-spacing:-15.150000px;}
.ws60{word-spacing:-15.120000px;}
.ws74{word-spacing:-15.060000px;}
.ws6a{word-spacing:-15.000000px;}
.ws86{word-spacing:-14.880000px;}
.ws3b{word-spacing:-14.820000px;}
.ws87{word-spacing:-14.580000px;}
.ws3a{word-spacing:-14.520000px;}
.ws5f{word-spacing:-14.460000px;}
.ws5e{word-spacing:-14.430000px;}
.ws38{word-spacing:-14.400000px;}
.ws8b{word-spacing:-13.920000px;}
.ws76{word-spacing:-13.662000px;}
.ws7e{word-spacing:-12.960000px;}
.ws4{word-spacing:-11.539200px;}
.ws3{word-spacing:-11.520000px;}
.ws1{word-spacing:-8.395200px;}
.ws2{word-spacing:-6.716160px;}
.ws89{word-spacing:-4.380000px;}
.ws6{word-spacing:-2.220000px;}
.ws23{word-spacing:-2.160000px;}
.ws1a{word-spacing:-2.100000px;}
.ws42{word-spacing:-2.040000px;}
.ws69{word-spacing:-1.998000px;}
.ws4f{word-spacing:-1.980000px;}
.ws83{word-spacing:-1.860000px;}
.ws62{word-spacing:-1.800000px;}
.wsb6{word-spacing:-1.776000px;}
.ws21{word-spacing:-1.740000px;}
.wsc{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.620000px;}
.ws96{word-spacing:-1.584000px;}
.ws16{word-spacing:-1.560000px;}
.ws1e{word-spacing:-1.500000px;}
.wsa0{word-spacing:-1.488000px;}
.ws63{word-spacing:-1.440000px;}
.ws98{word-spacing:-1.392000px;}
.ws31{word-spacing:-1.380000px;}
.wsaf{word-spacing:-1.344000px;}
.ws17{word-spacing:-1.320000px;}
.wsae{word-spacing:-1.296000px;}
.ws5c{word-spacing:-1.260000px;}
.wsb3{word-spacing:-1.248000px;}
.ws34{word-spacing:-1.200000px;}
.wsc2{word-spacing:-1.152000px;}
.ws29{word-spacing:-1.140000px;}
.ws25{word-spacing:-1.080000px;}
.ws36{word-spacing:-1.020000px;}
.ws9a{word-spacing:-1.008000px;}
.ws4e{word-spacing:-0.960000px;}
.wsa7{word-spacing:-0.912000px;}
.ws22{word-spacing:-0.900000px;}
.wsb0{word-spacing:-0.864000px;}
.ws4d{word-spacing:-0.840000px;}
.ws48{word-spacing:-0.780000px;}
.ws8d{word-spacing:-0.768000px;}
.ws2b{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.672000px;}
.ws52{word-spacing:-0.660000px;}
.wsb9{word-spacing:-0.624000px;}
.ws49{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.576000px;}
.ws2a{word-spacing:-0.540000px;}
.ws94{word-spacing:-0.528000px;}
.ws33{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.432000px;}
.ws32{word-spacing:-0.420000px;}
.wsac{word-spacing:-0.384000px;}
.ws53{word-spacing:-0.360000px;}
.wsbf{word-spacing:-0.336000px;}
.ws46{word-spacing:-0.300000px;}
.wsa9{word-spacing:-0.288000px;}
.ws6b{word-spacing:-0.240000px;}
.wsbc{word-spacing:-0.192000px;}
.ws3f{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.144000px;}
.ws47{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.096000px;}
.ws51{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsba{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.wsb1{word-spacing:0.096000px;}
.ws5a{word-spacing:0.120000px;}
.wsbe{word-spacing:0.144000px;}
.ws6c{word-spacing:0.180000px;}
.ws90{word-spacing:0.192000px;}
.ws19{word-spacing:0.240000px;}
.ws26{word-spacing:0.300000px;}
.ws91{word-spacing:0.336000px;}
.ws37{word-spacing:0.360000px;}
.wse{word-spacing:0.384000px;}
.ws2e{word-spacing:0.420000px;}
.wsaa{word-spacing:0.432000px;}
.ws11{word-spacing:0.480000px;}
.wsc3{word-spacing:0.528000px;}
.wsf{word-spacing:0.576000px;}
.ws50{word-spacing:0.600000px;}
.ws6e{word-spacing:0.660000px;}
.ws93{word-spacing:0.672000px;}
.ws10{word-spacing:0.720000px;}
.wsbb{word-spacing:0.768000px;}
.ws57{word-spacing:0.780000px;}
.wsa{word-spacing:0.816000px;}
.ws59{word-spacing:0.840000px;}
.wsb7{word-spacing:0.864000px;}
.ws27{word-spacing:0.900000px;}
.wsb4{word-spacing:0.912000px;}
.ws20{word-spacing:0.960000px;}
.ws99{word-spacing:1.008000px;}
.ws88{word-spacing:1.020000px;}
.ws9{word-spacing:1.056000px;}
.ws3d{word-spacing:1.080000px;}
.ws9f{word-spacing:1.104000px;}
.ws72{word-spacing:1.140000px;}
.ws8{word-spacing:1.152000px;}
.ws28{word-spacing:1.200000px;}
.ws9c{word-spacing:1.248000px;}
.ws6d{word-spacing:1.260000px;}
.ws95{word-spacing:1.296000px;}
.ws30{word-spacing:1.320000px;}
.ws9e{word-spacing:1.344000px;}
.ws85{word-spacing:1.350000px;}
.ws5d{word-spacing:1.380000px;}
.ws9d{word-spacing:1.392000px;}
.ws1b{word-spacing:1.440000px;}
.ws1f{word-spacing:1.500000px;}
.wsc1{word-spacing:1.536000px;}
.ws1d{word-spacing:1.560000px;}
.wsb5{word-spacing:1.584000px;}
.ws56{word-spacing:1.620000px;}
.wsa1{word-spacing:1.632000px;}
.ws2c{word-spacing:1.680000px;}
.wsa2{word-spacing:1.728000px;}
.ws4c{word-spacing:1.740000px;}
.ws8c{word-spacing:1.776000px;}
.ws43{word-spacing:1.800000px;}
.ws92{word-spacing:1.824000px;}
.ws1c{word-spacing:1.860000px;}
.wsa5{word-spacing:1.872000px;}
.ws41{word-spacing:1.920000px;}
.ws2d{word-spacing:1.980000px;}
.ws54{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws35{word-spacing:2.160000px;}
.ws3e{word-spacing:2.220000px;}
.ws58{word-spacing:2.280000px;}
.wsa3{word-spacing:2.304000px;}
.ws3c{word-spacing:2.340000px;}
.wsa8{word-spacing:2.352000px;}
.ws4b{word-spacing:2.400000px;}
.ws18{word-spacing:2.460000px;}
.ws8e{word-spacing:2.496000px;}
.ws82{word-spacing:2.520000px;}
.ws8f{word-spacing:2.544000px;}
.ws44{word-spacing:2.580000px;}
.wsb8{word-spacing:2.592000px;}
.ws45{word-spacing:2.640000px;}
.wsc0{word-spacing:2.688000px;}
.ws5b{word-spacing:2.700000px;}
.wsab{word-spacing:2.736000px;}
.ws8a{word-spacing:2.760000px;}
.wsc4{word-spacing:2.784000px;}
.ws64{word-spacing:2.820000px;}
.wsb2{word-spacing:2.832000px;}
.ws61{word-spacing:2.940000px;}
.ws6f{word-spacing:3.180000px;}
.ws71{word-spacing:3.240000px;}
.wsbd{word-spacing:3.312000px;}
.ws70{word-spacing:3.360000px;}
.wsa6{word-spacing:3.408000px;}
.ws55{word-spacing:3.420000px;}
.ws2f{word-spacing:4.260000px;}
.ws84{word-spacing:4.380000px;}
.wsad{word-spacing:4.416000px;}
.ws75{word-spacing:147.960000px;}
.ws78{word-spacing:210.762000px;}
.ws7a{word-spacing:223.722000px;}
.ws79{word-spacing:250.506000px;}
.ws7d{word-spacing:255.258000px;}
.ws80{word-spacing:261.036000px;}
.ws7c{word-spacing:287.496000px;}
.ws81{word-spacing:291.708000px;}
.ws65{word-spacing:337.932000px;}
.ws77{word-spacing:353.700000px;}
.ws68{word-spacing:363.042000px;}
.ws67{word-spacing:395.118000px;}
.ws7f{word-spacing:685.638000px;}
.ws66{word-spacing:723.060000px;}
.ws7b{word-spacing:859.086000px;}
.ws14{word-spacing:2199.790200px;}
._6{margin-left:-2891.339400px;}
._35{margin-left:-12.757200px;}
._34{margin-left:-10.892400px;}
._36{margin-left:-9.150000px;}
._7{margin-left:-6.660000px;}
._3{margin-left:-4.662000px;}
._2{margin-left:-3.108000px;}
._0{margin-left:-1.554000px;}
._4{width:1.560000px;}
._5{width:3.096600px;}
._1{width:10.878000px;}
._33{width:14.184000px;}
._2f{width:76.086000px;}
._2d{width:109.836000px;}
._32{width:135.540000px;}
._2e{width:139.806000px;}
._31{width:148.500000px;}
._c{width:164.214000px;}
._2c{width:172.314000px;}
._30{width:175.176000px;}
._24{width:183.330000px;}
._f{width:187.704000px;}
._27{width:189.702000px;}
._17{width:199.932000px;}
._1f{width:207.234000px;}
._28{width:217.728000px;}
._10{width:227.016000px;}
._20{width:261.846000px;}
._11{width:272.862000px;}
._1e{width:276.588000px;}
._25{width:284.904000px;}
._a{width:291.600000px;}
._d{width:294.840000px;}
._e{width:302.724000px;}
._21{width:312.648000px;}
._1c{width:316.656000px;}
._16{width:320.598000px;}
._14{width:329.616000px;}
._22{width:336.150000px;}
._15{width:343.926000px;}
._18{width:362.070000px;}
._13{width:369.576000px;}
._12{width:373.032000px;}
._19{width:375.030000px;}
._1d{width:390.744000px;}
._b{width:399.384000px;}
._2b{width:450.414000px;}
._23{width:461.322000px;}
._1b{width:483.678000px;}
._26{width:488.538000px;}
._1a{width:509.058000px;}
._9{width:530.442000px;}
._8{width:634.500000px;}
._29{width:652.212000px;}
._2a{width:729.594000px;}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:135.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:34.015800px;}
.y3e{bottom:59.207700px;}
.y117{bottom:72.258750px;}
.y39{bottom:79.792200px;}
.y35{bottom:79.936950px;}
.yb7{bottom:79.941000px;}
.y13e{bottom:80.240250px;}
.y77{bottom:80.252250px;}
.yaa{bottom:80.282250px;}
.y187{bottom:82.424250px;}
.yda{bottom:86.575800px;}
.ydb{bottom:86.589300px;}
.ybd{bottom:86.643300px;}
.y118{bottom:90.254250px;}
.y38{bottom:93.292200px;}
.y34{bottom:93.436950px;}
.y13d{bottom:93.740250px;}
.y186{bottom:95.924250px;}
.y76{bottom:98.252250px;}
.ya9{bottom:98.282250px;}
.yb6{bottom:99.189000px;}
.yba{bottom:100.015800px;}
.y37{bottom:106.792200px;}
.y33{bottom:106.936950px;}
.y13c{bottom:107.240250px;}
.y185{bottom:109.424250px;}
.y116{bottom:110.949750px;}
.ybc{bottom:113.265300px;}
.y75{bottom:116.252250px;}
.ya8{bottom:116.282250px;}
.y36{bottom:120.292200px;}
.y32{bottom:120.436950px;}
.y13b{bottom:120.740250px;}
.y184{bottom:122.924250px;}
.y115{bottom:131.645250px;}
.y13a{bottom:133.844250px;}
.y31{bottom:133.936950px;}
.y74{bottom:134.252250px;}
.ya7{bottom:134.282250px;}
.y183{bottom:136.424250px;}
.y3f{bottom:144.302100px;}
.y139{bottom:146.948250px;}
.y182{bottom:149.924250px;}
.y30{bottom:151.689000px;}
.y73{bottom:152.252250px;}
.ya6{bottom:152.282250px;}
.ye6{bottom:152.312250px;}
.y114{bottom:152.340750px;}
.y138{bottom:160.052250px;}
.y181{bottom:163.424250px;}
.y3d{bottom:168.312000px;}
.y72{bottom:170.252250px;}
.ya5{bottom:170.282250px;}
.yb2{bottom:170.312250px;}
.y113{bottom:173.036250px;}
.y137{bottom:173.156250px;}
.y180{bottom:176.924250px;}
.y3c{bottom:181.812000px;}
.y136{bottom:186.260250px;}
.y71{bottom:188.252250px;}
.ya4{bottom:188.282250px;}
.y17f{bottom:190.424250px;}
.y112{bottom:193.731750px;}
.y3b{bottom:195.312000px;}
.y135{bottom:199.364250px;}
.y17e{bottom:203.924250px;}
.y70{bottom:206.252250px;}
.ya3{bottom:206.282250px;}
.ycb{bottom:208.629300px;}
.y134{bottom:212.468250px;}
.ybf{bottom:213.313800px;}
.ybe{bottom:213.327300px;}
.y111{bottom:214.427250px;}
.yc4{bottom:215.649300px;}
.y17d{bottom:217.424250px;}
.yde{bottom:217.822800px;}
.yc8{bottom:218.619300px;}
.ye3{bottom:218.929800px;}
.y3a{bottom:219.792150px;}
.y6f{bottom:224.252250px;}
.ya2{bottom:224.282250px;}
.y133{bottom:225.572250px;}
.y17c{bottom:230.924250px;}
.yc9{bottom:233.617800px;}
.yc0{bottom:234.306300px;}
.y110{bottom:235.122750px;}
.ydc{bottom:237.235800px;}
.y132{bottom:238.676250px;}
.y6e{bottom:242.252250px;}
.ya1{bottom:242.282250px;}
.y119{bottom:242.312250px;}
.y17b{bottom:244.424250px;}
.y131{bottom:251.780250px;}
.y10f{bottom:255.818250px;}
.y17a{bottom:257.924250px;}
.ye4{bottom:258.120300px;}
.y6d{bottom:260.252250px;}
.ya0{bottom:260.282250px;}
.ye7{bottom:260.312250px;}
.ycc{bottom:261.387300px;}
.y130{bottom:264.884250px;}
.yc7{bottom:270.135300px;}
.y179{bottom:271.424250px;}
.y10e{bottom:276.513750px;}
.y12f{bottom:277.988250px;}
.y6c{bottom:278.252250px;}
.y9f{bottom:278.282250px;}
.ycd{bottom:279.423300px;}
.y178{bottom:284.924250px;}
.y12e{bottom:291.092250px;}
.y10d{bottom:294.509250px;}
.y6b{bottom:296.252250px;}
.y9e{bottom:296.282250px;}
.y177{bottom:298.424250px;}
.y12d{bottom:304.196250px;}
.y176{bottom:311.924250px;}
.y6a{bottom:314.252250px;}
.yae{bottom:314.282250px;}
.y10c{bottom:315.204750px;}
.y12c{bottom:317.300250px;}
.yce{bottom:318.910800px;}
.yca{bottom:322.191300px;}
.yc5{bottom:323.581800px;}
.y175{bottom:325.424250px;}
.y12b{bottom:330.404250px;}
.y69{bottom:332.252250px;}
.yad{bottom:332.282250px;}
.y9d{bottom:332.312250px;}
.y10b{bottom:335.900250px;}
.y174{bottom:338.924250px;}
.y12a{bottom:343.508250px;}
.y68{bottom:350.252250px;}
.yac{bottom:350.282250px;}
.y173{bottom:352.424250px;}
.y10a{bottom:356.595750px;}
.y129{bottom:356.612250px;}
.y172{bottom:365.924250px;}
.y67{bottom:368.252250px;}
.yab{bottom:368.282250px;}
.y128{bottom:369.716250px;}
.y109{bottom:377.291250px;}
.y171{bottom:379.424250px;}
.y127{bottom:382.820250px;}
.y66{bottom:386.252250px;}
.y9c{bottom:386.282250px;}
.y170{bottom:392.924250px;}
.y108{bottom:395.286750px;}
.y126{bottom:395.924250px;}
.y65{bottom:404.252250px;}
.y9b{bottom:404.282250px;}
.y21{bottom:405.612900px;}
.y2f{bottom:405.621450px;}
.y16f{bottom:406.424250px;}
.y125{bottom:409.028250px;}
.y107{bottom:415.982250px;}
.y20{bottom:417.614400px;}
.y2e{bottom:419.121450px;}
.y16e{bottom:419.924250px;}
.y124{bottom:422.132250px;}
.y64{bottom:422.252250px;}
.y9a{bottom:422.282250px;}
.y1f{bottom:429.615900px;}
.y2d{bottom:432.621450px;}
.y16d{bottom:433.424250px;}
.y123{bottom:435.236250px;}
.y106{bottom:436.677750px;}
.y63{bottom:440.252250px;}
.y99{bottom:440.282250px;}
.y1e{bottom:441.617400px;}
.y2c{bottom:446.121450px;}
.y16c{bottom:446.924250px;}
.y122{bottom:448.340250px;}
.y1d{bottom:453.618900px;}
.y105{bottom:454.673250px;}
.y62{bottom:458.252250px;}
.y98{bottom:458.282250px;}
.y2b{bottom:459.621450px;}
.y16b{bottom:460.424250px;}
.y121{bottom:461.444250px;}
.ybb{bottom:470.170800px;}
.y2a{bottom:473.121450px;}
.y16a{bottom:473.924250px;}
.y1c{bottom:474.125400px;}
.y120{bottom:474.548250px;}
.y104{bottom:475.368750px;}
.y61{bottom:476.252250px;}
.y97{bottom:476.282250px;}
.y29{bottom:486.621450px;}
.y169{bottom:487.424250px;}
.y11f{bottom:487.652250px;}
.y60{bottom:494.252250px;}
.y96{bottom:494.282250px;}
.y103{bottom:496.064250px;}
.y28{bottom:500.121450px;}
.y11e{bottom:500.756250px;}
.y168{bottom:500.924250px;}
.y5f{bottom:512.252250px;}
.y95{bottom:512.282250px;}
.y27{bottom:513.621450px;}
.y11d{bottom:513.860250px;}
.y167{bottom:514.424250px;}
.y102{bottom:516.759750px;}
.y11c{bottom:526.964250px;}
.y26{bottom:527.121450px;}
.y166{bottom:527.924250px;}
.y5e{bottom:530.252250px;}
.y94{bottom:530.282250px;}
.ycf{bottom:532.993800px;}
.y101{bottom:537.455250px;}
.y11b{bottom:540.068250px;}
.y25{bottom:540.621450px;}
.y165{bottom:541.424250px;}
.y5d{bottom:548.252250px;}
.y93{bottom:548.282250px;}
.y11a{bottom:553.172250px;}
.y24{bottom:554.121450px;}
.y164{bottom:554.924250px;}
.y100{bottom:558.150750px;}
.y5c{bottom:566.252250px;}
.y92{bottom:566.282250px;}
.y23{bottom:567.621450px;}
.y163{bottom:568.424250px;}
.yff{bottom:578.846250px;}
.y162{bottom:581.924250px;}
.y5b{bottom:584.252250px;}
.y91{bottom:584.282250px;}
.yb9{bottom:584.312250px;}
.y22{bottom:589.625400px;}
.y161{bottom:595.424250px;}
.yfe{bottom:599.541750px;}
.y5a{bottom:602.252250px;}
.y90{bottom:602.282250px;}
.yb8{bottom:602.312250px;}
.y160{bottom:608.924250px;}
.ye0{bottom:609.309300px;}
.ydd{bottom:613.885800px;}
.yd0{bottom:619.002300px;}
.yfd{bottom:620.237250px;}
.y59{bottom:620.252250px;}
.y8f{bottom:620.282250px;}
.yd1{bottom:620.703300px;}
.ydf{bottom:621.216300px;}
.y15f{bottom:622.424250px;}
.yb5{bottom:626.200800px;}
.y15e{bottom:635.924250px;}
.y58{bottom:638.252250px;}
.y8e{bottom:638.282250px;}
.yfc{bottom:640.932750px;}
.yb4{bottom:641.200800px;}
.y1b{bottom:644.996700px;}
.yf{bottom:645.175650px;}
.y15d{bottom:649.424250px;}
.y57{bottom:656.252250px;}
.y8d{bottom:656.282250px;}
.ye{bottom:657.177150px;}
.y1a{bottom:658.496700px;}
.yb3{bottom:660.448800px;}
.yfb{bottom:661.628250px;}
.y15c{bottom:662.924250px;}
.ye1{bottom:666.738300px;}
.yd{bottom:669.178650px;}
.y19{bottom:671.996700px;}
.y56{bottom:674.252250px;}
.y8c{bottom:674.282250px;}
.yd2{bottom:674.487300px;}
.y15b{bottom:676.424250px;}
.yc6{bottom:677.011800px;}
.yc1{bottom:677.025300px;}
.yc{bottom:681.180150px;}
.yfa{bottom:682.323750px;}
.y18{bottom:685.496700px;}
.y15a{bottom:689.924250px;}
.y55{bottom:692.252250px;}
.y8b{bottom:692.282250px;}
.yb{bottom:693.181650px;}
.y17{bottom:698.996700px;}
.yf9{bottom:703.019250px;}
.y159{bottom:703.424250px;}
.y54{bottom:710.252250px;}
.y8a{bottom:710.282250px;}
.y16{bottom:712.496700px;}
.ya{bottom:713.688150px;}
.y158{bottom:716.924250px;}
.yf8{bottom:723.714750px;}
.y15{bottom:725.996700px;}
.y53{bottom:728.252250px;}
.y89{bottom:728.282250px;}
.y157{bottom:730.424250px;}
.y14{bottom:739.496700px;}
.y156{bottom:743.924250px;}
.yf7{bottom:744.410250px;}
.y52{bottom:746.252250px;}
.y88{bottom:746.282250px;}
.y13{bottom:752.996700px;}
.y155{bottom:757.424250px;}
.y51{bottom:764.252250px;}
.y87{bottom:764.282250px;}
.yb1{bottom:764.312250px;}
.yf6{bottom:765.105750px;}
.y12{bottom:766.496700px;}
.y154{bottom:770.924250px;}
.y11{bottom:779.996700px;}
.y50{bottom:782.252250px;}
.y86{bottom:782.282250px;}
.yb0{bottom:782.312250px;}
.y153{bottom:784.424250px;}
.yf5{bottom:785.801250px;}
.y152{bottom:797.924250px;}
.y4f{bottom:800.252250px;}
.y85{bottom:800.282250px;}
.y10{bottom:802.000650px;}
.yf4{bottom:806.496750px;}
.y151{bottom:811.424250px;}
.yd7{bottom:817.506300px;}
.y4e{bottom:818.252250px;}
.y84{bottom:818.282250px;}
.yd5{bottom:824.215800px;}
.y150{bottom:824.924250px;}
.yf3{bottom:827.192250px;}
.yd8{bottom:827.725800px;}
.yd4{bottom:833.368800px;}
.y4d{bottom:836.252250px;}
.y83{bottom:836.282250px;}
.y14f{bottom:838.424250px;}
.yd3{bottom:838.768800px;}
.yc2{bottom:838.809300px;}
.yf2{bottom:847.887750px;}
.y14e{bottom:851.924250px;}
.y4c{bottom:854.252250px;}
.y82{bottom:854.282250px;}
.y9{bottom:857.372250px;}
.ye2{bottom:862.758300px;}
.yd6{bottom:864.931800px;}
.y14d{bottom:865.424250px;}
.ye5{bottom:865.930800px;}
.yf1{bottom:868.583250px;}
.yc3{bottom:869.710800px;}
.y4b{bottom:872.252250px;}
.y81{bottom:872.282250px;}
.y8{bottom:876.368250px;}
.y14c{bottom:878.924250px;}
.yf0{bottom:889.278750px;}
.y4a{bottom:890.252250px;}
.y80{bottom:890.282250px;}
.y14b{bottom:892.424250px;}
.y7{bottom:895.876350px;}
.y14a{bottom:905.924250px;}
.y49{bottom:908.252250px;}
.y7f{bottom:908.282250px;}
.yef{bottom:909.974250px;}
.y149{bottom:919.424250px;}
.y48{bottom:926.252250px;}
.y7e{bottom:926.282250px;}
.y6{bottom:926.632200px;}
.yee{bottom:930.669750px;}
.y148{bottom:932.924250px;}
.y47{bottom:944.252250px;}
.y7d{bottom:944.282250px;}
.y147{bottom:946.424250px;}
.y5{bottom:949.132200px;}
.yed{bottom:951.365250px;}
.y146{bottom:959.924250px;}
.y46{bottom:962.252250px;}
.y7c{bottom:962.282250px;}
.yec{bottom:972.060750px;}
.y145{bottom:973.424250px;}
.y45{bottom:980.252250px;}
.y7b{bottom:980.282250px;}
.yaf{bottom:980.312250px;}
.y144{bottom:986.924250px;}
.yeb{bottom:992.754600px;}
.y44{bottom:998.252250px;}
.y7a{bottom:998.282250px;}
.y143{bottom:1000.424250px;}
.y3{bottom:1003.304850px;}
.yd9{bottom:1009.111800px;}
.yea{bottom:1010.754600px;}
.y142{bottom:1013.924250px;}
.y43{bottom:1016.252250px;}
.y79{bottom:1016.282250px;}
.y141{bottom:1027.424250px;}
.ye9{bottom:1028.754600px;}
.y78{bottom:1034.282250px;}
.y140{bottom:1040.924250px;}
.ye8{bottom:1046.754600px;}
.y42{bottom:1052.282250px;}
.y13f{bottom:1054.424250px;}
.y2{bottom:1075.080150px;}
.y1{bottom:1110.517650px;}
.y40{bottom:1116.061800px;}
.y4{bottom:1151.563050px;}
.h8{height:20.652192px;}
.hf{height:26.688000px;}
.ha{height:29.988000px;}
.h4{height:30.912000px;}
.h12{height:35.088000px;}
.h9{height:35.424000px;}
.hb{height:37.338000px;}
.h14{height:39.474000px;}
.h18{height:39.852000px;}
.hd{height:42.672000px;}
.he{height:43.800000px;}
.h11{height:43.860000px;}
.h13{height:43.920000px;}
.h15{height:48.006000px;}
.hc{height:51.840000px;}
.h7{height:53.340000px;}
.h6{height:58.656000px;}
.h5{height:64.980000px;}
.h10{height:74.676000px;}
.h16{height:84.024000px;}
.h3{height:88.800000px;}
.h2{height:96.930000px;}
.h17{height:120.042000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x42{left:90.217350px;}
.x30{left:91.735050px;}
.x9{left:97.789350px;}
.x3c{left:108.596550px;}
.x43{left:110.545350px;}
.x2c{left:117.285150px;}
.x3d{left:120.355050px;}
.x2f{left:122.609550px;}
.x2b{left:127.305150px;}
.x3e{left:129.589050px;}
.x3f{left:151.094550px;}
.x2e{left:168.266550px;}
.x5{left:202.393650px;}
.xd{left:217.714800px;}
.x2d{left:223.950150px;}
.x39{left:229.610550px;}
.xe{left:235.714800px;}
.x34{left:238.952550px;}
.x32{left:240.977550px;}
.x37{left:242.044050px;}
.x3a{left:247.579050px;}
.x36{left:249.361050px;}
.x3b{left:251.818050px;}
.x31{left:253.816050px;}
.x33{left:255.341550px;}
.xf{left:257.259150px;}
.x38{left:264.400050px;}
.x35{left:270.704550px;}
.x11{left:278.805150px;}
.x4{left:296.668050px;}
.x12{left:300.351150px;}
.x15{left:321.897150px;}
.x13{left:330.901650px;}
.x14{left:339.892650px;}
.x2{left:341.175000px;}
.x16{left:361.438650px;}
.x1{left:365.846250px;}
.x17{left:379.434150px;}
.x18{left:400.966650px;}
.x10{left:402.897150px;}
.x19{left:418.962150px;}
.x1a{left:436.957650px;}
.x21{left:445.935150px;}
.x1b{left:454.953150px;}
.x20{left:463.930650px;}
.xa{left:467.716500px;}
.x1c{left:472.948650px;}
.x40{left:478.654500px;}
.xb{left:480.466500px;}
.x22{left:481.926150px;}
.x1d{left:490.944150px;}
.x41{left:493.222500px;}
.x1e{left:508.939650px;}
.x1f{left:526.935150px;}
.x23{left:548.454150px;}
.x6{left:566.395950px;}
.x7{left:574.899900px;}
.x25{left:579.004650px;}
.x26{left:587.995650px;}
.x24{left:607.773150px;}
.x28{left:609.541650px;}
.x27{left:627.537150px;}
.x8{left:645.812250px;}
.x29{left:667.078650px;}
.x2a{left:685.074150px;}
.xc{left:786.274200px;}
@media print{
.v6{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:32.016000pt;}
.v5{vertical-align:64.032000pt;}
.ls43{letter-spacing:-2.133333pt;}
.ls28{letter-spacing:-1.973333pt;}
.ls44{letter-spacing:-1.866667pt;}
.ls56{letter-spacing:-1.578667pt;}
.ls42{letter-spacing:-1.493333pt;}
.ls45{letter-spacing:-1.440000pt;}
.ls30{letter-spacing:-1.386667pt;}
.ls4a{letter-spacing:-1.200000pt;}
.ls6c{letter-spacing:-1.024000pt;}
.ls4b{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.906667pt;}
.ls29{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls6e{letter-spacing:-0.682667pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.533333pt;}
.ls69{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls6d{letter-spacing:-0.341333pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls59{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls57{letter-spacing:-0.170667pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls5a{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017067pt;}
.ls5b{letter-spacing:0.021333pt;}
.ls27{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.053333pt;}
.ls50{letter-spacing:0.080000pt;}
.ls66{letter-spacing:0.085333pt;}
.ls47{letter-spacing:0.101333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.133333pt;}
.ls70{letter-spacing:0.149333pt;}
.lsb{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.170667pt;}
.ls53{letter-spacing:0.186667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls39{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.293333pt;}
.ls5e{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.341333pt;}
.ls19{letter-spacing:0.346667pt;}
.ls0{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.373333pt;}
.ls65{letter-spacing:0.384000pt;}
.ls51{letter-spacing:0.400000pt;}
.ls6f{letter-spacing:0.422400pt;}
.ls15{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.448000pt;}
.ls4f{letter-spacing:0.453333pt;}
.ls55{letter-spacing:0.469333pt;}
.ls17{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.490667pt;}
.ls23{letter-spacing:0.506667pt;}
.ls31{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls5c{letter-spacing:0.554667pt;}
.ls24{letter-spacing:0.560000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls5f{letter-spacing:0.597333pt;}
.ls52{letter-spacing:0.613333pt;}
.lsc{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.666667pt;}
.ls61{letter-spacing:0.682667pt;}
.ls14{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls60{letter-spacing:0.810667pt;}
.ls4d{letter-spacing:0.826667pt;}
.lsa{letter-spacing:0.853333pt;}
.ls54{letter-spacing:0.896000pt;}
.ls34{letter-spacing:0.906667pt;}
.ls3a{letter-spacing:0.933333pt;}
.ls6b{letter-spacing:0.938667pt;}
.ls25{letter-spacing:0.960000pt;}
.ls67{letter-spacing:0.981333pt;}
.ls38{letter-spacing:1.013333pt;}
.ls6a{letter-spacing:1.024000pt;}
.ls3e{letter-spacing:1.066667pt;}
.ls32{letter-spacing:1.104000pt;}
.ls36{letter-spacing:1.120000pt;}
.ls48{letter-spacing:1.162667pt;}
.ls3c{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.194667pt;}
.ls41{letter-spacing:1.200000pt;}
.ls2b{letter-spacing:1.226667pt;}
.ls3b{letter-spacing:1.248000pt;}
.ls37{letter-spacing:1.280000pt;}
.ls35{letter-spacing:1.333333pt;}
.ls33{letter-spacing:1.349333pt;}
.ls16{letter-spacing:1.520000pt;}
.ls49{letter-spacing:1.546667pt;}
.ls68{letter-spacing:1.578667pt;}
.ls3d{letter-spacing:1.626667pt;}
.ls3f{letter-spacing:315.984000pt;}
.ws39{word-spacing:-53.333333pt;}
.ws97{word-spacing:-42.666667pt;}
.ws0{word-spacing:-29.653333pt;}
.ws15{word-spacing:-17.920000pt;}
.ws73{word-spacing:-13.466667pt;}
.ws60{word-spacing:-13.440000pt;}
.ws74{word-spacing:-13.386667pt;}
.ws6a{word-spacing:-13.333333pt;}
.ws86{word-spacing:-13.226667pt;}
.ws3b{word-spacing:-13.173333pt;}
.ws87{word-spacing:-12.960000pt;}
.ws3a{word-spacing:-12.906667pt;}
.ws5f{word-spacing:-12.853333pt;}
.ws5e{word-spacing:-12.826667pt;}
.ws38{word-spacing:-12.800000pt;}
.ws8b{word-spacing:-12.373333pt;}
.ws76{word-spacing:-12.144000pt;}
.ws7e{word-spacing:-11.520000pt;}
.ws4{word-spacing:-10.257067pt;}
.ws3{word-spacing:-10.240000pt;}
.ws1{word-spacing:-7.462400pt;}
.ws2{word-spacing:-5.969920pt;}
.ws89{word-spacing:-3.893333pt;}
.ws6{word-spacing:-1.973333pt;}
.ws23{word-spacing:-1.920000pt;}
.ws1a{word-spacing:-1.866667pt;}
.ws42{word-spacing:-1.813333pt;}
.ws69{word-spacing:-1.776000pt;}
.ws4f{word-spacing:-1.760000pt;}
.ws83{word-spacing:-1.653333pt;}
.ws62{word-spacing:-1.600000pt;}
.wsb6{word-spacing:-1.578667pt;}
.ws21{word-spacing:-1.546667pt;}
.wsc{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.440000pt;}
.ws96{word-spacing:-1.408000pt;}
.ws16{word-spacing:-1.386667pt;}
.ws1e{word-spacing:-1.333333pt;}
.wsa0{word-spacing:-1.322667pt;}
.ws63{word-spacing:-1.280000pt;}
.ws98{word-spacing:-1.237333pt;}
.ws31{word-spacing:-1.226667pt;}
.wsaf{word-spacing:-1.194667pt;}
.ws17{word-spacing:-1.173333pt;}
.wsae{word-spacing:-1.152000pt;}
.ws5c{word-spacing:-1.120000pt;}
.wsb3{word-spacing:-1.109333pt;}
.ws34{word-spacing:-1.066667pt;}
.wsc2{word-spacing:-1.024000pt;}
.ws29{word-spacing:-1.013333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws36{word-spacing:-0.906667pt;}
.ws9a{word-spacing:-0.896000pt;}
.ws4e{word-spacing:-0.853333pt;}
.wsa7{word-spacing:-0.810667pt;}
.ws22{word-spacing:-0.800000pt;}
.wsb0{word-spacing:-0.768000pt;}
.ws4d{word-spacing:-0.746667pt;}
.ws48{word-spacing:-0.693333pt;}
.ws8d{word-spacing:-0.682667pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.597333pt;}
.ws52{word-spacing:-0.586667pt;}
.wsb9{word-spacing:-0.554667pt;}
.ws49{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.512000pt;}
.ws2a{word-spacing:-0.480000pt;}
.ws94{word-spacing:-0.469333pt;}
.ws33{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.384000pt;}
.ws32{word-spacing:-0.373333pt;}
.wsac{word-spacing:-0.341333pt;}
.ws53{word-spacing:-0.320000pt;}
.wsbf{word-spacing:-0.298667pt;}
.ws46{word-spacing:-0.266667pt;}
.wsa9{word-spacing:-0.256000pt;}
.ws6b{word-spacing:-0.213333pt;}
.wsbc{word-spacing:-0.170667pt;}
.ws3f{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws47{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.085333pt;}
.ws51{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsba{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.wsb1{word-spacing:0.085333pt;}
.ws5a{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.128000pt;}
.ws6c{word-spacing:0.160000pt;}
.ws90{word-spacing:0.170667pt;}
.ws19{word-spacing:0.213333pt;}
.ws26{word-spacing:0.266667pt;}
.ws91{word-spacing:0.298667pt;}
.ws37{word-spacing:0.320000pt;}
.wse{word-spacing:0.341333pt;}
.ws2e{word-spacing:0.373333pt;}
.wsaa{word-spacing:0.384000pt;}
.ws11{word-spacing:0.426667pt;}
.wsc3{word-spacing:0.469333pt;}
.wsf{word-spacing:0.512000pt;}
.ws50{word-spacing:0.533333pt;}
.ws6e{word-spacing:0.586667pt;}
.ws93{word-spacing:0.597333pt;}
.ws10{word-spacing:0.640000pt;}
.wsbb{word-spacing:0.682667pt;}
.ws57{word-spacing:0.693333pt;}
.wsa{word-spacing:0.725333pt;}
.ws59{word-spacing:0.746667pt;}
.wsb7{word-spacing:0.768000pt;}
.ws27{word-spacing:0.800000pt;}
.wsb4{word-spacing:0.810667pt;}
.ws20{word-spacing:0.853333pt;}
.ws99{word-spacing:0.896000pt;}
.ws88{word-spacing:0.906667pt;}
.ws9{word-spacing:0.938667pt;}
.ws3d{word-spacing:0.960000pt;}
.ws9f{word-spacing:0.981333pt;}
.ws72{word-spacing:1.013333pt;}
.ws8{word-spacing:1.024000pt;}
.ws28{word-spacing:1.066667pt;}
.ws9c{word-spacing:1.109333pt;}
.ws6d{word-spacing:1.120000pt;}
.ws95{word-spacing:1.152000pt;}
.ws30{word-spacing:1.173333pt;}
.ws9e{word-spacing:1.194667pt;}
.ws85{word-spacing:1.200000pt;}
.ws5d{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.237333pt;}
.ws1b{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.333333pt;}
.wsc1{word-spacing:1.365333pt;}
.ws1d{word-spacing:1.386667pt;}
.wsb5{word-spacing:1.408000pt;}
.ws56{word-spacing:1.440000pt;}
.wsa1{word-spacing:1.450667pt;}
.ws2c{word-spacing:1.493333pt;}
.wsa2{word-spacing:1.536000pt;}
.ws4c{word-spacing:1.546667pt;}
.ws8c{word-spacing:1.578667pt;}
.ws43{word-spacing:1.600000pt;}
.ws92{word-spacing:1.621333pt;}
.ws1c{word-spacing:1.653333pt;}
.wsa5{word-spacing:1.664000pt;}
.ws41{word-spacing:1.706667pt;}
.ws2d{word-spacing:1.760000pt;}
.ws54{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws35{word-spacing:1.920000pt;}
.ws3e{word-spacing:1.973333pt;}
.ws58{word-spacing:2.026667pt;}
.wsa3{word-spacing:2.048000pt;}
.ws3c{word-spacing:2.080000pt;}
.wsa8{word-spacing:2.090667pt;}
.ws4b{word-spacing:2.133333pt;}
.ws18{word-spacing:2.186667pt;}
.ws8e{word-spacing:2.218667pt;}
.ws82{word-spacing:2.240000pt;}
.ws8f{word-spacing:2.261333pt;}
.ws44{word-spacing:2.293333pt;}
.wsb8{word-spacing:2.304000pt;}
.ws45{word-spacing:2.346667pt;}
.wsc0{word-spacing:2.389333pt;}
.ws5b{word-spacing:2.400000pt;}
.wsab{word-spacing:2.432000pt;}
.ws8a{word-spacing:2.453333pt;}
.wsc4{word-spacing:2.474667pt;}
.ws64{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.517333pt;}
.ws61{word-spacing:2.613333pt;}
.ws6f{word-spacing:2.826667pt;}
.ws71{word-spacing:2.880000pt;}
.wsbd{word-spacing:2.944000pt;}
.ws70{word-spacing:2.986667pt;}
.wsa6{word-spacing:3.029333pt;}
.ws55{word-spacing:3.040000pt;}
.ws2f{word-spacing:3.786667pt;}
.ws84{word-spacing:3.893333pt;}
.wsad{word-spacing:3.925333pt;}
.ws75{word-spacing:131.520000pt;}
.ws78{word-spacing:187.344000pt;}
.ws7a{word-spacing:198.864000pt;}
.ws79{word-spacing:222.672000pt;}
.ws7d{word-spacing:226.896000pt;}
.ws80{word-spacing:232.032000pt;}
.ws7c{word-spacing:255.552000pt;}
.ws81{word-spacing:259.296000pt;}
.ws65{word-spacing:300.384000pt;}
.ws77{word-spacing:314.400000pt;}
.ws68{word-spacing:322.704000pt;}
.ws67{word-spacing:351.216000pt;}
.ws7f{word-spacing:609.456000pt;}
.ws66{word-spacing:642.720000pt;}
.ws7b{word-spacing:763.632000pt;}
.ws14{word-spacing:1955.369067pt;}
._6{margin-left:-2570.079467pt;}
._35{margin-left:-11.339733pt;}
._34{margin-left:-9.682133pt;}
._36{margin-left:-8.133333pt;}
._7{margin-left:-5.920000pt;}
._3{margin-left:-4.144000pt;}
._2{margin-left:-2.762667pt;}
._0{margin-left:-1.381333pt;}
._4{width:1.386667pt;}
._5{width:2.752533pt;}
._1{width:9.669333pt;}
._33{width:12.608000pt;}
._2f{width:67.632000pt;}
._2d{width:97.632000pt;}
._32{width:120.480000pt;}
._2e{width:124.272000pt;}
._31{width:132.000000pt;}
._c{width:145.968000pt;}
._2c{width:153.168000pt;}
._30{width:155.712000pt;}
._24{width:162.960000pt;}
._f{width:166.848000pt;}
._27{width:168.624000pt;}
._17{width:177.717333pt;}
._1f{width:184.208000pt;}
._28{width:193.536000pt;}
._10{width:201.792000pt;}
._20{width:232.752000pt;}
._11{width:242.544000pt;}
._1e{width:245.856000pt;}
._25{width:253.248000pt;}
._a{width:259.200000pt;}
._d{width:262.080000pt;}
._e{width:269.088000pt;}
._21{width:277.909333pt;}
._1c{width:281.472000pt;}
._16{width:284.976000pt;}
._14{width:292.992000pt;}
._22{width:298.800000pt;}
._15{width:305.712000pt;}
._18{width:321.840000pt;}
._13{width:328.512000pt;}
._12{width:331.584000pt;}
._19{width:333.360000pt;}
._1d{width:347.328000pt;}
._b{width:355.008000pt;}
._2b{width:400.368000pt;}
._23{width:410.064000pt;}
._1b{width:429.936000pt;}
._26{width:434.256000pt;}
._1a{width:452.496000pt;}
._9{width:471.504000pt;}
._8{width:564.000000pt;}
._29{width:579.744000pt;}
._2a{width:648.528000pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:120.000000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:30.236267pt;}
.y3e{bottom:52.629067pt;}
.y117{bottom:64.230000pt;}
.y39{bottom:70.926400pt;}
.y35{bottom:71.055067pt;}
.yb7{bottom:71.058667pt;}
.y13e{bottom:71.324667pt;}
.y77{bottom:71.335333pt;}
.yaa{bottom:71.362000pt;}
.y187{bottom:73.266000pt;}
.yda{bottom:76.956267pt;}
.ydb{bottom:76.968267pt;}
.ybd{bottom:77.016267pt;}
.y118{bottom:80.226000pt;}
.y38{bottom:82.926400pt;}
.y34{bottom:83.055067pt;}
.y13d{bottom:83.324667pt;}
.y186{bottom:85.266000pt;}
.y76{bottom:87.335333pt;}
.ya9{bottom:87.362000pt;}
.yb6{bottom:88.168000pt;}
.yba{bottom:88.902933pt;}
.y37{bottom:94.926400pt;}
.y33{bottom:95.055067pt;}
.y13c{bottom:95.324667pt;}
.y185{bottom:97.266000pt;}
.y116{bottom:98.622000pt;}
.ybc{bottom:100.680267pt;}
.y75{bottom:103.335333pt;}
.ya8{bottom:103.362000pt;}
.y36{bottom:106.926400pt;}
.y32{bottom:107.055067pt;}
.y13b{bottom:107.324667pt;}
.y184{bottom:109.266000pt;}
.y115{bottom:117.018000pt;}
.y13a{bottom:118.972667pt;}
.y31{bottom:119.055067pt;}
.y74{bottom:119.335333pt;}
.ya7{bottom:119.362000pt;}
.y183{bottom:121.266000pt;}
.y3f{bottom:128.268533pt;}
.y139{bottom:130.620667pt;}
.y182{bottom:133.266000pt;}
.y30{bottom:134.834667pt;}
.y73{bottom:135.335333pt;}
.ya6{bottom:135.362000pt;}
.ye6{bottom:135.388667pt;}
.y114{bottom:135.414000pt;}
.y138{bottom:142.268667pt;}
.y181{bottom:145.266000pt;}
.y3d{bottom:149.610667pt;}
.y72{bottom:151.335333pt;}
.ya5{bottom:151.362000pt;}
.yb2{bottom:151.388667pt;}
.y113{bottom:153.810000pt;}
.y137{bottom:153.916667pt;}
.y180{bottom:157.266000pt;}
.y3c{bottom:161.610667pt;}
.y136{bottom:165.564667pt;}
.y71{bottom:167.335333pt;}
.ya4{bottom:167.362000pt;}
.y17f{bottom:169.266000pt;}
.y112{bottom:172.206000pt;}
.y3b{bottom:173.610667pt;}
.y135{bottom:177.212667pt;}
.y17e{bottom:181.266000pt;}
.y70{bottom:183.335333pt;}
.ya3{bottom:183.362000pt;}
.ycb{bottom:185.448267pt;}
.y134{bottom:188.860667pt;}
.ybf{bottom:189.612267pt;}
.ybe{bottom:189.624267pt;}
.y111{bottom:190.602000pt;}
.yc4{bottom:191.688267pt;}
.y17d{bottom:193.266000pt;}
.yde{bottom:193.620267pt;}
.yc8{bottom:194.328267pt;}
.ye3{bottom:194.604267pt;}
.y3a{bottom:195.370800pt;}
.y6f{bottom:199.335333pt;}
.ya2{bottom:199.362000pt;}
.y133{bottom:200.508667pt;}
.y17c{bottom:205.266000pt;}
.yc9{bottom:207.660267pt;}
.yc0{bottom:208.272267pt;}
.y110{bottom:208.998000pt;}
.ydc{bottom:210.876267pt;}
.y132{bottom:212.156667pt;}
.y6e{bottom:215.335333pt;}
.ya1{bottom:215.362000pt;}
.y119{bottom:215.388667pt;}
.y17b{bottom:217.266000pt;}
.y131{bottom:223.804667pt;}
.y10f{bottom:227.394000pt;}
.y17a{bottom:229.266000pt;}
.ye4{bottom:229.440267pt;}
.y6d{bottom:231.335333pt;}
.ya0{bottom:231.362000pt;}
.ye7{bottom:231.388667pt;}
.ycc{bottom:232.344267pt;}
.y130{bottom:235.452667pt;}
.yc7{bottom:240.120267pt;}
.y179{bottom:241.266000pt;}
.y10e{bottom:245.790000pt;}
.y12f{bottom:247.100667pt;}
.y6c{bottom:247.335333pt;}
.y9f{bottom:247.362000pt;}
.ycd{bottom:248.376267pt;}
.y178{bottom:253.266000pt;}
.y12e{bottom:258.748667pt;}
.y10d{bottom:261.786000pt;}
.y6b{bottom:263.335333pt;}
.y9e{bottom:263.362000pt;}
.y177{bottom:265.266000pt;}
.y12d{bottom:270.396667pt;}
.y176{bottom:277.266000pt;}
.y6a{bottom:279.335333pt;}
.yae{bottom:279.362000pt;}
.y10c{bottom:280.182000pt;}
.y12c{bottom:282.044667pt;}
.yce{bottom:283.476267pt;}
.yca{bottom:286.392267pt;}
.yc5{bottom:287.628267pt;}
.y175{bottom:289.266000pt;}
.y12b{bottom:293.692667pt;}
.y69{bottom:295.335333pt;}
.yad{bottom:295.362000pt;}
.y9d{bottom:295.388667pt;}
.y10b{bottom:298.578000pt;}
.y174{bottom:301.266000pt;}
.y12a{bottom:305.340667pt;}
.y68{bottom:311.335333pt;}
.yac{bottom:311.362000pt;}
.y173{bottom:313.266000pt;}
.y10a{bottom:316.974000pt;}
.y129{bottom:316.988667pt;}
.y172{bottom:325.266000pt;}
.y67{bottom:327.335333pt;}
.yab{bottom:327.362000pt;}
.y128{bottom:328.636667pt;}
.y109{bottom:335.370000pt;}
.y171{bottom:337.266000pt;}
.y127{bottom:340.284667pt;}
.y66{bottom:343.335333pt;}
.y9c{bottom:343.362000pt;}
.y170{bottom:349.266000pt;}
.y108{bottom:351.366000pt;}
.y126{bottom:351.932667pt;}
.y65{bottom:359.335333pt;}
.y9b{bottom:359.362000pt;}
.y21{bottom:360.544800pt;}
.y2f{bottom:360.552400pt;}
.y16f{bottom:361.266000pt;}
.y125{bottom:363.580667pt;}
.y107{bottom:369.762000pt;}
.y20{bottom:371.212800pt;}
.y2e{bottom:372.552400pt;}
.y16e{bottom:373.266000pt;}
.y124{bottom:375.228667pt;}
.y64{bottom:375.335333pt;}
.y9a{bottom:375.362000pt;}
.y1f{bottom:381.880800pt;}
.y2d{bottom:384.552400pt;}
.y16d{bottom:385.266000pt;}
.y123{bottom:386.876667pt;}
.y106{bottom:388.158000pt;}
.y63{bottom:391.335333pt;}
.y99{bottom:391.362000pt;}
.y1e{bottom:392.548800pt;}
.y2c{bottom:396.552400pt;}
.y16c{bottom:397.266000pt;}
.y122{bottom:398.524667pt;}
.y1d{bottom:403.216800pt;}
.y105{bottom:404.154000pt;}
.y62{bottom:407.335333pt;}
.y98{bottom:407.362000pt;}
.y2b{bottom:408.552400pt;}
.y16b{bottom:409.266000pt;}
.y121{bottom:410.172667pt;}
.ybb{bottom:417.929600pt;}
.y2a{bottom:420.552400pt;}
.y16a{bottom:421.266000pt;}
.y1c{bottom:421.444800pt;}
.y120{bottom:421.820667pt;}
.y104{bottom:422.550000pt;}
.y61{bottom:423.335333pt;}
.y97{bottom:423.362000pt;}
.y29{bottom:432.552400pt;}
.y169{bottom:433.266000pt;}
.y11f{bottom:433.468667pt;}
.y60{bottom:439.335333pt;}
.y96{bottom:439.362000pt;}
.y103{bottom:440.946000pt;}
.y28{bottom:444.552400pt;}
.y11e{bottom:445.116667pt;}
.y168{bottom:445.266000pt;}
.y5f{bottom:455.335333pt;}
.y95{bottom:455.362000pt;}
.y27{bottom:456.552400pt;}
.y11d{bottom:456.764667pt;}
.y167{bottom:457.266000pt;}
.y102{bottom:459.342000pt;}
.y11c{bottom:468.412667pt;}
.y26{bottom:468.552400pt;}
.y166{bottom:469.266000pt;}
.y5e{bottom:471.335333pt;}
.y94{bottom:471.362000pt;}
.ycf{bottom:473.772267pt;}
.y101{bottom:477.738000pt;}
.y11b{bottom:480.060667pt;}
.y25{bottom:480.552400pt;}
.y165{bottom:481.266000pt;}
.y5d{bottom:487.335333pt;}
.y93{bottom:487.362000pt;}
.y11a{bottom:491.708667pt;}
.y24{bottom:492.552400pt;}
.y164{bottom:493.266000pt;}
.y100{bottom:496.134000pt;}
.y5c{bottom:503.335333pt;}
.y92{bottom:503.362000pt;}
.y23{bottom:504.552400pt;}
.y163{bottom:505.266000pt;}
.yff{bottom:514.530000pt;}
.y162{bottom:517.266000pt;}
.y5b{bottom:519.335333pt;}
.y91{bottom:519.362000pt;}
.yb9{bottom:519.388667pt;}
.y22{bottom:524.111467pt;}
.y161{bottom:529.266000pt;}
.yfe{bottom:532.926000pt;}
.y5a{bottom:535.335333pt;}
.y90{bottom:535.362000pt;}
.yb8{bottom:535.388667pt;}
.y160{bottom:541.266000pt;}
.ye0{bottom:541.608267pt;}
.ydd{bottom:545.676267pt;}
.yd0{bottom:550.224267pt;}
.yfd{bottom:551.322000pt;}
.y59{bottom:551.335333pt;}
.y8f{bottom:551.362000pt;}
.yd1{bottom:551.736267pt;}
.ydf{bottom:552.192267pt;}
.y15f{bottom:553.266000pt;}
.yb5{bottom:556.622933pt;}
.y15e{bottom:565.266000pt;}
.y58{bottom:567.335333pt;}
.y8e{bottom:567.362000pt;}
.yfc{bottom:569.718000pt;}
.yb4{bottom:569.956267pt;}
.y1b{bottom:573.330400pt;}
.yf{bottom:573.489467pt;}
.y15d{bottom:577.266000pt;}
.y57{bottom:583.335333pt;}
.y8d{bottom:583.362000pt;}
.ye{bottom:584.157467pt;}
.y1a{bottom:585.330400pt;}
.yb3{bottom:587.065600pt;}
.yfb{bottom:588.114000pt;}
.y15c{bottom:589.266000pt;}
.ye1{bottom:592.656267pt;}
.yd{bottom:594.825467pt;}
.y19{bottom:597.330400pt;}
.y56{bottom:599.335333pt;}
.y8c{bottom:599.362000pt;}
.yd2{bottom:599.544267pt;}
.y15b{bottom:601.266000pt;}
.yc6{bottom:601.788267pt;}
.yc1{bottom:601.800267pt;}
.yc{bottom:605.493467pt;}
.yfa{bottom:606.510000pt;}
.y18{bottom:609.330400pt;}
.y15a{bottom:613.266000pt;}
.y55{bottom:615.335333pt;}
.y8b{bottom:615.362000pt;}
.yb{bottom:616.161467pt;}
.y17{bottom:621.330400pt;}
.yf9{bottom:624.906000pt;}
.y159{bottom:625.266000pt;}
.y54{bottom:631.335333pt;}
.y8a{bottom:631.362000pt;}
.y16{bottom:633.330400pt;}
.ya{bottom:634.389467pt;}
.y158{bottom:637.266000pt;}
.yf8{bottom:643.302000pt;}
.y15{bottom:645.330400pt;}
.y53{bottom:647.335333pt;}
.y89{bottom:647.362000pt;}
.y157{bottom:649.266000pt;}
.y14{bottom:657.330400pt;}
.y156{bottom:661.266000pt;}
.yf7{bottom:661.698000pt;}
.y52{bottom:663.335333pt;}
.y88{bottom:663.362000pt;}
.y13{bottom:669.330400pt;}
.y155{bottom:673.266000pt;}
.y51{bottom:679.335333pt;}
.y87{bottom:679.362000pt;}
.yb1{bottom:679.388667pt;}
.yf6{bottom:680.094000pt;}
.y12{bottom:681.330400pt;}
.y154{bottom:685.266000pt;}
.y11{bottom:693.330400pt;}
.y50{bottom:695.335333pt;}
.y86{bottom:695.362000pt;}
.yb0{bottom:695.388667pt;}
.y153{bottom:697.266000pt;}
.yf5{bottom:698.490000pt;}
.y152{bottom:709.266000pt;}
.y4f{bottom:711.335333pt;}
.y85{bottom:711.362000pt;}
.y10{bottom:712.889467pt;}
.yf4{bottom:716.886000pt;}
.y151{bottom:721.266000pt;}
.yd7{bottom:726.672267pt;}
.y4e{bottom:727.335333pt;}
.y84{bottom:727.362000pt;}
.yd5{bottom:732.636267pt;}
.y150{bottom:733.266000pt;}
.yf3{bottom:735.282000pt;}
.yd8{bottom:735.756267pt;}
.yd4{bottom:740.772267pt;}
.y4d{bottom:743.335333pt;}
.y83{bottom:743.362000pt;}
.y14f{bottom:745.266000pt;}
.yd3{bottom:745.572267pt;}
.yc2{bottom:745.608267pt;}
.yf2{bottom:753.678000pt;}
.y14e{bottom:757.266000pt;}
.y4c{bottom:759.335333pt;}
.y82{bottom:759.362000pt;}
.y9{bottom:762.108667pt;}
.ye2{bottom:766.896267pt;}
.yd6{bottom:768.828267pt;}
.y14d{bottom:769.266000pt;}
.ye5{bottom:769.716267pt;}
.yf1{bottom:772.074000pt;}
.yc3{bottom:773.076267pt;}
.y4b{bottom:775.335333pt;}
.y81{bottom:775.362000pt;}
.y8{bottom:778.994000pt;}
.y14c{bottom:781.266000pt;}
.yf0{bottom:790.470000pt;}
.y4a{bottom:791.335333pt;}
.y80{bottom:791.362000pt;}
.y14b{bottom:793.266000pt;}
.y7{bottom:796.334533pt;}
.y14a{bottom:805.266000pt;}
.y49{bottom:807.335333pt;}
.y7f{bottom:807.362000pt;}
.yef{bottom:808.866000pt;}
.y149{bottom:817.266000pt;}
.y48{bottom:823.335333pt;}
.y7e{bottom:823.362000pt;}
.y6{bottom:823.673067pt;}
.yee{bottom:827.262000pt;}
.y148{bottom:829.266000pt;}
.y47{bottom:839.335333pt;}
.y7d{bottom:839.362000pt;}
.y147{bottom:841.266000pt;}
.y5{bottom:843.673067pt;}
.yed{bottom:845.658000pt;}
.y146{bottom:853.266000pt;}
.y46{bottom:855.335333pt;}
.y7c{bottom:855.362000pt;}
.yec{bottom:864.054000pt;}
.y145{bottom:865.266000pt;}
.y45{bottom:871.335333pt;}
.y7b{bottom:871.362000pt;}
.yaf{bottom:871.388667pt;}
.y144{bottom:877.266000pt;}
.yeb{bottom:882.448533pt;}
.y44{bottom:887.335333pt;}
.y7a{bottom:887.362000pt;}
.y143{bottom:889.266000pt;}
.y3{bottom:891.826533pt;}
.yd9{bottom:896.988267pt;}
.yea{bottom:898.448533pt;}
.y142{bottom:901.266000pt;}
.y43{bottom:903.335333pt;}
.y79{bottom:903.362000pt;}
.y141{bottom:913.266000pt;}
.ye9{bottom:914.448533pt;}
.y78{bottom:919.362000pt;}
.y140{bottom:925.266000pt;}
.ye8{bottom:930.448533pt;}
.y42{bottom:935.362000pt;}
.y13f{bottom:937.266000pt;}
.y2{bottom:955.626800pt;}
.y1{bottom:987.126800pt;}
.y40{bottom:992.054933pt;}
.y4{bottom:1023.611600pt;}
.h8{height:18.357504pt;}
.hf{height:23.722667pt;}
.ha{height:26.656000pt;}
.h4{height:27.477333pt;}
.h12{height:31.189333pt;}
.h9{height:31.488000pt;}
.hb{height:33.189333pt;}
.h14{height:35.088000pt;}
.h18{height:35.424000pt;}
.hd{height:37.930667pt;}
.he{height:38.933333pt;}
.h11{height:38.986667pt;}
.h13{height:39.040000pt;}
.h15{height:42.672000pt;}
.hc{height:46.080000pt;}
.h7{height:47.413333pt;}
.h6{height:52.138667pt;}
.h5{height:57.760000pt;}
.h10{height:66.378667pt;}
.h16{height:74.688000pt;}
.h3{height:78.933333pt;}
.h2{height:86.160000pt;}
.h17{height:106.704000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x42{left:80.193200pt;}
.x30{left:81.542267pt;}
.x9{left:86.923867pt;}
.x3c{left:96.530267pt;}
.x43{left:98.262533pt;}
.x2c{left:104.253467pt;}
.x3d{left:106.982267pt;}
.x2f{left:108.986267pt;}
.x2b{left:113.160133pt;}
.x3e{left:115.190267pt;}
.x3f{left:134.306267pt;}
.x2e{left:149.570267pt;}
.x5{left:179.905467pt;}
.xd{left:193.524267pt;}
.x2d{left:199.066800pt;}
.x39{left:204.098267pt;}
.xe{left:209.524267pt;}
.x34{left:212.402267pt;}
.x32{left:214.202267pt;}
.x37{left:215.150267pt;}
.x3a{left:220.070267pt;}
.x36{left:221.654267pt;}
.x3b{left:223.838267pt;}
.x31{left:225.614267pt;}
.x33{left:226.970267pt;}
.xf{left:228.674800pt;}
.x38{left:235.022267pt;}
.x35{left:240.626267pt;}
.x11{left:247.826800pt;}
.x4{left:263.704933pt;}
.x12{left:266.978800pt;}
.x15{left:286.130800pt;}
.x13{left:294.134800pt;}
.x14{left:302.126800pt;}
.x2{left:303.266667pt;}
.x16{left:321.278800pt;}
.x1{left:325.196667pt;}
.x17{left:337.274800pt;}
.x18{left:356.414800pt;}
.x10{left:358.130800pt;}
.x19{left:372.410800pt;}
.x1a{left:388.406800pt;}
.x21{left:396.386800pt;}
.x1b{left:404.402800pt;}
.x20{left:412.382800pt;}
.xa{left:415.748000pt;}
.x1c{left:420.398800pt;}
.x40{left:425.470667pt;}
.xb{left:427.081333pt;}
.x22{left:428.378800pt;}
.x1d{left:436.394800pt;}
.x41{left:438.420000pt;}
.x1e{left:452.390800pt;}
.x1f{left:468.386800pt;}
.x23{left:487.514800pt;}
.x6{left:503.463067pt;}
.x7{left:511.022133pt;}
.x25{left:514.670800pt;}
.x26{left:522.662800pt;}
.x24{left:540.242800pt;}
.x28{left:541.814800pt;}
.x27{left:557.810800pt;}
.x8{left:574.055333pt;}
.x29{left:592.958800pt;}
.x2a{left:608.954800pt;}
.xc{left:698.910400pt;}
}




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