
    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_52b855739a4d0b46b0ccab3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ef2867ddbad4f755ebcaaee2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_091fd491d119e771b4fc1dc0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_6e922166d5d5b1d6b4bde959.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_85f1ddd877917754ec1cb2a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_1f6c4fbe5cbe6da2b1a058d7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37de815d937939c446320fb1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_178558794cf35f6f0e313581.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_9fe48075677f9e9277052cdf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_34a0d319f742c48be73b8e48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_95644d6f1973d33561378316.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_3507db582d449017741027ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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_9457e8af273e9e6df8ef36e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_ae218fea8ecdb6eae820caba.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_a89ee8fbd6ec2107d7c36221.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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_5bfd6e06b878ae773c92bc3f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_a948e292dff700ccffebc9a2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_04be6ea55b210f0304e9532e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_fc7eadba01f9948bfab5f5ab.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-70.560000px;}
.v4{vertical-align:-54.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-3.960000px;}
.ls3e{letter-spacing:-3.420000px;}
.ls57{letter-spacing:-1.152000px;}
.ls34{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.822000px;}
.ls24{letter-spacing:-0.774000px;}
.ls31{letter-spacing:-0.768000px;}
.ls29{letter-spacing:-0.666000px;}
.ls33{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.259800px;}
.ls53{letter-spacing:-0.211800px;}
.ls14{letter-spacing:-0.206400px;}
.ls40{letter-spacing:-0.186600px;}
.ls36{letter-spacing:-0.131400px;}
.ls59{letter-spacing:-0.115800px;}
.ls28{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.100200px;}
.ls23{letter-spacing:-0.093600px;}
.ls2a{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.053280px;}
.ls52{letter-spacing:-0.050700px;}
.lsf{letter-spacing:-0.018000px;}
.lse{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012660px;}
.ls54{letter-spacing:0.025320px;}
.ls0{letter-spacing:0.036000px;}
.ls4a{letter-spacing:0.037440px;}
.ls1f{letter-spacing:0.042600px;}
.ls17{letter-spacing:0.053280px;}
.ls35{letter-spacing:0.072000px;}
.ls3d{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls42{letter-spacing:0.135360px;}
.ls4b{letter-spacing:0.138000px;}
.ls3c{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.197400px;}
.ls4d{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.211800px;}
.ls1c{letter-spacing:0.239616px;}
.ls49{letter-spacing:0.250800px;}
.ls16{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.298800px;}
.ls43{letter-spacing:0.312000px;}
.ls5{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.447840px;}
.ls4f{letter-spacing:0.460200px;}
.ls4c{letter-spacing:0.466800px;}
.ls8{letter-spacing:0.504000px;}
.ls55{letter-spacing:0.513600px;}
.ls50{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.624000px;}
.ls12{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.762000px;}
.ls3{letter-spacing:0.786240px;}
.ls19{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.924000px;}
.ls21{letter-spacing:1.008000px;}
.ls25{letter-spacing:1.080000px;}
.ls32{letter-spacing:1.224000px;}
.lsb{letter-spacing:1.584000px;}
.ls2d{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.340000px;}
.ls39{letter-spacing:3.060000px;}
.ls2e{letter-spacing:3.744000px;}
.ls7{letter-spacing:3.780000px;}
.lsd{letter-spacing:4.500000px;}
.ls47{letter-spacing:5.220000px;}
.ls46{letter-spacing:6.636000px;}
.ls44{letter-spacing:6.660000px;}
.ls45{letter-spacing:7.380000px;}
.ls18{letter-spacing:8.100000px;}
.ls3a{letter-spacing:8.820000px;}
.ls56{letter-spacing:10.260000px;}
.ls3b{letter-spacing:245.844000px;}
.ls1e{letter-spacing:322.081680px;}
.ls1d{letter-spacing:322.201680px;}
.ls38{letter-spacing:357.420000px;}
.ls2c{letter-spacing:418.620000px;}
.ls1a{letter-spacing:492.060000px;}
.ls30{letter-spacing:610.860000px;}
.ls48{letter-spacing:1244.640000px;}
.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;}
}
.ws0{word-spacing:-16.626360px;}
.ws1{word-spacing:-16.493760px;}
.ws24{word-spacing:-16.164000px;}
.ws1b{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.984000px;}
.ws3a{word-spacing:-15.864000px;}
.ws17{word-spacing:-15.738000px;}
.wsb{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.600000px;}
.ws35{word-spacing:-15.552000px;}
.ws3c{word-spacing:-15.453600px;}
.wsd{word-spacing:-15.444000px;}
.ws2c{word-spacing:-15.408000px;}
.ws30{word-spacing:-15.406800px;}
.ws34{word-spacing:-15.400200px;}
.wsa{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.264000px;}
.ws2e{word-spacing:-15.252000px;}
.ws20{word-spacing:-15.238800px;}
.ws22{word-spacing:-15.215616px;}
.ws12{word-spacing:-15.199800px;}
.ws32{word-spacing:-15.190800px;}
.ws15{word-spacing:-15.187800px;}
.ws31{word-spacing:-15.146400px;}
.ws33{word-spacing:-15.137400px;}
.ws2a{word-spacing:-15.120000px;}
.ws28{word-spacing:-15.093600px;}
.ws2f{word-spacing:-15.078000px;}
.wse{word-spacing:-15.046800px;}
.ws14{word-spacing:-15.018600px;}
.ws26{word-spacing:-15.012000px;}
.ws3b{word-spacing:-15.001320px;}
.ws19{word-spacing:-14.993280px;}
.ws2d{word-spacing:-14.977440px;}
.ws21{word-spacing:-14.976000px;}
.ws7{word-spacing:-14.940000px;}
.ws37{word-spacing:-14.925300px;}
.wsc{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.882400px;}
.ws1c{word-spacing:-14.839800px;}
.ws1e{word-spacing:-14.833200px;}
.ws3d{word-spacing:-14.824200px;}
.ws2b{word-spacing:-14.789400px;}
.ws38{word-spacing:-14.764200px;}
.wsf{word-spacing:-14.733600px;}
.ws36{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.479800px;}
.ws1f{word-spacing:-14.274000px;}
.ws23{word-spacing:-14.208000px;}
.ws1a{word-spacing:-14.166000px;}
.ws1d{word-spacing:-14.118000px;}
.ws25{word-spacing:-13.860000px;}
.ws39{word-spacing:-13.788000px;}
.ws9{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws4{word-spacing:-12.186000px;}
.ws6{word-spacing:-10.980000px;}
.ws2{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.136000px;}
.ws13{word-spacing:0.000000px;}
.ws27{word-spacing:112.571280px;}
._b{margin-left:-7.210080px;}
._4{margin-left:-4.840560px;}
._2{margin-left:-3.095760px;}
._3{margin-left:-2.084880px;}
._0{margin-left:-1.032000px;}
._1{width:1.788000px;}
._5{width:3.534000px;}
._6{width:5.086080px;}
._7{width:6.274800px;}
._8{width:8.046000px;}
._9{width:9.071760px;}
._a{width:10.314960px;}
._10{width:12.342000px;}
._f{width:13.864320px;}
._c{width:16.732800px;}
._1f{width:19.611120px;}
._1e{width:20.789040px;}
._e{width:24.678000px;}
._d{width:26.292480px;}
._16{width:31.716000px;}
._1a{width:60.636000px;}
._1b{width:61.966320px;}
._1d{width:64.402320px;}
._17{width:93.069120px;}
._15{width:153.261600px;}
._13{width:161.453760px;}
._12{width:169.205280px;}
._11{width:185.932800px;}
._14{width:191.467200px;}
._19{width:242.770560px;}
._18{width:244.189200px;}
._1c{width:2435.169120px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:3.090000px;}
.y77{bottom:3.270000px;}
.y9a{bottom:3.315000px;}
.ydd{bottom:3.345000px;}
.y46{bottom:3.420000px;}
.ye8{bottom:3.495000px;}
.yea{bottom:3.600000px;}
.y79{bottom:3.630000px;}
.y7e{bottom:3.636000px;}
.y99{bottom:3.675000px;}
.ydf{bottom:3.705000px;}
.yce{bottom:3.750000px;}
.y3{bottom:3.780000px;}
.ye{bottom:4.320000px;}
.y1a{bottom:4.860000px;}
.ye4{bottom:4.935000px;}
.ye6{bottom:5.040000px;}
.ye1{bottom:5.145000px;}
.y102{bottom:8.130000px;}
.y104{bottom:8.280000px;}
.ycc{bottom:9.870000px;}
.yc9{bottom:9.900000px;}
.yc4{bottom:9.930000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:14.040000px;}
.y47{bottom:15.120000px;}
.yb1{bottom:16.200000px;}
.y10c{bottom:16.380000px;}
.y9d{bottom:16.455000px;}
.y4{bottom:17.460000px;}
.y45{bottom:18.000000px;}
.y2{bottom:20.160000px;}
.y107{bottom:20.730000px;}
.yc6{bottom:20.880000px;}
.yff{bottom:20.910000px;}
.y43{bottom:21.105000px;}
.y86{bottom:22.965000px;}
.ybb{bottom:25.410000px;}
.y19{bottom:25.740000px;}
.yca{bottom:28.620000px;}
.yf8{bottom:28.830000px;}
.yb{bottom:30.420000px;}
.y5{bottom:31.140000px;}
.yb0{bottom:33.480000px;}
.ya2{bottom:33.555000px;}
.y10b{bottom:33.696000px;}
.y9c{bottom:33.735000px;}
.y106{bottom:38.010000px;}
.yfe{bottom:38.190000px;}
.y42{bottom:38.385000px;}
.yc5{bottom:39.780000px;}
.y81{bottom:41.685000px;}
.yb6{bottom:44.130000px;}
.y18{bottom:45.900000px;}
.yf7{bottom:46.110000px;}
.ybc{bottom:46.230000px;}
.yaf{bottom:46.260000px;}
.yfb{bottom:46.470000px;}
.ya{bottom:46.800000px;}
.y1{bottom:52.740000px;}
.y41{bottom:55.485000px;}
.yc2{bottom:57.090000px;}
.y17{bottom:62.460000px;}
.yf6{bottom:63.210000px;}
.ydb{bottom:63.285000px;}
.yae{bottom:63.540000px;}
.y40{bottom:72.765000px;}
.y9{bottom:73.440000px;}
.y89{bottom:74.595000px;}
.y16{bottom:78.885000px;}
.yb7{bottom:86.505000px;}
.y3f{bottom:90.045000px;}
.y8{bottom:93.240000px;}
.y82{bottom:93.270000px;}
.y15{bottom:94.725000px;}
.y12d{bottom:101.520000px;}
.y14{bottom:105.165000px;}
.y3e{bottom:107.325000px;}
.y7{bottom:111.450000px;}
.y10f{bottom:114.840000px;}
.y10a{bottom:115.020000px;}
.y12c{bottom:118.800000px;}
.y7f{bottom:120.240000px;}
.y13{bottom:123.525000px;}
.y3d{bottom:124.605000px;}
.y54{bottom:124.740000px;}
.yb4{bottom:125.460000px;}
.y8c{bottom:129.090000px;}
.yb8{bottom:130.065000px;}
.y7d{bottom:134.640000px;}
.y12b{bottom:136.116000px;}
.y3c{bottom:141.885000px;}
.y53{bottom:142.056000px;}
.y12{bottom:142.065000px;}
.y10e{bottom:144.936000px;}
.y10d{bottom:145.080000px;}
.y83{bottom:146.415000px;}
.y90{bottom:147.630000px;}
.y2c{bottom:148.725000px;}
.yc0{bottom:151.590000px;}
.y7c{bottom:152.640000px;}
.y88{bottom:153.075000px;}
.y12a{bottom:153.210000px;}
.yb3{bottom:155.550000px;}
.y3b{bottom:158.985000px;}
.y52{bottom:159.330000px;}
.y8b{bottom:162.540000px;}
.y2b{bottom:163.845000px;}
.y8f{bottom:164.085000px;}
.y11{bottom:167.805000px;}
.ybf{bottom:168.735000px;}
.y129{bottom:170.490000px;}
.y7b{bottom:170.640000px;}
.yb9{bottom:174.855000px;}
.y109{bottom:174.990000px;}
.y105{bottom:175.140000px;}
.y3a{bottom:176.265000px;}
.y51{bottom:176.610000px;}
.y2a{bottom:181.125000px;}
.y8a{bottom:181.620000px;}
.yad{bottom:185.430000px;}
.y128{bottom:187.770000px;}
.y7a{bottom:188.640000px;}
.y10{bottom:192.285000px;}
.y39{bottom:193.545000px;}
.y50{bottom:193.890000px;}
.y29{bottom:198.405000px;}
.y84{bottom:201.165000px;}
.y127{bottom:205.050000px;}
.y78{bottom:206.640000px;}
.y108{bottom:209.520000px;}
.y38{bottom:210.825000px;}
.y4f{bottom:211.170000px;}
.yb2{bottom:215.490000px;}
.y28{bottom:215.685000px;}
.yba{bottom:220.965000px;}
.y126{bottom:222.330000px;}
.y76{bottom:224.640000px;}
.y37{bottom:228.105000px;}
.y4e{bottom:228.270000px;}
.y27{bottom:232.965000px;}
.y103{bottom:239.430000px;}
.yfd{bottom:239.580000px;}
.y125{bottom:239.610000px;}
.y36{bottom:245.385000px;}
.y4d{bottom:245.550000px;}
.y26{bottom:250.425000px;}
.y124{bottom:256.710000px;}
.y85{bottom:257.580000px;}
.y35{bottom:262.485000px;}
.y4c{bottom:262.830000px;}
.y75{bottom:263.550000px;}
.y87{bottom:267.480000px;}
.y25{bottom:267.735000px;}
.y101{bottom:273.990000px;}
.y100{bottom:274.140000px;}
.y74{bottom:277.050000px;}
.y80{bottom:277.920000px;}
.y34{bottom:279.795000px;}
.y4b{bottom:280.110000px;}
.y24{bottom:285.195000px;}
.yac{bottom:290.550000px;}
.y123{bottom:291.270000px;}
.y33{bottom:297.075000px;}
.y4a{bottom:297.390000px;}
.ybe{bottom:302.295000px;}
.y23{bottom:302.655000px;}
.yf5{bottom:304.020000px;}
.yab{bottom:307.830000px;}
.y122{bottom:308.550000px;}
.y49{bottom:314.310000px;}
.y32{bottom:314.355000px;}
.y8e{bottom:314.790000px;}
.y22{bottom:319.935000px;}
.ybd{bottom:322.455000px;}
.yaa{bottom:324.930000px;}
.y121{bottom:325.830000px;}
.y31{bottom:331.635000px;}
.y48{bottom:331.770000px;}
.yfc{bottom:334.080000px;}
.y8d{bottom:335.490000px;}
.y21{bottom:337.395000px;}
.ya9{bottom:342.210000px;}
.y120{bottom:343.110000px;}
.y44{bottom:345.270000px;}
.y30{bottom:348.735000px;}
.y20{bottom:357.735000px;}
.ya8{bottom:359.490000px;}
.y11f{bottom:360.210000px;}
.yf9{bottom:364.140000px;}
.y2f{bottom:366.015000px;}
.y1d{bottom:374.610000px;}
.ya7{bottom:376.770000px;}
.y11e{bottom:377.490000px;}
.y2e{bottom:383.295000px;}
.y1f{bottom:385.275000px;}
.ya6{bottom:394.095000px;}
.y11d{bottom:394.815000px;}
.y2d{bottom:400.575000px;}
.y1e{bottom:402.735000px;}
.yf4{bottom:409.035000px;}
.ya5{bottom:411.195000px;}
.y11c{bottom:412.095000px;}
.yf3{bottom:426.135000px;}
.ya4{bottom:428.475000px;}
.y11b{bottom:429.375000px;}
.yf2{bottom:443.415000px;}
.ya1{bottom:448.920000px;}
.yf1{bottom:460.695000px;}
.y11a{bottom:463.755000px;}
.yf0{bottom:477.975000px;}
.ya3{bottom:478.800000px;}
.y119{bottom:481.035000px;}
.yef{bottom:495.255000px;}
.y118{bottom:498.315000px;}
.y9f{bottom:508.860000px;}
.yee{bottom:512.535000px;}
.y117{bottom:515.595000px;}
.yed{bottom:529.635000px;}
.y116{bottom:532.875000px;}
.ya0{bottom:538.920000px;}
.yec{bottom:546.915000px;}
.y115{bottom:549.975000px;}
.yeb{bottom:564.195000px;}
.y114{bottom:567.255000px;}
.y9b{bottom:568.800000px;}
.ye9{bottom:584.535000px;}
.ye7{bottom:584.640000px;}
.y9e{bottom:598.860000px;}
.y113{bottom:601.815000px;}
.ye5{bottom:614.415000px;}
.ye3{bottom:614.520000px;}
.y112{bottom:618.735000px;}
.y98{bottom:628.920000px;}
.y73{bottom:636.375000px;}
.ye2{bottom:645.840000px;}
.y72{bottom:653.505000px;}
.y71{bottom:670.785000px;}
.y97{bottom:673.845000px;}
.ye0{bottom:675.900000px;}
.y70{bottom:688.065000px;}
.y96{bottom:691.125000px;}
.y6f{bottom:705.345000px;}
.yda{bottom:707.400000px;}
.y95{bottom:708.225000px;}
.y6e{bottom:722.625000px;}
.y94{bottom:725.505000px;}
.yde{bottom:737.460000px;}
.y6d{bottom:739.905000px;}
.y93{bottom:742.785000px;}
.y92{bottom:756.285000px;}
.y6c{bottom:757.005000px;}
.yb5{bottom:757.980000px;}
.ydc{bottom:767.340000px;}
.y6b{bottom:773.925000px;}
.y111{bottom:774.285000px;}
.y1b{bottom:788.685000px;}
.y6a{bottom:791.565000px;}
.y69{bottom:808.845000px;}
.yd9{bottom:812.265000px;}
.yf{bottom:818.205000px;}
.y68{bottom:826.125000px;}
.yd8{bottom:829.545000px;}
.y67{bottom:843.225000px;}
.yd7{bottom:846.825000px;}
.y66{bottom:860.505000px;}
.yd6{bottom:864.105000px;}
.y65{bottom:877.785000px;}
.yd5{bottom:881.385000px;}
.y64{bottom:895.110000px;}
.yd4{bottom:898.530000px;}
.y63{bottom:912.390000px;}
.yd3{bottom:915.810000px;}
.y62{bottom:929.670000px;}
.yd2{bottom:933.090000px;}
.y61{bottom:946.770000px;}
.yd1{bottom:950.370000px;}
.y60{bottom:964.050000px;}
.yd0{bottom:967.650000px;}
.y5f{bottom:981.330000px;}
.ycf{bottom:987.810000px;}
.ycd{bottom:987.840000px;}
.y5e{bottom:998.610000px;}
.y110{bottom:1015.530000px;}
.y5d{bottom:1015.890000px;}
.yc7{bottom:1017.870000px;}
.ycb{bottom:1017.900000px;}
.yd{bottom:1025.790000px;}
.y5c{bottom:1033.170000px;}
.y6{bottom:1045.770000px;}
.y5b{bottom:1050.270000px;}
.yc8{bottom:1053.870000px;}
.y5a{bottom:1067.550000px;}
.y59{bottom:1084.830000px;}
.yc1{bottom:1090.050000px;}
.y58{bottom:1101.750000px;}
.y91{bottom:1102.110000px;}
.y57{bottom:1119.390000px;}
.y56{bottom:1136.670000px;}
.yc3{bottom:1137.210000px;}
.y55{bottom:1153.800000px;}
.h34{height:17.100000px;}
.h23{height:17.280000px;}
.h2a{height:17.316000px;}
.h33{height:18.540000px;}
.h32{height:18.720000px;}
.hc{height:19.620000px;}
.h36{height:21.780000px;}
.h30{height:23.400000px;}
.h2d{height:23.436000px;}
.h13{height:28.968750px;}
.h20{height:29.340000px;}
.h15{height:29.520000px;}
.h2{height:32.940000px;}
.h2e{height:34.380000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1d{height:38.818125px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h14{height:43.453125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h28{height:47.160000px;}
.h27{height:47.340000px;}
.h18{height:47.980898px;}
.h37{height:51.660000px;}
.h35{height:51.840000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h1b{height:58.621992px;}
.h1c{height:58.651172px;}
.h22{height:58.792500px;}
.h2f{height:59.400000px;}
.h10{height:59.439023px;}
.h25{height:59.582250px;}
.h21{height:60.226875px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h2c{height:70.596000px;}
.h6{height:70.664062px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h26{height:75.093750px;}
.h31{height:77.220000px;}
.h29{height:77.400000px;}
.h7{height:121.536000px;}
.hd{height:207.570000px;}
.h2b{height:340.380000px;}
.h24{height:354.780000px;}
.h17{height:414.075000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w30{width:41.940000px;}
.w19{width:46.440000px;}
.w21{width:46.620000px;}
.w1d{width:46.656000px;}
.w1b{width:47.520000px;}
.w37{width:52.200000px;}
.w2c{width:52.380000px;}
.w24{width:53.280000px;}
.w2a{width:61.380000px;}
.w1a{width:62.460000px;}
.w20{width:62.640000px;}
.w1c{width:62.676000px;}
.w2d{width:67.680000px;}
.w32{width:70.560000px;}
.w38{width:70.740000px;}
.w39{width:71.100000px;}
.w33{width:71.820000px;}
.w3c{width:71.856000px;}
.w3{width:72.936000px;}
.w29{width:76.140000px;}
.w2b{width:79.200000px;}
.w3b{width:81.540000px;}
.w25{width:91.980000px;}
.w2e{width:92.016000px;}
.w3a{width:92.160000px;}
.w1f{width:94.320000px;}
.w12{width:94.356000px;}
.w17{width:94.500000px;}
.w14{width:94.536000px;}
.w15{width:109.620000px;}
.w18{width:109.836000px;}
.w16{width:110.916000px;}
.w36{width:118.440000px;}
.w34{width:123.480000px;}
.w35{width:123.840000px;}
.we{width:127.620000px;}
.w27{width:132.300000px;}
.w26{width:138.240000px;}
.w28{width:147.600000px;}
.w5{width:151.770000px;}
.w22{width:161.820000px;}
.w2f{width:174.420000px;}
.wf{width:181.800000px;}
.w10{width:183.780000px;}
.w8{width:202.035000px;}
.w11{width:233.640000px;}
.wa{width:242.460000px;}
.wb{width:242.640000px;}
.w13{width:316.695000px;}
.w31{width:367.200000px;}
.wd{width:418.140000px;}
.w23{width:419.580000px;}
.w9{width:528.585000px;}
.w1e{width:573.660000px;}
.w6{width:578.850000px;}
.wc{width:612.900000px;}
.w2{width:657.690000px;}
.w7{width:730.620000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x26{left:4.536000px;}
.x2a{left:5.616000px;}
.x3a{left:7.485000px;}
.x2{left:8.676000px;}
.x1c{left:10.872000px;}
.x14{left:12.600000px;}
.x1b{left:13.650000px;}
.x39{left:14.790000px;}
.x1a{left:16.350000px;}
.x24{left:22.215000px;}
.x38{left:24.690000px;}
.x19{left:26.565000px;}
.x10{left:27.576000px;}
.xc{left:54.396000px;}
.x3b{left:63.105000px;}
.xb{left:65.196000px;}
.x1e{left:69.045000px;}
.x27{left:70.995000px;}
.x1d{left:72.255000px;}
.x1{left:81.000000px;}
.xe{left:82.290000px;}
.x21{left:96.585000px;}
.x4{left:98.130000px;}
.xf{left:100.290000px;}
.x4e{left:107.855987px;}
.x3d{left:131.370000px;}
.x18{left:138.960000px;}
.x3c{left:150.090000px;}
.x37{left:159.300000px;}
.x1f{left:160.950000px;}
.x25{left:162.510000px;}
.xd{left:164.010000px;}
.x4d{left:174.600000px;}
.x2e{left:176.790000px;}
.x22{left:186.405000px;}
.x11{left:192.135000px;}
.x12{left:215.175000px;}
.x5{left:232.770000px;}
.x3f{left:244.260000px;}
.x20{left:253.875000px;}
.x46{left:256.860000px;}
.x2d{left:266.220000px;}
.x8{left:271.875000px;}
.x23{left:279.105000px;}
.x13{left:283.035000px;}
.x47{left:299.700000px;}
.x33{left:319.215000px;}
.x43{left:321.120000px;}
.x16{left:324.900000px;}
.x6{left:331.635000px;}
.x7{left:350.895000px;}
.x4b{left:352.620000px;}
.xa{left:365.325000px;}
.x30{left:382.575000px;}
.x49{left:423.900000px;}
.x34{left:430.815000px;}
.x9{left:439.140000px;}
.x44{left:463.140000px;}
.x4c{left:477.000000px;}
.x2f{left:494.205000px;}
.x2b{left:500.580000px;}
.x42{left:516.240000px;}
.x3e{left:517.935000px;}
.x4a{left:548.460000px;}
.x28{left:558.255000px;}
.x17{left:568.260000px;}
.x31{left:589.425000px;}
.x45{left:596.160000px;}
.x2c{left:628.920000px;}
.x35{left:636.810000px;}
.x40{left:664.560000px;}
.x48{left:667.620000px;}
.x32{left:699.990000px;}
.x41{left:718.740000px;}
.x29{left:733.109987px;}
.x3{left:738.690000px;}
.x36{left:748.230000px;}
.x15{left:753.449987px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v4{vertical-align:-48.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-3.520000pt;}
.ls3e{letter-spacing:-3.040000pt;}
.ls57{letter-spacing:-1.024000pt;}
.ls34{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.730667pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls31{letter-spacing:-0.682667pt;}
.ls29{letter-spacing:-0.592000pt;}
.ls33{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.230933pt;}
.ls53{letter-spacing:-0.188267pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls40{letter-spacing:-0.165867pt;}
.ls36{letter-spacing:-0.116800pt;}
.ls59{letter-spacing:-0.102933pt;}
.ls28{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.089067pt;}
.ls23{letter-spacing:-0.083200pt;}
.ls2a{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls52{letter-spacing:-0.045067pt;}
.lsf{letter-spacing:-0.016000pt;}
.lse{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011253pt;}
.ls54{letter-spacing:0.022507pt;}
.ls0{letter-spacing:0.032000pt;}
.ls4a{letter-spacing:0.033280pt;}
.ls1f{letter-spacing:0.037867pt;}
.ls17{letter-spacing:0.047360pt;}
.ls35{letter-spacing:0.064000pt;}
.ls3d{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls42{letter-spacing:0.120320pt;}
.ls4b{letter-spacing:0.122667pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.175467pt;}
.ls4d{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.188267pt;}
.ls1c{letter-spacing:0.212992pt;}
.ls49{letter-spacing:0.222933pt;}
.ls16{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls43{letter-spacing:0.277333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls4f{letter-spacing:0.409067pt;}
.ls4c{letter-spacing:0.414933pt;}
.ls8{letter-spacing:0.448000pt;}
.ls55{letter-spacing:0.456533pt;}
.ls50{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.554667pt;}
.ls12{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.677333pt;}
.ls3{letter-spacing:0.698880pt;}
.ls19{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.821333pt;}
.ls21{letter-spacing:0.896000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls32{letter-spacing:1.088000pt;}
.lsb{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:2.080000pt;}
.ls39{letter-spacing:2.720000pt;}
.ls2e{letter-spacing:3.328000pt;}
.ls7{letter-spacing:3.360000pt;}
.lsd{letter-spacing:4.000000pt;}
.ls47{letter-spacing:4.640000pt;}
.ls46{letter-spacing:5.898667pt;}
.ls44{letter-spacing:5.920000pt;}
.ls45{letter-spacing:6.560000pt;}
.ls18{letter-spacing:7.200000pt;}
.ls3a{letter-spacing:7.840000pt;}
.ls56{letter-spacing:9.120000pt;}
.ls3b{letter-spacing:218.528000pt;}
.ls1e{letter-spacing:286.294827pt;}
.ls1d{letter-spacing:286.401493pt;}
.ls38{letter-spacing:317.706667pt;}
.ls2c{letter-spacing:372.106667pt;}
.ls1a{letter-spacing:437.386667pt;}
.ls30{letter-spacing:542.986667pt;}
.ls48{letter-spacing:1106.346667pt;}
.ws0{word-spacing:-14.778987pt;}
.ws1{word-spacing:-14.661120pt;}
.ws24{word-spacing:-14.368000pt;}
.ws1b{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.208000pt;}
.ws3a{word-spacing:-14.101333pt;}
.ws17{word-spacing:-13.989333pt;}
.wsb{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.866667pt;}
.ws35{word-spacing:-13.824000pt;}
.ws3c{word-spacing:-13.736533pt;}
.wsd{word-spacing:-13.728000pt;}
.ws2c{word-spacing:-13.696000pt;}
.ws30{word-spacing:-13.694933pt;}
.ws34{word-spacing:-13.689067pt;}
.wsa{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.568000pt;}
.ws2e{word-spacing:-13.557333pt;}
.ws20{word-spacing:-13.545600pt;}
.ws22{word-spacing:-13.524992pt;}
.ws12{word-spacing:-13.510933pt;}
.ws32{word-spacing:-13.502933pt;}
.ws15{word-spacing:-13.500267pt;}
.ws31{word-spacing:-13.463467pt;}
.ws33{word-spacing:-13.455467pt;}
.ws2a{word-spacing:-13.440000pt;}
.ws28{word-spacing:-13.416533pt;}
.ws2f{word-spacing:-13.402667pt;}
.wse{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.349867pt;}
.ws26{word-spacing:-13.344000pt;}
.ws3b{word-spacing:-13.334507pt;}
.ws19{word-spacing:-13.327360pt;}
.ws2d{word-spacing:-13.313280pt;}
.ws21{word-spacing:-13.312000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws37{word-spacing:-13.266933pt;}
.wsc{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.228800pt;}
.ws1c{word-spacing:-13.190933pt;}
.ws1e{word-spacing:-13.185067pt;}
.ws3d{word-spacing:-13.177067pt;}
.ws2b{word-spacing:-13.146133pt;}
.ws38{word-spacing:-13.123733pt;}
.wsf{word-spacing:-13.096533pt;}
.ws36{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.870933pt;}
.ws1f{word-spacing:-12.688000pt;}
.ws23{word-spacing:-12.629333pt;}
.ws1a{word-spacing:-12.592000pt;}
.ws1d{word-spacing:-12.549333pt;}
.ws25{word-spacing:-12.320000pt;}
.ws39{word-spacing:-12.256000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws4{word-spacing:-10.832000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws2{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.232000pt;}
.ws13{word-spacing:0.000000pt;}
.ws27{word-spacing:100.063360pt;}
._b{margin-left:-6.408960pt;}
._4{margin-left:-4.302720pt;}
._2{margin-left:-2.751787pt;}
._3{margin-left:-1.853227pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.589333pt;}
._5{width:3.141333pt;}
._6{width:4.520960pt;}
._7{width:5.577600pt;}
._8{width:7.152000pt;}
._9{width:8.063787pt;}
._a{width:9.168853pt;}
._10{width:10.970667pt;}
._f{width:12.323840pt;}
._c{width:14.873600pt;}
._1f{width:17.432107pt;}
._1e{width:18.479147pt;}
._e{width:21.936000pt;}
._d{width:23.371093pt;}
._16{width:28.192000pt;}
._1a{width:53.898667pt;}
._1b{width:55.081173pt;}
._1d{width:57.246507pt;}
._17{width:82.728107pt;}
._15{width:136.232533pt;}
._13{width:143.514453pt;}
._12{width:150.404693pt;}
._11{width:165.273600pt;}
._14{width:170.193067pt;}
._19{width:215.796053pt;}
._18{width:217.057067pt;}
._1c{width:2164.594773pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:2.746667pt;}
.y77{bottom:2.906667pt;}
.y9a{bottom:2.946667pt;}
.ydd{bottom:2.973333pt;}
.y46{bottom:3.040000pt;}
.ye8{bottom:3.106667pt;}
.yea{bottom:3.200000pt;}
.y79{bottom:3.226667pt;}
.y7e{bottom:3.232000pt;}
.y99{bottom:3.266667pt;}
.ydf{bottom:3.293333pt;}
.yce{bottom:3.333333pt;}
.y3{bottom:3.360000pt;}
.ye{bottom:3.840000pt;}
.y1a{bottom:4.320000pt;}
.ye4{bottom:4.386667pt;}
.ye6{bottom:4.480000pt;}
.ye1{bottom:4.573333pt;}
.y102{bottom:7.226667pt;}
.y104{bottom:7.360000pt;}
.ycc{bottom:8.773333pt;}
.yc9{bottom:8.800000pt;}
.yc4{bottom:8.826667pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.480000pt;}
.y47{bottom:13.440000pt;}
.yb1{bottom:14.400000pt;}
.y10c{bottom:14.560000pt;}
.y9d{bottom:14.626667pt;}
.y4{bottom:15.520000pt;}
.y45{bottom:16.000000pt;}
.y2{bottom:17.920000pt;}
.y107{bottom:18.426667pt;}
.yc6{bottom:18.560000pt;}
.yff{bottom:18.586667pt;}
.y43{bottom:18.760000pt;}
.y86{bottom:20.413333pt;}
.ybb{bottom:22.586667pt;}
.y19{bottom:22.880000pt;}
.yca{bottom:25.440000pt;}
.yf8{bottom:25.626667pt;}
.yb{bottom:27.040000pt;}
.y5{bottom:27.680000pt;}
.yb0{bottom:29.760000pt;}
.ya2{bottom:29.826667pt;}
.y10b{bottom:29.952000pt;}
.y9c{bottom:29.986667pt;}
.y106{bottom:33.786667pt;}
.yfe{bottom:33.946667pt;}
.y42{bottom:34.120000pt;}
.yc5{bottom:35.360000pt;}
.y81{bottom:37.053333pt;}
.yb6{bottom:39.226667pt;}
.y18{bottom:40.800000pt;}
.yf7{bottom:40.986667pt;}
.ybc{bottom:41.093333pt;}
.yaf{bottom:41.120000pt;}
.yfb{bottom:41.306667pt;}
.ya{bottom:41.600000pt;}
.y1{bottom:46.880000pt;}
.y41{bottom:49.320000pt;}
.yc2{bottom:50.746667pt;}
.y17{bottom:55.520000pt;}
.yf6{bottom:56.186667pt;}
.ydb{bottom:56.253333pt;}
.yae{bottom:56.480000pt;}
.y40{bottom:64.680000pt;}
.y9{bottom:65.280000pt;}
.y89{bottom:66.306667pt;}
.y16{bottom:70.120000pt;}
.yb7{bottom:76.893333pt;}
.y3f{bottom:80.040000pt;}
.y8{bottom:82.880000pt;}
.y82{bottom:82.906667pt;}
.y15{bottom:84.200000pt;}
.y12d{bottom:90.240000pt;}
.y14{bottom:93.480000pt;}
.y3e{bottom:95.400000pt;}
.y7{bottom:99.066667pt;}
.y10f{bottom:102.080000pt;}
.y10a{bottom:102.240000pt;}
.y12c{bottom:105.600000pt;}
.y7f{bottom:106.880000pt;}
.y13{bottom:109.800000pt;}
.y3d{bottom:110.760000pt;}
.y54{bottom:110.880000pt;}
.yb4{bottom:111.520000pt;}
.y8c{bottom:114.746667pt;}
.yb8{bottom:115.613333pt;}
.y7d{bottom:119.680000pt;}
.y12b{bottom:120.992000pt;}
.y3c{bottom:126.120000pt;}
.y53{bottom:126.272000pt;}
.y12{bottom:126.280000pt;}
.y10e{bottom:128.832000pt;}
.y10d{bottom:128.960000pt;}
.y83{bottom:130.146667pt;}
.y90{bottom:131.226667pt;}
.y2c{bottom:132.200000pt;}
.yc0{bottom:134.746667pt;}
.y7c{bottom:135.680000pt;}
.y88{bottom:136.066667pt;}
.y12a{bottom:136.186667pt;}
.yb3{bottom:138.266667pt;}
.y3b{bottom:141.320000pt;}
.y52{bottom:141.626667pt;}
.y8b{bottom:144.480000pt;}
.y2b{bottom:145.640000pt;}
.y8f{bottom:145.853333pt;}
.y11{bottom:149.160000pt;}
.ybf{bottom:149.986667pt;}
.y129{bottom:151.546667pt;}
.y7b{bottom:151.680000pt;}
.yb9{bottom:155.426667pt;}
.y109{bottom:155.546667pt;}
.y105{bottom:155.680000pt;}
.y3a{bottom:156.680000pt;}
.y51{bottom:156.986667pt;}
.y2a{bottom:161.000000pt;}
.y8a{bottom:161.440000pt;}
.yad{bottom:164.826667pt;}
.y128{bottom:166.906667pt;}
.y7a{bottom:167.680000pt;}
.y10{bottom:170.920000pt;}
.y39{bottom:172.040000pt;}
.y50{bottom:172.346667pt;}
.y29{bottom:176.360000pt;}
.y84{bottom:178.813333pt;}
.y127{bottom:182.266667pt;}
.y78{bottom:183.680000pt;}
.y108{bottom:186.240000pt;}
.y38{bottom:187.400000pt;}
.y4f{bottom:187.706667pt;}
.yb2{bottom:191.546667pt;}
.y28{bottom:191.720000pt;}
.yba{bottom:196.413333pt;}
.y126{bottom:197.626667pt;}
.y76{bottom:199.680000pt;}
.y37{bottom:202.760000pt;}
.y4e{bottom:202.906667pt;}
.y27{bottom:207.080000pt;}
.y103{bottom:212.826667pt;}
.yfd{bottom:212.960000pt;}
.y125{bottom:212.986667pt;}
.y36{bottom:218.120000pt;}
.y4d{bottom:218.266667pt;}
.y26{bottom:222.600000pt;}
.y124{bottom:228.186667pt;}
.y85{bottom:228.960000pt;}
.y35{bottom:233.320000pt;}
.y4c{bottom:233.626667pt;}
.y75{bottom:234.266667pt;}
.y87{bottom:237.760000pt;}
.y25{bottom:237.986667pt;}
.y101{bottom:243.546667pt;}
.y100{bottom:243.680000pt;}
.y74{bottom:246.266667pt;}
.y80{bottom:247.040000pt;}
.y34{bottom:248.706667pt;}
.y4b{bottom:248.986667pt;}
.y24{bottom:253.506667pt;}
.yac{bottom:258.266667pt;}
.y123{bottom:258.906667pt;}
.y33{bottom:264.066667pt;}
.y4a{bottom:264.346667pt;}
.ybe{bottom:268.706667pt;}
.y23{bottom:269.026667pt;}
.yf5{bottom:270.240000pt;}
.yab{bottom:273.626667pt;}
.y122{bottom:274.266667pt;}
.y49{bottom:279.386667pt;}
.y32{bottom:279.426667pt;}
.y8e{bottom:279.813333pt;}
.y22{bottom:284.386667pt;}
.ybd{bottom:286.626667pt;}
.yaa{bottom:288.826667pt;}
.y121{bottom:289.626667pt;}
.y31{bottom:294.786667pt;}
.y48{bottom:294.906667pt;}
.yfc{bottom:296.960000pt;}
.y8d{bottom:298.213333pt;}
.y21{bottom:299.906667pt;}
.ya9{bottom:304.186667pt;}
.y120{bottom:304.986667pt;}
.y44{bottom:306.906667pt;}
.y30{bottom:309.986667pt;}
.y20{bottom:317.986667pt;}
.ya8{bottom:319.546667pt;}
.y11f{bottom:320.186667pt;}
.yf9{bottom:323.680000pt;}
.y2f{bottom:325.346667pt;}
.y1d{bottom:332.986667pt;}
.ya7{bottom:334.906667pt;}
.y11e{bottom:335.546667pt;}
.y2e{bottom:340.706667pt;}
.y1f{bottom:342.466667pt;}
.ya6{bottom:350.306667pt;}
.y11d{bottom:350.946667pt;}
.y2d{bottom:356.066667pt;}
.y1e{bottom:357.986667pt;}
.yf4{bottom:363.586667pt;}
.ya5{bottom:365.506667pt;}
.y11c{bottom:366.306667pt;}
.yf3{bottom:378.786667pt;}
.ya4{bottom:380.866667pt;}
.y11b{bottom:381.666667pt;}
.yf2{bottom:394.146667pt;}
.ya1{bottom:399.040000pt;}
.yf1{bottom:409.506667pt;}
.y11a{bottom:412.226667pt;}
.yf0{bottom:424.866667pt;}
.ya3{bottom:425.600000pt;}
.y119{bottom:427.586667pt;}
.yef{bottom:440.226667pt;}
.y118{bottom:442.946667pt;}
.y9f{bottom:452.320000pt;}
.yee{bottom:455.586667pt;}
.y117{bottom:458.306667pt;}
.yed{bottom:470.786667pt;}
.y116{bottom:473.666667pt;}
.ya0{bottom:479.040000pt;}
.yec{bottom:486.146667pt;}
.y115{bottom:488.866667pt;}
.yeb{bottom:501.506667pt;}
.y114{bottom:504.226667pt;}
.y9b{bottom:505.600000pt;}
.ye9{bottom:519.586667pt;}
.ye7{bottom:519.680000pt;}
.y9e{bottom:532.320000pt;}
.y113{bottom:534.946667pt;}
.ye5{bottom:546.146667pt;}
.ye3{bottom:546.240000pt;}
.y112{bottom:549.986667pt;}
.y98{bottom:559.040000pt;}
.y73{bottom:565.666667pt;}
.ye2{bottom:574.080000pt;}
.y72{bottom:580.893333pt;}
.y71{bottom:596.253333pt;}
.y97{bottom:598.973333pt;}
.ye0{bottom:600.800000pt;}
.y70{bottom:611.613333pt;}
.y96{bottom:614.333333pt;}
.y6f{bottom:626.973333pt;}
.yda{bottom:628.800000pt;}
.y95{bottom:629.533333pt;}
.y6e{bottom:642.333333pt;}
.y94{bottom:644.893333pt;}
.yde{bottom:655.520000pt;}
.y6d{bottom:657.693333pt;}
.y93{bottom:660.253333pt;}
.y92{bottom:672.253333pt;}
.y6c{bottom:672.893333pt;}
.yb5{bottom:673.760000pt;}
.ydc{bottom:682.080000pt;}
.y6b{bottom:687.933333pt;}
.y111{bottom:688.253333pt;}
.y1b{bottom:701.053333pt;}
.y6a{bottom:703.613333pt;}
.y69{bottom:718.973333pt;}
.yd9{bottom:722.013333pt;}
.yf{bottom:727.293333pt;}
.y68{bottom:734.333333pt;}
.yd8{bottom:737.373333pt;}
.y67{bottom:749.533333pt;}
.yd7{bottom:752.733333pt;}
.y66{bottom:764.893333pt;}
.yd6{bottom:768.093333pt;}
.y65{bottom:780.253333pt;}
.yd5{bottom:783.453333pt;}
.y64{bottom:795.653333pt;}
.yd4{bottom:798.693333pt;}
.y63{bottom:811.013333pt;}
.yd3{bottom:814.053333pt;}
.y62{bottom:826.373333pt;}
.yd2{bottom:829.413333pt;}
.y61{bottom:841.573333pt;}
.yd1{bottom:844.773333pt;}
.y60{bottom:856.933333pt;}
.yd0{bottom:860.133333pt;}
.y5f{bottom:872.293333pt;}
.ycf{bottom:878.053333pt;}
.ycd{bottom:878.080000pt;}
.y5e{bottom:887.653333pt;}
.y110{bottom:902.693333pt;}
.y5d{bottom:903.013333pt;}
.yc7{bottom:904.773333pt;}
.ycb{bottom:904.800000pt;}
.yd{bottom:911.813333pt;}
.y5c{bottom:918.373333pt;}
.y6{bottom:929.573333pt;}
.y5b{bottom:933.573333pt;}
.yc8{bottom:936.773333pt;}
.y5a{bottom:948.933333pt;}
.y59{bottom:964.293333pt;}
.yc1{bottom:968.933333pt;}
.y58{bottom:979.333333pt;}
.y91{bottom:979.653333pt;}
.y57{bottom:995.013333pt;}
.y56{bottom:1010.373333pt;}
.yc3{bottom:1010.853333pt;}
.y55{bottom:1025.600000pt;}
.h34{height:15.200000pt;}
.h23{height:15.360000pt;}
.h2a{height:15.392000pt;}
.h33{height:16.480000pt;}
.h32{height:16.640000pt;}
.hc{height:17.440000pt;}
.h36{height:19.360000pt;}
.h30{height:20.800000pt;}
.h2d{height:20.832000pt;}
.h13{height:25.750000pt;}
.h20{height:26.080000pt;}
.h15{height:26.240000pt;}
.h2{height:29.280000pt;}
.h2e{height:30.560000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1d{height:34.505000pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h14{height:38.625000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h28{height:41.920000pt;}
.h27{height:42.080000pt;}
.h18{height:42.649687pt;}
.h37{height:45.920000pt;}
.h35{height:46.080000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h1b{height:52.108438pt;}
.h1c{height:52.134375pt;}
.h22{height:52.260000pt;}
.h2f{height:52.800000pt;}
.h10{height:52.834688pt;}
.h25{height:52.962000pt;}
.h21{height:53.535000pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h2c{height:62.752000pt;}
.h6{height:62.812500pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h26{height:66.750000pt;}
.h31{height:68.640000pt;}
.h29{height:68.800000pt;}
.h7{height:108.032000pt;}
.hd{height:184.506667pt;}
.h2b{height:302.560000pt;}
.h24{height:315.360000pt;}
.h17{height:368.066667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w30{width:37.280000pt;}
.w19{width:41.280000pt;}
.w21{width:41.440000pt;}
.w1d{width:41.472000pt;}
.w1b{width:42.240000pt;}
.w37{width:46.400000pt;}
.w2c{width:46.560000pt;}
.w24{width:47.360000pt;}
.w2a{width:54.560000pt;}
.w1a{width:55.520000pt;}
.w20{width:55.680000pt;}
.w1c{width:55.712000pt;}
.w2d{width:60.160000pt;}
.w32{width:62.720000pt;}
.w38{width:62.880000pt;}
.w39{width:63.200000pt;}
.w33{width:63.840000pt;}
.w3c{width:63.872000pt;}
.w3{width:64.832000pt;}
.w29{width:67.680000pt;}
.w2b{width:70.400000pt;}
.w3b{width:72.480000pt;}
.w25{width:81.760000pt;}
.w2e{width:81.792000pt;}
.w3a{width:81.920000pt;}
.w1f{width:83.840000pt;}
.w12{width:83.872000pt;}
.w17{width:84.000000pt;}
.w14{width:84.032000pt;}
.w15{width:97.440000pt;}
.w18{width:97.632000pt;}
.w16{width:98.592000pt;}
.w36{width:105.280000pt;}
.w34{width:109.760000pt;}
.w35{width:110.080000pt;}
.we{width:113.440000pt;}
.w27{width:117.600000pt;}
.w26{width:122.880000pt;}
.w28{width:131.200000pt;}
.w5{width:134.906667pt;}
.w22{width:143.840000pt;}
.w2f{width:155.040000pt;}
.wf{width:161.600000pt;}
.w10{width:163.360000pt;}
.w8{width:179.586667pt;}
.w11{width:207.680000pt;}
.wa{width:215.520000pt;}
.wb{width:215.680000pt;}
.w13{width:281.506667pt;}
.w31{width:326.400000pt;}
.wd{width:371.680000pt;}
.w23{width:372.960000pt;}
.w9{width:469.853333pt;}
.w1e{width:509.920000pt;}
.w6{width:514.533333pt;}
.wc{width:544.800000pt;}
.w2{width:584.613333pt;}
.w7{width:649.440000pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x26{left:4.032000pt;}
.x2a{left:4.992000pt;}
.x3a{left:6.653333pt;}
.x2{left:7.712000pt;}
.x1c{left:9.664000pt;}
.x14{left:11.200000pt;}
.x1b{left:12.133333pt;}
.x39{left:13.146667pt;}
.x1a{left:14.533333pt;}
.x24{left:19.746667pt;}
.x38{left:21.946667pt;}
.x19{left:23.613333pt;}
.x10{left:24.512000pt;}
.xc{left:48.352000pt;}
.x3b{left:56.093333pt;}
.xb{left:57.952000pt;}
.x1e{left:61.373333pt;}
.x27{left:63.106667pt;}
.x1d{left:64.226667pt;}
.x1{left:72.000000pt;}
.xe{left:73.146667pt;}
.x21{left:85.853333pt;}
.x4{left:87.226667pt;}
.xf{left:89.146667pt;}
.x4e{left:95.871988pt;}
.x3d{left:116.773333pt;}
.x18{left:123.520000pt;}
.x3c{left:133.413333pt;}
.x37{left:141.600000pt;}
.x1f{left:143.066667pt;}
.x25{left:144.453333pt;}
.xd{left:145.786667pt;}
.x4d{left:155.200000pt;}
.x2e{left:157.146667pt;}
.x22{left:165.693333pt;}
.x11{left:170.786667pt;}
.x12{left:191.266667pt;}
.x5{left:206.906667pt;}
.x3f{left:217.120000pt;}
.x20{left:225.666667pt;}
.x46{left:228.320000pt;}
.x2d{left:236.640000pt;}
.x8{left:241.666667pt;}
.x23{left:248.093333pt;}
.x13{left:251.586667pt;}
.x47{left:266.400000pt;}
.x33{left:283.746667pt;}
.x43{left:285.440000pt;}
.x16{left:288.800000pt;}
.x6{left:294.786667pt;}
.x7{left:311.906667pt;}
.x4b{left:313.440000pt;}
.xa{left:324.733333pt;}
.x30{left:340.066667pt;}
.x49{left:376.800000pt;}
.x34{left:382.946667pt;}
.x9{left:390.346667pt;}
.x44{left:411.680000pt;}
.x4c{left:424.000000pt;}
.x2f{left:439.293333pt;}
.x2b{left:444.960000pt;}
.x42{left:458.880000pt;}
.x3e{left:460.386667pt;}
.x4a{left:487.520000pt;}
.x28{left:496.226667pt;}
.x17{left:505.120000pt;}
.x31{left:523.933333pt;}
.x45{left:529.920000pt;}
.x2c{left:559.040000pt;}
.x35{left:566.053333pt;}
.x40{left:590.720000pt;}
.x48{left:593.440000pt;}
.x32{left:622.213333pt;}
.x41{left:638.880000pt;}
.x29{left:651.653322pt;}
.x3{left:656.613333pt;}
.x36{left:665.093333pt;}
.x15{left:669.733322pt;}
}




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