
    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_a385f7d3e361dddad1aa8c5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.349000;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_6ef3e86fbce1fe8d1b7d4c80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.362000;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_441f140d69f7cf82cf015aae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.381000;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_e427cd8e48589a318652a1ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_f1dd04256020a86e4e98f5e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.768000;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_bdbd9883fa3cd857ae0da556.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766000;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_e62f5c521e0a3ef3993990b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944000;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_27f17b07ebd6e062a2f68d2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.768000;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_c7de5e2a0a1990bf66f8d4e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.955000;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_09faefec16ea3b04f253bc33.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_24ddb14e8944765291675563.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.847000;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_75f1c7febb7d3bf39a290a35.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.603000;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_6f61a40d3f4c0412c9f1c609.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.221000;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_fc302a461914983bd61157a7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.665000;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_b5d2e63d6f126d05ece238cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.008000;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_8c5d308628ab09dc0dc93b61.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cf4f032d8e5ef679a4ac7d3d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.560000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_98e3cfd22fd34ea2bb4053a2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.248000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_25d87a087dda874446ff6459.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_830dc2d3684db91a72f36e45.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a385f7d3e361dddad1aa8c5f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.349000;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:ff16;src:url('chunks/assets/font_5d2c55e6dafd18d7f35b90de.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.384000;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:ff17;src:url('chunks/assets/font_1e227bb2bdf5990754b145f9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.662000;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.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);}
.m1{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v1{vertical-align:-4.674000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.824000px;}
.v2{vertical-align:7.914000px;}
.ls32{letter-spacing:-3.240000px;}
.ls14{letter-spacing:-2.700000px;}
.ls1e{letter-spacing:-2.178000px;}
.ls19{letter-spacing:-1.980000px;}
.ls27{letter-spacing:-1.806000px;}
.ls23{letter-spacing:-1.680000px;}
.ls1f{letter-spacing:-1.644990px;}
.ls38{letter-spacing:-1.620000px;}
.ls2a{letter-spacing:-1.513668px;}
.ls36{letter-spacing:-1.513458px;}
.ls17{letter-spacing:-1.500000px;}
.ls2d{letter-spacing:-1.455450px;}
.ls3a{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.350000px;}
.ls1d{letter-spacing:-1.320000px;}
.ls35{letter-spacing:-1.261215px;}
.ls25{letter-spacing:-1.260000px;}
.ls2b{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-1.164360px;}
.ls33{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-1.050000px;}
.ls31{letter-spacing:-0.840000px;}
.ls37{letter-spacing:-0.780000px;}
.ls21{letter-spacing:-0.725904px;}
.ls20{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.652500px;}
.ls28{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.480000px;}
.ls24{letter-spacing:-0.435000px;}
.ls1c{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.274165px;}
.ls29{letter-spacing:-0.251979px;}
.ls13{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.430650px;}
.lsd{letter-spacing:0.435000px;}
.ls10{letter-spacing:0.439350px;}
.ls15{letter-spacing:0.442969px;}
.lsc{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.956815px;}
.ls2f{letter-spacing:1.980000px;}
.lsb{letter-spacing:2.400000px;}
.ls11{letter-spacing:6.403980px;}
.ls1{letter-spacing:7.560000px;}
.ls2e{letter-spacing:11.664600px;}
.ls30{letter-spacing:13.800000px;}
.ls7{letter-spacing:14.916000px;}
.ls9{letter-spacing:16.441800px;}
.ls39{letter-spacing:17.304000px;}
.ls8{letter-spacing:18.000000px;}
.ls6{letter-spacing:18.138000px;}
.lsa{letter-spacing:19.470000px;}
.ls4{letter-spacing:21.000000px;}
.ls3{letter-spacing:22.260000px;}
.ls2{letter-spacing:53.196000px;}
.ls5{letter-spacing:54.582000px;}
.ls0{letter-spacing:88.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.500000px;}
.ws4{word-spacing:-14.520000px;}
.ws5{word-spacing:-14.400000px;}
.wsb{word-spacing:-13.800000px;}
.wsc{word-spacing:-13.390140px;}
.ws2{word-spacing:-13.170871px;}
.ws33{word-spacing:-12.780000px;}
.ws6{word-spacing:-12.480000px;}
.ws3b{word-spacing:-12.180000px;}
.ws3f{word-spacing:-11.718000px;}
.ws7{word-spacing:-11.520000px;}
.ws34{word-spacing:-10.416000px;}
.ws8{word-spacing:-10.222500px;}
.ws9{word-spacing:-9.450000px;}
.ws1{word-spacing:-9.342000px;}
.wsa{word-spacing:-8.694000px;}
.ws32{word-spacing:-6.403980px;}
.ws22{word-spacing:-2.400000px;}
.ws36{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.080000px;}
.ws30{word-spacing:-1.047924px;}
.ws11{word-spacing:-0.956815px;}
.ws2b{word-spacing:-0.756000px;}
.wsf{word-spacing:-0.540000px;}
.ws2c{word-spacing:-0.504000px;}
.wse{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.442969px;}
.ws3c{word-spacing:-0.270000px;}
.wsd{word-spacing:0.000000px;}
.ws29{word-spacing:0.043500px;}
.ws28{word-spacing:0.304500px;}
.ws1a{word-spacing:0.330000px;}
.ws23{word-spacing:0.336000px;}
.ws40{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.ws24{word-spacing:0.652500px;}
.ws17{word-spacing:0.660000px;}
.ws20{word-spacing:0.720000px;}
.ws3a{word-spacing:0.780000px;}
.ws25{word-spacing:0.900000px;}
.ws2d{word-spacing:1.050000px;}
.ws27{word-spacing:1.087500px;}
.ws31{word-spacing:1.164360px;}
.ws21{word-spacing:1.200000px;}
.ws2a{word-spacing:1.260000px;}
.ws37{word-spacing:1.261215px;}
.ws1d{word-spacing:1.320000px;}
.ws1b{word-spacing:1.350000px;}
.ws1f{word-spacing:1.370825px;}
.ws12{word-spacing:1.500000px;}
.ws39{word-spacing:1.513458px;}
.ws2f{word-spacing:1.513668px;}
.ws3d{word-spacing:1.620000px;}
.ws26{word-spacing:1.680000px;}
.ws14{word-spacing:1.980000px;}
.ws1e{word-spacing:2.178000px;}
.ws35{word-spacing:3.240000px;}
.ws16{word-spacing:16.896000px;}
.ws19{word-spacing:88.530000px;}
.ws18{word-spacing:90.000000px;}
.ws15{word-spacing:93.000000px;}
.ws1c{word-spacing:94.500000px;}
.ws3e{word-spacing:1658.331000px;}
.ws38{word-spacing:1662.291000px;}
.ws0{word-spacing:1682.091000px;}
._b{margin-left:-72.000000px;}
._8{margin-left:-16.476000px;}
._4{margin-left:-14.780406px;}
._1a{margin-left:-11.718000px;}
._19{margin-left:-9.676800px;}
._16{margin-left:-7.920000px;}
._5{margin-left:-6.831885px;}
._18{margin-left:-5.724000px;}
._13{margin-left:-4.624867px;}
._1{margin-left:-3.504000px;}
._6{margin-left:-2.486066px;}
._2{margin-left:-1.209600px;}
._0{width:1.152000px;}
._3{width:3.088800px;}
._12{width:4.219200px;}
._d{width:7.157951px;}
._7{width:10.440000px;}
._17{width:13.288867px;}
._1b{width:17.640000px;}
._10{width:19.509600px;}
._a{width:23.868000px;}
._14{width:27.456266px;}
._f{width:75.002400px;}
._e{width:82.440000px;}
._9{width:83.574000px;}
._11{width:91.502400px;}
._c{width:95.850000px;}
._15{width:1666.965000px;}
.fc9{color:transparent;}
.fc8{color:rgb(79,76,77);}
.fc6{color:rgb(245,121,120);}
.fc4{color:rgb(152,144,147);}
.fc7{color:rgb(241,80,90);}
.fc3{color:rgb(239,52,49);}
.fc5{color:rgb(120,112,114);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:24.000000px;}
.fsf{font-size:36.000000px;}
.fs7{font-size:41.343600px;}
.fs10{font-size:42.000000px;}
.fse{font-size:43.500000px;}
.fs0{font-size:48.000000px;}
.fs12{font-size:50.395800px;}
.fs18{font-size:50.448600px;}
.fs6{font-size:53.156400px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:54.832992px;}
.fs15{font-size:58.218000px;}
.fs5{font-size:59.062200px;}
.fs2{font-size:60.000000px;}
.fs14{font-size:64.039800px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fsd{font-size:72.590400px;}
.fs13{font-size:75.683400px;}
.fs4{font-size:76.781400px;}
.fs8{font-size:78.000000px;}
.fsc{font-size:95.093400px;}
.fs17{font-size:132.000000px;}
.fs3{font-size:147.656400px;}
.fs16{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:16.680450px;}
.y6{bottom:17.207550px;}
.y91{bottom:48.420150px;}
.y1{bottom:49.776150px;}
.ya{bottom:53.008385px;}
.y77{bottom:68.328000px;}
.y9{bottom:72.197846px;}
.y76{bottom:81.828000px;}
.y175{bottom:85.513500px;}
.y1ad{bottom:85.608000px;}
.y16e{bottom:87.018000px;}
.y8{bottom:91.387306px;}
.y119{bottom:93.700650px;}
.yb5{bottom:94.630500px;}
.y2{bottom:95.167500px;}
.y75{bottom:95.328000px;}
.yd6{bottom:96.966000px;}
.y28{bottom:100.500000px;}
.y174{bottom:103.509000px;}
.y1ac{bottom:103.603500px;}
.y16d{bottom:105.013500px;}
.y74{bottom:107.319000px;}
.y7{bottom:110.576767px;}
.y118{bottom:111.696150px;}
.yb4{bottom:112.626000px;}
.y27{bottom:114.000000px;}
.yd5{bottom:114.961500px;}
.y73{bottom:119.320500px;}
.y173{bottom:121.504500px;}
.y1ab{bottom:121.599000px;}
.y16c{bottom:123.009000px;}
.y117{bottom:129.691650px;}
.y26{bottom:130.500000px;}
.yb3{bottom:130.621500px;}
.y72{bottom:131.322000px;}
.yd4{bottom:132.957000px;}
.y172{bottom:139.500000px;}
.y1aa{bottom:139.594500px;}
.y16b{bottom:141.004500px;}
.y71{bottom:143.323500px;}
.yb2{bottom:148.617000px;}
.yd3{bottom:150.952500px;}
.y4{bottom:151.641750px;}
.y70{bottom:155.325000px;}
.y171{bottom:157.500000px;}
.y1a9{bottom:157.590000px;}
.y16a{bottom:159.000000px;}
.y8f{bottom:164.805300px;}
.y25{bottom:165.000000px;}
.yb1{bottom:166.612500px;}
.y6f{bottom:167.326500px;}
.yd2{bottom:168.948000px;}
.y1a8{bottom:175.585500px;}
.y24{bottom:178.500000px;}
.y6e{bottom:179.329500px;}
.y8e{bottom:182.270700px;}
.yf4{bottom:184.594350px;}
.yb0{bottom:184.608000px;}
.yd1{bottom:186.943500px;}
.y6d{bottom:191.331000px;}
.y170{bottom:193.504500px;}
.y3{bottom:193.521450px;}
.y1a7{bottom:193.581000px;}
.y23{bottom:195.001500px;}
.y149{bottom:202.536000px;}
.yf3{bottom:202.589850px;}
.yaf{bottom:202.603500px;}
.y6c{bottom:203.332500px;}
.yd0{bottom:204.939000px;}
.y22{bottom:210.000000px;}
.y16f{bottom:211.500000px;}
.y1a6{bottom:211.576500px;}
.y6b{bottom:219.828000px;}
.y148{bottom:220.531500px;}
.yf2{bottom:220.585350px;}
.yae{bottom:220.599000px;}
.ycf{bottom:222.934500px;}
.y21{bottom:225.000000px;}
.y8d{bottom:225.934050px;}
.y1a5{bottom:229.572000px;}
.y6a{bottom:233.326500px;}
.y147{bottom:238.527000px;}
.yf1{bottom:238.580850px;}
.yad{bottom:238.594500px;}
.yce{bottom:240.930000px;}
.y20{bottom:241.500000px;}
.y8c{bottom:243.399450px;}
.y69{bottom:245.328000px;}
.y1a4{bottom:247.567500px;}
.y178{bottom:255.275700px;}
.y146{bottom:256.522500px;}
.yf0{bottom:256.576350px;}
.yac{bottom:256.590000px;}
.y68{bottom:257.328000px;}
.ycd{bottom:258.925500px;}
.y8b{bottom:260.864850px;}
.y1f{bottom:262.500000px;}
.y1a3{bottom:265.563000px;}
.y177{bottom:267.887850px;}
.y67{bottom:269.328000px;}
.y145{bottom:274.518000px;}
.yef{bottom:274.571850px;}
.yab{bottom:274.585500px;}
.ycc{bottom:276.921000px;}
.y8a{bottom:278.330250px;}
.y66{bottom:281.320500px;}
.y144{bottom:292.513500px;}
.yee{bottom:292.567350px;}
.yaa{bottom:292.581000px;}
.ycb{bottom:294.916500px;}
.y1e{bottom:295.500000px;}
.y89{bottom:295.795650px;}
.y65{bottom:296.325000px;}
.y64{bottom:308.326500px;}
.y1d{bottom:309.000000px;}
.y143{bottom:310.509000px;}
.yed{bottom:310.562850px;}
.ya9{bottom:310.576500px;}
.yca{bottom:312.912000px;}
.y88{bottom:313.261050px;}
.y63{bottom:320.328000px;}
.y1c{bottom:328.500000px;}
.y142{bottom:328.504500px;}
.yec{bottom:328.558350px;}
.ya8{bottom:328.572000px;}
.ye{bottom:329.595652px;}
.y87{bottom:330.726450px;}
.yc9{bottom:330.907500px;}
.y62{bottom:332.328000px;}
.y1a2{bottom:337.558500px;}
.y61{bottom:344.328000px;}
.yd{bottom:345.833351px;}
.y141{bottom:346.500000px;}
.y1b{bottom:346.501500px;}
.yeb{bottom:346.553850px;}
.ya7{bottom:346.567500px;}
.y86{bottom:348.191850px;}
.yc8{bottom:348.903000px;}
.y1a1{bottom:355.554000px;}
.y60{bottom:360.815250px;}
.yc{bottom:362.071050px;}
.y1a{bottom:364.500000px;}
.yea{bottom:364.549350px;}
.ya6{bottom:364.563000px;}
.y85{bottom:365.657250px;}
.yc7{bottom:366.898500px;}
.y5f{bottom:373.191000px;}
.y1a0{bottom:373.549500px;}
.yb{bottom:378.313350px;}
.y19{bottom:379.501500px;}
.ye9{bottom:382.544850px;}
.ya5{bottom:382.558500px;}
.y140{bottom:382.617000px;}
.y84{bottom:383.122650px;}
.yc6{bottom:384.894000px;}
.y5e{bottom:385.566750px;}
.y19f{bottom:391.545000px;}
.y18{bottom:394.500000px;}
.y5d{bottom:397.942500px;}
.ye8{bottom:400.540350px;}
.ya4{bottom:400.554000px;}
.y13f{bottom:400.612500px;}
.yc5{bottom:402.889500px;}
.y17{bottom:409.500000px;}
.y19e{bottom:409.540500px;}
.y5c{bottom:410.318250px;}
.y83{bottom:418.096500px;}
.ye7{bottom:418.535850px;}
.ya3{bottom:418.549500px;}
.y13e{bottom:418.608000px;}
.yc4{bottom:420.885000px;}
.y5b{bottom:422.694000px;}
.y19d{bottom:427.536000px;}
.y5a{bottom:435.069750px;}
.y82{bottom:435.556500px;}
.ye6{bottom:436.531350px;}
.ya2{bottom:436.545000px;}
.y13d{bottom:436.603500px;}
.yc3{bottom:438.880500px;}
.y16{bottom:441.000000px;}
.y116{bottom:444.757650px;}
.y19c{bottom:445.531500px;}
.y59{bottom:447.445500px;}
.y81{bottom:453.016500px;}
.ye5{bottom:454.526850px;}
.ya1{bottom:454.540500px;}
.y13c{bottom:454.599000px;}
.y15{bottom:456.000000px;}
.yc2{bottom:456.876000px;}
.y58{bottom:459.821250px;}
.y115{bottom:462.753150px;}
.y19b{bottom:463.527000px;}
.y80{bottom:470.476500px;}
.y57{bottom:472.197000px;}
.ye4{bottom:472.522350px;}
.ya0{bottom:472.536000px;}
.y13b{bottom:472.594500px;}
.yc1{bottom:474.871500px;}
.y14{bottom:480.000000px;}
.y114{bottom:480.748650px;}
.y19a{bottom:481.522500px;}
.y56{bottom:484.572750px;}
.y7f{bottom:487.936500px;}
.ye3{bottom:490.517850px;}
.y9f{bottom:490.531500px;}
.y13a{bottom:490.590000px;}
.yc0{bottom:492.867000px;}
.y13{bottom:495.000000px;}
.y55{bottom:496.948500px;}
.y113{bottom:498.744150px;}
.y199{bottom:499.518000px;}
.y169{bottom:499.527150px;}
.y7e{bottom:505.396500px;}
.ye2{bottom:508.513350px;}
.y9e{bottom:508.527000px;}
.y139{bottom:508.585500px;}
.y54{bottom:509.324250px;}
.ybf{bottom:510.862500px;}
.y112{bottom:516.739650px;}
.y198{bottom:517.513500px;}
.y168{bottom:517.522650px;}
.y12{bottom:519.000000px;}
.y53{bottom:521.700000px;}
.y7d{bottom:522.856500px;}
.ye1{bottom:526.508850px;}
.y9d{bottom:526.522500px;}
.y138{bottom:526.581000px;}
.ybe{bottom:528.858000px;}
.y52{bottom:534.075750px;}
.y111{bottom:534.735150px;}
.y197{bottom:535.509000px;}
.y167{bottom:535.518150px;}
.y7c{bottom:540.316500px;}
.y11{bottom:543.000000px;}
.ye0{bottom:544.504350px;}
.y9c{bottom:544.518000px;}
.y137{bottom:544.576500px;}
.y51{bottom:546.451500px;}
.ybd{bottom:546.853500px;}
.y110{bottom:552.730650px;}
.y196{bottom:553.504500px;}
.y166{bottom:553.513650px;}
.y7b{bottom:557.776500px;}
.y10{bottom:558.000000px;}
.y50{bottom:558.827250px;}
.ydf{bottom:562.499850px;}
.y136{bottom:562.572000px;}
.ybc{bottom:564.849000px;}
.y10f{bottom:570.726150px;}
.y4f{bottom:571.203000px;}
.y195{bottom:571.500000px;}
.y165{bottom:571.509150px;}
.y7a{bottom:575.240295px;}
.yf{bottom:579.000000px;}
.y9b{bottom:580.522500px;}
.y135{bottom:580.567500px;}
.yde{bottom:581.833650px;}
.ybb{bottom:582.844500px;}
.y4e{bottom:583.578000px;}
.y10e{bottom:588.721650px;}
.y194{bottom:589.500000px;}
.y164{bottom:589.504650px;}
.y79{bottom:595.618050px;}
.y9a{bottom:598.518000px;}
.y134{bottom:598.563000px;}
.yba{bottom:600.840000px;}
.y10d{bottom:606.717150px;}
.y163{bottom:607.500150px;}
.y193{bottom:607.563000px;}
.y99{bottom:616.513500px;}
.y133{bottom:616.558500px;}
.ydd{bottom:617.847150px;}
.yb9{bottom:618.835500px;}
.y10c{bottom:624.712650px;}
.y162{bottom:625.500150px;}
.y192{bottom:625.558500px;}
.y29{bottom:627.286650px;}
.y4a{bottom:633.267900px;}
.y98{bottom:634.509000px;}
.y132{bottom:634.554000px;}
.ydc{bottom:635.842650px;}
.yb8{bottom:636.831000px;}
.y10b{bottom:642.708150px;}
.y161{bottom:643.531650px;}
.y191{bottom:643.554000px;}
.y49{bottom:645.263025px;}
.y97{bottom:652.504500px;}
.y131{bottom:652.549500px;}
.ydb{bottom:653.838150px;}
.yb7{bottom:654.826500px;}
.y48{bottom:657.258150px;}
.y10a{bottom:660.703650px;}
.y160{bottom:661.527150px;}
.y190{bottom:661.549500px;}
.y47{bottom:669.253275px;}
.y96{bottom:670.500000px;}
.y130{bottom:670.545000px;}
.yda{bottom:671.833650px;}
.yb6{bottom:672.822000px;}
.y109{bottom:678.699150px;}
.y15f{bottom:679.522650px;}
.y18f{bottom:679.545000px;}
.y46{bottom:681.248400px;}
.y12f{bottom:688.540500px;}
.y45{bottom:693.243525px;}
.y108{bottom:696.694650px;}
.y15e{bottom:697.518150px;}
.y18e{bottom:697.540500px;}
.yd9{bottom:698.545500px;}
.y44{bottom:705.238650px;}
.y12e{bottom:706.536000px;}
.yd7{bottom:707.886000px;}
.y107{bottom:714.690150px;}
.y15d{bottom:715.513650px;}
.y18d{bottom:715.536000px;}
.y43{bottom:717.233775px;}
.y12d{bottom:724.531500px;}
.y42{bottom:729.228900px;}
.y106{bottom:732.685650px;}
.y15c{bottom:733.509150px;}
.y18c{bottom:733.531500px;}
.y41{bottom:741.224025px;}
.y12c{bottom:742.527000px;}
.y105{bottom:750.685650px;}
.y15b{bottom:751.504650px;}
.y18b{bottom:751.527000px;}
.y40{bottom:753.219150px;}
.y12b{bottom:760.522500px;}
.y3f{bottom:765.219150px;}
.y15a{bottom:769.500150px;}
.y18a{bottom:769.522500px;}
.y12a{bottom:778.518000px;}
.y3e{bottom:782.742150px;}
.y159{bottom:786.685800px;}
.y104{bottom:786.842850px;}
.y189{bottom:787.518000px;}
.y3d{bottom:795.117900px;}
.y129{bottom:796.513500px;}
.y103{bottom:804.838350px;}
.y188{bottom:805.513500px;}
.y3c{bottom:807.113025px;}
.y128{bottom:814.509000px;}
.y3b{bottom:819.108150px;}
.y158{bottom:822.748800px;}
.y102{bottom:822.833850px;}
.y187{bottom:823.509000px;}
.y3a{bottom:831.113025px;}
.y127{bottom:832.504500px;}
.y157{bottom:840.744300px;}
.y101{bottom:840.829350px;}
.y186{bottom:841.504500px;}
.y39{bottom:843.108150px;}
.y126{bottom:850.500000px;}
.y38{bottom:855.108150px;}
.y156{bottom:858.739800px;}
.y100{bottom:858.824850px;}
.y185{bottom:859.500000px;}
.y37{bottom:867.105300px;}
.y125{bottom:868.500000px;}
.y155{bottom:876.735300px;}
.yff{bottom:876.820350px;}
.y36{bottom:877.365300px;}
.y184{bottom:877.500000px;}
.y124{bottom:886.500000px;}
.y154{bottom:894.730800px;}
.yfe{bottom:894.815850px;}
.y35{bottom:894.879150px;}
.y183{bottom:895.545000px;}
.y34{bottom:907.254150px;}
.y123{bottom:912.726150px;}
.y153{bottom:912.726300px;}
.yfd{bottom:912.811350px;}
.y182{bottom:913.540500px;}
.y33{bottom:919.254150px;}
.y122{bottom:930.721650px;}
.y152{bottom:930.721800px;}
.yfc{bottom:930.806850px;}
.y32{bottom:931.254150px;}
.y181{bottom:931.536000px;}
.y31{bottom:943.254150px;}
.y95{bottom:946.344750px;}
.y121{bottom:948.717150px;}
.y151{bottom:948.717300px;}
.yfb{bottom:948.802350px;}
.y180{bottom:949.531500px;}
.y30{bottom:955.254150px;}
.y120{bottom:966.712650px;}
.y150{bottom:966.712800px;}
.yfa{bottom:966.797850px;}
.y2f{bottom:967.254150px;}
.y17f{bottom:967.527000px;}
.y94{bottom:979.740750px;}
.y11f{bottom:984.708150px;}
.y14f{bottom:984.708300px;}
.y2e{bottom:984.768150px;}
.yf9{bottom:984.793350px;}
.y17e{bottom:985.522500px;}
.y2d{bottom:997.143150px;}
.y11e{bottom:1002.703650px;}
.y14e{bottom:1002.703800px;}
.yf8{bottom:1002.788850px;}
.y17d{bottom:1003.518000px;}
.y2c{bottom:1009.143150px;}
.y90{bottom:1018.885500px;}
.y93{bottom:1019.111700px;}
.y11d{bottom:1020.699150px;}
.y14d{bottom:1020.699300px;}
.yf7{bottom:1020.784350px;}
.y2b{bottom:1021.143150px;}
.y17c{bottom:1021.513500px;}
.y2a{bottom:1033.143150px;}
.y11c{bottom:1038.694650px;}
.y14c{bottom:1038.694800px;}
.yf6{bottom:1038.779850px;}
.y17b{bottom:1039.509000px;}
.y4d{bottom:1051.005900px;}
.y11b{bottom:1056.690150px;}
.y14b{bottom:1056.690300px;}
.yf5{bottom:1056.775350px;}
.y17a{bottom:1057.504500px;}
.y92{bottom:1061.501700px;}
.y4c{bottom:1062.249900px;}
.y4b{bottom:1073.499900px;}
.y11a{bottom:1074.685650px;}
.y14a{bottom:1074.685800px;}
.y179{bottom:1075.500000px;}
.yd8{bottom:1112.733900px;}
.y176{bottom:1113.232200px;}
.y78{bottom:1143.861300px;}
.h7{height:31.007700px;}
.h1e{height:32.256000px;}
.h1a{height:33.408000px;}
.h14{height:36.864000px;}
.h2e{height:38.744525px;}
.h6{height:39.867300px;}
.h32{height:41.472000px;}
.h1b{height:42.912000px;}
.h5{height:44.296650px;}
.h28{height:44.711424px;}
.h26{height:46.080000px;}
.h1d{height:50.064000px;}
.h20{height:50.070000px;}
.h21{height:50.100000px;}
.hf{height:50.281854px;}
.h1f{height:50.358000px;}
.h11{height:50.688000px;}
.h17{height:51.852000px;}
.h1c{height:52.156500px;}
.h18{height:52.461000px;}
.h2d{height:53.406000px;}
.h30{height:54.108000px;}
.h1{height:54.666000px;}
.h2c{height:55.296000px;}
.h16{height:57.216000px;}
.h15{height:57.552000px;}
.h4{height:57.586050px;}
.h19{height:57.868500px;}
.h23{height:58.124851px;}
.h29{height:59.340000px;}
.h2f{height:59.904000px;}
.h22{height:60.071794px;}
.h31{height:61.440000px;}
.hb{height:64.368000px;}
.h34{height:65.070000px;}
.h12{height:65.360927px;}
.h27{height:69.803382px;}
.ha{height:71.520000px;}
.h25{height:71.940000px;}
.hc{height:72.360000px;}
.h24{height:77.238421px;}
.h9{height:79.596000px;}
.he{height:85.824000px;}
.hd{height:86.832000px;}
.h8{height:92.976000px;}
.h33{height:93.990000px;}
.h10{height:94.068000px;}
.h2b{height:101.376000px;}
.h3{height:110.742300px;}
.h13{height:114.682640px;}
.h2a{height:165.888000px;}
.h2{height:1092.832500px;}
.h0{height:1188.000000px;}
.w1{width:13.500000px;}
.w0{width:864.000000px;}
.x2{left:-770.554650px;}
.x4{left:-758.913398px;}
.x3{left:-636.437550px;}
.x5{left:-168.888300px;}
.x6{left:-131.952300px;}
.x7{left:-121.740431px;}
.x8{left:-99.104810px;}
.x0{left:0.000000px;}
.x25{left:53.491050px;}
.x1b{left:60.387450px;}
.x1c{left:62.340000px;}
.x26{left:64.305450px;}
.x13{left:67.125000px;}
.x1{left:72.231300px;}
.x11{left:75.358950px;}
.x27{left:77.805450px;}
.x18{left:81.000000px;}
.x1f{left:198.897450px;}
.x21{left:201.381450px;}
.x20{left:202.677450px;}
.x15{left:215.179950px;}
.x16{left:259.796700px;}
.x9{left:261.442350px;}
.xc{left:282.862350px;}
.xa{left:288.442350px;}
.x17{left:296.261700px;}
.xb{left:297.442350px;}
.x12{left:320.574750px;}
.x14{left:396.511950px;}
.x29{left:398.975250px;}
.x28{left:412.475250px;}
.x1d{left:441.001500px;}
.x19{left:446.796000px;}
.x1e{left:454.501500px;}
.x1a{left:460.296000px;}
.x24{left:468.000000px;}
.x2b{left:509.967000px;}
.x2c{left:542.582020px;}
.x23{left:556.128000px;}
.x10{left:560.182350px;}
.xe{left:598.342350px;}
.xd{left:600.347700px;}
.x22{left:608.433600px;}
.x2a{left:617.250000px;}
.xf{left:704.323470px;}
@media print{
.v1{vertical-align:-4.154667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.288000pt;}
.v2{vertical-align:7.034667pt;}
.ls32{letter-spacing:-2.880000pt;}
.ls14{letter-spacing:-2.400000pt;}
.ls1e{letter-spacing:-1.936000pt;}
.ls19{letter-spacing:-1.760000pt;}
.ls27{letter-spacing:-1.605333pt;}
.ls23{letter-spacing:-1.493333pt;}
.ls1f{letter-spacing:-1.462213pt;}
.ls38{letter-spacing:-1.440000pt;}
.ls2a{letter-spacing:-1.345483pt;}
.ls36{letter-spacing:-1.345296pt;}
.ls17{letter-spacing:-1.333333pt;}
.ls2d{letter-spacing:-1.293733pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.200000pt;}
.ls1d{letter-spacing:-1.173333pt;}
.ls35{letter-spacing:-1.121080pt;}
.ls25{letter-spacing:-1.120000pt;}
.ls2b{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-1.034987pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.933333pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls37{letter-spacing:-0.693333pt;}
.ls21{letter-spacing:-0.645248pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.580000pt;}
.ls28{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls24{letter-spacing:-0.386667pt;}
.ls1c{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.243702pt;}
.ls29{letter-spacing:-0.223981pt;}
.ls13{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.382800pt;}
.lsd{letter-spacing:0.386667pt;}
.ls10{letter-spacing:0.390533pt;}
.ls15{letter-spacing:0.393750pt;}
.lsc{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.850502pt;}
.ls2f{letter-spacing:1.760000pt;}
.lsb{letter-spacing:2.133333pt;}
.ls11{letter-spacing:5.692427pt;}
.ls1{letter-spacing:6.720000pt;}
.ls2e{letter-spacing:10.368533pt;}
.ls30{letter-spacing:12.266667pt;}
.ls7{letter-spacing:13.258667pt;}
.ls9{letter-spacing:14.614933pt;}
.ls39{letter-spacing:15.381333pt;}
.ls8{letter-spacing:16.000000pt;}
.ls6{letter-spacing:16.122667pt;}
.lsa{letter-spacing:17.306667pt;}
.ls4{letter-spacing:18.666667pt;}
.ls3{letter-spacing:19.786667pt;}
.ls2{letter-spacing:47.285333pt;}
.ls5{letter-spacing:48.517333pt;}
.ls0{letter-spacing:78.666667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws4{word-spacing:-12.906667pt;}
.ws5{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.266667pt;}
.wsc{word-spacing:-11.902347pt;}
.ws2{word-spacing:-11.707441pt;}
.ws33{word-spacing:-11.360000pt;}
.ws6{word-spacing:-11.093333pt;}
.ws3b{word-spacing:-10.826667pt;}
.ws3f{word-spacing:-10.416000pt;}
.ws7{word-spacing:-10.240000pt;}
.ws34{word-spacing:-9.258667pt;}
.ws8{word-spacing:-9.086667pt;}
.ws9{word-spacing:-8.400000pt;}
.ws1{word-spacing:-8.304000pt;}
.wsa{word-spacing:-7.728000pt;}
.ws32{word-spacing:-5.692427pt;}
.ws22{word-spacing:-2.133333pt;}
.ws36{word-spacing:-1.760000pt;}
.ws13{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.931488pt;}
.ws11{word-spacing:-0.850502pt;}
.ws2b{word-spacing:-0.672000pt;}
.wsf{word-spacing:-0.480000pt;}
.ws2c{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.393750pt;}
.ws3c{word-spacing:-0.240000pt;}
.wsd{word-spacing:0.000000pt;}
.ws29{word-spacing:0.038667pt;}
.ws28{word-spacing:0.270667pt;}
.ws1a{word-spacing:0.293333pt;}
.ws23{word-spacing:0.298667pt;}
.ws40{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.ws24{word-spacing:0.580000pt;}
.ws17{word-spacing:0.586667pt;}
.ws20{word-spacing:0.640000pt;}
.ws3a{word-spacing:0.693333pt;}
.ws25{word-spacing:0.800000pt;}
.ws2d{word-spacing:0.933333pt;}
.ws27{word-spacing:0.966667pt;}
.ws31{word-spacing:1.034987pt;}
.ws21{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.120000pt;}
.ws37{word-spacing:1.121080pt;}
.ws1d{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.200000pt;}
.ws1f{word-spacing:1.218511pt;}
.ws12{word-spacing:1.333333pt;}
.ws39{word-spacing:1.345296pt;}
.ws2f{word-spacing:1.345483pt;}
.ws3d{word-spacing:1.440000pt;}
.ws26{word-spacing:1.493333pt;}
.ws14{word-spacing:1.760000pt;}
.ws1e{word-spacing:1.936000pt;}
.ws35{word-spacing:2.880000pt;}
.ws16{word-spacing:15.018667pt;}
.ws19{word-spacing:78.693333pt;}
.ws18{word-spacing:80.000000pt;}
.ws15{word-spacing:82.666667pt;}
.ws1c{word-spacing:84.000000pt;}
.ws3e{word-spacing:1474.072000pt;}
.ws38{word-spacing:1477.592000pt;}
.ws0{word-spacing:1495.192000pt;}
._b{margin-left:-64.000000pt;}
._8{margin-left:-14.645333pt;}
._4{margin-left:-13.138138pt;}
._1a{margin-left:-10.416000pt;}
._19{margin-left:-8.601600pt;}
._16{margin-left:-7.040000pt;}
._5{margin-left:-6.072787pt;}
._18{margin-left:-5.088000pt;}
._13{margin-left:-4.110993pt;}
._1{margin-left:-3.114667pt;}
._6{margin-left:-2.209837pt;}
._2{margin-left:-1.075200pt;}
._0{width:1.024000pt;}
._3{width:2.745600pt;}
._12{width:3.750400pt;}
._d{width:6.362623pt;}
._7{width:9.280000pt;}
._17{width:11.812326pt;}
._1b{width:15.680000pt;}
._10{width:17.341867pt;}
._a{width:21.216000pt;}
._14{width:24.405570pt;}
._f{width:66.668800pt;}
._e{width:73.280000pt;}
._9{width:74.288000pt;}
._11{width:81.335467pt;}
._c{width:85.200000pt;}
._15{width:1481.746667pt;}
.fs11{font-size:21.333333pt;}
.fsf{font-size:32.000000pt;}
.fs7{font-size:36.749867pt;}
.fs10{font-size:37.333333pt;}
.fse{font-size:38.666667pt;}
.fs0{font-size:42.666667pt;}
.fs12{font-size:44.796267pt;}
.fs18{font-size:44.843200pt;}
.fs6{font-size:47.250133pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:48.740438pt;}
.fs15{font-size:51.749333pt;}
.fs5{font-size:52.499733pt;}
.fs2{font-size:53.333333pt;}
.fs14{font-size:56.924267pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fsd{font-size:64.524800pt;}
.fs13{font-size:67.274133pt;}
.fs4{font-size:68.250133pt;}
.fs8{font-size:69.333333pt;}
.fsc{font-size:84.527467pt;}
.fs17{font-size:117.333333pt;}
.fs3{font-size:131.250133pt;}
.fs16{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:14.827067pt;}
.y6{bottom:15.295600pt;}
.y91{bottom:43.040133pt;}
.y1{bottom:44.245467pt;}
.ya{bottom:47.118565pt;}
.y77{bottom:60.736000pt;}
.y9{bottom:64.175863pt;}
.y76{bottom:72.736000pt;}
.y175{bottom:76.012000pt;}
.y1ad{bottom:76.096000pt;}
.y16e{bottom:77.349333pt;}
.y8{bottom:81.233161pt;}
.y119{bottom:83.289467pt;}
.yb5{bottom:84.116000pt;}
.y2{bottom:84.593333pt;}
.y75{bottom:84.736000pt;}
.yd6{bottom:86.192000pt;}
.y28{bottom:89.333333pt;}
.y174{bottom:92.008000pt;}
.y1ac{bottom:92.092000pt;}
.y16d{bottom:93.345333pt;}
.y74{bottom:95.394667pt;}
.y7{bottom:98.290459pt;}
.y118{bottom:99.285467pt;}
.yb4{bottom:100.112000pt;}
.y27{bottom:101.333333pt;}
.yd5{bottom:102.188000pt;}
.y73{bottom:106.062667pt;}
.y173{bottom:108.004000pt;}
.y1ab{bottom:108.088000pt;}
.y16c{bottom:109.341333pt;}
.y117{bottom:115.281467pt;}
.y26{bottom:116.000000pt;}
.yb3{bottom:116.108000pt;}
.y72{bottom:116.730667pt;}
.yd4{bottom:118.184000pt;}
.y172{bottom:124.000000pt;}
.y1aa{bottom:124.084000pt;}
.y16b{bottom:125.337333pt;}
.y71{bottom:127.398667pt;}
.yb2{bottom:132.104000pt;}
.yd3{bottom:134.180000pt;}
.y4{bottom:134.792667pt;}
.y70{bottom:138.066667pt;}
.y171{bottom:140.000000pt;}
.y1a9{bottom:140.080000pt;}
.y16a{bottom:141.333333pt;}
.y8f{bottom:146.493600pt;}
.y25{bottom:146.666667pt;}
.yb1{bottom:148.100000pt;}
.y6f{bottom:148.734667pt;}
.yd2{bottom:150.176000pt;}
.y1a8{bottom:156.076000pt;}
.y24{bottom:158.666667pt;}
.y6e{bottom:159.404000pt;}
.y8e{bottom:162.018400pt;}
.yf4{bottom:164.083867pt;}
.yb0{bottom:164.096000pt;}
.yd1{bottom:166.172000pt;}
.y6d{bottom:170.072000pt;}
.y170{bottom:172.004000pt;}
.y3{bottom:172.019067pt;}
.y1a7{bottom:172.072000pt;}
.y23{bottom:173.334667pt;}
.y149{bottom:180.032000pt;}
.yf3{bottom:180.079867pt;}
.yaf{bottom:180.092000pt;}
.y6c{bottom:180.740000pt;}
.yd0{bottom:182.168000pt;}
.y22{bottom:186.666667pt;}
.y16f{bottom:188.000000pt;}
.y1a6{bottom:188.068000pt;}
.y6b{bottom:195.402667pt;}
.y148{bottom:196.028000pt;}
.yf2{bottom:196.075867pt;}
.yae{bottom:196.088000pt;}
.ycf{bottom:198.164000pt;}
.y21{bottom:200.000000pt;}
.y8d{bottom:200.830267pt;}
.y1a5{bottom:204.064000pt;}
.y6a{bottom:207.401333pt;}
.y147{bottom:212.024000pt;}
.yf1{bottom:212.071867pt;}
.yad{bottom:212.084000pt;}
.yce{bottom:214.160000pt;}
.y20{bottom:214.666667pt;}
.y8c{bottom:216.355067pt;}
.y69{bottom:218.069333pt;}
.y1a4{bottom:220.060000pt;}
.y178{bottom:226.911733pt;}
.y146{bottom:228.020000pt;}
.yf0{bottom:228.067867pt;}
.yac{bottom:228.080000pt;}
.y68{bottom:228.736000pt;}
.ycd{bottom:230.156000pt;}
.y8b{bottom:231.879867pt;}
.y1f{bottom:233.333333pt;}
.y1a3{bottom:236.056000pt;}
.y177{bottom:238.122533pt;}
.y67{bottom:239.402667pt;}
.y145{bottom:244.016000pt;}
.yef{bottom:244.063867pt;}
.yab{bottom:244.076000pt;}
.ycc{bottom:246.152000pt;}
.y8a{bottom:247.404667pt;}
.y66{bottom:250.062667pt;}
.y144{bottom:260.012000pt;}
.yee{bottom:260.059867pt;}
.yaa{bottom:260.072000pt;}
.ycb{bottom:262.148000pt;}
.y1e{bottom:262.666667pt;}
.y89{bottom:262.929467pt;}
.y65{bottom:263.400000pt;}
.y64{bottom:274.068000pt;}
.y1d{bottom:274.666667pt;}
.y143{bottom:276.008000pt;}
.yed{bottom:276.055867pt;}
.ya9{bottom:276.068000pt;}
.yca{bottom:278.144000pt;}
.y88{bottom:278.454267pt;}
.y63{bottom:284.736000pt;}
.y1c{bottom:292.000000pt;}
.y142{bottom:292.004000pt;}
.yec{bottom:292.051867pt;}
.ya8{bottom:292.064000pt;}
.ye{bottom:292.973913pt;}
.y87{bottom:293.979067pt;}
.yc9{bottom:294.140000pt;}
.y62{bottom:295.402667pt;}
.y1a2{bottom:300.052000pt;}
.y61{bottom:306.069333pt;}
.yd{bottom:307.407423pt;}
.y141{bottom:308.000000pt;}
.y1b{bottom:308.001333pt;}
.yeb{bottom:308.047867pt;}
.ya7{bottom:308.060000pt;}
.y86{bottom:309.503867pt;}
.yc8{bottom:310.136000pt;}
.y1a1{bottom:316.048000pt;}
.y60{bottom:320.724667pt;}
.yc{bottom:321.840933pt;}
.y1a{bottom:324.000000pt;}
.yea{bottom:324.043867pt;}
.ya6{bottom:324.056000pt;}
.y85{bottom:325.028667pt;}
.yc7{bottom:326.132000pt;}
.y5f{bottom:331.725333pt;}
.y1a0{bottom:332.044000pt;}
.yb{bottom:336.278533pt;}
.y19{bottom:337.334667pt;}
.ye9{bottom:340.039867pt;}
.ya5{bottom:340.052000pt;}
.y140{bottom:340.104000pt;}
.y84{bottom:340.553467pt;}
.yc6{bottom:342.128000pt;}
.y5e{bottom:342.726000pt;}
.y19f{bottom:348.040000pt;}
.y18{bottom:350.666667pt;}
.y5d{bottom:353.726667pt;}
.ye8{bottom:356.035867pt;}
.ya4{bottom:356.048000pt;}
.y13f{bottom:356.100000pt;}
.yc5{bottom:358.124000pt;}
.y17{bottom:364.000000pt;}
.y19e{bottom:364.036000pt;}
.y5c{bottom:364.727333pt;}
.y83{bottom:371.641333pt;}
.ye7{bottom:372.031867pt;}
.ya3{bottom:372.044000pt;}
.y13e{bottom:372.096000pt;}
.yc4{bottom:374.120000pt;}
.y5b{bottom:375.728000pt;}
.y19d{bottom:380.032000pt;}
.y5a{bottom:386.728667pt;}
.y82{bottom:387.161333pt;}
.ye6{bottom:388.027867pt;}
.ya2{bottom:388.040000pt;}
.y13d{bottom:388.092000pt;}
.yc3{bottom:390.116000pt;}
.y16{bottom:392.000000pt;}
.y116{bottom:395.340133pt;}
.y19c{bottom:396.028000pt;}
.y59{bottom:397.729333pt;}
.y81{bottom:402.681333pt;}
.ye5{bottom:404.023867pt;}
.ya1{bottom:404.036000pt;}
.y13c{bottom:404.088000pt;}
.y15{bottom:405.333333pt;}
.yc2{bottom:406.112000pt;}
.y58{bottom:408.730000pt;}
.y115{bottom:411.336133pt;}
.y19b{bottom:412.024000pt;}
.y80{bottom:418.201333pt;}
.y57{bottom:419.730667pt;}
.ye4{bottom:420.019867pt;}
.ya0{bottom:420.032000pt;}
.y13b{bottom:420.084000pt;}
.yc1{bottom:422.108000pt;}
.y14{bottom:426.666667pt;}
.y114{bottom:427.332133pt;}
.y19a{bottom:428.020000pt;}
.y56{bottom:430.731333pt;}
.y7f{bottom:433.721333pt;}
.ye3{bottom:436.015867pt;}
.y9f{bottom:436.028000pt;}
.y13a{bottom:436.080000pt;}
.yc0{bottom:438.104000pt;}
.y13{bottom:440.000000pt;}
.y55{bottom:441.732000pt;}
.y113{bottom:443.328133pt;}
.y199{bottom:444.016000pt;}
.y169{bottom:444.024133pt;}
.y7e{bottom:449.241333pt;}
.ye2{bottom:452.011867pt;}
.y9e{bottom:452.024000pt;}
.y139{bottom:452.076000pt;}
.y54{bottom:452.732667pt;}
.ybf{bottom:454.100000pt;}
.y112{bottom:459.324133pt;}
.y198{bottom:460.012000pt;}
.y168{bottom:460.020133pt;}
.y12{bottom:461.333333pt;}
.y53{bottom:463.733333pt;}
.y7d{bottom:464.761333pt;}
.ye1{bottom:468.007867pt;}
.y9d{bottom:468.020000pt;}
.y138{bottom:468.072000pt;}
.ybe{bottom:470.096000pt;}
.y52{bottom:474.734000pt;}
.y111{bottom:475.320133pt;}
.y197{bottom:476.008000pt;}
.y167{bottom:476.016133pt;}
.y7c{bottom:480.281333pt;}
.y11{bottom:482.666667pt;}
.ye0{bottom:484.003867pt;}
.y9c{bottom:484.016000pt;}
.y137{bottom:484.068000pt;}
.y51{bottom:485.734667pt;}
.ybd{bottom:486.092000pt;}
.y110{bottom:491.316133pt;}
.y196{bottom:492.004000pt;}
.y166{bottom:492.012133pt;}
.y7b{bottom:495.801333pt;}
.y10{bottom:496.000000pt;}
.y50{bottom:496.735333pt;}
.ydf{bottom:499.999867pt;}
.y136{bottom:500.064000pt;}
.ybc{bottom:502.088000pt;}
.y10f{bottom:507.312133pt;}
.y4f{bottom:507.736000pt;}
.y195{bottom:508.000000pt;}
.y165{bottom:508.008133pt;}
.y7a{bottom:511.324706pt;}
.yf{bottom:514.666667pt;}
.y9b{bottom:516.020000pt;}
.y135{bottom:516.060000pt;}
.yde{bottom:517.185467pt;}
.ybb{bottom:518.084000pt;}
.y4e{bottom:518.736000pt;}
.y10e{bottom:523.308133pt;}
.y194{bottom:524.000000pt;}
.y164{bottom:524.004133pt;}
.y79{bottom:529.438267pt;}
.y9a{bottom:532.016000pt;}
.y134{bottom:532.056000pt;}
.yba{bottom:534.080000pt;}
.y10d{bottom:539.304133pt;}
.y163{bottom:540.000133pt;}
.y193{bottom:540.056000pt;}
.y99{bottom:548.012000pt;}
.y133{bottom:548.052000pt;}
.ydd{bottom:549.197467pt;}
.yb9{bottom:550.076000pt;}
.y10c{bottom:555.300133pt;}
.y162{bottom:556.000133pt;}
.y192{bottom:556.052000pt;}
.y29{bottom:557.588133pt;}
.y4a{bottom:562.904800pt;}
.y98{bottom:564.008000pt;}
.y132{bottom:564.048000pt;}
.ydc{bottom:565.193467pt;}
.yb8{bottom:566.072000pt;}
.y10b{bottom:571.296133pt;}
.y161{bottom:572.028133pt;}
.y191{bottom:572.048000pt;}
.y49{bottom:573.567133pt;}
.y97{bottom:580.004000pt;}
.y131{bottom:580.044000pt;}
.ydb{bottom:581.189467pt;}
.yb7{bottom:582.068000pt;}
.y48{bottom:584.229467pt;}
.y10a{bottom:587.292133pt;}
.y160{bottom:588.024133pt;}
.y190{bottom:588.044000pt;}
.y47{bottom:594.891800pt;}
.y96{bottom:596.000000pt;}
.y130{bottom:596.040000pt;}
.yda{bottom:597.185467pt;}
.yb6{bottom:598.064000pt;}
.y109{bottom:603.288133pt;}
.y15f{bottom:604.020133pt;}
.y18f{bottom:604.040000pt;}
.y46{bottom:605.554133pt;}
.y12f{bottom:612.036000pt;}
.y45{bottom:616.216467pt;}
.y108{bottom:619.284133pt;}
.y15e{bottom:620.016133pt;}
.y18e{bottom:620.036000pt;}
.yd9{bottom:620.929333pt;}
.y44{bottom:626.878800pt;}
.y12e{bottom:628.032000pt;}
.yd7{bottom:629.232000pt;}
.y107{bottom:635.280133pt;}
.y15d{bottom:636.012133pt;}
.y18d{bottom:636.032000pt;}
.y43{bottom:637.541133pt;}
.y12d{bottom:644.028000pt;}
.y42{bottom:648.203467pt;}
.y106{bottom:651.276133pt;}
.y15c{bottom:652.008133pt;}
.y18c{bottom:652.028000pt;}
.y41{bottom:658.865800pt;}
.y12c{bottom:660.024000pt;}
.y105{bottom:667.276133pt;}
.y15b{bottom:668.004133pt;}
.y18b{bottom:668.024000pt;}
.y40{bottom:669.528133pt;}
.y12b{bottom:676.020000pt;}
.y3f{bottom:680.194800pt;}
.y15a{bottom:684.000133pt;}
.y18a{bottom:684.020000pt;}
.y12a{bottom:692.016000pt;}
.y3e{bottom:695.770800pt;}
.y159{bottom:699.276267pt;}
.y104{bottom:699.415867pt;}
.y189{bottom:700.016000pt;}
.y3d{bottom:706.771467pt;}
.y129{bottom:708.012000pt;}
.y103{bottom:715.411867pt;}
.y188{bottom:716.012000pt;}
.y3c{bottom:717.433800pt;}
.y128{bottom:724.008000pt;}
.y3b{bottom:728.096133pt;}
.y158{bottom:731.332267pt;}
.y102{bottom:731.407867pt;}
.y187{bottom:732.008000pt;}
.y3a{bottom:738.767133pt;}
.y127{bottom:740.004000pt;}
.y157{bottom:747.328267pt;}
.y101{bottom:747.403867pt;}
.y186{bottom:748.004000pt;}
.y39{bottom:749.429467pt;}
.y126{bottom:756.000000pt;}
.y38{bottom:760.096133pt;}
.y156{bottom:763.324267pt;}
.y100{bottom:763.399867pt;}
.y185{bottom:764.000000pt;}
.y37{bottom:770.760267pt;}
.y125{bottom:772.000000pt;}
.y155{bottom:779.320267pt;}
.yff{bottom:779.395867pt;}
.y36{bottom:779.880267pt;}
.y184{bottom:780.000000pt;}
.y124{bottom:788.000000pt;}
.y154{bottom:795.316267pt;}
.yfe{bottom:795.391867pt;}
.y35{bottom:795.448133pt;}
.y183{bottom:796.040000pt;}
.y34{bottom:806.448133pt;}
.y123{bottom:811.312133pt;}
.y153{bottom:811.312267pt;}
.yfd{bottom:811.387867pt;}
.y182{bottom:812.036000pt;}
.y33{bottom:817.114800pt;}
.y122{bottom:827.308133pt;}
.y152{bottom:827.308267pt;}
.yfc{bottom:827.383867pt;}
.y32{bottom:827.781467pt;}
.y181{bottom:828.032000pt;}
.y31{bottom:838.448133pt;}
.y95{bottom:841.195333pt;}
.y121{bottom:843.304133pt;}
.y151{bottom:843.304267pt;}
.yfb{bottom:843.379867pt;}
.y180{bottom:844.028000pt;}
.y30{bottom:849.114800pt;}
.y120{bottom:859.300133pt;}
.y150{bottom:859.300267pt;}
.yfa{bottom:859.375867pt;}
.y2f{bottom:859.781467pt;}
.y17f{bottom:860.024000pt;}
.y94{bottom:870.880667pt;}
.y11f{bottom:875.296133pt;}
.y14f{bottom:875.296267pt;}
.y2e{bottom:875.349467pt;}
.yf9{bottom:875.371867pt;}
.y17e{bottom:876.020000pt;}
.y2d{bottom:886.349467pt;}
.y11e{bottom:891.292133pt;}
.y14e{bottom:891.292267pt;}
.yf8{bottom:891.367867pt;}
.y17d{bottom:892.016000pt;}
.y2c{bottom:897.016133pt;}
.y90{bottom:905.676000pt;}
.y93{bottom:905.877067pt;}
.y11d{bottom:907.288133pt;}
.y14d{bottom:907.288267pt;}
.yf7{bottom:907.363867pt;}
.y2b{bottom:907.682800pt;}
.y17c{bottom:908.012000pt;}
.y2a{bottom:918.349467pt;}
.y11c{bottom:923.284133pt;}
.y14c{bottom:923.284267pt;}
.yf6{bottom:923.359867pt;}
.y17b{bottom:924.008000pt;}
.y4d{bottom:934.227467pt;}
.y11b{bottom:939.280133pt;}
.y14b{bottom:939.280267pt;}
.yf5{bottom:939.355867pt;}
.y17a{bottom:940.004000pt;}
.y92{bottom:943.557067pt;}
.y4c{bottom:944.222133pt;}
.y4b{bottom:954.222133pt;}
.y11a{bottom:955.276133pt;}
.y14a{bottom:955.276267pt;}
.y179{bottom:956.000000pt;}
.yd8{bottom:989.096800pt;}
.y176{bottom:989.539733pt;}
.y78{bottom:1016.765600pt;}
.h7{height:27.562400pt;}
.h1e{height:28.672000pt;}
.h1a{height:29.696000pt;}
.h14{height:32.768000pt;}
.h2e{height:34.439578pt;}
.h6{height:35.437600pt;}
.h32{height:36.864000pt;}
.h1b{height:38.144000pt;}
.h5{height:39.374800pt;}
.h28{height:39.743488pt;}
.h26{height:40.960000pt;}
.h1d{height:44.501333pt;}
.h20{height:44.506667pt;}
.h21{height:44.533333pt;}
.hf{height:44.694981pt;}
.h1f{height:44.762667pt;}
.h11{height:45.056000pt;}
.h17{height:46.090667pt;}
.h1c{height:46.361333pt;}
.h18{height:46.632000pt;}
.h2d{height:47.472000pt;}
.h30{height:48.096000pt;}
.h1{height:48.592000pt;}
.h2c{height:49.152000pt;}
.h16{height:50.858667pt;}
.h15{height:51.157333pt;}
.h4{height:51.187600pt;}
.h19{height:51.438667pt;}
.h23{height:51.666534pt;}
.h29{height:52.746667pt;}
.h2f{height:53.248000pt;}
.h22{height:53.397150pt;}
.h31{height:54.613333pt;}
.hb{height:57.216000pt;}
.h34{height:57.840000pt;}
.h12{height:58.098602pt;}
.h27{height:62.047451pt;}
.ha{height:63.573333pt;}
.h25{height:63.946667pt;}
.hc{height:64.320000pt;}
.h24{height:68.656374pt;}
.h9{height:70.752000pt;}
.he{height:76.288000pt;}
.hd{height:77.184000pt;}
.h8{height:82.645333pt;}
.h33{height:83.546667pt;}
.h10{height:83.616000pt;}
.h2b{height:90.112000pt;}
.h3{height:98.437600pt;}
.h13{height:101.940125pt;}
.h2a{height:147.456000pt;}
.h2{height:971.406667pt;}
.h0{height:1056.000000pt;}
.w1{width:12.000000pt;}
.w0{width:768.000000pt;}
.x2{left:-684.937467pt;}
.x4{left:-674.589687pt;}
.x3{left:-565.722267pt;}
.x5{left:-150.122933pt;}
.x6{left:-117.290933pt;}
.x7{left:-108.213716pt;}
.x8{left:-88.093164pt;}
.x0{left:0.000000pt;}
.x25{left:47.547600pt;}
.x1b{left:53.677733pt;}
.x1c{left:55.413333pt;}
.x26{left:57.160400pt;}
.x13{left:59.666667pt;}
.x1{left:64.205600pt;}
.x11{left:66.985733pt;}
.x27{left:69.160400pt;}
.x18{left:72.000000pt;}
.x1f{left:176.797733pt;}
.x21{left:179.005733pt;}
.x20{left:180.157733pt;}
.x15{left:191.271067pt;}
.x16{left:230.930400pt;}
.x9{left:232.393200pt;}
.xc{left:251.433200pt;}
.xa{left:256.393200pt;}
.x17{left:263.343733pt;}
.xb{left:264.393200pt;}
.x12{left:284.955333pt;}
.x14{left:352.455067pt;}
.x29{left:354.644667pt;}
.x28{left:366.644667pt;}
.x1d{left:392.001333pt;}
.x19{left:397.152000pt;}
.x1e{left:404.001333pt;}
.x1a{left:409.152000pt;}
.x24{left:416.000000pt;}
.x2b{left:453.304000pt;}
.x2c{left:482.295129pt;}
.x23{left:494.336000pt;}
.x10{left:497.939867pt;}
.xe{left:531.859867pt;}
.xd{left:533.642400pt;}
.x22{left:540.829867pt;}
.x2a{left:548.666667pt;}
.xf{left:626.065307pt;}
}




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