
    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_94d16ba55aeafc34701c7f15.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.683105;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_3a514ffea104a9b8e8fb8a9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014648;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_577253bd37bb30f3e65be692.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98c2bb22181891cf9986d0c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_10d0866e769135ebcbc6a272.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_88f0eeae27e1230a8e9e730c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_6465d03c9108fb5e66fd193b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014648;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_e6f66fd04b9cf9322e6ec781.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c60ba78e5e3343cd4189a37e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894043;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_2f08f8e6d4b00b16c14df385.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a8a7de911292e3fd1d5ffcfc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0dc9ff6b82a14b2beb5c854c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2762458831e93a7d5b14a14a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887695;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_444c6957e06cc24082f08c2d.woff2')format("woff");}.fff{font-family:fff;line-height:0.683105;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_4325c651c90a9e5c04e07d6d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680176;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_94d16ba55aeafc34701c7f15.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.683105;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_d63cf0922dc421c5899da3b3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_1cb85cbe43909f1714a8ee50.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_97d294c625a037db0dfb4e04.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6d5e316d16b9ff06fefd8e72.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.680176;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_ee1ac13301440c0f5c135f4d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.690918;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_aa9264d0e4033f933f7cbafb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.708984;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;}
.m3{transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196970,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.197918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197918,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1b{letter-spacing:-20.160000px;}
.ls33{letter-spacing:-13.680000px;}
.ls2a{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.307200px;}
.ls13{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.259800px;}
.ls22{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls2b{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.054720px;}
.ls1f{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.106560px;}
.ls16{letter-spacing:0.106800px;}
.lse{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.142560px;}
.lsa{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.379920px;}
.ls1e{letter-spacing:0.412800px;}
.ls32{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.624000px;}
.ls1c{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.840000px;}
.ls2e{letter-spacing:0.900000px;}
.ls34{letter-spacing:1.584000px;}
.ls24{letter-spacing:2.340000px;}
.ls28{letter-spacing:3.780000px;}
.ls23{letter-spacing:6.660000px;}
.ls2d{letter-spacing:8.820000px;}
.ls30{letter-spacing:10.260000px;}
.ls1a{letter-spacing:15.840000px;}
.ls21{letter-spacing:16.560000px;}
.ls2f{letter-spacing:16.740000px;}
.ls35{letter-spacing:20.340000px;}
.ls9{letter-spacing:33.984000px;}
.ls7{letter-spacing:49.919760px;}
.ls38{letter-spacing:800.160240px;}
.ls27{letter-spacing:836.880240px;}
.ls10{letter-spacing:837.600240px;}
.ls20{letter-spacing:838.320240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-84.240000px;}
.ws8{word-spacing:-66.240000px;}
.ws9{word-spacing:-21.420000px;}
.ws20{word-spacing:-18.432000px;}
.wse{word-spacing:-18.216000px;}
.ws1b{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.856000px;}
.ws17{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws1f{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.093600px;}
.ws12{word-spacing:-15.046800px;}
.ws1c{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.833200px;}
.ws14{word-spacing:-14.817840px;}
.ws13{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.603040px;}
.ws1d{word-spacing:-14.274000px;}
.ws21{word-spacing:-14.220000px;}
.ws10{word-spacing:-14.097840px;}
.wsc{word-spacing:-13.734480px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.374000px;}
.ws4{word-spacing:-13.140000px;}
.ws18{word-spacing:-12.060000px;}
.wsb{word-spacing:-10.440000px;}
.ws1e{word-spacing:-9.711360px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-50.472000px;}
._5{margin-left:-4.644000px;}
._4{margin-left:-3.643200px;}
._17{margin-left:-2.586480px;}
._1{margin-left:-1.516320px;}
._2{width:1.015920px;}
._3{width:2.367120px;}
._c{width:3.851040px;}
._d{width:5.029440px;}
._6{width:6.624000px;}
._9{width:8.101920px;}
._8{width:9.226560px;}
._f{width:10.462320px;}
._a{width:11.525760px;}
._b{width:12.651840px;}
._18{width:13.812240px;}
._7{width:15.168960px;}
._1b{width:16.439040px;}
._21{width:17.635680px;}
._13{width:20.291040px;}
._12{width:21.316320px;}
._15{width:22.824000px;}
._16{width:24.048000px;}
._1e{width:25.128000px;}
._1c{width:26.496000px;}
._1d{width:27.648000px;}
._10{width:29.736000px;}
._11{width:30.816000px;}
._19{width:32.544000px;}
._1a{width:33.616080px;}
._1f{width:58.145040px;}
._20{width:116.113680px;}
._e{width:205.560000px;}
._14{width:788.460960px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs3{font-size:58.936651px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:74.952045px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.880000px;}
.y13{bottom:3.960000px;}
.y14{bottom:5.580000px;}
.y2b{bottom:12.960000px;}
.ya{bottom:15.054862px;}
.y46{bottom:18.360000px;}
.y37{bottom:18.540000px;}
.y45{bottom:33.885000px;}
.y36{bottom:34.020000px;}
.y2a{bottom:41.400000px;}
.y9{bottom:45.195903px;}
.y3e{bottom:47.340000px;}
.y35{bottom:49.500000px;}
.y44{bottom:49.545000px;}
.y3d{bottom:63.000000px;}
.y34{bottom:64.980000px;}
.y43{bottom:65.025000px;}
.y47{bottom:69.660000px;}
.y29{bottom:69.840000px;}
.y3c{bottom:78.480000px;}
.y8{bottom:79.180569px;}
.y42{bottom:80.505000px;}
.y33{bottom:80.640000px;}
.y3b{bottom:93.960000px;}
.y41{bottom:95.985000px;}
.y32{bottom:96.120000px;}
.y28{bottom:98.280000px;}
.y4a{bottom:102.960000px;}
.y5{bottom:104.580000px;}
.y3a{bottom:109.440000px;}
.y40{bottom:111.465000px;}
.y31{bottom:111.600000px;}
.y7{bottom:112.973051px;}
.y49{bottom:120.636000px;}
.y27{bottom:126.720000px;}
.y30{bottom:127.080000px;}
.y68{bottom:135.756000px;}
.y4{bottom:139.176000px;}
.ybb{bottom:140.976000px;}
.y2f{bottom:142.560000px;}
.y164{bottom:144.216000px;}
.y151{bottom:149.976000px;}
.y67{bottom:153.030000px;}
.y26{bottom:155.160000px;}
.y2e{bottom:158.220000px;}
.y66{bottom:158.250000px;}
.y84{bottom:158.970000px;}
.y15{bottom:161.670000px;}
.y9e{bottom:162.210000px;}
.yba{bottom:170.310000px;}
.y65{bottom:171.030000px;}
.y2d{bottom:173.745000px;}
.yb9{bottom:175.530000px;}
.y150{bottom:181.110000px;}
.y25{bottom:183.645000px;}
.y163{bottom:187.230000px;}
.yb8{bottom:187.590000px;}
.yf9{bottom:188.310000px;}
.y83{bottom:190.110000px;}
.ydd{bottom:192.810000px;}
.y9d{bottom:193.170000px;}
.y175{bottom:202.350000px;}
.yb7{bottom:204.870000px;}
.y125{bottom:209.010000px;}
.yb6{bottom:210.090000px;}
.y14f{bottom:212.070000px;}
.y24{bottom:212.085000px;}
.y11a{bottom:218.010000px;}
.y162{bottom:218.190000px;}
.y82{bottom:221.070000px;}
.yca{bottom:222.150000px;}
.yb5{bottom:222.870000px;}
.y9c{bottom:224.310000px;}
.y109{bottom:227.370000px;}
.y64{bottom:230.070000px;}
.y174{bottom:233.490000px;}
.yc9{bottom:239.250000px;}
.y108{bottom:239.970000px;}
.y23{bottom:240.705000px;}
.y14e{bottom:243.210000px;}
.yc8{bottom:244.470000px;}
.y118{bottom:248.970000px;}
.y161{bottom:249.330000px;}
.y81{bottom:252.210000px;}
.y9b{bottom:255.270000px;}
.y119{bottom:255.810000px;}
.yd3{bottom:256.530000px;}
.yc7{bottom:257.250000px;}
.y63{bottom:261.210000px;}
.yf7{bottom:261.750000px;}
.y173{bottom:264.450000px;}
.y22{bottom:269.145000px;}
.y123{bottom:271.110000px;}
.yd2{bottom:273.810000px;}
.y14d{bottom:274.170000px;}
.yf6{bottom:274.530000px;}
.y124{bottom:277.950000px;}
.yd8{bottom:279.030000px;}
.y117{bottom:280.110000px;}
.y80{bottom:283.170000px;}
.y9a{bottom:286.410000px;}
.y13a{bottom:289.110000px;}
.yd1{bottom:291.090000px;}
.yd7{bottom:291.810000px;}
.y62{bottom:292.170000px;}
.y160{bottom:292.350000px;}
.y107{bottom:293.250000px;}
.yd0{bottom:296.310000px;}
.y21{bottom:297.585000px;}
.y122{bottom:302.070000px;}
.yc6{bottom:303.510000px;}
.y14c{bottom:305.310000px;}
.y172{bottom:307.470000px;}
.ydc{bottom:308.370000px;}
.ycf{bottom:309.090000px;}
.y3f{bottom:310.890000px;}
.y116{bottom:311.070000px;}
.yb3{bottom:312.510000px;}
.ydb{bottom:313.590000px;}
.y7f{bottom:314.310000px;}
.y99{bottom:317.370000px;}
.y136{bottom:318.810000px;}
.yb4{bottom:319.350000px;}
.yf4{bottom:320.070000px;}
.y61{bottom:323.310000px;}
.yfe{bottom:325.470000px;}
.y137{bottom:325.650000px;}
.y20{bottom:326.025000px;}
.yda{bottom:326.190000px;}
.yf5{bottom:326.910000px;}
.yfd{bottom:330.690000px;}
.y121{bottom:333.210000px;}
.yc5{bottom:334.470000px;}
.y14b{bottom:336.315000px;}
.y171{bottom:338.655000px;}
.y115{bottom:342.255000px;}
.yb2{bottom:343.515000px;}
.y7e{bottom:345.315000px;}
.y98{bottom:348.555000px;}
.y135{bottom:349.815000px;}
.yf3{bottom:351.255000px;}
.y60{bottom:354.315000px;}
.y1f{bottom:354.465000px;}
.y120{bottom:364.215000px;}
.yc4{bottom:365.655000px;}
.y15f{bottom:366.555000px;}
.y14a{bottom:367.455000px;}
.y170{bottom:369.615000px;}
.y114{bottom:373.215000px;}
.yb1{bottom:374.655000px;}
.y7d{bottom:376.455000px;}
.y97{bottom:379.515000px;}
.y134{bottom:380.955000px;}
.yf2{bottom:382.215000px;}
.y1e{bottom:382.905000px;}
.yd6{bottom:383.295000px;}
.y5f{bottom:385.455000px;}
.y100{bottom:386.355000px;}
.y11f{bottom:395.355000px;}
.y15e{bottom:397.515000px;}
.y149{bottom:398.415000px;}
.yc2{bottom:399.675000px;}
.y113{bottom:404.355000px;}
.yb0{bottom:405.615000px;}
.yc3{bottom:406.515000px;}
.y7c{bottom:407.415000px;}
.y96{bottom:410.655000px;}
.y1d{bottom:411.375000px;}
.y133{bottom:411.915000px;}
.y16f{bottom:412.635000px;}
.yf1{bottom:413.355000px;}
.yfc{bottom:414.255000px;}
.y5e{bottom:416.415000px;}
.yd9{bottom:417.495000px;}
.y11e{bottom:426.315000px;}
.y104{bottom:426.495000px;}
.yc1{bottom:426.675000px;}
.y148{bottom:429.555000px;}
.y39{bottom:434.955000px;}
.y112{bottom:435.315000px;}
.yaf{bottom:436.755000px;}
.y7b{bottom:438.555000px;}
.y1c{bottom:439.815000px;}
.y15d{bottom:440.535000px;}
.y95{bottom:441.615000px;}
.y132{bottom:443.055000px;}
.y16e{bottom:443.775000px;}
.yf0{bottom:444.315000px;}
.y5d{bottom:447.555000px;}
.yc0{bottom:453.675000px;}
.y103{bottom:457.455000px;}
.y147{bottom:460.515000px;}
.y111{bottom:466.455000px;}
.yad{bottom:467.715000px;}
.y1b{bottom:468.255000px;}
.y7a{bottom:469.515000px;}
.y15c{bottom:471.675000px;}
.y94{bottom:472.755000px;}
.y131{bottom:474.015000px;}
.yae{bottom:474.555000px;}
.yef{bottom:475.455000px;}
.y5c{bottom:478.515000px;}
.yce{bottom:479.595000px;}
.ybf{bottom:480.855000px;}
.y16d{bottom:486.795000px;}
.y11d{bottom:488.415000px;}
.y102{bottom:488.595000px;}
.y146{bottom:491.655000px;}
.y1a{bottom:496.875000px;}
.y110{bottom:497.415000px;}
.yac{bottom:498.855000px;}
.y79{bottom:500.655000px;}
.y93{bottom:503.715000px;}
.y130{bottom:505.155000px;}
.yee{bottom:506.415000px;}
.y5b{bottom:509.655000px;}
.yff{bottom:510.555000px;}
.y11c{bottom:513.615000px;}
.y15b{bottom:514.695000px;}
.y16c{bottom:517.935000px;}
.y145{bottom:522.615000px;}
.y19{bottom:525.315000px;}
.y10f{bottom:528.555000px;}
.yab{bottom:529.815000px;}
.y78{bottom:531.615000px;}
.y92{bottom:534.855000px;}
.y12f{bottom:536.115000px;}
.yed{bottom:537.555000px;}
.y101{bottom:538.455000px;}
.y5a{bottom:540.615000px;}
.y139{bottom:544.395000px;}
.y15a{bottom:545.655000px;}
.y16b{bottom:548.895000px;}
.y18{bottom:553.755000px;}
.y144{bottom:553.785000px;}
.y10e{bottom:559.545000px;}
.yaa{bottom:560.985000px;}
.y77{bottom:562.785000px;}
.y91{bottom:565.845000px;}
.y12e{bottom:567.285000px;}
.yec{bottom:568.545000px;}
.ybe{bottom:569.625000px;}
.y59{bottom:571.785000px;}
.y159{bottom:576.825000px;}
.y17{bottom:582.195000px;}
.y143{bottom:584.745000px;}
.y10d{bottom:590.685000px;}
.ya9{bottom:591.945000px;}
.y76{bottom:593.745000px;}
.y90{bottom:596.985000px;}
.yea{bottom:599.505000px;}
.yd5{bottom:600.585000px;}
.y12c{bottom:601.305000px;}
.y2c{bottom:601.485000px;}
.y58{bottom:602.745000px;}
.y106{bottom:603.825000px;}
.yeb{bottom:606.345000px;}
.y158{bottom:607.785000px;}
.y12d{bottom:608.145000px;}
.y16{bottom:610.680000px;}
.y142{bottom:615.885000px;}
.y10c{bottom:621.645000px;}
.ya8{bottom:622.905000px;}
.y16a{bottom:623.085000px;}
.y75{bottom:624.705000px;}
.y8f{bottom:627.945000px;}
.y12b{bottom:628.305000px;}
.ye9{bottom:630.645000px;}
.y57{bottom:633.885000px;}
.ybc{bottom:634.785000px;}
.y17a{bottom:646.305000px;}
.y10b{bottom:646.845000px;}
.y157{bottom:650.805000px;}
.ya7{bottom:654.045000px;}
.y12a{bottom:655.305000px;}
.y74{bottom:655.845000px;}
.y8e{bottom:659.085000px;}
.ye8{bottom:661.605000px;}
.y56{bottom:664.845000px;}
.y141{bottom:677.985000px;}
.y156{bottom:681.945000px;}
.y129{bottom:682.305000px;}
.ya6{bottom:685.005000px;}
.y169{bottom:685.185000px;}
.y73{bottom:686.805000px;}
.y8d{bottom:690.045000px;}
.ye7{bottom:692.745000px;}
.y55{bottom:695.985000px;}
.y140{bottom:708.945000px;}
.y128{bottom:709.305000px;}
.y179{bottom:712.905000px;}
.ya5{bottom:716.145000px;}
.y72{bottom:717.945000px;}
.y8c{bottom:721.185000px;}
.ye6{bottom:723.705000px;}
.y11b{bottom:724.785000px;}
.y155{bottom:724.965000px;}
.y54{bottom:726.945000px;}
.y168{bottom:728.205000px;}
.y138{bottom:730.545000px;}
.y127{bottom:736.305000px;}
.y13f{bottom:740.085000px;}
.ya4{bottom:747.105000px;}
.y71{bottom:748.905000px;}
.y8b{bottom:752.145000px;}
.ye5{bottom:754.845000px;}
.y10a{bottom:755.745000px;}
.y178{bottom:756.105000px;}
.y53{bottom:758.085000px;}
.yf8{bottom:758.985000px;}
.y167{bottom:759.165000px;}
.y126{bottom:763.485000px;}
.y154{bottom:767.985000px;}
.y13e{bottom:771.045000px;}
.ya2{bottom:778.290000px;}
.y70{bottom:780.090000px;}
.y8a{bottom:783.330000px;}
.ya3{bottom:785.130000px;}
.ye4{bottom:785.850000px;}
.yfb{bottom:786.930000px;}
.y177{bottom:787.110000px;}
.y12{bottom:787.830000px;}
.y51{bottom:789.090000px;}
.y105{bottom:790.170000px;}
.y52{bottom:795.930000px;}
.y153{bottom:799.170000px;}
.y13d{bottom:802.230000px;}
.ya1{bottom:809.250000px;}
.y6f{bottom:811.050000px;}
.y11{bottom:811.770000px;}
.y89{bottom:814.290000px;}
.ye3{bottom:816.990000px;}
.y50{bottom:820.230000px;}
.ycd{bottom:821.130000px;}
.y152{bottom:830.130000px;}
.y13c{bottom:833.190000px;}
.y166{bottom:833.370000px;}
.ya0{bottom:834.450000px;}
.y10{bottom:834.990000px;}
.y6e{bottom:842.190000px;}
.y88{bottom:845.430000px;}
.ye2{bottom:847.950000px;}
.yf{bottom:849.750000px;}
.y4f{bottom:851.190000px;}
.ycc{bottom:852.270000px;}
.y9f{bottom:855.150000px;}
.y13b{bottom:858.390000px;}
.y176{bottom:861.270000px;}
.y165{bottom:864.330000px;}
.ye{bottom:868.290000px;}
.y6d{bottom:873.150000px;}
.y87{bottom:876.390000px;}
.ye0{bottom:879.090000px;}
.yd4{bottom:879.990000px;}
.y4e{bottom:882.330000px;}
.ye1{bottom:885.930000px;}
.yd{bottom:892.410000px;}
.y6c{bottom:904.290000px;}
.y86{bottom:907.530000px;}
.ydf{bottom:910.050000px;}
.y4d{bottom:913.290000px;}
.ycb{bottom:914.370000px;}
.yc{bottom:925.890000px;}
.y6{bottom:933.728934px;}
.y6b{bottom:935.250000px;}
.y85{bottom:938.490000px;}
.yde{bottom:941.190000px;}
.ybd{bottom:942.090000px;}
.y4c{bottom:944.430000px;}
.yb{bottom:952.170000px;}
.y6a{bottom:966.390000px;}
.y4b{bottom:969.630000px;}
.y3{bottom:972.690000px;}
.yfa{bottom:973.230000px;}
.y2{bottom:997.920000px;}
.y69{bottom:1012.680000px;}
.y48{bottom:1019.340000px;}
.y1{bottom:1022.940000px;}
.he{height:20.700000px;}
.h1e{height:31.058438px;}
.h1a{height:33.359063px;}
.hc{height:36.635625px;}
.h10{height:38.100586px;}
.h8{height:38.535469px;}
.h7{height:41.583721px;}
.h14{height:43.136719px;}
.h1b{height:45.992812px;}
.hd{height:47.737969px;}
.h24{height:47.988281px;}
.h2{height:48.093750px;}
.h18{height:48.224531px;}
.hb{height:48.312422px;}
.h1f{height:49.255313px;}
.h22{height:49.992188px;}
.h19{height:50.294531px;}
.h20{height:50.800781px;}
.h23{height:51.938437px;}
.hf{height:52.171875px;}
.h1c{height:52.417969px;}
.h12{height:52.914375px;}
.h1d{height:57.515625px;}
.h21{height:59.343750px;}
.ha{height:59.436914px;}
.h6{height:59.873802px;}
.h25{height:63.824414px;}
.h3{height:63.964688px;}
.h9{height:72.140625px;}
.h4{height:76.495781px;}
.h16{height:124.056000px;}
.h17{height:149.220000px;}
.h5{height:159.231066px;}
.h15{height:166.530000px;}
.h13{height:186.330000px;}
.h11{height:626.145000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w4{width:126.396000px;}
.w3{width:486.105000px;}
.w1{width:774.000000px;}
.w5{width:774.359977px;}
.w2{width:774.359988px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x1a{left:9.180000px;}
.x1c{left:14.400000px;}
.x1d{left:15.840000px;}
.x18{left:19.440000px;}
.x1b{left:23.040000px;}
.x13{left:25.380000px;}
.x15{left:26.640000px;}
.x11{left:27.900000px;}
.x17{left:31.680000px;}
.x16{left:34.560000px;}
.x12{left:37.260000px;}
.x4{left:39.497012px;}
.x14{left:40.680000px;}
.x10{left:43.380000px;}
.x19{left:44.820000px;}
.xf{left:63.210000px;}
.x1{left:81.035988px;}
.x8{left:82.475988px;}
.x2e{left:85.895988px;}
.x26{left:87.155988px;}
.x3d{left:90.755988px;}
.xb{left:93.455988px;}
.x27{left:108.035988px;}
.x4b{left:119.555977px;}
.x6c{left:130.535977px;}
.x4c{left:131.795988px;}
.x33{left:133.595977px;}
.x31{left:135.395977px;}
.x34{left:139.715988px;}
.x32{left:143.315988px;}
.x46{left:145.835988px;}
.x9{left:147.095988px;}
.x2a{left:149.075977px;}
.x3b{left:153.569977px;}
.x2b{left:155.189988px;}
.x3c{left:165.809988px;}
.x6a{left:168.509977px;}
.x4f{left:176.069977px;}
.x6b{left:180.749988px;}
.x50{left:188.309988px;}
.x5d{left:194.609977px;}
.x5e{left:206.894988px;}
.x6d{left:240.014977px;}
.x35{left:245.594977px;}
.x36{left:251.714988px;}
.x63{left:263.234988px;}
.x61{left:265.034977px;}
.x62{left:277.274988px;}
.x25{left:297.074988px;}
.xa{left:326.414988px;}
.x23{left:328.394977px;}
.x24{left:334.514988px;}
.x4d{left:341.354977px;}
.x4e{left:353.624988px;}
.x49{left:364.064977px;}
.x5c{left:365.324988px;}
.x37{left:370.364977px;}
.x4a{left:376.304988px;}
.x38{left:382.604988px;}
.x66{left:384.944977px;}
.x7{left:386.204988px;}
.xc{left:387.284988px;}
.x5a{left:388.544977px;}
.x67{left:397.904988px;}
.x5b{left:400.784988px;}
.x5f{left:411.224977px;}
.x60{left:423.464988px;}
.x3e{left:437.504977px;}
.x3f{left:449.744988px;}
.x69{left:474.584977px;}
.x53{left:486.509977px;}
.x64{left:487.769977px;}
.x39{left:496.049977px;}
.x54{left:498.749988px;}
.x65{left:500.009988px;}
.x3a{left:508.289988px;}
.x47{left:546.989977px;}
.x51{left:553.469977px;}
.x48{left:560.849988px;}
.x52{left:565.709988px;}
.xe{left:567.150000px;}
.x42{left:577.409977px;}
.x1e{left:579.749988px;}
.x58{left:583.529977px;}
.x1f{left:586.589988px;}
.x43{left:589.649988px;}
.x28{left:593.609977px;}
.x59{left:595.769988px;}
.x29{left:599.729988px;}
.x44{left:601.709977px;}
.x6e{left:607.469977px;}
.x2f{left:611.969977px;}
.x45{left:613.949988px;}
.x30{left:618.089988px;}
.x6f{left:619.709988px;}
.x68{left:624.419988px;}
.x20{left:637.739988px;}
.x21{left:646.019988px;}
.x2c{left:647.459977px;}
.x56{left:651.599977px;}
.x2d{left:653.579988px;}
.x22{left:656.819988px;}
.x55{left:659.879988px;}
.x40{left:664.739977px;}
.x57{left:667.439988px;}
.x41{left:676.979988px;}
.x3{left:682.739988px;}
.x2{left:684.899988px;}
.x6{left:688.139988px;}
.x5{left:731.418795px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-17.920000pt;}
.ls33{letter-spacing:-12.160000pt;}
.ls2a{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.273067pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2b{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.048640pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.094720pt;}
.ls16{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.126720pt;}
.lsa{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.337707pt;}
.ls1e{letter-spacing:0.366933pt;}
.ls32{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.554667pt;}
.ls1c{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.746667pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls34{letter-spacing:1.408000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls28{letter-spacing:3.360000pt;}
.ls23{letter-spacing:5.920000pt;}
.ls2d{letter-spacing:7.840000pt;}
.ls30{letter-spacing:9.120000pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls2f{letter-spacing:14.880000pt;}
.ls35{letter-spacing:18.080000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls7{letter-spacing:44.373120pt;}
.ls38{letter-spacing:711.253547pt;}
.ls27{letter-spacing:743.893547pt;}
.ls10{letter-spacing:744.533547pt;}
.ls20{letter-spacing:745.173547pt;}
.ws0{word-spacing:-74.880000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws20{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws17{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws16{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws1f{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.416533pt;}
.ws12{word-spacing:-13.374933pt;}
.ws1c{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.185067pt;}
.ws14{word-spacing:-13.171413pt;}
.ws13{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.980480pt;}
.ws1d{word-spacing:-12.688000pt;}
.ws21{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.531413pt;}
.wsc{word-spacing:-12.208427pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.888000pt;}
.ws4{word-spacing:-11.680000pt;}
.ws18{word-spacing:-10.720000pt;}
.wsb{word-spacing:-9.280000pt;}
.ws1e{word-spacing:-8.632320pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-44.864000pt;}
._5{margin-left:-4.128000pt;}
._4{margin-left:-3.238400pt;}
._17{margin-left:-2.299093pt;}
._1{margin-left:-1.347840pt;}
._2{width:0.903040pt;}
._3{width:2.104107pt;}
._c{width:3.423147pt;}
._d{width:4.470613pt;}
._6{width:5.888000pt;}
._9{width:7.201707pt;}
._8{width:8.201387pt;}
._f{width:9.299840pt;}
._a{width:10.245120pt;}
._b{width:11.246080pt;}
._18{width:12.277547pt;}
._7{width:13.483520pt;}
._1b{width:14.612480pt;}
._21{width:15.676160pt;}
._13{width:18.036480pt;}
._12{width:18.947840pt;}
._15{width:20.288000pt;}
._16{width:21.376000pt;}
._1e{width:22.336000pt;}
._1c{width:23.552000pt;}
._1d{width:24.576000pt;}
._10{width:26.432000pt;}
._11{width:27.392000pt;}
._19{width:28.928000pt;}
._1a{width:29.880960pt;}
._1f{width:51.684480pt;}
._20{width:103.212160pt;}
._e{width:182.720000pt;}
._14{width:700.854187pt;}
.fs8{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs3{font-size:52.388134pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:66.624040pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.560000pt;}
.y13{bottom:3.520000pt;}
.y14{bottom:4.960000pt;}
.y2b{bottom:11.520000pt;}
.ya{bottom:13.382099pt;}
.y46{bottom:16.320000pt;}
.y37{bottom:16.480000pt;}
.y45{bottom:30.120000pt;}
.y36{bottom:30.240000pt;}
.y2a{bottom:36.800000pt;}
.y9{bottom:40.174136pt;}
.y3e{bottom:42.080000pt;}
.y35{bottom:44.000000pt;}
.y44{bottom:44.040000pt;}
.y3d{bottom:56.000000pt;}
.y34{bottom:57.760000pt;}
.y43{bottom:57.800000pt;}
.y47{bottom:61.920000pt;}
.y29{bottom:62.080000pt;}
.y3c{bottom:69.760000pt;}
.y8{bottom:70.382728pt;}
.y42{bottom:71.560000pt;}
.y33{bottom:71.680000pt;}
.y3b{bottom:83.520000pt;}
.y41{bottom:85.320000pt;}
.y32{bottom:85.440000pt;}
.y28{bottom:87.360000pt;}
.y4a{bottom:91.520000pt;}
.y5{bottom:92.960000pt;}
.y3a{bottom:97.280000pt;}
.y40{bottom:99.080000pt;}
.y31{bottom:99.200000pt;}
.y7{bottom:100.420490pt;}
.y49{bottom:107.232000pt;}
.y27{bottom:112.640000pt;}
.y30{bottom:112.960000pt;}
.y68{bottom:120.672000pt;}
.y4{bottom:123.712000pt;}
.ybb{bottom:125.312000pt;}
.y2f{bottom:126.720000pt;}
.y164{bottom:128.192000pt;}
.y151{bottom:133.312000pt;}
.y67{bottom:136.026667pt;}
.y26{bottom:137.920000pt;}
.y2e{bottom:140.640000pt;}
.y66{bottom:140.666667pt;}
.y84{bottom:141.306667pt;}
.y15{bottom:143.706667pt;}
.y9e{bottom:144.186667pt;}
.yba{bottom:151.386667pt;}
.y65{bottom:152.026667pt;}
.y2d{bottom:154.440000pt;}
.yb9{bottom:156.026667pt;}
.y150{bottom:160.986667pt;}
.y25{bottom:163.240000pt;}
.y163{bottom:166.426667pt;}
.yb8{bottom:166.746667pt;}
.yf9{bottom:167.386667pt;}
.y83{bottom:168.986667pt;}
.ydd{bottom:171.386667pt;}
.y9d{bottom:171.706667pt;}
.y175{bottom:179.866667pt;}
.yb7{bottom:182.106667pt;}
.y125{bottom:185.786667pt;}
.yb6{bottom:186.746667pt;}
.y14f{bottom:188.506667pt;}
.y24{bottom:188.520000pt;}
.y11a{bottom:193.786667pt;}
.y162{bottom:193.946667pt;}
.y82{bottom:196.506667pt;}
.yca{bottom:197.466667pt;}
.yb5{bottom:198.106667pt;}
.y9c{bottom:199.386667pt;}
.y109{bottom:202.106667pt;}
.y64{bottom:204.506667pt;}
.y174{bottom:207.546667pt;}
.yc9{bottom:212.666667pt;}
.y108{bottom:213.306667pt;}
.y23{bottom:213.960000pt;}
.y14e{bottom:216.186667pt;}
.yc8{bottom:217.306667pt;}
.y118{bottom:221.306667pt;}
.y161{bottom:221.626667pt;}
.y81{bottom:224.186667pt;}
.y9b{bottom:226.906667pt;}
.y119{bottom:227.386667pt;}
.yd3{bottom:228.026667pt;}
.yc7{bottom:228.666667pt;}
.y63{bottom:232.186667pt;}
.yf7{bottom:232.666667pt;}
.y173{bottom:235.066667pt;}
.y22{bottom:239.240000pt;}
.y123{bottom:240.986667pt;}
.yd2{bottom:243.386667pt;}
.y14d{bottom:243.706667pt;}
.yf6{bottom:244.026667pt;}
.y124{bottom:247.066667pt;}
.yd8{bottom:248.026667pt;}
.y117{bottom:248.986667pt;}
.y80{bottom:251.706667pt;}
.y9a{bottom:254.586667pt;}
.y13a{bottom:256.986667pt;}
.yd1{bottom:258.746667pt;}
.yd7{bottom:259.386667pt;}
.y62{bottom:259.706667pt;}
.y160{bottom:259.866667pt;}
.y107{bottom:260.666667pt;}
.yd0{bottom:263.386667pt;}
.y21{bottom:264.520000pt;}
.y122{bottom:268.506667pt;}
.yc6{bottom:269.786667pt;}
.y14c{bottom:271.386667pt;}
.y172{bottom:273.306667pt;}
.ydc{bottom:274.106667pt;}
.ycf{bottom:274.746667pt;}
.y3f{bottom:276.346667pt;}
.y116{bottom:276.506667pt;}
.yb3{bottom:277.786667pt;}
.ydb{bottom:278.746667pt;}
.y7f{bottom:279.386667pt;}
.y99{bottom:282.106667pt;}
.y136{bottom:283.386667pt;}
.yb4{bottom:283.866667pt;}
.yf4{bottom:284.506667pt;}
.y61{bottom:287.386667pt;}
.yfe{bottom:289.306667pt;}
.y137{bottom:289.466667pt;}
.y20{bottom:289.800000pt;}
.yda{bottom:289.946667pt;}
.yf5{bottom:290.586667pt;}
.yfd{bottom:293.946667pt;}
.y121{bottom:296.186667pt;}
.yc5{bottom:297.306667pt;}
.y14b{bottom:298.946667pt;}
.y171{bottom:301.026667pt;}
.y115{bottom:304.226667pt;}
.yb2{bottom:305.346667pt;}
.y7e{bottom:306.946667pt;}
.y98{bottom:309.826667pt;}
.y135{bottom:310.946667pt;}
.yf3{bottom:312.226667pt;}
.y60{bottom:314.946667pt;}
.y1f{bottom:315.080000pt;}
.y120{bottom:323.746667pt;}
.yc4{bottom:325.026667pt;}
.y15f{bottom:325.826667pt;}
.y14a{bottom:326.626667pt;}
.y170{bottom:328.546667pt;}
.y114{bottom:331.746667pt;}
.yb1{bottom:333.026667pt;}
.y7d{bottom:334.626667pt;}
.y97{bottom:337.346667pt;}
.y134{bottom:338.626667pt;}
.yf2{bottom:339.746667pt;}
.y1e{bottom:340.360000pt;}
.yd6{bottom:340.706667pt;}
.y5f{bottom:342.626667pt;}
.y100{bottom:343.426667pt;}
.y11f{bottom:351.426667pt;}
.y15e{bottom:353.346667pt;}
.y149{bottom:354.146667pt;}
.yc2{bottom:355.266667pt;}
.y113{bottom:359.426667pt;}
.yb0{bottom:360.546667pt;}
.yc3{bottom:361.346667pt;}
.y7c{bottom:362.146667pt;}
.y96{bottom:365.026667pt;}
.y1d{bottom:365.666667pt;}
.y133{bottom:366.146667pt;}
.y16f{bottom:366.786667pt;}
.yf1{bottom:367.426667pt;}
.yfc{bottom:368.226667pt;}
.y5e{bottom:370.146667pt;}
.yd9{bottom:371.106667pt;}
.y11e{bottom:378.946667pt;}
.y104{bottom:379.106667pt;}
.yc1{bottom:379.266667pt;}
.y148{bottom:381.826667pt;}
.y39{bottom:386.626667pt;}
.y112{bottom:386.946667pt;}
.yaf{bottom:388.226667pt;}
.y7b{bottom:389.826667pt;}
.y1c{bottom:390.946667pt;}
.y15d{bottom:391.586667pt;}
.y95{bottom:392.546667pt;}
.y132{bottom:393.826667pt;}
.y16e{bottom:394.466667pt;}
.yf0{bottom:394.946667pt;}
.y5d{bottom:397.826667pt;}
.yc0{bottom:403.266667pt;}
.y103{bottom:406.626667pt;}
.y147{bottom:409.346667pt;}
.y111{bottom:414.626667pt;}
.yad{bottom:415.746667pt;}
.y1b{bottom:416.226667pt;}
.y7a{bottom:417.346667pt;}
.y15c{bottom:419.266667pt;}
.y94{bottom:420.226667pt;}
.y131{bottom:421.346667pt;}
.yae{bottom:421.826667pt;}
.yef{bottom:422.626667pt;}
.y5c{bottom:425.346667pt;}
.yce{bottom:426.306667pt;}
.ybf{bottom:427.426667pt;}
.y16d{bottom:432.706667pt;}
.y11d{bottom:434.146667pt;}
.y102{bottom:434.306667pt;}
.y146{bottom:437.026667pt;}
.y1a{bottom:441.666667pt;}
.y110{bottom:442.146667pt;}
.yac{bottom:443.426667pt;}
.y79{bottom:445.026667pt;}
.y93{bottom:447.746667pt;}
.y130{bottom:449.026667pt;}
.yee{bottom:450.146667pt;}
.y5b{bottom:453.026667pt;}
.yff{bottom:453.826667pt;}
.y11c{bottom:456.546667pt;}
.y15b{bottom:457.506667pt;}
.y16c{bottom:460.386667pt;}
.y145{bottom:464.546667pt;}
.y19{bottom:466.946667pt;}
.y10f{bottom:469.826667pt;}
.yab{bottom:470.946667pt;}
.y78{bottom:472.546667pt;}
.y92{bottom:475.426667pt;}
.y12f{bottom:476.546667pt;}
.yed{bottom:477.826667pt;}
.y101{bottom:478.626667pt;}
.y5a{bottom:480.546667pt;}
.y139{bottom:483.906667pt;}
.y15a{bottom:485.026667pt;}
.y16b{bottom:487.906667pt;}
.y18{bottom:492.226667pt;}
.y144{bottom:492.253333pt;}
.y10e{bottom:497.373333pt;}
.yaa{bottom:498.653333pt;}
.y77{bottom:500.253333pt;}
.y91{bottom:502.973333pt;}
.y12e{bottom:504.253333pt;}
.yec{bottom:505.373333pt;}
.ybe{bottom:506.333333pt;}
.y59{bottom:508.253333pt;}
.y159{bottom:512.733333pt;}
.y17{bottom:517.506667pt;}
.y143{bottom:519.773333pt;}
.y10d{bottom:525.053333pt;}
.ya9{bottom:526.173333pt;}
.y76{bottom:527.773333pt;}
.y90{bottom:530.653333pt;}
.yea{bottom:532.893333pt;}
.yd5{bottom:533.853333pt;}
.y12c{bottom:534.493333pt;}
.y2c{bottom:534.653333pt;}
.y58{bottom:535.773333pt;}
.y106{bottom:536.733333pt;}
.yeb{bottom:538.973333pt;}
.y158{bottom:540.253333pt;}
.y12d{bottom:540.573333pt;}
.y16{bottom:542.826667pt;}
.y142{bottom:547.453333pt;}
.y10c{bottom:552.573333pt;}
.ya8{bottom:553.693333pt;}
.y16a{bottom:553.853333pt;}
.y75{bottom:555.293333pt;}
.y8f{bottom:558.173333pt;}
.y12b{bottom:558.493333pt;}
.ye9{bottom:560.573333pt;}
.y57{bottom:563.453333pt;}
.ybc{bottom:564.253333pt;}
.y17a{bottom:574.493333pt;}
.y10b{bottom:574.973333pt;}
.y157{bottom:578.493333pt;}
.ya7{bottom:581.373333pt;}
.y12a{bottom:582.493333pt;}
.y74{bottom:582.973333pt;}
.y8e{bottom:585.853333pt;}
.ye8{bottom:588.093333pt;}
.y56{bottom:590.973333pt;}
.y141{bottom:602.653333pt;}
.y156{bottom:606.173333pt;}
.y129{bottom:606.493333pt;}
.ya6{bottom:608.893333pt;}
.y169{bottom:609.053333pt;}
.y73{bottom:610.493333pt;}
.y8d{bottom:613.373333pt;}
.ye7{bottom:615.773333pt;}
.y55{bottom:618.653333pt;}
.y140{bottom:630.173333pt;}
.y128{bottom:630.493333pt;}
.y179{bottom:633.693333pt;}
.ya5{bottom:636.573333pt;}
.y72{bottom:638.173333pt;}
.y8c{bottom:641.053333pt;}
.ye6{bottom:643.293333pt;}
.y11b{bottom:644.253333pt;}
.y155{bottom:644.413333pt;}
.y54{bottom:646.173333pt;}
.y168{bottom:647.293333pt;}
.y138{bottom:649.373333pt;}
.y127{bottom:654.493333pt;}
.y13f{bottom:657.853333pt;}
.ya4{bottom:664.093333pt;}
.y71{bottom:665.693333pt;}
.y8b{bottom:668.573333pt;}
.ye5{bottom:670.973333pt;}
.y10a{bottom:671.773333pt;}
.y178{bottom:672.093333pt;}
.y53{bottom:673.853333pt;}
.yf8{bottom:674.653333pt;}
.y167{bottom:674.813333pt;}
.y126{bottom:678.653333pt;}
.y154{bottom:682.653333pt;}
.y13e{bottom:685.373333pt;}
.ya2{bottom:691.813333pt;}
.y70{bottom:693.413333pt;}
.y8a{bottom:696.293333pt;}
.ya3{bottom:697.893333pt;}
.ye4{bottom:698.533333pt;}
.yfb{bottom:699.493333pt;}
.y177{bottom:699.653333pt;}
.y12{bottom:700.293333pt;}
.y51{bottom:701.413333pt;}
.y105{bottom:702.373333pt;}
.y52{bottom:707.493333pt;}
.y153{bottom:710.373333pt;}
.y13d{bottom:713.093333pt;}
.ya1{bottom:719.333333pt;}
.y6f{bottom:720.933333pt;}
.y11{bottom:721.573333pt;}
.y89{bottom:723.813333pt;}
.ye3{bottom:726.213333pt;}
.y50{bottom:729.093333pt;}
.ycd{bottom:729.893333pt;}
.y152{bottom:737.893333pt;}
.y13c{bottom:740.613333pt;}
.y166{bottom:740.773333pt;}
.ya0{bottom:741.733333pt;}
.y10{bottom:742.213333pt;}
.y6e{bottom:748.613333pt;}
.y88{bottom:751.493333pt;}
.ye2{bottom:753.733333pt;}
.yf{bottom:755.333333pt;}
.y4f{bottom:756.613333pt;}
.ycc{bottom:757.573333pt;}
.y9f{bottom:760.133333pt;}
.y13b{bottom:763.013333pt;}
.y176{bottom:765.573333pt;}
.y165{bottom:768.293333pt;}
.ye{bottom:771.813333pt;}
.y6d{bottom:776.133333pt;}
.y87{bottom:779.013333pt;}
.ye0{bottom:781.413333pt;}
.yd4{bottom:782.213333pt;}
.y4e{bottom:784.293333pt;}
.ye1{bottom:787.493333pt;}
.yd{bottom:793.253333pt;}
.y6c{bottom:803.813333pt;}
.y86{bottom:806.693333pt;}
.ydf{bottom:808.933333pt;}
.y4d{bottom:811.813333pt;}
.ycb{bottom:812.773333pt;}
.yc{bottom:823.013333pt;}
.y6{bottom:829.981275pt;}
.y6b{bottom:831.333333pt;}
.y85{bottom:834.213333pt;}
.yde{bottom:836.613333pt;}
.ybd{bottom:837.413333pt;}
.y4c{bottom:839.493333pt;}
.yb{bottom:846.373333pt;}
.y6a{bottom:859.013333pt;}
.y4b{bottom:861.893333pt;}
.y3{bottom:864.613333pt;}
.yfa{bottom:865.093333pt;}
.y2{bottom:887.040000pt;}
.y69{bottom:900.160000pt;}
.y48{bottom:906.080000pt;}
.y1{bottom:909.280000pt;}
.he{height:18.400000pt;}
.h1e{height:27.607500pt;}
.h1a{height:29.652500pt;}
.hc{height:32.565000pt;}
.h10{height:33.867188pt;}
.h8{height:34.253750pt;}
.h7{height:36.963308pt;}
.h14{height:38.343750pt;}
.h1b{height:40.882500pt;}
.hd{height:42.433750pt;}
.h24{height:42.656250pt;}
.h2{height:42.750000pt;}
.h18{height:42.866250pt;}
.hb{height:42.944375pt;}
.h1f{height:43.782500pt;}
.h22{height:44.437500pt;}
.h19{height:44.706250pt;}
.h20{height:45.156250pt;}
.h23{height:46.167500pt;}
.hf{height:46.375000pt;}
.h1c{height:46.593750pt;}
.h12{height:47.035000pt;}
.h1d{height:51.125000pt;}
.h21{height:52.750000pt;}
.ha{height:52.832812pt;}
.h6{height:53.221157pt;}
.h25{height:56.732813pt;}
.h3{height:56.857500pt;}
.h9{height:64.125000pt;}
.h4{height:67.996250pt;}
.h16{height:110.272000pt;}
.h17{height:132.640000pt;}
.h5{height:141.538725pt;}
.h15{height:148.026667pt;}
.h13{height:165.626667pt;}
.h11{height:556.573333pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w4{width:112.352000pt;}
.w3{width:432.093333pt;}
.w1{width:688.000000pt;}
.w5{width:688.319979pt;}
.w2{width:688.319990pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x1a{left:8.160000pt;}
.x1c{left:12.800000pt;}
.x1d{left:14.080000pt;}
.x18{left:17.280000pt;}
.x1b{left:20.480000pt;}
.x13{left:22.560000pt;}
.x15{left:23.680000pt;}
.x11{left:24.800000pt;}
.x17{left:28.160000pt;}
.x16{left:30.720000pt;}
.x12{left:33.120000pt;}
.x4{left:35.108455pt;}
.x14{left:36.160000pt;}
.x10{left:38.560000pt;}
.x19{left:39.840000pt;}
.xf{left:56.186667pt;}
.x1{left:72.031990pt;}
.x8{left:73.311990pt;}
.x2e{left:76.351990pt;}
.x26{left:77.471990pt;}
.x3d{left:80.671990pt;}
.xb{left:83.071990pt;}
.x27{left:96.031990pt;}
.x4b{left:106.271979pt;}
.x6c{left:116.031979pt;}
.x4c{left:117.151990pt;}
.x33{left:118.751979pt;}
.x31{left:120.351979pt;}
.x34{left:124.191990pt;}
.x32{left:127.391990pt;}
.x46{left:129.631990pt;}
.x9{left:130.751990pt;}
.x2a{left:132.511979pt;}
.x3b{left:136.506646pt;}
.x2b{left:137.946656pt;}
.x3c{left:147.386656pt;}
.x6a{left:149.786646pt;}
.x4f{left:156.506646pt;}
.x6b{left:160.666656pt;}
.x50{left:167.386656pt;}
.x5d{left:172.986646pt;}
.x5e{left:183.906656pt;}
.x6d{left:213.346646pt;}
.x35{left:218.306646pt;}
.x36{left:223.746656pt;}
.x63{left:233.986656pt;}
.x61{left:235.586646pt;}
.x62{left:246.466656pt;}
.x25{left:264.066656pt;}
.xa{left:290.146656pt;}
.x23{left:291.906646pt;}
.x24{left:297.346656pt;}
.x4d{left:303.426646pt;}
.x4e{left:314.333323pt;}
.x49{left:323.613313pt;}
.x5c{left:324.733323pt;}
.x37{left:329.213313pt;}
.x4a{left:334.493323pt;}
.x38{left:340.093323pt;}
.x66{left:342.173313pt;}
.x7{left:343.293323pt;}
.xc{left:344.253323pt;}
.x5a{left:345.373313pt;}
.x67{left:353.693323pt;}
.x5b{left:356.253323pt;}
.x5f{left:365.533313pt;}
.x60{left:376.413323pt;}
.x3e{left:388.893313pt;}
.x3f{left:399.773323pt;}
.x69{left:421.853313pt;}
.x53{left:432.453313pt;}
.x64{left:433.573313pt;}
.x39{left:440.933313pt;}
.x54{left:443.333323pt;}
.x65{left:444.453323pt;}
.x3a{left:451.813323pt;}
.x47{left:486.213313pt;}
.x51{left:491.973313pt;}
.x48{left:498.533323pt;}
.x52{left:502.853323pt;}
.xe{left:504.133333pt;}
.x42{left:513.253313pt;}
.x1e{left:515.333323pt;}
.x58{left:518.693313pt;}
.x1f{left:521.413323pt;}
.x43{left:524.133323pt;}
.x28{left:527.653313pt;}
.x59{left:529.573323pt;}
.x29{left:533.093323pt;}
.x44{left:534.853313pt;}
.x6e{left:539.973313pt;}
.x2f{left:543.973313pt;}
.x45{left:545.733323pt;}
.x30{left:549.413323pt;}
.x6f{left:550.853323pt;}
.x68{left:555.039990pt;}
.x20{left:566.879990pt;}
.x21{left:574.239990pt;}
.x2c{left:575.519979pt;}
.x56{left:579.199979pt;}
.x2d{left:580.959990pt;}
.x22{left:583.839990pt;}
.x55{left:586.559990pt;}
.x40{left:590.879979pt;}
.x57{left:593.279990pt;}
.x41{left:601.759990pt;}
.x3{left:606.879990pt;}
.x2{left:608.799990pt;}
.x6{left:611.679990pt;}
.x5{left:650.150040pt;}
}




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