
    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_49b8f1984b0c1bc2eda7b42e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_b5e5adc2cf7e602b026b65ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992188;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_f42a065f9ff0433ae896a9fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992188;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_84453738f2767536ecd123de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_12a36c2ed462fedfb6880370.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_fcb9171766031b272bd9c22f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_b6fceb12ab7942e7f4ea223e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_4be41fa7c4919fc47c262248.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_72c868f55381abe96f41be57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765000;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_a7c57e073bc5c3852ec706e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;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_2694f603356d609b456ffbd5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992188;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_6188d3efeff05cacca81e0c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.799000;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_10dd33d356d86c2490630827.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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_2694f603356d609b456ffbd5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.992188;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_3fdc928e33a48e9fb7f127c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.989000;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_da4a52c4190826d37accb574.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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);}
.v2{vertical-align:-17.965200px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls26{letter-spacing:-5.520000px;}
.ls32{letter-spacing:-5.040000px;}
.ls25{letter-spacing:-4.752000px;}
.ls13{letter-spacing:-4.272000px;}
.ls2b{letter-spacing:-3.888000px;}
.ls11{letter-spacing:-3.552000px;}
.ls14{letter-spacing:-3.168000px;}
.ls29{letter-spacing:-3.120000px;}
.ls10{letter-spacing:-2.544000px;}
.ls23{letter-spacing:-2.448000px;}
.ls1e{letter-spacing:-2.352000px;}
.ls1b{letter-spacing:-2.304000px;}
.ls2a{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-2.064000px;}
.ls1f{letter-spacing:-1.920000px;}
.ls30{letter-spacing:-1.728000px;}
.ls31{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.344000px;}
.ls1d{letter-spacing:-1.296000px;}
.ls24{letter-spacing:-1.152000px;}
.ls15{letter-spacing:-1.104000px;}
.ls19{letter-spacing:-1.056000px;}
.ls2f{letter-spacing:-0.912000px;}
.ls12{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.768000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.450000px;}
.ls9{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.132000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.018000px;}
.ls20{letter-spacing:0.096000px;}
.ls21{letter-spacing:0.144000px;}
.lse{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.384000px;}
.ls1a{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.672000px;}
.ls28{letter-spacing:1.728000px;}
.ls3{letter-spacing:5.328000px;}
.ls7{letter-spacing:275.456400px;}
.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;}
}
.ws9e{word-spacing:-15.072000px;}
.ws21{word-spacing:-15.012000px;}
.ws9f{word-spacing:-13.968000px;}
.ws9a{word-spacing:-13.776000px;}
.ws97{word-spacing:-13.680000px;}
.ws99{word-spacing:-12.576000px;}
.ws9c{word-spacing:-12.480000px;}
.ws9d{word-spacing:-12.192000px;}
.ws9b{word-spacing:-12.048000px;}
.ws1{word-spacing:-10.508400px;}
.ws98{word-spacing:-10.176000px;}
.ws65{word-spacing:-10.130400px;}
.wsc8{word-spacing:-6.288000px;}
.wsa2{word-spacing:-5.376000px;}
.ws57{word-spacing:-5.292000px;}
.wsa1{word-spacing:-4.176000px;}
.ws52{word-spacing:-4.158000px;}
.ws6d{word-spacing:-3.348000px;}
.wsa{word-spacing:-2.970000px;}
.ws48{word-spacing:-2.862000px;}
.wscf{word-spacing:-2.784000px;}
.ws33{word-spacing:-2.754000px;}
.ws66{word-spacing:-2.700000px;}
.ws89{word-spacing:-2.646000px;}
.ws77{word-spacing:-2.538000px;}
.wsb6{word-spacing:-2.448000px;}
.ws79{word-spacing:-2.430000px;}
.ws47{word-spacing:-2.322000px;}
.ws3d{word-spacing:-2.214000px;}
.ws35{word-spacing:-2.106000px;}
.ws54{word-spacing:-2.052000px;}
.ws4f{word-spacing:-1.944000px;}
.ws95{word-spacing:-1.920000px;}
.ws63{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.836000px;}
.ws7a{word-spacing:-1.782000px;}
.wsa9{word-spacing:-1.776000px;}
.wsca{word-spacing:-1.680000px;}
.ws70{word-spacing:-1.674000px;}
.ws43{word-spacing:-1.620000px;}
.wsbc{word-spacing:-1.488000px;}
.ws2e{word-spacing:-1.458000px;}
.wsd6{word-spacing:-1.200000px;}
.ws3c{word-spacing:-1.080000px;}
.wsd4{word-spacing:-1.008000px;}
.ws53{word-spacing:-0.972000px;}
.ws2a{word-spacing:-0.864000px;}
.ws62{word-spacing:-0.810000px;}
.ws28{word-spacing:-0.702000px;}
.wsa3{word-spacing:-0.624000px;}
.ws40{word-spacing:-0.594000px;}
.wsd5{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.540000px;}
.wsc6{word-spacing:-0.528000px;}
.ws7c{word-spacing:-0.486000px;}
.ws1f{word-spacing:-0.480000px;}
.wsc2{word-spacing:-0.384000px;}
.ws5a{word-spacing:-0.378000px;}
.wsad{word-spacing:-0.336000px;}
.ws4e{word-spacing:-0.270000px;}
.ws36{word-spacing:-0.216000px;}
.wsd2{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws22{word-spacing:0.054000px;}
.ws96{word-spacing:0.066000px;}
.ws8c{word-spacing:0.108000px;}
.wsae{word-spacing:0.240000px;}
.ws1d{word-spacing:0.270000px;}
.ws23{word-spacing:0.324000px;}
.wsb{word-spacing:0.378000px;}
.ws92{word-spacing:0.450000px;}
.ws94{word-spacing:0.480000px;}
.ws30{word-spacing:0.540000px;}
.wsc5{word-spacing:0.576000px;}
.ws60{word-spacing:0.648000px;}
.ws90{word-spacing:0.702000px;}
.wsb2{word-spacing:0.720000px;}
.ws74{word-spacing:0.756000px;}
.ws56{word-spacing:0.810000px;}
.wsce{word-spacing:0.816000px;}
.wsa6{word-spacing:0.864000px;}
.wsd0{word-spacing:0.912000px;}
.ws75{word-spacing:0.918000px;}
.wsb8{word-spacing:0.960000px;}
.ws8e{word-spacing:1.026000px;}
.wsb0{word-spacing:1.056000px;}
.ws3e{word-spacing:1.080000px;}
.wsac{word-spacing:1.104000px;}
.wsbf{word-spacing:1.152000px;}
.wsc7{word-spacing:1.200000px;}
.ws38{word-spacing:1.242000px;}
.ws6e{word-spacing:1.296000px;}
.wsb9{word-spacing:1.344000px;}
.ws3a{word-spacing:1.404000px;}
.wsd1{word-spacing:1.440000px;}
.wsab{word-spacing:1.584000px;}
.ws37{word-spacing:1.728000px;}
.ws8f{word-spacing:1.782000px;}
.wsc4{word-spacing:1.824000px;}
.wsb7{word-spacing:1.920000px;}
.ws7f{word-spacing:1.944000px;}
.ws27{word-spacing:2.052000px;}
.wsa0{word-spacing:2.064000px;}
.ws6a{word-spacing:2.160000px;}
.wscd{word-spacing:2.208000px;}
.ws86{word-spacing:2.268000px;}
.wsb1{word-spacing:2.304000px;}
.ws3b{word-spacing:2.322000px;}
.wsb4{word-spacing:2.352000px;}
.ws73{word-spacing:2.376000px;}
.wsaa{word-spacing:2.400000px;}
.wsba{word-spacing:2.448000px;}
.ws59{word-spacing:2.538000px;}
.wsa4{word-spacing:2.544000px;}
.ws76{word-spacing:2.646000px;}
.wscb{word-spacing:2.688000px;}
.ws44{word-spacing:2.700000px;}
.wsc0{word-spacing:2.736000px;}
.ws5d{word-spacing:3.024000px;}
.wse{word-spacing:3.078000px;}
.wsc1{word-spacing:3.120000px;}
.ws87{word-spacing:3.132000px;}
.ws69{word-spacing:3.348000px;}
.ws49{word-spacing:3.402000px;}
.ws42{word-spacing:3.456000px;}
.ws14{word-spacing:3.510000px;}
.wsa5{word-spacing:3.552000px;}
.ws50{word-spacing:3.780000px;}
.ws34{word-spacing:3.834000px;}
.ws7d{word-spacing:3.888000px;}
.ws6c{word-spacing:3.942000px;}
.ws1c{word-spacing:3.996000px;}
.wsf{word-spacing:4.050000px;}
.ws78{word-spacing:4.104000px;}
.wsbb{word-spacing:4.176000px;}
.ws32{word-spacing:4.266000px;}
.wsa8{word-spacing:4.272000px;}
.ws15{word-spacing:4.320000px;}
.wsd7{word-spacing:4.368000px;}
.ws72{word-spacing:4.374000px;}
.ws8a{word-spacing:4.698000px;}
.wscc{word-spacing:4.704000px;}
.ws39{word-spacing:4.752000px;}
.ws1e{word-spacing:4.848000px;}
.ws4{word-spacing:4.914000px;}
.ws4d{word-spacing:5.022000px;}
.wsd3{word-spacing:5.040000px;}
.wsc{word-spacing:5.076000px;}
.wsc3{word-spacing:5.280000px;}
.ws3f{word-spacing:5.292000px;}
.ws19{word-spacing:5.400000px;}
.wsbd{word-spacing:5.520000px;}
.ws13{word-spacing:5.562000px;}
.ws31{word-spacing:5.616000px;}
.ws71{word-spacing:5.670000px;}
.ws93{word-spacing:5.712000px;}
.ws18{word-spacing:5.778000px;}
.ws5{word-spacing:6.048000px;}
.ws1b{word-spacing:6.102000px;}
.ws85{word-spacing:6.156000px;}
.ws7{word-spacing:6.480000px;}
.ws68{word-spacing:6.588000px;}
.wsc9{word-spacing:6.672000px;}
.ws6{word-spacing:6.804000px;}
.ws88{word-spacing:6.858000px;}
.ws8{word-spacing:6.912000px;}
.ws17{word-spacing:7.020000px;}
.wsa7{word-spacing:7.104000px;}
.ws1a{word-spacing:7.128000px;}
.wsb5{word-spacing:7.152000px;}
.ws55{word-spacing:7.182000px;}
.ws61{word-spacing:7.344000px;}
.ws5f{word-spacing:7.398000px;}
.ws84{word-spacing:7.452000px;}
.ws26{word-spacing:7.560000px;}
.ws5b{word-spacing:7.776000px;}
.ws81{word-spacing:7.830000px;}
.ws24{word-spacing:7.938000px;}
.ws67{word-spacing:8.046000px;}
.ws12{word-spacing:8.532000px;}
.ws25{word-spacing:8.586000px;}
.ws8d{word-spacing:8.640000px;}
.ws9{word-spacing:8.694000px;}
.ws6b{word-spacing:8.748000px;}
.ws2c{word-spacing:9.018000px;}
.ws7e{word-spacing:9.342000px;}
.wsd{word-spacing:9.504000px;}
.ws6f{word-spacing:9.558000px;}
.ws80{word-spacing:9.666000px;}
.ws4c{word-spacing:9.936000px;}
.ws5c{word-spacing:10.044000px;}
.ws20{word-spacing:10.128000px;}
.ws91{word-spacing:10.368000px;}
.ws5e{word-spacing:10.530000px;}
.ws16{word-spacing:10.638000px;}
.ws2b{word-spacing:11.178000px;}
.ws11{word-spacing:11.286000px;}
.ws41{word-spacing:11.394000px;}
.ws45{word-spacing:11.664000px;}
.wsbe{word-spacing:11.760000px;}
.ws83{word-spacing:12.042000px;}
.ws7b{word-spacing:12.420000px;}
.ws4b{word-spacing:12.474000px;}
.wsaf{word-spacing:13.344000px;}
.ws2d{word-spacing:14.202000px;}
.ws64{word-spacing:14.634000px;}
.ws82{word-spacing:15.066000px;}
.ws51{word-spacing:15.552000px;}
.ws8b{word-spacing:15.660000px;}
.ws2f{word-spacing:16.308000px;}
.ws29{word-spacing:16.524000px;}
.ws58{word-spacing:21.060000px;}
.ws46{word-spacing:28.446000px;}
.wsb3{word-spacing:50.736000px;}
.ws2{word-spacing:105.456000px;}
.ws0{word-spacing:1242.054000px;}
._14{margin-left:-27.324000px;}
._8{margin-left:-20.041200px;}
._e{margin-left:-15.044400px;}
._d{margin-left:-10.751400px;}
._1d{margin-left:-5.781000px;}
._11{margin-left:-4.772400px;}
._7{margin-left:-3.300000px;}
._3{margin-left:-1.414800px;}
._0{width:1.344600px;}
._4{width:2.629800px;}
._5{width:4.530600px;}
._1{width:6.021000px;}
._6{width:7.824600px;}
._b{width:9.517800px;}
._a{width:10.584000px;}
._9{width:11.988000px;}
._f{width:13.440600px;}
._12{width:16.065000px;}
._2{width:17.528400px;}
._13{width:18.694800px;}
._1a{width:20.159400px;}
._20{width:26.064000px;}
._1f{width:27.311400px;}
._1e{width:28.702800px;}
._18{width:29.903400px;}
._1b{width:31.017600px;}
._19{width:32.716800px;}
._1c{width:36.316800px;}
._16{width:54.624000px;}
._15{width:57.407400px;}
._17{width:58.637400px;}
._10{width:943.429800px;}
._c{width:1361.538600px;}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:17.301750px;}
.y3a{bottom:46.967550px;}
.y3b{bottom:47.167950px;}
.y98{bottom:47.171700px;}
.y97{bottom:47.916000px;}
.y34{bottom:59.074650px;}
.y38{bottom:59.194650px;}
.y33{bottom:77.074650px;}
.y37{bottom:77.194650px;}
.yc6{bottom:92.268750px;}
.y67{bottom:92.280750px;}
.y96{bottom:92.285250px;}
.y137{bottom:92.288250px;}
.y10f{bottom:92.291250px;}
.yf1{bottom:92.298750px;}
.y32{bottom:95.074650px;}
.y36{bottom:95.194650px;}
.y1ae{bottom:98.829900px;}
.yc5{bottom:111.020250px;}
.y66{bottom:111.032250px;}
.y95{bottom:111.036750px;}
.y136{bottom:111.039750px;}
.y10e{bottom:111.042750px;}
.yf0{bottom:111.050250px;}
.y31{bottom:113.074650px;}
.y35{bottom:113.194650px;}
.y1ad{bottom:115.329900px;}
.yc4{bottom:129.771750px;}
.y65{bottom:129.783750px;}
.y135{bottom:129.791250px;}
.y10d{bottom:129.794250px;}
.yef{bottom:129.801750px;}
.y1e9{bottom:131.265900px;}
.y1ac{bottom:131.829900px;}
.y1e8{bottom:147.765900px;}
.y1ab{bottom:148.329900px;}
.yc3{bottom:148.523250px;}
.y64{bottom:148.535250px;}
.y94{bottom:148.539750px;}
.y134{bottom:148.542750px;}
.y10c{bottom:148.545750px;}
.y28{bottom:159.373050px;}
.y1e7{bottom:164.265900px;}
.y1aa{bottom:164.829900px;}
.yc2{bottom:167.274750px;}
.y63{bottom:167.286750px;}
.y93{bottom:167.291250px;}
.y133{bottom:167.294250px;}
.yee{bottom:167.295750px;}
.y10b{bottom:167.297250px;}
.y1e6{bottom:180.765900px;}
.y1a9{bottom:181.329900px;}
.y172{bottom:183.051750px;}
.yc1{bottom:186.026250px;}
.y62{bottom:186.038250px;}
.y92{bottom:186.042750px;}
.y132{bottom:186.045750px;}
.yed{bottom:186.047250px;}
.y10a{bottom:186.048750px;}
.y1e5{bottom:197.265900px;}
.y1a8{bottom:197.829900px;}
.y171{bottom:201.051750px;}
.y2d{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.yc0{bottom:204.777750px;}
.y61{bottom:204.789750px;}
.y91{bottom:204.794250px;}
.y131{bottom:204.797250px;}
.yec{bottom:204.798750px;}
.y109{bottom:204.800250px;}
.y1e4{bottom:213.765900px;}
.y1a7{bottom:214.329900px;}
.y170{bottom:217.551750px;}
.y2c{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.ybf{bottom:223.529250px;}
.y60{bottom:223.541250px;}
.y90{bottom:223.545750px;}
.y130{bottom:223.548750px;}
.yeb{bottom:223.550250px;}
.y108{bottom:223.551750px;}
.y1e3{bottom:230.265900px;}
.y1a6{bottom:230.829900px;}
.y16f{bottom:234.051750px;}
.y2b{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.ybe{bottom:242.280750px;}
.y15c{bottom:242.294250px;}
.y8f{bottom:242.297250px;}
.y12f{bottom:242.300250px;}
.yea{bottom:242.301750px;}
.y1e2{bottom:246.765900px;}
.y1a5{bottom:247.329900px;}
.y2a{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.ybd{bottom:261.032250px;}
.y107{bottom:261.039750px;}
.y5f{bottom:261.044250px;}
.y15b{bottom:261.045750px;}
.y8e{bottom:261.048750px;}
.y12e{bottom:261.051750px;}
.y1e1{bottom:263.265900px;}
.y1a4{bottom:263.829900px;}
.y29{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y1e0{bottom:279.765900px;}
.y16e{bottom:279.780750px;}
.ybc{bottom:279.783750px;}
.ye9{bottom:279.788250px;}
.y106{bottom:279.791250px;}
.y5e{bottom:279.795750px;}
.y15a{bottom:279.797250px;}
.y8d{bottom:279.800250px;}
.y1a3{bottom:280.329900px;}
.y1df{bottom:296.265900px;}
.y1a2{bottom:296.829900px;}
.y16d{bottom:298.532250px;}
.ybb{bottom:298.535250px;}
.y12d{bottom:298.538250px;}
.ye8{bottom:298.539750px;}
.y105{bottom:298.542750px;}
.y5d{bottom:298.547250px;}
.y159{bottom:298.548750px;}
.y8c{bottom:298.551750px;}
.y1de{bottom:312.765900px;}
.y1a1{bottom:313.329900px;}
.y16c{bottom:317.283750px;}
.yba{bottom:317.286750px;}
.y12c{bottom:317.289750px;}
.ye7{bottom:317.291250px;}
.y104{bottom:317.294250px;}
.y5c{bottom:317.298750px;}
.y158{bottom:317.300250px;}
.y30{bottom:325.473450px;}
.y1dd{bottom:329.265900px;}
.y1a0{bottom:329.829900px;}
.y16b{bottom:336.035250px;}
.yb9{bottom:336.038250px;}
.y12b{bottom:336.041250px;}
.ye6{bottom:336.042750px;}
.y103{bottom:336.045750px;}
.y5b{bottom:336.050250px;}
.y8b{bottom:336.051750px;}
.y1dc{bottom:345.765900px;}
.y19f{bottom:346.329900px;}
.y5a{bottom:354.785250px;}
.y16a{bottom:354.786750px;}
.yb8{bottom:354.789750px;}
.y12a{bottom:354.792750px;}
.ye5{bottom:354.794250px;}
.y102{bottom:354.797250px;}
.y1db{bottom:362.265900px;}
.y19e{bottom:362.829900px;}
.y157{bottom:373.509750px;}
.y59{bottom:373.536750px;}
.y169{bottom:373.538250px;}
.yb7{bottom:373.541250px;}
.y129{bottom:373.544250px;}
.ye4{bottom:373.545750px;}
.y101{bottom:373.548750px;}
.y1da{bottom:378.765900px;}
.y19d{bottom:379.329900px;}
.y156{bottom:392.261250px;}
.y8a{bottom:392.265750px;}
.y58{bottom:392.288250px;}
.y168{bottom:392.289750px;}
.yb6{bottom:392.292750px;}
.y128{bottom:392.295750px;}
.ye3{bottom:392.297250px;}
.y100{bottom:392.300250px;}
.y1d9{bottom:395.265900px;}
.y19c{bottom:395.829900px;}
.y155{bottom:411.012750px;}
.y89{bottom:411.017250px;}
.y57{bottom:411.039750px;}
.y167{bottom:411.041250px;}
.yb5{bottom:411.044250px;}
.y127{bottom:411.047250px;}
.ye2{bottom:411.048750px;}
.y1d8{bottom:411.765900px;}
.y19b{bottom:412.329900px;}
.y27{bottom:412.474800px;}
.y1d7{bottom:428.265900px;}
.y19a{bottom:428.829900px;}
.y154{bottom:429.764250px;}
.y88{bottom:429.768750px;}
.y166{bottom:429.792750px;}
.yb4{bottom:429.795750px;}
.y126{bottom:429.798750px;}
.ye1{bottom:429.800250px;}
.y26{bottom:431.968800px;}
.y25{bottom:442.474800px;}
.y1d6{bottom:444.765900px;}
.y199{bottom:445.329900px;}
.y153{bottom:448.515750px;}
.y87{bottom:448.520250px;}
.y56{bottom:448.542750px;}
.y165{bottom:448.544250px;}
.yb3{bottom:448.547250px;}
.y125{bottom:448.550250px;}
.ye0{bottom:448.551750px;}
.y1d5{bottom:461.265900px;}
.y198{bottom:461.829900px;}
.y24{bottom:461.964600px;}
.y152{bottom:467.267250px;}
.y86{bottom:467.271750px;}
.y55{bottom:467.294250px;}
.y164{bottom:467.295750px;}
.yb2{bottom:467.298750px;}
.y124{bottom:467.301750px;}
.y1d4{bottom:477.765900px;}
.y197{bottom:478.329900px;}
.y151{bottom:486.018750px;}
.y85{bottom:486.023250px;}
.ydf{bottom:486.039750px;}
.y54{bottom:486.045750px;}
.y163{bottom:486.047250px;}
.yb1{bottom:486.050250px;}
.y1d3{bottom:494.265900px;}
.y196{bottom:494.829900px;}
.y150{bottom:504.770250px;}
.y84{bottom:504.774750px;}
.yde{bottom:504.791250px;}
.y53{bottom:504.797250px;}
.y162{bottom:504.798750px;}
.y123{bottom:504.800250px;}
.yb0{bottom:504.801750px;}
.y1d2{bottom:510.765900px;}
.y195{bottom:511.329900px;}
.y14f{bottom:523.521750px;}
.y83{bottom:523.526250px;}
.y122{bottom:523.530750px;}
.ydd{bottom:523.542750px;}
.y52{bottom:523.548750px;}
.y161{bottom:523.550250px;}
.y1d1{bottom:527.265900px;}
.y194{bottom:527.829900px;}
.y14e{bottom:542.273250px;}
.y82{bottom:542.277750px;}
.yaf{bottom:542.279250px;}
.y121{bottom:542.282250px;}
.ydc{bottom:542.294250px;}
.y51{bottom:542.300250px;}
.y160{bottom:542.301750px;}
.y1d0{bottom:543.765900px;}
.y193{bottom:544.329900px;}
.y1cf{bottom:560.265900px;}
.y192{bottom:560.829900px;}
.y14d{bottom:561.024750px;}
.y81{bottom:561.029250px;}
.yae{bottom:561.030750px;}
.y120{bottom:561.033750px;}
.ydb{bottom:561.045750px;}
.y50{bottom:561.051750px;}
.y1c{bottom:573.756450px;}
.y1ce{bottom:576.765900px;}
.y191{bottom:577.329900px;}
.y14c{bottom:579.776250px;}
.y80{bottom:579.780750px;}
.yad{bottom:579.782250px;}
.y11f{bottom:579.785250px;}
.yda{bottom:579.797250px;}
.y15f{bottom:579.801750px;}
.y1b{bottom:588.754950px;}
.y1cd{bottom:593.265900px;}
.y190{bottom:593.829900px;}
.y14b{bottom:598.527750px;}
.y7f{bottom:598.532250px;}
.yac{bottom:598.533750px;}
.y11e{bottom:598.536750px;}
.yd9{bottom:598.548750px;}
.y4f{bottom:598.551750px;}
.y1a{bottom:603.753450px;}
.y1cc{bottom:609.765900px;}
.y18f{bottom:610.329900px;}
.y14a{bottom:617.279250px;}
.y7e{bottom:617.283750px;}
.yab{bottom:617.285250px;}
.y11d{bottom:617.288250px;}
.yd8{bottom:617.300250px;}
.y19{bottom:618.751950px;}
.y1cb{bottom:626.265900px;}
.y18e{bottom:626.829900px;}
.y18{bottom:633.750450px;}
.y15e{bottom:636.030750px;}
.y7d{bottom:636.035250px;}
.yaa{bottom:636.036750px;}
.y11c{bottom:636.039750px;}
.yd7{bottom:636.051750px;}
.y1ca{bottom:642.765900px;}
.y18d{bottom:643.329900px;}
.y17{bottom:648.748950px;}
.y149{bottom:654.782250px;}
.y7c{bottom:654.786750px;}
.ya9{bottom:654.788250px;}
.y11b{bottom:654.791250px;}
.y4e{bottom:654.801750px;}
.y1c9{bottom:659.265900px;}
.y18c{bottom:659.829900px;}
.y16{bottom:663.747450px;}
.yd6{bottom:673.530750px;}
.y148{bottom:673.533750px;}
.y7b{bottom:673.538250px;}
.ya8{bottom:673.539750px;}
.y11a{bottom:673.542750px;}
.yff{bottom:673.551750px;}
.y1c8{bottom:675.765900px;}
.y18b{bottom:676.329900px;}
.y15{bottom:678.745950px;}
.y1c7{bottom:692.265900px;}
.yd5{bottom:692.282250px;}
.y147{bottom:692.285250px;}
.y7a{bottom:692.289750px;}
.ya7{bottom:692.291250px;}
.y18a{bottom:692.829900px;}
.y14{bottom:693.744450px;}
.y13{bottom:708.742950px;}
.y1c6{bottom:708.765900px;}
.y189{bottom:709.329900px;}
.y4d{bottom:711.024750px;}
.yd4{bottom:711.033750px;}
.y146{bottom:711.036750px;}
.y79{bottom:711.041250px;}
.ya6{bottom:711.042750px;}
.y119{bottom:711.045750px;}
.y12{bottom:723.741450px;}
.y1c5{bottom:725.265900px;}
.y188{bottom:725.829900px;}
.y4c{bottom:729.776250px;}
.yd3{bottom:729.785250px;}
.y145{bottom:729.788250px;}
.y78{bottom:729.792750px;}
.ya5{bottom:729.794250px;}
.yfe{bottom:729.797250px;}
.y11{bottom:738.739950px;}
.y1c4{bottom:741.765900px;}
.y187{bottom:742.329900px;}
.y4b{bottom:748.527750px;}
.yd2{bottom:748.536750px;}
.y144{bottom:748.539750px;}
.y77{bottom:748.544250px;}
.ya4{bottom:748.545750px;}
.yfd{bottom:748.548750px;}
.y10{bottom:753.738450px;}
.y1c3{bottom:758.265900px;}
.y186{bottom:758.829900px;}
.y4a{bottom:767.279250px;}
.yd1{bottom:767.288250px;}
.y143{bottom:767.291250px;}
.y76{bottom:767.295750px;}
.ya3{bottom:767.297250px;}
.yfc{bottom:767.300250px;}
.yf{bottom:768.736950px;}
.y1c2{bottom:774.765900px;}
.y185{bottom:775.329900px;}
.ye{bottom:783.735450px;}
.y49{bottom:786.030750px;}
.yd0{bottom:786.039750px;}
.y142{bottom:786.042750px;}
.y118{bottom:786.044250px;}
.y75{bottom:786.047250px;}
.ya2{bottom:786.048750px;}
.y1c1{bottom:791.265900px;}
.y184{bottom:791.829900px;}
.yd{bottom:798.733950px;}
.ycf{bottom:804.791250px;}
.y141{bottom:804.794250px;}
.y117{bottom:804.795750px;}
.y74{bottom:804.798750px;}
.ya1{bottom:804.800250px;}
.y1c0{bottom:807.765900px;}
.y183{bottom:808.329900px;}
.yc{bottom:813.732450px;}
.y48{bottom:823.533750px;}
.yce{bottom:823.542750px;}
.y140{bottom:823.545750px;}
.y116{bottom:823.547250px;}
.y73{bottom:823.550250px;}
.ya0{bottom:823.551750px;}
.y1bf{bottom:824.265900px;}
.y182{bottom:824.829900px;}
.yb{bottom:828.730950px;}
.y1be{bottom:840.765900px;}
.y181{bottom:841.329900px;}
.y47{bottom:842.285250px;}
.ycd{bottom:842.294250px;}
.y72{bottom:842.295750px;}
.y13f{bottom:842.297250px;}
.y115{bottom:842.298750px;}
.yfb{bottom:842.301750px;}
.ya{bottom:843.729450px;}
.y1bd{bottom:857.265900px;}
.y180{bottom:857.829900px;}
.y9{bottom:858.727950px;}
.y46{bottom:861.036750px;}
.y9f{bottom:861.045750px;}
.y71{bottom:861.047250px;}
.y13e{bottom:861.048750px;}
.y114{bottom:861.050250px;}
.y8{bottom:873.726450px;}
.y1bc{bottom:873.765900px;}
.y17f{bottom:874.329900px;}
.y45{bottom:879.788250px;}
.yfa{bottom:879.795750px;}
.y9e{bottom:879.797250px;}
.y70{bottom:879.798750px;}
.y13d{bottom:879.800250px;}
.y113{bottom:879.801750px;}
.y7{bottom:888.724950px;}
.y1bb{bottom:890.265900px;}
.y17e{bottom:890.829900px;}
.y13c{bottom:898.536750px;}
.y44{bottom:898.539750px;}
.yf9{bottom:898.547250px;}
.y9d{bottom:898.548750px;}
.y6f{bottom:898.550250px;}
.y15d{bottom:898.551750px;}
.y6{bottom:903.723450px;}
.y1ba{bottom:906.765900px;}
.y17d{bottom:907.329900px;}
.y13b{bottom:917.288250px;}
.y43{bottom:917.291250px;}
.yf8{bottom:917.298750px;}
.y6e{bottom:917.300250px;}
.y112{bottom:917.307750px;}
.y1b9{bottom:923.265900px;}
.y1d{bottom:923.289300px;}
.y17c{bottom:923.829900px;}
.y13a{bottom:936.039750px;}
.yf7{bottom:936.050250px;}
.y6d{bottom:936.051750px;}
.y1b8{bottom:939.765900px;}
.y17b{bottom:940.329900px;}
.y139{bottom:954.791250px;}
.y42{bottom:954.794250px;}
.yf6{bottom:954.795750px;}
.y1b7{bottom:956.265900px;}
.y17a{bottom:956.829900px;}
.y1b6{bottom:972.765900px;}
.y179{bottom:973.329900px;}
.ycc{bottom:973.508250px;}
.y138{bottom:973.542750px;}
.y41{bottom:973.545750px;}
.yf5{bottom:973.547250px;}
.y6c{bottom:973.551750px;}
.y9c{bottom:973.557750px;}
.y23{bottom:982.473300px;}
.y1b5{bottom:989.265900px;}
.y178{bottom:989.829900px;}
.ycb{bottom:992.259750px;}
.y111{bottom:992.294250px;}
.y40{bottom:992.297250px;}
.yf4{bottom:992.298750px;}
.y9b{bottom:992.301750px;}
.y1b4{bottom:1005.765900px;}
.y177{bottom:1006.329900px;}
.yca{bottom:1011.011250px;}
.y110{bottom:1011.045750px;}
.y3f{bottom:1011.048750px;}
.yf3{bottom:1011.050250px;}
.y2f{bottom:1021.700700px;}
.y1b3{bottom:1022.265900px;}
.y176{bottom:1022.829900px;}
.yc9{bottom:1029.762750px;}
.y6b{bottom:1029.774750px;}
.yf2{bottom:1029.797250px;}
.y3e{bottom:1029.800250px;}
.y1b2{bottom:1038.765900px;}
.y175{bottom:1039.329900px;}
.y2e{bottom:1043.300700px;}
.y6a{bottom:1048.526250px;}
.y9a{bottom:1048.548750px;}
.y3d{bottom:1048.551750px;}
.y1b1{bottom:1055.265900px;}
.y174{bottom:1055.829900px;}
.yc8{bottom:1067.265750px;}
.y69{bottom:1067.277750px;}
.y99{bottom:1067.300250px;}
.y1b0{bottom:1071.765900px;}
.y1f{bottom:1074.058350px;}
.y22{bottom:1082.937000px;}
.yc7{bottom:1086.017250px;}
.y68{bottom:1086.029250px;}
.y3c{bottom:1086.051750px;}
.y1af{bottom:1088.265900px;}
.y173{bottom:1088.829900px;}
.y21{bottom:1097.937000px;}
.y1e{bottom:1106.458350px;}
.y20{bottom:1112.937000px;}
.h9{height:29.549707px;}
.he{height:34.320000px;}
.h2{height:34.945312px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.h3{height:37.523438px;}
.h4{height:42.213867px;}
.hf{height:42.259467px;}
.h7{height:44.520000px;}
.h16{height:45.191067px;}
.h5{height:47.244141px;}
.hb{height:47.531107px;}
.h8{height:47.531707px;}
.h14{height:47.537707px;}
.h1e{height:47.543707px;}
.h1c{height:47.549707px;}
.h15{height:47.555707px;}
.h1d{height:47.561707px;}
.h1f{height:47.573707px;}
.h1a{height:47.579707px;}
.h1b{height:47.585707px;}
.h20{height:47.591707px;}
.h13{height:47.597707px;}
.h19{height:47.615707px;}
.h17{height:47.621707px;}
.h11{height:47.639707px;}
.h21{height:47.699707px;}
.h18{height:47.705707px;}
.h12{height:51.942000px;}
.ha{height:54.504000px;}
.h10{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x17{left:103.039350px;}
.x13{left:107.291250px;}
.x19{left:116.291250px;}
.x10{left:139.339200px;}
.x8{left:246.648900px;}
.xa{left:253.992900px;}
.xf{left:255.126600px;}
.x7{left:259.284900px;}
.x5{left:270.660900px;}
.xe{left:299.322600px;}
.xd{left:322.278600px;}
.x9{left:335.364900px;}
.x6{left:356.676900px;}
.x3{left:398.569950px;}
.x4{left:430.240950px;}
.x16{left:451.325100px;}
.x11{left:455.592300px;}
.x1{left:469.770150px;}
.x14{left:474.090150px;}
.x18{left:487.843350px;}
.x15{left:492.094500px;}
.x1a{left:501.095250px;}
.xb{left:566.988300px;}
.xc{left:583.980300px;}
@media print{
.v2{vertical-align:-15.969067pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls26{letter-spacing:-4.906667pt;}
.ls32{letter-spacing:-4.480000pt;}
.ls25{letter-spacing:-4.224000pt;}
.ls13{letter-spacing:-3.797333pt;}
.ls2b{letter-spacing:-3.456000pt;}
.ls11{letter-spacing:-3.157333pt;}
.ls14{letter-spacing:-2.816000pt;}
.ls29{letter-spacing:-2.773333pt;}
.ls10{letter-spacing:-2.261333pt;}
.ls23{letter-spacing:-2.176000pt;}
.ls1e{letter-spacing:-2.090667pt;}
.ls1b{letter-spacing:-2.048000pt;}
.ls2a{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-1.834667pt;}
.ls1f{letter-spacing:-1.706667pt;}
.ls30{letter-spacing:-1.536000pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-1.194667pt;}
.ls1d{letter-spacing:-1.152000pt;}
.ls24{letter-spacing:-1.024000pt;}
.ls15{letter-spacing:-0.981333pt;}
.ls19{letter-spacing:-0.938667pt;}
.ls2f{letter-spacing:-0.810667pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.400000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.016000pt;}
.ls20{letter-spacing:0.085333pt;}
.ls21{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.341333pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.597333pt;}
.ls28{letter-spacing:1.536000pt;}
.ls3{letter-spacing:4.736000pt;}
.ls7{letter-spacing:244.850133pt;}
.ws9e{word-spacing:-13.397333pt;}
.ws21{word-spacing:-13.344000pt;}
.ws9f{word-spacing:-12.416000pt;}
.ws9a{word-spacing:-12.245333pt;}
.ws97{word-spacing:-12.160000pt;}
.ws99{word-spacing:-11.178667pt;}
.ws9c{word-spacing:-11.093333pt;}
.ws9d{word-spacing:-10.837333pt;}
.ws9b{word-spacing:-10.709333pt;}
.ws1{word-spacing:-9.340800pt;}
.ws98{word-spacing:-9.045333pt;}
.ws65{word-spacing:-9.004800pt;}
.wsc8{word-spacing:-5.589333pt;}
.wsa2{word-spacing:-4.778667pt;}
.ws57{word-spacing:-4.704000pt;}
.wsa1{word-spacing:-3.712000pt;}
.ws52{word-spacing:-3.696000pt;}
.ws6d{word-spacing:-2.976000pt;}
.wsa{word-spacing:-2.640000pt;}
.ws48{word-spacing:-2.544000pt;}
.wscf{word-spacing:-2.474667pt;}
.ws33{word-spacing:-2.448000pt;}
.ws66{word-spacing:-2.400000pt;}
.ws89{word-spacing:-2.352000pt;}
.ws77{word-spacing:-2.256000pt;}
.wsb6{word-spacing:-2.176000pt;}
.ws79{word-spacing:-2.160000pt;}
.ws47{word-spacing:-2.064000pt;}
.ws3d{word-spacing:-1.968000pt;}
.ws35{word-spacing:-1.872000pt;}
.ws54{word-spacing:-1.824000pt;}
.ws4f{word-spacing:-1.728000pt;}
.ws95{word-spacing:-1.706667pt;}
.ws63{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.632000pt;}
.ws7a{word-spacing:-1.584000pt;}
.wsa9{word-spacing:-1.578667pt;}
.wsca{word-spacing:-1.493333pt;}
.ws70{word-spacing:-1.488000pt;}
.ws43{word-spacing:-1.440000pt;}
.wsbc{word-spacing:-1.322667pt;}
.ws2e{word-spacing:-1.296000pt;}
.wsd6{word-spacing:-1.066667pt;}
.ws3c{word-spacing:-0.960000pt;}
.wsd4{word-spacing:-0.896000pt;}
.ws53{word-spacing:-0.864000pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws62{word-spacing:-0.720000pt;}
.ws28{word-spacing:-0.624000pt;}
.wsa3{word-spacing:-0.554667pt;}
.ws40{word-spacing:-0.528000pt;}
.wsd5{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.480000pt;}
.wsc6{word-spacing:-0.469333pt;}
.ws7c{word-spacing:-0.432000pt;}
.ws1f{word-spacing:-0.426667pt;}
.wsc2{word-spacing:-0.341333pt;}
.ws5a{word-spacing:-0.336000pt;}
.wsad{word-spacing:-0.298667pt;}
.ws4e{word-spacing:-0.240000pt;}
.ws36{word-spacing:-0.192000pt;}
.wsd2{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws22{word-spacing:0.048000pt;}
.ws96{word-spacing:0.058667pt;}
.ws8c{word-spacing:0.096000pt;}
.wsae{word-spacing:0.213333pt;}
.ws1d{word-spacing:0.240000pt;}
.ws23{word-spacing:0.288000pt;}
.wsb{word-spacing:0.336000pt;}
.ws92{word-spacing:0.400000pt;}
.ws94{word-spacing:0.426667pt;}
.ws30{word-spacing:0.480000pt;}
.wsc5{word-spacing:0.512000pt;}
.ws60{word-spacing:0.576000pt;}
.ws90{word-spacing:0.624000pt;}
.wsb2{word-spacing:0.640000pt;}
.ws74{word-spacing:0.672000pt;}
.ws56{word-spacing:0.720000pt;}
.wsce{word-spacing:0.725333pt;}
.wsa6{word-spacing:0.768000pt;}
.wsd0{word-spacing:0.810667pt;}
.ws75{word-spacing:0.816000pt;}
.wsb8{word-spacing:0.853333pt;}
.ws8e{word-spacing:0.912000pt;}
.wsb0{word-spacing:0.938667pt;}
.ws3e{word-spacing:0.960000pt;}
.wsac{word-spacing:0.981333pt;}
.wsbf{word-spacing:1.024000pt;}
.wsc7{word-spacing:1.066667pt;}
.ws38{word-spacing:1.104000pt;}
.ws6e{word-spacing:1.152000pt;}
.wsb9{word-spacing:1.194667pt;}
.ws3a{word-spacing:1.248000pt;}
.wsd1{word-spacing:1.280000pt;}
.wsab{word-spacing:1.408000pt;}
.ws37{word-spacing:1.536000pt;}
.ws8f{word-spacing:1.584000pt;}
.wsc4{word-spacing:1.621333pt;}
.wsb7{word-spacing:1.706667pt;}
.ws7f{word-spacing:1.728000pt;}
.ws27{word-spacing:1.824000pt;}
.wsa0{word-spacing:1.834667pt;}
.ws6a{word-spacing:1.920000pt;}
.wscd{word-spacing:1.962667pt;}
.ws86{word-spacing:2.016000pt;}
.wsb1{word-spacing:2.048000pt;}
.ws3b{word-spacing:2.064000pt;}
.wsb4{word-spacing:2.090667pt;}
.ws73{word-spacing:2.112000pt;}
.wsaa{word-spacing:2.133333pt;}
.wsba{word-spacing:2.176000pt;}
.ws59{word-spacing:2.256000pt;}
.wsa4{word-spacing:2.261333pt;}
.ws76{word-spacing:2.352000pt;}
.wscb{word-spacing:2.389333pt;}
.ws44{word-spacing:2.400000pt;}
.wsc0{word-spacing:2.432000pt;}
.ws5d{word-spacing:2.688000pt;}
.wse{word-spacing:2.736000pt;}
.wsc1{word-spacing:2.773333pt;}
.ws87{word-spacing:2.784000pt;}
.ws69{word-spacing:2.976000pt;}
.ws49{word-spacing:3.024000pt;}
.ws42{word-spacing:3.072000pt;}
.ws14{word-spacing:3.120000pt;}
.wsa5{word-spacing:3.157333pt;}
.ws50{word-spacing:3.360000pt;}
.ws34{word-spacing:3.408000pt;}
.ws7d{word-spacing:3.456000pt;}
.ws6c{word-spacing:3.504000pt;}
.ws1c{word-spacing:3.552000pt;}
.wsf{word-spacing:3.600000pt;}
.ws78{word-spacing:3.648000pt;}
.wsbb{word-spacing:3.712000pt;}
.ws32{word-spacing:3.792000pt;}
.wsa8{word-spacing:3.797333pt;}
.ws15{word-spacing:3.840000pt;}
.wsd7{word-spacing:3.882667pt;}
.ws72{word-spacing:3.888000pt;}
.ws8a{word-spacing:4.176000pt;}
.wscc{word-spacing:4.181333pt;}
.ws39{word-spacing:4.224000pt;}
.ws1e{word-spacing:4.309333pt;}
.ws4{word-spacing:4.368000pt;}
.ws4d{word-spacing:4.464000pt;}
.wsd3{word-spacing:4.480000pt;}
.wsc{word-spacing:4.512000pt;}
.wsc3{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.704000pt;}
.ws19{word-spacing:4.800000pt;}
.wsbd{word-spacing:4.906667pt;}
.ws13{word-spacing:4.944000pt;}
.ws31{word-spacing:4.992000pt;}
.ws71{word-spacing:5.040000pt;}
.ws93{word-spacing:5.077333pt;}
.ws18{word-spacing:5.136000pt;}
.ws5{word-spacing:5.376000pt;}
.ws1b{word-spacing:5.424000pt;}
.ws85{word-spacing:5.472000pt;}
.ws7{word-spacing:5.760000pt;}
.ws68{word-spacing:5.856000pt;}
.wsc9{word-spacing:5.930667pt;}
.ws6{word-spacing:6.048000pt;}
.ws88{word-spacing:6.096000pt;}
.ws8{word-spacing:6.144000pt;}
.ws17{word-spacing:6.240000pt;}
.wsa7{word-spacing:6.314667pt;}
.ws1a{word-spacing:6.336000pt;}
.wsb5{word-spacing:6.357333pt;}
.ws55{word-spacing:6.384000pt;}
.ws61{word-spacing:6.528000pt;}
.ws5f{word-spacing:6.576000pt;}
.ws84{word-spacing:6.624000pt;}
.ws26{word-spacing:6.720000pt;}
.ws5b{word-spacing:6.912000pt;}
.ws81{word-spacing:6.960000pt;}
.ws24{word-spacing:7.056000pt;}
.ws67{word-spacing:7.152000pt;}
.ws12{word-spacing:7.584000pt;}
.ws25{word-spacing:7.632000pt;}
.ws8d{word-spacing:7.680000pt;}
.ws9{word-spacing:7.728000pt;}
.ws6b{word-spacing:7.776000pt;}
.ws2c{word-spacing:8.016000pt;}
.ws7e{word-spacing:8.304000pt;}
.wsd{word-spacing:8.448000pt;}
.ws6f{word-spacing:8.496000pt;}
.ws80{word-spacing:8.592000pt;}
.ws4c{word-spacing:8.832000pt;}
.ws5c{word-spacing:8.928000pt;}
.ws20{word-spacing:9.002667pt;}
.ws91{word-spacing:9.216000pt;}
.ws5e{word-spacing:9.360000pt;}
.ws16{word-spacing:9.456000pt;}
.ws2b{word-spacing:9.936000pt;}
.ws11{word-spacing:10.032000pt;}
.ws41{word-spacing:10.128000pt;}
.ws45{word-spacing:10.368000pt;}
.wsbe{word-spacing:10.453333pt;}
.ws83{word-spacing:10.704000pt;}
.ws7b{word-spacing:11.040000pt;}
.ws4b{word-spacing:11.088000pt;}
.wsaf{word-spacing:11.861333pt;}
.ws2d{word-spacing:12.624000pt;}
.ws64{word-spacing:13.008000pt;}
.ws82{word-spacing:13.392000pt;}
.ws51{word-spacing:13.824000pt;}
.ws8b{word-spacing:13.920000pt;}
.ws2f{word-spacing:14.496000pt;}
.ws29{word-spacing:14.688000pt;}
.ws58{word-spacing:18.720000pt;}
.ws46{word-spacing:25.285333pt;}
.wsb3{word-spacing:45.098667pt;}
.ws2{word-spacing:93.738667pt;}
.ws0{word-spacing:1104.048000pt;}
._14{margin-left:-24.288000pt;}
._8{margin-left:-17.814400pt;}
._e{margin-left:-13.372800pt;}
._d{margin-left:-9.556800pt;}
._1d{margin-left:-5.138667pt;}
._11{margin-left:-4.242133pt;}
._7{margin-left:-2.933333pt;}
._3{margin-left:-1.257600pt;}
._0{width:1.195200pt;}
._4{width:2.337600pt;}
._5{width:4.027200pt;}
._1{width:5.352000pt;}
._6{width:6.955200pt;}
._b{width:8.460267pt;}
._a{width:9.408000pt;}
._9{width:10.656000pt;}
._f{width:11.947200pt;}
._12{width:14.280000pt;}
._2{width:15.580800pt;}
._13{width:16.617600pt;}
._1a{width:17.919467pt;}
._20{width:23.168000pt;}
._1f{width:24.276800pt;}
._1e{width:25.513600pt;}
._18{width:26.580800pt;}
._1b{width:27.571200pt;}
._19{width:29.081600pt;}
._1c{width:32.281600pt;}
._16{width:48.554667pt;}
._15{width:51.028800pt;}
._17{width:52.122133pt;}
._10{width:838.604267pt;}
._c{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:15.379333pt;}
.y3a{bottom:41.748933pt;}
.y3b{bottom:41.927067pt;}
.y98{bottom:41.930400pt;}
.y97{bottom:42.592000pt;}
.y34{bottom:52.510800pt;}
.y38{bottom:52.617467pt;}
.y33{bottom:68.510800pt;}
.y37{bottom:68.617467pt;}
.yc6{bottom:82.016667pt;}
.y67{bottom:82.027333pt;}
.y96{bottom:82.031333pt;}
.y137{bottom:82.034000pt;}
.y10f{bottom:82.036667pt;}
.yf1{bottom:82.043333pt;}
.y32{bottom:84.510800pt;}
.y36{bottom:84.617467pt;}
.y1ae{bottom:87.848800pt;}
.yc5{bottom:98.684667pt;}
.y66{bottom:98.695333pt;}
.y95{bottom:98.699333pt;}
.y136{bottom:98.702000pt;}
.y10e{bottom:98.704667pt;}
.yf0{bottom:98.711333pt;}
.y31{bottom:100.510800pt;}
.y35{bottom:100.617467pt;}
.y1ad{bottom:102.515467pt;}
.yc4{bottom:115.352667pt;}
.y65{bottom:115.363333pt;}
.y135{bottom:115.370000pt;}
.y10d{bottom:115.372667pt;}
.yef{bottom:115.379333pt;}
.y1e9{bottom:116.680800pt;}
.y1ac{bottom:117.182133pt;}
.y1e8{bottom:131.347467pt;}
.y1ab{bottom:131.848800pt;}
.yc3{bottom:132.020667pt;}
.y64{bottom:132.031333pt;}
.y94{bottom:132.035333pt;}
.y134{bottom:132.038000pt;}
.y10c{bottom:132.040667pt;}
.y28{bottom:141.664933pt;}
.y1e7{bottom:146.014133pt;}
.y1aa{bottom:146.515467pt;}
.yc2{bottom:148.688667pt;}
.y63{bottom:148.699333pt;}
.y93{bottom:148.703333pt;}
.y133{bottom:148.706000pt;}
.yee{bottom:148.707333pt;}
.y10b{bottom:148.708667pt;}
.y1e6{bottom:160.680800pt;}
.y1a9{bottom:161.182133pt;}
.y172{bottom:162.712667pt;}
.yc1{bottom:165.356667pt;}
.y62{bottom:165.367333pt;}
.y92{bottom:165.371333pt;}
.y132{bottom:165.374000pt;}
.yed{bottom:165.375333pt;}
.y10a{bottom:165.376667pt;}
.y1e5{bottom:175.347467pt;}
.y1a8{bottom:175.848800pt;}
.y171{bottom:178.712667pt;}
.y2d{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.yc0{bottom:182.024667pt;}
.y61{bottom:182.035333pt;}
.y91{bottom:182.039333pt;}
.y131{bottom:182.042000pt;}
.yec{bottom:182.043333pt;}
.y109{bottom:182.044667pt;}
.y1e4{bottom:190.014133pt;}
.y1a7{bottom:190.515467pt;}
.y170{bottom:193.379333pt;}
.y2c{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.ybf{bottom:198.692667pt;}
.y60{bottom:198.703333pt;}
.y90{bottom:198.707333pt;}
.y130{bottom:198.710000pt;}
.yeb{bottom:198.711333pt;}
.y108{bottom:198.712667pt;}
.y1e3{bottom:204.680800pt;}
.y1a6{bottom:205.182133pt;}
.y16f{bottom:208.046000pt;}
.y2b{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.ybe{bottom:215.360667pt;}
.y15c{bottom:215.372667pt;}
.y8f{bottom:215.375333pt;}
.y12f{bottom:215.378000pt;}
.yea{bottom:215.379333pt;}
.y1e2{bottom:219.347467pt;}
.y1a5{bottom:219.848800pt;}
.y2a{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.ybd{bottom:232.028667pt;}
.y107{bottom:232.035333pt;}
.y5f{bottom:232.039333pt;}
.y15b{bottom:232.040667pt;}
.y8e{bottom:232.043333pt;}
.y12e{bottom:232.046000pt;}
.y1e1{bottom:234.014133pt;}
.y1a4{bottom:234.515467pt;}
.y29{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y1e0{bottom:248.680800pt;}
.y16e{bottom:248.694000pt;}
.ybc{bottom:248.696667pt;}
.ye9{bottom:248.700667pt;}
.y106{bottom:248.703333pt;}
.y5e{bottom:248.707333pt;}
.y15a{bottom:248.708667pt;}
.y8d{bottom:248.711333pt;}
.y1a3{bottom:249.182133pt;}
.y1df{bottom:263.347467pt;}
.y1a2{bottom:263.848800pt;}
.y16d{bottom:265.362000pt;}
.ybb{bottom:265.364667pt;}
.y12d{bottom:265.367333pt;}
.ye8{bottom:265.368667pt;}
.y105{bottom:265.371333pt;}
.y5d{bottom:265.375333pt;}
.y159{bottom:265.376667pt;}
.y8c{bottom:265.379333pt;}
.y1de{bottom:278.014133pt;}
.y1a1{bottom:278.515467pt;}
.y16c{bottom:282.030000pt;}
.yba{bottom:282.032667pt;}
.y12c{bottom:282.035333pt;}
.ye7{bottom:282.036667pt;}
.y104{bottom:282.039333pt;}
.y5c{bottom:282.043333pt;}
.y158{bottom:282.044667pt;}
.y30{bottom:289.309733pt;}
.y1dd{bottom:292.680800pt;}
.y1a0{bottom:293.182133pt;}
.y16b{bottom:298.698000pt;}
.yb9{bottom:298.700667pt;}
.y12b{bottom:298.703333pt;}
.ye6{bottom:298.704667pt;}
.y103{bottom:298.707333pt;}
.y5b{bottom:298.711333pt;}
.y8b{bottom:298.712667pt;}
.y1dc{bottom:307.347467pt;}
.y19f{bottom:307.848800pt;}
.y5a{bottom:315.364667pt;}
.y16a{bottom:315.366000pt;}
.yb8{bottom:315.368667pt;}
.y12a{bottom:315.371333pt;}
.ye5{bottom:315.372667pt;}
.y102{bottom:315.375333pt;}
.y1db{bottom:322.014133pt;}
.y19e{bottom:322.515467pt;}
.y157{bottom:332.008667pt;}
.y59{bottom:332.032667pt;}
.y169{bottom:332.034000pt;}
.yb7{bottom:332.036667pt;}
.y129{bottom:332.039333pt;}
.ye4{bottom:332.040667pt;}
.y101{bottom:332.043333pt;}
.y1da{bottom:336.680800pt;}
.y19d{bottom:337.182133pt;}
.y156{bottom:348.676667pt;}
.y8a{bottom:348.680667pt;}
.y58{bottom:348.700667pt;}
.y168{bottom:348.702000pt;}
.yb6{bottom:348.704667pt;}
.y128{bottom:348.707333pt;}
.ye3{bottom:348.708667pt;}
.y100{bottom:348.711333pt;}
.y1d9{bottom:351.347467pt;}
.y19c{bottom:351.848800pt;}
.y155{bottom:365.344667pt;}
.y89{bottom:365.348667pt;}
.y57{bottom:365.368667pt;}
.y167{bottom:365.370000pt;}
.yb5{bottom:365.372667pt;}
.y127{bottom:365.375333pt;}
.ye2{bottom:365.376667pt;}
.y1d8{bottom:366.014133pt;}
.y19b{bottom:366.515467pt;}
.y27{bottom:366.644267pt;}
.y1d7{bottom:380.680800pt;}
.y19a{bottom:381.182133pt;}
.y154{bottom:382.012667pt;}
.y88{bottom:382.016667pt;}
.y166{bottom:382.038000pt;}
.yb4{bottom:382.040667pt;}
.y126{bottom:382.043333pt;}
.ye1{bottom:382.044667pt;}
.y26{bottom:383.972267pt;}
.y25{bottom:393.310933pt;}
.y1d6{bottom:395.347467pt;}
.y199{bottom:395.848800pt;}
.y153{bottom:398.680667pt;}
.y87{bottom:398.684667pt;}
.y56{bottom:398.704667pt;}
.y165{bottom:398.706000pt;}
.yb3{bottom:398.708667pt;}
.y125{bottom:398.711333pt;}
.ye0{bottom:398.712667pt;}
.y1d5{bottom:410.014133pt;}
.y198{bottom:410.515467pt;}
.y24{bottom:410.635200pt;}
.y152{bottom:415.348667pt;}
.y86{bottom:415.352667pt;}
.y55{bottom:415.372667pt;}
.y164{bottom:415.374000pt;}
.yb2{bottom:415.376667pt;}
.y124{bottom:415.379333pt;}
.y1d4{bottom:424.680800pt;}
.y197{bottom:425.182133pt;}
.y151{bottom:432.016667pt;}
.y85{bottom:432.020667pt;}
.ydf{bottom:432.035333pt;}
.y54{bottom:432.040667pt;}
.y163{bottom:432.042000pt;}
.yb1{bottom:432.044667pt;}
.y1d3{bottom:439.347467pt;}
.y196{bottom:439.848800pt;}
.y150{bottom:448.684667pt;}
.y84{bottom:448.688667pt;}
.yde{bottom:448.703333pt;}
.y53{bottom:448.708667pt;}
.y162{bottom:448.710000pt;}
.y123{bottom:448.711333pt;}
.yb0{bottom:448.712667pt;}
.y1d2{bottom:454.014133pt;}
.y195{bottom:454.515467pt;}
.y14f{bottom:465.352667pt;}
.y83{bottom:465.356667pt;}
.y122{bottom:465.360667pt;}
.ydd{bottom:465.371333pt;}
.y52{bottom:465.376667pt;}
.y161{bottom:465.378000pt;}
.y1d1{bottom:468.680800pt;}
.y194{bottom:469.182133pt;}
.y14e{bottom:482.020667pt;}
.y82{bottom:482.024667pt;}
.yaf{bottom:482.026000pt;}
.y121{bottom:482.028667pt;}
.ydc{bottom:482.039333pt;}
.y51{bottom:482.044667pt;}
.y160{bottom:482.046000pt;}
.y1d0{bottom:483.347467pt;}
.y193{bottom:483.848800pt;}
.y1cf{bottom:498.014133pt;}
.y192{bottom:498.515467pt;}
.y14d{bottom:498.688667pt;}
.y81{bottom:498.692667pt;}
.yae{bottom:498.694000pt;}
.y120{bottom:498.696667pt;}
.ydb{bottom:498.707333pt;}
.y50{bottom:498.712667pt;}
.y1c{bottom:510.005733pt;}
.y1ce{bottom:512.680800pt;}
.y191{bottom:513.182133pt;}
.y14c{bottom:515.356667pt;}
.y80{bottom:515.360667pt;}
.yad{bottom:515.362000pt;}
.y11f{bottom:515.364667pt;}
.yda{bottom:515.375333pt;}
.y15f{bottom:515.379333pt;}
.y1b{bottom:523.337733pt;}
.y1cd{bottom:527.347467pt;}
.y190{bottom:527.848800pt;}
.y14b{bottom:532.024667pt;}
.y7f{bottom:532.028667pt;}
.yac{bottom:532.030000pt;}
.y11e{bottom:532.032667pt;}
.yd9{bottom:532.043333pt;}
.y4f{bottom:532.046000pt;}
.y1a{bottom:536.669733pt;}
.y1cc{bottom:542.014133pt;}
.y18f{bottom:542.515467pt;}
.y14a{bottom:548.692667pt;}
.y7e{bottom:548.696667pt;}
.yab{bottom:548.698000pt;}
.y11d{bottom:548.700667pt;}
.yd8{bottom:548.711333pt;}
.y19{bottom:550.001733pt;}
.y1cb{bottom:556.680800pt;}
.y18e{bottom:557.182133pt;}
.y18{bottom:563.333733pt;}
.y15e{bottom:565.360667pt;}
.y7d{bottom:565.364667pt;}
.yaa{bottom:565.366000pt;}
.y11c{bottom:565.368667pt;}
.yd7{bottom:565.379333pt;}
.y1ca{bottom:571.347467pt;}
.y18d{bottom:571.848800pt;}
.y17{bottom:576.665733pt;}
.y149{bottom:582.028667pt;}
.y7c{bottom:582.032667pt;}
.ya9{bottom:582.034000pt;}
.y11b{bottom:582.036667pt;}
.y4e{bottom:582.046000pt;}
.y1c9{bottom:586.014133pt;}
.y18c{bottom:586.515467pt;}
.y16{bottom:589.997733pt;}
.yd6{bottom:598.694000pt;}
.y148{bottom:598.696667pt;}
.y7b{bottom:598.700667pt;}
.ya8{bottom:598.702000pt;}
.y11a{bottom:598.704667pt;}
.yff{bottom:598.712667pt;}
.y1c8{bottom:600.680800pt;}
.y18b{bottom:601.182133pt;}
.y15{bottom:603.329733pt;}
.y1c7{bottom:615.347467pt;}
.yd5{bottom:615.362000pt;}
.y147{bottom:615.364667pt;}
.y7a{bottom:615.368667pt;}
.ya7{bottom:615.370000pt;}
.y18a{bottom:615.848800pt;}
.y14{bottom:616.661733pt;}
.y13{bottom:629.993733pt;}
.y1c6{bottom:630.014133pt;}
.y189{bottom:630.515467pt;}
.y4d{bottom:632.022000pt;}
.yd4{bottom:632.030000pt;}
.y146{bottom:632.032667pt;}
.y79{bottom:632.036667pt;}
.ya6{bottom:632.038000pt;}
.y119{bottom:632.040667pt;}
.y12{bottom:643.325733pt;}
.y1c5{bottom:644.680800pt;}
.y188{bottom:645.182133pt;}
.y4c{bottom:648.690000pt;}
.yd3{bottom:648.698000pt;}
.y145{bottom:648.700667pt;}
.y78{bottom:648.704667pt;}
.ya5{bottom:648.706000pt;}
.yfe{bottom:648.708667pt;}
.y11{bottom:656.657733pt;}
.y1c4{bottom:659.347467pt;}
.y187{bottom:659.848800pt;}
.y4b{bottom:665.358000pt;}
.yd2{bottom:665.366000pt;}
.y144{bottom:665.368667pt;}
.y77{bottom:665.372667pt;}
.ya4{bottom:665.374000pt;}
.yfd{bottom:665.376667pt;}
.y10{bottom:669.989733pt;}
.y1c3{bottom:674.014133pt;}
.y186{bottom:674.515467pt;}
.y4a{bottom:682.026000pt;}
.yd1{bottom:682.034000pt;}
.y143{bottom:682.036667pt;}
.y76{bottom:682.040667pt;}
.ya3{bottom:682.042000pt;}
.yfc{bottom:682.044667pt;}
.yf{bottom:683.321733pt;}
.y1c2{bottom:688.680800pt;}
.y185{bottom:689.182133pt;}
.ye{bottom:696.653733pt;}
.y49{bottom:698.694000pt;}
.yd0{bottom:698.702000pt;}
.y142{bottom:698.704667pt;}
.y118{bottom:698.706000pt;}
.y75{bottom:698.708667pt;}
.ya2{bottom:698.710000pt;}
.y1c1{bottom:703.347467pt;}
.y184{bottom:703.848800pt;}
.yd{bottom:709.985733pt;}
.ycf{bottom:715.370000pt;}
.y141{bottom:715.372667pt;}
.y117{bottom:715.374000pt;}
.y74{bottom:715.376667pt;}
.ya1{bottom:715.378000pt;}
.y1c0{bottom:718.014133pt;}
.y183{bottom:718.515467pt;}
.yc{bottom:723.317733pt;}
.y48{bottom:732.030000pt;}
.yce{bottom:732.038000pt;}
.y140{bottom:732.040667pt;}
.y116{bottom:732.042000pt;}
.y73{bottom:732.044667pt;}
.ya0{bottom:732.046000pt;}
.y1bf{bottom:732.680800pt;}
.y182{bottom:733.182133pt;}
.yb{bottom:736.649733pt;}
.y1be{bottom:747.347467pt;}
.y181{bottom:747.848800pt;}
.y47{bottom:748.698000pt;}
.ycd{bottom:748.706000pt;}
.y72{bottom:748.707333pt;}
.y13f{bottom:748.708667pt;}
.y115{bottom:748.710000pt;}
.yfb{bottom:748.712667pt;}
.ya{bottom:749.981733pt;}
.y1bd{bottom:762.014133pt;}
.y180{bottom:762.515467pt;}
.y9{bottom:763.313733pt;}
.y46{bottom:765.366000pt;}
.y9f{bottom:765.374000pt;}
.y71{bottom:765.375333pt;}
.y13e{bottom:765.376667pt;}
.y114{bottom:765.378000pt;}
.y8{bottom:776.645733pt;}
.y1bc{bottom:776.680800pt;}
.y17f{bottom:777.182133pt;}
.y45{bottom:782.034000pt;}
.yfa{bottom:782.040667pt;}
.y9e{bottom:782.042000pt;}
.y70{bottom:782.043333pt;}
.y13d{bottom:782.044667pt;}
.y113{bottom:782.046000pt;}
.y7{bottom:789.977733pt;}
.y1bb{bottom:791.347467pt;}
.y17e{bottom:791.848800pt;}
.y13c{bottom:798.699333pt;}
.y44{bottom:798.702000pt;}
.yf9{bottom:798.708667pt;}
.y9d{bottom:798.710000pt;}
.y6f{bottom:798.711333pt;}
.y15d{bottom:798.712667pt;}
.y6{bottom:803.309733pt;}
.y1ba{bottom:806.014133pt;}
.y17d{bottom:806.515467pt;}
.y13b{bottom:815.367333pt;}
.y43{bottom:815.370000pt;}
.yf8{bottom:815.376667pt;}
.y6e{bottom:815.378000pt;}
.y112{bottom:815.384667pt;}
.y1b9{bottom:820.680800pt;}
.y1d{bottom:820.701600pt;}
.y17c{bottom:821.182133pt;}
.y13a{bottom:832.035333pt;}
.yf7{bottom:832.044667pt;}
.y6d{bottom:832.046000pt;}
.y1b8{bottom:835.347467pt;}
.y17b{bottom:835.848800pt;}
.y139{bottom:848.703333pt;}
.y42{bottom:848.706000pt;}
.yf6{bottom:848.707333pt;}
.y1b7{bottom:850.014133pt;}
.y17a{bottom:850.515467pt;}
.y1b6{bottom:864.680800pt;}
.y179{bottom:865.182133pt;}
.ycc{bottom:865.340667pt;}
.y138{bottom:865.371333pt;}
.y41{bottom:865.374000pt;}
.yf5{bottom:865.375333pt;}
.y6c{bottom:865.379333pt;}
.y9c{bottom:865.384667pt;}
.y23{bottom:873.309600pt;}
.y1b5{bottom:879.347467pt;}
.y178{bottom:879.848800pt;}
.ycb{bottom:882.008667pt;}
.y111{bottom:882.039333pt;}
.y40{bottom:882.042000pt;}
.yf4{bottom:882.043333pt;}
.y9b{bottom:882.046000pt;}
.y1b4{bottom:894.014133pt;}
.y177{bottom:894.515467pt;}
.yca{bottom:898.676667pt;}
.y110{bottom:898.707333pt;}
.y3f{bottom:898.710000pt;}
.yf3{bottom:898.711333pt;}
.y2f{bottom:908.178400pt;}
.y1b3{bottom:908.680800pt;}
.y176{bottom:909.182133pt;}
.yc9{bottom:915.344667pt;}
.y6b{bottom:915.355333pt;}
.yf2{bottom:915.375333pt;}
.y3e{bottom:915.378000pt;}
.y1b2{bottom:923.347467pt;}
.y175{bottom:923.848800pt;}
.y2e{bottom:927.378400pt;}
.y6a{bottom:932.023333pt;}
.y9a{bottom:932.043333pt;}
.y3d{bottom:932.046000pt;}
.y1b1{bottom:938.014133pt;}
.y174{bottom:938.515467pt;}
.yc8{bottom:948.680667pt;}
.y69{bottom:948.691333pt;}
.y99{bottom:948.711333pt;}
.y1b0{bottom:952.680800pt;}
.y1f{bottom:954.718533pt;}
.y22{bottom:962.610667pt;}
.yc7{bottom:965.348667pt;}
.y68{bottom:965.359333pt;}
.y3c{bottom:965.379333pt;}
.y1af{bottom:967.347467pt;}
.y173{bottom:967.848800pt;}
.y21{bottom:975.944000pt;}
.y1e{bottom:983.518533pt;}
.y20{bottom:989.277333pt;}
.h9{height:26.266406pt;}
.he{height:30.506667pt;}
.h2{height:31.062500pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.h3{height:33.354167pt;}
.h4{height:37.523438pt;}
.hf{height:37.563971pt;}
.h7{height:39.573333pt;}
.h16{height:40.169837pt;}
.h5{height:41.994792pt;}
.hb{height:42.249873pt;}
.h8{height:42.250406pt;}
.h14{height:42.255740pt;}
.h1e{height:42.261073pt;}
.h1c{height:42.266406pt;}
.h15{height:42.271740pt;}
.h1d{height:42.277073pt;}
.h1f{height:42.287740pt;}
.h1a{height:42.293073pt;}
.h1b{height:42.298406pt;}
.h20{height:42.303740pt;}
.h13{height:42.309073pt;}
.h19{height:42.325073pt;}
.h17{height:42.330406pt;}
.h11{height:42.346406pt;}
.h21{height:42.399740pt;}
.h18{height:42.405073pt;}
.h12{height:46.170667pt;}
.ha{height:48.448000pt;}
.h10{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x17{left:91.590533pt;}
.x13{left:95.370000pt;}
.x19{left:103.370000pt;}
.x10{left:123.857067pt;}
.x8{left:219.243467pt;}
.xa{left:225.771467pt;}
.xf{left:226.779200pt;}
.x7{left:230.475467pt;}
.x5{left:240.587467pt;}
.xe{left:266.064533pt;}
.xd{left:286.469867pt;}
.x9{left:298.102133pt;}
.x6{left:317.046133pt;}
.x3{left:354.284400pt;}
.x4{left:382.436400pt;}
.x16{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1{left:417.573467pt;}
.x14{left:421.413467pt;}
.x18{left:433.638533pt;}
.x15{left:437.417333pt;}
.x1a{left:445.418000pt;}
.xb{left:503.989600pt;}
.xc{left:519.093600pt;}
}




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