
    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_0af1ad38836dfb7dcbc8c955.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_fa3bcc965454daaaa08f0ee4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_85817991f6ee447bc1b13877.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_f9cfb6c1d9c15996341db6ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_4ea7b0cdc3f0668042338074.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_bda1a60f5aaf94931687b8b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_b9733a9251b0256859ce5734.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_b8fee484a0e60b6b27a06fcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_da9ca0964ab6fc27d3b2e105.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7a45e6f5ada9a65e6b0ca77d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_9d5c05f36114c1512ce1888a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104980;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_6c9ea7302b45cfef1dfa5e5a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107422;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_683c191843a6e795cefbba57.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_11096cf202d8ab06a3536095.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.115234;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_577fbec7c0b5814a625cdbaa.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_9917ef8ce5e86a45311b23fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104492;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_2079fc08b7cdf80d5f01226e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_bede4fcf002debe29929dca6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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_7d00d40221f973173f3bbfe7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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_6413a533ebf1203b7b93c977.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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_8147ce5f57d16c2fee189c7d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.961914;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_afc303b6c97c40f3a9f7a6bf.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.372070;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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:ff18;src:url('chunks/assets/font_9519c93a45960d957fe18a65.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.776855;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:21.600000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.lsb{letter-spacing:-5.472000px;}
.ls25{letter-spacing:-4.824000px;}
.ls1f{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-1.152000px;}
.ls34{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.936000px;}
.ls2e{letter-spacing:-0.507000px;}
.ls21{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.501000px;}
.ls6{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.250800px;}
.ls7{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.015840px;}
.ls2d{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.134400px;}
.ls27{letter-spacing:0.135840px;}
.ls0{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.163920px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.269280px;}
.lsa{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.466560px;}
.ls2f{letter-spacing:0.466800px;}
.ls12{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.586560px;}
.ls22{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.684000px;}
.ls29{letter-spacing:0.936000px;}
.ls30{letter-spacing:0.972000px;}
.ls28{letter-spacing:1.188000px;}
.ls11{letter-spacing:1.189440px;}
.ls24{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.309440px;}
.ls2a{letter-spacing:1.455840px;}
.ls37{letter-spacing:1.458000px;}
.ls13{letter-spacing:1.584000px;}
.ls38{letter-spacing:1.704000px;}
.ls36{letter-spacing:1.906560px;}
.ls26{letter-spacing:3.024000px;}
.ls35{letter-spacing:6.240000px;}
.ls31{letter-spacing:11.998560px;}
.ls32{letter-spacing:13.426560px;}
.lsf{letter-spacing:27.504000px;}
.ls18{letter-spacing:30.384000px;}
.ls1b{letter-spacing:44.784000px;}
.ls20{letter-spacing:54.864000px;}
.ls1a{letter-spacing:63.504000px;}
.ls9{letter-spacing:192.360000px;}
.ls1d{letter-spacing:844.284000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws1{word-spacing:-39.888000px;}
.ws4{word-spacing:-39.060000px;}
.ws3{word-spacing:-38.856000px;}
.ws0{word-spacing:-36.810480px;}
.ws2{word-spacing:-29.736000px;}
.ws1a{word-spacing:-21.312000px;}
.ws8{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.872000px;}
.ws17{word-spacing:-19.512000px;}
.wsc{word-spacing:-19.080000px;}
.ws18{word-spacing:-19.026720px;}
.ws1c{word-spacing:-18.864000px;}
.ws16{word-spacing:-18.720000px;}
.ws21{word-spacing:-18.271440px;}
.ws20{word-spacing:-17.785440px;}
.ws1f{word-spacing:-16.833600px;}
.ws19{word-spacing:-16.813440px;}
.ws1e{word-spacing:-16.306440px;}
.ws9{word-spacing:-14.544000px;}
.ws1b{word-spacing:-14.398560px;}
.ws1d{word-spacing:-14.146560px;}
.wsb{word-spacing:-13.229520px;}
.wsd{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.210560px;}
.wse{word-spacing:-12.959760px;}
.ws10{word-spacing:-12.709560px;}
.ws14{word-spacing:-10.821600px;}
.ws15{word-spacing:-10.808640px;}
.ws12{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-17.556000px;}
._12{margin-left:-15.576000px;}
._58{margin-left:-12.960000px;}
._7{margin-left:-8.640000px;}
._c{margin-left:-6.720000px;}
._5{margin-left:-4.752000px;}
._4{margin-left:-3.744000px;}
._3{margin-left:-2.328000px;}
._1{margin-left:-1.118400px;}
._0{width:1.449360px;}
._2{width:3.014400px;}
._d{width:4.872000px;}
._16{width:6.461040px;}
._14{width:7.776000px;}
._13{width:8.784000px;}
._1d{width:10.080000px;}
._10{width:11.520000px;}
._1c{width:12.795840px;}
._1b{width:13.819680px;}
._e{width:15.336000px;}
._8{width:16.968000px;}
._9{width:18.432000px;}
._64{width:19.717200px;}
._f{width:21.672000px;}
._15{width:22.680960px;}
._b{width:24.338640px;}
._a{width:25.344000px;}
._17{width:26.582640px;}
._19{width:28.275120px;}
._18{width:29.534640px;}
._2b{width:31.208640px;}
._1e{width:32.756400px;}
._22{width:33.917280px;}
._1a{width:35.064000px;}
._26{width:36.271440px;}
._21{width:37.368000px;}
._25{width:38.501280px;}
._20{width:39.962640px;}
._1f{width:41.196000px;}
._24{width:42.626640px;}
._23{width:43.704000px;}
._2d{width:45.302640px;}
._45{width:47.419920px;}
._40{width:49.094640px;}
._6b{width:50.286960px;}
._41{width:51.823680px;}
._30{width:53.784000px;}
._6c{width:55.537200px;}
._2e{width:57.590640px;}
._2f{width:58.685280px;}
._2a{width:60.912000px;}
._37{width:62.784000px;}
._46{width:64.392000px;}
._51{width:65.750640px;}
._52{width:67.262640px;}
._5e{width:68.464560px;}
._72{width:70.194720px;}
._73{width:71.713200px;}
._35{width:73.733280px;}
._32{width:75.384000px;}
._3e{width:77.189280px;}
._56{width:78.753360px;}
._29{width:80.289600px;}
._28{width:81.317040px;}
._76{width:83.222640px;}
._6d{width:84.542640px;}
._4f{width:86.030640px;}
._50{width:87.086400px;}
._5a{width:90.770160px;}
._4a{width:91.790640px;}
._31{width:93.485040px;}
._65{width:96.450480px;}
._71{width:97.562640px;}
._33{width:98.582640px;}
._70{width:99.842640px;}
._3d{width:101.117040px;}
._4e{width:103.737600px;}
._3a{width:105.005040px;}
._4d{width:106.027680px;}
._79{width:110.376000px;}
._6f{width:112.113360px;}
._38{width:113.534640px;}
._75{width:114.974640px;}
._59{width:119.667120px;}
._3b{width:121.464000px;}
._36{width:122.616000px;}
._27{width:127.224000px;}
._4c{width:129.302640px;}
._2c{width:133.920000px;}
._62{width:138.818400px;}
._54{width:140.549280px;}
._5d{width:141.612480px;}
._44{width:142.632000px;}
._43{width:143.918640px;}
._66{width:145.847040px;}
._47{width:149.333280px;}
._48{width:150.545040px;}
._67{width:151.653120px;}
._53{width:161.822640px;}
._77{width:164.405040px;}
._3c{width:172.358640px;}
._61{width:175.179840px;}
._60{width:176.211360px;}
._42{width:178.920000px;}
._4b{width:186.264000px;}
._39{width:188.616000px;}
._6a{width:190.584000px;}
._74{width:192.269040px;}
._49{width:197.568000px;}
._78{width:199.949280px;}
._69{width:207.720240px;}
._34{width:208.790640px;}
._3f{width:213.984000px;}
._6e{width:221.976000px;}
._57{width:233.482080px;}
._68{width:291.817200px;}
._55{width:309.816000px;}
._5c{width:326.954880px;}
._5b{width:328.920000px;}
._63{width:373.314480px;}
._6{width:844.140000px;}
._5f{width:994.202160px;}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(146,208,80);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(255,192,0);}
.fc5{color:rgb(68,114,196);}
.fc3{color:transparent;}
.fcb{color:rgb(33,33,33);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(154,0,64);}
.fs9{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fsb{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:156.240000px;}
.y238{bottom:-39.630000px;}
.y144{bottom:-39.240000px;}
.y149{bottom:-24.120000px;}
.y0{bottom:0.000000px;}
.y18f{bottom:1.800000px;}
.y237{bottom:3.240000px;}
.yf1{bottom:3.960000px;}
.y309{bottom:3.990000px;}
.yeb{bottom:4.320000px;}
.yef{bottom:4.350000px;}
.yea{bottom:4.680000px;}
.y30f{bottom:4.710000px;}
.y14d{bottom:5.040000px;}
.y23e{bottom:6.120000px;}
.y15b{bottom:7.920000px;}
.y2d3{bottom:8.640000px;}
.yf4{bottom:9.360000px;}
.y159{bottom:10.080000px;}
.y230{bottom:10.440000px;}
.y2c5{bottom:10.470000px;}
.yf6{bottom:11.160000px;}
.y115{bottom:12.960000px;}
.y117{bottom:13.320000px;}
.y125{bottom:13.680000px;}
.y113{bottom:14.760000px;}
.y148{bottom:19.125000px;}
.yc8{bottom:23.760000px;}
.y30c{bottom:24.480000px;}
.y2ec{bottom:24.834000px;}
.y186{bottom:24.840000px;}
.y18d{bottom:24.843000px;}
.yee{bottom:24.870000px;}
.y17b{bottom:24.885000px;}
.y173{bottom:25.200000px;}
.yed{bottom:25.230000px;}
.y2ce{bottom:30.990000px;}
.y154{bottom:33.480000px;}
.y13c{bottom:33.840000px;}
.y236{bottom:34.920000px;}
.y14c{bottom:36.000000px;}
.y23d{bottom:37.470000px;}
.y22f{bottom:42.120000px;}
.y2eb{bottom:45.354000px;}
.y185{bottom:45.360000px;}
.y19e{bottom:45.390000px;}
.y2db{bottom:45.405000px;}
.y306{bottom:45.714000px;}
.y191{bottom:45.720000px;}
.y18c{bottom:45.723000px;}
.y1a1{bottom:45.750000px;}
.y17a{bottom:45.765000px;}
.y305{bottom:46.074000px;}
.y312{bottom:46.080000px;}
.y2fc{bottom:46.110000px;}
.y143{bottom:46.845000px;}
.y150{bottom:47.160000px;}
.y147{bottom:50.445000px;}
.y2c7{bottom:51.480000px;}
.y158{bottom:52.920000px;}
.y35{bottom:56.700000px;}
.y5f{bottom:56.880000px;}
.y171{bottom:56.916000px;}
.y140{bottom:63.000000px;}
.y153{bottom:65.520000px;}
.y30b{bottom:65.925000px;}
.y31a{bottom:66.234000px;}
.y18a{bottom:66.240000px;}
.y184{bottom:66.270000px;}
.y2ea{bottom:66.279000px;}
.y179{bottom:66.285000px;}
.y319{bottom:66.594000px;}
.y2fe{bottom:66.600000px;}
.y302{bottom:66.630000px;}
.y14b{bottom:67.350000px;}
.y235{bottom:77.400000px;}
.y34{bottom:77.436000px;}
.y5e{bottom:77.796000px;}
.y142{bottom:78.165000px;}
.y14f{bottom:78.480000px;}
.y23c{bottom:80.310000px;}
.y157{bottom:84.270000px;}
.y22e{bottom:84.600000px;}
.y2df{bottom:86.760000px;}
.y183{bottom:86.790000px;}
.y2e9{bottom:86.799000px;}
.y189{bottom:86.805000px;}
.y2e3{bottom:87.120000px;}
.y19b{bottom:87.150000px;}
.y318{bottom:87.159000px;}
.y178{bottom:87.165000px;}
.y146{bottom:93.645000px;}
.y152{bottom:96.480000px;}
.y2de{bottom:107.640000px;}
.y182{bottom:107.670000px;}
.y2e8{bottom:107.679000px;}
.y188{bottom:107.685000px;}
.y177{bottom:107.715000px;}
.y234{bottom:109.080000px;}
.y23b{bottom:111.630000px;}
.y2d2{bottom:112.356000px;}
.y138{bottom:114.156000px;}
.y156{bottom:115.230000px;}
.y317{bottom:115.596000px;}
.y304{bottom:116.316000px;}
.y260{bottom:117.396000px;}
.y1f1{bottom:118.476000px;}
.y219{bottom:118.836000px;}
.y1e6{bottom:124.956000px;}
.y4e{bottom:127.476000px;}
.y181{bottom:128.190000px;}
.y2e7{bottom:128.199000px;}
.y196{bottom:128.205000px;}
.y19d{bottom:128.235000px;}
.y19a{bottom:128.550000px;}
.y298{bottom:128.556000px;}
.y2e2{bottom:128.565000px;}
.y176{bottom:128.595000px;}
.yb9{bottom:131.076000px;}
.y2e4{bottom:133.596000px;}
.y7f{bottom:135.396000px;}
.y9e{bottom:136.476000px;}
.y13{bottom:137.196000px;}
.y2f6{bottom:138.636000px;}
.y18b{bottom:138.672000px;}
.y233{bottom:140.085000px;}
.y1a4{bottom:140.112000px;}
.y2b2{bottom:142.596000px;}
.y25f{bottom:143.316000px;}
.yd8{bottom:147.996000px;}
.y2f2{bottom:148.710000px;}
.y199{bottom:149.070000px;}
.y2e6{bottom:149.079000px;}
.y195{bottom:149.085000px;}
.y180{bottom:149.100000px;}
.y175{bottom:149.115000px;}
.y1f0{bottom:150.510000px;}
.y2c8{bottom:151.995000px;}
.y1bd{bottom:154.110000px;}
.y297{bottom:154.470000px;}
.y23a{bottom:154.875000px;}
.y1e5{bottom:156.270000px;}
.y137{bottom:156.990000px;}
.y2cc{bottom:161.355000px;}
.y122{bottom:161.670000px;}
.y19c{bottom:161.715000px;}
.y218{bottom:162.030000px;}
.yb8{bottom:162.390000px;}
.y7e{bottom:166.710000px;}
.y9d{bottom:167.430000px;}
.y2b1{bottom:168.510000px;}
.y25e{bottom:169.230000px;}
.y2e5{bottom:169.599000px;}
.y17f{bottom:169.620000px;}
.y194{bottom:169.635000px;}
.y1a8{bottom:169.950000px;}
.y2e1{bottom:169.965000px;}
.y198{bottom:169.980000px;}
.y4d{bottom:170.490000px;}
.y1d2{bottom:170.670000px;}
.y15a{bottom:173.550000px;}
.y21b{bottom:174.675000px;}
.y27e{bottom:178.590000px;}
.y303{bottom:178.950000px;}
.yd7{bottom:179.310000px;}
.y1ef{bottom:181.830000px;}
.y232{bottom:182.925000px;}
.y1bc{bottom:185.430000px;}
.y22c{bottom:187.230000px;}
.y1e4{bottom:187.590000px;}
.y2f1{bottom:190.155000px;}
.y17e{bottom:190.500000px;}
.y193{bottom:190.515000px;}
.y296{bottom:192.270000px;}
.y121{bottom:192.990000px;}
.yb7{bottom:193.350000px;}
.y2b0{bottom:194.475000px;}
.y25d{bottom:195.195000px;}
.y21e{bottom:196.245000px;}
.y21d{bottom:196.605000px;}
.y7d{bottom:197.355000px;}
.y9c{bottom:198.435000px;}
.y13e{bottom:198.750000px;}
.y136{bottom:200.235000px;}
.y187{bottom:201.705000px;}
.y12{bottom:201.990000px;}
.y1d1{bottom:202.035000px;}
.y1a3{bottom:203.145000px;}
.y27d{bottom:204.555000px;}
.y2cb{bottom:204.585000px;}
.y20a{bottom:205.275000px;}
.yd6{bottom:210.315000px;}
.y17d{bottom:211.020000px;}
.y4c{bottom:213.510000px;}
.y1ee{bottom:213.915000px;}
.y295{bottom:218.235000px;}
.y316{bottom:219.675000px;}
.y120{bottom:223.995000px;}
.y2d0{bottom:225.465000px;}
.y13f{bottom:227.595000px;}
.y1bb{bottom:227.955000px;}
.y7c{bottom:228.315000px;}
.y9b{bottom:229.395000px;}
.y1e3{bottom:230.475000px;}
.y2af{bottom:232.275000px;}
.y1d0{bottom:232.995000px;}
.y155{bottom:235.875000px;}
.yb6{bottom:236.235000px;}
.y209{bottom:236.595000px;}
.yf5{bottom:239.475000px;}
.yd5{bottom:241.635000px;}
.y135{bottom:243.075000px;}
.y294{bottom:244.155000px;}
.y1ed{bottom:244.875000px;}
.y170{bottom:245.955000px;}
.y2ca{bottom:247.425000px;}
.y217{bottom:248.115000px;}
.y2e{bottom:248.250000px;}
.y33{bottom:255.270000px;}
.y11f{bottom:255.315000px;}
.y4b{bottom:256.530000px;}
.ye8{bottom:258.195000px;}
.y25c{bottom:258.915000px;}
.y7b{bottom:259.635000px;}
.y22b{bottom:261.795000px;}
.y301{bottom:262.155000px;}
.y1e2{bottom:262.515000px;}
.y2f5{bottom:263.235000px;}
.y1cf{bottom:263.955000px;}
.y2cf{bottom:265.065000px;}
.yb5{bottom:267.555000px;}
.y27c{bottom:268.275000px;}
.y11{bottom:272.190000px;}
.y9a{bottom:272.595000px;}
.yf2{bottom:275.835000px;}
.y16f{bottom:277.635000px;}
.y293{bottom:281.955000px;}
.y2ae{bottom:284.115000px;}
.y25b{bottom:284.835000px;}
.y11e{bottom:286.275000px;}
.y1ec{bottom:288.795000px;}
.y7a{bottom:290.595000px;}
.y2d{bottom:291.270000px;}
.y216{bottom:291.315000px;}
.y22a{bottom:292.755000px;}
.y27b{bottom:294.195000px;}
.y1ce{bottom:294.915000px;}
.yf0{bottom:297.435000px;}
.y32{bottom:298.470000px;}
.yb4{bottom:298.515000px;}
.y208{bottom:298.875000px;}
.y4a{bottom:299.550000px;}
.y315{bottom:302.835000px;}
.yd4{bottom:303.555000px;}
.y197{bottom:307.230000px;}
.y292{bottom:307.875000px;}
.y16e{bottom:308.595000px;}
.y2ad{bottom:309.675000px;}
.y25a{bottom:310.755000px;}
.y99{bottom:315.075000px;}
.y2c6{bottom:318.390000px;}
.yec{bottom:318.675000px;}
.y27a{bottom:320.145000px;}
.y79{bottom:321.585000px;}
.y2c{bottom:322.410000px;}
.y229{bottom:323.745000px;}
.y17c{bottom:326.670000px;}
.y1e1{bottom:326.985000px;}
.y1a2{bottom:328.110000px;}
.y11d{bottom:328.785000px;}
.y134{bottom:329.505000px;}
.y1aa{bottom:329.550000px;}
.y207{bottom:329.865000px;}
.y1eb{bottom:332.025000px;}
.y291{bottom:333.825000px;}
.y215{bottom:334.185000px;}
.y1cd{bottom:337.785000px;}
.y16d{bottom:339.585000px;}
.yb3{bottom:341.385000px;}
.y31{bottom:341.535000px;}
.y10{bottom:342.435000px;}
.y49{bottom:342.615000px;}
.yc7{bottom:344.985000px;}
.yd3{bottom:346.425000px;}
.y98{bottom:346.785000px;}
.y2ac{bottom:347.865000px;}
.y259{bottom:348.585000px;}
.y1ba{bottom:352.545000px;}
.y228{bottom:355.065000px;}
.y279{bottom:357.945000px;}
.yc6{bottom:358.305000px;}
.y1e0{bottom:359.385000px;}
.y290{bottom:359.745000px;}
.y11c{bottom:360.465000px;}
.ye9{bottom:360.825000px;}
.y1ea{bottom:363.345000px;}
.y314{bottom:365.145000px;}
.y2b{bottom:365.475000px;}
.y1cc{bottom:370.185000px;}
.y78{bottom:370.545000px;}
.y133{bottom:372.345000px;}
.y1a9{bottom:372.390000px;}
.yb2{bottom:372.705000px;}
.y2ab{bottom:373.785000px;}
.y258{bottom:374.505000px;}
.y214{bottom:377.385000px;}
.y97{bottom:377.745000px;}
.y1b9{bottom:383.865000px;}
.y30{bottom:384.555000px;}
.y28f{bottom:385.665000px;}
.y48{bottom:385.815000px;}
.y227{bottom:386.025000px;}
.y300{bottom:386.745000px;}
.yf3{bottom:387.105000px;}
.y245{bottom:389.265000px;}
.y1a7{bottom:390.060000px;}
.ye7{bottom:391.425000px;}
.y1df{bottom:391.785000px;}
.y1e9{bottom:393.945000px;}
.y77{bottom:395.745000px;}
.y2a{bottom:396.615000px;}
.y2bb{bottom:397.545000px;}
.y2aa{bottom:399.345000px;}
.y257{bottom:400.425000px;}
.y16c{bottom:401.865000px;}
.y1cb{bottom:402.585000px;}
.y11b{bottom:402.945000px;}
.yb1{bottom:403.665000px;}
.y96{bottom:408.705000px;}
.y278{bottom:409.785000px;}
.y28e{bottom:411.585000px;}
.yf{bottom:412.635000px;}
.y132{bottom:415.545000px;}
.y226{bottom:416.985000px;}
.y213{bottom:420.225000px;}
.y244{bottom:420.585000px;}
.y206{bottom:423.105000px;}
.y2ba{bottom:423.465000px;}
.y1de{bottom:423.825000px;}
.y2a9{bottom:425.265000px;}
.y1b8{bottom:426.345000px;}
.y76{bottom:426.705000px;}
.y29{bottom:427.575000px;}
.y47{bottom:428.835000px;}
.y16b{bottom:432.825000px;}
.ye6{bottom:434.625000px;}
.yb0{bottom:434.985000px;}
.y277{bottom:435.345000px;}
.y28d{bottom:437.505000px;}
.y256{bottom:438.225000px;}
.yd2{bottom:439.665000px;}
.y225{bottom:447.990000px;}
.y2b9{bottom:449.430000px;}
.y95{bottom:451.590000px;}
.y212{bottom:451.950000px;}
.y1a0{bottom:453.060000px;}
.y205{bottom:454.110000px;}
.y124{bottom:455.550000px;}
.y1e8{bottom:457.350000px;}
.y75{bottom:457.710000px;}
.y151{bottom:458.070000px;}
.y131{bottom:458.430000px;}
.y28{bottom:458.715000px;}
.y276{bottom:461.310000px;}
.y2a8{bottom:463.110000px;}
.y13d{bottom:463.830000px;}
.y2c4{bottom:463.860000px;}
.y255{bottom:464.190000px;}
.yaf{bottom:465.990000px;}
.y1ca{bottom:467.070000px;}
.y1dd{bottom:468.150000px;}
.y313{bottom:469.230000px;}
.yd1{bottom:471.030000px;}
.y46{bottom:471.855000px;}
.y14e{bottom:473.550000px;}
.y28c{bottom:475.350000px;}
.y11a{bottom:477.150000px;}
.y2bf{bottom:481.110000px;}
.ye{bottom:482.835000px;}
.y94{bottom:482.910000px;}
.y275{bottom:487.230000px;}
.y74{bottom:489.030000px;}
.y27{bottom:489.675000px;}
.y130{bottom:490.110000px;}
.y2ff{bottom:490.470000px;}
.y224{bottom:490.830000px;}
.y2f4{bottom:491.550000px;}
.y192{bottom:494.490000px;}
.y119{bottom:494.790000px;}
.y204{bottom:496.590000px;}
.y1dc{bottom:499.470000px;}
.y28b{bottom:501.270000px;}
.y1e7{bottom:501.630000px;}
.yd0{bottom:501.990000px;}
.y16a{bottom:506.670000px;}
.y2e0{bottom:507.030000px;}
.yae{bottom:508.470000px;}
.y2c0{bottom:509.910000px;}
.y1c9{bottom:510.990000px;}
.y274{bottom:513.150000px;}
.y93{bottom:513.870000px;}
.y45{bottom:514.875000px;}
.y2a7{bottom:514.950000px;}
.y73{bottom:519.990000px;}
.y26{bottom:520.815000px;}
.y223{bottom:522.150000px;}
.y118{bottom:523.950000px;}
.y211{bottom:525.750000px;}
.y28a{bottom:527.190000px;}
.y254{bottom:527.910000px;}
.y203{bottom:528.270000px;}
.y1db{bottom:530.430000px;}
.y12f{bottom:532.590000px;}
.y169{bottom:537.990000px;}
.y2b8{bottom:539.070000px;}
.ye5{bottom:540.150000px;}
.y1c8{bottom:542.670000px;}
.ycf{bottom:544.470000px;}
.y92{bottom:544.830000px;}
.y72{bottom:550.950000px;}
.yad{bottom:551.670000px;}
.y25{bottom:551.775000px;}
.y289{bottom:552.750000px;}
.y116{bottom:553.110000px;}
.y253{bottom:553.830000px;}
.y2f3{bottom:554.190000px;}
.y174{bottom:554.970000px;}
.yd{bottom:555.555000px;}
.y243{bottom:556.710000px;}
.y210{bottom:557.070000px;}
.y44{bottom:557.895000px;}
.y104{bottom:561.030000px;}
.yc3{bottom:563.910000px;}
.y2b7{bottom:564.990000px;}
.y168{bottom:568.950000px;}
.y2be{bottom:569.670000px;}
.y202{bottom:570.750000px;}
.ye4{bottom:571.110000px;}
.y1da{bottom:573.300000px;}
.y2fd{bottom:573.660000px;}
.y91{bottom:576.180000px;}
.y273{bottom:576.900000px;}
.y1a6{bottom:577.335000px;}
.y2a6{bottom:578.700000px;}
.y252{bottom:579.780000px;}
.y71{bottom:581.940000px;}
.y114{bottom:582.660000px;}
.y2f{bottom:582.735000px;}
.yac{bottom:583.020000px;}
.y222{bottom:584.460000px;}
.y1c7{bottom:585.180000px;}
.y20f{bottom:588.060000px;}
.y2dd{bottom:590.220000px;}
.y288{bottom:590.940000px;}
.y1b7{bottom:593.820000px;}
.y311{bottom:594.540000px;}
.y24{bottom:594.795000px;}
.y12e{bottom:595.260000px;}
.y19f{bottom:598.935000px;}
.y167{bottom:599.940000px;}
.y43{bottom:600.915000px;}
.y201{bottom:602.100000px;}
.y272{bottom:602.820000px;}
.y103{bottom:603.900000px;}
.y5a{bottom:604.005000px;}
.y1d9{bottom:604.620000px;}
.y90{bottom:607.140000px;}
.y112{bottom:611.820000px;}
.yc2{bottom:612.900000px;}
.y70{bottom:613.260000px;}
.ye3{bottom:613.620000px;}
.y221{bottom:615.420000px;}
.y287{bottom:616.500000px;}
.y1c6{bottom:616.860000px;}
.y251{bottom:617.580000px;}
.y20e{bottom:619.020000px;}
.yc{bottom:621.825000px;}
.y1b6{bottom:625.140000px;}
.yab{bottom:625.860000px;}
.y23{bottom:625.965000px;}
.y12d{bottom:626.220000px;}
.y271{bottom:628.740000px;}
.y2a5{bottom:630.540000px;}
.y242{bottom:630.900000px;}
.y166{bottom:631.260000px;}
.y2c3{bottom:631.695000px;}
.y200{bottom:633.420000px;}
.y1d8{bottom:635.580000px;}
.y310{bottom:636.300000px;}
.y8f{bottom:638.100000px;}
.y2cd{bottom:640.335000px;}
.y286{bottom:642.420000px;}
.y250{bottom:643.500000px;}
.y42{bottom:643.965000px;}
.y6f{bottom:644.220000px;}
.ye2{bottom:645.300000px;}
.y220{bottom:646.380000px;}
.y59{bottom:647.025000px;}
.y102{bottom:647.100000px;}
.y1c5{bottom:647.460000px;}
.y20d{bottom:649.980000px;}
.y123{bottom:654.300000px;}
.y270{bottom:654.660000px;}
.y1b5{bottom:656.100000px;}
.y14a{bottom:656.820000px;}
.y22{bottom:656.925000px;}
.yaa{bottom:657.180000px;}
.y2f0{bottom:658.260000px;}
.y165{bottom:662.220000px;}
.y1ff{bottom:664.380000px;}
.y240{bottom:665.460000px;}
.y2a4{bottom:668.340000px;}
.y12c{bottom:668.700000px;}
.yc1{bottom:669.060000px;}
.y1d7{bottom:674.100000px;}
.y6e{bottom:675.180000px;}
.ye1{bottom:676.260000px;}
.y1c4{bottom:679.860000px;}
.y2b6{bottom:680.580000px;}
.y8e{bottom:680.940000px;}
.y20c{bottom:681.300000px;}
.y1a5{bottom:681.765000px;}
.y1b4{bottom:687.060000px;}
.y41{bottom:687.165000px;}
.y21{bottom:688.065000px;}
.ya9{bottom:688.140000px;}
.yb{bottom:688.245000px;}
.y21f{bottom:689.220000px;}
.y101{bottom:689.940000px;}
.y58{bottom:690.045000px;}
.y2c9{bottom:690.405000px;}
.y26f{bottom:692.460000px;}
.y164{bottom:693.180000px;}
.y2a3{bottom:694.260000px;}
.y1fe{bottom:695.340000px;}
.y111{bottom:696.780000px;}
.y30e{bottom:698.580000px;}
.y1d6{bottom:698.970000px;}
.y12b{bottom:700.410000px;}
.y190{bottom:702.285000px;}
.y2c2{bottom:705.165000px;}
.y285{bottom:706.170000px;}
.y21c{bottom:706.890000px;}
.y24f{bottom:707.250000px;}
.ye0{bottom:707.610000px;}
.y5d{bottom:709.125000px;}
.y1c3{bottom:710.850000px;}
.yc0{bottom:711.930000px;}
.y8d{bottom:712.290000px;}
.y231{bottom:713.370000px;}
.y6d{bottom:718.050000px;}
.y1b3{bottom:718.410000px;}
.y20{bottom:719.025000px;}
.y30d{bottom:719.850000px;}
.y2a2{bottom:720.210000px;}
.y57{bottom:721.185000px;}
.y172{bottom:723.165000px;}
.y20b{bottom:723.810000px;}
.y163{bottom:724.170000px;}
.y110{bottom:728.490000px;}
.y1d5{bottom:729.930000px;}
.y40{bottom:730.185000px;}
.ya8{bottom:731.010000px;}
.y12a{bottom:731.370000px;}
.y284{bottom:732.090000px;}
.y100{bottom:733.170000px;}
.y2dc{bottom:735.690000px;}
.y1fd{bottom:738.210000px;}
.y8c{bottom:743.250000px;}
.y26e{bottom:744.330000px;}
.y2a1{bottom:746.130000px;}
.y2c1{bottom:748.725000px;}
.y6c{bottom:749.370000px;}
.y5c{bottom:752.145000px;}
.ya{bottom:754.485000px;}
.y1c2{bottom:755.130000px;}
.y162{bottom:755.490000px;}
.ydf{bottom:755.850000px;}
.y24e{bottom:758.730000px;}
.y10f{bottom:759.450000px;}
.y1f{bottom:762.045000px;}
.ya7{bottom:762.330000px;}
.y56{bottom:764.205000px;}
.y1fc{bottom:769.530000px;}
.y26d{bottom:769.890000px;}
.y3f{bottom:773.205000px;}
.y1d4{bottom:773.850000px;}
.y8b{bottom:774.210000px;}
.y18e{bottom:775.770000px;}
.yff{bottom:776.370000px;}
.y6b{bottom:780.330000px;}
.y2fb{bottom:781.410000px;}
.y2b5{bottom:782.130000px;}
.y30a{bottom:782.490000px;}
.y2a0{bottom:783.930000px;}
.y24d{bottom:784.650000px;}
.y161{bottom:786.450000px;}
.yde{bottom:787.530000px;}
.y10e{bottom:790.410000px;}
.y1e{bottom:793.185000px;}
.ya6{bottom:793.290000px;}
.y5b{bottom:795.165000px;}
.y26c{bottom:795.810000px;}
.y1c1{bottom:797.970000px;}
.y1fb{bottom:800.490000px;}
.y2fa{bottom:802.650000px;}
.y129{bottom:805.170000px;}
.ybf{bottom:805.530000px;}
.y55{bottom:807.225000px;}
.y2b4{bottom:808.050000px;}
.y29f{bottom:809.850000px;}
.y6a{bottom:811.290000px;}
.y3e{bottom:816.225000px;}
.y8a{bottom:817.050000px;}
.y160{bottom:817.410000px;}
.ydd{bottom:818.490000px;}
.yfe{bottom:819.210000px;}
.y145{bottom:820.290000px;}
.y26b{bottom:821.730000px;}
.y24c{bottom:822.810000px;}
.ya5{bottom:824.610000px;}
.y241{bottom:828.975000px;}
.y1c0{bottom:829.335000px;}
.y9{bottom:829.905000px;}
.y1fa{bottom:831.495000px;}
.y10d{bottom:833.295000px;}
.y2b3{bottom:834.015000px;}
.y29e{bottom:835.815000px;}
.y1d{bottom:836.205000px;}
.yce{bottom:836.535000px;}
.y54{bottom:838.365000px;}
.y69{bottom:842.655000px;}
.y26a{bottom:847.695000px;}
.ybe{bottom:848.055000px;}
.y89{bottom:848.415000px;}
.ydc{bottom:849.855000px;}
.yfd{bottom:850.575000px;}
.ya4{bottom:855.615000px;}
.y3d{bottom:859.245000px;}
.y283{bottom:859.575000px;}
.y1bf{bottom:860.655000px;}
.y1f9{bottom:862.815000px;}
.y10c{bottom:864.615000px;}
.y2ef{bottom:865.695000px;}
.y1c{bottom:867.165000px;}
.y128{bottom:867.495000px;}
.y68{bottom:873.615000px;}
.ycd{bottom:879.375000px;}
.y88{bottom:879.735000px;}
.ybd{bottom:880.095000px;}
.y53{bottom:881.430000px;}
.y2da{bottom:881.535000px;}
.y8{bottom:881.790000px;}
.yfc{bottom:882.975000px;}
.y282{bottom:885.495000px;}
.y2f9{bottom:885.855000px;}
.ya3{bottom:886.575000px;}
.y15f{bottom:891.255000px;}
.y1be{bottom:891.615000px;}
.y1f8{bottom:893.775000px;}
.y10b{bottom:895.575000px;}
.y3c{bottom:897.810000px;}
.ydb{bottom:898.095000px;}
.y29d{bottom:899.535000px;}
.y67{bottom:904.575000px;}
.y127{bottom:910.335000px;}
.y1b{bottom:910.410000px;}
.y87{bottom:910.695000px;}
.y269{bottom:911.415000px;}
.y24b{bottom:912.135000px;}
.yfb{bottom:913.935000px;}
.y1b2{bottom:916.095000px;}
.y21a{bottom:921.855000px;}
.y15e{bottom:922.575000px;}
.y2d9{bottom:923.295000px;}
.y52{bottom:924.450000px;}
.y29c{bottom:925.455000px;}
.y31c{bottom:927.975000px;}
.y7{bottom:928.230000px;}
.ya2{bottom:929.415000px;}
.yda{bottom:929.775000px;}
.y239{bottom:935.175000px;}
.y66{bottom:935.535000px;}
.y3b{bottom:936.330000px;}
.y1f7{bottom:936.615000px;}
.y268{bottom:937.335000px;}
.y24a{bottom:938.055000px;}
.y10a{bottom:938.415000px;}
.y1a{bottom:941.370000px;}
.y86{bottom:941.655000px;}
.ybc{bottom:942.015000px;}
.y2d8{bottom:944.535000px;}
.yfa{bottom:945.975000px;}
.y1b1{bottom:947.775000px;}
.y308{bottom:948.855000px;}
.y15d{bottom:953.565000px;}
.ya1{bottom:960.765000px;}
.y22d{bottom:962.205000px;}
.y13b{bottom:962.565000px;}
.y281{bottom:963.285000px;}
.y249{bottom:964.005000px;}
.y65{bottom:966.885000px;}
.y51{bottom:967.470000px;}
.y2f8{bottom:969.045000px;}
.y2ee{bottom:969.405000px;}
.y109{bottom:969.765000px;}
.y19{bottom:972.330000px;}
.y85{bottom:972.645000px;}
.y3a{bottom:975.030000px;}
.y267{bottom:975.165000px;}
.y1b0{bottom:978.765000px;}
.y1f6{bottom:979.485000px;}
.y6{bottom:983.490000px;}
.ycc{bottom:984.525000px;}
.y15c{bottom:984.885000px;}
.y29b{bottom:989.205000px;}
.y248{bottom:989.925000px;}
.yf9{bottom:990.285000px;}
.ya0{bottom:991.725000px;}
.y64{bottom:997.845000px;}
.y108{bottom:1000.725000px;}
.y266{bottom:1001.085000px;}
.y18{bottom:1003.470000px;}
.y84{bottom:1003.605000px;}
.ybb{bottom:1003.965000px;}
.y2d7{bottom:1006.845000px;}
.y1af{bottom:1009.725000px;}
.y50{bottom:1010.490000px;}
.y1f5{bottom:1010.805000px;}
.y39{bottom:1013.550000px;}
.y29a{bottom:1015.125000px;}
.y1d3{bottom:1015.485000px;}
.ycb{bottom:1015.845000px;}
.y9f{bottom:1022.685000px;}
.y265{bottom:1027.005000px;}
.y280{bottom:1027.365000px;}
.y2d6{bottom:1028.085000px;}
.y63{bottom:1028.805000px;}
.y5{bottom:1030.470000px;}
.y2f7{bottom:1031.685000px;}
.y307{bottom:1032.045000px;}
.yf8{bottom:1033.125000px;}
.y17{bottom:1034.430000px;}
.yd9{bottom:1034.565000px;}
.y83{bottom:1034.925000px;}
.y1ae{bottom:1040.685000px;}
.y141{bottom:1042.125000px;}
.y107{bottom:1043.565000px;}
.y126{bottom:1046.445000px;}
.yca{bottom:1046.805000px;}
.y2bc{bottom:1050.045000px;}
.y38{bottom:1052.070000px;}
.y27f{bottom:1052.925000px;}
.y4f{bottom:1053.510000px;}
.y13a{bottom:1053.645000px;}
.y2bd{bottom:1059.405000px;}
.y62{bottom:1059.765000px;}
.yf7{bottom:1064.445000px;}
.y264{bottom:1064.805000px;}
.y16{bottom:1065.570000px;}
.y82{bottom:1065.885000px;}
.yba{bottom:1066.245000px;}
.y4{bottom:1068.450000px;}
.y2d5{bottom:1069.845000px;}
.y1ad{bottom:1072.005000px;}
.y1f4{bottom:1074.525000px;}
.y106{bottom:1074.885000px;}
.yc9{bottom:1077.810000px;}
.y299{bottom:1078.890000px;}
.y247{bottom:1079.610000px;}
.y37{bottom:1090.590000px;}
.y263{bottom:1090.770000px;}
.y61{bottom:1091.130000px;}
.y2d4{bottom:1092.930000px;}
.y31b{bottom:1094.010000px;}
.y15{bottom:1096.530000px;}
.y1ac{bottom:1103.010000px;}
.y3{bottom:1105.170000px;}
.y246{bottom:1105.530000px;}
.y105{bottom:1105.890000px;}
.y1f3{bottom:1106.610000px;}
.y2d1{bottom:1108.410000px;}
.y81{bottom:1108.770000px;}
.yc5{bottom:1109.130000px;}
.y2ed{bottom:1114.890000px;}
.y262{bottom:1116.690000px;}
.y36{bottom:1121.730000px;}
.y60{bottom:1122.450000px;}
.y23f{bottom:1126.770000px;}
.y1ab{bottom:1134.330000px;}
.y2{bottom:1137.960000px;}
.y1f2{bottom:1139.010000px;}
.y139{bottom:1139.730000px;}
.y14{bottom:1139.760000px;}
.y80{bottom:1140.090000px;}
.yc4{bottom:1140.450000px;}
.y261{bottom:1142.610000px;}
.y1{bottom:1178.820000px;}
.h37{height:15.480000px;}
.h43{height:18.720000px;}
.h1a{height:20.520000px;}
.h51{height:20.556000px;}
.h18{height:20.880000px;}
.h5c{height:20.916000px;}
.h1b{height:21.600000px;}
.h2f{height:21.636000px;}
.h50{height:22.320000px;}
.h1d{height:23.400000px;}
.h44{height:23.760000px;}
.h4b{height:24.120000px;}
.h22{height:25.920000px;}
.h1f{height:28.440000px;}
.h21{height:28.836000px;}
.h1e{height:30.960000px;}
.h16{height:37.800000px;}
.h52{height:41.400000px;}
.h19{height:41.436000px;}
.h15{height:48.843072px;}
.h11{height:49.524654px;}
.h4a{height:50.353125px;}
.h4d{height:50.473125px;}
.h4f{height:52.349063px;}
.h45{height:54.248906px;}
.h1c{height:54.586406px;}
.h47{height:54.721406px;}
.h17{height:60.332344px;}
.h49{height:60.385078px;}
.h54{height:61.920000px;}
.h53{height:61.956000px;}
.h46{height:62.163910px;}
.h59{height:62.280000px;}
.h36{height:62.316000px;}
.h48{height:62.960625px;}
.h26{height:62.960646px;}
.h28{height:62.960650px;}
.h24{height:62.960662px;}
.hf{height:64.371094px;}
.hb{height:64.546875px;}
.he{height:64.582031px;}
.ha{height:65.144531px;}
.h10{height:67.104141px;}
.h20{height:68.084282px;}
.h30{height:69.844922px;}
.h13{height:73.323072px;}
.h3b{height:73.335072px;}
.h14{height:73.443072px;}
.hc{height:74.004654px;}
.h9{height:74.953125px;}
.hd{height:75.093750px;}
.h12{height:76.829063px;}
.h5b{height:82.476000px;}
.h5a{height:82.800000px;}
.h3c{height:82.836000px;}
.h2b{height:83.916000px;}
.h29{height:94.716000px;}
.h2c{height:95.040000px;}
.h3d{height:103.356000px;}
.h4e{height:103.716000px;}
.h2a{height:110.196000px;}
.h8{height:111.198516px;}
.h4{height:112.640625px;}
.h2d{height:121.356000px;}
.h5{height:121.852266px;}
.h35{height:124.236000px;}
.h4c{height:124.272000px;}
.h2e{height:131.796000px;}
.h7{height:133.171875px;}
.h2{height:137.421562px;}
.h6{height:144.491484px;}
.h40{height:144.756000px;}
.h3a{height:144.792000px;}
.h57{height:145.116000px;}
.h3{height:150.187500px;}
.h33{height:165.675000px;}
.h42{height:171.435000px;}
.h56{height:186.150000px;}
.h55{height:186.510000px;}
.h39{height:186.555000px;}
.h23{height:189.390000px;}
.h3e{height:190.875000px;}
.h41{height:199.470000px;}
.h58{height:206.715000px;}
.h38{height:207.075000px;}
.h27{height:208.830000px;}
.h3f{height:212.790000px;}
.h34{height:227.595000px;}
.h25{height:467.745000px;}
.h32{height:892.500000px;}
.h31{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:17.280000px;}
.w2a{width:73.440000px;}
.w37{width:84.636000px;}
.w32{width:84.996000px;}
.w2c{width:95.076000px;}
.w1f{width:105.156000px;}
.w2e{width:105.516000px;}
.w1a{width:116.316000px;}
.w1b{width:126.756000px;}
.w1d{width:127.116000px;}
.w34{width:129.276000px;}
.w36{width:137.916000px;}
.w31{width:138.276000px;}
.w7{width:158.475000px;}
.we{width:214.305000px;}
.w14{width:218.595000px;}
.w2b{width:243.795000px;}
.wa{width:251.025000px;}
.w15{width:260.745000px;}
.w12{width:261.105000px;}
.w13{width:263.625000px;}
.w11{width:265.785000px;}
.w10{width:269.025000px;}
.w1c{width:307.515000px;}
.w25{width:311.505000px;}
.w23{width:311.550000px;}
.w24{width:317.670000px;}
.wc{width:317.985000px;}
.wb{width:318.030000px;}
.w1e{width:318.345000px;}
.w22{width:325.545000px;}
.w21{width:325.950000px;}
.w26{width:326.625000px;}
.w38{width:338.190000px;}
.w33{width:338.550000px;}
.w27{width:339.630000px;}
.wd{width:372.750000px;}
.w2d{width:403.305000px;}
.w16{width:418.830000px;}
.w2f{width:472.470000px;}
.w28{width:472.500000px;}
.w8{width:477.180000px;}
.w20{width:521.790000px;}
.w9{width:576.210000px;}
.w6{width:610.455000px;}
.w29{width:663.375000px;}
.w35{width:691.095000px;}
.w30{width:773.205000px;}
.w4{width:892.500000px;}
.w5{width:892.799987px;}
.w3{width:892.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w19{width:1262.879981px;}
.w17{width:1262.880000px;}
.w18{width:1263.000000px;}
.x0{left:0.000000px;}
.x19{left:7.920000px;}
.x44{left:9.000000px;}
.x16{left:10.800000px;}
.x25{left:11.880000px;}
.x30{left:12.960000px;}
.x23{left:14.040000px;}
.x43{left:18.000000px;}
.x34{left:19.440000px;}
.x2b{left:21.960000px;}
.x2d{left:23.400000px;}
.x39{left:26.640000px;}
.x3c{left:28.440000px;}
.x31{left:30.960000px;}
.x33{left:35.685000px;}
.x1e{left:37.440000px;}
.x3a{left:39.600000px;}
.x1d{left:40.719000px;}
.x32{left:42.840000px;}
.x26{left:58.365000px;}
.x54{left:74.556000px;}
.x29{left:78.165000px;}
.x36{left:86.436000px;}
.x53{left:87.516000px;}
.x2e{left:92.565000px;}
.x41{left:97.245000px;}
.x35{left:98.325000px;}
.x27{left:103.365000px;}
.x15{left:105.156000px;}
.x38{left:106.235981px;}
.x3e{left:109.845000px;}
.x22{left:120.996000px;}
.x4c{left:122.436000px;}
.x1b{left:125.316000px;}
.x6{left:127.655987px;}
.x20{left:132.156000px;}
.x28{left:134.685000px;}
.x9{left:148.175987px;}
.x12{left:154.514987px;}
.x45{left:169.994987px;}
.x7{left:174.809987px;}
.x1c{left:180.434987px;}
.x13{left:181.514987px;}
.x3{left:191.189987px;}
.x46{left:196.994987px;}
.x8{left:201.809987px;}
.x55{left:212.835000px;}
.x3b{left:223.995000px;}
.x1{left:226.109987px;}
.x2{left:248.969987px;}
.x5{left:258.509987px;}
.x24{left:281.985000px;}
.x1a{left:287.745000px;}
.x4{left:289.694987px;}
.x2c{left:290.985000px;}
.x2a{left:293.865000px;}
.x56{left:297.825000px;}
.xe{left:306.074987px;}
.x4f{left:308.955000px;}
.x1f{left:338.549987px;}
.xa{left:348.914987px;}
.x3d{left:351.465000px;}
.x18{left:390.029987px;}
.x21{left:436.499987px;}
.x11{left:439.094987px;}
.x10{left:441.434987px;}
.xf{left:443.954987px;}
.xb{left:446.474987px;}
.x4b{left:453.420000px;}
.x48{left:454.860000px;}
.x4a{left:461.340000px;}
.xd{left:472.784987px;}
.x47{left:481.139987px;}
.x50{left:553.470000px;}
.x49{left:586.649987px;}
.x4e{left:592.379981px;}
.x2f{left:612.975000px;}
.x37{left:621.179981px;}
.x57{left:636.375000px;}
.x51{left:649.260000px;}
.x3f{left:659.700000px;}
.x17{left:714.884987px;}
.x14{left:729.284987px;}
.xc{left:765.509987px;}
.x4d{left:775.724987px;}
.x40{left:787.530000px;}
.x52{left:1053.285000px;}
.x42{left:1106.610000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:19.200000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.lsb{letter-spacing:-4.864000pt;}
.ls25{letter-spacing:-4.288000pt;}
.ls1f{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-1.024000pt;}
.ls34{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls2e{letter-spacing:-0.450667pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.445333pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.222933pt;}
.ls7{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.014080pt;}
.ls2d{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.119467pt;}
.ls27{letter-spacing:0.120747pt;}
.ls0{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.145707pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.239360pt;}
.lsa{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.414720pt;}
.ls2f{letter-spacing:0.414933pt;}
.ls12{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.521387pt;}
.ls22{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.608000pt;}
.ls29{letter-spacing:0.832000pt;}
.ls30{letter-spacing:0.864000pt;}
.ls28{letter-spacing:1.056000pt;}
.ls11{letter-spacing:1.057280pt;}
.ls24{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.163947pt;}
.ls2a{letter-spacing:1.294080pt;}
.ls37{letter-spacing:1.296000pt;}
.ls13{letter-spacing:1.408000pt;}
.ls38{letter-spacing:1.514667pt;}
.ls36{letter-spacing:1.694720pt;}
.ls26{letter-spacing:2.688000pt;}
.ls35{letter-spacing:5.546667pt;}
.ls31{letter-spacing:10.665387pt;}
.ls32{letter-spacing:11.934720pt;}
.lsf{letter-spacing:24.448000pt;}
.ls18{letter-spacing:27.008000pt;}
.ls1b{letter-spacing:39.808000pt;}
.ls20{letter-spacing:48.768000pt;}
.ls1a{letter-spacing:56.448000pt;}
.ls9{letter-spacing:170.986667pt;}
.ls1d{letter-spacing:750.474667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws4{word-spacing:-34.720000pt;}
.ws3{word-spacing:-34.538667pt;}
.ws0{word-spacing:-32.720427pt;}
.ws2{word-spacing:-26.432000pt;}
.ws1a{word-spacing:-18.944000pt;}
.ws8{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.664000pt;}
.ws17{word-spacing:-17.344000pt;}
.wsc{word-spacing:-16.960000pt;}
.ws18{word-spacing:-16.912640pt;}
.ws1c{word-spacing:-16.768000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws21{word-spacing:-16.241280pt;}
.ws20{word-spacing:-15.809280pt;}
.ws1f{word-spacing:-14.963200pt;}
.ws19{word-spacing:-14.945280pt;}
.ws1e{word-spacing:-14.494613pt;}
.ws9{word-spacing:-12.928000pt;}
.ws1b{word-spacing:-12.798720pt;}
.ws1d{word-spacing:-12.574720pt;}
.wsb{word-spacing:-11.759573pt;}
.wsd{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.742720pt;}
.wse{word-spacing:-11.519787pt;}
.ws10{word-spacing:-11.297387pt;}
.ws14{word-spacing:-9.619200pt;}
.ws15{word-spacing:-9.607680pt;}
.ws12{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-15.605333pt;}
._12{margin-left:-13.845333pt;}
._58{margin-left:-11.520000pt;}
._7{margin-left:-7.680000pt;}
._c{margin-left:-5.973333pt;}
._5{margin-left:-4.224000pt;}
._4{margin-left:-3.328000pt;}
._3{margin-left:-2.069333pt;}
._1{margin-left:-0.994133pt;}
._0{width:1.288320pt;}
._2{width:2.679467pt;}
._d{width:4.330667pt;}
._16{width:5.743147pt;}
._14{width:6.912000pt;}
._13{width:7.808000pt;}
._1d{width:8.960000pt;}
._10{width:10.240000pt;}
._1c{width:11.374080pt;}
._1b{width:12.284160pt;}
._e{width:13.632000pt;}
._8{width:15.082667pt;}
._9{width:16.384000pt;}
._64{width:17.526400pt;}
._f{width:19.264000pt;}
._15{width:20.160853pt;}
._b{width:21.634347pt;}
._a{width:22.528000pt;}
._17{width:23.629013pt;}
._19{width:25.133440pt;}
._18{width:26.253013pt;}
._2b{width:27.741013pt;}
._1e{width:29.116800pt;}
._22{width:30.148693pt;}
._1a{width:31.168000pt;}
._26{width:32.241280pt;}
._21{width:33.216000pt;}
._25{width:34.223360pt;}
._20{width:35.522347pt;}
._1f{width:36.618667pt;}
._24{width:37.890347pt;}
._23{width:38.848000pt;}
._2d{width:40.269013pt;}
._45{width:42.151040pt;}
._40{width:43.639680pt;}
._6b{width:44.699520pt;}
._41{width:46.065493pt;}
._30{width:47.808000pt;}
._6c{width:49.366400pt;}
._2e{width:51.191680pt;}
._2f{width:52.164693pt;}
._2a{width:54.144000pt;}
._37{width:55.808000pt;}
._46{width:57.237333pt;}
._51{width:58.445013pt;}
._52{width:59.789013pt;}
._5e{width:60.857387pt;}
._72{width:62.395307pt;}
._73{width:63.745067pt;}
._35{width:65.540693pt;}
._32{width:67.008000pt;}
._3e{width:68.612693pt;}
._56{width:70.002987pt;}
._29{width:71.368533pt;}
._28{width:72.281813pt;}
._76{width:73.975680pt;}
._6d{width:75.149013pt;}
._4f{width:76.471680pt;}
._50{width:77.410133pt;}
._5a{width:80.684587pt;}
._4a{width:81.591680pt;}
._31{width:83.097813pt;}
._65{width:85.733760pt;}
._71{width:86.722347pt;}
._33{width:87.629013pt;}
._70{width:88.749013pt;}
._3d{width:89.881813pt;}
._4e{width:92.211200pt;}
._3a{width:93.337813pt;}
._4d{width:94.246827pt;}
._79{width:98.112000pt;}
._6f{width:99.656320pt;}
._38{width:100.919680pt;}
._75{width:102.199680pt;}
._59{width:106.370773pt;}
._3b{width:107.968000pt;}
._36{width:108.992000pt;}
._27{width:113.088000pt;}
._4c{width:114.935680pt;}
._2c{width:119.040000pt;}
._62{width:123.394133pt;}
._54{width:124.932693pt;}
._5d{width:125.877760pt;}
._44{width:126.784000pt;}
._43{width:127.927680pt;}
._66{width:129.641813pt;}
._47{width:132.740693pt;}
._48{width:133.817813pt;}
._67{width:134.802773pt;}
._53{width:143.842347pt;}
._77{width:146.137813pt;}
._3c{width:153.207680pt;}
._61{width:155.715413pt;}
._60{width:156.632320pt;}
._42{width:159.040000pt;}
._4b{width:165.568000pt;}
._39{width:167.658667pt;}
._6a{width:169.408000pt;}
._74{width:170.905813pt;}
._49{width:175.616000pt;}
._78{width:177.732693pt;}
._69{width:184.640213pt;}
._34{width:185.591680pt;}
._3f{width:190.208000pt;}
._6e{width:197.312000pt;}
._57{width:207.539627pt;}
._68{width:259.393067pt;}
._55{width:275.392000pt;}
._5c{width:290.626560pt;}
._5b{width:292.373333pt;}
._63{width:331.835093pt;}
._6{width:750.346667pt;}
._5f{width:883.735253pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fsb{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.880000pt;}
.y238{bottom:-35.226667pt;}
.y144{bottom:-34.880000pt;}
.y149{bottom:-21.440000pt;}
.y0{bottom:0.000000pt;}
.y18f{bottom:1.600000pt;}
.y237{bottom:2.880000pt;}
.yf1{bottom:3.520000pt;}
.y309{bottom:3.546667pt;}
.yeb{bottom:3.840000pt;}
.yef{bottom:3.866667pt;}
.yea{bottom:4.160000pt;}
.y30f{bottom:4.186667pt;}
.y14d{bottom:4.480000pt;}
.y23e{bottom:5.440000pt;}
.y15b{bottom:7.040000pt;}
.y2d3{bottom:7.680000pt;}
.yf4{bottom:8.320000pt;}
.y159{bottom:8.960000pt;}
.y230{bottom:9.280000pt;}
.y2c5{bottom:9.306667pt;}
.yf6{bottom:9.920000pt;}
.y115{bottom:11.520000pt;}
.y117{bottom:11.840000pt;}
.y125{bottom:12.160000pt;}
.y113{bottom:13.120000pt;}
.y148{bottom:17.000000pt;}
.yc8{bottom:21.120000pt;}
.y30c{bottom:21.760000pt;}
.y2ec{bottom:22.074667pt;}
.y186{bottom:22.080000pt;}
.y18d{bottom:22.082667pt;}
.yee{bottom:22.106667pt;}
.y17b{bottom:22.120000pt;}
.y173{bottom:22.400000pt;}
.yed{bottom:22.426667pt;}
.y2ce{bottom:27.546667pt;}
.y154{bottom:29.760000pt;}
.y13c{bottom:30.080000pt;}
.y236{bottom:31.040000pt;}
.y14c{bottom:32.000000pt;}
.y23d{bottom:33.306667pt;}
.y22f{bottom:37.440000pt;}
.y2eb{bottom:40.314667pt;}
.y185{bottom:40.320000pt;}
.y19e{bottom:40.346667pt;}
.y2db{bottom:40.360000pt;}
.y306{bottom:40.634667pt;}
.y191{bottom:40.640000pt;}
.y18c{bottom:40.642667pt;}
.y1a1{bottom:40.666667pt;}
.y17a{bottom:40.680000pt;}
.y305{bottom:40.954667pt;}
.y312{bottom:40.960000pt;}
.y2fc{bottom:40.986667pt;}
.y143{bottom:41.640000pt;}
.y150{bottom:41.920000pt;}
.y147{bottom:44.840000pt;}
.y2c7{bottom:45.760000pt;}
.y158{bottom:47.040000pt;}
.y35{bottom:50.400000pt;}
.y5f{bottom:50.560000pt;}
.y171{bottom:50.592000pt;}
.y140{bottom:56.000000pt;}
.y153{bottom:58.240000pt;}
.y30b{bottom:58.600000pt;}
.y31a{bottom:58.874667pt;}
.y18a{bottom:58.880000pt;}
.y184{bottom:58.906667pt;}
.y2ea{bottom:58.914667pt;}
.y179{bottom:58.920000pt;}
.y319{bottom:59.194667pt;}
.y2fe{bottom:59.200000pt;}
.y302{bottom:59.226667pt;}
.y14b{bottom:59.866667pt;}
.y235{bottom:68.800000pt;}
.y34{bottom:68.832000pt;}
.y5e{bottom:69.152000pt;}
.y142{bottom:69.480000pt;}
.y14f{bottom:69.760000pt;}
.y23c{bottom:71.386667pt;}
.y157{bottom:74.906667pt;}
.y22e{bottom:75.200000pt;}
.y2df{bottom:77.120000pt;}
.y183{bottom:77.146667pt;}
.y2e9{bottom:77.154667pt;}
.y189{bottom:77.160000pt;}
.y2e3{bottom:77.440000pt;}
.y19b{bottom:77.466667pt;}
.y318{bottom:77.474667pt;}
.y178{bottom:77.480000pt;}
.y146{bottom:83.240000pt;}
.y152{bottom:85.760000pt;}
.y2de{bottom:95.680000pt;}
.y182{bottom:95.706667pt;}
.y2e8{bottom:95.714667pt;}
.y188{bottom:95.720000pt;}
.y177{bottom:95.746667pt;}
.y234{bottom:96.960000pt;}
.y23b{bottom:99.226667pt;}
.y2d2{bottom:99.872000pt;}
.y138{bottom:101.472000pt;}
.y156{bottom:102.426667pt;}
.y317{bottom:102.752000pt;}
.y304{bottom:103.392000pt;}
.y260{bottom:104.352000pt;}
.y1f1{bottom:105.312000pt;}
.y219{bottom:105.632000pt;}
.y1e6{bottom:111.072000pt;}
.y4e{bottom:113.312000pt;}
.y181{bottom:113.946667pt;}
.y2e7{bottom:113.954667pt;}
.y196{bottom:113.960000pt;}
.y19d{bottom:113.986667pt;}
.y19a{bottom:114.266667pt;}
.y298{bottom:114.272000pt;}
.y2e2{bottom:114.280000pt;}
.y176{bottom:114.306667pt;}
.yb9{bottom:116.512000pt;}
.y2e4{bottom:118.752000pt;}
.y7f{bottom:120.352000pt;}
.y9e{bottom:121.312000pt;}
.y13{bottom:121.952000pt;}
.y2f6{bottom:123.232000pt;}
.y18b{bottom:123.264000pt;}
.y233{bottom:124.520000pt;}
.y1a4{bottom:124.544000pt;}
.y2b2{bottom:126.752000pt;}
.y25f{bottom:127.392000pt;}
.yd8{bottom:131.552000pt;}
.y2f2{bottom:132.186667pt;}
.y199{bottom:132.506667pt;}
.y2e6{bottom:132.514667pt;}
.y195{bottom:132.520000pt;}
.y180{bottom:132.533333pt;}
.y175{bottom:132.546667pt;}
.y1f0{bottom:133.786667pt;}
.y2c8{bottom:135.106667pt;}
.y1bd{bottom:136.986667pt;}
.y297{bottom:137.306667pt;}
.y23a{bottom:137.666667pt;}
.y1e5{bottom:138.906667pt;}
.y137{bottom:139.546667pt;}
.y2cc{bottom:143.426667pt;}
.y122{bottom:143.706667pt;}
.y19c{bottom:143.746667pt;}
.y218{bottom:144.026667pt;}
.yb8{bottom:144.346667pt;}
.y7e{bottom:148.186667pt;}
.y9d{bottom:148.826667pt;}
.y2b1{bottom:149.786667pt;}
.y25e{bottom:150.426667pt;}
.y2e5{bottom:150.754667pt;}
.y17f{bottom:150.773333pt;}
.y194{bottom:150.786667pt;}
.y1a8{bottom:151.066667pt;}
.y2e1{bottom:151.080000pt;}
.y198{bottom:151.093333pt;}
.y4d{bottom:151.546667pt;}
.y1d2{bottom:151.706667pt;}
.y15a{bottom:154.266667pt;}
.y21b{bottom:155.266667pt;}
.y27e{bottom:158.746667pt;}
.y303{bottom:159.066667pt;}
.yd7{bottom:159.386667pt;}
.y1ef{bottom:161.626667pt;}
.y232{bottom:162.600000pt;}
.y1bc{bottom:164.826667pt;}
.y22c{bottom:166.426667pt;}
.y1e4{bottom:166.746667pt;}
.y2f1{bottom:169.026667pt;}
.y17e{bottom:169.333333pt;}
.y193{bottom:169.346667pt;}
.y296{bottom:170.906667pt;}
.y121{bottom:171.546667pt;}
.yb7{bottom:171.866667pt;}
.y2b0{bottom:172.866667pt;}
.y25d{bottom:173.506667pt;}
.y21e{bottom:174.440000pt;}
.y21d{bottom:174.760000pt;}
.y7d{bottom:175.426667pt;}
.y9c{bottom:176.386667pt;}
.y13e{bottom:176.666667pt;}
.y136{bottom:177.986667pt;}
.y187{bottom:179.293333pt;}
.y12{bottom:179.546667pt;}
.y1d1{bottom:179.586667pt;}
.y1a3{bottom:180.573333pt;}
.y27d{bottom:181.826667pt;}
.y2cb{bottom:181.853333pt;}
.y20a{bottom:182.466667pt;}
.yd6{bottom:186.946667pt;}
.y17d{bottom:187.573333pt;}
.y4c{bottom:189.786667pt;}
.y1ee{bottom:190.146667pt;}
.y295{bottom:193.986667pt;}
.y316{bottom:195.266667pt;}
.y120{bottom:199.106667pt;}
.y2d0{bottom:200.413333pt;}
.y13f{bottom:202.306667pt;}
.y1bb{bottom:202.626667pt;}
.y7c{bottom:202.946667pt;}
.y9b{bottom:203.906667pt;}
.y1e3{bottom:204.866667pt;}
.y2af{bottom:206.466667pt;}
.y1d0{bottom:207.106667pt;}
.y155{bottom:209.666667pt;}
.yb6{bottom:209.986667pt;}
.y209{bottom:210.306667pt;}
.yf5{bottom:212.866667pt;}
.yd5{bottom:214.786667pt;}
.y135{bottom:216.066667pt;}
.y294{bottom:217.026667pt;}
.y1ed{bottom:217.666667pt;}
.y170{bottom:218.626667pt;}
.y2ca{bottom:219.933333pt;}
.y217{bottom:220.546667pt;}
.y2e{bottom:220.666667pt;}
.y33{bottom:226.906667pt;}
.y11f{bottom:226.946667pt;}
.y4b{bottom:228.026667pt;}
.ye8{bottom:229.506667pt;}
.y25c{bottom:230.146667pt;}
.y7b{bottom:230.786667pt;}
.y22b{bottom:232.706667pt;}
.y301{bottom:233.026667pt;}
.y1e2{bottom:233.346667pt;}
.y2f5{bottom:233.986667pt;}
.y1cf{bottom:234.626667pt;}
.y2cf{bottom:235.613333pt;}
.yb5{bottom:237.826667pt;}
.y27c{bottom:238.466667pt;}
.y11{bottom:241.946667pt;}
.y9a{bottom:242.306667pt;}
.yf2{bottom:245.186667pt;}
.y16f{bottom:246.786667pt;}
.y293{bottom:250.626667pt;}
.y2ae{bottom:252.546667pt;}
.y25b{bottom:253.186667pt;}
.y11e{bottom:254.466667pt;}
.y1ec{bottom:256.706667pt;}
.y7a{bottom:258.306667pt;}
.y2d{bottom:258.906667pt;}
.y216{bottom:258.946667pt;}
.y22a{bottom:260.226667pt;}
.y27b{bottom:261.506667pt;}
.y1ce{bottom:262.146667pt;}
.yf0{bottom:264.386667pt;}
.y32{bottom:265.306667pt;}
.yb4{bottom:265.346667pt;}
.y208{bottom:265.666667pt;}
.y4a{bottom:266.266667pt;}
.y315{bottom:269.186667pt;}
.yd4{bottom:269.826667pt;}
.y197{bottom:273.093333pt;}
.y292{bottom:273.666667pt;}
.y16e{bottom:274.306667pt;}
.y2ad{bottom:275.266667pt;}
.y25a{bottom:276.226667pt;}
.y99{bottom:280.066667pt;}
.y2c6{bottom:283.013333pt;}
.yec{bottom:283.266667pt;}
.y27a{bottom:284.573333pt;}
.y79{bottom:285.853333pt;}
.y2c{bottom:286.586667pt;}
.y229{bottom:287.773333pt;}
.y17c{bottom:290.373333pt;}
.y1e1{bottom:290.653333pt;}
.y1a2{bottom:291.653333pt;}
.y11d{bottom:292.253333pt;}
.y134{bottom:292.893333pt;}
.y1aa{bottom:292.933333pt;}
.y207{bottom:293.213333pt;}
.y1eb{bottom:295.133333pt;}
.y291{bottom:296.733333pt;}
.y215{bottom:297.053333pt;}
.y1cd{bottom:300.253333pt;}
.y16d{bottom:301.853333pt;}
.yb3{bottom:303.453333pt;}
.y31{bottom:303.586667pt;}
.y10{bottom:304.386667pt;}
.y49{bottom:304.546667pt;}
.yc7{bottom:306.653333pt;}
.yd3{bottom:307.933333pt;}
.y98{bottom:308.253333pt;}
.y2ac{bottom:309.213333pt;}
.y259{bottom:309.853333pt;}
.y1ba{bottom:313.373333pt;}
.y228{bottom:315.613333pt;}
.y279{bottom:318.173333pt;}
.yc6{bottom:318.493333pt;}
.y1e0{bottom:319.453333pt;}
.y290{bottom:319.773333pt;}
.y11c{bottom:320.413333pt;}
.ye9{bottom:320.733333pt;}
.y1ea{bottom:322.973333pt;}
.y314{bottom:324.573333pt;}
.y2b{bottom:324.866667pt;}
.y1cc{bottom:329.053333pt;}
.y78{bottom:329.373333pt;}
.y133{bottom:330.973333pt;}
.y1a9{bottom:331.013333pt;}
.yb2{bottom:331.293333pt;}
.y2ab{bottom:332.253333pt;}
.y258{bottom:332.893333pt;}
.y214{bottom:335.453333pt;}
.y97{bottom:335.773333pt;}
.y1b9{bottom:341.213333pt;}
.y30{bottom:341.826667pt;}
.y28f{bottom:342.813333pt;}
.y48{bottom:342.946667pt;}
.y227{bottom:343.133333pt;}
.y300{bottom:343.773333pt;}
.yf3{bottom:344.093333pt;}
.y245{bottom:346.013333pt;}
.y1a7{bottom:346.720000pt;}
.ye7{bottom:347.933333pt;}
.y1df{bottom:348.253333pt;}
.y1e9{bottom:350.173333pt;}
.y77{bottom:351.773333pt;}
.y2a{bottom:352.546667pt;}
.y2bb{bottom:353.373333pt;}
.y2aa{bottom:354.973333pt;}
.y257{bottom:355.933333pt;}
.y16c{bottom:357.213333pt;}
.y1cb{bottom:357.853333pt;}
.y11b{bottom:358.173333pt;}
.yb1{bottom:358.813333pt;}
.y96{bottom:363.293333pt;}
.y278{bottom:364.253333pt;}
.y28e{bottom:365.853333pt;}
.yf{bottom:366.786667pt;}
.y132{bottom:369.373333pt;}
.y226{bottom:370.653333pt;}
.y213{bottom:373.533333pt;}
.y244{bottom:373.853333pt;}
.y206{bottom:376.093333pt;}
.y2ba{bottom:376.413333pt;}
.y1de{bottom:376.733333pt;}
.y2a9{bottom:378.013333pt;}
.y1b8{bottom:378.973333pt;}
.y76{bottom:379.293333pt;}
.y29{bottom:380.066667pt;}
.y47{bottom:381.186667pt;}
.y16b{bottom:384.733333pt;}
.ye6{bottom:386.333333pt;}
.yb0{bottom:386.653333pt;}
.y277{bottom:386.973333pt;}
.y28d{bottom:388.893333pt;}
.y256{bottom:389.533333pt;}
.yd2{bottom:390.813333pt;}
.y225{bottom:398.213333pt;}
.y2b9{bottom:399.493333pt;}
.y95{bottom:401.413333pt;}
.y212{bottom:401.733333pt;}
.y1a0{bottom:402.720000pt;}
.y205{bottom:403.653333pt;}
.y124{bottom:404.933333pt;}
.y1e8{bottom:406.533333pt;}
.y75{bottom:406.853333pt;}
.y151{bottom:407.173333pt;}
.y131{bottom:407.493333pt;}
.y28{bottom:407.746667pt;}
.y276{bottom:410.053333pt;}
.y2a8{bottom:411.653333pt;}
.y13d{bottom:412.293333pt;}
.y2c4{bottom:412.320000pt;}
.y255{bottom:412.613333pt;}
.yaf{bottom:414.213333pt;}
.y1ca{bottom:415.173333pt;}
.y1dd{bottom:416.133333pt;}
.y313{bottom:417.093333pt;}
.yd1{bottom:418.693333pt;}
.y46{bottom:419.426667pt;}
.y14e{bottom:420.933333pt;}
.y28c{bottom:422.533333pt;}
.y11a{bottom:424.133333pt;}
.y2bf{bottom:427.653333pt;}
.ye{bottom:429.186667pt;}
.y94{bottom:429.253333pt;}
.y275{bottom:433.093333pt;}
.y74{bottom:434.693333pt;}
.y27{bottom:435.266667pt;}
.y130{bottom:435.653333pt;}
.y2ff{bottom:435.973333pt;}
.y224{bottom:436.293333pt;}
.y2f4{bottom:436.933333pt;}
.y192{bottom:439.546667pt;}
.y119{bottom:439.813333pt;}
.y204{bottom:441.413333pt;}
.y1dc{bottom:443.973333pt;}
.y28b{bottom:445.573333pt;}
.y1e7{bottom:445.893333pt;}
.yd0{bottom:446.213333pt;}
.y16a{bottom:450.373333pt;}
.y2e0{bottom:450.693333pt;}
.yae{bottom:451.973333pt;}
.y2c0{bottom:453.253333pt;}
.y1c9{bottom:454.213333pt;}
.y274{bottom:456.133333pt;}
.y93{bottom:456.773333pt;}
.y45{bottom:457.666667pt;}
.y2a7{bottom:457.733333pt;}
.y73{bottom:462.213333pt;}
.y26{bottom:462.946667pt;}
.y223{bottom:464.133333pt;}
.y118{bottom:465.733333pt;}
.y211{bottom:467.333333pt;}
.y28a{bottom:468.613333pt;}
.y254{bottom:469.253333pt;}
.y203{bottom:469.573333pt;}
.y1db{bottom:471.493333pt;}
.y12f{bottom:473.413333pt;}
.y169{bottom:478.213333pt;}
.y2b8{bottom:479.173333pt;}
.ye5{bottom:480.133333pt;}
.y1c8{bottom:482.373333pt;}
.ycf{bottom:483.973333pt;}
.y92{bottom:484.293333pt;}
.y72{bottom:489.733333pt;}
.yad{bottom:490.373333pt;}
.y25{bottom:490.466667pt;}
.y289{bottom:491.333333pt;}
.y116{bottom:491.653333pt;}
.y253{bottom:492.293333pt;}
.y2f3{bottom:492.613333pt;}
.y174{bottom:493.306667pt;}
.yd{bottom:493.826667pt;}
.y243{bottom:494.853333pt;}
.y210{bottom:495.173333pt;}
.y44{bottom:495.906667pt;}
.y104{bottom:498.693333pt;}
.yc3{bottom:501.253333pt;}
.y2b7{bottom:502.213333pt;}
.y168{bottom:505.733333pt;}
.y2be{bottom:506.373333pt;}
.y202{bottom:507.333333pt;}
.ye4{bottom:507.653333pt;}
.y1da{bottom:509.600000pt;}
.y2fd{bottom:509.920000pt;}
.y91{bottom:512.160000pt;}
.y273{bottom:512.800000pt;}
.y1a6{bottom:513.186667pt;}
.y2a6{bottom:514.400000pt;}
.y252{bottom:515.360000pt;}
.y71{bottom:517.280000pt;}
.y114{bottom:517.920000pt;}
.y2f{bottom:517.986667pt;}
.yac{bottom:518.240000pt;}
.y222{bottom:519.520000pt;}
.y1c7{bottom:520.160000pt;}
.y20f{bottom:522.720000pt;}
.y2dd{bottom:524.640000pt;}
.y288{bottom:525.280000pt;}
.y1b7{bottom:527.840000pt;}
.y311{bottom:528.480000pt;}
.y24{bottom:528.706667pt;}
.y12e{bottom:529.120000pt;}
.y19f{bottom:532.386667pt;}
.y167{bottom:533.280000pt;}
.y43{bottom:534.146667pt;}
.y201{bottom:535.200000pt;}
.y272{bottom:535.840000pt;}
.y103{bottom:536.800000pt;}
.y5a{bottom:536.893333pt;}
.y1d9{bottom:537.440000pt;}
.y90{bottom:539.680000pt;}
.y112{bottom:543.840000pt;}
.yc2{bottom:544.800000pt;}
.y70{bottom:545.120000pt;}
.ye3{bottom:545.440000pt;}
.y221{bottom:547.040000pt;}
.y287{bottom:548.000000pt;}
.y1c6{bottom:548.320000pt;}
.y251{bottom:548.960000pt;}
.y20e{bottom:550.240000pt;}
.yc{bottom:552.733333pt;}
.y1b6{bottom:555.680000pt;}
.yab{bottom:556.320000pt;}
.y23{bottom:556.413333pt;}
.y12d{bottom:556.640000pt;}
.y271{bottom:558.880000pt;}
.y2a5{bottom:560.480000pt;}
.y242{bottom:560.800000pt;}
.y166{bottom:561.120000pt;}
.y2c3{bottom:561.506667pt;}
.y200{bottom:563.040000pt;}
.y1d8{bottom:564.960000pt;}
.y310{bottom:565.600000pt;}
.y8f{bottom:567.200000pt;}
.y2cd{bottom:569.186667pt;}
.y286{bottom:571.040000pt;}
.y250{bottom:572.000000pt;}
.y42{bottom:572.413333pt;}
.y6f{bottom:572.640000pt;}
.ye2{bottom:573.600000pt;}
.y220{bottom:574.560000pt;}
.y59{bottom:575.133333pt;}
.y102{bottom:575.200000pt;}
.y1c5{bottom:575.520000pt;}
.y20d{bottom:577.760000pt;}
.y123{bottom:581.600000pt;}
.y270{bottom:581.920000pt;}
.y1b5{bottom:583.200000pt;}
.y14a{bottom:583.840000pt;}
.y22{bottom:583.933333pt;}
.yaa{bottom:584.160000pt;}
.y2f0{bottom:585.120000pt;}
.y165{bottom:588.640000pt;}
.y1ff{bottom:590.560000pt;}
.y240{bottom:591.520000pt;}
.y2a4{bottom:594.080000pt;}
.y12c{bottom:594.400000pt;}
.yc1{bottom:594.720000pt;}
.y1d7{bottom:599.200000pt;}
.y6e{bottom:600.160000pt;}
.ye1{bottom:601.120000pt;}
.y1c4{bottom:604.320000pt;}
.y2b6{bottom:604.960000pt;}
.y8e{bottom:605.280000pt;}
.y20c{bottom:605.600000pt;}
.y1a5{bottom:606.013333pt;}
.y1b4{bottom:610.720000pt;}
.y41{bottom:610.813333pt;}
.y21{bottom:611.613333pt;}
.ya9{bottom:611.680000pt;}
.yb{bottom:611.773333pt;}
.y21f{bottom:612.640000pt;}
.y101{bottom:613.280000pt;}
.y58{bottom:613.373333pt;}
.y2c9{bottom:613.693333pt;}
.y26f{bottom:615.520000pt;}
.y164{bottom:616.160000pt;}
.y2a3{bottom:617.120000pt;}
.y1fe{bottom:618.080000pt;}
.y111{bottom:619.360000pt;}
.y30e{bottom:620.960000pt;}
.y1d6{bottom:621.306667pt;}
.y12b{bottom:622.586667pt;}
.y190{bottom:624.253333pt;}
.y2c2{bottom:626.813333pt;}
.y285{bottom:627.706667pt;}
.y21c{bottom:628.346667pt;}
.y24f{bottom:628.666667pt;}
.ye0{bottom:628.986667pt;}
.y5d{bottom:630.333333pt;}
.y1c3{bottom:631.866667pt;}
.yc0{bottom:632.826667pt;}
.y8d{bottom:633.146667pt;}
.y231{bottom:634.106667pt;}
.y6d{bottom:638.266667pt;}
.y1b3{bottom:638.586667pt;}
.y20{bottom:639.133333pt;}
.y30d{bottom:639.866667pt;}
.y2a2{bottom:640.186667pt;}
.y57{bottom:641.053333pt;}
.y172{bottom:642.813333pt;}
.y20b{bottom:643.386667pt;}
.y163{bottom:643.706667pt;}
.y110{bottom:647.546667pt;}
.y1d5{bottom:648.826667pt;}
.y40{bottom:649.053333pt;}
.ya8{bottom:649.786667pt;}
.y12a{bottom:650.106667pt;}
.y284{bottom:650.746667pt;}
.y100{bottom:651.706667pt;}
.y2dc{bottom:653.946667pt;}
.y1fd{bottom:656.186667pt;}
.y8c{bottom:660.666667pt;}
.y26e{bottom:661.626667pt;}
.y2a1{bottom:663.226667pt;}
.y2c1{bottom:665.533333pt;}
.y6c{bottom:666.106667pt;}
.y5c{bottom:668.573333pt;}
.ya{bottom:670.653333pt;}
.y1c2{bottom:671.226667pt;}
.y162{bottom:671.546667pt;}
.ydf{bottom:671.866667pt;}
.y24e{bottom:674.426667pt;}
.y10f{bottom:675.066667pt;}
.y1f{bottom:677.373333pt;}
.ya7{bottom:677.626667pt;}
.y56{bottom:679.293333pt;}
.y1fc{bottom:684.026667pt;}
.y26d{bottom:684.346667pt;}
.y3f{bottom:687.293333pt;}
.y1d4{bottom:687.866667pt;}
.y8b{bottom:688.186667pt;}
.y18e{bottom:689.573333pt;}
.yff{bottom:690.106667pt;}
.y6b{bottom:693.626667pt;}
.y2fb{bottom:694.586667pt;}
.y2b5{bottom:695.226667pt;}
.y30a{bottom:695.546667pt;}
.y2a0{bottom:696.826667pt;}
.y24d{bottom:697.466667pt;}
.y161{bottom:699.066667pt;}
.yde{bottom:700.026667pt;}
.y10e{bottom:702.586667pt;}
.y1e{bottom:705.053333pt;}
.ya6{bottom:705.146667pt;}
.y5b{bottom:706.813333pt;}
.y26c{bottom:707.386667pt;}
.y1c1{bottom:709.306667pt;}
.y1fb{bottom:711.546667pt;}
.y2fa{bottom:713.466667pt;}
.y129{bottom:715.706667pt;}
.ybf{bottom:716.026667pt;}
.y55{bottom:717.533333pt;}
.y2b4{bottom:718.266667pt;}
.y29f{bottom:719.866667pt;}
.y6a{bottom:721.146667pt;}
.y3e{bottom:725.533333pt;}
.y8a{bottom:726.266667pt;}
.y160{bottom:726.586667pt;}
.ydd{bottom:727.546667pt;}
.yfe{bottom:728.186667pt;}
.y145{bottom:729.146667pt;}
.y26b{bottom:730.426667pt;}
.y24c{bottom:731.386667pt;}
.ya5{bottom:732.986667pt;}
.y241{bottom:736.866667pt;}
.y1c0{bottom:737.186667pt;}
.y9{bottom:737.693333pt;}
.y1fa{bottom:739.106667pt;}
.y10d{bottom:740.706667pt;}
.y2b3{bottom:741.346667pt;}
.y29e{bottom:742.946667pt;}
.y1d{bottom:743.293333pt;}
.yce{bottom:743.586667pt;}
.y54{bottom:745.213333pt;}
.y69{bottom:749.026667pt;}
.y26a{bottom:753.506667pt;}
.ybe{bottom:753.826667pt;}
.y89{bottom:754.146667pt;}
.ydc{bottom:755.426667pt;}
.yfd{bottom:756.066667pt;}
.ya4{bottom:760.546667pt;}
.y3d{bottom:763.773333pt;}
.y283{bottom:764.066667pt;}
.y1bf{bottom:765.026667pt;}
.y1f9{bottom:766.946667pt;}
.y10c{bottom:768.546667pt;}
.y2ef{bottom:769.506667pt;}
.y1c{bottom:770.813333pt;}
.y128{bottom:771.106667pt;}
.y68{bottom:776.546667pt;}
.ycd{bottom:781.666667pt;}
.y88{bottom:781.986667pt;}
.ybd{bottom:782.306667pt;}
.y53{bottom:783.493333pt;}
.y2da{bottom:783.586667pt;}
.y8{bottom:783.813333pt;}
.yfc{bottom:784.866667pt;}
.y282{bottom:787.106667pt;}
.y2f9{bottom:787.426667pt;}
.ya3{bottom:788.066667pt;}
.y15f{bottom:792.226667pt;}
.y1be{bottom:792.546667pt;}
.y1f8{bottom:794.466667pt;}
.y10b{bottom:796.066667pt;}
.y3c{bottom:798.053333pt;}
.ydb{bottom:798.306667pt;}
.y29d{bottom:799.586667pt;}
.y67{bottom:804.066667pt;}
.y127{bottom:809.186667pt;}
.y1b{bottom:809.253333pt;}
.y87{bottom:809.506667pt;}
.y269{bottom:810.146667pt;}
.y24b{bottom:810.786667pt;}
.yfb{bottom:812.386667pt;}
.y1b2{bottom:814.306667pt;}
.y21a{bottom:819.426667pt;}
.y15e{bottom:820.066667pt;}
.y2d9{bottom:820.706667pt;}
.y52{bottom:821.733333pt;}
.y29c{bottom:822.626667pt;}
.y31c{bottom:824.866667pt;}
.y7{bottom:825.093333pt;}
.ya2{bottom:826.146667pt;}
.yda{bottom:826.466667pt;}
.y239{bottom:831.266667pt;}
.y66{bottom:831.586667pt;}
.y3b{bottom:832.293333pt;}
.y1f7{bottom:832.546667pt;}
.y268{bottom:833.186667pt;}
.y24a{bottom:833.826667pt;}
.y10a{bottom:834.146667pt;}
.y1a{bottom:836.773333pt;}
.y86{bottom:837.026667pt;}
.ybc{bottom:837.346667pt;}
.y2d8{bottom:839.586667pt;}
.yfa{bottom:840.866667pt;}
.y1b1{bottom:842.466667pt;}
.y308{bottom:843.426667pt;}
.y15d{bottom:847.613333pt;}
.ya1{bottom:854.013333pt;}
.y22d{bottom:855.293333pt;}
.y13b{bottom:855.613333pt;}
.y281{bottom:856.253333pt;}
.y249{bottom:856.893333pt;}
.y65{bottom:859.453333pt;}
.y51{bottom:859.973333pt;}
.y2f8{bottom:861.373333pt;}
.y2ee{bottom:861.693333pt;}
.y109{bottom:862.013333pt;}
.y19{bottom:864.293333pt;}
.y85{bottom:864.573333pt;}
.y3a{bottom:866.693333pt;}
.y267{bottom:866.813333pt;}
.y1b0{bottom:870.013333pt;}
.y1f6{bottom:870.653333pt;}
.y6{bottom:874.213333pt;}
.ycc{bottom:875.133333pt;}
.y15c{bottom:875.453333pt;}
.y29b{bottom:879.293333pt;}
.y248{bottom:879.933333pt;}
.yf9{bottom:880.253333pt;}
.ya0{bottom:881.533333pt;}
.y64{bottom:886.973333pt;}
.y108{bottom:889.533333pt;}
.y266{bottom:889.853333pt;}
.y18{bottom:891.973333pt;}
.y84{bottom:892.093333pt;}
.ybb{bottom:892.413333pt;}
.y2d7{bottom:894.973333pt;}
.y1af{bottom:897.533333pt;}
.y50{bottom:898.213333pt;}
.y1f5{bottom:898.493333pt;}
.y39{bottom:900.933333pt;}
.y29a{bottom:902.333333pt;}
.y1d3{bottom:902.653333pt;}
.ycb{bottom:902.973333pt;}
.y9f{bottom:909.053333pt;}
.y265{bottom:912.893333pt;}
.y280{bottom:913.213333pt;}
.y2d6{bottom:913.853333pt;}
.y63{bottom:914.493333pt;}
.y5{bottom:915.973333pt;}
.y2f7{bottom:917.053333pt;}
.y307{bottom:917.373333pt;}
.yf8{bottom:918.333333pt;}
.y17{bottom:919.493333pt;}
.yd9{bottom:919.613333pt;}
.y83{bottom:919.933333pt;}
.y1ae{bottom:925.053333pt;}
.y141{bottom:926.333333pt;}
.y107{bottom:927.613333pt;}
.y126{bottom:930.173333pt;}
.yca{bottom:930.493333pt;}
.y2bc{bottom:933.373333pt;}
.y38{bottom:935.173333pt;}
.y27f{bottom:935.933333pt;}
.y4f{bottom:936.453333pt;}
.y13a{bottom:936.573333pt;}
.y2bd{bottom:941.693333pt;}
.y62{bottom:942.013333pt;}
.yf7{bottom:946.173333pt;}
.y264{bottom:946.493333pt;}
.y16{bottom:947.173333pt;}
.y82{bottom:947.453333pt;}
.yba{bottom:947.773333pt;}
.y4{bottom:949.733333pt;}
.y2d5{bottom:950.973333pt;}
.y1ad{bottom:952.893333pt;}
.y1f4{bottom:955.133333pt;}
.y106{bottom:955.453333pt;}
.yc9{bottom:958.053333pt;}
.y299{bottom:959.013333pt;}
.y247{bottom:959.653333pt;}
.y37{bottom:969.413333pt;}
.y263{bottom:969.573333pt;}
.y61{bottom:969.893333pt;}
.y2d4{bottom:971.493333pt;}
.y31b{bottom:972.453333pt;}
.y15{bottom:974.693333pt;}
.y1ac{bottom:980.453333pt;}
.y3{bottom:982.373333pt;}
.y246{bottom:982.693333pt;}
.y105{bottom:983.013333pt;}
.y1f3{bottom:983.653333pt;}
.y2d1{bottom:985.253333pt;}
.y81{bottom:985.573333pt;}
.yc5{bottom:985.893333pt;}
.y2ed{bottom:991.013333pt;}
.y262{bottom:992.613333pt;}
.y36{bottom:997.093333pt;}
.y60{bottom:997.733333pt;}
.y23f{bottom:1001.573333pt;}
.y1ab{bottom:1008.293333pt;}
.y2{bottom:1011.520000pt;}
.y1f2{bottom:1012.453333pt;}
.y139{bottom:1013.093333pt;}
.y14{bottom:1013.120000pt;}
.y80{bottom:1013.413333pt;}
.yc4{bottom:1013.733333pt;}
.y261{bottom:1015.653333pt;}
.y1{bottom:1047.840000pt;}
.h37{height:13.760000pt;}
.h43{height:16.640000pt;}
.h1a{height:18.240000pt;}
.h51{height:18.272000pt;}
.h18{height:18.560000pt;}
.h5c{height:18.592000pt;}
.h1b{height:19.200000pt;}
.h2f{height:19.232000pt;}
.h50{height:19.840000pt;}
.h1d{height:20.800000pt;}
.h44{height:21.120000pt;}
.h4b{height:21.440000pt;}
.h22{height:23.040000pt;}
.h1f{height:25.280000pt;}
.h21{height:25.632000pt;}
.h1e{height:27.520000pt;}
.h16{height:33.600000pt;}
.h52{height:36.800000pt;}
.h19{height:36.832000pt;}
.h15{height:43.416064pt;}
.h11{height:44.021915pt;}
.h4a{height:44.758333pt;}
.h4d{height:44.865000pt;}
.h4f{height:46.532500pt;}
.h45{height:48.221250pt;}
.h1c{height:48.521250pt;}
.h47{height:48.641250pt;}
.h17{height:53.628750pt;}
.h49{height:53.675625pt;}
.h54{height:55.040000pt;}
.h53{height:55.072000pt;}
.h46{height:55.256809pt;}
.h59{height:55.360000pt;}
.h36{height:55.392000pt;}
.h48{height:55.965000pt;}
.h26{height:55.965019pt;}
.h28{height:55.965022pt;}
.h24{height:55.965032pt;}
.hf{height:57.218750pt;}
.hb{height:57.375000pt;}
.he{height:57.406250pt;}
.ha{height:57.906250pt;}
.h10{height:59.648125pt;}
.h20{height:60.519362pt;}
.h30{height:62.084375pt;}
.h13{height:65.176064pt;}
.h3b{height:65.186730pt;}
.h14{height:65.282730pt;}
.hc{height:65.781915pt;}
.h9{height:66.625000pt;}
.hd{height:66.750000pt;}
.h12{height:68.292500pt;}
.h5b{height:73.312000pt;}
.h5a{height:73.600000pt;}
.h3c{height:73.632000pt;}
.h2b{height:74.592000pt;}
.h29{height:84.192000pt;}
.h2c{height:84.480000pt;}
.h3d{height:91.872000pt;}
.h4e{height:92.192000pt;}
.h2a{height:97.952000pt;}
.h8{height:98.843125pt;}
.h4{height:100.125000pt;}
.h2d{height:107.872000pt;}
.h5{height:108.313125pt;}
.h35{height:110.432000pt;}
.h4c{height:110.464000pt;}
.h2e{height:117.152000pt;}
.h7{height:118.375000pt;}
.h2{height:122.152500pt;}
.h6{height:128.436875pt;}
.h40{height:128.672000pt;}
.h3a{height:128.704000pt;}
.h57{height:128.992000pt;}
.h3{height:133.500000pt;}
.h33{height:147.266667pt;}
.h42{height:152.386667pt;}
.h56{height:165.466667pt;}
.h55{height:165.786667pt;}
.h39{height:165.826667pt;}
.h23{height:168.346667pt;}
.h3e{height:169.666667pt;}
.h41{height:177.306667pt;}
.h58{height:183.746667pt;}
.h38{height:184.066667pt;}
.h27{height:185.626667pt;}
.h3f{height:189.146667pt;}
.h34{height:202.306667pt;}
.h25{height:415.773333pt;}
.h32{height:793.333333pt;}
.h31{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:15.360000pt;}
.w2a{width:65.280000pt;}
.w37{width:75.232000pt;}
.w32{width:75.552000pt;}
.w2c{width:84.512000pt;}
.w1f{width:93.472000pt;}
.w2e{width:93.792000pt;}
.w1a{width:103.392000pt;}
.w1b{width:112.672000pt;}
.w1d{width:112.992000pt;}
.w34{width:114.912000pt;}
.w36{width:122.592000pt;}
.w31{width:122.912000pt;}
.w7{width:140.866667pt;}
.we{width:190.493333pt;}
.w14{width:194.306667pt;}
.w2b{width:216.706667pt;}
.wa{width:223.133333pt;}
.w15{width:231.773333pt;}
.w12{width:232.093333pt;}
.w13{width:234.333333pt;}
.w11{width:236.253333pt;}
.w10{width:239.133333pt;}
.w1c{width:273.346667pt;}
.w25{width:276.893333pt;}
.w23{width:276.933333pt;}
.w24{width:282.373333pt;}
.wc{width:282.653333pt;}
.wb{width:282.693333pt;}
.w1e{width:282.973333pt;}
.w22{width:289.373333pt;}
.w21{width:289.733333pt;}
.w26{width:290.333333pt;}
.w38{width:300.613333pt;}
.w33{width:300.933333pt;}
.w27{width:301.893333pt;}
.wd{width:331.333333pt;}
.w2d{width:358.493333pt;}
.w16{width:372.293333pt;}
.w2f{width:419.973333pt;}
.w28{width:420.000000pt;}
.w8{width:424.160000pt;}
.w20{width:463.813333pt;}
.w9{width:512.186667pt;}
.w6{width:542.626667pt;}
.w29{width:589.666667pt;}
.w35{width:614.306667pt;}
.w30{width:687.293333pt;}
.w4{width:793.333333pt;}
.w5{width:793.599988pt;}
.w3{width:793.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w19{width:1122.559983pt;}
.w17{width:1122.560000pt;}
.w18{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x19{left:7.040000pt;}
.x44{left:8.000000pt;}
.x16{left:9.600000pt;}
.x25{left:10.560000pt;}
.x30{left:11.520000pt;}
.x23{left:12.480000pt;}
.x43{left:16.000000pt;}
.x34{left:17.280000pt;}
.x2b{left:19.520000pt;}
.x2d{left:20.800000pt;}
.x39{left:23.680000pt;}
.x3c{left:25.280000pt;}
.x31{left:27.520000pt;}
.x33{left:31.720000pt;}
.x1e{left:33.280000pt;}
.x3a{left:35.200000pt;}
.x1d{left:36.194667pt;}
.x32{left:38.080000pt;}
.x26{left:51.880000pt;}
.x54{left:66.272000pt;}
.x29{left:69.480000pt;}
.x36{left:76.832000pt;}
.x53{left:77.792000pt;}
.x2e{left:82.280000pt;}
.x41{left:86.440000pt;}
.x35{left:87.400000pt;}
.x27{left:91.880000pt;}
.x15{left:93.472000pt;}
.x38{left:94.431983pt;}
.x3e{left:97.640000pt;}
.x22{left:107.552000pt;}
.x4c{left:108.832000pt;}
.x1b{left:111.392000pt;}
.x6{left:113.471988pt;}
.x20{left:117.472000pt;}
.x28{left:119.720000pt;}
.x9{left:131.711988pt;}
.x12{left:137.346655pt;}
.x45{left:151.106655pt;}
.x7{left:155.386655pt;}
.x1c{left:160.386655pt;}
.x13{left:161.346655pt;}
.x3{left:169.946655pt;}
.x46{left:175.106655pt;}
.x8{left:179.386655pt;}
.x55{left:189.186667pt;}
.x3b{left:199.106667pt;}
.x1{left:200.986655pt;}
.x2{left:221.306655pt;}
.x5{left:229.786655pt;}
.x24{left:250.653333pt;}
.x1a{left:255.773333pt;}
.x4{left:257.506655pt;}
.x2c{left:258.653333pt;}
.x2a{left:261.213333pt;}
.x56{left:264.733333pt;}
.xe{left:272.066655pt;}
.x4f{left:274.626667pt;}
.x1f{left:300.933322pt;}
.xa{left:310.146655pt;}
.x3d{left:312.413333pt;}
.x18{left:346.693322pt;}
.x21{left:387.999988pt;}
.x11{left:390.306655pt;}
.x10{left:392.386655pt;}
.xf{left:394.626655pt;}
.xb{left:396.866655pt;}
.x4b{left:403.040000pt;}
.x48{left:404.320000pt;}
.x4a{left:410.080000pt;}
.xd{left:420.253322pt;}
.x47{left:427.679988pt;}
.x50{left:491.973333pt;}
.x49{left:521.466655pt;}
.x4e{left:526.559983pt;}
.x2f{left:544.866667pt;}
.x37{left:552.159983pt;}
.x57{left:565.666667pt;}
.x51{left:577.120000pt;}
.x3f{left:586.400000pt;}
.x17{left:635.453322pt;}
.x14{left:648.253322pt;}
.xc{left:680.453322pt;}
.x4d{left:689.533322pt;}
.x40{left:700.026667pt;}
.x52{left:936.253333pt;}
.x42{left:983.653333pt;}
}




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